6 require 5.008001; # for PerlIO::get_layers()
11 return ($1, Encode::resolve_alias($1)) if $_[0] =~ /^:?encoding\((.+)\)$/;
16 require Carp; goto &Carp::croak;
20 # If by the time we arrive here there already is at the top of the
21 # perlio layer stack an encoding identical to what we would like
22 # to push via this open pragma, we will pop away the old encoding
23 # (+utf8) so that we can push ourselves in place (this is easier
24 # than ignoring pushing ourselves because of the way how ${^OPEN}
25 # works). So we are looking for something like
27 # stdio encoding(xxx) utf8
29 # in the existing layer stack, and in the new stack chunk for
33 # If we find a match, we pop the old stack (once, since
34 # the utf8 is just a flag on the encoding layer)
36 return unless @new >= 1 && $new[-1] =~ /^:encoding\(.+\)$/;
37 my @old = PerlIO::get_layers($h);
38 return unless @old >= 3 &&
40 $old[-2] =~ /^encoding\(.+\)$/;
42 my ($loname, $lcname) = _get_encname($old[-2]);
43 unless (defined $lcname) { # Should we trust get_layers()?
44 croak("open: Unknown encoding '$loname'");
46 my ($voname, $vcname) = _get_encname($new[-1]);
47 unless (defined $vcname) {
48 croak("open: Unknown encoding '$voname'");
50 if ($lcname eq $vcname) {
51 binmode($h, ":pop"); # utf8 is part of the encoding layer
56 my ($class,@args) = @_;
57 croak("open: needs explicit list of PerlIO layers") unless @args;
59 my ($in,$out) = split(/\0/,(${^OPEN} || "\0"), -1);
61 my $type = shift(@args);
63 if ($type =~ /^:?(utf8|locale|encoding\(.+\))$/) {
66 } elsif ($type eq ':std') {
70 $dscp = shift(@args) || '';
73 foreach my $layer (split(/\s+/,$dscp)) {
75 if ($layer eq 'locale') {
78 $locale_encoding = encoding::_get_locale_encoding()
79 unless defined $locale_encoding;
80 (warnings::warnif("layer", "Cannot figure out an encoding to use"), last)
81 unless defined $locale_encoding;
82 $layer = "encoding($locale_encoding)";
85 my $target = $layer; # the layer name itself
86 $target =~ s/^(\w+)\(.+\)$/$1/; # strip parameters
88 unless(PerlIO::Layer::->find($target,1)) {
89 warnings::warnif("layer", "Unknown PerlIO layer '$target'");
93 if ($layer =~ /^(crlf|raw)$/) {
94 $^H{"open_$type"} = $layer;
98 _drop_oldenc(*STDIN, @val);
99 $in = join(' ', @val);
101 elsif ($type eq 'OUT') {
102 _drop_oldenc(*STDOUT, @val);
103 $out = join(' ', @val);
105 elsif ($type eq 'IO') {
106 _drop_oldenc(*STDIN, @val);
107 _drop_oldenc(*STDOUT, @val);
108 $in = $out = join(' ', @val);
111 croak "Unknown PerlIO layer class '$type'";
114 ${^OPEN} = join("\0", $in, $out);
117 if ($in =~ /:utf8\b/) {
118 binmode(STDIN, ":utf8");
119 } elsif ($in =~ /(\w+\(.+\))/) {
120 binmode(STDIN, ":$1");
124 if ($out =~ /:utf8\b/) {
125 binmode(STDOUT, ":utf8");
126 binmode(STDERR, ":utf8");
127 } elsif ($out =~ /(\w+\(.+\))/) {
128 binmode(STDOUT, ":$1");
129 binmode(STDERR, ":$1");
140 open - perl pragma to set default PerlIO layers for input and output
144 use open IN => ":crlf", OUT => ":bytes";
145 use open OUT => ':utf8';
146 use open IO => ":encoding(iso-8859-7)";
148 use open IO => ':locale';
150 use open ':encoding(utf8)';
152 use open ':encoding(iso-8859-7)';
158 Full-fledged support for I/O layers is now implemented provided
159 Perl is configured to use PerlIO as its IO system (which is now the
162 The C<open> pragma serves as one of the interfaces to declare default
163 "layers" (also known as "disciplines") for all I/O. Any two-argument
164 open(), readpipe() (aka qx//) and similar operators found within the
165 lexical scope of this pragma will use the declared defaults.
166 Even three-argument opens may be affected by this pragma
167 when they don't specify IO layers in MODE.
169 With the C<IN> subpragma you can declare the default layers
170 of input streams, and with the C<OUT> subpragma you can declare
171 the default layers of output streams. With the C<IO> subpragma
172 you can control both input and output streams simultaneously.
174 If you have a legacy encoding, you can use the C<:encoding(...)> tag.
176 If you want to set your encoding layers based on your
177 locale environment variables, you can use the C<:locale> tag.
180 $ENV{LANG} = 'ru_RU.KOI8-R';
181 # the :locale will probe the locale environment variables like LANG
182 use open OUT => ':locale';
184 print O chr(0x430); # Unicode CYRILLIC SMALL LETTER A = KOI8-R 0xc1
187 printf "%#x\n", ord(<I>), "\n"; # this should print 0xc1
192 use open ':encoding(utf8)';
193 use open IO => ':encoding(utf8)';
198 use open IO => ':locale';
202 use open ':encoding(iso-8859-7)';
203 use open IO => ':encoding(iso-8859-7)';
205 The matching of encoding names is loose: case does not matter, and
206 many encodings have several aliases. See L<Encode::Supported> for
207 details and the list of supported locales.
209 When open() is given an explicit list of layers (with the three-arg
210 syntax), they override the list declared using this pragma.
212 The C<:std> subpragma on its own has no effect, but if combined with
213 the C<:utf8> or C<:encoding> subpragmas, it converts the standard
214 filehandles (STDIN, STDOUT, STDERR) to comply with encoding selected
215 for input/output handles. For example, if both input and out are
216 chosen to be C<:encoding(utf8)>, a C<:std> will mean that STDIN, STDOUT,
217 and STDERR are also in C<:encoding(utf8)>. On the other hand, if only
218 output is chosen to be in C<< :encoding(koi8r) >>, a C<:std> will cause
219 only the STDOUT and STDERR to be in C<koi8r>. The C<:locale> subpragma
220 implicitly turns on C<:std>.
222 The logic of C<:locale> is described in full in L<encoding>,
223 but in short it is first trying nl_langinfo(CODESET) and then
224 guessing from the LC_ALL and LANG locale environment variables.
226 Directory handles may also support PerlIO layers in the future.
228 =head1 NONPERLIO FUNCTIONALITY
230 If Perl is not built to use PerlIO as its IO system then only the two
231 pseudo-layers C<:bytes> and C<:crlf> are available.
233 The C<:bytes> layer corresponds to "binary mode" and the C<:crlf>
234 layer corresponds to "text mode" on platforms that distinguish
235 between the two modes when opening files (which is many DOS-like
236 platforms, including Windows). These two layers are no-ops on
237 platforms where binmode() is a no-op, but perform their functions
238 everywhere if PerlIO is enabled.
240 =head1 IMPLEMENTATION DETAILS
242 There is a class method in C<PerlIO::Layer> C<find> which is
243 implemented as XS code. It is called by C<import> to validate the
246 PerlIO::Layer::->find("perlio")
248 The return value (if defined) is a Perl object, of class
249 C<PerlIO::Layer> which is created by the C code in F<perlio.c>. As
250 yet there is nothing useful you can do with the object at the perl
255 L<perlfunc/"binmode">, L<perlfunc/"open">, L<perlunicode>, L<PerlIO>,