For tied file handle calls, use PUSH* when we know that the stack has space.
[p5sagit/p5-mst-13.2.git] / cpan / Encode / Encode.pm
CommitLineData
10c5ecbb 1#
b9627ca0 2# $Id: Encode.pm,v 2.39 2009/11/26 09:23:48 dankogai Exp $
10c5ecbb 3#
2c674647 4package Encode;
51ef4e11 5use strict;
656ebd29 6use warnings;
b9627ca0 7our $VERSION = sprintf "%d.%02d", q$Revision: 2.39 $ =~ /(\d+)/g;
8f139f4c 8sub DEBUG () { 0 }
6d1c0808 9use XSLoader ();
d1256cb1 10XSLoader::load( __PACKAGE__, $VERSION );
2c674647 11
2c674647 12require Exporter;
7e19fb92 13use base qw/Exporter/;
2c674647 14
4411f3b6 15# Public, encouraged API is exported by default
85982a32 16
17our @EXPORT = qw(
0a8c69ed 18 decode decode_utf8 encode encode_utf8 str2bytes bytes2str
a0d8a30e 19 encodings find_encoding clone_encoding
4411f3b6 20);
d1256cb1 21our @FB_FLAGS = qw(
22 DIE_ON_ERR WARN_ON_ERR RETURN_ON_ERR LEAVE_SRC
23 PERLQQ HTMLCREF XMLCREF STOP_AT_PARTIAL
24);
25our @FB_CONSTS = qw(
26 FB_DEFAULT FB_CROAK FB_QUIET FB_WARN
27 FB_PERLQQ FB_HTMLCREF FB_XMLCREF
28);
29our @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
85982a32 33 ),
d1256cb1 34 @FB_FLAGS, @FB_CONSTS,
35);
85982a32 36
d1256cb1 37our %EXPORT_TAGS = (
38 all => [ @EXPORT, @EXPORT_OK ],
0263186c 39 default => [ @EXPORT ],
40 fallbacks => [ @FB_CONSTS ],
d1256cb1 41 fallback_all => [ @FB_CONSTS, @FB_FLAGS ],
42);
85982a32 43
4411f3b6 44# Documentation moved after __END__ for speed - NI-S
2c674647 45
d1256cb1 46our $ON_EBCDIC = ( ord("A") == 193 );
f2a2953c 47
5d030b67 48use Encode::Alias;
49
5129552c 50# Make a %Encoding package variable to allow a certain amount of cheating
51our %Encoding;
aae85ceb 52our %ExtModule;
53require Encode::Config;
2fd0906e 54# See
55# https://bugzilla.redhat.com/show_bug.cgi?id=435505#c2
56# to find why sig handers inside eval{} are disabled.
57eval {
58 local $SIG{__DIE__};
59 local $SIG{__WARN__};
60 require Encode::ConfigLocal;
61};
5129552c 62
d1256cb1 63sub encodings {
5129552c 64 my $class = shift;
fc17bd48 65 my %enc;
d1256cb1 66 if ( @_ and $_[0] eq ":all" ) {
67 %enc = ( %Encoding, %ExtModule );
5129552c 68 }
d1256cb1 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;
51ef4e11 80}
81
d1256cb1 82sub perlio_ok {
83 my $obj = ref( $_[0] ) ? $_[0] : find_encoding( $_[0] );
011b2d2f 84 $obj->can("perlio_ok") and return $obj->perlio_ok();
d1256cb1 85 return 0; # safety net
85982a32 86}
87
d1256cb1 88sub define_encoding {
18586f54 89 my $obj = shift;
90 my $name = shift;
5129552c 91 $Encoding{$name} = $obj;
18586f54 92 my $lc = lc($name);
d1256cb1 93 define_alias( $lc => $obj ) unless $lc eq $name;
94 while (@_) {
95 my $alias = shift;
96 define_alias( $alias, $obj );
18586f54 97 }
98 return $obj;
656753f8 99}
100
d1256cb1 101sub getEncoding {
102 my ( $class, $name, $skip_external ) = @_;
10c5ecbb 103
a0d8a30e 104 ref($name) && $name->can('renew') and return $name;
10c5ecbb 105 exists $Encoding{$name} and return $Encoding{$name};
18586f54 106 my $lc = lc $name;
10c5ecbb 107 exists $Encoding{$lc} and return $Encoding{$lc};
c50d192e 108
5129552c 109 my $oc = $class->find_alias($name);
10c5ecbb 110 defined($oc) and return $oc;
111 $lc ne $name and $oc = $class->find_alias($lc);
112 defined($oc) and return $oc;
c50d192e 113
d1256cb1 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 }
d1ed7747 121 }
18586f54 122 return;
656753f8 123}
124
d1256cb1 125sub find_encoding($;$) {
126 my ( $name, $skip_external ) = @_;
127 return __PACKAGE__->getEncoding( $name, $skip_external );
4411f3b6 128}
129
d1256cb1 130sub resolve_alias($) {
fcb875d4 131 my $obj = find_encoding(shift);
132 defined $obj and return $obj->name;
133 return;
134}
135
d1256cb1 136sub clone_encoding($) {
a0d8a30e 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
d1256cb1 144sub encode($$;$) {
145 my ( $name, $string, $check ) = @_;
0f7c507f 146 return undef unless defined $string;
d1256cb1 147 $string .= '' if ref $string; # stringify;
148 $check ||= 0;
4e71788c 149 unless ( defined $name ) {
150 require Carp;
151 Carp::croak("Encoding name should not be undef");
152 }
18586f54 153 my $enc = find_encoding($name);
d1256cb1 154 unless ( defined $enc ) {
155 require Carp;
156 Carp::croak("Unknown encoding '$name'");
10c5ecbb 157 }
d1256cb1 158 my $octets = $enc->encode( $string, $check );
7828f908 159 $_[1] = $string if $check and !ref $check and !( $check & LEAVE_SRC() );
18586f54 160 return $octets;
4411f3b6 161}
0a8c69ed 162*str2bytes = \&encode;
4411f3b6 163
d1256cb1 164sub decode($$;$) {
165 my ( $name, $octets, $check ) = @_;
0f7c507f 166 return undef unless defined $octets;
78589665 167 $octets .= '' if ref $octets;
d1256cb1 168 $check ||= 0;
18586f54 169 my $enc = find_encoding($name);
d1256cb1 170 unless ( defined $enc ) {
171 require Carp;
172 Carp::croak("Unknown encoding '$name'");
10c5ecbb 173 }
d1256cb1 174 my $string = $enc->decode( $octets, $check );
7828f908 175 $_[1] = $octets if $check and !ref $check and !( $check & LEAVE_SRC() );
18586f54 176 return $string;
4411f3b6 177}
0a8c69ed 178*bytes2str = \&decode;
4411f3b6 179
d1256cb1 180sub from_to($$$;$) {
181 my ( $string, $from, $to, $check ) = @_;
0f7c507f 182 return undef unless defined $string;
d1256cb1 183 $check ||= 0;
18586f54 184 my $f = find_encoding($from);
d1256cb1 185 unless ( defined $f ) {
186 require Carp;
187 Carp::croak("Unknown encoding '$from'");
10c5ecbb 188 }
18586f54 189 my $t = find_encoding($to);
d1256cb1 190 unless ( defined $t ) {
191 require Carp;
192 Carp::croak("Unknown encoding '$to'");
10c5ecbb 193 }
41c240f5 194 my $uni = $f->decode($string);
d1256cb1 195 $_[0] = $string = $t->encode( $uni, $check );
196 return undef if ( $check && length($uni) );
197 return defined( $_[0] ) ? length($string) : undef;
4411f3b6 198}
199
d1256cb1 200sub encode_utf8($) {
18586f54 201 my ($str) = @_;
c731e18e 202 utf8::encode($str);
18586f54 203 return $str;
4411f3b6 204}
205
d1256cb1 206sub decode_utf8($;$) {
207 my ( $str, $check ) = @_;
41c240f5 208 return $str if is_utf8($str);
d1256cb1 209 if ($check) {
210 return decode( "utf8", $str, $check );
211 }
212 else {
213 return decode( "utf8", $str );
214 return $str;
c2cbba7d 215 }
5ad8ef52 216}
217
b536bf57 218predefine_encodings(1);
f2a2953c 219
220#
221# This is to restore %Encoding if really needed;
222#
10c5ecbb 223
d1256cb1 224sub predefine_encodings {
51e4e64d 225 require Encode::Encoding;
b536bf57 226 no warnings 'redefine';
227 my $use_xs = shift;
6d1c0808 228 if ($ON_EBCDIC) {
d1256cb1 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;
263 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;
269 };
270 *encode = \&decode;
271 $Encode::Encoding{Unicode} =
272 bless { Name => "Internal" } => "Encode::Internal";
f2a2953c 273 }
274
275 {
d1256cb1 276
277 # was in Encode::utf8
278 package Encode::utf8;
279 push @Encode::utf8::ISA, 'Encode::Encoding';
280
281 #
282 if ($use_xs) {
283 Encode::DEBUG and warn __PACKAGE__, " XS on";
284 *decode = \&decode_xs;
285 *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 ];
309 use bytes;
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 '';
319 };
320 $Encode::Encoding{utf8} =
321 bless { Name => "utf8" } => "Encode::utf8";
322 $Encode::Encoding{"utf-8-strict"} =
323 bless { Name => "utf-8-strict", strict_utf8 => 1 } =>
324 "Encode::utf8";
f2a2953c 325 }
f2a2953c 326}
327
656753f8 3281;
329
2a936312 330__END__
331
4411f3b6 332=head1 NAME
333
334Encode - character encodings
335
336=head1 SYNOPSIS
337
338 use Encode;
339
67d7b5ef 340=head2 Table of Contents
341
0ab8f81e 342Encode consists of a collection of modules whose details are too big
67d7b5ef 343to fit in one document. This POD itself explains the top-level APIs
6d1c0808 344and general topics at a glance. For other topics and more details,
0ab8f81e 345see the PODs below:
67d7b5ef 346
347 Name Description
348 --------------------------------------------------------
6d1c0808 349 Encode::Alias Alias definitions to encodings
67d7b5ef 350 Encode::Encoding Encode Implementation Base Class
351 Encode::Supported List of Supported Encodings
352 Encode::CN Simplified Chinese Encodings
353 Encode::JP Japanese Encodings
354 Encode::KR Korean Encodings
355 Encode::TW Traditional Chinese Encodings
356 --------------------------------------------------------
357
4411f3b6 358=head1 DESCRIPTION
359
47bfe92f 360The C<Encode> module provides the interfaces between Perl's strings
67d7b5ef 361and the rest of the system. Perl strings are sequences of
362B<characters>.
363
364The repertoire of characters that Perl can represent is at least that
365defined by the Unicode Consortium. On most platforms the ordinal
366values of the characters (as returned by C<ord(ch)>) is the "Unicode
367codepoint" for the character (the exceptions are those platforms where
368the legacy encoding is some variant of EBCDIC rather than a super-set
369of ASCII - see L<perlebcdic>).
370
0ab8f81e 371Traditionally, computer data has been moved around in 8-bit chunks
67d7b5ef 372often called "bytes". These chunks are also known as "octets" in
373networking standards. Perl is widely used to manipulate data of many
374types - not only strings of characters representing human or computer
0ab8f81e 375languages but also "binary" data being the machine's representation of
67d7b5ef 376numbers, pixels in an image - or just about anything.
377
0ab8f81e 378When Perl is processing "binary data", the programmer wants Perl to
67d7b5ef 379process "sequences of bytes". This is not a problem for Perl - as a
0ab8f81e 380byte has 256 possible values, it easily fits in Perl's much larger
67d7b5ef 381"logical character".
382
383=head2 TERMINOLOGY
4411f3b6 384
7e19fb92 385=over 2
21938dfa 386
67d7b5ef 387=item *
388
389I<character>: a character in the range 0..(2**32-1) (or more).
390(What Perl's strings are made of.)
391
392=item *
393
394I<byte>: a character in the range 0..255
395(A special case of a Perl character.)
396
397=item *
398
399I<octet>: 8 bits of data, with ordinal values 0..255
0ab8f81e 400(Term for bytes passed to or from a non-Perl context, e.g. a disk file.)
67d7b5ef 401
402=back
4411f3b6 403
67d7b5ef 404=head1 PERL ENCODING API
4411f3b6 405
7e19fb92 406=over 2
4411f3b6 407
b7a5c9de 408=item $octets = encode(ENCODING, $string [, CHECK])
4411f3b6 409
0ab8f81e 410Encodes a string from Perl's internal form into I<ENCODING> and returns
67d7b5ef 411a sequence of octets. ENCODING can be either a canonical name or
0ab8f81e 412an alias. For encoding names and aliases, see L</"Defining Aliases">.
413For CHECK, see L</"Handling Malformed Data">.
4411f3b6 414
b7a5c9de 415For example, to convert a string from Perl's internal format to
6d1c0808 416iso-8859-1 (also known as Latin1),
681a7c68 417
b7a5c9de 418 $octets = encode("iso-8859-1", $string);
7e19fb92 419
44b3b9c7 420B<CAVEAT>: When you run C<$octets = encode("utf8", $string)>, then
421$octets B<may not be equal to> $string. Though they both contain the
422same data, the UTF8 flag for $octets is B<always> off. When you
423encode anything, UTF8 flag of the result is always off, even when it
424contains completely valid utf8 string. See L</"The UTF8 flag"> below.
681a7c68 425
7f0d54d7 426If the $string is C<undef> then C<undef> is returned.
4089adc4 427
b7a5c9de 428=item $string = decode(ENCODING, $octets [, CHECK])
4411f3b6 429
0ab8f81e 430Decodes a sequence of octets assumed to be in I<ENCODING> into Perl's
431internal form and returns the resulting string. As in encode(),
432ENCODING can be either a canonical name or an alias. For encoding names
433and aliases, see L</"Defining Aliases">. For CHECK, see
47bfe92f 434L</"Handling Malformed Data">.
435
b7a5c9de 436For example, to convert ISO-8859-1 data to a string in Perl's internal format:
681a7c68 437
b7a5c9de 438 $string = decode("iso-8859-1", $octets);
681a7c68 439
b7a5c9de 440B<CAVEAT>: When you run C<$string = decode("utf8", $octets)>, then $string
441B<may not be equal to> $octets. Though they both contain the same data,
2575c402 442the UTF8 flag for $string is on unless $octets entirely consists of
443ASCII data (or EBCDIC on EBCDIC machines). See L</"The UTF8 flag">
7e19fb92 444below.
47bfe92f 445
7f0d54d7 446If the $string is C<undef> then C<undef> is returned.
4089adc4 447
44b3b9c7 448=item [$obj =] find_encoding(ENCODING)
449
450Returns the I<encoding object> corresponding to ENCODING. Returns
451undef if no matching ENCODING is find.
452
453This object is what actually does the actual (en|de)coding.
454
455 $utf8 = decode($name, $bytes);
456
457is in fact
458
459 $utf8 = do{
460 $obj = find_encoding($name);
461 croak qq(encoding "$name" not found) unless ref $obj;
462 $obj->decode($bytes)
463 };
464
465with more error checking.
466
467Therefore you can save time by reusing this object as follows;
468
469 my $enc = find_encoding("iso-8859-1");
470 while(<>){
471 my $utf8 = $enc->decode($_);
472 # and do someting with $utf8;
473 }
474
475Besides C<< ->decode >> and C<< ->encode >>, other methods are
476available as well. For instance, C<< -> name >> returns the canonical
477name of the encoding object.
478
479 find_encoding("latin1")->name; # iso-8859-1
480
481See L<Encode::Encoding> for details.
482
b7a5c9de 483=item [$length =] from_to($octets, FROM_ENC, TO_ENC [, CHECK])
7e19fb92 484
b7a5c9de 485Converts B<in-place> data between two encodings. The data in $octets
486must be encoded as octets and not as characters in Perl's internal
f9d05ba3 487format. For example, to convert ISO-8859-1 data to Microsoft's CP1250
488encoding:
2b106fbe 489
b7a5c9de 490 from_to($octets, "iso-8859-1", "cp1250");
2b106fbe 491
492and to convert it back:
493
b7a5c9de 494 from_to($octets, "cp1250", "iso-8859-1");
4411f3b6 495
ab97ca19 496Note that because the conversion happens in place, the data to be
0ab8f81e 497converted cannot be a string constant; it must be a scalar variable.
ab97ca19 498
f9d05ba3 499from_to() returns the length of the converted string in octets on
500success, I<undef> on error.
3ef515df 501
b7a5c9de 502B<CAVEAT>: The following operations look the same but are not quite so;
7e19fb92 503
b7a5c9de 504 from_to($data, "iso-8859-1", "utf8"); #1
7e19fb92 505 $data = decode("iso-8859-1", $data); #2
4411f3b6 506
b7a5c9de 507Both #1 and #2 make $data consist of a completely valid UTF-8 string
2575c402 508but only #2 turns UTF8 flag on. #1 is equivalent to
f2a2953c 509
7e19fb92 510 $data = encode("utf8", decode("iso-8859-1", $data));
f2a2953c 511
2575c402 512See L</"The UTF8 flag"> below.
f2a2953c 513
7828f908 514Also note that
515
516 from_to($octets, $from, $to, $check);
517
518is equivalent to
519
520 $octets = encode($to, decode($from, $octets), $check);
521
522Yes, it does not respect the $check during decoding. It is
523deliberately done that way. If you need minute control, C<decode>
524then C<encode> as follows;
525
526 $octets = encode($to, decode($from, $octets, $check_from), $check_to);
527
f2a2953c 528=item $octets = encode_utf8($string);
529
7e19fb92 530Equivalent to C<$octets = encode("utf8", $string);> The characters
b7a5c9de 531that comprise $string are encoded in Perl's internal format and the
532result is returned as a sequence of octets. All possible
7e19fb92 533characters have a UTF-8 representation so this function cannot fail.
534
f2a2953c 535
536=item $string = decode_utf8($octets [, CHECK]);
537
7e19fb92 538equivalent to C<$string = decode("utf8", $octets [, CHECK])>.
b7a5c9de 539The sequence of octets represented by
7e19fb92 540$octets is decoded from UTF-8 into a sequence of logical
541characters. Not all sequences of octets form valid UTF-8 encodings, so
542it is possible for this call to fail. For CHECK, see
543L</"Handling Malformed Data">.
f2a2953c 544
545=back
546
51ef4e11 547=head2 Listing available encodings
548
5129552c 549 use Encode;
550 @list = Encode->encodings();
551
552Returns a list of the canonical names of the available encodings that
553are loaded. To get a list of all available encodings including the
554ones that are not loaded yet, say
555
556 @all_encodings = Encode->encodings(":all");
557
0ab8f81e 558Or you can give the name of a specific module.
5129552c 559
c731e18e 560 @with_jp = Encode->encodings("Encode::JP");
561
562When "::" is not in the name, "Encode::" is assumed.
51ef4e11 563
c731e18e 564 @ebcdic = Encode->encodings("EBCDIC");
5d030b67 565
0ab8f81e 566To find out in detail which encodings are supported by this package,
5d030b67 567see L<Encode::Supported>.
51ef4e11 568
569=head2 Defining Aliases
570
0ab8f81e 571To add a new alias to a given encoding, use:
67d7b5ef 572
5129552c 573 use Encode;
574 use Encode::Alias;
a63c962f 575 define_alias(newName => ENCODING);
51ef4e11 576
3ef515df 577After that, newName can be used as an alias for ENCODING.
f2a2953c 578ENCODING may be either the name of an encoding or an
579I<encoding object>
51ef4e11 580
fcb875d4 581But before you do so, make sure the alias is nonexistent with
582C<resolve_alias()>, which returns the canonical name thereof.
583i.e.
584
585 Encode::resolve_alias("latin1") eq "iso-8859-1" # true
586 Encode::resolve_alias("iso-8859-12") # false; nonexistent
587 Encode::resolve_alias($name) eq $name # true if $name is canonical
588
0ab8f81e 589resolve_alias() does not need C<use Encode::Alias>; it can be
590exported via C<use Encode qw(resolve_alias)>.
fcb875d4 591
0ab8f81e 592See L<Encode::Alias> for details.
51ef4e11 593
742555bd 594=head2 Finding IANA Character Set Registry names
595
596The canonical name of a given encoding does not necessarily agree with
597IANA IANA Character Set Registry, commonly seen as C<< Content-Type:
598text/plain; charset=I<whatever> >>. For most cases canonical names
599work but sometimes it does not (notably 'utf-8-strict').
600
601Therefore as of Encode version 2.21, a new method C<mime_name()> is added.
602
603 use Encode;
604 my $enc = find_encoding('UTF-8');
605 warn $enc->name; # utf-8-strict
606 warn $enc->mime_name; # UTF-8
607
608See also: L<Encode::Encoding>
609
85982a32 610=head1 Encoding via PerlIO
4411f3b6 611
44b3b9c7 612If your perl supports I<PerlIO> (which is the default), you can use a
613PerlIO layer to decode and encode directly via a filehandle. The
614following two examples are totally identical in their functionality.
4411f3b6 615
85982a32 616 # via PerlIO
617 open my $in, "<:encoding(shiftjis)", $infile or die;
618 open my $out, ">:encoding(euc-jp)", $outfile or die;
b7a5c9de 619 while(<$in>){ print $out $_; }
8e86646e 620
85982a32 621 # via from_to
0ab8f81e 622 open my $in, "<", $infile or die;
623 open my $out, ">", $outfile or die;
b7a5c9de 624 while(<$in>){
0ab8f81e 625 from_to($_, "shiftjis", "euc-jp", 1);
b7a5c9de 626 print $out $_;
85982a32 627 }
4411f3b6 628
b7a5c9de 629Unfortunately, it may be that encodings are PerlIO-savvy. You can check
0ab8f81e 630if your encoding is supported by PerlIO by calling the C<perlio_ok>
631method.
632
633 Encode::perlio_ok("hz"); # False
634 find_encoding("euc-cn")->perlio_ok; # True where PerlIO is available
635
636 use Encode qw(perlio_ok); # exported upon request
637 perlio_ok("euc-jp")
4411f3b6 638
0ab8f81e 639Fortunately, all encodings that come with Encode core are PerlIO-savvy
f9d05ba3 640except for hz and ISO-2022-kr. For gory details, see
641L<Encode::Encoding> and L<Encode::PerlIO>.
4411f3b6 642
85982a32 643=head1 Handling Malformed Data
4411f3b6 644
8e180e82 645The optional I<CHECK> argument tells Encode what to do when it
646encounters malformed data. Without CHECK, Encode::FB_DEFAULT ( == 0 )
647is assumed.
648
649As of version 2.12 Encode supports coderef values for CHECK. See below.
f9d05ba3 650
651=over 2
652
3c4b39be 653=item B<NOTE:> Not all encoding support this feature
f9d05ba3 654
655Some encodings ignore I<CHECK> argument. For example,
656L<Encode::Unicode> ignores I<CHECK> and it always croaks on error.
657
658=back
659
660Now here is the list of I<CHECK> values available
47bfe92f 661
151b5d36 662=over 2
663
85982a32 664=item I<CHECK> = Encode::FB_DEFAULT ( == 0)
47bfe92f 665
f9d05ba3 666If I<CHECK> is 0, (en|de)code will put a I<substitution character> in
78589665 667place of a malformed character. When you encode, E<lt>subcharE<gt>
668will be used. When you decode the code point C<0xFFFD> is used. If
669the data is supposed to be UTF-8, an optional lexical warning
670(category utf8) is given.
e9692b5b 671
7e19fb92 672=item I<CHECK> = Encode::FB_CROAK ( == 1)
e9692b5b 673
b7a5c9de 674If I<CHECK> is 1, methods will die on error immediately with an error
0ab8f81e 675message. Therefore, when I<CHECK> is set to 1, you should trap the
f9d05ba3 676error with eval{} unless you really want to let it die.
47bfe92f 677
85982a32 678=item I<CHECK> = Encode::FB_QUIET
47bfe92f 679
85982a32 680If I<CHECK> is set to Encode::FB_QUIET, (en|de)code will immediately
f9d05ba3 681return the portion of the data that has been processed so far when an
682error occurs. The data argument will be overwritten with everything
683after that point (that is, the unprocessed part of data). This is
684handy when you have to call decode repeatedly in the case where your
685source data may contain partial multi-byte character sequences,
686(i.e. you are reading with a fixed-width buffer). Here is a sample
687code that does exactly this:
4411f3b6 688
78589665 689 my $buffer = ''; my $string = '';
690 while(read $fh, $buffer, 256, length($buffer)){
691 $string .= decode($encoding, $buffer, Encode::FB_QUIET);
692 # $buffer now contains the unprocessed partial character
85982a32 693 }
1768d7eb 694
85982a32 695=item I<CHECK> = Encode::FB_WARN
67d7b5ef 696
0ab8f81e 697This is the same as above, except that it warns on error. Handy when
698you are debugging the mode above.
85982a32 699
700=item perlqq mode (I<CHECK> = Encode::FB_PERLQQ)
701
af1f55d9 702=item HTML charref mode (I<CHECK> = Encode::FB_HTMLCREF)
703
704=item XML charref mode (I<CHECK> = Encode::FB_XMLCREF)
705
85982a32 706For encodings that are implemented by Encode::XS, CHECK ==
707Encode::FB_PERLQQ turns (en|de)code into C<perlqq> fallback mode.
708
b7a5c9de 709When you decode, C<\xI<HH>> will be inserted for a malformed character,
710where I<HH> is the hex representation of the octet that could not be
711decoded to utf8. And when you encode, C<\x{I<HHHH>}> will be inserted,
712where I<HHHH> is the Unicode ID of the character that cannot be found
0ab8f81e 713in the character repertoire of the encoding.
85982a32 714
af1f55d9 715HTML/XML character reference modes are about the same, in place of
78589665 716C<\x{I<HHHH>}>, HTML uses C<&#I<NNN>;> where I<NNN> is a decimal number and
717XML uses C<&#xI<HHHH>;> where I<HHHH> is the hexadecimal number.
af1f55d9 718
7f0d54d7 719In Encode 2.10 or later, C<LEAVE_SRC> is also implied.
720
85982a32 721=item The bitmask
722
0ab8f81e 723These modes are actually set via a bitmask. Here is how the FB_XX
724constants are laid out. You can import the FB_XX constants via
725C<use Encode qw(:fallbacks)>; you can import the generic bitmask
726constants via C<use Encode qw(:fallback_all)>.
85982a32 727
b0b300a3 728 FB_DEFAULT FB_CROAK FB_QUIET FB_WARN FB_PERLQQ
729 DIE_ON_ERR 0x0001 X
4089adc4 730 WARN_ON_ERR 0x0002 X
b0b300a3 731 RETURN_ON_ERR 0x0004 X X
7f0d54d7 732 LEAVE_SRC 0x0008 X
b0b300a3 733 PERLQQ 0x0100 X
b7a5c9de 734 HTMLCREF 0x0200
735 XMLCREF 0x0400
67d7b5ef 736
151b5d36 737=back
738
44b3b9c7 739=over 2
740
51e4e64d 741=item Encode::LEAVE_SRC
742
743If the C<Encode::LEAVE_SRC> bit is not set, but I<CHECK> is, then the second
744argument to C<encode()> or C<decode()> may be assigned to by the functions. If
745you're not interested in this, then bitwise-or the bitmask with it.
746
44b3b9c7 747=back
748
0dbed2e5 749=head2 coderef for CHECK
8e180e82 750
751As of Encode 2.12 CHECK can also be a code reference which takes the
752ord value of unmapped caharacter as an argument and returns a string
753that represents the fallback character. For instance,
67d7b5ef 754
8e180e82 755 $ascii = encode("ascii", $utf8, sub{ sprintf "<U+%04X>", shift });
67d7b5ef 756
8e180e82 757Acts like FB_PERLQQ but E<lt>U+I<XXXX>E<gt> is used instead of
758\x{I<XXXX>}.
982a4085 759
67d7b5ef 760=head1 Defining Encodings
761
762To define a new encoding, use:
763
b7a5c9de 764 use Encode qw(define_encoding);
67d7b5ef 765 define_encoding($object, 'canonicalName' [, alias...]);
766
767I<canonicalName> will be associated with I<$object>. The object
0ab8f81e 768should provide the interface described in L<Encode::Encoding>.
67d7b5ef 769If more than two arguments are provided then additional
b7a5c9de 770arguments are taken as aliases for I<$object>.
67d7b5ef 771
f2a2953c 772See L<Encode::Encoding> for more details.
773
2575c402 774=head1 The UTF8 flag
7e19fb92 775
2575c402 776Before the introduction of Unicode support in perl, The C<eq> operator
b7a5c9de 777just compared the strings represented by two scalars. Beginning with
2575c402 778perl 5.8, C<eq> compares two strings with simultaneous consideration of
779I<the UTF8 flag>. To explain why we made it so, I will quote page 402 of
780C<Programming Perl, 3rd ed.>
7e19fb92 781
782=over 2
783
784=item Goal #1:
785
786Old byte-oriented programs should not spontaneously break on the old
787byte-oriented data they used to work on.
788
789=item Goal #2:
790
791Old byte-oriented programs should magically start working on the new
792character-oriented data when appropriate.
793
794=item Goal #3:
795
796Programs should run just as fast in the new character-oriented mode
797as in the old byte-oriented mode.
798
799=item Goal #4:
800
801Perl should remain one language, rather than forking into a
802byte-oriented Perl and a character-oriented Perl.
803
804=back
805
806Back when C<Programming Perl, 3rd ed.> was written, not even Perl 5.6.0
807was born and many features documented in the book remained
b7a5c9de 808unimplemented for a long time. Perl 5.8 corrected this and the introduction
2575c402 809of the UTF8 flag is one of them. You can think of this perl notion as of a
810byte-oriented mode (UTF8 flag off) and a character-oriented mode (UTF8
7e19fb92 811flag on).
812
2575c402 813Here is how Encode takes care of the UTF8 flag.
7e19fb92 814
4bdf5738 815=over 2
7e19fb92 816
817=item *
818
2575c402 819When you encode, the resulting UTF8 flag is always off.
7e19fb92 820
151b5d36 821=item *
7e19fb92 822
2575c402 823When you decode, the resulting UTF8 flag is on unless you can
7e19fb92 824unambiguously represent data. Here is the definition of
825dis-ambiguity.
826
b7a5c9de 827After C<$utf8 = decode('foo', $octet);>,
7e19fb92 828
2575c402 829 When $octet is... The UTF8 flag in $utf8 is
7e19fb92 830 ---------------------------------------------
831 In ASCII only (or EBCDIC only) OFF
832 In ISO-8859-1 ON
833 In any other Encoding ON
834 ---------------------------------------------
835
3c4b39be 836As you see, there is one exception, In ASCII. That way you can assume
7e19fb92 837Goal #1. And with Encode Goal #2 is assumed but you still have to be
838careful in such cases mentioned in B<CAVEAT> paragraphs.
839
2575c402 840This UTF8 flag is not visible in perl scripts, exactly for the same
7e19fb92 841reason you cannot (or you I<don't have to>) see if a scalar contains a
842string, integer, or floating point number. But you can still peek
843and poke these if you will. See the section below.
844
845=back
846
847=head2 Messing with Perl's Internals
4411f3b6 848
47bfe92f 849The following API uses parts of Perl's internals in the current
0ab8f81e 850implementation. As such, they are efficient but may change.
4411f3b6 851
7e19fb92 852=over 2
4411f3b6 853
a63c962f 854=item is_utf8(STRING [, CHECK])
4411f3b6 855
2575c402 856[INTERNAL] Tests whether the UTF8 flag is turned on in the STRING.
47bfe92f 857If CHECK is true, also checks the data in STRING for being well-formed
858UTF-8. Returns true if successful, false otherwise.
4411f3b6 859
2c246b25 860As of perl 5.8.1, L<utf8> also has utf8::is_utf8().
b5ab1f6f 861
a63c962f 862=item _utf8_on(STRING)
4411f3b6 863
2575c402 864[INTERNAL] Turns on the UTF8 flag in STRING. The data in STRING is
4411f3b6 865B<not> checked for being well-formed UTF-8. Do not use unless you
866B<know> that the STRING is well-formed UTF-8. Returns the previous
2575c402 867state of the UTF8 flag (so please don't treat the return value as
0ab8f81e 868indicating success or failure), or C<undef> if STRING is not a string.
4411f3b6 869
64bc6d54 870This function does not work on tainted values.
871
a63c962f 872=item _utf8_off(STRING)
4411f3b6 873
2575c402 874[INTERNAL] Turns off the UTF8 flag in STRING. Do not use frivolously.
875Returns the previous state of the UTF8 flag (so please don't treat the
0ab8f81e 876return value as indicating success or failure), or C<undef> if STRING is
4411f3b6 877not a string.
878
64bc6d54 879This function does not work on tainted values.
880
4411f3b6 881=back
882
2575c402 883=head1 UTF-8 vs. utf8 vs. UTF8
7f0d54d7 884
885 ....We now view strings not as sequences of bytes, but as sequences
886 of numbers in the range 0 .. 2**32-1 (or in the case of 64-bit
887 computers, 0 .. 2**64-1) -- Programming Perl, 3rd ed.
888
889That has been the perl's notion of UTF-8 but official UTF-8 is more
890strict; Its ranges is much narrower (0 .. 10FFFF), some sequences are
891not allowed (i.e. Those used in the surrogate pair, 0xFFFE, et al).
892
893Now that is overruled by Larry Wall himself.
894
895 From: Larry Wall <larry@wall.org>
896 Date: December 04, 2004 11:51:58 JST
897 To: perl-unicode@perl.org
898 Subject: Re: Make Encode.pm support the real UTF-8
899 Message-Id: <20041204025158.GA28754@wall.org>
900
901 On Fri, Dec 03, 2004 at 10:12:12PM +0000, Tim Bunce wrote:
902 : I've no problem with 'utf8' being perl's unrestricted uft8 encoding,
903 : but "UTF-8" is the name of the standard and should give the
904 : corresponding behaviour.
905
906 For what it's worth, that's how I've always kept them straight in my
907 head.
8e180e82 908
7f0d54d7 909 Also for what it's worth, Perl 6 will mostly default to strict but
910 make it easy to switch back to lax.
911
912 Larry
913
914Do you copy? As of Perl 5.8.7, B<UTF-8> means strict, official UTF-8
915while B<utf8> means liberal, lax, version thereof. And Encode version
9162.10 or later thus groks the difference between C<UTF-8> and C"utf8".
917
918 encode("utf8", "\x{FFFF_FFFF}", 1); # okay
919 encode("UTF-8", "\x{FFFF_FFFF}", 1); # croaks
920
921C<UTF-8> in Encode is actually a canonical name for C<utf-8-strict>.
922Yes, the hyphen between "UTF" and "8" is important. Without it Encode
923goes "liberal"
924
925 find_encoding("UTF-8")->name # is 'utf-8-strict'
926 find_encoding("utf-8")->name # ditto. names are case insensitive
50c1ac04 927 find_encoding("utf_8")->name # ditto. "_" are treated as "-"
7f0d54d7 928 find_encoding("UTF8")->name # is 'utf8'.
929
2575c402 930The UTF8 flag is internally called UTF8, without a hyphen. It indicates
931whether a string is internally encoded as utf8, also without a hypen.
7f0d54d7 932
4411f3b6 933=head1 SEE ALSO
934
5d030b67 935L<Encode::Encoding>,
936L<Encode::Supported>,
6d1c0808 937L<Encode::PerlIO>,
5d030b67 938L<encoding>,
6d1c0808 939L<perlebcdic>,
940L<perlfunc/open>,
370462a2 941L<perlunicode>, L<perluniintro>, L<perlunifaq>, L<perlunitut>
6d1c0808 942L<utf8>,
5d030b67 943the Perl Unicode Mailing List E<lt>perl-unicode@perl.orgE<gt>
4411f3b6 944
85982a32 945=head1 MAINTAINER
aae85ceb 946
947This project was originated by Nick Ing-Simmons and later maintained
7e19fb92 948by Dan Kogai E<lt>dankogai@dan.co.jpE<gt>. See AUTHORS for a full
949list of people involved. For any questions, use
b7a5c9de 950E<lt>perl-unicode@perl.orgE<gt> so we can all share.
aae85ceb 951
d1256cb1 952While Dan Kogai retains the copyright as a maintainer, the credit
953should go to all those involoved. See AUTHORS for those submitted
954codes.
955
956=head1 COPYRIGHT
957
958Copyright 2002-2006 Dan Kogai E<lt>dankogai@dan.co.jpE<gt>
959
960This library is free software; you can redistribute it and/or modify
961it under the same terms as Perl itself.
962
4411f3b6 963=cut