Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Produce verbose warning diagnosticsPerl pragma to enable new features (Berikutnya)
Pragmas

Allows you to write your script in non-ascii or non-utf8

Daftar Isi

NAME

encoding - allows you to write your script in non-ascii or non-utf8

SYNOPSIS

  1. use encoding "greek"; # Perl like Greek to you?
  2. use encoding "euc-jp"; # Jperl!
  3. # or you can even do this if your shell supports your native encoding
  4. perl -Mencoding=latin2 -e'...' # Feeling centrally European?
  5. perl -Mencoding=euc-kr -e'...' # Or Korean?
  6. # more control
  7. # A simple euc-cn => utf-8 converter
  8. use encoding "euc-cn", STDOUT => "utf8"; while(<>){print};
  9. # "no encoding;" supported (but not scoped!)
  10. no encoding;
  11. # an alternate way, Filter
  12. use encoding "euc-jp", Filter=>1;
  13. # now you can use kanji identifiers -- in euc-jp!
  14. # switch on locale -
  15. # note that this probably means that unless you have a complete control
  16. # over the environments the application is ever going to be run, you should
  17. # NOT use the feature of encoding pragma allowing you to write your script
  18. # in any recognized encoding because changing locale settings will wreck
  19. # the script; you can of course still use the other features of the pragma.
  20. use encoding ':locale';

ABSTRACT

Let's start with a bit of history: Perl 5.6.0 introduced Unicodesupport. You could apply substr() and regexes even to complex CJKcharacters -- so long as the script was written in UTF-8. But backthen, text editors that supported UTF-8 were still rare and many usersinstead chose to write scripts in legacy encodings, giving up a wholenew feature of Perl 5.6.

