Filename | /usr/lib/perl/5.10/Encode/Encoding.pm |
Statements | Executed 558 statements in 3.04ms |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
546 | 1 | 1 | 1.64ms | 1.64ms | renewed | Encode::Encoding::
1 | 1 | 1 | 28µs | 35µs | BEGIN@4 | Encode::Encoding::
1 | 1 | 1 | 16µs | 39µs | BEGIN@5 | Encode::Encoding::
1 | 1 | 1 | 7µs | 7µs | CORE:match (opcode) | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | DEBUG | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | DESTROY | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | Define | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | decode | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | encode | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | fromUnicode | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | mime_name | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | name | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | needs_lines | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | perlio_ok | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | renew | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | toUnicode | Encode::Encoding::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package Encode::Encoding; | ||||
2 | |||||
3 | # Base class for classes which implement encodings | ||||
4 | 3 | 48µs | 2 | 42µs | # spent 35µs (28+7) within Encode::Encoding::BEGIN@4 which was called:
# once (28µs+7µs) by Encode::predefine_encodings at line 4 # spent 35µs making 1 call to Encode::Encoding::BEGIN@4
# spent 7µs making 1 call to strict::import |
5 | 3 | 684µs | 2 | 61µs | # spent 39µs (16+23) within Encode::Encoding::BEGIN@5 which was called:
# once (16µs+23µs) by Encode::predefine_encodings at line 5 # spent 39µs making 1 call to Encode::Encoding::BEGIN@5
# spent 23µs making 1 call to warnings::import |
6 | 3 | 32µs | 1 | 7µs | our $VERSION = do { my @r = ( q$Revision: 2.5 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; # spent 7µs making 1 call to Encode::Encoding::CORE:match |
7 | |||||
8 | 1 | 1µs | require Encode; | ||
9 | |||||
10 | sub DEBUG { 0 } | ||||
11 | |||||
12 | sub Define { | ||||
13 | my $obj = shift; | ||||
14 | my $canonical = shift; | ||||
15 | $obj = bless { Name => $canonical }, $obj unless ref $obj; | ||||
16 | |||||
17 | # warn "$canonical => $obj\n"; | ||||
18 | Encode::define_encoding( $obj, $canonical, @_ ); | ||||
19 | } | ||||
20 | |||||
21 | sub name { return shift->{'Name'} } | ||||
22 | |||||
23 | sub mime_name{ | ||||
24 | require Encode::MIME::Name; | ||||
25 | return Encode::MIME::Name::get_mime_name(shift->name); | ||||
26 | } | ||||
27 | |||||
28 | # sub renew { return $_[0] } | ||||
29 | |||||
30 | sub renew { | ||||
31 | my $self = shift; | ||||
32 | my $clone = bless {%$self} => ref($self); | ||||
33 | $clone->{renewed}++; # so the caller can see it | ||||
34 | DEBUG and warn $clone->{renewed}; | ||||
35 | return $clone; | ||||
36 | } | ||||
37 | |||||
38 | 546 | 2.26ms | # spent 1.64ms within Encode::Encoding::renewed which was called 546 times, avg 3µs/call:
# 546 times (1.64ms+0s) by Encode::utf8::decode_xs at line 174 of Encode.pm, avg 3µs/call | ||
39 | |||||
40 | 1 | 2µs | *new_sequence = \&renew; | ||
41 | |||||
42 | sub needs_lines { 0 } | ||||
43 | |||||
44 | sub perlio_ok { | ||||
45 | eval { require PerlIO::encoding }; | ||||
46 | return $@ ? 0 : 1; | ||||
47 | } | ||||
48 | |||||
49 | # (Temporary|legacy) methods | ||||
50 | |||||
51 | sub toUnicode { shift->decode(@_) } | ||||
52 | sub fromUnicode { shift->encode(@_) } | ||||
53 | |||||
54 | # | ||||
55 | # Needs to be overloaded or just croak | ||||
56 | # | ||||
57 | |||||
58 | sub encode { | ||||
59 | require Carp; | ||||
60 | my $obj = shift; | ||||
61 | my $class = ref($obj) ? ref($obj) : $obj; | ||||
62 | Carp::croak( $class . "->encode() not defined!" ); | ||||
63 | } | ||||
64 | |||||
65 | sub decode { | ||||
66 | require Carp; | ||||
67 | my $obj = shift; | ||||
68 | my $class = ref($obj) ? ref($obj) : $obj; | ||||
69 | Carp::croak( $class . "->encode() not defined!" ); | ||||
70 | } | ||||
71 | |||||
72 | sub DESTROY { } | ||||
73 | |||||
74 | 1 | 10µs | 1; | ||
75 | __END__ | ||||
# spent 7µs within Encode::Encoding::CORE:match which was called:
# once (7µs+0s) by Encode::predefine_encodings at line 6 |