← Index
NYTProf Performance Profile   « block view • line view • sub view »
For conv.pl
  Run on Sun Nov 14 22:50:31 2010
Reported on Sun Nov 14 22:51:24 2010

Filename/usr/lib/perl/5.10/Encode.pm
StatementsExecuted 85 statements in 3.81ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1112.29ms4.00msEncode::::BEGIN@48 Encode::BEGIN@48
111773µs855µsEncode::::predefine_encodings Encode::predefine_encodings
41170µs70µsEncode::::define_encoding Encode::define_encoding
11123µs30µsEncode::::BEGIN@5 Encode::BEGIN@5
11118µs50µsEncode::::BEGIN@226 Encode::BEGIN@226
11117µs24µsEncode::utf8::::BEGIN@309 Encode::utf8::BEGIN@309
11117µs111µsEncode::::BEGIN@6 Encode::BEGIN@6
11114µs107µsEncode::::BEGIN@13 Encode::BEGIN@13
1119µs9µsEncode::::BEGIN@9 Encode::BEGIN@9
1116µs6µsEncode::::CORE:match Encode::CORE:match (opcode)
0000s0sEncode::Internal::::__ANON__[:269] Encode::Internal::__ANON__[:269]
0000s0sEncode::UTF_EBCDIC::::__ANON__[:244]Encode::UTF_EBCDIC::__ANON__[:244]
0000s0sEncode::UTF_EBCDIC::::__ANON__[:256]Encode::UTF_EBCDIC::__ANON__[:256]
0000s0sEncode::::clone_encoding Encode::clone_encoding
0000s0sEncode::::decode Encode::decode
0000s0sEncode::::decode_utf8 Encode::decode_utf8
0000s0sEncode::::encode Encode::encode
0000s0sEncode::::encode_utf8 Encode::encode_utf8
0000s0sEncode::::encodings Encode::encodings
0000s0sEncode::::find_encoding Encode::find_encoding
0000s0sEncode::::from_to Encode::from_to
0000s0sEncode::::getEncoding Encode::getEncoding
0000s0sEncode::::perlio_ok Encode::perlio_ok
0000s0sEncode::::resolve_alias Encode::resolve_alias
0000s0sEncode::utf8::::__ANON__[:297] Encode::utf8::__ANON__[:297]
0000s0sEncode::utf8::::__ANON__[:303] Encode::utf8::__ANON__[:303]
0000s0sEncode::utf8::::__ANON__[:319] Encode::utf8::__ANON__[:319]
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1#
2# $Id: Encode.pm,v 2.35 2009/07/13 00:49:38 dankogai Exp $
3#
4package Encode;
5341µs237µs
# spent 30µs (23+7) within Encode::BEGIN@5 which was called: # once (23µs+7µs) by MARC::Charset::BEGIN@11 at line 5
use strict;
# spent 30µs making 1 call to Encode::BEGIN@5 # spent 7µs making 1 call to strict::import
6389µs2205µs
# spent 111µs (17+94) within Encode::BEGIN@6 which was called: # once (17µs+94µs) by MARC::Charset::BEGIN@11 at line 6
use warnings;
# spent 111µs making 1 call to Encode::BEGIN@6 # spent 94µs making 1 call to warnings::import
7117µs16µsour $VERSION = sprintf "%d.%02d", q$Revision: 2.35 $ =~ /(\d+)/g;
# spent 6µs making 1 call to Encode::CORE:match
8sub DEBUG () { 0 }
9356µs19µs
# spent 9µs within Encode::BEGIN@9 which was called: # once (9µs+0s) by MARC::Charset::BEGIN@11 at line 9
use XSLoader ();
# spent 9µs making 1 call to Encode::BEGIN@9
101289µs1377µsXSLoader::load( __PACKAGE__, $VERSION );
# spent 377µs making 1 call to XSLoader::load
11
1211µsrequire Exporter;
133211µs2200µs
# spent 107µs (14+93) within Encode::BEGIN@13 which was called: # once (14µs+93µs) by MARC::Charset::BEGIN@11 at line 13
use base qw/Exporter/;
# spent 107µs making 1 call to Encode::BEGIN@13 # spent 93µs making 1 call to base::import
14
15# Public, encouraged API is exported by default
16
1715µsour @EXPORT = qw(
18 decode decode_utf8 encode encode_utf8 str2bytes bytes2str
19 encodings find_encoding clone_encoding
20);
2114µsour @FB_FLAGS = qw(
22 DIE_ON_ERR WARN_ON_ERR RETURN_ON_ERR LEAVE_SRC
23 PERLQQ HTMLCREF XMLCREF STOP_AT_PARTIAL
24);
2514µsour @FB_CONSTS = qw(
26 FB_DEFAULT FB_CROAK FB_QUIET FB_WARN
27 FB_PERLQQ FB_HTMLCREF FB_XMLCREF
28);
29114µsour @EXPORT_OK = (
30 qw(
31 _utf8_off _utf8_on define_encoding from_to is_16bit is_8bit
32 is_utf8 perlio_ok resolve_alias utf8_downgrade utf8_upgrade
33 ),
34 @FB_FLAGS, @FB_CONSTS,
35);
36
37123µsour %EXPORT_TAGS = (
38 all => [ @EXPORT, @EXPORT_OK ],
39 default => [ @EXPORT ],
40 fallbacks => [ @FB_CONSTS ],
41 fallback_all => [ @FB_CONSTS, @FB_FLAGS ],
42);
43
44# Documentation moved after __END__ for speed - NI-S
45
4611µsour $ON_EBCDIC = ( ord("A") == 193 );
47
4831.60ms24.08ms
# spent 4.00ms (2.29+1.71) within Encode::BEGIN@48 which was called: # once (2.29ms+1.71ms) by MARC::Charset::BEGIN@11 at line 48
use Encode::Alias;
# spent 4.00ms making 1 call to Encode::BEGIN@48 # spent 71µs making 1 call to Exporter::import
49
50# Make a %Encoding package variable to allow a certain amount of cheating
5111µsour %Encoding;
5210sour %ExtModule;
531185µsrequire Encode::Config;
54# See
55# https://bugzilla.redhat.com/show_bug.cgi?id=435505#c2
56# to find why sig handers inside eval{} are disabled.
5712µseval {
5814µs local $SIG{__DIE__};
5912µs local $SIG{__WARN__};
60191µs require Encode::ConfigLocal;
61};
62
63sub encodings {
64 my $class = shift;
65 my %enc;
66 if ( @_ and $_[0] eq ":all" ) {
67 %enc = ( %Encoding, %ExtModule );
68 }
69 else {
70 %enc = %Encoding;
71 for my $mod ( map { m/::/o ? $_ : "Encode::$_" } @_ ) {
72 DEBUG and warn $mod;
73 for my $enc ( keys %ExtModule ) {
74 $ExtModule{$enc} eq $mod and $enc{$enc} = $mod;
75 }
76 }
77 }
78 return sort { lc $a cmp lc $b }
79 grep { !/^(?:Internal|Unicode|Guess)$/o } keys %enc;
80}
81
82sub perlio_ok {
83 my $obj = ref( $_[0] ) ? $_[0] : find_encoding( $_[0] );
84 $obj->can("perlio_ok") and return $obj->perlio_ok();
85 return 0; # safety net
86}
87
88
# spent 70µs within Encode::define_encoding which was called 4 times, avg 18µs/call: # 4 times (70µs+0s) by XSLoader::load at line 94 of XSLoader.pm, avg 18µs/call
sub define_encoding {
8945µs my $obj = shift;
9045µs my $name = shift;
9147µs $Encoding{$name} = $obj;
9247µs my $lc = lc($name);
9345µs define_alias( $lc => $obj ) unless $lc eq $name;
9449µs while (@_) {
95 my $alias = shift;
96 define_alias( $alias, $obj );
97 }
98429µs return $obj;
99}
100
101sub getEncoding {
102 my ( $class, $name, $skip_external ) = @_;
103
104 ref($name) && $name->can('renew') and return $name;
105 exists $Encoding{$name} and return $Encoding{$name};
106 my $lc = lc $name;
107 exists $Encoding{$lc} and return $Encoding{$lc};
108
109 my $oc = $class->find_alias($name);
110 defined($oc) and return $oc;
111 $lc ne $name and $oc = $class->find_alias($lc);
112 defined($oc) and return $oc;
113
114 unless ($skip_external) {
115 if ( my $mod = $ExtModule{$name} || $ExtModule{$lc} ) {
116 $mod =~ s,::,/,g;
117 $mod .= '.pm';
118 eval { require $mod; };
119 exists $Encoding{$name} and return $Encoding{$name};
120 }
121 }
122 return;
123}
124
125sub find_encoding($;$) {
126 my ( $name, $skip_external ) = @_;
127 return __PACKAGE__->getEncoding( $name, $skip_external );
128}
129
130sub resolve_alias($) {
131 my $obj = find_encoding(shift);
132 defined $obj and return $obj->name;
133 return;
134}
135
136sub clone_encoding($) {
137 my $obj = find_encoding(shift);
138 ref $obj or return;
139 eval { require Storable };
140 $@ and return;
141 return Storable::dclone($obj);
142}
143
144sub encode($$;$) {
145 my ( $name, $string, $check ) = @_;
146 return undef unless defined $string;
147 $string .= '' if ref $string; # stringify;
148 $check ||= 0;
149 unless ( defined $name ) {
150 require Carp;
151 Carp::croak("Encoding name should not be undef");
152 }
153 my $enc = find_encoding($name);
154 unless ( defined $enc ) {
155 require Carp;
156 Carp::croak("Unknown encoding '$name'");
157 }
158 my $octets = $enc->encode( $string, $check );
159 $_[1] = $string if $check and !ref $check and !( $check & LEAVE_SRC() );
160 return $octets;
161}
16212µs*str2bytes = \&encode;
163
164sub decode($$;$) {
165 my ( $name, $octets, $check ) = @_;
166 return undef unless defined $octets;
167 $octets .= '' if ref $octets;
168 $check ||= 0;
169 my $enc = find_encoding($name);
170 unless ( defined $enc ) {
171 require Carp;
172 Carp::croak("Unknown encoding '$name'");
173 }
174 my $string = $enc->decode( $octets, $check );
175 $_[1] = $octets if $check and !ref $check and !( $check & LEAVE_SRC() );
176 return $string;
177}
17811µs*bytes2str = \&decode;
179
180sub from_to($$$;$) {
181 my ( $string, $from, $to, $check ) = @_;
182 return undef unless defined $string;
183 $check ||= 0;
184 my $f = find_encoding($from);
185 unless ( defined $f ) {
186 require Carp;
187 Carp::croak("Unknown encoding '$from'");
188 }
189 my $t = find_encoding($to);
190 unless ( defined $t ) {
191 require Carp;
192 Carp::croak("Unknown encoding '$to'");
193 }
194 my $uni = $f->decode($string);
195 $_[0] = $string = $t->encode( $uni, $check );
196 return undef if ( $check && length($uni) );
197 return defined( $_[0] ) ? length($string) : undef;
198}
199
200sub encode_utf8($) {
201 my ($str) = @_;
202 utf8::encode($str);
203 return $str;
204}
205
206sub decode_utf8($;$) {
207 my ( $str, $check ) = @_;
208 return $str if is_utf8($str);
209 if ($check) {
210 return decode( "utf8", $str, $check );
211 }
212 else {
213 return decode( "utf8", $str );
214 return $str;
215 }
216}
217
21815µs1855µspredefine_encodings(1);
# spent 855µs making 1 call to Encode::predefine_encodings
219
220#
221# This is to restore %Encoding if really needed;
222#
223
224
# spent 855µs (773+82) within Encode::predefine_encodings which was called: # once (773µs+82µs) by MARC::Charset::BEGIN@11 at line 218
sub predefine_encodings {
2251128µs require Encode::Encoding;
2263697µs282µs
# spent 50µs (18+32) within Encode::BEGIN@226 which was called: # once (18µs+32µs) by MARC::Charset::BEGIN@11 at line 226
no warnings 'redefine';
# spent 50µs making 1 call to Encode::BEGIN@226 # spent 32µs making 1 call to warnings::unimport
22711µs my $use_xs = shift;
22812µs if ($ON_EBCDIC) {
229
230 # was in Encode::UTF_EBCDIC
231 package Encode::UTF_EBCDIC;
232 push @Encode::UTF_EBCDIC::ISA, 'Encode::Encoding';
233 *decode = sub {
234 my ( $obj, $str, $chk ) = @_;
235 my $res = '';
236 for ( my $i = 0 ; $i < length($str) ; $i++ ) {
237 $res .=
238 chr(
239 utf8::unicode_to_native( ord( substr( $str, $i, 1 ) ) )
240 );
241 }
242 $_[1] = '' if $chk;
243 return $res;
244 };
245 *encode = sub {
246 my ( $obj, $str, $chk ) = @_;
247 my $res = '';
248 for ( my $i = 0 ; $i < length($str) ; $i++ ) {
249 $res .=
250 chr(
251 utf8::native_to_unicode( ord( substr( $str, $i, 1 ) ) )
252 );
253 }
254 $_[1] = '' if $chk;
255 return $res;
256 };
257 $Encode::Encoding{Unicode} =
258 bless { Name => "UTF_EBCDIC" } => "Encode::UTF_EBCDIC";
259 }
260 else {
261
262 package Encode::Internal;
26317µs push @Encode::Internal::ISA, 'Encode::Encoding';
264 *decode = sub {
265 my ( $obj, $str, $chk ) = @_;
266 utf8::upgrade($str);
267 $_[1] = '' if $chk;
268 return $str;
26915µs };
27012µs *encode = \&decode;
27119µs $Encode::Encoding{Unicode} =
272 bless { Name => "Internal" } => "Encode::Internal";
273 }
274
275 {
276
277 # was in Encode::utf8
27817µs package Encode::utf8;
27915µs push @Encode::utf8::ISA, 'Encode::Encoding';
280
281 #
28213µs if ($use_xs) {
28311µs Encode::DEBUG and warn __PACKAGE__, " XS on";
28412µs *decode = \&decode_xs;
28512µs *encode = \&encode_xs;
286 }
287 else {
288 Encode::DEBUG and warn __PACKAGE__, " XS off";
289 *decode = sub {
290 my ( $obj, $octets, $chk ) = @_;
291 my $str = Encode::decode_utf8($octets);
292 if ( defined $str ) {
293 $_[1] = '' if $chk;
294 return $str;
295 }
296 return undef;
297 };
298 *encode = sub {
299 my ( $obj, $string, $chk ) = @_;
300 my $octets = Encode::encode_utf8($string);
301 $_[1] = '' if $chk;
302 return $octets;
303 };
304 }
305 *cat_decode = sub { # ($obj, $dst, $src, $pos, $trm, $chk)
306 # currently ignores $chk
307 my ( $obj, undef, undef, $pos, $trm ) = @_;
308 my ( $rdst, $rsrc, $rpos ) = \@_[ 1, 2, 3 ];
3093187µs231µs
# spent 24µs (17+7) within Encode::utf8::BEGIN@309 which was called: # once (17µs+7µs) by MARC::Charset::BEGIN@11 at line 309
use bytes;
# spent 24µs making 1 call to Encode::utf8::BEGIN@309 # spent 7µs making 1 call to bytes::import
310 if ( ( my $npos = index( $$rsrc, $trm, $pos ) ) >= 0 ) {
311 $$rdst .=
312 substr( $$rsrc, $pos, $npos - $pos + length($trm) );
313 $$rpos = $npos + length($trm);
314 return 1;
315 }
316 $$rdst .= substr( $$rsrc, $pos );
317 $$rpos = length($$rsrc);
318 return '';
31915µs };
32017µs $Encode::Encoding{utf8} =
321 bless { Name => "utf8" } => "Encode::utf8";
32214µs $Encode::Encoding{"utf-8-strict"} =
323 bless { Name => "utf-8-strict", strict_utf8 => 1 } =>
324 "Encode::utf8";
325 }
326}
327
328124µs1;
329
330__END__
 
# spent 6µs within Encode::CORE:match which was called: # once (6µs+0s) by MARC::Charset::BEGIN@11 at line 7
sub Encode::CORE:match; # opcode