home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December (Special) / PCWorld_2005-12_Special_cd.bin / Bezpecnost / lsti / lsti.exe / framework-2.5.exe / Alias.pm < prev    next >
Text File  |  2005-01-27  |  11KB  |  343 lines

  1. package Encode::Alias;
  2. use strict;
  3. no warnings 'redefine';
  4. use Encode;
  5. our $VERSION = do { my @r = (q$Revision: 2.2 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
  6. sub DEBUG () { 0 }
  7.  
  8. use base qw(Exporter);
  9.  
  10. # Public, encouraged API is exported by default
  11.  
  12. our @EXPORT = 
  13.     qw (
  14.     define_alias
  15.     find_alias
  16.     );
  17.  
  18. our @Alias;  # ordered matching list
  19. our %Alias;  # cached known aliases
  20.  
  21. sub find_alias{
  22.     my $class = shift;
  23.     my $find = shift;
  24.     unless (exists $Alias{$find}) {
  25.         $Alias{$find} = undef; # Recursion guard
  26.     for (my $i=0; $i < @Alias; $i += 2){
  27.         my $alias = $Alias[$i];
  28.         my $val   = $Alias[$i+1];
  29.         my $new;
  30.         if (ref($alias) eq 'Regexp' && $find =~ $alias){
  31.         DEBUG and warn "eval $val";
  32.         $new = eval $val;
  33.         DEBUG and $@ and warn "$val, $@";
  34.         }elsif (ref($alias) eq 'CODE'){
  35.         DEBUG and warn "$alias", "->", "($find)";
  36.         $new = $alias->($find);
  37.         }elsif (lc($find) eq lc($alias)){
  38.         $new = $val;
  39.         }
  40.         if (defined($new)){
  41.         next if $new eq $find; # avoid (direct) recursion on bugs
  42.         DEBUG and warn "$alias, $new";
  43.         my $enc = (ref($new)) ? $new : Encode::find_encoding($new);
  44.         if ($enc){
  45.             $Alias{$find} = $enc;
  46.             last;
  47.         }
  48.         }
  49.     }
  50.     # case insensitive search when canonical is not in all lowercase
  51.     # RT ticket #7835
  52.     unless ($Alias{$find}){
  53.         my $lcfind = lc($find);
  54.         for my $name (keys %Encode::Encoding, keys %Encode::ExtModule){
  55.         $lcfind eq lc($name) or next;
  56.         $Alias{$find} =  Encode::find_encoding($name);
  57.         DEBUG and warn "$find => $name";
  58.         }
  59.     }
  60.     }
  61.     if (DEBUG){
  62.     my $name;
  63.     if (my $e = $Alias{$find}){
  64.         $name = $e->name;
  65.     }else{
  66.         $name = "";
  67.     }
  68.     warn "find_alias($class, $find)->name = $name";
  69.     }
  70.     return $Alias{$find};
  71. }
  72.  
  73. sub define_alias{
  74.     while (@_){
  75.     my ($alias,$name) = splice(@_,0,2);
  76.     unshift(@Alias, $alias => $name);   # newer one has precedence
  77.     if (ref($alias)){
  78.         # clear %Alias cache to allow overrides
  79.         my @a = keys %Alias;
  80.         for my $k (@a){
  81.         if (ref($alias) eq 'Regexp' && $k =~ $alias){
  82.             DEBUG and warn "delete \$Alias\{$k\}";
  83.             delete $Alias{$k};
  84.         }
  85.         elsif (ref($alias) eq 'CODE'){
  86.             DEBUG and warn "delete \$Alias\{$k\}";
  87.             delete $Alias{$alias->($name)};
  88.         }
  89.         }
  90.     }else{
  91.         DEBUG and warn "delete \$Alias\{$alias\}";
  92.         delete $Alias{$alias};
  93.     }
  94.     }
  95. }
  96.  
  97. # Allow latin-1 style names as well
  98. # 0  1  2  3  4  5   6   7   8   9  10
  99. our @Latin2iso = ( 0, 1, 2, 3, 4, 9, 10, 13, 14, 15, 16 );
  100. # Allow winlatin1 style names as well
  101. our %Winlatin2cp   = (
  102.               'latin1'     => 1252,
  103.               'latin2'     => 1250,
  104.               'cyrillic'   => 1251,
  105.               'greek'      => 1253,
  106.               'turkish'    => 1254,
  107.               'hebrew'     => 1255,
  108.               'arabic'     => 1256,
  109.               'baltic'     => 1257,
  110.               'vietnamese' => 1258,
  111.              );
  112.  
  113. init_aliases();
  114.  
  115. sub undef_aliases{
  116.     @Alias = ();
  117.     %Alias = ();
  118. }
  119.  
  120. sub init_aliases
  121. {
  122.     undef_aliases();
  123.     # Try all-lower-case version should all else fails
  124.     define_alias( qr/^(.*)$/ => '"\L$1"' );
  125.  
  126.     # UTF/UCS stuff
  127.     define_alias( qr/^UTF-?7$/i           => '"UTF-7"');
  128.     define_alias( qr/^UCS-?2-?LE$/i       => '"UCS-2LE"' );
  129.     define_alias( qr/^UCS-?2-?(BE)?$/i    => '"UCS-2BE"',
  130.                   qr/^UCS-?4-?(BE|LE)?$/i => 'uc("UTF-32$1")',
  131.           qr/^iso-10646-1$/i      => '"UCS-2BE"' );
  132.     define_alias( qr/^UTF-?(16|32)-?BE$/i   => '"UTF-$1BE"',
  133.           qr/^UTF-?(16|32)-?LE$/i   => '"UTF-$1LE"',
  134.           qr/^UTF-?(16|32)$/i       => '"UTF-$1"',
  135.         );
  136.     # ASCII
  137.     define_alias(qr/^(?:US-?)ascii$/i => '"ascii"');
  138.     define_alias('C' => 'ascii');
  139.     define_alias(qr/\bISO[-_]?646[-_]?US$/i => '"ascii"');
  140.     # Allow variants of iso-8859-1 etc.
  141.     define_alias( qr/\biso[-_]?(\d+)[-_](\d+)$/i => '"iso-$1-$2"' );
  142.  
  143.     # At least HP-UX has these.
  144.     define_alias( qr/\biso8859(\d+)$/i => '"iso-8859-$1"' );
  145.  
  146.     # More HP stuff.
  147.     define_alias( qr/\b(?:hp-)?(arabic|greek|hebrew|kana|roman|thai|turkish)8$/i => '"${1}8"' );
  148.  
  149.     # The Official name of ASCII.
  150.     define_alias( qr/\bANSI[-_]?X3\.4[-_]?1968$/i => '"ascii"' );
  151.  
  152.     # This is a font issue, not an encoding issue.
  153.     # (The currency symbol of the Latin 1 upper half
  154.     #  has been redefined as the euro symbol.)
  155.     define_alias( qr/^(.+)\@euro$/i => '"$1"' );
  156.  
  157.     define_alias( qr/\b(?:iso[-_]?)?latin[-_]?(\d+)$/i 
  158.           => 'defined $Encode::Alias::Latin2iso[$1] ? "iso-8859-$Encode::Alias::Latin2iso[$1]" : undef' );
  159.  
  160.     define_alias( qr/\bwin(latin[12]|cyrillic|baltic|greek|turkish|
  161.              hebrew|arabic|baltic|vietnamese)$/ix => 
  162.           '"cp" . $Encode::Alias::Winlatin2cp{lc($1)}' );
  163.  
  164.     # Common names for non-latin prefered MIME names
  165.     define_alias( 'ascii'    => 'US-ascii',
  166.           'cyrillic' => 'iso-8859-5',
  167.           'arabic'   => 'iso-8859-6',
  168.           'greek'    => 'iso-8859-7',
  169.           'hebrew'   => 'iso-8859-8',
  170.           'thai'     => 'iso-8859-11',
  171.           'tis620'   => 'iso-8859-11',
  172.           );
  173.  
  174.     # At least AIX has IBM-NNN (surprisingly...) instead of cpNNN.
  175.     # And Microsoft has their own naming (again, surprisingly).
  176.     # And windows-* is registered in IANA! 
  177.     define_alias( qr/\b(?:cp|ibm|ms|windows)[-_ ]?(\d{2,4})$/i => '"cp$1"');
  178.  
  179.     # Sometimes seen with a leading zero.
  180.     # define_alias( qr/\bcp037\b/i => '"cp37"');
  181.  
  182.     # Mac Mappings
  183.     # predefined in *.ucm; unneeded
  184.     # define_alias( qr/\bmacIcelandic$/i => '"macIceland"');
  185.     define_alias( qr/^mac_(.*)$/i => '"mac$1"');
  186.     # Ououououou. gone.  They are differente!
  187.     # define_alias( qr/\bmacRomanian$/i => '"macRumanian"');
  188.   
  189.     # Standardize on the dashed versions.
  190.     # define_alias( qr/\butf8$/i  => '"utf-8"' );
  191.     define_alias( qr/\bkoi8[\s\-_]*([ru])$/i => '"koi8-$1"' );
  192.  
  193.     unless ($Encode::ON_EBCDIC){
  194.         # for Encode::CN
  195.     define_alias( qr/\beuc.*cn$/i        => '"euc-cn"' );
  196.     define_alias( qr/\bcn.*euc$/i        => '"euc-cn"' );
  197.     # define_alias( qr/\bGB[- ]?(\d+)$/i => '"euc-cn"' )
  198.     # CP936 doesn't have vendor-addon for GBK, so they're identical.
  199.     define_alias( qr/^gbk$/i => '"cp936"');
  200.     # This fixes gb2312 vs. euc-cn confusion, practically
  201.     define_alias( qr/\bGB[-_ ]?2312(?!-?raw)/i => '"euc-cn"' );
  202.     # for Encode::JP
  203.     define_alias( qr/\bjis$/i            => '"7bit-jis"' );
  204.     define_alias( qr/\beuc.*jp$/i        => '"euc-jp"' );
  205.     define_alias( qr/\bjp.*euc$/i        => '"euc-jp"' );
  206.     define_alias( qr/\bujis$/i           => '"euc-jp"' );
  207.     define_alias( qr/\bshift.*jis$/i     => '"shiftjis"' );
  208.     define_alias( qr/\bsjis$/i           => '"shiftjis"' );
  209.     define_alias( qr/\bwindows-31j$/i    => '"cp932"' );
  210.         # for Encode::KR
  211.     define_alias( qr/\beuc.*kr$/i        => '"euc-kr"' );
  212.     define_alias( qr/\bkr.*euc$/i        => '"euc-kr"' );
  213.     # This fixes ksc5601 vs. euc-kr confusion, practically
  214.         define_alias( qr/(?:x-)?uhc$/i            => '"cp949"' );
  215.         define_alias( qr/(?:x-)?windows-949$/i    => '"cp949"' );
  216.         define_alias( qr/\bks_c_5601-1987$/i      => '"cp949"' );
  217.         # for Encode::TW
  218.     define_alias( qr/\bbig-?5$/i          => '"big5-eten"' );
  219.     define_alias( qr/\bbig5-?et(?:en)?$/i      => '"big5-eten"' );
  220.     define_alias( qr/\btca[-_]?big5$/i      => '"big5-eten"' );
  221.     define_alias( qr/\bbig5-?hk(?:scs)?$/i      => '"big5-hkscs"' );
  222.     define_alias( qr/\bhk(?:scs)?[-_]?big5$/i  => '"big5-hkscs"' );
  223.     }
  224.     # utf8 is blessed :)
  225.     define_alias( qr/^UTF-8$/i => '"utf8"',);
  226.     # At last, Map white space and _ to '-'
  227.     define_alias( qr/^(\S+)[\s_]+(.*)$/i => '"$1-$2"' );
  228. }
  229.  
  230. 1;
  231. __END__
  232.  
  233. # TODO: HP-UX '8' encodings arabic8 greek8 hebrew8 kana8 thai8 turkish8
  234. # TODO: HP-UX '15' encodings japanese15 korean15 roi15
  235. # TODO: Cyrillic encoding ISO-IR-111 (useful?)
  236. # TODO: Armenian encoding ARMSCII-8
  237. # TODO: Hebrew encoding ISO-8859-8-1
  238. # TODO: Thai encoding TCVN
  239. # TODO: Vietnamese encodings VPS
  240. # TODO: Mac Asian+African encodings: Arabic Armenian Bengali Burmese
  241. #       ChineseSimp ChineseTrad Devanagari Ethiopic ExtArabic
  242. #       Farsi Georgian Gujarati Gurmukhi Hebrew Japanese
  243. #       Kannada Khmer Korean Laotian Malayalam Mongolian
  244. #       Oriya Sinhalese Symbol Tamil Telugu Tibetan Vietnamese
  245.  
  246. =head1 NAME
  247.  
  248. Encode::Alias - alias definitions to encodings
  249.  
  250. =head1 SYNOPSIS
  251.  
  252.   use Encode;
  253.   use Encode::Alias;
  254.   define_alias( newName => ENCODING);
  255.  
  256. =head1 DESCRIPTION
  257.  
  258. Allows newName to be used as an alias for ENCODING. ENCODING may be
  259. either the name of an encoding or an encoding object (as described 
  260. in L<Encode>).
  261.  
  262. Currently I<newName> can be specified in the following ways:
  263.  
  264. =over 4
  265.  
  266. =item As a simple string.
  267.  
  268. =item As a qr// compiled regular expression, e.g.:
  269.  
  270.   define_alias( qr/^iso8859-(\d+)$/i => '"iso-8859-$1"' );
  271.  
  272. In this case, if I<ENCODING> is not a reference, it is C<eval>-ed
  273. in order to allow C<$1> etc. to be substituted.  The example is one
  274. way to alias names as used in X11 fonts to the MIME names for the
  275. iso-8859-* family.  Note the double quotes inside the single quotes.
  276.  
  277. (or, you don't have to do this yourself because this example is predefined)
  278.  
  279. If you are using a regex here, you have to use the quotes as shown or
  280. it won't work.  Also note that regex handling is tricky even for the
  281. experienced.  Use this feature with caution.
  282.  
  283. =item As a code reference, e.g.:
  284.  
  285.   define_alias( sub {shift =~ /^iso8859-(\d+)$/i ? "iso-8859-$1" : undef } );
  286.  
  287. The same effect as the example above in a different way.  The coderef
  288. takes the alias name as an argument and returns a canonical name on
  289. success or undef if not.  Note the second argument is not required.
  290. Use this with even more caution than the regex version.
  291.  
  292. =back
  293.  
  294. =head3 Changes in code reference aliasing
  295.  
  296. As of Encode 1.87, the older form
  297.  
  298.   define_alias( sub { return  /^iso8859-(\d+)$/i ? "iso-8859-$1" : undef } );
  299.  
  300. no longer works. 
  301.  
  302. Encode up to 1.86 internally used "local $_" to implement ths older
  303. form.  But consider the code below;
  304.  
  305.   use Encode;
  306.   $_ = "eeeee" ;
  307.   while (/(e)/g) {
  308.     my $utf = decode('aliased-encoding-name', $1);
  309.     print "position:",pos,"\n";
  310.   }
  311.  
  312. Prior to Encode 1.86 this fails because of "local $_".
  313.  
  314. =head2 Alias overloading
  315.  
  316. You can override predefined aliases by simply applying define_alias().
  317. The new alias is always evaluated first, and when neccessary,
  318. define_alias() flushes the internal cache to make the new definition
  319. available.
  320.  
  321.   # redirect SHIFT_JIS to MS/IBM Code Page 932, which is a
  322.   # superset of SHIFT_JIS
  323.  
  324.   define_alias( qr/shift.*jis$/i  => '"cp932"' );
  325.   define_alias( qr/sjis$/i        => '"cp932"' );
  326.  
  327. If you want to zap all predefined aliases, you can use
  328.  
  329.   Encode::Alias->undef_aliases;
  330.  
  331. to do so.  And
  332.  
  333.   Encode::Alias->init_aliases;
  334.  
  335. gets the factory settings back.
  336.  
  337. =head1 SEE ALSO
  338.  
  339. L<Encode>, L<Encode::Supported>
  340.  
  341. =cut
  342.  
  343.