Integrate perlio:
[p5sagit/p5-mst-13.2.git] / ext / Encode / Encode.pm
CommitLineData
2c674647 1package Encode;
51ef4e11 2use strict;
ee981de6 3our $VERSION = do { my @r = (q$Revision: 0.90 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
2c674647 4
5require DynaLoader;
6require Exporter;
7
51ef4e11 8our @ISA = qw(Exporter DynaLoader);
2c674647 9
4411f3b6 10# Public, encouraged API is exported by default
51ef4e11 11our @EXPORT = qw (
4411f3b6 12 encode
13 decode
14 encode_utf8
15 decode_utf8
16 find_encoding
51ef4e11 17 encodings
4411f3b6 18);
19
51ef4e11 20our @EXPORT_OK =
2c674647 21 qw(
51ef4e11 22 define_encoding
23 define_alias
2c674647 24 from_to
25 is_utf8
4411f3b6 26 is_8bit
27 is_16bit
a12c0f56 28 utf8_upgrade
29 utf8_downgrade
4411f3b6 30 _utf8_on
31 _utf8_off
2c674647 32 );
33
34bootstrap Encode ();
35
4411f3b6 36# Documentation moved after __END__ for speed - NI-S
2c674647 37
bf230f3d 38use Carp;
39
51ef4e11 40# Make a %encoding package variable to allow a certain amount of cheating
41our %encoding;
42my @alias; # ordered matching list
43my %alias; # cached known aliases
f7ac3676 44
6d6a7c8d 45 # 0 1 2 3 4 5 6 7 8 9 10
46our @latin2iso_num = ( 0, 1, 2, 3, 4, 9, 10, 13, 14, 15, 16 );
47
f7ac3676 48our %winlatin2cp = (
49 'Latin1' => 1252,
50 'Latin2' => 1250,
51 'Cyrillic' => 1251,
f7ac3676 52 'Greek' => 1253,
53 'Turkish' => 1254,
54 'Hebrew' => 1255,
55 'Arabic' => 1256,
56 'Baltic' => 1257,
57 'Vietnamese' => 1258,
58 );
5345d506 59
70122e76 60our %external_tables =
2b217bf7 61 (
62 'euc-cn' => 'Encode/CN.pm',
63 gb2312 => 'Encode/CN.pm',
64 gb12345 => 'Encode/CN.pm',
65 gbk => 'Encode/CN.pm',
66 cp936 => 'Encode/CN.pm',
67 'iso-ir-165' => 'Encode/CN.pm',
68 'euc-jp' => 'Encode/JP.pm',
ee981de6 69 'iso-2022-jp' => 'Encode/JP.pm',
70 '7bit-jis' => 'Encode/JP.pm',
2b217bf7 71 shiftjis => 'Encode/JP.pm',
72 macjapan => 'Encode/JP.pm',
73 cp932 => 'Encode/JP.pm',
74 'euc-kr' => 'Encode/KR.pm',
75 ksc5601 => 'Encode/KR.pm',
76 cp949 => 'Encode/KR.pm',
77 big5 => 'Encode/TW.pm',
78 'big5-hkscs' => 'Encode/TW.pm',
79 cp950 => 'Encode/TW.pm',
80 gb18030 => 'Encode/HanExtra.pm',
81 big5plus => 'Encode/HanExtra.pm',
82 'euc-tw' => 'Encode/HanExtra.pm',
83 );
d1ed7747 84
656753f8 85sub encodings
86{
87 my ($class) = @_;
40a073c6 88 return
89 map { $_->[0] }
90 sort { $a->[1] cmp $b->[1] }
91 map { [$_, lc $_] }
92 grep { $_ ne 'Internal' }
93 keys %encoding;
51ef4e11 94}
95
96sub findAlias
97{
18586f54 98 my $class = shift;
99 local $_ = shift;
100 # print "# findAlias $_\n";
101 unless (exists $alias{$_})
656753f8 102 {
18586f54 103 for (my $i=0; $i < @alias; $i += 2)
104 {
105 my $alias = $alias[$i];
106 my $val = $alias[$i+1];
107 my $new;
108 if (ref($alias) eq 'Regexp' && $_ =~ $alias)
109 {
110 $new = eval $val;
111 }
112 elsif (ref($alias) eq 'CODE')
113 {
114 $new = &{$alias}($val)
115 }
116 elsif (lc($_) eq lc($alias))
117 {
118 $new = $val;
119 }
120 if (defined($new))
121 {
122 next if $new eq $_; # avoid (direct) recursion on bugs
123 my $enc = (ref($new)) ? $new : find_encoding($new);
124 if ($enc)
125 {
126 $alias{$_} = $enc;
127 last;
128 }
129 }
130 }
656753f8 131 }
18586f54 132 return $alias{$_};
5345d506 133}
134
51ef4e11 135sub define_alias
5345d506 136{
18586f54 137 while (@_)
138 {
139 my ($alias,$name) = splice(@_,0,2);
140 push(@alias, $alias => $name);
141 }
51ef4e11 142}
143
016cb72c 144# Allow variants of iso-8859-1 etc.
d6089a2a 145define_alias( qr/^iso[-_]?(\d+)[-_](\d+)$/i => '"iso-$1-$2"' );
016cb72c 146
7faf300d 147# At least HP-UX has these.
148define_alias( qr/^iso8859(\d+)$/i => '"iso-8859-$1"' );
149
f7ac3676 150# More HP stuff.
151define_alias( qr/^(?:hp-)?(arabic|greek|hebrew|kana|roman|thai|turkish)8$/i => '"${1}8"' );
152
0b3236bb 153# The Official name of ASCII.
8a361256 154define_alias( qr/^ANSI[-_]?X3\.4[-_]?1968$/i => '"ascii"' );
155
58d53262 156# This is a font issue, not an encoding issue.
157# (The currency symbol of the Latin 1 upper half
158# has been redefined as the euro symbol.)
159define_alias( qr/^(.+)\@euro$/i => '"$1"' );
160
016cb72c 161# Allow latin-1 style names as well
7faf300d 162define_alias( qr/^(?:iso[-_]?)?latin[-_]?(\d+)$/i => '"iso-8859-$latin2iso_num[$1]"' );
016cb72c 163
f7ac3676 164# Allow winlatin1 style names as well
cf91068f 165define_alias( qr/^win(latin[12]|cyrillic|baltic|greek|turkish|hebrew|arabic|baltic|vietnamese)$/i => '"cp$winlatin2cp{\u$1}"' );
f7ac3676 166
016cb72c 167# Common names for non-latin prefered MIME names
168define_alias( 'ascii' => 'US-ascii',
169 'cyrillic' => 'iso-8859-5',
170 'arabic' => 'iso-8859-6',
171 'greek' => 'iso-8859-7',
f7ac3676 172 'hebrew' => 'iso-8859-8',
173 'thai' => 'iso-8859-11',
174 'tis620' => 'iso-8859-11',
175 );
016cb72c 176
7faf300d 177# At least AIX has IBM-NNN (surprisingly...) instead of cpNNN.
1853dd5f 178# And Microsoft has their own naming (again, surprisingly).
179define_alias( qr/^(?:ibm|ms)[-_]?(\d\d\d\d?)$/i => '"cp$1"');
180
181# Sometimes seen with a leading zero.
182define_alias( qr/^cp037$/i => '"cp37"');
183
184# Ououououou.
185define_alias( qr/^macRomanian$/i => '"macRumanian"');
7faf300d 186
58d53262 187# Standardize on the dashed versions.
188define_alias( qr/^utf8$/i => 'utf-8' );
7faf300d 189define_alias( qr/^koi8r$/i => 'koi8-r' );
f7ac3676 190define_alias( qr/^koi8u$/i => 'koi8-u' );
191
1853dd5f 192# Seen in some Linuxes.
193define_alias( qr/^ujis$/i => 'euc-jp' );
194
b2729934 195# CP936 doesn't have vendor-addon for GBK, so they're identical.
196define_alias( qr/^gbk$/i => '"cp936"');
197
f7ac3676 198# TODO: HP-UX '8' encodings arabic8 greek8 hebrew8 kana8 thai8 turkish8
199# TODO: HP-UX '15' encodings japanese15 korean15 roi15
200# TODO: Cyrillic encoding ISO-IR-111 (useful?)
f7ac3676 201# TODO: Armenian encoding ARMSCII-8
202# TODO: Hebrew encoding ISO-8859-8-1
203# TODO: Thai encoding TCVN
204# TODO: Korean encoding Johab
56a543c5 205# TODO: Vietnamese encodings VPS
f7ac3676 206# TODO: Japanese encoding JIS (not the same as SJIS)
207# TODO: Mac Asian+African encodings: Arabic Armenian Bengali Burmese
208# ChineseSimp ChineseTrad Devanagari Ethiopic ExtArabic
209# Farsi Georgian Gujarati Gurmukhi Hebrew Japanese
210# Kannada Khmer Korean Laotian Malayalam Mongolian
211# Oriya Sinhalese Symbol Tamil Telugu Tibetan Vietnamese
18586f54 212
1853dd5f 213# Map white space and _ to '-'
016cb72c 214define_alias( qr/^(\S+)[\s_]+(.*)$/i => '"$1-$2"' );
215
51ef4e11 216sub define_encoding
217{
18586f54 218 my $obj = shift;
219 my $name = shift;
220 $encoding{$name} = $obj;
221 my $lc = lc($name);
222 define_alias($lc => $obj) unless $lc eq $name;
223 while (@_)
224 {
225 my $alias = shift;
226 define_alias($alias,$obj);
227 }
228 return $obj;
656753f8 229}
230
656753f8 231sub getEncoding
232{
dd9703c9 233 my ($class,$name,$skip_external) = @_;
18586f54 234 my $enc;
235 if (ref($name) && $name->can('new_sequence'))
236 {
237 return $name;
238 }
239 my $lc = lc $name;
240 if (exists $encoding{$name})
241 {
242 return $encoding{$name};
243 }
244 if (exists $encoding{$lc})
245 {
246 return $encoding{$lc};
247 }
c50d192e 248
249 my $oc = $class->findAlias($name);
250 return $oc if defined $oc;
251
252 $oc = $class->findAlias($lc) if $lc ne $name;
253 return $oc if defined $oc;
254
dd9703c9 255 if (!$skip_external and exists $external_tables{$lc})
d1ed7747 256 {
257 require $external_tables{$lc};
258 return $encoding{$name} if exists $encoding{$name};
259 }
18586f54 260
18586f54 261 return;
656753f8 262}
263
4411f3b6 264sub find_encoding
265{
dd9703c9 266 my ($name,$skip_external) = @_;
267 return __PACKAGE__->getEncoding($name,$skip_external);
4411f3b6 268}
269
270sub encode
271{
18586f54 272 my ($name,$string,$check) = @_;
273 my $enc = find_encoding($name);
274 croak("Unknown encoding '$name'") unless defined $enc;
275 my $octets = $enc->encode($string,$check);
276 return undef if ($check && length($string));
277 return $octets;
4411f3b6 278}
279
280sub decode
281{
18586f54 282 my ($name,$octets,$check) = @_;
283 my $enc = find_encoding($name);
284 croak("Unknown encoding '$name'") unless defined $enc;
285 my $string = $enc->decode($octets,$check);
286 $_[1] = $octets if $check;
287 return $string;
4411f3b6 288}
289
290sub from_to
291{
18586f54 292 my ($string,$from,$to,$check) = @_;
293 my $f = find_encoding($from);
294 croak("Unknown encoding '$from'") unless defined $f;
295 my $t = find_encoding($to);
296 croak("Unknown encoding '$to'") unless defined $t;
297 my $uni = $f->decode($string,$check);
298 return undef if ($check && length($string));
299 $string = $t->encode($uni,$check);
300 return undef if ($check && length($uni));
301 return length($_[0] = $string);
4411f3b6 302}
303
304sub encode_utf8
305{
18586f54 306 my ($str) = @_;
307 utf8::encode($str);
308 return $str;
4411f3b6 309}
310
311sub decode_utf8
312{
18586f54 313 my ($str) = @_;
314 return undef unless utf8::decode($str);
315 return $str;
5ad8ef52 316}
317
18586f54 318require Encode::Encoding;
319require Encode::XS;
320require Encode::Internal;
321require Encode::Unicode;
322require Encode::utf8;
323require Encode::iso10646_1;
324require Encode::ucs2_le;
4411f3b6 325
656753f8 3261;
327
2a936312 328__END__
329
4411f3b6 330=head1 NAME
331
332Encode - character encodings
333
334=head1 SYNOPSIS
335
336 use Encode;
337
338=head1 DESCRIPTION
339
47bfe92f 340The C<Encode> module provides the interfaces between Perl's strings
341and the rest of the system. Perl strings are sequences of B<characters>.
4411f3b6 342
343The repertoire of characters that Perl can represent is at least that
47bfe92f 344defined by the Unicode Consortium. On most platforms the ordinal
345values of the characters (as returned by C<ord(ch)>) is the "Unicode
346codepoint" for the character (the exceptions are those platforms where
347the legacy encoding is some variant of EBCDIC rather than a super-set
348of ASCII - see L<perlebcdic>).
4411f3b6 349
350Traditionaly computer data has been moved around in 8-bit chunks
351often called "bytes". These chunks are also known as "octets" in
352networking standards. Perl is widely used to manipulate data of
353many types - not only strings of characters representing human or
354computer languages but also "binary" data being the machines representation
355of numbers, pixels in an image - or just about anything.
356
47bfe92f 357When Perl is processing "binary data" the programmer wants Perl to process
358"sequences of bytes". This is not a problem for Perl - as a byte has 256
359possible values it easily fits in Perl's much larger "logical character".
4411f3b6 360
d1ed7747 361Due to size concerns, each of B<CJK> (Chinese, Japanese & Korean) modules
362are not loaded in memory until the first time they're used. Although you
363don't have to C<use> the corresponding B<Encode::>(B<TW>|B<CN>|B<JP>|B<KR>)
364modules first, be aware that those encodings will not be in C<%encodings>
365until their module is loaded (either implicitly through using encodings
366contained in the same module, or via an explicit C<use>).
a67efb5b 367
4411f3b6 368=head2 TERMINOLOGY
369
4ac9195f 370=over 4
4411f3b6 371
372=item *
373
374I<character>: a character in the range 0..(2**32-1) (or more).
47bfe92f 375(What Perl's strings are made of.)
4411f3b6 376
377=item *
378
379I<byte>: a character in the range 0..255
47bfe92f 380(A special case of a Perl character.)
4411f3b6 381
382=item *
383
384I<octet>: 8 bits of data, with ordinal values 0..255
47bfe92f 385(Term for bytes passed to or from a non-Perl context, e.g. disk file.)
4411f3b6 386
387=back
388
389The marker [INTERNAL] marks Internal Implementation Details, in
390general meant only for those who think they know what they are doing,
391and such details may change in future releases.
392
393=head1 ENCODINGS
394
395=head2 Characteristics of an Encoding
396
397An encoding has a "repertoire" of characters that it can represent,
398and for each representable character there is at least one sequence of
399octets that represents it.
400
401=head2 Types of Encodings
402
403Encodings can be divided into the following types:
404
405=over 4
406
407=item * Fixed length 8-bit (or less) encodings.
408
409Each character is a single octet so may have a repertoire of up to
410256 characters. ASCII and iso-8859-* are typical examples.
411
412=item * Fixed length 16-bit encodings
413
414Each character is two octets so may have a repertoire of up to
47bfe92f 41565 536 characters. Unicode's UCS-2 is an example. Also used for
4411f3b6 416encodings for East Asian languages.
417
418=item * Fixed length 32-bit encodings.
419
420Not really very "encoded" encodings. The Unicode code points
421are just represented as 4-octet integers. None the less because
422different architectures use different representations of integers
423(so called "endian") there at least two disctinct encodings.
424
425=item * Multi-byte encodings
426
427The number of octets needed to represent a character varies.
428UTF-8 is a particularly complex but regular case of a multi-byte
429encoding. Several East Asian countries use a multi-byte encoding
430where 1-octet is used to cover western roman characters and Asian
431characters get 2-octets.
432(UTF-16 is strictly a multi-byte encoding taking either 2 or 4 octets
433to represent a Unicode code point.)
434
435=item * "Escape" encodings.
436
437These encodings embed "escape sequences" into the octet sequence
438which describe how the following octets are to be interpreted.
439The iso-2022-* family is typical. Following the escape sequence
440octets are encoded by an "embedded" encoding (which will be one
441of the above types) until another escape sequence switches to
442a different "embedded" encoding.
443
444These schemes are very flexible and can handle mixed languages but are
47bfe92f 445very complex to process (and have state). No escape encodings are
446implemented for Perl yet.
4411f3b6 447
448=back
449
450=head2 Specifying Encodings
451
452Encodings can be specified to the API described below in two ways:
453
454=over 4
455
456=item 1. By name
457
47bfe92f 458Encoding names are strings with characters taken from a restricted
459repertoire. See L</"Encoding Names">.
4411f3b6 460
461=item 2. As an object
462
2659725b 463Encoding objects are returned by C<find_encoding($name, [$skip_external])>.
464If the second parameter is true, Encode will refrain from loading external
465modules for CJK encodings.
4411f3b6 466
467=back
468
469=head2 Encoding Names
470
471Encoding names are case insensitive. White space in names is ignored.
47bfe92f 472In addition an encoding may have aliases. Each encoding has one
473"canonical" name. The "canonical" name is chosen from the names of
474the encoding by picking the first in the following sequence:
4411f3b6 475
476=over 4
477
78255929 478=item * The MIME name as defined in IETF RFCs.
4411f3b6 479
480=item * The name in the IANA registry.
481
d1be9408 482=item * The name used by the organization that defined it.
4411f3b6 483
484=back
485
486Because of all the alias issues, and because in the general case
487encodings have state C<Encode> uses the encoding object internally
488once an operation is in progress.
489
21938dfa 490As of Perl 5.8.0, at least the following encodings are recognized
491(the => marks aliases):
492
493 ASCII
494
495 US-ASCII => ASCII
496
497The Unicode:
498
0b3236bb 499 UTF-8
21938dfa 500 UTF-16
501 UCS-2
502
503 ISO 10646-1 => UCS-2
504
505The ISO 8859 and KOI:
506
507 ISO 8859-1 ISO 8859-6 ISO 8859-11 KOI8-F
508 ISO 8859-2 ISO 8859-7 (12 doesn't exist) KOI8-R
56a543c5 509 ISO 8859-3 ISO 8859-8 ISO 8859-13 KOI8-U
21938dfa 510 ISO 8859-4 ISO 8859-9 ISO 8859-14
511 ISO 8859-5 ISO 8859-10 ISO 8859-15
512 ISO 8859-16
513
514 Latin1 => 8859-1 Latin6 => 8859-10
515 Latin2 => 8859-2 Latin7 => 8859-13
0b3236bb 516 Latin3 => 8859-3 Latin8 => 8859-14
21938dfa 517 Latin4 => 8859-4 Latin9 => 8859-15
518 Latin5 => 8859-9 Latin10 => 8859-16
519
520 Cyrillic => 8859-5
521 Arabic => 8859-6
522 Greek => 8859-7
523 Hebrew => 8859-8
524 Thai => 8859-11
0b3236bb 525 TIS620 => 8859-11
21938dfa 526
527The CJKV: Chinese, Japanese, Korean, Vietnamese:
528
0b3236bb 529 ISO 2022 ISO 2022 JP-1 JIS 0201 GB 1988 Big5 EUC-CN
530 ISO 2022 CN ISO 2022 JP-2 JIS 0208 GB 2312 HZ EUC-JP
21938dfa 531 ISO 2022 JP ISO 2022 KR JIS 0210 GB 12345 CNS 11643 EUC-JP-0212
cb448690 532 Shift-JIS GBK Big5-HKSCS EUC-KR
533 VISCII ISO-IR-165
534
a67efb5b 535(Due to size concerns, additional Chinese encodings including C<GB 18030>,
536C<EUC-TW> and C<BIG5PLUS> are distributed separately on CPAN, under the name
537L<Encode::HanExtra>.)
21938dfa 538
539The PC codepages:
540
541 CP37 CP852 CP861 CP866 CP949 CP1251 CP1256
542 CP424 CP855 CP862 CP869 CP950 CP1252 CP1257
543 CP737 CP856 CP863 CP874 CP1006 CP1253 CP1258
544 CP775 CP857 CP864 CP932 CP1047 CP1254
545 CP850 CP860 CP865 CP936 CP1250 CP1255
546
547 WinLatin1 => CP1252
548 WinLatin2 => CP1250
549 WinCyrillic => CP1251
550 WinGreek => CP1253
551 WinTurkiskh => CP1254
552 WinHebrew => CP1255
553 WinArabic => CP1256
554 WinBaltic => CP1257
555 WinVietnamese => CP1258
556
4a42e14c 557(All the CPI<NNN...> are available also as IBMI<NNN...>.)
21938dfa 558
559The Mac codepages:
560
0b3236bb 561 MacCentralEuropean MacJapanese
562 MacCroatian MacRoman
1853dd5f 563 MacCyrillic MacRomanian
0b3236bb 564 MacDingbats MacSami
565 MacGreek MacThai
566 MacIcelandic MacTurkish
567 MacUkraine
21938dfa 568
569Miscellaneous:
570
571 7bit-greek IR-197
572 7bit-kana NeXTstep
573 7bit-latin1 POSIX-BC
574 DingBats Roman8
575 GSM 0338 Symbol
576
4411f3b6 577=head1 PERL ENCODING API
578
579=head2 Generic Encoding Interface
580
581=over 4
582
583=item *
584
585 $bytes = encode(ENCODING, $string[, CHECK])
586
47bfe92f 587Encodes string from Perl's internal form into I<ENCODING> and returns
588a sequence of octets. For CHECK see L</"Handling Malformed Data">.
4411f3b6 589
681a7c68 590For example to convert (internally UTF-8 encoded) Unicode data
591to octets:
592
593 $octets = encode("utf8", $unicode);
594
4411f3b6 595=item *
596
597 $string = decode(ENCODING, $bytes[, CHECK])
598
47bfe92f 599Decode sequence of octets assumed to be in I<ENCODING> into Perl's
600internal form and returns the resulting string. For CHECK see
601L</"Handling Malformed Data">.
602
681a7c68 603For example to convert ISO 8859-1 data to UTF-8:
604
605 $utf8 = decode("latin1", $latin1);
606
47bfe92f 607=item *
608
609 from_to($string, FROM_ENCODING, TO_ENCODING[, CHECK])
610
2b106fbe 611Convert B<in-place> the data between two encodings. How did the data
612in $string originally get to be in FROM_ENCODING? Either using
e9692b5b 613encode() or through PerlIO: See L</"Encoding and IO">. For CHECK
2b106fbe 614see L</"Handling Malformed Data">.
615
616For example to convert ISO 8859-1 data to UTF-8:
617
618 from_to($data, "iso-8859-1", "utf-8");
619
620and to convert it back:
621
622 from_to($data, "utf-8", "iso-8859-1");
4411f3b6 623
ab97ca19 624Note that because the conversion happens in place, the data to be
625converted cannot be a string constant, it must be a scalar variable.
626
4411f3b6 627=back
628
629=head2 Handling Malformed Data
630
631If CHECK is not set, C<undef> is returned. If the data is supposed to
47bfe92f 632be UTF-8, an optional lexical warning (category utf8) is given. If
633CHECK is true but not a code reference, dies.
4411f3b6 634
47bfe92f 635It would desirable to have a way to indicate that transform should use
636the encodings "replacement character" - no such mechanism is defined yet.
4411f3b6 637
638It is also planned to allow I<CHECK> to be a code reference.
639
47bfe92f 640This is not yet implemented as there are design issues with what its
641arguments should be and how it returns its results.
4411f3b6 642
643=over 4
644
645=item Scheme 1
646
647Passed remaining fragment of string being processed.
648Modifies it in place to remove bytes/characters it can understand
649and returns a string used to represent them.
650e.g.
651
652 sub fixup {
653 my $ch = substr($_[0],0,1,'');
654 return sprintf("\x{%02X}",ord($ch);
655 }
656
657This scheme is close to how underlying C code for Encode works, but gives
658the fixup routine very little context.
659
660=item Scheme 2
661
47bfe92f 662Passed original string, and an index into it of the problem area, and
663output string so far. Appends what it will to output string and
664returns new index into original string. For example:
4411f3b6 665
666 sub fixup {
667 # my ($s,$i,$d) = @_;
668 my $ch = substr($_[0],$_[1],1);
669 $_[2] .= sprintf("\x{%02X}",ord($ch);
670 return $_[1]+1;
671 }
672
47bfe92f 673This scheme gives maximal control to the fixup routine but is more
674complicated to code, and may need internals of Encode to be tweaked to
675keep original string intact.
4411f3b6 676
677=item Other Schemes
678
679Hybrids of above.
680
681Multiple return values rather than in-place modifications.
682
683Index into the string could be pos($str) allowing s/\G...//.
684
685=back
686
687=head2 UTF-8 / utf8
688
689The Unicode consortium defines the UTF-8 standard as a way of encoding
47bfe92f 690the entire Unicode repertiore as sequences of octets. This encoding is
691expected to become very widespread. Perl can use this form internaly
692to represent strings, so conversions to and from this form are
693particularly efficient (as octets in memory do not have to change,
694just the meta-data that tells Perl how to treat them).
4411f3b6 695
696=over 4
697
698=item *
699
700 $bytes = encode_utf8($string);
701
47bfe92f 702The characters that comprise string are encoded in Perl's superset of UTF-8
4411f3b6 703and the resulting octets returned as a sequence of bytes. All possible
704characters have a UTF-8 representation so this function cannot fail.
705
706=item *
707
708 $string = decode_utf8($bytes [,CHECK]);
709
47bfe92f 710The sequence of octets represented by $bytes is decoded from UTF-8
711into a sequence of logical characters. Not all sequences of octets
712form valid UTF-8 encodings, so it is possible for this call to fail.
713For CHECK see L</"Handling Malformed Data">.
4411f3b6 714
715=back
716
717=head2 Other Encodings of Unicode
718
47bfe92f 719UTF-16 is similar to UCS-2, 16 bit or 2-byte chunks. UCS-2 can only
7a4efbb2 720represent 0..0xFFFF, while UTF-16 has a I<surrogate pair> scheme which
47bfe92f 721allows it to cover the whole Unicode range.
4411f3b6 722
7a4efbb2 723Surrogates are code points set aside to encode the 0x01000..0x10FFFF
724range of Unicode code points in pairs of 16-bit units. The I<high
725surrogates> are the range 0xD800..0xDBFF, and the I<low surrogates>
726are the range 0xDC00..0xDFFFF. The surrogate encoding is
727
728 $hi = ($uni - 0x10000) / 0x400 + 0xD800;
729 $lo = ($uni - 0x10000) % 0x400 + 0xDC00;
730
731and the decoding is
732
733 $uni = 0x10000 + ($hi - 0xD8000) * 0x400 + ($lo - 0xDC00);
734
8040349a 735Encode implements big-endian UCS-2 aliased to "iso-10646-1" as that
47bfe92f 736happens to be the name used by that representation when used with X11
737fonts.
4411f3b6 738
739UTF-32 or UCS-4 is 32-bit or 4-byte chunks. Perl's logical characters
740can be considered as being in this form without encoding. An encoding
47bfe92f 741to transfer strings in this form (e.g. to write them to a file) would
742need to
4411f3b6 743
c079d275 744 pack('L*', unpack('U*', $string)); # native
4411f3b6 745 or
c079d275 746 pack('V*', unpack('U*', $string)); # little-endian
4411f3b6 747 or
c079d275 748 pack('N*', unpack('U*', $string)); # big-endian
4411f3b6 749
c079d275 750depending on the endianness required.
4411f3b6 751
51ef4e11 752No UTF-32 encodings are implemented yet.
4411f3b6 753
47bfe92f 754Both UCS-2 and UCS-4 style encodings can have "byte order marks" by
755representing the code point 0xFFFE as the very first thing in a file.
4411f3b6 756
51ef4e11 757=head2 Listing available encodings
758
759 use Encode qw(encodings);
760 @list = encodings();
761
762Returns a list of the canonical names of the available encodings.
763
764=head2 Defining Aliases
765
766 use Encode qw(define_alias);
767 define_alias( newName => ENCODING);
768
47bfe92f 769Allows newName to be used as am alias for ENCODING. ENCODING may be
770either the name of an encoding or and encoding object (as above).
51ef4e11 771
772Currently I<newName> can be specified in the following ways:
773
774=over 4
775
776=item As a simple string.
777
778=item As a qr// compiled regular expression, e.g.:
779
780 define_alias( qr/^iso8859-(\d+)$/i => '"iso-8859-$1"' );
781
47bfe92f 782In this case if I<ENCODING> is not a reference it is C<eval>-ed to
783allow C<$1> etc. to be subsituted. The example is one way to names as
784used in X11 font names to alias the MIME names for the iso-8859-*
785family.
51ef4e11 786
787=item As a code reference, e.g.:
788
789 define_alias( sub { return /^iso8859-(\d+)$/i ? "iso-8859-$1" : undef } , '');
790
791In this case C<$_> will be set to the name that is being looked up and
47bfe92f 792I<ENCODING> is passed to the sub as its first argument. The example
793is another way to names as used in X11 font names to alias the MIME
794names for the iso-8859-* family.
51ef4e11 795
796=back
797
798=head2 Defining Encodings
799
e9692b5b 800 use Encode qw(define_alias);
801 define_encoding( $object, 'canonicalName' [,alias...]);
51ef4e11 802
47bfe92f 803Causes I<canonicalName> to be associated with I<$object>. The object
804should provide the interface described in L</"IMPLEMENTATION CLASSES">
805below. If more than two arguments are provided then additional
806arguments are taken as aliases for I<$object> as for C<define_alias>.
51ef4e11 807
4411f3b6 808=head1 Encoding and IO
809
810It is very common to want to do encoding transformations when
811reading or writing files, network connections, pipes etc.
47bfe92f 812If Perl is configured to use the new 'perlio' IO system then
4411f3b6 813C<Encode> provides a "layer" (See L<perliol>) which can transform
814data as it is read or written.
815
8e86646e 816Here is how the blind poet would modernise the encoding:
817
42234700 818 use Encode;
8e86646e 819 open(my $iliad,'<:encoding(iso-8859-7)','iliad.greek');
820 open(my $utf8,'>:utf8','iliad.utf8');
821 my @epic = <$iliad>;
822 print $utf8 @epic;
823 close($utf8);
824 close($illiad);
4411f3b6 825
826In addition the new IO system can also be configured to read/write
827UTF-8 encoded characters (as noted above this is efficient):
828
e9692b5b 829 open(my $fh,'>:utf8','anything');
830 print $fh "Any \x{0021} string \N{SMILEY FACE}\n";
4411f3b6 831
832Either of the above forms of "layer" specifications can be made the default
833for a lexical scope with the C<use open ...> pragma. See L<open>.
834
835Once a handle is open is layers can be altered using C<binmode>.
836
47bfe92f 837Without any such configuration, or if Perl itself is built using
4411f3b6 838system's own IO, then write operations assume that file handle accepts
839only I<bytes> and will C<die> if a character larger than 255 is
840written to the handle. When reading, each octet from the handle
841becomes a byte-in-a-character. Note that this default is the same
47bfe92f 842behaviour as bytes-only languages (including Perl before v5.6) would
843have, and is sufficient to handle native 8-bit encodings
844e.g. iso-8859-1, EBCDIC etc. and any legacy mechanisms for handling
845other encodings and binary data.
846
847In other cases it is the programs responsibility to transform
848characters into bytes using the API above before doing writes, and to
849transform the bytes read from a handle into characters before doing
850"character operations" (e.g. C<lc>, C</\W+/>, ...).
851
47bfe92f 852You can also use PerlIO to convert larger amounts of data you don't
853want to bring into memory. For example to convert between ISO 8859-1
854(Latin 1) and UTF-8 (or UTF-EBCDIC in EBCDIC machines):
855
e9692b5b 856 open(F, "<:encoding(iso-8859-1)", "data.txt") or die $!;
857 open(G, ">:utf8", "data.utf") or die $!;
858 while (<F>) { print G }
859
860 # Could also do "print G <F>" but that would pull
861 # the whole file into memory just to write it out again.
862
863More examples:
47bfe92f 864
e9692b5b 865 open(my $f, "<:encoding(cp1252)")
866 open(my $g, ">:encoding(iso-8859-2)")
867 open(my $h, ">:encoding(latin9)") # iso-8859-15
47bfe92f 868
869See L<PerlIO> for more information.
4411f3b6 870
1768d7eb 871See also L<encoding> for how to change the default encoding of the
d521382b 872data in your script.
1768d7eb 873
4411f3b6 874=head1 Encoding How to ...
875
876To do:
877
878=over 4
879
880=item * IO with mixed content (faking iso-2020-*)
881
882=item * MIME's Content-Length:
883
884=item * UTF-8 strings in binary data.
885
47bfe92f 886=item * Perl/Encode wrappers on non-Unicode XS modules.
4411f3b6 887
888=back
889
890=head1 Messing with Perl's Internals
891
47bfe92f 892The following API uses parts of Perl's internals in the current
893implementation. As such they are efficient, but may change.
4411f3b6 894
895=over 4
896
4411f3b6 897=item * is_utf8(STRING [, CHECK])
898
899[INTERNAL] Test whether the UTF-8 flag is turned on in the STRING.
47bfe92f 900If CHECK is true, also checks the data in STRING for being well-formed
901UTF-8. Returns true if successful, false otherwise.
4411f3b6 902
4411f3b6 903=item *
904
905 _utf8_on(STRING)
906
907[INTERNAL] Turn on the UTF-8 flag in STRING. The data in STRING is
908B<not> checked for being well-formed UTF-8. Do not use unless you
909B<know> that the STRING is well-formed UTF-8. Returns the previous
910state of the UTF-8 flag (so please don't test the return value as
911I<not> success or failure), or C<undef> if STRING is not a string.
912
913=item *
914
915 _utf8_off(STRING)
916
917[INTERNAL] Turn off the UTF-8 flag in STRING. Do not use frivolously.
918Returns the previous state of the UTF-8 flag (so please don't test the
919return value as I<not> success or failure), or C<undef> if STRING is
920not a string.
921
922=back
923
4edaa979 924=head1 IMPLEMENTATION CLASSES
925
926As mentioned above encodings are (in the current implementation at least)
927defined by objects. The mapping of encoding name to object is via the
51ef4e11 928C<%encodings> hash.
4edaa979 929
930The values of the hash can currently be either strings or objects.
931The string form may go away in the future. The string form occurs
932when C<encodings()> has scanned C<@INC> for loadable encodings but has
933not actually loaded the encoding in question. This is because the
47bfe92f 934current "loading" process is all Perl and a bit slow.
4edaa979 935
47bfe92f 936Once an encoding is loaded then value of the hash is object which
937implements the encoding. The object should provide the following
938interface:
4edaa979 939
940=over 4
941
942=item -E<gt>name
943
944Should return the string representing the canonical name of the encoding.
945
946=item -E<gt>new_sequence
947
47bfe92f 948This is a placeholder for encodings with state. It should return an
949object which implements this interface, all current implementations
950return the original object.
4edaa979 951
952=item -E<gt>encode($string,$check)
953
47bfe92f 954Should return the octet sequence representing I<$string>. If I<$check>
955is true it should modify I<$string> in place to remove the converted
956part (i.e. the whole string unless there is an error). If an error
957occurs it should return the octet sequence for the fragment of string
958that has been converted, and modify $string in-place to remove the
959converted part leaving it starting with the problem fragment.
4edaa979 960
47bfe92f 961If check is is false then C<encode> should make a "best effort" to
962convert the string - for example by using a replacement character.
4edaa979 963
964=item -E<gt>decode($octets,$check)
965
47bfe92f 966Should return the string that I<$octets> represents. If I<$check> is
967true it should modify I<$octets> in place to remove the converted part
968(i.e. the whole sequence unless there is an error). If an error
969occurs it should return the fragment of string that has been
970converted, and modify $octets in-place to remove the converted part
4edaa979 971leaving it starting with the problem fragment.
972
47bfe92f 973If check is is false then C<decode> should make a "best effort" to
974convert the string - for example by using Unicode's "\x{FFFD}" as a
975replacement character.
4edaa979 976
977=back
978
47bfe92f 979It should be noted that the check behaviour is different from the
980outer public API. The logic is that the "unchecked" case is useful
981when encoding is part of a stream which may be reporting errors
982(e.g. STDERR). In such cases it is desirable to get everything
983through somehow without causing additional errors which obscure the
984original one. Also the encoding is best placed to know what the
985correct replacement character is, so if that is the desired behaviour
986then letting low level code do it is the most efficient.
987
988In contrast if check is true, the scheme above allows the encoding to
989do as much as it can and tell layer above how much that was. What is
990lacking at present is a mechanism to report what went wrong. The most
991likely interface will be an additional method call to the object, or
992perhaps (to avoid forcing per-stream objects on otherwise stateless
993encodings) and additional parameter.
994
995It is also highly desirable that encoding classes inherit from
996C<Encode::Encoding> as a base class. This allows that class to define
997additional behaviour for all encoding objects. For example built in
998Unicode, UCS-2 and UTF-8 classes use :
51ef4e11 999
1000 package Encode::MyEncoding;
1001 use base qw(Encode::Encoding);
1002
1003 __PACKAGE__->Define(qw(myCanonical myAlias));
1004
47bfe92f 1005To create an object with bless {Name => ...},$class, and call
1006define_encoding. They inherit their C<name> method from
1007C<Encode::Encoding>.
4edaa979 1008
1009=head2 Compiled Encodings
1010
47bfe92f 1011F<Encode.xs> provides a class C<Encode::XS> which provides the
1012interface described above. It calls a generic octet-sequence to
1013octet-sequence "engine" that is driven by tables (defined in
1014F<encengine.c>). The same engine is used for both encode and
1015decode. C<Encode:XS>'s C<encode> forces Perl's characters to their
1016UTF-8 form and then treats them as just another multibyte
1017encoding. C<Encode:XS>'s C<decode> transforms the sequence and then
1018turns the UTF-8-ness flag as that is the form that the tables are
1019defined to produce. For details of the engine see the comments in
1020F<encengine.c>.
1021
1022The tables are produced by the Perl script F<compile> (the name needs
1023to change so we can eventually install it somewhere). F<compile> can
1024currently read two formats:
4edaa979 1025
1026=over 4
1027
1028=item *.enc
1029
47bfe92f 1030This is a coined format used by Tcl. It is documented in
1031Encode/EncodeFormat.pod.
4edaa979 1032
1033=item *.ucm
1034
1035This is the semi-standard format used by IBM's ICU package.
1036
1037=back
1038
1039F<compile> can write the following forms:
1040
1041=over 4
1042
1043=item *.ucm
1044
1045See above - the F<Encode/*.ucm> files provided with the distribution have
1046been created from the original Tcl .enc files using this approach.
1047
1048=item *.c
1049
1050Produces tables as C data structures - this is used to build in encodings
1051into F<Encode.so>/F<Encode.dll>.
1052
1053=item *.xs
1054
47bfe92f 1055In theory this allows encodings to be stand-alone loadable Perl
1056extensions. The process has not yet been tested. The plan is to use
1057this approach for large East Asian encodings.
4edaa979 1058
1059=back
1060
47bfe92f 1061The set of encodings built-in to F<Encode.so>/F<Encode.dll> is
1062determined by F<Makefile.PL>. The current set is as follows:
4edaa979 1063
1064=over 4
1065
1066=item ascii and iso-8859-*
1067
1068That is all the common 8-bit "western" encodings.
1069
1070=item IBM-1047 and two other variants of EBCDIC.
1071
47bfe92f 1072These are the same variants that are supported by EBCDIC Perl as
1073"native" encodings. They are included to prove "reversibility" of
1074some constructs in EBCDIC Perl.
4edaa979 1075
1076=item symbol and dingbats as used by Tk on X11.
1077
47bfe92f 1078(The reason Encode got started was to support Perl/Tk.)
4edaa979 1079
1080=back
1081
47bfe92f 1082That set is rather ad hoc and has been driven by the needs of the
1083tests rather than the needs of typical applications. It is likely
1084to be rationalized.
4edaa979 1085
4411f3b6 1086=head1 SEE ALSO
1087
70122e76 1088L<perlunicode>, L<perlebcdic>, L<perlfunc/open>, L<PerlIO>, L<encoding>,
1089L<utf8>
1090
4411f3b6 1091
1092=cut
1093