package Encode; use strict; our $VERSION = do { my @r = (q$Revision: 1.33 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; our $DEBUG = 0; require DynaLoader; require Exporter; our @ISA = qw(Exporter DynaLoader); # Public, encouraged API is exported by default our @EXPORT = qw ( decode decode_utf8 encode encode_utf8 encodings find_encoding ); our @EXPORT_OK = qw( _utf8_off _utf8_on define_encoding from_to is_16bit is_8bit is_utf8 resolve_alias utf8_downgrade utf8_upgrade ); bootstrap Encode (); # Documentation moved after __END__ for speed - NI-S use Carp; our $ON_EBCDIC = (ord("A") == 193); use Encode::Alias; # Make a %Encoding package variable to allow a certain amount of cheating our %Encoding; use Encode::Config; sub encodings { my $class = shift; my @modules = (@_ and $_[0] eq ":all") ? values %ExtModule : @_; for my $mod (@modules){ $mod =~ s,::,/,g or $mod = "Encode/$mod"; $mod .= '.pm'; $DEBUG and warn "about to require $mod;"; eval { require $mod; }; } my %modules = map {$_ => 1} @modules; return sort { lc $a cmp lc $b } grep {!/^(?:Internal|Unicode)$/o} keys %Encoding; } sub define_encoding { my $obj = shift; my $name = shift; $Encoding{$name} = $obj; my $lc = lc($name); define_alias($lc => $obj) unless $lc eq $name; while (@_) { my $alias = shift; define_alias($alias,$obj); } return $obj; } sub getEncoding { my ($class,$name,$skip_external) = @_; my $enc; if (ref($name) && $name->can('new_sequence')) { return $name; } my $lc = lc $name; if (exists $Encoding{$name}) { return $Encoding{$name}; } if (exists $Encoding{$lc}) { return $Encoding{$lc}; } my $oc = $class->find_alias($name); return $oc if defined $oc; $oc = $class->find_alias($lc) if $lc ne $name; return $oc if defined $oc; unless ($skip_external) { if (my $mod = $ExtModule{$name} || $ExtModule{$lc}){ $mod =~ s,::,/,g ; $mod .= '.pm'; eval{ require $mod; }; return $Encoding{$name} if exists $Encoding{$name}; } } return; } sub find_encoding { my ($name,$skip_external) = @_; return __PACKAGE__->getEncoding($name,$skip_external); } sub resolve_alias { my $obj = find_encoding(shift); defined $obj and return $obj->name; return; } sub encode { my ($name,$string,$check) = @_; my $enc = find_encoding($name); croak("Unknown encoding '$name'") unless defined $enc; my $octets = $enc->encode($string,$check); return undef if ($check && length($string)); return $octets; } sub decode { my ($name,$octets,$check) = @_; my $enc = find_encoding($name); croak("Unknown encoding '$name'") unless defined $enc; my $string = $enc->decode($octets,$check); $_[1] = $octets if $check; return $string; } sub from_to { my ($string,$from,$to,$check) = @_; my $f = find_encoding($from); croak("Unknown encoding '$from'") unless defined $f; my $t = find_encoding($to); croak("Unknown encoding '$to'") unless defined $t; my $uni = $f->decode($string,$check); return undef if ($check && length($string)); $string = $t->encode($uni,$check); return undef if ($check && length($uni)); return defined($_[0] = $string) ? length($string) : undef ; } sub encode_utf8 { my ($str) = @_; utf8::encode($str); return $str; } sub decode_utf8 { my ($str) = @_; return undef unless utf8::decode($str); return $str; } predefine_encodings(); # # This is to restore %Encoding if really needed; # sub predefine_encodings{ if ($ON_EBCDIC) { # was in Encode::UTF_EBCDIC package Encode::UTF_EBCDIC; *name = sub{ shift->{'Name'} }; *new_sequence = sub{ return $_[0] }; *decode = sub{ my ($obj,$str,$chk) = @_; my $res = ''; for (my $i = 0; $i < length($str); $i++) { $res .= chr(utf8::unicode_to_native(ord(substr($str,$i,1)))); } $_[1] = '' if $chk; return $res; }; *encode = sub{ my ($obj,$str,$chk) = @_; my $res = ''; for (my $i = 0; $i < length($str); $i++) { $res .= chr(utf8::native_to_unicode(ord(substr($str,$i,1)))); } $_[1] = '' if $chk; return $res; }; $Encode::Encoding{Internal} = bless {Name => "UTF_EBCDIC"} => "Encode::UTF_EBCDIC"; } else { # was in Encode::UTF_EBCDIC package Encode::Internal; *name = sub{ shift->{'Name'} }; *new_sequence = sub{ return $_[0] }; *decode = sub{ my ($obj,$str,$chk) = @_; utf8::upgrade($str); $_[1] = '' if $chk; return $str; }; *encode = \&decode; $Encode::Encoding{Unicode} = bless {Name => "Internal"} => "Encode::Internal"; } { # was in Encode::utf8 package Encode::utf8; *name = sub{ shift->{'Name'} }; *new_sequence = sub{ return $_[0] }; *decode = sub{ my ($obj,$octets,$chk) = @_; my $str = Encode::decode_utf8($octets); if (defined $str) { $_[1] = '' if $chk; return $str; } return undef; }; *encode = sub { my ($obj,$string,$chk) = @_; my $octets = Encode::encode_utf8($string); $_[1] = '' if $chk; return $octets; }; $Encode::Encoding{utf8} = bless {Name => "utf8"} => "Encode::utf8"; } # do externals if necessary require File::Basename; require File::Spec; for my $ext (qw()){ my $pm = File::Spec->catfile(File::Basename::dirname($INC{'Encode.pm'}), "Encode", "$ext.pm"); do $pm; } } require Encode::Encoding; require Encode::XS; 1; __END__ =head1 NAME Encode - character encodings =head1 SYNOPSIS use Encode; =head2 Table of Contents Encode consists of a collection of modules which details are too big to fit in one document. This POD itself explains the top-level APIs and general topics at a glance. For other topics and more details, see the PODs below; Name Description -------------------------------------------------------- Encode::Alias Alias defintions to encodings Encode::Encoding Encode Implementation Base Class Encode::Supported List of Supported Encodings Encode::CN Simplified Chinese Encodings Encode::JP Japanese Encodings Encode::KR Korean Encodings Encode::TW Traditional Chinese Encodings -------------------------------------------------------- =head1 DESCRIPTION The C module provides the interfaces between Perl's strings and the rest of the system. Perl strings are sequences of B. The repertoire of characters that Perl can represent is at least that defined by the Unicode Consortium. On most platforms the ordinal values of the characters (as returned by C) is the "Unicode codepoint" for the character (the exceptions are those platforms where the legacy encoding is some variant of EBCDIC rather than a super-set of ASCII - see L). Traditionally computer data has been moved around in 8-bit chunks often called "bytes". These chunks are also known as "octets" in networking standards. Perl is widely used to manipulate data of many types - not only strings of characters representing human or computer languages but also "binary" data being the machines representation of numbers, pixels in an image - or just about anything. When Perl is processing "binary data" the programmer wants Perl to process "sequences of bytes". This is not a problem for Perl - as a byte has 256 possible values it easily fits in Perl's much larger "logical character". =head2 TERMINOLOGY =over 4 =item * I: a character in the range 0..(2**32-1) (or more). (What Perl's strings are made of.) =item * I: a character in the range 0..255 (A special case of a Perl character.) =item * I: 8 bits of data, with ordinal values 0..255 (Term for bytes passed to or from a non-Perl context, e.g. disk file.) =back The marker [INTERNAL] marks Internal Implementation Details, in general meant only for those who think they know what they are doing, and such details may change in future releases. =head1 PERL ENCODING API =over 4 =item $octets = encode(ENCODING, $string[, CHECK]) Encodes string from Perl's internal form into I and returns a sequence of octets. ENCODING can be either a canonical name or alias. For encoding names and aliases, see L. For CHECK see L. For example to convert (internally UTF-8 encoded) Unicode string to iso-8859-1 (also known as Latin1), $octets = encode("iso-8859-1", $unicode); =item $string = decode(ENCODING, $octets[, CHECK]) Decode sequence of octets assumed to be in I into Perl's internal form and returns the resulting string. as in encode(), ENCODING can be either a canonical name or alias. For encoding names and aliases, see L. For CHECK see L. For example to convert ISO-8859-1 data to UTF-8: $utf8 = decode("iso-8859-1", $latin1); =item [$length =] from_to($string, FROM_ENCODING, TO_ENCODING [,CHECK]) Convert B the data between two encodings. How did the data in $string originally get to be in FROM_ENCODING? Either using encode() or through PerlIO: See L. For encoding names and aliases, see L. For CHECK see L. For example to convert ISO-8859-1 data to UTF-8: from_to($data, "iso-8859-1", "utf-8"); and to convert it back: from_to($data, "utf-8", "iso-8859-1"); Note that because the conversion happens in place, the data to be converted cannot be a string constant, it must be a scalar variable. from_to() return the length of the converted string on success, undef otherwise. =back =head2 UTF-8 / utf8 The Unicode consortium defines the UTF-8 standard as a way of encoding the entire Unicode repertoire as sequences of octets. This encoding is expected to become very widespread. Perl can use this form internally to represent strings, so conversions to and from this form are particularly efficient (as octets in memory do not have to change, just the meta-data that tells Perl how to treat them). =over 4 =item $octets = encode_utf8($string); The characters that comprise string are encoded in Perl's superset of UTF-8 and the resulting octets returned as a sequence of bytes. All possible characters have a UTF-8 representation so this function cannot fail. =item $string = decode_utf8($octets [, CHECK]); The sequence of octets represented by $octets is decoded from UTF-8 into a sequence of logical characters. Not all sequences of octets form valid UTF-8 encodings, so it is possible for this call to fail. For CHECK see L. =back =head2 Listing available encodings use Encode; @list = Encode->encodings(); Returns a list of the canonical names of the available encodings that are loaded. To get a list of all available encodings including the ones that are not loaded yet, say @all_encodings = Encode->encodings(":all"); Or you can give the name of specific module. @with_jp = Encode->encodings("Encode::JP"); When "::" is not in the name, "Encode::" is assumed. @ebcdic = Encode->encodings("EBCDIC"); To find which encodings are supported by this package in details, see L. =head2 Defining Aliases To add new alias to a given encoding, Use; use Encode; use Encode::Alias; define_alias(newName => ENCODING); After that, newName can be used as an alias for ENCODING. ENCODING may be either the name of an encoding or an I But before you do so, make sure the alias is nonexistent with C, which returns the canonical name thereof. i.e. Encode::resolve_alias("latin1") eq "iso-8859-1" # true Encode::resolve_alias("iso-8859-12") # false; nonexistent Encode::resolve_alias($name) eq $name # true if $name is canonical This resolve_alias() does not need C and is exported via C. See L on details. =head1 Encoding and IO It is very common to want to do encoding transformations when reading or writing files, network connections, pipes etc. If Perl is configured to use the new 'perlio' IO system then C provides a "layer" (See L) which can transform data as it is read or written. Here is how the blind poet would modernise the encoding: use Encode; open(my $iliad,'<:encoding(iso-8859-7)','iliad.greek'); open(my $utf8,'>:utf8','iliad.utf8'); my @epic = <$iliad>; print $utf8 @epic; close($utf8); close($illiad); In addition the new IO system can also be configured to read/write UTF-8 encoded characters (as noted above this is efficient): open(my $fh,'>:utf8','anything'); print $fh "Any \x{0021} string \N{SMILEY FACE}\n"; Either of the above forms of "layer" specifications can be made the default for a lexical scope with the C pragma. See L. Once a handle is open is layers can be altered using C. Without any such configuration, or if Perl itself is built using system's own IO, then write operations assume that file handle accepts only I and will C if a character larger than 255 is written to the handle. When reading, each octet from the handle becomes a byte-in-a-character. Note that this default is the same behaviour as bytes-only languages (including Perl before v5.6) would have, and is sufficient to handle native 8-bit encodings e.g. iso-8859-1, EBCDIC etc. and any legacy mechanisms for handling other encodings and binary data. In other cases it is the programs responsibility to transform characters into bytes using the API above before doing writes, and to transform the bytes read from a handle into characters before doing "character operations" (e.g. C, C, ...). You can also use PerlIO to convert larger amounts of data you don't want to bring into memory. For example to convert between ISO-8859-1 (Latin 1) and UTF-8 (or UTF-EBCDIC in EBCDIC machines): open(F, "<:encoding(iso-8859-1)", "data.txt") or die $!; open(G, ">:utf8", "data.utf") or die $!; while () { print G } # Could also do "print G " but that would pull # the whole file into memory just to write it out again. More examples: open(my $f, "<:encoding(cp1252)") open(my $g, ">:encoding(iso-8859-2)") open(my $h, ">:encoding(latin9)") # iso-8859-15 See L for more information. See also L for how to change the default encoding of the data in your script. =head1 Handling Malformed Data If I is not set, (en|de)code will put I in place of the malformed character. for UCM-based encodings, EsubcharE will be used. For Unicode, \xFFFD is used. If the data is supposed to be UTF-8, an optional lexical warning (category utf8) is given. If I is true but not a code reference, dies with an error message. In future you will be able to use a code reference to a callback function for the value of I but its API is still undecided. =head1 Defining Encodings To define a new encoding, use: use Encode qw(define_alias); define_encoding($object, 'canonicalName' [, alias...]); I will be associated with I<$object>. The object should provide the interface described in L If more than two arguments are provided then additional arguments are taken as aliases for I<$object> as for C. See L for more details. =head1 Messing with Perl's Internals The following API uses parts of Perl's internals in the current implementation. As such they are efficient, but may change. =over 4 =item is_utf8(STRING [, CHECK]) [INTERNAL] Test whether the UTF-8 flag is turned on in the STRING. If CHECK is true, also checks the data in STRING for being well-formed UTF-8. Returns true if successful, false otherwise. =item _utf8_on(STRING) [INTERNAL] Turn on the UTF-8 flag in STRING. The data in STRING is B checked for being well-formed UTF-8. Do not use unless you B that the STRING is well-formed UTF-8. Returns the previous state of the UTF-8 flag (so please don't test the return value as I success or failure), or C if STRING is not a string. =item _utf8_off(STRING) [INTERNAL] Turn off the UTF-8 flag in STRING. Do not use frivolously. Returns the previous state of the UTF-8 flag (so please don't test the return value as I success or failure), or C if STRING is not a string. =back =head1 SEE ALSO L, L, L, L, L, L, L, L, the Perl Unicode Mailing List Eperl-unicode@perl.orgE =cut