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