| Filename | C:/tmp64ng/perl/lib/Encode/Encoding.pm | 
| Statements | Executed 11 statements in 0s | 
| Calls | P | F | Exclusive Time  | 
        Inclusive Time  | 
        Subroutine | 
|---|---|---|---|---|---|
| 1 | 1 | 1 | 0s | 0s | Encode::Encoding::BEGIN@4 | 
| 1 | 1 | 1 | 0s | 0s | Encode::Encoding::BEGIN@5 | 
| 1 | 1 | 1 | 0s | 0s | Encode::Encoding::CORE:match (opcode) | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::DEBUG | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::DESTROY | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::Define | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::decode | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::encode | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::fromUnicode | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::mime_name | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::name | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::needs_lines | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::perlio_ok | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::renew | 
| 1 | 1 | 1 | 0s | 0s | Encode::Encoding::renewed | 
| 0 | 0 | 0 | 0s | 0s | Encode::Encoding::toUnicode | 
| 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 | 2 | 0s | 2 | 0s | # spent 0s within Encode::Encoding::BEGIN@4 which was called:
#    once (0s+0s) by Encode::predefine_encodings at line 4 # spent     0s making 1 call to Encode::Encoding::BEGIN@4
# spent     0s making 1 call to strict::import  | 
| 5 | 2 | 0s | 2 | 0s | # spent 0s within Encode::Encoding::BEGIN@5 which was called:
#    once (0s+0s) by Encode::predefine_encodings at line 5 # spent     0s making 1 call to Encode::Encoding::BEGIN@5
# spent     0s making 1 call to warnings::import  | 
| 6 | 3 | 0s | 1 | 0s | our $VERSION = do { my @r = ( q$Revision: 2.7 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; # spent     0s making 1 call to Encode::Encoding::CORE:match  | 
| 7 | |||||
| 8 | 1 | 0s | 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 | 1 | 0s | # spent 0s within Encode::Encoding::renewed which was called:
#    once (0s+0s) by Encode::utf8::decode_xs at line 200 of Encode.pm  | ||
| 39 | |||||
| 40 | 1 | 0s | *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 | 0s | 1; | ||
| 75 | __END__ | ||||
# spent 0s within Encode::Encoding::CORE:match which was called:
#    once (0s+0s) by Encode::predefine_encodings at line 6  |