← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/bin/epoll_server.pl
  Run on Wed Jan 5 05:34:33 2011
Reported on Wed Jan 5 05:43:09 2011

File /usr/lib/perl5/5.10.1/File/stat.pm
Statements Executed 32
Statement Execution Time 2.59ms
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1116.54ms8.54msFile::stat::::BEGIN@27File::stat::BEGIN@27
11184µs84µsFile::stat::::BEGIN@2File::stat::BEGIN@2
11168µs133µsFile::stat::::BEGIN@5File::stat::BEGIN@5
11141µs41µsFile::stat::::BEGIN@11File::stat::BEGIN@11
11131µs737µsFile::stat::::BEGIN@22File::stat::BEGIN@22
11130µs77µsFile::stat::::BEGIN@54File::stat::BEGIN@54
33329µs29µsFile::stat::::importFile::stat::import
11128µs40µsFile::stat::::BEGIN@4File::stat::BEGIN@4
11118µs18µsFile::stat::::BEGIN@12File::stat::BEGIN@12
0000s0sFile::stat::::lstatFile::stat::lstat
0000s0sFile::stat::::populateFile::stat::populate
0000s0sFile::stat::::statFile::stat::stat
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package File::stat;
23127µs184µs
# spent 84µs within File::stat::BEGIN@2 which was called # once (84µs+0s) by Path::Class::Entity::BEGIN@7 at line 2
use 5.006;
# spent 84µs making 1 call to File::stat::BEGIN@2
3
4374µs251µs
# spent 40µs (28+11) within File::stat::BEGIN@4 which was called # once (28µs+11µs) by Path::Class::Entity::BEGIN@7 at line 4
use strict;
# spent 40µs making 1 call to File::stat::BEGIN@4 # spent 11µs making 1 call to strict::import
53234µs2198µs
# spent 133µs (68+65) within File::stat::BEGIN@5 which was called # once (68µs+65µs) by Path::Class::Entity::BEGIN@7 at line 5
use warnings;
# spent 133µs making 1 call to File::stat::BEGIN@5 # spent 65µs making 1 call to warnings::import
6
712µsour(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
8
913µsour $VERSION = '1.01';
10
11
# spent 41µs within File::stat::BEGIN@11 which was called # once (41µs+0s) by Path::Class::Entity::BEGIN@7 at line 21
BEGIN {
123219µs118µs
# spent 18µs within File::stat::BEGIN@12 which was called # once (18µs+0s) by Path::Class::Entity::BEGIN@7 at line 12
use Exporter ();
# spent 18µs making 1 call to File::stat::BEGIN@12
1315µs @EXPORT = qw(stat lstat);
14110µs @EXPORT_OK = qw( $st_dev $st_ino $st_mode
15 $st_nlink $st_uid $st_gid
16 $st_rdev $st_size
17 $st_atime $st_mtime $st_ctime
18 $st_blksize $st_blocks
19 );
20127µs %EXPORT_TAGS = ( FIELDS => [ @EXPORT_OK, @EXPORT ] );
21183µs141µs}
# spent 41µs making 1 call to File::stat::BEGIN@11
223145µs21.44ms
# spent 737µs (31+706) within File::stat::BEGIN@22 which was called # once (31µs+706µs) by Path::Class::Entity::BEGIN@7 at line 22
use vars @EXPORT_OK;
# spent 737µs making 1 call to File::stat::BEGIN@22 # spent 706µs making 1 call to vars::import
23
24# Class::Struct forbids use of @ISA
253292µs3493µs
# spent 29µs within File::stat::import which was called 3 times, avg 10µs/call: # once (11µs+0s) by Catalyst::Plugin::Static::Simple::BEGIN@4 at line 4 of Catalyst/Plugin/Static/Simple.pm # once (10µs+0s) by IO::Dir::BEGIN@18 at line 18 of IO/Dir.pm # once (8µs+0s) by Catalyst::BEGIN@18 at line 18 of Catalyst.pm
sub import { goto &Exporter::import }
# spent 493µs making 3 calls to Exporter::import, avg 164µs/call
26
2731.11ms29.27ms
# spent 8.54ms (6.54+2.00) within File::stat::BEGIN@27 which was called # once (6.54ms+2.00ms) by Path::Class::Entity::BEGIN@7 at line 27
use Class::Struct qw(struct);
# spent 8.54ms making 1 call to File::stat::BEGIN@27 # spent 728µs making 1 call to Class::Struct::import
28struct 'File::stat' => [
29148µs14.87ms map { $_ => '$' } qw{
# spent 4.87ms making 1 call to Class::Struct::struct
30 dev ino mode nlink uid gid rdev size
31 atime mtime ctime blksize blocks
32 }
33];
34
35sub populate (@) {
36 return unless @_;
37 my $stob = new();
38 @$stob = (
39 $st_dev, $st_ino, $st_mode, $st_nlink, $st_uid, $st_gid, $st_rdev,
40 $st_size, $st_atime, $st_mtime, $st_ctime, $st_blksize, $st_blocks )
41 = @_;
42 return $stob;
43}
44
45sub lstat ($) { populate(CORE::lstat(shift)) }
46
47sub stat ($) {
48 my $arg = shift;
49 my $st = populate(CORE::stat $arg);
50 return $st if $st;
51 my $fh;
52 {
53 local $!;
543186µs2124µs
# spent 77µs (30+47) within File::stat::BEGIN@54 which was called # once (30µs+47µs) by Path::Class::Entity::BEGIN@7 at line 54
no strict 'refs';
# spent 77µs making 1 call to File::stat::BEGIN@54 # spent 47µs making 1 call to strict::unimport
55 require Symbol;
56 $fh = \*{ Symbol::qualify( $arg, caller() )};
57 return unless defined fileno $fh;
58 }
59 return populate(CORE::stat $fh);
60}
61
62124µs1;
63__END__
64
65=head1 NAME
66
67File::stat - by-name interface to Perl's built-in stat() functions
68
69=head1 SYNOPSIS
70
71 use File::stat;
72 $st = stat($file) or die "No $file: $!";
73 if ( ($st->mode & 0111) && $st->nlink > 1) ) {
74 print "$file is executable with lotsa links\n";
75 }
76
77 use File::stat qw(:FIELDS);
78 stat($file) or die "No $file: $!";
79 if ( ($st_mode & 0111) && ($st_nlink > 1) ) {
80 print "$file is executable with lotsa links\n";
81 }
82
83=head1 DESCRIPTION
84
85This module's default exports override the core stat()
86and lstat() functions, replacing them with versions that return
87"File::stat" objects. This object has methods that
88return the similarly named structure field name from the
89stat(2) function; namely,
90dev,
91ino,
92mode,
93nlink,
94uid,
95gid,
96rdev,
97size,
98atime,
99mtime,
100ctime,
101blksize,
102and
103blocks.
104
105You may also import all the structure fields directly into your namespace
106as regular variables using the :FIELDS import tag. (Note that this still
107overrides your stat() and lstat() functions.) Access these fields as
108variables named with a preceding C<st_> in front their method names.
109Thus, C<$stat_obj-E<gt>dev()> corresponds to $st_dev if you import
110the fields.
111
112To access this functionality without the core overrides,
113pass the C<use> an empty import list, and then access
114function functions with their full qualified names.
115On the other hand, the built-ins are still available
116via the C<CORE::> pseudo-package.
117
118=head1 BUGS
119
120As of Perl 5.8.0 after using this module you cannot use the implicit
121C<$_> or the special filehandle C<_> with stat() or lstat(), trying
122to do so leads into strange errors. The workaround is for C<$_> to
123be explicit
124
125 my $stat_obj = stat $_;
126
127and for C<_> to explicitly populate the object using the unexported
128and undocumented populate() function with CORE::stat():
129
130 my $stat_obj = File::stat::populate(CORE::stat(_));
131
132=head1 NOTE
133
134While this class is currently implemented using the Class::Struct
135module to build a struct-like class, you shouldn't rely upon this.
136
137=head1 AUTHOR
138
139Tom Christiansen