.\" Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .if !\nF .nr F 0 .if \nF>0 \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} .\} .\" ======================================================================== .\" .IX Title "ENC2XS 1" .TH ENC2XS 1 "2018-11-29" "perl v5.24.1" "Perl Programmers Reference Guide" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" enc2xs \-\- Perl Encode Module Generator .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 3 \& enc2xs \-[options] \& enc2xs \-M ModName mapfiles... \& enc2xs \-C .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\fIenc2xs\fR builds a Perl extension for use by Encode from either Unicode Character Mapping files (.ucm) or Tcl Encoding Files (.enc). Besides being used internally during the build process of the Encode module, you can use \fIenc2xs\fR to add your own encoding to perl. No knowledge of \s-1XS\s0 is necessary. .SH "Quick Guide" .IX Header "Quick Guide" If you want to know as little about Perl as possible but need to add a new encoding, just read this chapter and forget the rest. .IP "0." 4 .IX Item "0." Have a .ucm file ready. You can get it from somewhere or you can write your own from scratch or you can grab one from the Encode distribution and customize it. For the \s-1UCM\s0 format, see the next Chapter. In the example below, I'll call my theoretical encoding myascii, defined in \fImy.ucm\fR. \f(CW\*(C`$\*(C'\fR is a shell prompt. .Sp .Vb 2 \& $ ls \-F \& my.ucm .Ve .IP "1." 4 .IX Item "1." Issue a command as follows; .Sp .Vb 5 \& $ enc2xs \-M My my.ucm \& generating Makefile.PL \& generating My.pm \& generating README \& generating Changes .Ve .Sp Now take a look at your current directory. It should look like this. .Sp .Vb 2 \& $ ls \-F \& Makefile.PL My.pm my.ucm t/ .Ve .Sp The following files were created. .Sp .Vb 3 \& Makefile.PL \- MakeMaker script \& My.pm \- Encode submodule \& t/My.t \- test file .Ve .RS 4 .IP "1.1." 4 .IX Item "1.1." If you want *.ucm installed together with the modules, do as follows; .Sp .Vb 3 \& $ mkdir Encode \& $ mv *.ucm Encode \& $ enc2xs \-M My Encode/*ucm .Ve .RE .RS 4 .RE .IP "2." 4 .IX Item "2." Edit the files generated. You don't have to if you have no time \s-1AND\s0 no intention to give it to someone else. But it is a good idea to edit the pod and to add more tests. .IP "3." 4 .IX Item "3." Now issue a command all Perl Mongers love: .Sp .Vb 2 \& $ perl Makefile.PL \& Writing Makefile for Encode::My .Ve .IP "4." 4 .IX Item "4." Now all you have to do is make. .Sp .Vb 12 \& $ make \& cp My.pm blib/lib/Encode/My.pm \& /usr/local/bin/perl /usr/local/bin/enc2xs \-Q \-O \e \& \-o encode_t.c \-f encode_t.fnm \& Reading myascii (myascii) \& Writing compiled form \& 128 bytes in string tables \& 384 bytes (75%) saved spotting duplicates \& 1 bytes (0.775%) saved using substrings \& .... \& chmod 644 blib/arch/auto/Encode/My/My.bs \& $ .Ve .Sp The time it takes varies depending on how fast your machine is and how large your encoding is. Unless you are working on something big like euc-tw, it won't take too long. .IP "5." 4 .IX Item "5." You can \*(L"make install\*(R" already but you should test first. .Sp .Vb 8 \& $ make test \& PERL_DL_NONLAZY=1 /usr/local/bin/perl \-Iblib/arch \-Iblib/lib \e \& \-e \*(Aquse Test::Harness qw(&runtests $verbose); \e \& $verbose=0; runtests @ARGV;\*(Aq t/*.t \& t/My....ok \& All tests successful. \& Files=1, Tests=2, 0 wallclock secs \& ( 0.09 cusr + 0.01 csys = 0.09 CPU) .Ve .IP "6." 4 .IX Item "6." If you are content with the test result, just \*(L"make install\*(R" .IP "7." 4 .IX Item "7." If you want to add your encoding to Encode's demand-loading list (so you don't have to \*(L"use Encode::YourEncoding\*(R"), run .Sp .Vb 1 \& enc2xs \-C .Ve .Sp to update Encode::ConfigLocal, a module that controls local settings. After that, \*(L"use Encode;\*(R" is enough to load your encodings on demand. .SH "The Unicode Character Map" .IX Header "The Unicode Character Map" Encode uses the Unicode Character Map (\s-1UCM\s0) format for source character mappings. This format is used by \s-1IBM\s0's \s-1ICU\s0 package and was adopted by Nick Ing-Simmons for use with the Encode module. Since \s-1UCM\s0 is more flexible than Tcl's Encoding Map and far more user-friendly, this is the recommended format for Encode now. .PP A \s-1UCM\s0 file looks like this. .PP .Vb 10 \& # \& # Comments \& # \& "US\-ascii" # Required \& "ascii" # Optional \& 1 # Required; usually 1 \& 1 # Max. # of bytes/char \& \ex3F # Substitution char \& # \& CHARMAP \& \ex00 |0 # \& \ex01 |0 # \& \ex02 |0 # \& .... \& \ex7C |0 # VERTICAL LINE \& \ex7D |0 # RIGHT CURLY BRACKET \& \ex7E |0 # TILDE \& \ex7F |0 # \& END CHARMAP .Ve .IP "\(bu" 4 Anything that follows \f(CW\*(C`#\*(C'\fR is treated as a comment. .IP "\(bu" 4 The header section continues until a line containing the word \&\s-1CHARMAP.\s0 This section has a form of \fI value\fR, one pair per line. Strings used as values must be quoted. Barewords are treated as numbers. \fI\exXX\fR represents a byte. .Sp Most of the keywords are self-explanatory. \fIsubchar\fR means substitution character, not subcharacter. When you decode a Unicode sequence to this encoding but no matching character is found, the byte sequence defined here will be used. For most cases, the value here is \&\ex3F; in \s-1ASCII,\s0 this is a question mark. .IP "\(bu" 4 \&\s-1CHARMAP\s0 starts the character map section. Each line has a form as follows: .Sp .Vb 5 \& \exXX.. |0 # comment \& ^ ^ ^ \& | | +\- Fallback flag \& | +\-\-\-\-\-\-\-\- Encoded byte sequence \& +\-\-\-\-\-\-\-\-\-\-\-\-\-\- Unicode Character ID in hex .Ve .Sp The format is roughly the same as a header section except for the fallback flag: | followed by 0..3. The meaning of the possible values is as follows: .RS 4 .IP "|0" 4 .IX Item "|0" Round trip safe. A character decoded to Unicode encodes back to the same byte sequence. Most characters have this flag. .IP "|1" 4 .IX Item "|1" Fallback for unicode \-> encoding. When seen, enc2xs adds this character for the encode map only. .IP "|2" 4 .IX Item "|2" Skip sub-char mapping should there be no code point. .IP "|3" 4 .IX Item "|3" Fallback for encoding \-> unicode. When seen, enc2xs adds this character for the decode map only. .RE .RS 4 .RE .IP "\(bu" 4 And finally, \s-1END OF CHARMAP\s0 ends the section. .PP When you are manually creating a \s-1UCM\s0 file, you should copy ascii.ucm or an existing encoding which is close to yours, rather than write your own from scratch. .PP When you do so, make sure you leave at least \fBU0000\fR to \fBU0020\fR as is, unless your environment is \s-1EBCDIC.\s0 .PP \&\fB\s-1CAVEAT\s0\fR: not all features in \s-1UCM\s0 are implemented. For example, icu:state is not used. Because of that, you need to write a perl module if you want to support algorithmical encodings, notably the \s-1ISO\-2022\s0 series. Such modules include Encode::JP::2022_JP, Encode::KR::2022_KR, and Encode::TW::HZ. .SS "Coping with duplicate mappings" .IX Subsection "Coping with duplicate mappings" When you create a map, you \s-1SHOULD\s0 make your mappings round-trip safe. That is, \f(CW\*(C`encode(\*(Aqyour\-encoding\*(Aq, decode(\*(Aqyour\-encoding\*(Aq, $data)) eq $data\*(C'\fR stands for all characters that are marked as \f(CW\*(C`|0\*(C'\fR. Here is how to make sure: .IP "\(bu" 4 Sort your map in Unicode order. .IP "\(bu" 4 When you have a duplicate entry, mark either one with '|1' or '|3'. .IP "\(bu" 4 And make sure the '|1' or '|3' entry \s-1FOLLOWS\s0 the '|0' entry. .PP Here is an example from big5\-eten. .PP .Vb 2 \& \exF9\exF9 |0 \& \exA2\exA4 |3 .Ve .PP Internally Encoding \-> Unicode and Unicode \-> Encoding Map looks like this; .PP .Vb 4 \& E to U U to E \& \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \& \exF9\exF9 => U2550 U2550 => \exF9\exF9 \& \exA2\exA4 => U2550 .Ve .PP So it is round-trip safe for \exF9\exF9. But if the line above is upside down, here is what happens. .PP .Vb 4 \& E to U U to E \& \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \& \exA2\exA4 => U2550 U2550 => \exF9\exF9 \& (\exF9\exF9 => U2550 is now overwritten!) .Ve .PP The Encode package comes with \fIucmlint\fR, a crude but sufficient utility to check the integrity of a \s-1UCM\s0 file. Check under the Encode/bin directory for this. .PP When in doubt, you can use \fIucmsort\fR, yet another utility under Encode/bin directory. .SH "Bookmarks" .IX Header "Bookmarks" .IP "\(bu" 4 \&\s-1ICU\s0 Home Page .IP "\(bu" 4 \&\s-1ICU\s0 Character Mapping Tables .IP "\(bu" 4 ICU:Conversion Data .SH "SEE ALSO" .IX Header "SEE ALSO" Encode, perlmod, perlpod