vote up 6 vote down star

in Perl, when I do use < module name> < ver>, the system finds the .pm for the library somewhere in the @INC path.

Is there a reliable way to which file was actually loaded?

flag

62% accept rate

7 Answers

vote up 22 vote down check

Yes, %INC contains the full path a module was loaded from. Example:

$ perl -M'Data::Dump qw(pp)' -e 'pp(\%INC)'
{
  "Data/Dump.pm"         => "/usr/share/perl5/Data/Dump.pm",
  "Exporter.pm"          => "/usr/share/perl/5.10/Exporter.pm",
  "List/Util.pm"         => "/usr/lib/perl/5.10/List/Util.pm",
  "Scalar/Util.pm"       => "/usr/lib/perl/5.10/Scalar/Util.pm",
  "XSLoader.pm"          => "/usr/lib/perl/5.10/XSLoader.pm",
  "overload.pm"          => "/usr/share/perl/5.10/overload.pm",
  "strict.pm"            => "/usr/share/perl/5.10/strict.pm",
  "vars.pm"              => "/usr/share/perl/5.10/vars.pm",
  "warnings.pm"          => "/usr/share/perl/5.10/warnings.pm",
  "warnings/register.pm" => "/usr/share/perl/5.10/warnings/register.pm",
}
link|flag
You learn something new everyday. – Brad Gilbert Dec 4 '08 at 19:46
perl -MData::Dump=pp -e 'pp(\%INC)' – Brad Gilbert Dec 4 '08 at 19:48
Your version wins in golf :-D – derobert Dec 5 '08 at 15:57
vote up 0 vote down

From what I found, perl will look in the directories within the path:

perl -le 'print foreach @INC'

Then it will look in the standard library, and then in the current directory.

That gives you a search order.

My source:

Extending the library path

link|flag
vote up 3 vote down

There are a good number of modules in CPAN for finding this information, the most likely candidates look to be Module::Find, Module::Which, and Module::Locate. I'd probably go with Module::Locate:

use strict;
use warnings;
use Module::Locate qw/locate/;

my $to_find = "Some::Module";

print "Perl would use: ", scalar locate($to_find), "\n";

In list context locate returns all found copies of Some::Module in order based on @INC.

Edit: derobert suggests a much better way, I didn't realize %INC already had it... This module based solution would still be useful if you wanted to know before loading the module where it was going to be loaded from.

link|flag
vote up 0 vote down

Module::Mapper provides a way to walk the @INC tree to find modules:

perl -MModule::Mapper -MData::Dumper \
-e 'print Dumper( find_sources( UseINC => 1, Modules => [ @ARGV ] ) )' \
list-of-modules-to-locate
link|flag
vote up 4 vote down

You want to look in the %INC variable, which records the filename it loaded for the libraries you load with do, require, or use. See perlvar for the details.

link|flag
vote up 0 vote down

If the module has pod documentation, and if you can guarantee that the perldoc utility in your PATH belongs to the same perl that is running your script, then this command will often give you the actual file being found:

perldoc -l ModuleName
link|flag
vote up 0 vote down

You could use eval, I picked this up from a co-worker:

#!/usr/bin/perl
use Data::Dumper;
use strict;

$\ = "\n";

print "Before eval:";
pINC();

eval 'use POSIX';

print "After eval:";
pINC();

sub pINC { print Dumper([keys %INC]); }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.