/usr/lib/perl5/Search/Xapian/ESet.pm is in libsearch-xapian-perl 1.2.8.0-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 | package Search::Xapian::ESet;
use 5.006;
use strict;
use warnings;
use Carp;
use Tie::Array;
require DynaLoader;
our @ISA = qw(Tie::Array DynaLoader);
# Preloaded methods go here.
# In a new thread, copy objects of this class to unblessed, undef values.
sub CLONE_SKIP { 1 }
use overload '=' => sub { $_[0]->clone() },
'fallback' => 1;
sub new() {
my $class = shift;
my $mset;
my $invalid_args;
if( scalar(@_) == 0 ) {
$mset = new1();
} elsif( scalar(@_) == 1 and ref( $_[1] ) eq $class ) {
$mset = new2(@_);
} else {
$invalid_args = 1;
}
if( $invalid_args ) {
Carp::carp( "USAGE: $class->new(), $class->new(\$eset)" );
exit;
}
bless $mset, $class;
return $mset;
}
sub items {
my $self = shift;
my @array;
tie( @array, 'Search::Xapian::ESet', $self );
return @array;
}
sub TIEARRAY {
my $class = shift;
my $eset = shift;
return bless $eset, $class;
}
1;
|