This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add a test for for PerlIO ":encoding(...)" layer.
[perl5.git] / ext / Encode / Encode.pm
CommitLineData
2c674647 1package Encode;
51ef4e11 2use strict;
2c674647 3
b8a524e9 4our $VERSION = '0.02';
2c674647
JH
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
NIS
13 encode
14 decode
15 encode_utf8
16 decode_utf8
17 find_encoding
51ef4e11 18 encodings
4411f3b6
NIS
19);
20
51ef4e11 21our @EXPORT_OK =
2c674647 22 qw(
51ef4e11
NIS
23 define_encoding
24 define_alias
2c674647
JH
25 from_to
26 is_utf8
4411f3b6
NIS
27 is_8bit
28 is_16bit
a12c0f56
NIS
29 utf8_upgrade
30 utf8_downgrade
4411f3b6
NIS
31 _utf8_on
32 _utf8_off
2c674647
JH
33 );
34
35bootstrap Encode ();
36
4411f3b6 37# Documentation moved after __END__ for speed - NI-S
2c674647 38
bf230f3d
NIS
39use Carp;
40
51ef4e11
NIS
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
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
5345d506 48
656753f8
NIS
49sub encodings
50{
51 my ($class) = @_;
51ef4e11
NIS
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
NIS
63 my $alias = $alias[$i];
64 my $val = $alias[$i+1];
65 my $new;
66 if (ref($alias) eq 'Regexp' && $_ =~ $alias)
5345d506 67 {
51ef4e11
NIS
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
NIS
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
NIS
84 $alias{$_} = $enc;
85 last;
5345d506
NIS
86 }
87 }
656753f8 88 }
5345d506 89 }
51ef4e11 90 return $alias{$_};
5345d506
NIS
91}
92
51ef4e11 93sub define_alias
5345d506 94{
51ef4e11 95 while (@_)
5345d506 96 {
51ef4e11
NIS
97 my ($alias,$name) = splice(@_,0,2);
98 push(@alias, $alias => $name);
656753f8 99 }
51ef4e11
NIS
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
JH
105# At least HP-UX has these.
106define_alias( qr/^iso8859(\d+)$/i => '"iso-8859-$1"' );
107
58d53262
JH
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
NIS
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
JH
123# At least AIX has IBM-NNN (surprisingly...) instead of cpNNN.
124define_alias( qr/^ibm[-_]?(\d\d\d\d?)$/i => '"cp$1"');
125
58d53262
JH
126# Standardize on the dashed versions.
127define_alias( qr/^utf8$/i => 'utf-8' );
7faf300d 128define_alias( qr/^koi8r$/i => 'koi8-r' );
51ef4e11 129
58d53262
JH
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
NIS
135# Map white space and _ to '-'
136define_alias( qr/^(\S+)[\s_]+(.*)$/i => '"$1-$2"' );
137
51ef4e11
NIS
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
NIS
147 my $alias = shift;
148 define_alias($alias,$obj);
656753f8 149 }
51ef4e11 150 return $obj;
656753f8
NIS
151}
152
656753f8
NIS
153sub getEncoding
154{
155 my ($class,$name) = @_;
5345d506 156 my $enc;
0f43fc90
NIS
157 if (ref($name) && $name->can('new_sequence'))
158 {
159 return $name;
160 }
51ef4e11 161 if (exists $encoding{$name})
656753f8 162 {
51ef4e11
NIS
163 return $encoding{$name};
164 }
165 else
166 {
167 return $class->findAlias($name);
656753f8 168 }
656753f8
NIS
169}
170
4411f3b6
NIS
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
NIS
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
NIS
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
NIS
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
NIS
215 return $str;
216}
217
218sub decode_utf8
219{
220 my ($str) = @_;
1b026014 221 return undef unless utf8::decode($str);
4411f3b6
NIS
222 return $str;
223}
224
50d26985
NIS
225package Encode::Encoding;
226# Base class for classes which implement encodings
4edaa979 227
51ef4e11
NIS
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
NIS
240sub toUnicode { shift->decode(@_) }
241sub fromUnicode { shift->encode(@_) }
242
243sub new_sequence { return $_[0] }
50d26985
NIS
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
NIS
254__PACKAGE__->Define('Internal');
255
256Encode::define_alias( 'Unicode' => 'Internal' ) if ord('A') == 65;
656753f8 257
50d26985 258sub decode
a12c0f56
NIS
259{
260 my ($obj,$str,$chk) = @_;
1b026014 261 utf8::upgrade($str);
a12c0f56
NIS
262 $_[1] = '' if $chk;
263 return $str;
264}
656753f8 265
50d26985 266*encode = \&decode;
656753f8 267
5ad8ef52
NIS
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
NIS
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
NIS
307{
308 my ($obj,$octets,$chk) = @_;
2a936312 309 my $str = Encode::decode_utf8($octets);
4411f3b6
NIS
310 if (defined $str)
311 {
312 $_[1] = '' if $chk;
313 return $str;
314 }
315 return undef;
316}
317
50d26985 318sub encode
4411f3b6
NIS
319{
320 my ($obj,$string,$chk) = @_;
2a936312 321 my $octets = Encode::encode_utf8($string);
4411f3b6
NIS
322 $_[1] = '' if $chk;
323 return $octets;
4411f3b6
NIS
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
NIS
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
NIS
340 $uni .= chr($code);
341 }
342 $_[1] = $str if $chk;
8040349a 343 utf8::upgrade($uni);
87714904
NIS
344 return $uni;
345}
346
50d26985 347sub encode
87714904
NIS
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
NIS
363 return $str;
364}
365
4411f3b6
NIS
366# switch back to Encode package in case we ever add AutoLoader
367package Encode;
368
656753f8
NIS
3691;
370
2a936312
NIS
371__END__
372
4411f3b6
NIS
373=head1 NAME
374
375Encode - character encodings
376
377=head1 SYNOPSIS
378
379 use Encode;
380
381=head1 DESCRIPTION
382
47bfe92f
JH
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
NIS
385
386The repertoire of characters that Perl can represent is at least that
47bfe92f
JH
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
NIS
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
JH
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
NIS
403
404=head2 TERMINOLOGY
405
4ac9195f 406=over 4
4411f3b6
NIS
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
NIS
412
413=item *
414
415I<byte>: a character in the range 0..255
47bfe92f 416(A special case of a Perl character.)
4411f3b6
NIS
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
NIS
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
NIS
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
JH
481very complex to process (and have state). No escape encodings are
482implemented for Perl yet.
4411f3b6
NIS
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
JH
494Encoding names are strings with characters taken from a restricted
495repertoire. See L</"Encoding Names">.
4411f3b6
NIS
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
JH
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
NIS
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
NIS
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
JH
534Encodes string from Perl's internal form into I<ENCODING> and returns
535a sequence of octets. For CHECK see L</"Handling Malformed Data">.
4411f3b6
NIS
536
537=item *
538
539 $string = decode(ENCODING, $bytes[, CHECK])
540
47bfe92f
JH
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
JH
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
JH
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
JH
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
NIS
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
JH
570be UTF-8, an optional lexical warning (category utf8) is given. If
571CHECK is true but not a code reference, dies.
4411f3b6 572
47bfe92f
JH
573It would desirable to have a way to indicate that transform should use
574the encodings "replacement character" - no such mechanism is defined yet.
4411f3b6
NIS
575
576It is also planned to allow I<CHECK> to be a code reference.
577
47bfe92f
JH
578This is not yet implemented as there are design issues with what its
579arguments should be and how it returns its results.
4411f3b6
NIS
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
JH
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
NIS
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
JH
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
NIS
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
JH
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
NIS
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
NIS
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
JH
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
NIS
652
653=back
654
655=head2 Other Encodings of Unicode
656
47bfe92f
JH
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
JH
662happens to be the name used by that representation when used with X11
663fonts.
4411f3b6
NIS
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
JH
667to transfer strings in this form (e.g. to write them to a file) would
668need to
4411f3b6
NIS
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
JH
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
NIS
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
JH
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
NIS
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
JH
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
NIS
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
JH
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
NIS
721
722=back
723
724=head2 Defining Encodings
725
e9692b5b
JH
726 use Encode qw(define_alias);
727 define_encoding( $object, 'canonicalName' [,alias...]);
51ef4e11 728
47bfe92f
JH
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
NIS
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
NIS
739C<Encode> provides a "layer" (See L<perliol>) which can transform
740data as it is read or written.
741
8e86646e
JH
742Here is how the blind poet would modernise the encoding:
743
42234700 744 use Encode;
8e86646e
JH
745 open(my $iliad,'<:encoding(iso-8859-7)','iliad.greek');
746 open(my $utf8,'>:utf8','iliad.utf8');
747 my @epic = <$iliad>;
748 print $utf8 @epic;
749 close($utf8);
750 close($illiad);
4411f3b6
NIS
751
752In addition the new IO system can also be configured to read/write
753UTF-8 encoded characters (as noted above this is efficient):
754
e9692b5b
JH
755 open(my $fh,'>:utf8','anything');
756 print $fh "Any \x{0021} string \N{SMILEY FACE}\n";
4411f3b6
NIS
757
758Either of the above forms of "layer" specifications can be made the default
759for a lexical scope with the C<use open ...> pragma. See L<open>.
760
761Once a handle is open is layers can be altered using C<binmode>.
762
47bfe92f 763Without any such configuration, or if Perl itself is built using
4411f3b6
NIS
764system's own IO, then write operations assume that file handle accepts
765only I<bytes> and will C<die> if a character larger than 255 is
766written to the handle. When reading, each octet from the handle
767becomes a byte-in-a-character. Note that this default is the same
47bfe92f
JH
768behaviour as bytes-only languages (including Perl before v5.6) would
769have, and is sufficient to handle native 8-bit encodings
770e.g. iso-8859-1, EBCDIC etc. and any legacy mechanisms for handling
771other encodings and binary data.
772
773In other cases it is the programs responsibility to transform
774characters into bytes using the API above before doing writes, and to
775transform the bytes read from a handle into characters before doing
776"character operations" (e.g. C<lc>, C</\W+/>, ...).
777
47bfe92f
JH
778You can also use PerlIO to convert larger amounts of data you don't
779want to bring into memory. For example to convert between ISO 8859-1
780(Latin 1) and UTF-8 (or UTF-EBCDIC in EBCDIC machines):
781
e9692b5b
JH
782 open(F, "<:encoding(iso-8859-1)", "data.txt") or die $!;
783 open(G, ">:utf8", "data.utf") or die $!;
784 while (<F>) { print G }
785
786 # Could also do "print G <F>" but that would pull
787 # the whole file into memory just to write it out again.
788
789More examples:
47bfe92f 790
e9692b5b
JH
791 open(my $f, "<:encoding(cp1252)")
792 open(my $g, ">:encoding(iso-8859-2)")
793 open(my $h, ">:encoding(latin9)") # iso-8859-15
47bfe92f
JH
794
795See L<PerlIO> for more information.
4411f3b6
NIS
796
797=head1 Encoding How to ...
798
799To do:
800
801=over 4
802
803=item * IO with mixed content (faking iso-2020-*)
804
805=item * MIME's Content-Length:
806
807=item * UTF-8 strings in binary data.
808
47bfe92f 809=item * Perl/Encode wrappers on non-Unicode XS modules.
4411f3b6
NIS
810
811=back
812
813=head1 Messing with Perl's Internals
814
47bfe92f
JH
815The following API uses parts of Perl's internals in the current
816implementation. As such they are efficient, but may change.
4411f3b6
NIS
817
818=over 4
819
4411f3b6
NIS
820=item * is_utf8(STRING [, CHECK])
821
822[INTERNAL] Test whether the UTF-8 flag is turned on in the STRING.
47bfe92f
JH
823If CHECK is true, also checks the data in STRING for being well-formed
824UTF-8. Returns true if successful, false otherwise.
4411f3b6
NIS
825
826=item * valid_utf8(STRING)
827
47bfe92f
JH
828[INTERNAL] Test whether STRING is in a consistent state. Will return
829true if string is held as bytes, or is well-formed UTF-8 and has the
830UTF-8 flag on. Main reason for this routine is to allow Perl's
831testsuite to check that operations have left strings in a consistent
832state.
4411f3b6
NIS
833
834=item *
835
836 _utf8_on(STRING)
837
838[INTERNAL] Turn on the UTF-8 flag in STRING. The data in STRING is
839B<not> checked for being well-formed UTF-8. Do not use unless you
840B<know> that the STRING is well-formed UTF-8. Returns the previous
841state of the UTF-8 flag (so please don't test the return value as
842I<not> success or failure), or C<undef> if STRING is not a string.
843
844=item *
845
846 _utf8_off(STRING)
847
848[INTERNAL] Turn off the UTF-8 flag in STRING. Do not use frivolously.
849Returns the previous state of the UTF-8 flag (so please don't test the
850return value as I<not> success or failure), or C<undef> if STRING is
851not a string.
852
853=back
854
4edaa979
NIS
855=head1 IMPLEMENTATION CLASSES
856
857As mentioned above encodings are (in the current implementation at least)
858defined by objects. The mapping of encoding name to object is via the
51ef4e11 859C<%encodings> hash.
4edaa979
NIS
860
861The values of the hash can currently be either strings or objects.
862The string form may go away in the future. The string form occurs
863when C<encodings()> has scanned C<@INC> for loadable encodings but has
864not actually loaded the encoding in question. This is because the
47bfe92f 865current "loading" process is all Perl and a bit slow.
4edaa979 866
47bfe92f
JH
867Once an encoding is loaded then value of the hash is object which
868implements the encoding. The object should provide the following
869interface:
4edaa979
NIS
870
871=over 4
872
873=item -E<gt>name
874
875Should return the string representing the canonical name of the encoding.
876
877=item -E<gt>new_sequence
878
47bfe92f
JH
879This is a placeholder for encodings with state. It should return an
880object which implements this interface, all current implementations
881return the original object.
4edaa979
NIS
882
883=item -E<gt>encode($string,$check)
884
47bfe92f
JH
885Should return the octet sequence representing I<$string>. If I<$check>
886is true it should modify I<$string> in place to remove the converted
887part (i.e. the whole string unless there is an error). If an error
888occurs it should return the octet sequence for the fragment of string
889that has been converted, and modify $string in-place to remove the
890converted part leaving it starting with the problem fragment.
4edaa979 891
47bfe92f
JH
892If check is is false then C<encode> should make a "best effort" to
893convert the string - for example by using a replacement character.
4edaa979
NIS
894
895=item -E<gt>decode($octets,$check)
896
47bfe92f
JH
897Should return the string that I<$octets> represents. If I<$check> is
898true it should modify I<$octets> in place to remove the converted part
899(i.e. the whole sequence unless there is an error). If an error
900occurs it should return the fragment of string that has been
901converted, and modify $octets in-place to remove the converted part
4edaa979
NIS
902leaving it starting with the problem fragment.
903
47bfe92f
JH
904If check is is false then C<decode> should make a "best effort" to
905convert the string - for example by using Unicode's "\x{FFFD}" as a
906replacement character.
4edaa979
NIS
907
908=back
909
47bfe92f
JH
910It should be noted that the check behaviour is different from the
911outer public API. The logic is that the "unchecked" case is useful
912when encoding is part of a stream which may be reporting errors
913(e.g. STDERR). In such cases it is desirable to get everything
914through somehow without causing additional errors which obscure the
915original one. Also the encoding is best placed to know what the
916correct replacement character is, so if that is the desired behaviour
917then letting low level code do it is the most efficient.
918
919In contrast if check is true, the scheme above allows the encoding to
920do as much as it can and tell layer above how much that was. What is
921lacking at present is a mechanism to report what went wrong. The most
922likely interface will be an additional method call to the object, or
923perhaps (to avoid forcing per-stream objects on otherwise stateless
924encodings) and additional parameter.
925
926It is also highly desirable that encoding classes inherit from
927C<Encode::Encoding> as a base class. This allows that class to define
928additional behaviour for all encoding objects. For example built in
929Unicode, UCS-2 and UTF-8 classes use :
51ef4e11
NIS
930
931 package Encode::MyEncoding;
932 use base qw(Encode::Encoding);
933
934 __PACKAGE__->Define(qw(myCanonical myAlias));
935
47bfe92f
JH
936To create an object with bless {Name => ...},$class, and call
937define_encoding. They inherit their C<name> method from
938C<Encode::Encoding>.
4edaa979
NIS
939
940=head2 Compiled Encodings
941
47bfe92f
JH
942F<Encode.xs> provides a class C<Encode::XS> which provides the
943interface described above. It calls a generic octet-sequence to
944octet-sequence "engine" that is driven by tables (defined in
945F<encengine.c>). The same engine is used for both encode and
946decode. C<Encode:XS>'s C<encode> forces Perl's characters to their
947UTF-8 form and then treats them as just another multibyte
948encoding. C<Encode:XS>'s C<decode> transforms the sequence and then
949turns the UTF-8-ness flag as that is the form that the tables are
950defined to produce. For details of the engine see the comments in
951F<encengine.c>.
952
953The tables are produced by the Perl script F<compile> (the name needs
954to change so we can eventually install it somewhere). F<compile> can
955currently read two formats:
4edaa979
NIS
956
957=over 4
958
959=item *.enc
960
47bfe92f
JH
961This is a coined format used by Tcl. It is documented in
962Encode/EncodeFormat.pod.
4edaa979
NIS
963
964=item *.ucm
965
966This is the semi-standard format used by IBM's ICU package.
967
968=back
969
970F<compile> can write the following forms:
971
972=over 4
973
974=item *.ucm
975
976See above - the F<Encode/*.ucm> files provided with the distribution have
977been created from the original Tcl .enc files using this approach.
978
979=item *.c
980
981Produces tables as C data structures - this is used to build in encodings
982into F<Encode.so>/F<Encode.dll>.
983
984=item *.xs
985
47bfe92f
JH
986In theory this allows encodings to be stand-alone loadable Perl
987extensions. The process has not yet been tested. The plan is to use
988this approach for large East Asian encodings.
4edaa979
NIS
989
990=back
991
47bfe92f
JH
992The set of encodings built-in to F<Encode.so>/F<Encode.dll> is
993determined by F<Makefile.PL>. The current set is as follows:
4edaa979
NIS
994
995=over 4
996
997=item ascii and iso-8859-*
998
999That is all the common 8-bit "western" encodings.
1000
1001=item IBM-1047 and two other variants of EBCDIC.
1002
47bfe92f
JH
1003These are the same variants that are supported by EBCDIC Perl as
1004"native" encodings. They are included to prove "reversibility" of
1005some constructs in EBCDIC Perl.
4edaa979
NIS
1006
1007=item symbol and dingbats as used by Tk on X11.
1008
47bfe92f 1009(The reason Encode got started was to support Perl/Tk.)
4edaa979
NIS
1010
1011=back
1012
47bfe92f
JH
1013That set is rather ad hoc and has been driven by the needs of the
1014tests rather than the needs of typical applications. It is likely
1015to be rationalized.
4edaa979 1016
4411f3b6
NIS
1017=head1 SEE ALSO
1018
47bfe92f 1019L<perlunicode>, L<perlebcdic>, L<perlfunc/open>, L<PerlIO>
4411f3b6
NIS
1020
1021=cut
1022