summaryrefslogtreecommitdiffstats
path: root/upstream/archlinux/man3/Encode::PerlIO.3perl
blob: c590e0ff087032a9c1305ced51fb329d33050cc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
.\" -*- mode: troff; coding: utf-8 -*-
.\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43)
.\"
.\" 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
..
.\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>.
.ie n \{\
.    ds C` ""
.    ds C' ""
'br\}
.el\{\
.    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
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
.    if \nF \{\
.        de IX
.        tm Index:\\$1\t\\n%\t"\\$2"
..
.        if !\nF==2 \{\
.            nr % 0
.            nr F 2
.        \}
.    \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "Encode::PerlIO 3perl"
.TH Encode::PerlIO 3perl 2024-02-11 "perl v5.38.2" "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
Encode::PerlIO \-\- a detailed document on Encode and PerlIO
.SH Overview
.IX Header "Overview"
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
\&\f(CW\*(C`Encode\*(C'\fR provides a "layer" (see PerlIO) which can transform
data as it is read or written.
.PP
Here is how the blind poet would modernise the encoding:
.PP
.Vb 7
\&    use Encode;
\&    open(my $iliad,\*(Aq<:encoding(iso\-8859\-7)\*(Aq,\*(Aqiliad.greek\*(Aq);
\&    open(my $utf8,\*(Aq>:utf8\*(Aq,\*(Aqiliad.utf8\*(Aq);
\&    my @epic = <$iliad>;
\&    print $utf8 @epic;
\&    close($utf8);
\&    close($illiad);
.Ve
.PP
In addition, the new IO system can also be configured to read/write
UTF\-8 encoded characters (as noted above, this is efficient):
.PP
.Vb 2
\&    open(my $fh,\*(Aq>:utf8\*(Aq,\*(Aqanything\*(Aq);
\&    print $fh "Any \ex{0021} string \eN{SMILEY FACE}\en";
.Ve
.PP
Either of the above forms of "layer" specifications can be made the default
for a lexical scope with the \f(CW\*(C`use open ...\*(C'\fR pragma. See open.
.PP
Once a handle is open, its layers can be altered using \f(CW\*(C`binmode\*(C'\fR.
.PP
Without any such configuration, or if Perl itself is built using the
system's own IO, then write operations assume that the file handle
accepts only \fIbytes\fR and will \f(CW\*(C`die\*(C'\fR 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.
.PP
In other cases, it is the program's 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. \f(CW\*(C`lc\*(C'\fR, \f(CW\*(C`/\eW+/\*(C'\fR, ...).
.PP
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):
.PP
.Vb 3
\&    open(F, "<:encoding(iso\-8859\-1)", "data.txt") or die $!;
\&    open(G, ">:utf8",                 "data.utf") or die $!;
\&    while (<F>) { print G }
\&
\&    # Could also do "print G <F>" but that would pull
\&    # the whole file into memory just to write it out again.
.Ve
.PP
More examples:
.PP
.Vb 3
\&    open(my $f, "<:encoding(cp1252)")
\&    open(my $g, ">:encoding(iso\-8859\-2)")
\&    open(my $h, ">:encoding(latin9)")       # iso\-8859\-15
.Ve
.PP
See also encoding for how to change the default encoding of the
data in your script.
.SH "How does it work?"
.IX Header "How does it work?"
Here is a crude diagram of how filehandle, PerlIO, and Encode
interact.
.PP
.Vb 3
\&  filehandle <\-> PerlIO        PerlIO <\-> scalar (read/printed)
\&                       \e      /
\&                        Encode
.Ve
.PP
When PerlIO receives data from either direction, it fills a buffer
(currently with 1024 bytes) and passes the buffer to Encode.
Encode tries to convert the valid part and passes it back to PerlIO,
leaving invalid parts (usually a partial character) in the buffer.
PerlIO then appends more data to the buffer, calls Encode again,
and so on until the data stream ends.
.PP
To do so, PerlIO always calls (de|en)code methods with CHECK set to 1.
This ensures that the method stops at the right place when it
encounters partial character.  The following is what happens when
PerlIO and Encode tries to encode (from utf8) more than 1024 bytes
and the buffer boundary happens to be in the middle of a character.
.PP
.Vb 5
\&   A   B   C   ....   ~     \ex{3000}    ....
\&  41  42  43   ....  7E   e3   80   80  ....
\&  <\- buffer \-\-\-\-\-\-\-\-\-\-\-\-\-\-\->
\&  << encoded >>>>>>>>>>
\&                       <\- next buffer \-\-\-\-\-\-
.Ve
.PP
Encode converts from the beginning to \ex7E, leaving \exe3 in the buffer
because it is invalid (partial character).
.PP
Unfortunately, this scheme does not work well with escape-based
encodings such as ISO\-2022\-JP.
.SH "Line Buffering"
.IX Header "Line Buffering"
Now let's see what happens when you try to decode from ISO\-2022\-JP and
the buffer ends in the middle of a character.
.PP
.Vb 5
\&              JIS208\-ESC   \ex{5f3e}
\&   A   B   C   ....   ~   \ee   $   B  |DAN | ....
\&  41  42  43   ....  7E   1b  24  41  43  46 ....
\&  <\- buffer \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\->
\&  << encoded >>>>>>>>>>>>>>>>>>>>>>>
.Ve
.PP
As you see, the next buffer begins with \ex43.  But \ex43 is 'C' in
ASCII, which is wrong in this case because we are now in JISX 0208
area so it has to convert \ex43\ex46, not \ex43.  Unlike utf8 and EUC,
in escape-based encodings you can't tell if a given octet is a whole
character or just part of it.
.PP
Fortunately PerlIO also supports line buffer if you tell PerlIO to use
one instead of fixed buffer.  Since ISO\-2022\-JP is guaranteed to revert to ASCII at the end of the line, partial
character will never happen when line buffer is used.
.PP
To tell PerlIO to use line buffer, implement \->needs_lines method
for your encoding object.  See  Encode::Encoding for details.
.PP
Thanks to these efforts most encodings that come with Encode support
PerlIO but that still leaves following encodings.
.PP
.Vb 4
\&  iso\-2022\-kr
\&  MIME\-B
\&  MIME\-Header
\&  MIME\-Q
.Ve
.PP
Fortunately iso\-2022\-kr is hardly used (according to Jungshik) and
MIME\-* are very unlikely to be fed to PerlIO because they are for mail
headers.  See Encode::MIME::Header for details.
.SS "How can I tell whether my encoding fully supports PerlIO ?"
.IX Subsection "How can I tell whether my encoding fully supports PerlIO ?"
As of this writing, any encoding whose class belongs to Encode::XS and
Encode::Unicode works.  The Encode module has a \f(CW\*(C`perlio_ok\*(C'\fR method
which you can use before applying PerlIO encoding to the filehandle.
Here is an example:
.PP
.Vb 7
\&  my $use_perlio = perlio_ok($enc);
\&  my $layer = $use_perlio ? "<:raw" : "<:encoding($enc)";
\&  open my $fh, $layer, $file or die "$file : $!";
\&  while(<$fh>){
\&    $_ = decode($enc, $_) unless $use_perlio;
\&    # .... 
\&  }
.Ve
.SH "SEE ALSO"
.IX Header "SEE ALSO"
Encode::Encoding,
Encode::Supported,
Encode::PerlIO, 
encoding,
perlebcdic, 
"open" in perlfunc, 
perlunicode, 
utf8, 
the Perl Unicode Mailing List <perl\-unicode@perl.org>