| Filename | /usr/share/perl/5.20/FileHandle.pm | 
| Statements | Executed 74 statements in 498µs | 
| Calls | P | F | Exclusive Time | Inclusive Time | Subroutine | 
|---|---|---|---|---|---|
| 1 | 1 | 1 | 16µs | 16µs | FileHandle::BEGIN@3 | 
| 1 | 1 | 1 | 15µs | 306µs | FileHandle::import | 
| 1 | 1 | 1 | 7µs | 17µs | FileHandle::BEGIN@4 | 
| 1 | 1 | 1 | 6µs | 14µs | FileHandle::BEGIN@46 | 
| 0 | 0 | 0 | 0s | 0s | FileHandle::pipe | 
| Line | State ments | Time on line | Calls | Time in subs | Code | 
|---|---|---|---|---|---|
| 1 | package FileHandle; | ||||
| 2 | |||||
| 3 | 2 | 40µs | 1 | 16µs | # spent 16µs within FileHandle::BEGIN@3 which was called:
#    once (16µs+0s) by Module::Load::Conditional::BEGIN@11 at line 3 # spent    16µs making 1 call to FileHandle::BEGIN@3 | 
| 4 | 2 | 114µs | 2 | 28µs | # spent 17µs (7+10) within FileHandle::BEGIN@4 which was called:
#    once (7µs+10µs) by Module::Load::Conditional::BEGIN@11 at line 4 # spent    17µs making 1 call to FileHandle::BEGIN@4
# spent    10µs making 1 call to strict::import | 
| 5 | 1 | 300ns | our($VERSION, @ISA, @EXPORT, @EXPORT_OK); | ||
| 6 | |||||
| 7 | 1 | 500ns | $VERSION = "2.02"; | ||
| 8 | |||||
| 9 | 1 | 600ns | require IO::File; | ||
| 10 | 1 | 8µs | @ISA = qw(IO::File); | ||
| 11 | |||||
| 12 | 1 | 600ns | @EXPORT = qw(_IOFBF _IOLBF _IONBF); | ||
| 13 | |||||
| 14 | 1 | 1µs | @EXPORT_OK = qw( | ||
| 15 | pipe | ||||
| 16 | |||||
| 17 | autoflush | ||||
| 18 | output_field_separator | ||||
| 19 | output_record_separator | ||||
| 20 | input_record_separator | ||||
| 21 | input_line_number | ||||
| 22 | format_page_number | ||||
| 23 | format_lines_per_page | ||||
| 24 | format_lines_left | ||||
| 25 | format_name | ||||
| 26 | format_top_name | ||||
| 27 | format_line_break_characters | ||||
| 28 | format_formfeed | ||||
| 29 | |||||
| 30 | |||||
| 31 | printf | ||||
| 32 | getline | ||||
| 33 | getlines | ||||
| 34 | ); | ||||
| 35 | |||||
| 36 | # | ||||
| 37 | # Everything we're willing to export, we must first import. | ||||
| 38 | # | ||||
| 39 | 1 | 21µs | 1 | 107µs | import IO::Handle grep { !defined(&$_) } @EXPORT, @EXPORT_OK; # spent   107µs making 1 call to Exporter::import | 
| 40 | |||||
| 41 | # | ||||
| 42 | # Some people call "FileHandle::function", so all the functions | ||||
| 43 | # that were in the old FileHandle class must be imported, too. | ||||
| 44 | # | ||||
| 45 | { | ||||
| 46 | 3 | 235µs | 2 | 22µs | # spent 14µs (6+8) within FileHandle::BEGIN@46 which was called:
#    once (6µs+8µs) by Module::Load::Conditional::BEGIN@11 at line 46     # spent    14µs making 1 call to FileHandle::BEGIN@46
    # spent     8µs making 1 call to strict::unimport | 
| 47 | |||||
| 48 | 1 | 4µs | my %import = ( | ||
| 49 | 'IO::Handle' => | ||||
| 50 | [qw(DESTROY new_from_fd fdopen close fileno getc ungetc gets | ||||
| 51 | eof flush error clearerr setbuf setvbuf _open_mode_string)], | ||||
| 52 | 'IO::Seekable' => | ||||
| 53 | [qw(seek tell getpos setpos)], | ||||
| 54 | 'IO::File' => | ||||
| 55 | [qw(new new_tmpfile open)] | ||||
| 56 | ); | ||||
| 57 | 1 | 2µs | for my $pkg (keys %import) { | ||
| 58 | 3 | 2µs | for my $func (@{$import{$pkg}}) { | ||
| 59 | 22 | 20µs | my $c = *{"${pkg}::$func"}{CODE} | ||
| 60 | or die "${pkg}::$func missing"; | ||||
| 61 | 22 | 28µs | *$func = $c; | ||
| 62 | } | ||||
| 63 | } | ||||
| 64 | } | ||||
| 65 | |||||
| 66 | # | ||||
| 67 | # Specialized importer for Fcntl magic. | ||||
| 68 | # | ||||
| 69 | # spent 306µs (15+292) within FileHandle::import which was called:
#    once (15µs+292µs) by MIME::Lite::BEGIN@339 at line 339 of MIME/Lite.pm | ||||
| 70 | 1 | 500ns | my $pkg = shift; | ||
| 71 | 1 | 700ns | my $callpkg = caller; | ||
| 72 | 1 | 600ns | require Exporter; | ||
| 73 | 1 | 2µs | 1 | 15µs | Exporter::export($pkg, $callpkg, @_);     # spent    15µs making 1 call to Exporter::export | 
| 74 | |||||
| 75 | # | ||||
| 76 | # If the Fcntl extension is available, | ||||
| 77 | # export its constants. | ||||
| 78 | # | ||||
| 79 | 1 | 4µs | eval { | ||
| 80 | 1 | 500ns | require Fcntl; | ||
| 81 | 1 | 1µs | 1 | 9µs | Exporter::export('Fcntl', $callpkg);         # spent     9µs making 1 call to Exporter::export | 
| 82 | }; | ||||
| 83 | } | ||||
| 84 | |||||
| 85 | ################################################ | ||||
| 86 | # This is the only exported function we define; | ||||
| 87 | # the rest come from other classes. | ||||
| 88 | # | ||||
| 89 | |||||
| 90 | sub pipe { | ||||
| 91 | my $r = new IO::Handle; | ||||
| 92 | my $w = new IO::Handle; | ||||
| 93 | CORE::pipe($r, $w) or return undef; | ||||
| 94 | ($r, $w); | ||||
| 95 | } | ||||
| 96 | |||||
| 97 | # Rebless standard file handles | ||||
| 98 | 1 | 700ns | bless *STDIN{IO}, "FileHandle" if ref *STDIN{IO} eq "IO::Handle"; | ||
| 99 | 1 | 400ns | bless *STDOUT{IO}, "FileHandle" if ref *STDOUT{IO} eq "IO::Handle"; | ||
| 100 | 1 | 400ns | bless *STDERR{IO}, "FileHandle" if ref *STDERR{IO} eq "IO::Handle"; | ||
| 101 | |||||
| 102 | 1 | 11µs | 1; | ||
| 103 | |||||
| 104 | __END__ |