Upgrade to Encode 1.33, from Dan Kogai.
[p5sagit/p5-mst-13.2.git] / ext / Encode / Encode.pm
index 42bb24e..b1e54e8 100644 (file)
@@ -1,6 +1,6 @@
 package Encode;
 use strict;
-our $VERSION = do { my @r = (q$Revision: 0.99 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+our $VERSION = do { my @r = (q$Revision: 1.33 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
 our $DEBUG = 0;
 
 require DynaLoader;
@@ -10,25 +10,26 @@ our @ISA = qw(Exporter DynaLoader);
 
 # Public, encouraged API is exported by default
 our @EXPORT = qw (
-  encode
   decode
-  encode_utf8
   decode_utf8
-  find_encoding
+  encode
+  encode_utf8
   encodings
+  find_encoding
 );
 
 our @EXPORT_OK =
     qw(
+       _utf8_off
+       _utf8_on
        define_encoding
        from_to
-       is_utf8
-       is_8bit
        is_16bit
-       utf8_upgrade
+       is_8bit
+       is_utf8
+       resolve_alias
        utf8_downgrade
-       _utf8_on
-       _utf8_off
+       utf8_upgrade
       );
 
 bootstrap Encode ();
@@ -38,80 +39,27 @@ bootstrap Encode ();
 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;
-
-our %ExtModule =
-    (
-     viscii             => 'Encode/Byte.pm',
-     'koi8-r'           => 'Encode/Byte.pm',
-     cp1047             => 'Encode/EBCDIC.pm',
-     cp37               => 'Encode/EBCDIC.pm',
-     'posix-bc'         => 'Encode/EBCDIC.pm',
-     symbol             => 'Encode/Symbol.pm',
-     dingbats           => 'Encode/Symbol.pm',
-    );
-
-for my $k (2..11,13..16){
-    $ExtModule{"iso-8859-$k"} = 'Encode/Byte.pm';
-}
-
-for my $k (1250..1258){
-    $ExtModule{"cp$k"} = 'Encode/Byte.pm';
-}
-
-unless ($ON_EBCDIC) { # CJK added to autoload unless EBCDIC env
-%ExtModule =(
-            %ExtModule,
-            'euc-cn'           => 'Encode/CN.pm',
-            gb2312             => 'Encode/CN.pm',
-            gb12345            => 'Encode/CN.pm',
-            gbk                => 'Encode/CN.pm',
-            cp936              => 'Encode/CN.pm',
-            'iso-ir-165'       => 'Encode/CN.pm',
-            'euc-jp'           => 'Encode/JP.pm',
-            'iso-2022-jp'      => 'Encode/JP.pm',
-            'iso-2022-jp-1'    => 'Encode/JP.pm',
-            '7bit-jis'         => 'Encode/JP.pm',
-            shiftjis           => 'Encode/JP.pm',
-            macjapan           => 'Encode/JP.pm',
-            cp932              => 'Encode/JP.pm',
-            'euc-kr'           => 'Encode/KR.pm',
-            ksc5601            => 'Encode/KR.pm',
-            cp949              => 'Encode/KR.pm',
-            big5               => 'Encode/TW.pm',
-            'big5-hkscs'       => 'Encode/TW.pm',
-            cp950              => 'Encode/TW.pm',
-            gb18030            => 'Encode/HanExtra.pm',
-            big5plus           => 'Encode/HanExtra.pm',
-            'euc-tw'           => 'Encode/HanExtra.pm',
-            );
-}
-
-for my $k (qw(centeuro croatian cyrillic dingbats greek
-             iceland roman rumanian sami 
-             thai turkish  ukraine))
-{
-    $ExtModule{"mac$k"} = 'Encode/Byte.pm';
-}
-
+use Encode::Config;
 
 sub encodings
 {
     my $class = shift;
     my @modules = (@_ and $_[0] eq ":all") ? values %ExtModule : @_;
-    for my $m (@modules)
-    {
-       $DEBUG and warn "about to require $m;";
-       eval { require $m; };
+    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
-       map({$_->[0]} 
-           sort({$a->[1] cmp $b->[1]}
-                map({[$_, lc $_]} 
-                    grep({ $_ ne 'Internal' }  keys %Encoding))));
+       sort { lc $a cmp lc $b }
+             grep {!/^(?:Internal|Unicode)$/o} keys %Encoding;
 }
 
 sub define_encoding
@@ -153,12 +101,14 @@ sub getEncoding
     $oc = $class->find_alias($lc) if $lc ne $name;
     return $oc if defined $oc;
 
-    if (!$skip_external and exists $ExtModule{$lc})
+    unless ($skip_external)
     {
-       eval{ require $ExtModule{$lc}; };
-       return $Encoding{$name} if exists $Encoding{$name};
+       if (my $mod = $ExtModule{$name} || $ExtModule{$lc}){
+           $mod =~ s,::,/,g ; $mod .= '.pm';
+           eval{ require $mod; };
+           return $Encoding{$name} if exists $Encoding{$name};
+       }
     }
-
     return;
 }
 
@@ -168,6 +118,12 @@ sub find_encoding
     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) = @_;
@@ -197,15 +153,15 @@ sub from_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);
+    $string =  $t->encode($uni,$check);
     return undef if ($check && length($uni));
-    return length($_[0] = $string);
+    return defined($_[0] = $string) ? length($string) : undef ;
 }
 
 sub encode_utf8
 {
     my ($str) = @_;
-  utf8::encode($str);
+    utf8::encode($str);
     return $str;
 }
 
@@ -216,13 +172,91 @@ sub decode_utf8
     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;
-require Encode::Internal;
-require Encode::Unicode;
-require Encode::utf8;
-require Encode::10646_1;
-require Encode::ucs2_le;
 
 1;
 
@@ -236,46 +270,110 @@ Encode - character encodings
 
     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<Encode> module provides the interfaces between Perl's strings
-and the rest of the system.  Perl strings are sequences of B<characters>.
+and the rest of the system.  Perl strings are sequences of
+B<characters>.
+
+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<ord(ch)>) 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<perlebcdic>).
+
+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
 
