Filename | /usr/local/perls/perl-5.26.1/lib/5.26.1/File/Find.pm |
Statements | Executed 207641 statements in 1.26s |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
14322 | 2 | 1 | 705ms | 705ms | CORE:lstat (opcode) | File::Find::
98 | 1 | 1 | 352ms | 1.54s | _find_dir | File::Find::
2357 | 1 | 1 | 131ms | 131ms | CORE:readdir (opcode) | File::Find::
18929 | 2 | 1 | 29.0ms | 29.0ms | CORE:regcomp (opcode) | File::Find::
2357 | 1 | 1 | 22.0ms | 22.0ms | CORE:open_dir (opcode) | File::Find::
18929 | 2 | 1 | 16.7ms | 16.7ms | CORE:match (opcode) | File::Find::
3583 | 5 | 1 | 10.9ms | 10.9ms | CORE:chdir (opcode) | File::Find::
2357 | 1 | 1 | 7.63ms | 7.63ms | CORE:closedir (opcode) | File::Find::
14322 | 2 | 1 | 6.00ms | 6.00ms | CORE:ftdir (opcode) | File::Find::
107 | 1 | 1 | 4.91ms | 1.55s | _find_opt | File::Find::
107 | 1 | 1 | 1.03ms | 1.55s | find | File::Find::
107 | 1 | 1 | 664µs | 664µs | wrap_wanted | File::Find::
107 | 1 | 1 | 200µs | 200µs | CORE:subst (opcode) | File::Find::
0 | 0 | 0 | 0s | 0s | BEGIN | File::Find::
0 | 0 | 0 | 0s | 0s | Follow_SymLink | File::Find::
0 | 0 | 0 | 0s | 0s | PathCombine | File::Find::
0 | 0 | 0 | 0s | 0s | _find_dir_symlnk | File::Find::
0 | 0 | 0 | 0s | 0s | contract_name | File::Find::
0 | 0 | 0 | 0s | 0s | finddepth | File::Find::
0 | 0 | 0 | 0s | 0s | is_tainted_pp | File::Find::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package File::Find; | ||||
2 | use 5.006; | ||||
3 | use strict; | ||||
4 | use warnings; | ||||
5 | use warnings::register; | ||||
6 | our $VERSION = '1.34'; | ||||
7 | require Exporter; | ||||
8 | require Cwd; | ||||
9 | |||||
10 | our @ISA = qw(Exporter); | ||||
11 | our @EXPORT = qw(find finddepth); | ||||
12 | |||||
13 | |||||
14 | use strict; | ||||
15 | my $Is_VMS; | ||||
16 | my $Is_Win32; | ||||
17 | |||||
18 | require File::Basename; | ||||
19 | require File::Spec; | ||||
20 | |||||
21 | # Should ideally be my() not our() but local() currently | ||||
22 | # refuses to operate on lexicals | ||||
23 | |||||
24 | our %SLnkSeen; | ||||
25 | our ($wanted_callback, $avoid_nlink, $bydepth, $no_chdir, $follow, | ||||
26 | $follow_skip, $full_check, $untaint, $untaint_skip, $untaint_pat, | ||||
27 | $pre_process, $post_process, $dangling_symlinks); | ||||
28 | |||||
29 | sub contract_name { | ||||
30 | my ($cdir,$fn) = @_; | ||||
31 | |||||
32 | return substr($cdir,0,rindex($cdir,'/')) if $fn eq $File::Find::current_dir; | ||||
33 | |||||
34 | $cdir = substr($cdir,0,rindex($cdir,'/')+1); | ||||
35 | |||||
36 | $fn =~ s|^\./||; | ||||
37 | |||||
38 | my $abs_name= $cdir . $fn; | ||||
39 | |||||
40 | if (substr($fn,0,3) eq '../') { | ||||
41 | 1 while $abs_name =~ s!/[^/]*/\.\./+!/!; | ||||
42 | } | ||||
43 | |||||
44 | return $abs_name; | ||||
45 | } | ||||
46 | |||||
47 | sub PathCombine($$) { | ||||
48 | my ($Base,$Name) = @_; | ||||
49 | my $AbsName; | ||||
50 | |||||
51 | if (substr($Name,0,1) eq '/') { | ||||
52 | $AbsName= $Name; | ||||
53 | } | ||||
54 | else { | ||||
55 | $AbsName= contract_name($Base,$Name); | ||||
56 | } | ||||
57 | |||||
58 | # (simple) check for recursion | ||||
59 | my $newlen= length($AbsName); | ||||
60 | if ($newlen <= length($Base)) { | ||||
61 | if (($newlen == length($Base) || substr($Base,$newlen,1) eq '/') | ||||
62 | && $AbsName eq substr($Base,0,$newlen)) | ||||
63 | { | ||||
64 | return undef; | ||||
65 | } | ||||
66 | } | ||||
67 | return $AbsName; | ||||
68 | } | ||||
69 | |||||
70 | sub Follow_SymLink($) { | ||||
71 | my ($AbsName) = @_; | ||||
72 | |||||
73 | my ($NewName,$DEV, $INO); | ||||
74 | ($DEV, $INO)= lstat $AbsName; | ||||
75 | |||||
76 | while (-l _) { | ||||
77 | if ($SLnkSeen{$DEV, $INO}++) { | ||||
78 | if ($follow_skip < 2) { | ||||
79 | die "$AbsName is encountered a second time"; | ||||
80 | } | ||||
81 | else { | ||||
82 | return undef; | ||||
83 | } | ||||
84 | } | ||||
85 | $NewName= PathCombine($AbsName, readlink($AbsName)); | ||||
86 | unless(defined $NewName) { | ||||
87 | if ($follow_skip < 2) { | ||||
88 | die "$AbsName is a recursive symbolic link"; | ||||
89 | } | ||||
90 | else { | ||||
91 | return undef; | ||||
92 | } | ||||
93 | } | ||||
94 | else { | ||||
95 | $AbsName= $NewName; | ||||
96 | } | ||||
97 | ($DEV, $INO) = lstat($AbsName); | ||||
98 | return undef unless defined $DEV; # dangling symbolic link | ||||
99 | } | ||||
100 | |||||
101 | if ($full_check && defined $DEV && $SLnkSeen{$DEV, $INO}++) { | ||||
102 | if ( ($follow_skip < 1) || ((-d _) && ($follow_skip < 2)) ) { | ||||
103 | die "$AbsName encountered a second time"; | ||||
104 | } | ||||
105 | else { | ||||
106 | return undef; | ||||
107 | } | ||||
108 | } | ||||
109 | |||||
110 | return $AbsName; | ||||
111 | } | ||||
112 | |||||
113 | our($dir, $name, $fullname, $prune); | ||||
114 | sub _find_dir_symlnk($$$); | ||||
115 | sub _find_dir($$$); | ||||
116 | |||||
117 | # check whether or not a scalar variable is tainted | ||||
118 | # (code straight from the Camel, 3rd ed., page 561) | ||||
119 | sub is_tainted_pp { | ||||
120 | my $arg = shift; | ||||
121 | my $nada = substr($arg, 0, 0); # zero-length | ||||
122 | local $@; | ||||
123 | eval { eval "# $nada" }; | ||||
124 | return length($@) != 0; | ||||
125 | } | ||||
126 | |||||
127 | # spent 1.55s (4.91ms+1.54) within File::Find::_find_opt which was called 107 times, avg 14.5ms/call:
# 107 times (4.91ms+1.54s) by File::Find::find at line 760, avg 14.5ms/call | ||||
128 | 107 | 63µs | my $wanted = shift; | ||
129 | 107 | 63µs | return unless @_; | ||
130 | 107 | 66µs | die "invalid top directory" unless defined $_[0]; | ||
131 | |||||
132 | # This function must local()ize everything because callbacks may | ||||
133 | # call find() or finddepth() | ||||
134 | |||||
135 | 107 | 105µs | local %SLnkSeen; | ||
136 | 107 | 150µs | local ($wanted_callback, $avoid_nlink, $bydepth, $no_chdir, $follow, | ||
137 | $follow_skip, $full_check, $untaint, $untaint_skip, $untaint_pat, | ||||
138 | $pre_process, $post_process, $dangling_symlinks); | ||||
139 | 107 | 51µs | local($dir, $name, $fullname, $prune); | ||
140 | 107 | 188µs | local *_ = \my $a; | ||
141 | |||||
142 | 107 | 3.10ms | 107 | 2.54ms | my $cwd = $wanted->{bydepth} ? Cwd::fastcwd() : Cwd::getcwd(); # spent 2.54ms making 107 calls to Cwd::getcwd, avg 24µs/call |
143 | 107 | 34µs | if ($Is_VMS) { | ||
144 | # VMS returns this by default in VMS format which just doesn't | ||||
145 | # work for the rest of this module. | ||||
146 | $cwd = VMS::Filespec::unixpath($cwd); | ||||
147 | |||||
148 | # Apparently this is not expected to have a trailing space. | ||||
149 | # To attempt to make VMS/UNIX conversions mostly reversible, | ||||
150 | # a trailing slash is needed. The run-time functions ignore the | ||||
151 | # resulting double slash, but it causes the perl tests to fail. | ||||
152 | $cwd =~ s#/\z##; | ||||
153 | |||||
154 | # This comes up in upper case now, but should be lower. | ||||
155 | # In the future this could be exact case, no need to change. | ||||
156 | } | ||||
157 | 107 | 52µs | my $cwd_untainted = $cwd; | ||
158 | 107 | 34µs | my $check_t_cwd = 1; | ||
159 | 107 | 60µs | $wanted_callback = $wanted->{wanted}; | ||
160 | 107 | 43µs | $bydepth = $wanted->{bydepth}; | ||
161 | 107 | 41µs | $pre_process = $wanted->{preprocess}; | ||
162 | 107 | 30µs | $post_process = $wanted->{postprocess}; | ||
163 | 107 | 43µs | $no_chdir = $wanted->{no_chdir}; | ||
164 | 107 | 46µs | $full_check = $Is_Win32 ? 0 : $wanted->{follow}; | ||
165 | $follow = $Is_Win32 ? 0 : | ||||
166 | 107 | 49µs | $full_check || $wanted->{follow_fast}; | ||
167 | 107 | 39µs | $follow_skip = $wanted->{follow_skip}; | ||
168 | 107 | 34µs | $untaint = $wanted->{untaint}; | ||
169 | 107 | 39µs | $untaint_pat = $wanted->{untaint_pattern}; | ||
170 | 107 | 51µs | $untaint_skip = $wanted->{untaint_skip}; | ||
171 | 107 | 31µs | $dangling_symlinks = $wanted->{dangling_symlinks}; | ||
172 | |||||
173 | # for compatibility reasons (find.pl, find2perl) | ||||
174 | 107 | 78µs | local our ($topdir, $topdev, $topino, $topmode, $topnlink); | ||
175 | |||||
176 | # a symbolic link to a directory doesn't increase the link count | ||||
177 | 107 | 44µs | $avoid_nlink = $follow || $File::Find::dont_use_nlink; | ||
178 | |||||
179 | 107 | 28µs | my ($abs_dir, $Is_Dir); | ||
180 | |||||
181 | Proc_Top_Item: | ||||
182 | 107 | 737µs | foreach my $TOP (@_) { | ||
183 | 107 | 46µs | my $top_item = $TOP; | ||
184 | 107 | 24µs | $top_item = VMS::Filespec::unixify($top_item) if $Is_VMS; | ||
185 | |||||
186 | 107 | 1.26ms | 107 | 789µs | ($topdev,$topino,$topmode,$topnlink) = $follow ? stat $top_item : lstat $top_item; # spent 789µs making 107 calls to File::Find::CORE:lstat, avg 7µs/call |
187 | |||||
188 | 107 | 64µs | if ($Is_Win32) { | ||
189 | $top_item =~ s|[/\\]\z|| | ||||
190 | unless $top_item =~ m{^(?:\w:)?[/\\]$}; | ||||
191 | } | ||||
192 | else { | ||||
193 | 107 | 465µs | 107 | 200µs | $top_item =~ s|/\z|| unless $top_item eq '/'; # spent 200µs making 107 calls to File::Find::CORE:subst, avg 2µs/call |
194 | } | ||||
195 | |||||
196 | 107 | 37µs | $Is_Dir= 0; | ||
197 | |||||
198 | 107 | 58µs | if ($follow) { | ||
199 | |||||
200 | if (substr($top_item,0,1) eq '/') { | ||||
201 | $abs_dir = $top_item; | ||||
202 | } | ||||
203 | elsif ($top_item eq $File::Find::current_dir) { | ||||
204 | $abs_dir = $cwd; | ||||
205 | } | ||||
206 | else { # care about any ../ | ||||
207 | $top_item =~ s/\.dir\z//i if $Is_VMS; | ||||
208 | $abs_dir = contract_name("$cwd/",$top_item); | ||||
209 | } | ||||
210 | $abs_dir= Follow_SymLink($abs_dir); | ||||
211 | unless (defined $abs_dir) { | ||||
212 | if ($dangling_symlinks) { | ||||
213 | if (ref $dangling_symlinks eq 'CODE') { | ||||
214 | $dangling_symlinks->($top_item, $cwd); | ||||
215 | } else { | ||||
216 | warnings::warnif "$top_item is a dangling symbolic link\n"; | ||||
217 | } | ||||
218 | } | ||||
219 | next Proc_Top_Item; | ||||
220 | } | ||||
221 | |||||
222 | if (-d _) { | ||||
223 | $top_item =~ s/\.dir\z//i if $Is_VMS; | ||||
224 | _find_dir_symlnk($wanted, $abs_dir, $top_item); | ||||
225 | $Is_Dir= 1; | ||||
226 | } | ||||
227 | } | ||||
228 | else { # no follow | ||||
229 | 107 | 65µs | $topdir = $top_item; | ||
230 | 107 | 28µs | unless (defined $topnlink) { | ||
231 | warnings::warnif "Can't stat $top_item: $!\n"; | ||||
232 | next Proc_Top_Item; | ||||
233 | } | ||||
234 | 107 | 263µs | 107 | 38µs | if (-d _) { # spent 38µs making 107 calls to File::Find::CORE:ftdir, avg 355ns/call |
235 | 98 | 14µs | $top_item =~ s/\.dir\z//i if $Is_VMS; | ||
236 | 98 | 233µs | 98 | 1.54s | _find_dir($wanted, $top_item, $topnlink); # spent 1.54s making 98 calls to File::Find::_find_dir, avg 15.7ms/call |
237 | 98 | 49µs | $Is_Dir= 1; | ||
238 | } | ||||
239 | else { | ||||
240 | 9 | 4µs | $abs_dir= $top_item; | ||
241 | } | ||||
242 | } | ||||
243 | |||||
244 | 107 | 26µs | unless ($Is_Dir) { | ||
245 | 9 | 50µs | 9 | 271µs | unless (($_,$dir) = File::Basename::fileparse($abs_dir)) { # spent 271µs making 9 calls to File::Basename::fileparse, avg 30µs/call |
246 | ($dir,$_) = ('./', $top_item); | ||||
247 | } | ||||
248 | |||||
249 | 9 | 5µs | $abs_dir = $dir; | ||
250 | 9 | 2µs | if (( $untaint ) && (is_tainted($dir) )) { | ||
251 | ( $abs_dir ) = $dir =~ m|$untaint_pat|; | ||||
252 | unless (defined $abs_dir) { | ||||
253 | if ($untaint_skip == 0) { | ||||
254 | die "directory $dir is still tainted"; | ||||
255 | } | ||||
256 | else { | ||||
257 | next Proc_Top_Item; | ||||
258 | } | ||||
259 | } | ||||
260 | } | ||||
261 | |||||
262 | 9 | 62µs | 9 | 34µs | unless ($no_chdir || chdir $abs_dir) { # spent 34µs making 9 calls to File::Find::CORE:chdir, avg 4µs/call |
263 | warnings::warnif "Couldn't chdir $abs_dir: $!\n"; | ||||
264 | next Proc_Top_Item; | ||||
265 | } | ||||
266 | |||||
267 | 9 | 12µs | $name = $abs_dir . $_; # $File::Find::name | ||
268 | 9 | 1µs | $_ = $name if $no_chdir; | ||
269 | |||||
270 | 18 | 13µs | 9 | 138µs | { $wanted_callback->() }; # protect against wild "next" # spent 138µs making 9 calls to CPAN::CacheMgr::__ANON__[CPAN/CacheMgr.pm:136], avg 15µs/call |
271 | |||||
272 | } | ||||
273 | |||||
274 | 107 | 107µs | unless ( $no_chdir ) { | ||
275 | 107 | 50µs | if ( ($check_t_cwd) && (($untaint) && (is_tainted($cwd) )) ) { | ||
276 | ( $cwd_untainted ) = $cwd =~ m|$untaint_pat|; | ||||
277 | unless (defined $cwd_untainted) { | ||||
278 | die "insecure cwd in find(depth)"; | ||||
279 | } | ||||
280 | $check_t_cwd = 0; | ||||
281 | } | ||||
282 | 107 | 624µs | 107 | 376µs | unless (chdir $cwd_untainted) { # spent 376µs making 107 calls to File::Find::CORE:chdir, avg 4µs/call |
283 | die "Can't cd to $cwd: $!\n"; | ||||
284 | } | ||||
285 | } | ||||
286 | } | ||||
287 | } | ||||
288 | |||||
289 | # API: | ||||
290 | # $wanted | ||||
291 | # $p_dir : "parent directory" | ||||
292 | # $nlink : what came back from the stat | ||||
293 | # preconditions: | ||||
294 | # chdir (if not no_chdir) to dir | ||||
295 | |||||
296 | # spent 1.54s (352ms+1.18) within File::Find::_find_dir which was called 98 times, avg 15.7ms/call:
# 98 times (352ms+1.18s) by File::Find::_find_opt at line 236, avg 15.7ms/call | ||||
297 | 98 | 89µs | my ($wanted, $p_dir, $nlink) = @_; | ||
298 | 98 | 56µs | my ($CdLvl,$Level) = (0,0); | ||
299 | 98 | 33µs | my @Stack; | ||
300 | my @filenames; | ||||
301 | my ($subcount,$sub_nlink); | ||||
302 | 98 | 82µs | my $SE= []; | ||
303 | 98 | 41µs | my $dir_name= $p_dir; | ||
304 | 98 | 17µs | my $dir_pref; | ||
305 | 98 | 52µs | my $dir_rel = $File::Find::current_dir; | ||
306 | 98 | 36µs | my $tainted = 0; | ||
307 | 98 | 31µs | my $no_nlink; | ||
308 | |||||
309 | 98 | 73µs | if ($Is_Win32) { | ||
310 | $dir_pref | ||||
311 | = ($p_dir =~ m{^(?:\w:[/\\]?|[/\\])$} ? $p_dir : "$p_dir/" ); | ||||
312 | } elsif ($Is_VMS) { | ||||
313 | |||||
314 | # VMS is returning trailing .dir on directories | ||||
315 | # and trailing . on files and symbolic links | ||||
316 | # in UNIX syntax. | ||||
317 | # | ||||
318 | |||||
319 | $p_dir =~ s/\.(dir)?$//i unless $p_dir eq '.'; | ||||
320 | |||||
321 | $dir_pref = ($p_dir =~ m/[\]>]+$/ ? $p_dir : "$p_dir/" ); | ||||
322 | } | ||||
323 | else { | ||||
324 | 98 | 110µs | $dir_pref= ( $p_dir eq '/' ? '/' : "$p_dir/" ); | ||
325 | } | ||||
326 | |||||
327 | 98 | 228µs | local ($dir, $name, $prune, *DIR); | ||
328 | |||||
329 | 98 | 69µs | unless ( $no_chdir || ($p_dir eq $File::Find::current_dir)) { | ||
330 | 98 | 45µs | my $udir = $p_dir; | ||
331 | 98 | 30µs | if (( $untaint ) && (is_tainted($p_dir) )) { | ||
332 | ( $udir ) = $p_dir =~ m|$untaint_pat|; | ||||
333 | unless (defined $udir) { | ||||
334 | if ($untaint_skip == 0) { | ||||
335 | die "directory $p_dir is still tainted"; | ||||
336 | } | ||||
337 | else { | ||||
338 | return; | ||||
339 | } | ||||
340 | } | ||||
341 | } | ||||
342 | 98 | 725µs | 98 | 406µs | unless (chdir ($Is_VMS && $udir !~ /[\/\[<]+/ ? "./$udir" : $udir)) { # spent 406µs making 98 calls to File::Find::CORE:chdir, avg 4µs/call |
343 | warnings::warnif "Can't cd to $udir: $!\n"; | ||||
344 | return; | ||||
345 | } | ||||
346 | } | ||||
347 | |||||
348 | # push the starting directory | ||||
349 | 98 | 16µs | push @Stack,[$CdLvl,$p_dir,$dir_rel,-1] if $bydepth; | ||
350 | |||||
351 | 98 | 2.06ms | while (defined $SE) { | ||
352 | 2357 | 602µs | unless ($bydepth) { | ||
353 | 2357 | 639µs | $dir= $p_dir; # $File::Find::dir | ||
354 | 2357 | 451µs | $name= $dir_name; # $File::Find::name | ||
355 | 2357 | 697µs | $_= ($no_chdir ? $dir_name : $dir_rel ); # $_ | ||
356 | # prune may happen here | ||||
357 | 2357 | 385µs | $prune= 0; | ||
358 | 4714 | 4.24ms | 2357 | 43.0ms | { $wanted_callback->() }; # protect against wild "next" # spent 43.0ms making 2357 calls to CPAN::CacheMgr::__ANON__[CPAN/CacheMgr.pm:136], avg 18µs/call |
359 | 2357 | 428µs | next if $prune; | ||
360 | } | ||||
361 | |||||
362 | # change to that directory | ||||
363 | 2357 | 900µs | unless ($no_chdir || ($dir_rel eq $File::Find::current_dir)) { | ||
364 | 2259 | 724µs | my $udir= $dir_rel; | ||
365 | 2259 | 283µs | if ( ($untaint) && (($tainted) || ($tainted = is_tainted($dir_rel) )) ) { | ||
366 | ( $udir ) = $dir_rel =~ m|$untaint_pat|; | ||||
367 | unless (defined $udir) { | ||||
368 | if ($untaint_skip == 0) { | ||||
369 | die "directory (" . ($p_dir ne '/' ? $p_dir : '') . "/) $dir_rel is still tainted"; | ||||
370 | } else { # $untaint_skip == 1 | ||||
371 | next; | ||||
372 | } | ||||
373 | } | ||||
374 | } | ||||
375 | 2259 | 11.2ms | 2259 | 6.84ms | unless (chdir ($Is_VMS && $udir !~ /[\/\[<]+/ ? "./$udir" : $udir)) { # spent 6.84ms making 2259 calls to File::Find::CORE:chdir, avg 3µs/call |
376 | warnings::warnif "Can't cd to (" . | ||||
377 | ($p_dir ne '/' ? $p_dir : '') . "/) $udir: $!\n"; | ||||
378 | next; | ||||
379 | } | ||||
380 | 2259 | 619µs | $CdLvl++; | ||
381 | } | ||||
382 | |||||
383 | 2357 | 768µs | $dir= $dir_name; # $File::Find::dir | ||
384 | |||||
385 | # Get the list of files in the current directory. | ||||
386 | 2357 | 33.9ms | 2357 | 22.0ms | unless (opendir DIR, ($no_chdir ? $dir_name : $File::Find::current_dir)) { # spent 22.0ms making 2357 calls to File::Find::CORE:open_dir, avg 9µs/call |
387 | warnings::warnif "Can't opendir($dir_name): $!\n"; | ||||
388 | next; | ||||
389 | } | ||||
390 | 2357 | 146ms | 2357 | 131ms | @filenames = readdir DIR; # spent 131ms making 2357 calls to File::Find::CORE:readdir, avg 56µs/call |
391 | 2357 | 12.1ms | 2357 | 7.63ms | closedir(DIR); # spent 7.63ms making 2357 calls to File::Find::CORE:closedir, avg 3µs/call |
392 | 2357 | 425µs | @filenames = $pre_process->(@filenames) if $pre_process; | ||
393 | 2357 | 306µs | push @Stack,[$CdLvl,$dir_name,"",-2] if $post_process; | ||
394 | |||||
395 | # default: use whatever was specified | ||||
396 | # (if $nlink >= 2, and $avoid_nlink == 0, this will switch back) | ||||
397 | 2357 | 564µs | $no_nlink = $avoid_nlink; | ||
398 | # if dir has wrong nlink count, force switch to slower stat method | ||||
399 | 2357 | 581µs | $no_nlink = 1 if ($nlink < 2); | ||
400 | |||||
401 | 2357 | 1.19ms | if ($nlink == 2 && !$no_nlink) { | ||
402 | # This dir has no subdirectories. | ||||
403 | 5 | 6µs | for my $FN (@filenames) { | ||
404 | 10 | 2µs | if ($Is_VMS) { | ||
405 | # Big hammer here - Compensate for VMS trailing . and .dir | ||||
406 | # No win situation until this is changed, but this | ||||
407 | # will handle the majority of the cases with breaking the fewest | ||||
408 | |||||
409 | $FN =~ s/\.dir\z//i; | ||||
410 | $FN =~ s#\.$## if ($FN ne '.'); | ||||
411 | } | ||||
412 | 10 | 76µs | 20 | 37µs | next if $FN =~ $File::Find::skip_pattern; # spent 22µs making 10 calls to File::Find::CORE:regcomp, avg 2µs/call
# spent 15µs making 10 calls to File::Find::CORE:match, avg 2µs/call |
413 | |||||
414 | $name = $dir_pref . $FN; # $File::Find::name | ||||
415 | $_ = ($no_chdir ? $name : $FN); # $_ | ||||
416 | { $wanted_callback->() }; # protect against wild "next" | ||||
417 | } | ||||
418 | |||||
419 | } | ||||
420 | else { | ||||
421 | # This dir has subdirectories. | ||||
422 | 2352 | 548µs | $subcount = $nlink - 2; | ||
423 | |||||
424 | # HACK: insert directories at this position, so as to preserve | ||||
425 | # the user pre-processed ordering of files (thus ensuring | ||||
426 | # directory traversal is in user sorted order, not at random). | ||||
427 | 2352 | 1.04ms | my $stack_top = @Stack; | ||
428 | |||||
429 | 2352 | 2.52ms | for my $FN (@filenames) { | ||
430 | 18919 | 130ms | 37838 | 45.6ms | next if $FN =~ $File::Find::skip_pattern; # spent 28.9ms making 18919 calls to File::Find::CORE:regcomp, avg 2µs/call
# spent 16.7ms making 18919 calls to File::Find::CORE:match, avg 881ns/call |
431 | 14215 | 13.2ms | if ($subcount > 0 || $no_nlink) { | ||
432 | # Seen all the subdirs? | ||||
433 | # check for directoriness. | ||||
434 | # stat is faster for a file in the current directory | ||||
435 | 14215 | 774ms | 14215 | 704ms | $sub_nlink = (lstat ($no_chdir ? $dir_pref . $FN : $FN))[3]; # spent 704ms making 14215 calls to File::Find::CORE:lstat, avg 50µs/call |
436 | |||||
437 | 14215 | 36.9ms | 14215 | 5.96ms | if (-d _) { # spent 5.96ms making 14215 calls to File::Find::CORE:ftdir, avg 419ns/call |
438 | 2259 | 367µs | --$subcount; | ||
439 | 2259 | 290µs | $FN =~ s/\.dir\z//i if $Is_VMS; | ||
440 | # HACK: replace push to preserve dir traversal order | ||||
441 | #push @Stack,[$CdLvl,$dir_name,$FN,$sub_nlink]; | ||||
442 | 2259 | 4.34ms | splice @Stack, $stack_top, 0, | ||
443 | [$CdLvl,$dir_name,$FN,$sub_nlink]; | ||||
444 | } | ||||
445 | else { | ||||
446 | 11956 | 8.74ms | $name = $dir_pref . $FN; # $File::Find::name | ||
447 | 11956 | 3.25ms | $_= ($no_chdir ? $name : $FN); # $_ | ||
448 | 23912 | 26.9ms | 11956 | 215ms | { $wanted_callback->() }; # protect against wild "next" # spent 215ms making 11956 calls to CPAN::CacheMgr::__ANON__[CPAN/CacheMgr.pm:136], avg 18µs/call |
449 | } | ||||
450 | } | ||||
451 | else { | ||||
452 | $name = $dir_pref . $FN; # $File::Find::name | ||||
453 | $_= ($no_chdir ? $name : $FN); # $_ | ||||
454 | { $wanted_callback->() }; # protect against wild "next" | ||||
455 | } | ||||
456 | } | ||||
457 | } | ||||
458 | } | ||||
459 | continue { | ||||
460 | 2357 | 3.55ms | while ( defined ($SE = pop @Stack) ) { | ||
461 | 2259 | 2.33ms | ($Level, $p_dir, $dir_rel, $nlink) = @$SE; | ||
462 | 2259 | 784µs | if ($CdLvl > $Level && !$no_chdir) { | ||
463 | 1110 | 167µs | my $tmp; | ||
464 | 1110 | 269µs | if ($Is_VMS) { | ||
465 | $tmp = '[' . ('-' x ($CdLvl-$Level)) . ']'; | ||||
466 | } | ||||
467 | else { | ||||
468 | 1110 | 1.28ms | $tmp = join('/',('..') x ($CdLvl-$Level)); | ||
469 | } | ||||
470 | 1110 | 5.63ms | 1110 | 3.29ms | die "Can't cd to $tmp from $dir_name: $!" # spent 3.29ms making 1110 calls to File::Find::CORE:chdir, avg 3µs/call |
471 | unless chdir ($tmp); | ||||
472 | 1110 | 367µs | $CdLvl = $Level; | ||
473 | } | ||||
474 | |||||
475 | 2259 | 5.63ms | if ($Is_Win32) { | ||
476 | $dir_name = ($p_dir =~ m{^(?:\w:[/\\]?|[/\\])$} | ||||
477 | ? "$p_dir$dir_rel" : "$p_dir/$dir_rel"); | ||||
478 | $dir_pref = "$dir_name/"; | ||||
479 | } | ||||
480 | elsif ($^O eq 'VMS') { | ||||
481 | if ($p_dir =~ m/[\]>]+$/) { | ||||
482 | $dir_name = $p_dir; | ||||
483 | $dir_name =~ s/([\]>]+)$/.$dir_rel$1/; | ||||
484 | $dir_pref = $dir_name; | ||||
485 | } | ||||
486 | else { | ||||
487 | $dir_name = "$p_dir/$dir_rel"; | ||||
488 | $dir_pref = "$dir_name/"; | ||||
489 | } | ||||
490 | } | ||||
491 | else { | ||||
492 | 2259 | 3.12ms | $dir_name = ($p_dir eq '/' ? "/$dir_rel" : "$p_dir/$dir_rel"); | ||
493 | 2259 | 481µs | $dir_pref = "$dir_name/"; | ||
494 | } | ||||
495 | |||||
496 | 2259 | 797µs | if ( $nlink == -2 ) { | ||
497 | $name = $dir = $p_dir; # $File::Find::name / dir | ||||
498 | $_ = $File::Find::current_dir; | ||||
499 | $post_process->(); # End-of-directory processing | ||||
500 | } | ||||
501 | elsif ( $nlink < 0 ) { # must be finddepth, report dirname now | ||||
502 | $name = $dir_name; | ||||
503 | if ( substr($name,-2) eq '/.' ) { | ||||
504 | substr($name, length($name) == 2 ? -1 : -2) = ''; | ||||
505 | } | ||||
506 | $dir = $p_dir; | ||||
507 | $_ = ($no_chdir ? $dir_name : $dir_rel ); | ||||
508 | if ( substr($_,-2) eq '/.' ) { | ||||
509 | substr($_, length($_) == 2 ? -1 : -2) = ''; | ||||
510 | } | ||||
511 | { $wanted_callback->() }; # protect against wild "next" | ||||
512 | } | ||||
513 | else { | ||||
514 | 2259 | 349µs | push @Stack,[$CdLvl,$p_dir,$dir_rel,-1] if $bydepth; | ||
515 | 2259 | 827µs | last; | ||
516 | } | ||||
517 | } | ||||
518 | } | ||||
519 | } | ||||
520 | |||||
521 | |||||
522 | # API: | ||||
523 | # $wanted | ||||
524 | # $dir_loc : absolute location of a dir | ||||
525 | # $p_dir : "parent directory" | ||||
526 | # preconditions: | ||||
527 | # chdir (if not no_chdir) to dir | ||||
528 | |||||
529 | sub _find_dir_symlnk($$$) { | ||||
530 | my ($wanted, $dir_loc, $p_dir) = @_; # $dir_loc is the absolute directory | ||||
531 | my @Stack; | ||||
532 | my @filenames; | ||||
533 | my $new_loc; | ||||
534 | my $updir_loc = $dir_loc; # untainted parent directory | ||||
535 | my $SE = []; | ||||
536 | my $dir_name = $p_dir; | ||||
537 | my $dir_pref; | ||||
538 | my $loc_pref; | ||||
539 | my $dir_rel = $File::Find::current_dir; | ||||
540 | my $byd_flag; # flag for pending stack entry if $bydepth | ||||
541 | my $tainted = 0; | ||||
542 | my $ok = 1; | ||||
543 | |||||
544 | $dir_pref = ( $p_dir eq '/' ? '/' : "$p_dir/" ); | ||||
545 | $loc_pref = ( $dir_loc eq '/' ? '/' : "$dir_loc/" ); | ||||
546 | |||||
547 | local ($dir, $name, $fullname, $prune, *DIR); | ||||
548 | |||||
549 | unless ($no_chdir) { | ||||
550 | # untaint the topdir | ||||
551 | if (( $untaint ) && (is_tainted($dir_loc) )) { | ||||
552 | ( $updir_loc ) = $dir_loc =~ m|$untaint_pat|; # parent dir, now untainted | ||||
553 | # once untainted, $updir_loc is pushed on the stack (as parent directory); | ||||
554 | # hence, we don't need to untaint the parent directory every time we chdir | ||||
555 | # to it later | ||||
556 | unless (defined $updir_loc) { | ||||
557 | if ($untaint_skip == 0) { | ||||
558 | die "directory $dir_loc is still tainted"; | ||||
559 | } | ||||
560 | else { | ||||
561 | return; | ||||
562 | } | ||||
563 | } | ||||
564 | } | ||||
565 | $ok = chdir($updir_loc) unless ($p_dir eq $File::Find::current_dir); | ||||
566 | unless ($ok) { | ||||
567 | warnings::warnif "Can't cd to $updir_loc: $!\n"; | ||||
568 | return; | ||||
569 | } | ||||
570 | } | ||||
571 | |||||
572 | push @Stack,[$dir_loc,$updir_loc,$p_dir,$dir_rel,-1] if $bydepth; | ||||
573 | |||||
574 | while (defined $SE) { | ||||
575 | |||||
576 | unless ($bydepth) { | ||||
577 | # change (back) to parent directory (always untainted) | ||||
578 | unless ($no_chdir) { | ||||
579 | unless (chdir $updir_loc) { | ||||
580 | warnings::warnif "Can't cd to $updir_loc: $!\n"; | ||||
581 | next; | ||||
582 | } | ||||
583 | } | ||||
584 | $dir= $p_dir; # $File::Find::dir | ||||
585 | $name= $dir_name; # $File::Find::name | ||||
586 | $_= ($no_chdir ? $dir_name : $dir_rel ); # $_ | ||||
587 | $fullname= $dir_loc; # $File::Find::fullname | ||||
588 | # prune may happen here | ||||
589 | $prune= 0; | ||||
590 | lstat($_); # make sure file tests with '_' work | ||||
591 | { $wanted_callback->() }; # protect against wild "next" | ||||
592 | next if $prune; | ||||
593 | } | ||||
594 | |||||
595 | # change to that directory | ||||
596 | unless ($no_chdir || ($dir_rel eq $File::Find::current_dir)) { | ||||
597 | $updir_loc = $dir_loc; | ||||
598 | if ( ($untaint) && (($tainted) || ($tainted = is_tainted($dir_loc) )) ) { | ||||
599 | # untaint $dir_loc, what will be pushed on the stack as (untainted) parent dir | ||||
600 | ( $updir_loc ) = $dir_loc =~ m|$untaint_pat|; | ||||
601 | unless (defined $updir_loc) { | ||||
602 | if ($untaint_skip == 0) { | ||||
603 | die "directory $dir_loc is still tainted"; | ||||
604 | } | ||||
605 | else { | ||||
606 | next; | ||||
607 | } | ||||
608 | } | ||||
609 | } | ||||
610 | unless (chdir $updir_loc) { | ||||
611 | warnings::warnif "Can't cd to $updir_loc: $!\n"; | ||||
612 | next; | ||||
613 | } | ||||
614 | } | ||||
615 | |||||
616 | $dir = $dir_name; # $File::Find::dir | ||||
617 | |||||
618 | # Get the list of files in the current directory. | ||||
619 | unless (opendir DIR, ($no_chdir ? $dir_loc : $File::Find::current_dir)) { | ||||
620 | warnings::warnif "Can't opendir($dir_loc): $!\n"; | ||||
621 | next; | ||||
622 | } | ||||
623 | @filenames = readdir DIR; | ||||
624 | closedir(DIR); | ||||
625 | |||||
626 | for my $FN (@filenames) { | ||||
627 | if ($Is_VMS) { | ||||
628 | # Big hammer here - Compensate for VMS trailing . and .dir | ||||
629 | # No win situation until this is changed, but this | ||||
630 | # will handle the majority of the cases with breaking the fewest. | ||||
631 | |||||
632 | $FN =~ s/\.dir\z//i; | ||||
633 | $FN =~ s#\.$## if ($FN ne '.'); | ||||
634 | } | ||||
635 | next if $FN =~ $File::Find::skip_pattern; | ||||
636 | |||||
637 | # follow symbolic links / do an lstat | ||||
638 | $new_loc = Follow_SymLink($loc_pref.$FN); | ||||
639 | |||||
640 | # ignore if invalid symlink | ||||
641 | unless (defined $new_loc) { | ||||
642 | if (!defined -l _ && $dangling_symlinks) { | ||||
643 | $fullname = undef; | ||||
644 | if (ref $dangling_symlinks eq 'CODE') { | ||||
645 | $dangling_symlinks->($FN, $dir_pref); | ||||
646 | } else { | ||||
647 | warnings::warnif "$dir_pref$FN is a dangling symbolic link\n"; | ||||
648 | } | ||||
649 | } | ||||
650 | else { | ||||
651 | $fullname = $loc_pref . $FN; | ||||
652 | } | ||||
653 | $name = $dir_pref . $FN; | ||||
654 | $_ = ($no_chdir ? $name : $FN); | ||||
655 | { $wanted_callback->() }; | ||||
656 | next; | ||||
657 | } | ||||
658 | |||||
659 | if (-d _) { | ||||
660 | if ($Is_VMS) { | ||||
661 | $FN =~ s/\.dir\z//i; | ||||
662 | $FN =~ s#\.$## if ($FN ne '.'); | ||||
663 | $new_loc =~ s/\.dir\z//i; | ||||
664 | $new_loc =~ s#\.$## if ($new_loc ne '.'); | ||||
665 | } | ||||
666 | push @Stack,[$new_loc,$updir_loc,$dir_name,$FN,1]; | ||||
667 | } | ||||
668 | else { | ||||
669 | $fullname = $new_loc; # $File::Find::fullname | ||||
670 | $name = $dir_pref . $FN; # $File::Find::name | ||||
671 | $_ = ($no_chdir ? $name : $FN); # $_ | ||||
672 | { $wanted_callback->() }; # protect against wild "next" | ||||
673 | } | ||||
674 | } | ||||
675 | |||||
676 | } | ||||
677 | continue { | ||||
678 | while (defined($SE = pop @Stack)) { | ||||
679 | ($dir_loc, $updir_loc, $p_dir, $dir_rel, $byd_flag) = @$SE; | ||||
680 | $dir_name = ($p_dir eq '/' ? "/$dir_rel" : "$p_dir/$dir_rel"); | ||||
681 | $dir_pref = "$dir_name/"; | ||||
682 | $loc_pref = "$dir_loc/"; | ||||
683 | if ( $byd_flag < 0 ) { # must be finddepth, report dirname now | ||||
684 | unless ($no_chdir || ($dir_rel eq $File::Find::current_dir)) { | ||||
685 | unless (chdir $updir_loc) { # $updir_loc (parent dir) is always untainted | ||||
686 | warnings::warnif "Can't cd to $updir_loc: $!\n"; | ||||
687 | next; | ||||
688 | } | ||||
689 | } | ||||
690 | $fullname = $dir_loc; # $File::Find::fullname | ||||
691 | $name = $dir_name; # $File::Find::name | ||||
692 | if ( substr($name,-2) eq '/.' ) { | ||||
693 | substr($name, length($name) == 2 ? -1 : -2) = ''; # $File::Find::name | ||||
694 | } | ||||
695 | $dir = $p_dir; # $File::Find::dir | ||||
696 | $_ = ($no_chdir ? $dir_name : $dir_rel); # $_ | ||||
697 | if ( substr($_,-2) eq '/.' ) { | ||||
698 | substr($_, length($_) == 2 ? -1 : -2) = ''; | ||||
699 | } | ||||
700 | |||||
701 | lstat($_); # make sure file tests with '_' work | ||||
702 | { $wanted_callback->() }; # protect against wild "next" | ||||
703 | } | ||||
704 | else { | ||||
705 | push @Stack,[$dir_loc, $updir_loc, $p_dir, $dir_rel,-1] if $bydepth; | ||||
706 | last; | ||||
707 | } | ||||
708 | } | ||||
709 | } | ||||
710 | } | ||||
711 | |||||
712 | |||||
713 | # spent 664µs within File::Find::wrap_wanted which was called 107 times, avg 6µs/call:
# 107 times (664µs+0s) by File::Find::find at line 760, avg 6µs/call | ||||
714 | 107 | 36µs | my $wanted = shift; | ||
715 | 107 | 793µs | if ( ref($wanted) eq 'HASH' ) { | ||
716 | # RT #122547 | ||||
717 | my %valid_options = map {$_ => 1} qw( | ||||
718 | wanted | ||||
719 | bydepth | ||||
720 | preprocess | ||||
721 | postprocess | ||||
722 | follow | ||||
723 | follow_fast | ||||
724 | follow_skip | ||||
725 | dangling_symlinks | ||||
726 | no_chdir | ||||
727 | untaint | ||||
728 | untaint_pattern | ||||
729 | untaint_skip | ||||
730 | ); | ||||
731 | my @invalid_options = (); | ||||
732 | for my $v (keys %{$wanted}) { | ||||
733 | push @invalid_options, $v unless exists $valid_options{$v}; | ||||
734 | } | ||||
735 | warn "Invalid option(s): @invalid_options" if @invalid_options; | ||||
736 | |||||
737 | unless( exists $wanted->{wanted} and ref( $wanted->{wanted} ) eq 'CODE' ) { | ||||
738 | die 'no &wanted subroutine given'; | ||||
739 | } | ||||
740 | if ( $wanted->{follow} || $wanted->{follow_fast}) { | ||||
741 | $wanted->{follow_skip} = 1 unless defined $wanted->{follow_skip}; | ||||
742 | } | ||||
743 | if ( $wanted->{untaint} ) { | ||||
744 | $wanted->{untaint_pattern} = $File::Find::untaint_pattern | ||||
745 | unless defined $wanted->{untaint_pattern}; | ||||
746 | $wanted->{untaint_skip} = 0 unless defined $wanted->{untaint_skip}; | ||||
747 | } | ||||
748 | return $wanted; | ||||
749 | } | ||||
750 | elsif( ref( $wanted ) eq 'CODE' ) { | ||||
751 | return { wanted => $wanted }; | ||||
752 | } | ||||
753 | else { | ||||
754 | die 'no &wanted subroutine given'; | ||||
755 | } | ||||
756 | } | ||||
757 | |||||
758 | # spent 1.55s (1.03ms+1.55) within File::Find::find which was called 107 times, avg 14.5ms/call:
# 107 times (1.03ms+1.55s) by CPAN::CacheMgr::disk_usage at line 137 of CPAN/CacheMgr.pm, avg 14.5ms/call | ||||
759 | 107 | 79µs | my $wanted = shift; | ||
760 | 107 | 767µs | 214 | 1.55s | _find_opt(wrap_wanted($wanted), @_); # spent 1.55s making 107 calls to File::Find::_find_opt, avg 14.5ms/call
# spent 664µs making 107 calls to File::Find::wrap_wanted, avg 6µs/call |
761 | } | ||||
762 | |||||
763 | sub finddepth { | ||||
764 | my $wanted = wrap_wanted(shift); | ||||
765 | $wanted->{bydepth} = 1; | ||||
766 | _find_opt($wanted, @_); | ||||
767 | } | ||||
768 | |||||
769 | # default | ||||
770 | $File::Find::skip_pattern = qr/^\.{1,2}\z/; | ||||
771 | $File::Find::untaint_pattern = qr|^([-+@\w./]+)$|; | ||||
772 | |||||
773 | # These are hard-coded for now, but may move to hint files. | ||||
774 | if ($^O eq 'VMS') { | ||||
775 | $Is_VMS = 1; | ||||
776 | $File::Find::dont_use_nlink = 1; | ||||
777 | } | ||||
778 | elsif ($^O eq 'MSWin32') { | ||||
779 | $Is_Win32 = 1; | ||||
780 | } | ||||
781 | |||||
782 | # this _should_ work properly on all platforms | ||||
783 | # where File::Find can be expected to work | ||||
784 | $File::Find::current_dir = File::Spec->curdir || '.'; | ||||
785 | |||||
786 | $File::Find::dont_use_nlink = 1 | ||||
787 | if $^O eq 'os2' || $^O eq 'dos' || $^O eq 'amigaos' || $Is_Win32 || | ||||
788 | $^O eq 'interix' || $^O eq 'cygwin' || $^O eq 'qnx' || $^O eq 'nto'; | ||||
789 | |||||
790 | # Set dont_use_nlink in your hint file if your system's stat doesn't | ||||
791 | # report the number of links in a directory as an indication | ||||
792 | # of the number of files. | ||||
793 | # See e.g. hints/haiku.sh for Haiku. | ||||
794 | unless ($File::Find::dont_use_nlink) { | ||||
795 | require Config; | ||||
796 | $File::Find::dont_use_nlink = 1 if ($Config::Config{'dont_use_nlink'}); | ||||
797 | } | ||||
798 | |||||
799 | # We need a function that checks if a scalar is tainted. Either use the | ||||
800 | # Scalar::Util module's tainted() function or our (slower) pure Perl | ||||
801 | # fallback is_tainted_pp() | ||||
802 | { | ||||
803 | local $@; | ||||
804 | eval { require Scalar::Util }; | ||||
805 | *is_tainted = $@ ? \&is_tainted_pp : \&Scalar::Util::tainted; | ||||
806 | } | ||||
807 | |||||
808 | 1; | ||||
809 | |||||
810 | __END__ | ||||
# spent 10.9ms within File::Find::CORE:chdir which was called 3583 times, avg 3µs/call:
# 2259 times (6.84ms+0s) by File::Find::_find_dir at line 375, avg 3µs/call
# 1110 times (3.29ms+0s) by File::Find::_find_dir at line 470, avg 3µs/call
# 107 times (376µs+0s) by File::Find::_find_opt at line 282, avg 4µs/call
# 98 times (406µs+0s) by File::Find::_find_dir at line 342, avg 4µs/call
# 9 times (34µs+0s) by File::Find::_find_opt at line 262, avg 4µs/call | |||||
# spent 7.63ms within File::Find::CORE:closedir which was called 2357 times, avg 3µs/call:
# 2357 times (7.63ms+0s) by File::Find::_find_dir at line 391, avg 3µs/call | |||||
sub File::Find::CORE:ftdir; # opcode | |||||
sub File::Find::CORE:lstat; # opcode | |||||
sub File::Find::CORE:match; # opcode | |||||
# spent 22.0ms within File::Find::CORE:open_dir which was called 2357 times, avg 9µs/call:
# 2357 times (22.0ms+0s) by File::Find::_find_dir at line 386, avg 9µs/call | |||||
# spent 131ms within File::Find::CORE:readdir which was called 2357 times, avg 56µs/call:
# 2357 times (131ms+0s) by File::Find::_find_dir at line 390, avg 56µs/call | |||||
sub File::Find::CORE:regcomp; # opcode | |||||
# spent 200µs within File::Find::CORE:subst which was called 107 times, avg 2µs/call:
# 107 times (200µs+0s) by File::Find::_find_opt at line 193, avg 2µs/call |