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