-To find more about character encodings, please consult
-L<Encode::Details>. This document focuses on programming references.
+=item *
 
-=head1 PERL ENCODING API
+I<character>: a character in the range 0..(2**32-1) (or more).
+(What Perl's strings are made of.)
+
+=item *
 
-=head2 Generic Encoding Interface
+I<byte>: a character in the range 0..255
+(A special case of a Perl character.)
+
+=item *
+
+I<octet>: 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 $bytes  = encode(ENCODING, $string[, CHECK])
+=item $octets  = encode(ENCODING, $string[, CHECK])
 
 Encodes string from Perl's internal form into I<ENCODING> and returns
-a sequence of octets.  For CHECK see L</"Handling Malformed Data">.
+a sequence of octets.  ENCODING can be either a canonical name or
+alias.  For encoding names and aliases, see L</"Defining Aliases">.
+For CHECK see L</"Handling Malformed Data">.
 
-For example to convert (internally UTF-8 encoded) Unicode data
-to octets:
+For example to convert (internally UTF-8 encoded) Unicode string to
+iso-8859-1 (also known as Latin1), 
 
-       $octets = encode("utf8", $unicode);
+  $octets = encode("iso-8859-1", $unicode);
 
-=item $string = decode(ENCODING, $bytes[, CHECK])
+=item $string = decode(ENCODING, $octets[, CHECK])
 
 Decode sequence of octets assumed to be in I<ENCODING> into Perl's
-internal form and returns the resulting string.  For CHECK see
+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</"Defining Aliases">.  For CHECK see
 L</"Handling Malformed Data">.
 
 For example to convert ISO-8859-1 data to UTF-8:
 
-       $utf8 = decode("latin1", $latin1);
+  $utf8 = decode("iso-8859-1", $latin1);
 
-=item from_to($string, FROM_ENCODING, TO_ENCODING[, CHECK])
+=item [$length =] from_to($string, FROM_ENCODING, TO_ENCODING [,CHECK])
 
 Convert B<in-place> 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</"Encoding and IO">.  For CHECK
-see L</"Handling Malformed Data">.
+encode() or through PerlIO: See L</"Encoding and IO">.
+For encoding names and aliases, see L</"Defining Aliases">. 
+For CHECK see L</"Handling Malformed Data">.
 
 For example to convert ISO-8859-1 data to UTF-8:
 
@@ -288,63 +386,8 @@ and to convert it back:
 Note that because the conversion happens in place, the data to be
 converted cannot be a string constant, it must be a scalar variable.
 
-=back
-
-=head2 Handling Malformed Data
-
-If CHECK is not set, C<undef> is returned.  If the data is supposed to
-be UTF-8, an optional lexical warning (category utf8) is given.  If
-CHECK is true but not a code reference, dies.
-
-It would desirable to have a way to indicate that transform should use
-the encodings "replacement character" - no such mechanism is defined yet.
-
-It is also planned to allow I<CHECK> to be a code reference.
-
-This is not yet implemented as there are design issues with what its
-arguments should be and how it returns its results.
-
-=over 4
-
-=item Scheme 1
-
-Passed remaining fragment of string being processed.
-Modifies it in place to remove bytes/characters it can understand
-and returns a string used to represent them.
-e.g.
-
- sub fixup {
-   my $ch = substr($_[0],0,1,'');
-   return sprintf("\x{%02X}",ord($ch);
- }
-
-This scheme is close to how underlying C code for Encode works, but gives
-the fixup routine very little context.
-
-=item Scheme 2
-
-Passed original string, and an index into it of the problem area, and
-output string so far.  Appends what it will to output string and
-returns new index into original string.  For example:
-
- sub fixup {
-   # my ($s,$i,$d) = @_;
-   my $ch = substr($_[0],$_[1],1);
-   $_[2] .= sprintf("\x{%02X}",ord($ch);
-   return $_[1]+1;
- }
-
-This scheme gives maximal control to the fixup routine but is more
-complicated to code, and may need internals of Encode to be tweaked to
-keep original string intact.
-
-=item Other Schemes
-
-Hybrids of above.
-
-Multiple return values rather than in-place modifications.
-
-Index into the string could be C<pos($str)> allowing C<s/\G...//>.
+from_to() return the length of the converted string on success, undef
+otherwise.
 
 =back
 
@@ -359,15 +402,15 @@ just the meta-data that tells Perl how to treat them).
 
 =over 4
 
-=item $bytes = encode_utf8($string);
+=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($bytes [, CHECK]);
+=item $string = decode_utf8($octets [, CHECK]);
 
-The sequence of octets represented by $bytes is decoded from UTF-8
+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</"Handling Malformed Data">.
@@ -387,34 +430,39 @@ ones that are not loaded yet, say
 
 Or you can give the name of specific module.
 
-  @with_jp = Encode->encodings("Encode/JP.pm");
+  @with_jp = Encode->encodings("Encode::JP");
+
+When "::" is not in the name, "Encode::" is assumed.
 
-Note in this case you have to say C<"Encode/JP.pm"> instead of
-C<"Encode::JP">.
+  @ebcdic = Encode->encodings("EBCDIC");
 
 To find which encodings are supported by this package in details, 
 see L<Encode::Supported>.
 
 =head2 Defining Aliases
 
+To add new alias to a given encoding,  Use;
+
   use Encode;
   use Encode::Alias;
   define_alias(newName => ENCODING);
 
-Allows newName to be used as am alias for ENCODING. ENCODING may be
-either the name of an encoding or and encoding object (as above).
+After that, newName can be used as an alias for ENCODING.
+ENCODING may be either the name of an encoding or an
+I<encoding object>
 
-See L<Encode::Alias> on details.
+But before you do so, make sure the alias is nonexistent with
+C<resolve_alias()>, which returns the canonical name thereof.
+i.e.
 
-=head1 Defining Encodings
+  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
 
-    use Encode qw(define_alias);
-    define_encoding($object, 'canonicalName' [, alias...]);
+This resolve_alias() does not need C<use Encode::Alias> and is 
+exported via C<use encode qw(resolve_alias)>.
 
-Causes I<canonicalName> to be associated with I<$object>.  The object
-should provide the interface described in L<Encode::Encoding>
-below.  If more than two arguments are provided then additional
-arguments are taken as aliases for I<$object> as for C<define_alias>.
+See L<Encode::Alias> on details.
 
 =head1 Encoding and IO
 
@@ -482,6 +530,33 @@ See L<PerlIO> for more information.
 See also L<encoding> for how to change the default encoding of the
 data in your script.
 
+=head1 Handling Malformed Data
+
+If I<CHECK> is not set, (en|de)code will put I<substitution character> in
+place of the malformed character.  for UCM-based encodings,
+E<lt>subcharE<gt> 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<CHECK> 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<CHECK> 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<canonicalName> will be associated with I<$object>.  The object
+should provide the interface described in L<Encode::Encoding>
+If more than two arguments are provided then additional
+arguments are taken as aliases for I<$object> as for C<define_alias>.
+
+See L<Encode::Encoding> for more details.
+
 =head1 Messing with Perl's Internals
 
 The following API uses parts of Perl's internals in the current
@@ -514,7 +589,6 @@ not a string.
 
 =head1 SEE ALSO
 
-L<Encode::Details>, 
 L<Encode::Encoding>,
 L<Encode::Supported>,
 L<PerlIO>,