/usr/share/perl5/Object/Remote/ModuleSender.pm is in libobject-remote-perl 0.004000-1.
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 | package Object::Remote::ModuleSender;
use Object::Remote::Logging qw( :log :dlog );
use Config;
use File::Spec;
use List::Util qw(first);
use Moo;
has dir_list => (is => 'lazy');
sub _build_dir_list {
my %core = map +($_ => 1), grep $_, @Config{
qw(privlibexp archlibexp vendorarchexp sitearchexp)
};
DlogS_trace { "dir list built in ModuleSender: $_" } [ grep !$core{$_}, @INC ];
}
sub source_for {
my ($self, $module) = @_;
log_debug { "locating source for module '$module'" };
if (my $find = Object::Remote::FromData->can('find_module')) {
if (my $source = $find->($module)) {
Dlog_trace { "source of '$module' was found by Object::Remote::FromData" };
return $source;
}
}
log_trace { "Searching for module in library directories" };
my ($found) = first { -f $_ }
map File::Spec->catfile($_, $module),
@{$self->dir_list};
die "Can't locate ${module} in \@INC. (on remote host) dir_list contains:\n"
.join("\n", @{$self->dir_list})
unless $found;
log_debug { "found '$module' at '$found'" };
open my $fh, '<', $found or die "Couldn't open ${found} for ${module}: $!";
return do { local $/; <$fh> };
}
1;
|