This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Retract #12436 (Abhijit already did this at #12426)
[perl5.git] / lib / PerlIO.pm
... / ...
CommitLineData
1package PerlIO;
2
3# Map layer name to package that defines it
4my %alias = (encoding => 'Encode');
5
6sub import
7{
8 my $class = shift;
9 while (@_)
10 {
11 my $layer = shift;
12 if (exists $alias{$layer})
13 {
14 $layer = $alias{$layer}
15 }
16 else
17 {
18 $layer = "${class}::$layer";
19 }
20 eval "require $layer";
21 warn $@ if $@;
22 }
23}
24
251;
26__END__
27
28=head1 NAME
29
30PerlIO - On demand loader for PerlIO layers and root of PerlIO::* name space
31
32=head1 SYNOPSIS
33
34 open($fh,">:crlf","my.txt")
35 open($fh,">:raw","his.jpg")
36
37 Shell:
38 PERLIO=perlio perl ....
39
40=head1 DESCRIPTION
41
42When an undefined layer 'foo' is encountered in an C<open> or
43C<binmode> layer specification then C code performs the equivalent of:
44
45 use PerlIO 'foo';
46
47The perl code in PerlIO.pm then attempts to locate a layer by doing
48
49 require PerlIO::foo;
50
51Otherwise the C<PerlIO> package is a place holder for additional
52PerlIO related functions.
53
54The following layers are currently defined:
55
56=over 4
57
58=item unix
59
60Low level layer which calls C<read>, C<write> and C<lseek> etc.
61
62=item stdio
63
64Layer which calls C<fread>, C<fwrite> and C<fseek>/C<ftell> etc. Note
65that as this is "real" stdio it will ignore any layers beneath it and
66got straight to the operating system via the C library as usual.
67
68=item perlio
69
70This is a re-implementation of "stdio-like" buffering written as a
71PerlIO "layer". As such it will call whatever layer is below it for
72its operations.
73
74=item crlf
75
76A layer which does CRLF to "\n" translation distinguishing "text" and
77"binary" files in the manner of MS-DOS and similar operating systems.
78
79=item utf8
80
81Declares that the stream accepts perl's internal encoding of
82characters. (Which really is UTF-8 on ASCII machines, but is
83UTF-EBCDIC on EBCDIC machines.) This allows any character perl can
84represent to be read from or written to the stream. The UTF-X encoding
85is chosen to render simple text parts (i.e. non-accented letters,
86digits and common punctuation) human readable in the encoded file.
87
88Here is how to write your native data out using UTF-8 (or UTF-EBCDIC)
89and then read it back in.
90
91 open(F, ">:utf8", "data.utf");
92 print F $out;
93 close(F);
94
95 open(F, "<:utf8", "data.utf");
96 $in = <F>;
97 close(F);
98
99=item raw
100
101A pseudo-layer which performs two functions (which is messy, but
102necessary to maintain compatibility with non-PerlIO builds of Perl
103and their way things have been documented elsewhere).
104
105Firstly it forces the file handle to be considered binary at that
106point in the layer stack,
107
108Secondly in prevents the IO system seaching back before it in the
109layer specification. Thus:
110
111 open($fh,":raw:perlio",...)
112
113Forces the use of C<perlio> layer even if the platform default, or
114C<use open> default is something else (such as ":encoding(iso-8859-7)")
115(the C<:encoding> requires C<use Encode>) which would interfere with
116binary nature of the stream.
117
118=back
119
120=head2 Defaults and how to override them
121
122If the platform is MS-DOS like and normally does CRLF to "\n"
123translation for text files then the default layers are :
124
125 unix crlf
126
127(The low level "unix" layer may be replaced by a platform specific low
128level layer.)
129
130Otherwise if C<Configure> found out how to do "fast" IO using system's
131stdio, then the default layers are :
132
133 unix stdio
134
135Otherwise the default layers are
136
137 unix perlio
138
139These defaults may change once perlio has been better tested and tuned.
140
141The default can be overridden by setting the environment variable
142PERLIO to a space separated list of layers (unix or platform low level
143layer is always pushed first).
144
145This can be used to see the effect of/bugs in the various layers e.g.
146
147 cd .../perl/t
148 PERLIO=stdio ./perl harness
149 PERLIO=perlio ./perl harness
150
151=head1 AUTHOR
152
153Nick Ing-Simmons E<lt>nick@ing-simmons.netE<gt>
154
155=head1 SEE ALSO
156
157L<perlfunc/"binmode">, L<perlfunc/"open">, L<perlunicode>, L<Encode>
158
159=cut
160