This file is indexed.

/usr/share/perl5/ExtUtils/XSBuilder/MapUtil.pm is in libextutils-xsbuilder-perl 0.28-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
package ExtUtils::XSBuilder::MapUtil;

use strict;
use warnings;
use Exporter ();
use Data::Dumper ;
use IO::Handle ;
use ExtUtils::XSBuilder::TypeMap ;

our @EXPORT_OK = qw(list_first disabled_reason
                    function_table structure_table 
                    callback_table callback_hash
                    );

our @ISA = qw(Exporter);

my %disabled_map = (
    '!' => 'disabled or not yet implemented',
    '~' => 'implemented but not auto-generated',
    '-' => 'likely never be available to Perl',
    '>' => '"private" to apache',
    '?' => 'unclassified',
    '+' => 'automaticly added',
);

# ============================================================================

my $function_table = [];

sub function_table {
    return $function_table if @$function_table;

    my $parsesource = shift -> parsesource_objects ;

    $function_table = [] ;

    foreach my $src (@$parsesource) {
        require $src -> pm_path ('FunctionTable.pm') ;
no strict ;
        push @$function_table, @${$src -> package . '::FunctionTable'} ;
use strict ;
    }

    return $function_table;
}

# ============================================================================

my $callback_table = [];

sub callback_table {
    return $callback_table if @$callback_table;
    my $parsesource = shift -> parsesource_objects ;

    $callback_table = [] ;

    foreach my $src (@$parsesource) {
        require $src -> pm_path ('CallbackTable.pm') ;
no strict ;
        push @$callback_table, @${$src -> package . '::CallbackTable'} ;
use strict ;
    }
    return $callback_table;
}


# ============================================================================

my $callback_hash ;

sub callback_hash {
    return $callback_hash if $callback_hash ;

    my %callbacks = map { $_->{name}, $_ } @{ callback_table(shift) };

    $callback_hash = \%callbacks ;
}

# ============================================================================

my $structure_table = [];

sub structure_table {
    return $structure_table if @$structure_table;
    $structure_table = [] ;

    my $parsesource = shift -> parsesource_objects ;
    foreach my $src (@$parsesource) {
        require $src -> pm_path ('StructureTable.pm') ; 
no strict ;
        push @$structure_table, @${$src -> package . '::StructureTable'} ;
use strict ;
    }
    return $structure_table;
}

# ============================================================================

sub disabled_reason {
    $disabled_map{+shift} || 'unknown';
}


# ============================================================================

sub list_first (&@) {
    my $code = shift;

    for (@_) {
        return $_ if $code->();
    }

    undef;
}

# ============================================================================

package ExtUtils::XSBuilder::MapBase;

*function_table = \&ExtUtils::XSBuilder::function_table;
*structure_table = \&ExtUtils::XSBuilder::structure_table;

sub readline {
    my $fh = shift;

    while (<$fh>) {
        chomp;
        s/^\s+//; s/\s+$//;
        s/^\#.*//;
        s/\s*\#.*//;

        next unless $_;

        if (s:\\$::) {
            my $cur = $_;
            $_ = $cur . $fh->readline;
            return $_;
        }

        return $_;
    }
}

my $map_classes = join '|', qw(type structure function callback);

sub map_files {
    my $self = shift;
    my $package = ref($self) || $self;

    my($wanted) = $package =~ /($map_classes)/io;

    my(@dirs) = ($self -> {wrapxs} -> xs_map_dir(), $self -> {wrapxs} -> xs_glue_dirs());

    my @files;

    my @searchdirs = map { -d "$_/maps" ? "$_/maps" : $_ } @dirs ;
    for my $dir (@searchdirs) {
        opendir my $dh, $dir or warn "opendir $dir: $!";

        for (readdir $dh) {
            next unless /\.map$/;

            my $file = "$dir/$_";

            if ($wanted) {
                next unless $file =~ /$wanted/i;
            }

            #print "$package => $file\n";
            push @files, $file;
        }

        closedir $dh;
    }

    print 'WARNING: No *_' . lc($wanted) . ".map file found in @searchdirs\n" if (!@files) ;
    return @files;
}

sub new_map_file {
    my $self = shift;
    my $package = ref($self) || $self;

    my($wanted) = $package =~ /($map_classes)/io;

    my(@dirs) = ($self -> {wrapxs} -> xs_map_dir(), $self -> {wrapxs} -> xs_glue_dirs());

    my @files;

    my @searchdirs = map { -d "$_/maps" ? "$_/maps" : $_ } @dirs ;
    

    if (!@searchdirs) 
        {
        print "WARNING: No maps directory found\n" ;
        return undef ;
        }

    
    return $searchdirs[0] . '/new_' . lc($wanted) . '.map' ;
}


sub parse_keywords {
    my($self, $line) = @_;
    my %words;

    for my $pair (split /\s+/, $line) {
        my($key, $val) = split /=/, $pair;

        unless ($key and $val) {
            die "parse error ($ExtUtils::XSBuilder::MapFile line $.)";
        }

        $words{$key} = $val;
    }

    %words;
}

sub parse_map_files {
    my($self) = @_;

    my $map = {};

    for my $file (map_files($self)) {
        print "Parse $file...\n" ;
        open my $fh, $file or die "open $file: $!";
        local $ExtUtils::XSBuilder::MapFile = $file;
        bless $fh, __PACKAGE__;
        $self->parse($fh, $map);
        close $fh;
    }

    return $map;
}

sub write_map_file {
    my($self, $newentries, $prefix) = @_;

    return if (!$newentries || !@$newentries) ;

    my $file = $self -> new_map_file or die ;

    print "Write $file...\n" ;
    open my $fh, '>>', $file or die "open $file: $!";
    local $ExtUtils::XSBuilder::MapFile = $file;
    #bless $fh, __PACKAGE__;

    $fh -> print ( "\n### Added " . scalar(localtime) . " ###\n\n" );

    $self->write($fh,  $newentries, $prefix);
    close $fh;
}


1;
__END__