/usr/lib/perl5/Search/Xapian/RSet.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 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 | package Search::Xapian::RSet;
use 5.006;
use strict;
use warnings;
use Carp;
require DynaLoader;
our @ISA = qw(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 $rset;
my $invalid_args;
if( scalar(@_) == 0 ) {
$rset = new1();
} elsif( scalar(@_) == 1 and ref( $_[1] ) eq $class ) {
$rset = new2(@_);
} else {
$invalid_args = 1;
}
if( $invalid_args ) {
Carp::carp( "USAGE: $class->new(), $class->new(\$rset)" );
exit;
}
bless $rset, $class;
return $rset;
}
sub add_document {
my $self = shift;
if( scalar(@_) == 1 ) {
my $arg = shift;
my $arg_class = ref( $arg );
if( $arg_class eq 'Search::Xapian::MSetIterator' ) {
$self->add_document1($arg);
} else {
$self->add_document2($arg);
}
return;
}
Carp::carp( "USAGE: \$rset->add_document(\$docid) or \$rset->add_document(\$msetiterator)" );
exit;
}
sub remove_document {
my $self = shift;
if( scalar(@_) == 1 ) {
my $arg = shift;
my $arg_class = ref( $arg );
if( $arg_class eq 'Search::Xapian::MSetIterator' ) {
$self->remove_document1($arg);
} else {
$self->remove_document2($arg);
}
return;
}
Carp::carp( "USAGE: \$rset->remove_document(\$docid) or \$rset->remove_document(\$msetiterator)" );
exit;
}
sub contains {
my $self = shift;
my $invalid_args;
if( scalar(@_) == 1 ) {
my $arg = shift;
my $arg_class = ref( $arg );
if( $arg_class eq 'Search::Xapian::MSetIterator' ) {
return $self->contains1($arg);
} else {
return $self->contains2($arg);
}
}
Carp::carp( "USAGE: \$rset->contains(\$docid) or \$rset->contains(\$msetiterator)" );
exit;
}
1;
|