← Index
NYTProf Performance Profile   « line view »
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 14:16:49 2016
Reported on Fri Jan 8 14:23:08 2016

Filename/usr/share/perl5/Module/Find.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
541213.06ms3.06msModule::Find::::CORE:ftdirModule::Find::CORE:ftdir (opcode)
517111.60ms1.60msModule::Find::::CORE:ftereadModule::Find::CORE:fteread (opcode)
69121972µs972µsModule::Find::::CORE:matchModule::Find::CORE:match (opcode)
211781µs44.9msModule::Find::::_findModule::Find::_find
51711778µs778µsModule::Find::::CORE:substModule::Find::CORE:subst (opcode)
11124µs24µsModule::Find::::BEGIN@3Module::Find::BEGIN@3
21115µs44.9msModule::Find::::findallmodModule::Find::findallmod
11113µs50µsModule::Find::::BEGIN@8Module::Find::BEGIN@8
1119µs9µsModule::Find::::BEGIN@7Module::Find::BEGIN@7
1118µs15µsModule::Find::::BEGIN@4Module::Find::BEGIN@4
1116µs11µsModule::Find::::BEGIN@5Module::Find::BEGIN@5
0000s0sModule::Find::::_wantedModule::Find::_wanted
0000s0sModule::Find::::findsubmodModule::Find::findsubmod
0000s0sModule::Find::::followsymlinksModule::Find::followsymlinks
0000s0sModule::Find::::ignoresymlinksModule::Find::ignoresymlinks
0000s0sModule::Find::::setmoduledirsModule::Find::setmoduledirs
0000s0sModule::Find::::useallModule::Find::useall
0000s0sModule::Find::::usesubModule::Find::usesub
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Module::Find;
2
3124µs
# spent 24µs within Module::Find::BEGIN@3 which was called: # once (24µs+0s) by DBIx::Class::Schema::_findallmod at line 3
use 5.006001;
# spent 24µs making 1 call to Module::Find::BEGIN@3
4222µs
# spent 15µs (8+7) within Module::Find::BEGIN@4 which was called: # once (8µs+7µs) by DBIx::Class::Schema::_findallmod at line 4
use strict;
# spent 15µs making 1 call to Module::Find::BEGIN@4 # spent 7µs making 1 call to strict::import
5216µs
# spent 11µs (6+5) within Module::Find::BEGIN@5 which was called: # once (6µs+5µs) by DBIx::Class::Schema::_findallmod at line 5
use warnings;
# spent 11µs making 1 call to Module::Find::BEGIN@5 # spent 5µs making 1 call to warnings::import
6
719µs
# spent 9µs within Module::Find::BEGIN@7 which was called: # once (9µs+0s) by DBIx::Class::Schema::_findallmod at line 7
use File::Spec;
# spent 9µs making 1 call to Module::Find::BEGIN@7
8286µs
# spent 50µs (13+37) within Module::Find::BEGIN@8 which was called: # once (13µs+37µs) by DBIx::Class::Schema::_findallmod at line 8
use File::Find;
# spent 50µs making 1 call to Module::Find::BEGIN@8 # spent 37µs making 1 call to Exporter::import
9
10our $VERSION = '0.12';
11
12our $basedir = undef;
13our @results = ();
14our $prune = 0;
15our $followMode = 1;
16
17our @ISA = qw(Exporter);
18
19our @EXPORT = qw(findsubmod findallmod usesub useall setmoduledirs);
20
21our @EXPORT_OK = qw(followsymlinks ignoresymlinks);
22
23=encoding utf-8
24
25=head1 NAME
26
27Module::Find - Find and use installed modules in a (sub)category
28
29=head1 SYNOPSIS
30
31 use Module::Find;
32
33 # use all modules in the Plugins/ directory
34 @found = usesub Mysoft::Plugins;
35
36 # use modules in all subdirectories
37 @found = useall Mysoft::Plugins;
38
39 # find all DBI::... modules
40 @found = findsubmod DBI;
41
42 # find anything in the CGI/ directory
43 @found = findallmod CGI;
44
45 # set your own search dirs (uses @INC otherwise)
46 setmoduledirs(@INC, @plugindirs, $appdir);
47
48 # not exported by default
49 use Module::Find qw(ignoresymlinks followsymlinks);
50
51 # ignore symlinks
52 ignoresymlinks();
53
54 # follow symlinks (default)
55 followsymlinks();
56
57=head1 DESCRIPTION
58
59Module::Find lets you find and use modules in categories. This can be very
60useful for auto-detecting driver or plugin modules. You can differentiate
61between looking in the category itself or in all subcategories.
62
63If you want Module::Find to search in a certain directory on your
64harddisk (such as the plugins directory of your software installation),
65make sure you modify C<@INC> before you call the Module::Find functions.
66
67=head1 FUNCTIONS
68
69=over
70
71=item C<setmoduledirs(@directories)>
72
73Sets the directories to be searched for modules. If not set, Module::Find
74will use @INC. If you use this function, @INC will I<not> be included
75automatically, so add it if you want it. Set to undef to revert to
76default behaviour.
77
78=cut
79
80sub setmoduledirs {
81 return @Module::Find::ModuleDirs = grep { defined } @_;
82}
83
84=item C<@found = findsubmod Module::Category>
85
86Returns modules found in the Module/Category subdirectories of your perl
87installation. E.g. C<findsubmod CGI> will return C<CGI::Session>, but
88not C<CGI::Session::File> .
89
90=cut
91
92sub findsubmod(*) {
93 $prune = 1;
94
95 return _find($_[0]);
96}
97
98=item C<@found = findallmod Module::Category>
99
100Returns modules found in the Module/Category subdirectories of your perl
101installation. E.g. C<findallmod CGI> will return C<CGI::Session> and also
102C<CGI::Session::File> .
103
104=cut
105
106
# spent 44.9ms (15µs+44.9) within Module::Find::findallmod which was called 2 times, avg 22.4ms/call: # 2 times (15µs+44.9ms) by DBIx::Class::Schema::_findallmod at line 168 of DBIx/Class/Schema.pm, avg 22.4ms/call
sub findallmod(*) {
107 $prune = 0;
108
109244.9ms return _find($_[0]);
# spent 44.9ms making 2 calls to Module::Find::_find, avg 22.4ms/call
110}
111
112=item C<@found = usesub Module::Category>
113
114Uses and returns modules found in the Module/Category subdirectories of your perl
115installation. E.g. C<usesub CGI> will return C<CGI::Session>, but
116not C<CGI::Session::File> .
117
118If any module dies during loading, usesub will also die at this point.
119
120=cut
121
122sub usesub(*) {
123 $prune = 1;
124
125 my @r = _find($_[0]);
126
127 foreach my $m (@r) {
128 eval " require $m; import $m ; ";
129 die $@ if $@;
130 }
131
132 return @r;
133}
134
135=item C<@found = useall Module::Category>
136
137Uses and returns modules found in the Module/Category subdirectories of your perl installation. E.g. C<useall CGI> will return C<CGI::Session> and also
138C<CGI::Session::File> .
139
140If any module dies during loading, useall will also die at this point.
141
142=cut
143
144sub useall(*) {
145 $prune = 0;
146
147 my @r = _find($_[0]);
148
149 foreach my $m (@r) {
150 eval " require $m; import $m; ";
151 die $@ if $@;
152 }
153
154 return @r;
155}
156
157# 'wanted' functions for find()
158# you know, this would be a nice application for currying...
159sub _wanted {
16052019.7ms my $name = File::Spec->abs2rel($_, $basedir);
# spent 19.7ms making 520 calls to File::Spec::Unix::abs2rel, avg 38µs/call
161520370µs return unless $name && $name ne File::Spec->curdir();
# spent 370µs making 520 calls to File::Spec::Unix::curdir, avg 711ns/call
162
1635172.27ms if (-d && $prune) {
# spent 2.27ms making 517 calls to Module::Find::CORE:ftdir, avg 4µs/call
164 $File::Find::prune = 1;
165 return;
166 }
167
16810342.37ms return unless /\.pm$/ && -r;
# spent 1.60ms making 517 calls to Module::Find::CORE:fteread, avg 3µs/call # spent 767µs making 517 calls to Module::Find::CORE:match, avg 1µs/call
169
170517778µs $name =~ s|\.pm$||;
# spent 778µs making 517 calls to Module::Find::CORE:subst, avg 2µs/call
171517606µs $name = join('::', File::Spec->splitdir($name));
# spent 606µs making 517 calls to File::Spec::Unix::splitdir, avg 1µs/call
172
173 push @results, $name;
174}
175
176
177# helper functions for finding files
178
179
# spent 44.9ms (781µs+44.1) within Module::Find::_find which was called 2 times, avg 22.4ms/call: # 2 times (781µs+44.1ms) by Module::Find::findallmod at line 109, avg 22.4ms/call
sub _find(*) {
180 my ($category) = @_;
181 return undef unless defined $category;
182
183423µs my $dir = File::Spec->catdir(split(/::/, $category));
# spent 21µs making 2 calls to File::Spec::Unix::catdir, avg 10µs/call # spent 2µs making 2 calls to File::Spec::Unix::canonpath, avg 1µs/call
184
185 my @dirs;
186 if (@Module::Find::ModuleDirs) {
187 @dirs = map { File::Spec->catdir($_, $dir) }
188 @Module::Find::ModuleDirs;
189 } else {
1904877µs @dirs = map { File::Spec->catdir($_, $dir) } @INC;
# spent 66µs making 24 calls to File::Spec::Unix::catdir, avg 3µs/call # spent 11µs making 24 calls to File::Spec::Unix::canonpath, avg 462ns/call
191 }
192 @results = ();
193
194 foreach $basedir (@dirs) {
19524795µs next unless -d $basedir;
# spent 795µs making 24 calls to Module::Find::CORE:ftdir, avg 33µs/call
196
197343.0ms find({wanted => \&_wanted,
# spent 43.0ms making 3 calls to File::Find::find, avg 14.3ms/call
198 no_chdir => 1,
199 follow => $followMode}, $basedir);
200 }
201
202 # filter duplicate modules
203 my %seen = ();
204 @results = grep { not $seen{$_}++ } @results;
205
206 @results = map "$category\::$_", @results;
207
208174205µs @results = map {
# spent 205µs making 174 calls to Module::Find::CORE:match, avg 1µs/call
209 ($_ =~ m{^(\w+(?:::\w+)*)$})[0] || die "$_ does not look like a package name"
210 } @results;
211
212 return @results;
213}
214
215=item C<ignoresymlinks()>
216
217Do not follow symlinks. This function is not exported by default.
218
219=cut
220
221sub ignoresymlinks {
222 $followMode = 0;
223}
224
225=item C<followsymlinks()>
226
227Follow symlinks (default behaviour). This function is not exported by default.
228
229=cut
230
231sub followsymlinks {
232 $followMode = 1;
233}
234
235=back
236
237=head1 HISTORY
238
239=over 8
240
241=item 0.01, 2004-04-22
242
243Original version; created by h2xs 1.22
244
245=item 0.02, 2004-05-25
246
247Added test modules that were left out in the first version. Thanks to
248Stuart Johnston for alerting me to this.
249
250=item 0.03, 2004-06-18
251
252Fixed a bug (non-localized $_) by declaring a loop variable in use functions.
253Thanks to Stuart Johnston for alerting me to this and providing a fix.
254
255Fixed non-platform compatibility by using File::Spec.
256Thanks to brian d foy.
257
258Added setmoduledirs and updated tests. Idea shamelessly stolen from
259...errm... inspired by brian d foy.
260
261=item 0.04, 2005-05-20
262
263Added POD tests.
264
265=item 0.05, 2005-11-30
266
267Fixed issue with bugfix in PathTools-3.14.
268
269=item 0.06, 2008-01-26
270
271Module::Find now won't report duplicate modules several times anymore (thanks to Uwe Völker for the report and the patch)
272
273=item 0.07, 2009-09-08
274
275Fixed RT#38302: Module::Find now follows symlinks by default (can be disabled).
276
277=item 0.08, 2009-09-08
278
279Fixed RT#49511: Removed Mac OS X extended attributes from distribution
280
281=item 0.09, 2010-02-26
282
283Fixed RT#38302: Fixed META.yml generation (thanks very much to cpanservice for the help).
284
285=item 0.10, 2010-02-26
286
287Fixed RT#55010: Removed Unicode BOM from Find.pm.
288
289=item 0.11, 2012-05-22
290
291Fixed RT#74251: defined(@array) is deprecated under Perl 5.15.7.
292Thanks to Roman F, who contributed the implementation.
293
294=item 0.12, 2014-02-08
295
296Fixed RT#81077: useall fails in taint mode
297Thanks to Aran Deltac, who contributed the implementation and test.
298
299Fixed RT#83596: Documentation doesn't describe behaviour if a module fails to load
300Clarified documentation for useall and usesub.
301
302Fixed RT#62923: setmoduledirs(undef) doesn't reset to searching @INC
303Added more explicit tests.
304Thanks to Colin Robertson for his input.
305
306=back
307
308=head1 DEVELOPMENT NOTES
309
310Please report any bugs using the CPAN RT system. The development repository for this module is hosted on GitHub: L<http://github.com/crenz/Module-Find/>.
311
312=head1 SEE ALSO
313
314L<perl>
315
316=head1 AUTHOR
317
318Christian Renz, E<lt>crenz@web42.comE<gt>
319
320=head1 COPYRIGHT AND LICENSE
321
322Copyright 2004-2014 by Christian Renz <crenz@web42.com>. All rights reserved.
323
324This library is free software; you can redistribute it and/or modify
325it under the same terms as Perl itself.
326
327=cut
328
3291;
 
# spent 3.06ms within Module::Find::CORE:ftdir which was called 541 times, avg 6µs/call: # 517 times (2.27ms+0s) by File::Find::find at line 163, avg 4µs/call # 24 times (795µs+0s) by Module::Find::_find at line 195, avg 33µs/call
sub Module::Find::CORE:ftdir; # opcode
# spent 1.60ms within Module::Find::CORE:fteread which was called 517 times, avg 3µs/call: # 517 times (1.60ms+0s) by File::Find::find at line 168, avg 3µs/call
sub Module::Find::CORE:fteread; # opcode
# spent 972µs within Module::Find::CORE:match which was called 691 times, avg 1µs/call: # 517 times (767µs+0s) by File::Find::find at line 168, avg 1µs/call # 174 times (205µs+0s) by Module::Find::_find at line 208, avg 1µs/call
sub Module::Find::CORE:match; # opcode
# spent 778µs within Module::Find::CORE:subst which was called 517 times, avg 2µs/call: # 517 times (778µs+0s) by File::Find::find at line 170, avg 2µs/call
sub Module::Find::CORE:subst; # opcode