Integrate from perlio:
[p5sagit/p5-mst-13.2.git] / ext / Encode / Encode.pm
CommitLineData
10c5ecbb 1#
b536bf57 2# $Id: Encode.pm,v 1.83 2002/11/18 17:28:29 dankogai Exp $
10c5ecbb 3#
2c674647 4package Encode;
51ef4e11 5use strict;
b536bf57 6our $VERSION = do { my @r = (q$Revision: 1.83 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
5129552c 7our $DEBUG = 0;
6d1c0808 8use XSLoader ();
10c5ecbb 9XSLoader::load(__PACKAGE__, $VERSION);
2c674647 10
2c674647 11require Exporter;
7e19fb92 12use base qw/Exporter/;
2c674647 13
4411f3b6 14# Public, encouraged API is exported by default
85982a32 15
16our @EXPORT = qw(
17 decode decode_utf8 encode encode_utf8
18 encodings find_encoding
4411f3b6 19);
20
b7a5c9de 21our @FB_FLAGS = qw(DIE_ON_ERR WARN_ON_ERR RETURN_ON_ERR LEAVE_SRC
af1f55d9 22 PERLQQ HTMLCREF XMLCREF);
b7a5c9de 23our @FB_CONSTS = qw(FB_DEFAULT FB_CROAK FB_QUIET FB_WARN
af1f55d9 24 FB_PERLQQ FB_HTMLCREF FB_XMLCREF);
85982a32 25
51ef4e11 26our @EXPORT_OK =
6d1c0808 27 (
85982a32 28 qw(
29 _utf8_off _utf8_on define_encoding from_to is_16bit is_8bit
30 is_utf8 perlio_ok resolve_alias utf8_downgrade utf8_upgrade
31 ),
32 @FB_FLAGS, @FB_CONSTS,
33 );
34
6d1c0808 35our %EXPORT_TAGS =
85982a32 36 (
37 all => [ @EXPORT, @EXPORT_OK ],
38 fallbacks => [ @FB_CONSTS ],
39 fallback_all => [ @FB_CONSTS, @FB_FLAGS ],
40 );
41
4411f3b6 42# Documentation moved after __END__ for speed - NI-S
2c674647 43
a63c962f 44our $ON_EBCDIC = (ord("A") == 193);
f2a2953c 45
5d030b67 46use Encode::Alias;
47
5129552c 48# Make a %Encoding package variable to allow a certain amount of cheating
49our %Encoding;
aae85ceb 50our %ExtModule;
51require Encode::Config;
52eval { require Encode::ConfigLocal };
5129552c 53
656753f8 54sub encodings
55{
5129552c 56 my $class = shift;
fc17bd48 57 my %enc;
58 if (@_ and $_[0] eq ":all"){
59 %enc = ( %Encoding, %ExtModule );
60 }else{
61 %enc = %Encoding;
62 for my $mod (map {m/::/o ? $_ : "Encode::$_" } @_){
63 $DEBUG and warn $mod;
64 for my $enc (keys %ExtModule){
65 $ExtModule{$enc} eq $mod and $enc{$enc} = $mod;
66 }
67 }
5129552c 68 }
69 return
ce912cd4 70 sort { lc $a cmp lc $b }
fc17bd48 71 grep {!/^(?:Internal|Unicode|Guess)$/o} keys %enc;
51ef4e11 72}
73
85982a32 74sub perlio_ok{
0ab8f81e 75 my $obj = ref($_[0]) ? $_[0] : find_encoding($_[0]);
011b2d2f 76 $obj->can("perlio_ok") and return $obj->perlio_ok();
0ab8f81e 77 return 0; # safety net
85982a32 78}
79
51ef4e11 80sub define_encoding
81{
18586f54 82 my $obj = shift;
83 my $name = shift;
5129552c 84 $Encoding{$name} = $obj;
18586f54 85 my $lc = lc($name);
86 define_alias($lc => $obj) unless $lc eq $name;
10c5ecbb 87 while (@_){
18586f54 88 my $alias = shift;
10c5ecbb 89 define_alias($alias, $obj);
18586f54 90 }
91 return $obj;
656753f8 92}
93
656753f8 94sub getEncoding
95{
10c5ecbb 96 my ($class, $name, $skip_external) = @_;
97
98 ref($name) && $name->can('new_sequence') and return $name;
99 exists $Encoding{$name} and return $Encoding{$name};
18586f54 100 my $lc = lc $name;
10c5ecbb 101 exists $Encoding{$lc} and return $Encoding{$lc};
c50d192e 102
5129552c 103 my $oc = $class->find_alias($name);
10c5ecbb 104 defined($oc) and return $oc;
105 $lc ne $name and $oc = $class->find_alias($lc);
106 defined($oc) and return $oc;
c50d192e 107
c731e18e 108 unless ($skip_external)
d1ed7747 109 {
c731e18e 110 if (my $mod = $ExtModule{$name} || $ExtModule{$lc}){
111 $mod =~ s,::,/,g ; $mod .= '.pm';
112 eval{ require $mod; };
10c5ecbb 113 exists $Encoding{$name} and return $Encoding{$name};
c731e18e 114 }
d1ed7747 115 }
18586f54 116 return;
656753f8 117}
118
4411f3b6 119sub find_encoding
120{
10c5ecbb 121 my ($name, $skip_external) = @_;
dd9703c9 122 return __PACKAGE__->getEncoding($name,$skip_external);
4411f3b6 123}
124
fcb875d4 125sub resolve_alias {
126 my $obj = find_encoding(shift);
127 defined $obj and return $obj->name;
128 return;
129}
130
b2704119 131sub encode($$;$)
4411f3b6 132{
e8c86ba6 133 my ($name, $string, $check) = @_;
b2704119 134 $check ||=0;
18586f54 135 my $enc = find_encoding($name);
10c5ecbb 136 unless(defined $enc){
137 require Carp;
138 Carp::croak("Unknown encoding '$name'");
139 }
18586f54 140 my $octets = $enc->encode($string,$check);
141 return undef if ($check && length($string));
142 return $octets;
4411f3b6 143}
144
b2704119 145sub decode($$;$)
4411f3b6 146{
18586f54 147 my ($name,$octets,$check) = @_;
b2704119 148 $check ||=0;
18586f54 149 my $enc = find_encoding($name);
10c5ecbb 150 unless(defined $enc){
151 require Carp;
152 Carp::croak("Unknown encoding '$name'");
153 }
18586f54 154 my $string = $enc->decode($octets,$check);
155 $_[1] = $octets if $check;
156 return $string;
4411f3b6 157}
158
b2704119 159sub from_to($$$;$)
4411f3b6 160{
18586f54 161 my ($string,$from,$to,$check) = @_;
b2704119 162 $check ||=0;
18586f54 163 my $f = find_encoding($from);
10c5ecbb 164 unless (defined $f){
165 require Carp;
166 Carp::croak("Unknown encoding '$from'");
167 }
18586f54 168 my $t = find_encoding($to);
10c5ecbb 169 unless (defined $t){
170 require Carp;
171 Carp::croak("Unknown encoding '$to'");
172 }
18586f54 173 my $uni = $f->decode($string,$check);
174 return undef if ($check && length($string));
a999c27c 175 $string = $t->encode($uni,$check);
18586f54 176 return undef if ($check && length($uni));
3ef515df 177 return defined($_[0] = $string) ? length($string) : undef ;
4411f3b6 178}
179
b2704119 180sub encode_utf8($)
4411f3b6 181{
18586f54 182 my ($str) = @_;
c731e18e 183 utf8::encode($str);
18586f54 184 return $str;
4411f3b6 185}
186
b2704119 187sub decode_utf8($)
4411f3b6 188{
18586f54 189 my ($str) = @_;
190 return undef unless utf8::decode($str);
191 return $str;
5ad8ef52 192}
193
b536bf57 194predefine_encodings(1);
f2a2953c 195
196#
197# This is to restore %Encoding if really needed;
198#
10c5ecbb 199
f2a2953c 200sub predefine_encodings{
10c5ecbb 201 use Encode::Encoding;
b536bf57 202 no warnings 'redefine';
203 my $use_xs = shift;
6d1c0808 204 if ($ON_EBCDIC) {
f2a2953c 205 # was in Encode::UTF_EBCDIC
206 package Encode::UTF_EBCDIC;
10c5ecbb 207 push @Encode::UTF_EBCDIC::ISA, 'Encode::Encoding';
f2a2953c 208 *decode = sub{
209 my ($obj,$str,$chk) = @_;
210 my $res = '';
211 for (my $i = 0; $i < length($str); $i++) {
6d1c0808 212 $res .=
f2a2953c 213 chr(utf8::unicode_to_native(ord(substr($str,$i,1))));
214 }
215 $_[1] = '' if $chk;
216 return $res;
217 };
218 *encode = sub{
219 my ($obj,$str,$chk) = @_;
220 my $res = '';
221 for (my $i = 0; $i < length($str); $i++) {
6d1c0808 222 $res .=
f2a2953c 223 chr(utf8::native_to_unicode(ord(substr($str,$i,1))));
224 }
225 $_[1] = '' if $chk;
226 return $res;
227 };
6d1c0808 228 $Encode::Encoding{Unicode} =
c731e18e 229 bless {Name => "UTF_EBCDIC"} => "Encode::UTF_EBCDIC";
6d1c0808 230 } else {
f2a2953c 231 package Encode::Internal;
10c5ecbb 232 push @Encode::Internal::ISA, 'Encode::Encoding';
f2a2953c 233 *decode = sub{
234 my ($obj,$str,$chk) = @_;
235 utf8::upgrade($str);
236 $_[1] = '' if $chk;
237 return $str;
238 };
239 *encode = \&decode;
6d1c0808 240 $Encode::Encoding{Unicode} =
c731e18e 241 bless {Name => "Internal"} => "Encode::Internal";
f2a2953c 242 }
243
244 {
245 # was in Encode::utf8
246 package Encode::utf8;
10c5ecbb 247 push @Encode::utf8::ISA, 'Encode::Encoding';
b536bf57 248 #
249 if ($use_xs){
250 $DEBUG and warn __PACKAGE__, " XS on";
251 *decode = \&decode_xs;
252 *encode = \&encode_xs;
253 }else{
254 $DEBUG and warn __PACKAGE__, " XS off";
255 *decode = sub{
256 my ($obj,$octets,$chk) = @_;
257 my $str = Encode::decode_utf8($octets);
258 if (defined $str) {
259 $_[1] = '' if $chk;
260 return $str;
261 }
262 return undef;
263 };
264 *encode = sub {
265 my ($obj,$string,$chk) = @_;
266 my $octets = Encode::encode_utf8($string);
267 $_[1] = '' if $chk;
268 return $octets;
269 };
270 }
b7a5c9de 271 $Encode::Encoding{utf8} =
c731e18e 272 bless {Name => "utf8"} => "Encode::utf8";
f2a2953c 273 }
f2a2953c 274}
275
656753f8 2761;
277
2a936312 278__END__
279
4411f3b6 280=head1 NAME
281
282Encode - character encodings
283
284=head1 SYNOPSIS
285
286 use Encode;
287
67d7b5ef 288=head2 Table of Contents
289
0ab8f81e 290Encode consists of a collection of modules whose details are too big
67d7b5ef 291to fit in one document. This POD itself explains the top-level APIs
6d1c0808 292and general topics at a glance. For other topics and more details,
0ab8f81e 293see the PODs below:
67d7b5ef 294
295 Name Description
296 --------------------------------------------------------
6d1c0808 297 Encode::Alias Alias definitions to encodings
67d7b5ef 298 Encode::Encoding Encode Implementation Base Class
299 Encode::Supported List of Supported Encodings
300 Encode::CN Simplified Chinese Encodings
301 Encode::JP Japanese Encodings
302 Encode::KR Korean Encodings
303 Encode::TW Traditional Chinese Encodings
304 --------------------------------------------------------
305
4411f3b6 306=head1 DESCRIPTION
307
47bfe92f 308The C<Encode> module provides the interfaces between Perl's strings
67d7b5ef 309and the rest of the system. Perl strings are sequences of
310B<characters>.
311
312The repertoire of characters that Perl can represent is at least that
313defined by the Unicode Consortium. On most platforms the ordinal
314values of the characters (as returned by C<ord(ch)>) is the "Unicode
315codepoint" for the character (the exceptions are those platforms where
316the legacy encoding is some variant of EBCDIC rather than a super-set
317of ASCII - see L<perlebcdic>).
318
0ab8f81e 319Traditionally, computer data has been moved around in 8-bit chunks
67d7b5ef 320often called "bytes". These chunks are also known as "octets" in
321networking standards. Perl is widely used to manipulate data of many
322types - not only strings of characters representing human or computer
0ab8f81e 323languages but also "binary" data being the machine's representation of
67d7b5ef 324numbers, pixels in an image - or just about anything.
325
0ab8f81e 326When Perl is processing "binary data", the programmer wants Perl to
67d7b5ef 327process "sequences of bytes". This is not a problem for Perl - as a
0ab8f81e 328byte has 256 possible values, it easily fits in Perl's much larger
67d7b5ef 329"logical character".
330
331=head2 TERMINOLOGY
4411f3b6 332
7e19fb92 333=over 2
21938dfa 334
67d7b5ef 335=item *
336
337I<character>: a character in the range 0..(2**32-1) (or more).
338(What Perl's strings are made of.)
339
340=item *
341
342I<byte>: a character in the range 0..255
343(A special case of a Perl character.)
344
345=item *
346
347I<octet>: 8 bits of data, with ordinal values 0..255
0ab8f81e 348(Term for bytes passed to or from a non-Perl context, e.g. a disk file.)
67d7b5ef 349
350=back
4411f3b6 351
67d7b5ef 352=head1 PERL ENCODING API
4411f3b6 353
7e19fb92 354=over 2
4411f3b6 355
b7a5c9de 356=item $octets = encode(ENCODING, $string [, CHECK])
4411f3b6 357
0ab8f81e 358Encodes a string from Perl's internal form into I<ENCODING> and returns
67d7b5ef 359a sequence of octets. ENCODING can be either a canonical name or
0ab8f81e 360an alias. For encoding names and aliases, see L</"Defining Aliases">.
361For CHECK, see L</"Handling Malformed Data">.
4411f3b6 362
b7a5c9de 363For example, to convert a string from Perl's internal format to
6d1c0808 364iso-8859-1 (also known as Latin1),
681a7c68 365
b7a5c9de 366 $octets = encode("iso-8859-1", $string);
7e19fb92 367
b7a5c9de 368B<CAVEAT>: When you run C<$octets = encode("utf8", $string)>, then $octets
369B<may not be equal to> $string. Though they both contain the same data, the utf8 flag
7e19fb92 370for $octets is B<always> off. When you encode anything, utf8 flag of
371the result is always off, even when it contains completely valid utf8
372string. See L</"The UTF-8 flag"> below.
681a7c68 373
4089adc4 374encode($valid_encoding, undef) is harmless but warns you for
375C<Use of uninitialized value in subroutine entry>.
376encode($valid_encoding, '') is harmless and warnless.
377
b7a5c9de 378=item $string = decode(ENCODING, $octets [, CHECK])
4411f3b6 379
0ab8f81e 380Decodes a sequence of octets assumed to be in I<ENCODING> into Perl's
381internal form and returns the resulting string. As in encode(),
382ENCODING can be either a canonical name or an alias. For encoding names
383and aliases, see L</"Defining Aliases">. For CHECK, see
47bfe92f 384L</"Handling Malformed Data">.
385
b7a5c9de 386For example, to convert ISO-8859-1 data to a string in Perl's internal format:
681a7c68 387
b7a5c9de 388 $string = decode("iso-8859-1", $octets);
681a7c68 389
b7a5c9de 390B<CAVEAT>: When you run C<$string = decode("utf8", $octets)>, then $string
391B<may not be equal to> $octets. Though they both contain the same data,
392the utf8 flag for $string is on unless $octets entirely consists of
7e19fb92 393ASCII data (or EBCDIC on EBCDIC machines). See L</"The UTF-8 flag">
394below.
47bfe92f 395
4089adc4 396decode($valid_encoding, undef) is harmless but warns you for
397C<Use of uninitialized value in subroutine entry>.
398decode($valid_encoding, '') is harmless and warnless.
399
b7a5c9de 400=item [$length =] from_to($octets, FROM_ENC, TO_ENC [, CHECK])
7e19fb92 401
b7a5c9de 402Converts B<in-place> data between two encodings. The data in $octets
403must be encoded as octets and not as characters in Perl's internal
404format. For example, to convert ISO-8859-1 data to Microsoft's CP1250 encoding:
2b106fbe 405
b7a5c9de 406 from_to($octets, "iso-8859-1", "cp1250");
2b106fbe 407
408and to convert it back:
409
b7a5c9de 410 from_to($octets, "cp1250", "iso-8859-1");
4411f3b6 411
ab97ca19 412Note that because the conversion happens in place, the data to be
0ab8f81e 413converted cannot be a string constant; it must be a scalar variable.
ab97ca19 414
b7a5c9de 415from_to() returns the length of the converted string in octets on success, undef
3ef515df 416otherwise.
417
b7a5c9de 418B<CAVEAT>: The following operations look the same but are not quite so;
7e19fb92 419
b7a5c9de 420 from_to($data, "iso-8859-1", "utf8"); #1
7e19fb92 421 $data = decode("iso-8859-1", $data); #2
4411f3b6 422
b7a5c9de 423Both #1 and #2 make $data consist of a completely valid UTF-8 string
7e19fb92 424but only #2 turns utf8 flag on. #1 is equivalent to
f2a2953c 425
7e19fb92 426 $data = encode("utf8", decode("iso-8859-1", $data));
f2a2953c 427
7e19fb92 428See L</"The UTF-8 flag"> below.
f2a2953c 429
430=item $octets = encode_utf8($string);
431
7e19fb92 432Equivalent to C<$octets = encode("utf8", $string);> The characters
b7a5c9de 433that comprise $string are encoded in Perl's internal format and the
434result is returned as a sequence of octets. All possible
7e19fb92 435characters have a UTF-8 representation so this function cannot fail.
436
f2a2953c 437
438=item $string = decode_utf8($octets [, CHECK]);
439
7e19fb92 440equivalent to C<$string = decode("utf8", $octets [, CHECK])>.
b7a5c9de 441The sequence of octets represented by
7e19fb92 442$octets is decoded from UTF-8 into a sequence of logical
443characters. Not all sequences of octets form valid UTF-8 encodings, so
444it is possible for this call to fail. For CHECK, see
445L</"Handling Malformed Data">.
f2a2953c 446
447=back
448
51ef4e11 449=head2 Listing available encodings
450
5129552c 451 use Encode;
452 @list = Encode->encodings();
453
454Returns a list of the canonical names of the available encodings that
455are loaded. To get a list of all available encodings including the
456ones that are not loaded yet, say
457
458 @all_encodings = Encode->encodings(":all");
459
0ab8f81e 460Or you can give the name of a specific module.
5129552c 461
c731e18e 462 @with_jp = Encode->encodings("Encode::JP");
463
464When "::" is not in the name, "Encode::" is assumed.
51ef4e11 465
c731e18e 466 @ebcdic = Encode->encodings("EBCDIC");
5d030b67 467
0ab8f81e 468To find out in detail which encodings are supported by this package,
5d030b67 469see L<Encode::Supported>.
51ef4e11 470
471=head2 Defining Aliases
472
0ab8f81e 473To add a new alias to a given encoding, use:
67d7b5ef 474
5129552c 475 use Encode;
476 use Encode::Alias;
a63c962f 477 define_alias(newName => ENCODING);
51ef4e11 478
3ef515df 479After that, newName can be used as an alias for ENCODING.
f2a2953c 480ENCODING may be either the name of an encoding or an
481I<encoding object>
51ef4e11 482
fcb875d4 483But before you do so, make sure the alias is nonexistent with
484C<resolve_alias()>, which returns the canonical name thereof.
485i.e.
486
487 Encode::resolve_alias("latin1") eq "iso-8859-1" # true
488 Encode::resolve_alias("iso-8859-12") # false; nonexistent
489 Encode::resolve_alias($name) eq $name # true if $name is canonical
490
0ab8f81e 491resolve_alias() does not need C<use Encode::Alias>; it can be
492exported via C<use Encode qw(resolve_alias)>.
fcb875d4 493
0ab8f81e 494See L<Encode::Alias> for details.
51ef4e11 495
85982a32 496=head1 Encoding via PerlIO
4411f3b6 497
b7a5c9de 498If your perl supports I<PerlIO> (which is the default), you can use a PerlIO layer to decode
0ab8f81e 499and encode directly via a filehandle. The following two examples
500are totally identical in their functionality.
4411f3b6 501
85982a32 502 # via PerlIO
503 open my $in, "<:encoding(shiftjis)", $infile or die;
504 open my $out, ">:encoding(euc-jp)", $outfile or die;
b7a5c9de 505 while(<$in>){ print $out $_; }
8e86646e 506
85982a32 507 # via from_to
0ab8f81e 508 open my $in, "<", $infile or die;
509 open my $out, ">", $outfile or die;
b7a5c9de 510 while(<$in>){
0ab8f81e 511 from_to($_, "shiftjis", "euc-jp", 1);
b7a5c9de 512 print $out $_;
85982a32 513 }
4411f3b6 514
b7a5c9de 515Unfortunately, it may be that encodings are PerlIO-savvy. You can check
0ab8f81e 516if your encoding is supported by PerlIO by calling the C<perlio_ok>
517method.
518
519 Encode::perlio_ok("hz"); # False
520 find_encoding("euc-cn")->perlio_ok; # True where PerlIO is available
521
522 use Encode qw(perlio_ok); # exported upon request
523 perlio_ok("euc-jp")
4411f3b6 524
0ab8f81e 525Fortunately, all encodings that come with Encode core are PerlIO-savvy
b7a5c9de 526except for hz and ISO-2022-kr. For gory details, see L<Encode::Encoding> and L<Encode::PerlIO>.
4411f3b6 527
85982a32 528=head1 Handling Malformed Data
4411f3b6 529
7e19fb92 530=over 2
47bfe92f 531
0ab8f81e 532The I<CHECK> argument is used as follows. When you omit it,
533the behaviour is the same as if you had passed a value of 0 for
534I<CHECK>.
47bfe92f 535
85982a32 536=item I<CHECK> = Encode::FB_DEFAULT ( == 0)
47bfe92f 537
0ab8f81e 538If I<CHECK> is 0, (en|de)code will put a I<substitution character>
539in place of a malformed character. For UCM-based encodings,
b7a5c9de 540E<lt>subcharE<gt> will be used. For Unicode, the code point C<0xFFFD> is used.
0ab8f81e 541If the data is supposed to be UTF-8, an optional lexical warning
542(category utf8) is given.
e9692b5b 543
7e19fb92 544=item I<CHECK> = Encode::FB_CROAK ( == 1)
e9692b5b 545
b7a5c9de 546If I<CHECK> is 1, methods will die on error immediately with an error
0ab8f81e 547message. Therefore, when I<CHECK> is set to 1, you should trap the
548fatal error with eval{} unless you really want to let it die on error.
47bfe92f 549
85982a32 550=item I<CHECK> = Encode::FB_QUIET
47bfe92f 551
85982a32 552If I<CHECK> is set to Encode::FB_QUIET, (en|de)code will immediately
0ab8f81e 553return the portion of the data that has been processed so far when
554an error occurs. The data argument will be overwritten with
555everything after that point (that is, the unprocessed part of data).
556This is handy when you have to call decode repeatedly in the case
557where your source data may contain partial multi-byte character
558sequences, for example because you are reading with a fixed-width
559buffer. Here is some sample code that does exactly this:
4411f3b6 560
b7a5c9de 561 my $data = ''; my $utf8 = '';
85982a32 562 while(defined(read $fh, $buffer, 256)){
0ab8f81e 563 # buffer may end in a partial character so we append
85982a32 564 $data .= $buffer;
ee269af2 565 $utf8 .= decode($encoding, $data, Encode::FB_QUIET);
0ab8f81e 566 # $data now contains the unprocessed partial character
85982a32 567 }
1768d7eb 568
85982a32 569=item I<CHECK> = Encode::FB_WARN
67d7b5ef 570
0ab8f81e 571This is the same as above, except that it warns on error. Handy when
572you are debugging the mode above.
85982a32 573
574=item perlqq mode (I<CHECK> = Encode::FB_PERLQQ)
575
af1f55d9 576=item HTML charref mode (I<CHECK> = Encode::FB_HTMLCREF)
577
578=item XML charref mode (I<CHECK> = Encode::FB_XMLCREF)
579
85982a32 580For encodings that are implemented by Encode::XS, CHECK ==
581Encode::FB_PERLQQ turns (en|de)code into C<perlqq> fallback mode.
582
b7a5c9de 583When you decode, C<\xI<HH>> will be inserted for a malformed character,
584where I<HH> is the hex representation of the octet that could not be
585decoded to utf8. And when you encode, C<\x{I<HHHH>}> will be inserted,
586where I<HHHH> is the Unicode ID of the character that cannot be found
0ab8f81e 587in the character repertoire of the encoding.
85982a32 588
af1f55d9 589HTML/XML character reference modes are about the same, in place of
b7a5c9de 590C<\x{I<HHHH>}>, HTML uses C<&#I<NNNN>>; where I<NNNN> is a decimal digit and
591XML uses C<&#xI<HHHH>>; where I<HHHH> is the hexadecimal digit.
af1f55d9 592
85982a32 593=item The bitmask
594
0ab8f81e 595These modes are actually set via a bitmask. Here is how the FB_XX
596constants are laid out. You can import the FB_XX constants via
597C<use Encode qw(:fallbacks)>; you can import the generic bitmask
598constants via C<use Encode qw(:fallback_all)>.
85982a32 599
b0b300a3 600 FB_DEFAULT FB_CROAK FB_QUIET FB_WARN FB_PERLQQ
601 DIE_ON_ERR 0x0001 X
4089adc4 602 WARN_ON_ERR 0x0002 X
b0b300a3 603 RETURN_ON_ERR 0x0004 X X
604 LEAVE_SRC 0x0008
605 PERLQQ 0x0100 X
b7a5c9de 606 HTMLCREF 0x0200
607 XMLCREF 0x0400
67d7b5ef 608
0ab8f81e 609=head2 Unimplemented fallback schemes
67d7b5ef 610
0ab8f81e 611In the future, you will be able to use a code reference to a callback
f2a2953c 612function for the value of I<CHECK> but its API is still undecided.
67d7b5ef 613
982a4085 614The fallback scheme does not work on EBCDIC platforms.
615
67d7b5ef 616=head1 Defining Encodings
617
618To define a new encoding, use:
619
b7a5c9de 620 use Encode qw(define_encoding);
67d7b5ef 621 define_encoding($object, 'canonicalName' [, alias...]);
622
623I<canonicalName> will be associated with I<$object>. The object
0ab8f81e 624should provide the interface described in L<Encode::Encoding>.
67d7b5ef 625If more than two arguments are provided then additional
b7a5c9de 626arguments are taken as aliases for I<$object>.
67d7b5ef 627
f2a2953c 628See L<Encode::Encoding> for more details.
629
7e19fb92 630=head1 The UTF-8 flag
631
632Before the introduction of utf8 support in perl, The C<eq> operator
b7a5c9de 633just compared the strings represented by two scalars. Beginning with
634perl 5.8, C<eq> compares two strings with simultaneous consideration
635of I<the utf8 flag>. To explain why we made it so, I will quote page
636402 of C<Programming Perl, 3rd ed.>
7e19fb92 637
638=over 2
639
640=item Goal #1:
641
642Old byte-oriented programs should not spontaneously break on the old
643byte-oriented data they used to work on.
644
645=item Goal #2:
646
647Old byte-oriented programs should magically start working on the new
648character-oriented data when appropriate.
649
650=item Goal #3:
651
652Programs should run just as fast in the new character-oriented mode
653as in the old byte-oriented mode.
654
655=item Goal #4:
656
657Perl should remain one language, rather than forking into a
658byte-oriented Perl and a character-oriented Perl.
659
660=back
661
662Back when C<Programming Perl, 3rd ed.> was written, not even Perl 5.6.0
663was born and many features documented in the book remained
b7a5c9de 664unimplemented for a long time. Perl 5.8 corrected this and the introduction
665of the UTF-8 flag is one of them. You can think of this perl notion as of a
666byte-oriented mode (utf8 flag off) and a character-oriented mode (utf8
7e19fb92 667flag on).
668
669Here is how Encode takes care of the utf8 flag.
670
4bdf5738 671=over 2
7e19fb92 672
673=item *
674
675When you encode, the resulting utf8 flag is always off.
676
677=item
678
b7a5c9de 679When you decode, the resulting utf8 flag is on unless you can
7e19fb92 680unambiguously represent data. Here is the definition of
681dis-ambiguity.
682
b7a5c9de 683After C<$utf8 = decode('foo', $octet);>,
7e19fb92 684
685 When $octet is... The utf8 flag in $utf8 is
686 ---------------------------------------------
687 In ASCII only (or EBCDIC only) OFF
688 In ISO-8859-1 ON
689 In any other Encoding ON
690 ---------------------------------------------
691
692As you see, there is one exception, In ASCII. That way you can assue
693Goal #1. And with Encode Goal #2 is assumed but you still have to be
694careful in such cases mentioned in B<CAVEAT> paragraphs.
695
696This utf8 flag is not visible in perl scripts, exactly for the same
697reason you cannot (or you I<don't have to>) see if a scalar contains a
698string, integer, or floating point number. But you can still peek
699and poke these if you will. See the section below.
700
701=back
702
703=head2 Messing with Perl's Internals
4411f3b6 704
47bfe92f 705The following API uses parts of Perl's internals in the current
0ab8f81e 706implementation. As such, they are efficient but may change.
4411f3b6 707
7e19fb92 708=over 2
4411f3b6 709
a63c962f 710=item is_utf8(STRING [, CHECK])
4411f3b6 711
0ab8f81e 712[INTERNAL] Tests whether the UTF-8 flag is turned on in the STRING.
47bfe92f 713If CHECK is true, also checks the data in STRING for being well-formed
714UTF-8. Returns true if successful, false otherwise.
4411f3b6 715
a63c962f 716=item _utf8_on(STRING)
4411f3b6 717
0ab8f81e 718[INTERNAL] Turns on the UTF-8 flag in STRING. The data in STRING is
4411f3b6 719B<not> checked for being well-formed UTF-8. Do not use unless you
720B<know> that the STRING is well-formed UTF-8. Returns the previous
0ab8f81e 721state of the UTF-8 flag (so please don't treat the return value as
722indicating success or failure), or C<undef> if STRING is not a string.
4411f3b6 723
a63c962f 724=item _utf8_off(STRING)
4411f3b6 725
0ab8f81e 726[INTERNAL] Turns off the UTF-8 flag in STRING. Do not use frivolously.
727Returns the previous state of the UTF-8 flag (so please don't treat the
728return value as indicating success or failure), or C<undef> if STRING is
4411f3b6 729not a string.
730
731=back
732
733=head1 SEE ALSO
734
5d030b67 735L<Encode::Encoding>,
736L<Encode::Supported>,
6d1c0808 737L<Encode::PerlIO>,
5d030b67 738L<encoding>,
6d1c0808 739L<perlebcdic>,
740L<perlfunc/open>,
741L<perlunicode>,
742L<utf8>,
5d030b67 743the Perl Unicode Mailing List E<lt>perl-unicode@perl.orgE<gt>
4411f3b6 744
85982a32 745=head1 MAINTAINER
aae85ceb 746
747This project was originated by Nick Ing-Simmons and later maintained
7e19fb92 748by Dan Kogai E<lt>dankogai@dan.co.jpE<gt>. See AUTHORS for a full
749list of people involved. For any questions, use
b7a5c9de 750E<lt>perl-unicode@perl.orgE<gt> so we can all share.
aae85ceb 751
4411f3b6 752=cut