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