/usr/share/perl5/Module/Used.pm is in libmodule-used-perl 1.3.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 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 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 | package Module::Used;
use 5.008003;
use utf8;
use strict;
use warnings;
use version; our $VERSION = qv('v1.3.0');
use English qw< -no_match_vars >;
use Const::Fast qw< const >;
use Exporter qw< import >;
our @EXPORT_OK = qw<
modules_used_in_files
modules_used_in_string
modules_used_in_document
modules_used_in_modules
>;
our %EXPORT_TAGS = (
all => [@EXPORT_OK],
);
use Module::Path qw< module_path >;
use PPI::Document ();
sub modules_used_in_files {
my (@files) = @_;
my %modules;
foreach my $file (@files) {
my $document = _create_document_from_file($file);
my @loaded_modules = modules_used_in_document($document);
@modules{@loaded_modules} = (1) x @loaded_modules;
} # end foreach
return keys %modules;
} # end modules_used_in_files()
sub modules_used_in_modules {
my (@modules) = @_;
my @files;
my $fullpath;
foreach my $module (@modules) {
$fullpath = module_path($module)
or die qq<Could not find module "$module" in \@INC.\n>;
push @files, $fullpath;
}
return modules_used_in_files(@files);
} # end modules_used_in_modules()
sub modules_used_in_string {
my ($string) = @_;
my $document = PPI::Document->new(\$string, readonly => 1)
or die qq<Could not parse "$string": >, PPI::Document->errstr(), ".\n";
return modules_used_in_document($document);
} # end modules_used_in_string()
sub modules_used_in_document {
my ($document) = @_;
my %modules;
my $includes = $document->find('PPI::Statement::Include');
if ($includes) {
foreach my $statement ( @{$includes} ) {
my $module = $statement->module();
if ($module) {
$modules{$module} = 1;
if ($module eq 'base' or $module eq 'parent') {
my @loaded_modules =
_modules_loaded_by_base_or_parent($statement);
@modules{@loaded_modules} = (1) x @loaded_modules;
} # end if
} # end if
} # end foreach
my @moose_modules;
if ( $modules{Moose} ) {
@moose_modules =
_modules_loaded_by_moose_sugar($document, 'extends');
push
@moose_modules,
_modules_loaded_by_moose_sugar($document, 'with');
} elsif ( $modules{'Moose::Role'} ) {
@moose_modules =
_modules_loaded_by_moose_sugar($document, 'with');
} # end if
@modules{@moose_modules} = (1) x @moose_modules;
} # end if
return keys %modules;
} # end modules_used_in_document()
sub _create_document_from_file {
my ($source) = @_;
-e $source
or die qq<"$source" does not exist.\n>;
-r _
or die qq<"$source" is not readable.\n>;
not -d _
or die qq<"$source" is a directory.\n>;
if ( -z _ ) {
# PPI barfs on empty documents for some reason.
return PPI::Document->new();
}
my $document = PPI::Document->new($source, readonly => 1)
or die qq<Could not parse "$source": >, PPI::Document->errstr(), ".\n";
return $document;
} # end _create_document_from_file()
const my $QUOTE_WORDS_DELIMITER_OFFSET => length 'qw<';
sub _modules_loaded_by_base_or_parent {
my ($statement) = @_;
my @modules;
my @children = $statement->schildren();
shift @children; # use/require/my
shift @children; # 'base'/'parent'
if (@children and $children[0] =~ m< v? [\d.]+ >xms) {
# Skip version requirement for 'base'/'parent'. Not worrying about
# the potential following comma.
shift @children;
}
foreach my $child (@children) {
if ( $child->isa('PPI::Token::Quote') ) {
push @modules, $child->string();
} elsif ( $child->isa('PPI::Token::QuoteLike::Words') ) {
push @modules, $child->literal();
} # end if
} # end foreach
return @modules;
} # end _modules_loaded_by_base_or_parent()
sub _modules_loaded_by_moose_sugar {
my ($document, $sugar) = @_;
my @modules;
my $statements = $document->find( _create_wanted_moose_sugar($sugar) );
return if not $statements;
foreach my $statement ( @{$statements} ) {
my @children = $statement->schildren();
shift @children; # 'with'
foreach my $child (@children) {
if ( $child->isa('PPI::Token::Quote') ) {
push @modules, $child->string();
} elsif ( $child->isa('PPI::Token::QuoteLike::Words') ) {
push @modules, $child->literal();
} # end if
} # end foreach
} # end foreach
return @modules;
} # end _modules_loaded_by_moose_sugar()
sub _create_wanted_moose_sugar {
my ($sugar) = @_;
# Have to return 0 for false because undef tells PPI to stop searching.
return sub {
my (undef, $element) = @_;
# Fix this once the next PPI version is released. Want only vanilla
# statements.
return 0 if ref $element ne 'PPI::Statement';
my $first_child = $element->schild(0);
return 0 if not $first_child;
return 0 if not $first_child->isa('PPI::Token::Word');
return $first_child->content() eq $sugar;
}; # end closure
} # end _create_wanted_moose_sugar()
1; # Magic true value required at end of module.
__END__
=encoding utf8
=for stopwords
=head1 NAME
Module::Used - Find modules loaded by Perl code without running it.
=head1 VERSION
This document describes Module::Used version 1.3.0.
=head1 SYNOPSIS
use Module::Used qw< :all >;
@modules = modules_used_in_files(@files);
@modules = modules_used_in_modules(@module_names);
# "strict", "Find::Bin", "warnings"
@modules = modules_used_in_string(
'use strict; require Find::Bin; no warnings;'
);
# "Exporter"
@modules = modules_used_in_string( 'use parent 0.221 qw< Exporter >;' );
=head1 DESCRIPTION
Modules are found statically based upon C<use> and C<require> statements. If
use of the L<base> or L<parent> is found, both that module and the referenced
ones will be returned. If L<Moose> or L<Moose::Role> are found, this will
look for C<extends> and C<with> sugar will be looked for; presently, this will
miss modules listed in parentheses.
Dynamically loaded modules will not be found.
=head1 INTERFACE
Nothing is exported by default, but you can import everything using
the C<:all> tag.
=over
=item C< modules_used_in_files( @files ) >
Return a list of modules used in the specified files.
C<die>s if there is a problem reading a file.
=item C< modules_used_in_modules( @module_names ) >
Return a list of modules used in the specified modules.
C<die>s if there any of the modules weren't found in C<@INC>.
=item C< modules_used_in_string( $string ) >
Return a list of modules used in the code in the parameter.
=item C< modules_used_in_document( $document ) >
Return a list of modules used in the specified L<PPI::Document>.
=back
=head1 DIAGNOSTICS
=over
=item Could not find module "%s" in @INC.
Cannot find the location of the named module. Note that this module will not
find any dynamically loaded modules.
=item "%s" does not exist.
Cannot find the file.
=item "%s" is not readable.
Cannot read the file.
=item "%s" is a directory.
The "file" was actually a directory.
=item Could not parse "%s".
L<PPI> could not interpret the file as a Perl document.
=back
=head1 CONFIGURATION AND ENVIRONMENT
None, currently.
=head1 DEPENDENCIES
L<Const::Fast>
L<Module::Path>
L<PPI::Document>
L<version>
=head1 INCOMPATIBILITIES
None reported.
=head1 BUGS AND LIMITATIONS
None reported.
Please report any bugs or feature requests to C<bug-module-used@rt.cpan.org>,
or through the web interface at L<http://rt.cpan.org>.
=head1 SEE ALSO
L<Devel::Loaded>
L<Module::Extract::Namespaces>
L<Module::ScanDeps>
L<Module::PrintUsed>
=head1 AUTHOR
Elliot Shank C<< <perl@galumph.com> >>
=head1 LICENSE AND COPYRIGHT
Copyright ©2008-2012, Elliot Shank C<< <perl@galumph.com> >>.
This module is free software; you can redistribute it and/or modify it under
the same terms as Perl itself. See L<perlartistic>.
=head1 DISCLAIMER OF WARRANTY
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE
SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE,
YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY
COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO
LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR
THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER
SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
=cut
# setup vim: set filetype=perl tabstop=4 softtabstop=4 expandtab :
# setup vim: set shiftwidth=4 shiftround textwidth=78 nowrap autoindent :
# setup vim: set foldmethod=indent foldlevel=0 :
|