Rewind to the future: starting from perl 5.8.0 with the encodingpragma, you can write your script in any encoding you like (so longas the Encode module supports it) and still enjoy Unicode support.This pragma achieves that by doing the following:

  • Internally converts all literals (q//,qq//,qr//,qw///, qx//) fromthe encoding specified to utf8. In Perl 5.8.1 and later, literals intr/// and DATA pseudo-filehandle are also converted.

  • Changing PerlIO layers of STDIN and STDOUT to the encoding specified.

Literal Conversions

You can write code in EUC-JP as follows:

  1. my $Rakuda = "\xF1\xD1\xF1\xCC"; # Camel in Kanji
  2. #<-char-><-char-> # 4 octets
  3. s/\bCamel\b/$Rakuda/;

And with use encoding "euc-jp" in effect, it is the same thing asthe code in UTF-8:

  1. my $Rakuda = "\x{99F1}\x{99DD}"; # two Unicode Characters
  2. s/\bCamel\b/$Rakuda/;

PerlIO layers for STD(IN|OUT)

The encoding pragma also modifies the filehandle layers ofSTDIN and STDOUT to the specified encoding. Therefore,

  1. use encoding "euc-jp";
  2. my $message = "Camel is the symbol of perl.\n";
  3. my $Rakuda = "\xF1\xD1\xF1\xCC"; # Camel in Kanji
  4. $message =~ s/\bCamel\b/$Rakuda/;
  5. print $message;

Will print "\xF1\xD1\xF1\xCC is the symbol of perl.\n",not "\x{99F1}\x{99DD} is the symbol of perl.\n".

You can override this by giving extra arguments; see below.

Implicit upgrading for byte strings

By default, if strings operating under byte semantics and stringswith Unicode character data are concatenated, the new string willbe created by decoding the byte strings as ISO 8859-1 (Latin-1).

The encoding pragma changes this to use the specified encodinginstead. For example:

  1. use encoding 'utf8';
  2. my $string = chr(20000); # a Unicode string
  3. utf8::encode($string); # now it's a UTF-8 encoded byte string
  4. # concatenate with another Unicode string
  5. print length($string . chr(20000));

Will print 2, because $string is upgraded as UTF-8. Withoutuse encoding 'utf8';, it will print 4 instead, since $stringis three octets when interpreted as Latin-1.

Side effects

If the encoding pragma is in scope then the lengths returned arecalculated from the length of $/ in Unicode characters, which is notalways the same as the length of $/ in the native encoding.

This pragma affects utf8::upgrade, but not utf8::downgrade.

FEATURES THAT REQUIRE 5.8.1

Some of the features offered by this pragma requires perl 5.8.1. Mostof these are done by Inaba Hiroto. Any other features and changesare good for 5.8.0.

  • "NON-EUC" doublebyte encodings

    Because perl needs to parse script before applying this pragma, suchencodings as Shift_JIS and Big-5 that may contain '\' (BACKSLASH;\x5c) in the second byte fails because the second byte mayaccidentally escape the quoting character that follows. Perl 5.8.1or later fixes this problem.

  • tr//

    tr// was overlooked by Perl 5 porters when they released perl 5.8.0See the section below for details.

  • DATA pseudo-filehandle

    Another feature that was overlooked was DATA.

USAGE

  • use encoding [ENCNAME] ;

    Sets the script encoding to ENCNAME. And unless ${^UNICODE}exists and non-zero, PerlIO layers of STDIN and STDOUT are set to":encoding(ENCNAME)".

    Note that STDERR WILL NOT be changed.

    Also note that non-STD file handles remain unaffected. Use useopen or binmode to change layers of those.

    If no encoding is specified, the environment variable PERL_ENCODINGis consulted. If no encoding can be found, the error Unknown encoding'ENCNAME' will be thrown.

  • use encoding ENCNAME [ STDIN => ENCNAME_IN ...] ;

    You can also individually set encodings of STDIN and STDOUT via theSTDIN => ENCNAME form. In this case, you cannot omit thefirst ENCNAME. STDIN => undef turns the IO transcodingcompletely off.

    When ${^UNICODE} exists and non-zero, these options will completelyignored. ${^UNICODE} is a variable introduced in perl 5.8.1. Seeperlrun see ${^UNICODE} in perlvar and -C in perlrun fordetails (perl 5.8.1 and later).

  • use encoding ENCNAME Filter=>1;

    This turns the encoding pragma into a source filter. While thedefault approach just decodes interpolated literals (in qq() andqr()), this will apply a source filter to the entire source code. SeeThe Filter Option below for details.

  • no encoding;

    Unsets the script encoding. The layers of STDIN, STDOUT arereset to ":raw" (the default unprocessed raw stream of bytes).

The Filter Option

The magic of use encoding is not applied to the names ofidentifiers. In order to make ${"\x{4eba}"}++ ($human++, where humanis a single Han ideograph) work, you still need to write your scriptin UTF-8 -- or use a source filter. That's what 'Filter=>1' does.

What does this mean? Your source code behaves as if it is written inUTF-8 with 'use utf8' in effect. So even if your editor only supportsShift_JIS, for example, you can still try examples in Chapter 15 ofProgramming Perl, 3rd Ed.. For instance, you can use UTF-8identifiers.

This option is significantly slower and (as of this writing) non-ASCIIidentifiers are not very stable WITHOUT this option and with thesource code written in UTF-8.

Filter-related changes at Encode version 1.87

  • The Filter option now sets STDIN and STDOUT like non-filter options.And STDIN=>ENCODING and STDOUT=>ENCODING work likenon-filter version.

  • use utf8 is implicitly declared so you no longer have to useutf8 to ${"\x{4eba}"}++.

CAVEATS

NOT SCOPED

The pragma is a per script, not a per block lexical. Only the lastuse encoding or no encoding matters, and it affectsthe whole script. However, the <no encoding> pragma is supported anduse encoding can appear as many times as you want in a given script.The multiple use of this pragma is discouraged.

By the same reason, the use this pragma inside modules is alsodiscouraged (though not as strongly discouraged as the case above.See below).

If you still have to write a module with this pragma, be very carefulof the load order. See the codes below;

  1. # called module
  2. package Module_IN_BAR;
  3. use encoding "bar";
  4. # stuff in "bar" encoding here
  5. 1;
  6. # caller script
  7. use encoding "foo"
  8. use Module_IN_BAR;
  9. # surprise! use encoding "bar" is in effect.

The best way to avoid this oddity is to use this pragma RIGHT AFTERother modules are loaded. i.e.

  1. use Module_IN_BAR;
  2. use encoding "foo";

DO NOT MIX MULTIPLE ENCODINGS

Notice that only literals (string or regular expression) having onlylegacy code points are affected: if you mix data like this

  1. \xDF\x{100}

the data is assumed to be in (Latin 1 and) Unicode, not in your nativeencoding. In other words, this will match in "greek":

  1. "\xDF" =~ /\x{3af}/

but this will not

  1. "\xDF\x{100}" =~ /\x{3af}\x{100}/

since the \xDF (ISO 8859-7 GREEK SMALL LETTER IOTA WITH TONOS) onthe left will not be upgraded to \x{3af} (Unicode GREEK SMALLLETTER IOTA WITH TONOS) because of the \x{100} on the left. Youshould not be mixing your legacy data and Unicode in the same string.

This pragma also affects encoding of the 0x80..0xFF code point range:normally characters in that range are left as eight-bit bytes (unlessthey are combined with characters with code points 0x100 or larger,in which case all characters need to become UTF-8 encoded), but ifthe encoding pragma is present, even the 0x80..0xFF range alwaysgets UTF-8 encoded.

After all, the best thing about this pragma is that you don't have toresort to \x{....} just to spell your name in a native encoding.So feel free to put your strings in your encoding in quotes andregexes.

tr/// with ranges

The encoding pragma works by decoding string literals inq//,qq//,qr//,qw///, qx// and so forth. In perl 5.8.0, thisdoes not apply to tr///. Therefore,

  1. use encoding 'euc-jp';
  2. #....
  3. $kana =~ tr/\xA4\xA1-\xA4\xF3/\xA5\xA1-\xA5\xF3/;
  4. # -------- -------- -------- --------

Does not work as

  1. $kana =~ tr/\x{3041}-\x{3093}/\x{30a1}-\x{30f3}/;
  • Legend of characters above
    1. utf8 euc-jp charnames::viacode()
    2. -----------------------------------------
    3. \x{3041} \xA4\xA1 HIRAGANA LETTER SMALL A
    4. \x{3093} \xA4\xF3 HIRAGANA LETTER N
    5. \x{30a1} \xA5\xA1 KATAKANA LETTER SMALL A
    6. \x{30f3} \xA5\xF3 KATAKANA LETTER N

This counterintuitive behavior has been fixed in perl 5.8.1.

workaround to tr///;

In perl 5.8.0, you can work around as follows;

  1. use encoding 'euc-jp';
  2. # ....
  3. eval qq{ \$kana =~ tr/\xA4\xA1-\xA4\xF3/\xA5\xA1-\xA5\xF3/ };

Note the tr// expression is surrounded by qq{}. The idea behindis the same as classic idiom that makes tr/// 'interpolate'.

  1. tr/$from/$to/; # wrong!
  2. eval qq{ tr/$from/$to/ }; # workaround.

Nevertheless, in case of encoding pragma even q// is affected sotr/// not being decoded was obviously against the will of Perl5Porters so it has been fixed in Perl 5.8.1 or later.

EXAMPLE - Greekperl

  1. use encoding "iso 8859-7";
  2. # \xDF in ISO 8859-7 (Greek) is \x{3af} in Unicode.
  3. $a = "\xDF";
  4. $b = "\x{100}";
  5. printf "%#x\n", ord($a); # will print 0x3af, not 0xdf
  6. $c = $a . $b;
  7. # $c will be "\x{3af}\x{100}", not "\x{df}\x{100}".
  8. # chr() is affected, and ...
  9. print "mega\n" if ord(chr(0xdf)) == 0x3af;
  10. # ... ord() is affected by the encoding pragma ...
  11. print "tera\n" if ord(pack("C", 0xdf)) == 0x3af;
  12. # ... as are eq and cmp ...
  13. print "peta\n" if "\x{3af}" eq pack("C", 0xdf);
  14. print "exa\n" if "\x{3af}" cmp pack("C", 0xdf) == 0;
  15. # ... but pack/unpack C are not affected, in case you still
  16. # want to go back to your native encoding
  17. print "zetta\n" if unpack("C", (pack("C", 0xdf))) == 0xdf;

KNOWN PROBLEMS

  • literals in regex that are longer than 127 bytes

    For native multibyte encodings (either fixed or variable length),the current implementation of the regular expressions may introducerecoding errors for regular expression literals longer than 127 bytes.

  • EBCDIC

    The encoding pragma is not supported on EBCDIC platforms.(Porters who are willing and able to remove this limitation arewelcome.)

  • format

    This pragma doesn't work well with format because PerlIO does notget along very well with it. When format contains non-asciicharacters it prints funny or gets "wide character warnings".To understand it, try the code below.

    1. # Save this one in utf8
    2. # replace *non-ascii* with a non-ascii string
    3. my $camel;
    4. format STDOUT =
    5. *non-ascii*@>>>>>>>
    6. $camel
    7. .
    8. $camel = "*non-ascii*";
    9. binmode(STDOUT=>':encoding(utf8)'); # bang!
    10. write; # funny
    11. print $camel, "\n"; # fine

    Without binmode this happens to work but without binmode, print()fails instead of write().

    At any rate, the very use of format is questionable when it comes tounicode characters since you have to consider such things as characterwidth (i.e. double-width for ideographs) and directions (i.e. BIDI forArabic and Hebrew).

  • Thread safety

    use encoding ... is not thread-safe (i.e., do not use in threadedapplications).

The Logic of :locale

The logic of :locale is as follows:

1.

If the platform supports the langinfo(CODESET) interface, the codesetreturned is used as the default encoding for the open pragma.

2.

If 1. didn't work but we are under the locale pragma, the environmentvariables LC_ALL and LANG (in that order) are matched for encodings(the part after ., if any), and if any found, that is usedas the default encoding for the open pragma.

3.

If 1. and 2. didn't work, the environment variables LC_ALL and LANG(in that order) are matched for anything looking like UTF-8, and ifany found, :utf8 is used as the default encoding for the openpragma.

If your locale environment variables (LC_ALL, LC_CTYPE, LANG)contain the strings 'UTF-8' or 'UTF8' (case-insensitive matching),the default encoding of your STDIN, STDOUT, and STDERR, and ofany subsequent file open, is UTF-8.

HISTORY

This pragma first appeared in Perl 5.8.0. For features that require5.8.1 and better, see above.

The :locale subpragma was implemented in 2.01, or Perl 5.8.6.

SEE ALSO

perlunicode, Encode, open, Filter::Util::Call,

Ch. 15 of Programming Perl (3rd Edition)by Larry Wall, Tom Christiansen, Jon Orwant;O'Reilly & Associates; ISBN 0-596-00027-8

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Produce verbose warning diagnosticsPerl pragma to enable new features (Berikutnya)