Update Changes.
[p5sagit/p5-mst-13.2.git] / pod / perliol.pod
CommitLineData
50b80e25 1
2=head1 NAME
3
4perliol - C API for Perl's implementation of IO in Layers.
5
6=head1 SYNOPSIS
7
8 /* Defining a layer ... */
9 #include <perliol.h>
10
11
12=head1 DESCRIPTION
13
14This document describes the behavior and implementation of the PerlIO abstraction
15described in L<perlapio> when C<USE_PERLIO> is defined (and C<USE_SFIO> is not).
16
17=head2 History and Background
18
19The PerlIO abstraction was introduced in perl5.003_02 but languished as just
20an abstraction until perl5.7.0. However during that time a number of perl extenstions
21switch to using it, so the API is mostly fixed to maintain (source) compatibility.
22
23The aim of the implementation is to provide the PerlIO API in a flexible and
24platform neutral manner. It is also a trial of an "Object Oriented C, with vtables"
25approach which may be applied to perl6.
26
27=head2 Layers vs Disciplines
28
29Initial discussion of the ability to modify IO streams behaviour used the term
30"discipline" for the entities which were added. This came (I believe) from the use
31of the term in "sfio", which in turn borowed it from "line disciplines" on Unix
32terminals. However, this document (and the C code) uses the term "layer".
33This is I hope a natural term given the implementation, and should avoid conotations
34that are inherent in earlier uses of "discipline" for things which are rather different.
35
36=head2 Data Structures
37
38The basic data structure is a PerlIOl:
39
40 typedef struct _PerlIO PerlIOl;
41 typedef struct _PerlIO_funcs PerlIO_funcs;
42 typedef PerlIOl *PerlIO;
43
44 struct _PerlIO
45 {
46 PerlIOl * next; /* Lower layer */
47 PerlIO_funcs * tab; /* Functions for this layer */
48 IV flags; /* Various flags for state */
49 };
50
51A PerlIOl * is a pointer to to the struct, and the I<application> level PerlIO *
52is a pointer to a PerlIOl * - i.e. a pointer to a pointer to the struct.
53This allows the application level PerlIO * to remain constant while the actual
54PerlIOl * underneath changes. (Compare perl's SV * which remains constant
55while its sv_any field changes as the scalar's type changes.)
56An IO stream is then in general represented as a pointer to this linked-list
57of "layers".
58
59It should be noted that because of the double indirection in a PerlIO *,
60a &(perlio->next) "is" a PerlIO *, and so to some degree at least
61one layer can use the "standard" API on the next layer down.
62
63A "layer" is composed of two parts:
64
65=over 4
66
67=item 1. The functions and attributes of the "layer class".
68
69=item 2. The per-instance data for a particular handle.
70
71=back
72
73=head2 Functions and Attributes
74
75The functions and attributes are accessed via the "tab" (for table) member of
76PerlIOl. The functions (methods of the layer "class") are fixed, and are defined by the
77PerlIO_funcs type. They are broadly the same as the public PerlIO_xxxxx functions:
78
79 struct _PerlIO_funcs
80 {
81 char * name;
82 Size_t size;
83 IV kind;
84 IV (*Fileno)(PerlIO *f);
85 PerlIO * (*Fdopen)(PerlIO_funcs *tab, int fd, const char *mode);
86 PerlIO * (*Open)(PerlIO_funcs *tab, const char *path, const char *mode);
87 int (*Reopen)(const char *path, const char *mode, PerlIO *f);
88 IV (*Pushed)(PerlIO *f,const char *mode,const char *arg,STRLEN len);
89 IV (*Popped)(PerlIO *f);
90 /* Unix-like functions - cf sfio line disciplines */
91 SSize_t (*Read)(PerlIO *f, void *vbuf, Size_t count);
92 SSize_t (*Unread)(PerlIO *f, const void *vbuf, Size_t count);
93 SSize_t (*Write)(PerlIO *f, const void *vbuf, Size_t count);
94 IV (*Seek)(PerlIO *f, Off_t offset, int whence);
95 Off_t (*Tell)(PerlIO *f);
96 IV (*Close)(PerlIO *f);
97 /* Stdio-like buffered IO functions */
98 IV (*Flush)(PerlIO *f);
99 IV (*Fill)(PerlIO *f);
100 IV (*Eof)(PerlIO *f);
101 IV (*Error)(PerlIO *f);
102 void (*Clearerr)(PerlIO *f);
103 void (*Setlinebuf)(PerlIO *f);
104 /* Perl's snooping functions */
105 STDCHAR * (*Get_base)(PerlIO *f);
106 Size_t (*Get_bufsiz)(PerlIO *f);
107 STDCHAR * (*Get_ptr)(PerlIO *f);
108 SSize_t (*Get_cnt)(PerlIO *f);
109 void (*Set_ptrcnt)(PerlIO *f,STDCHAR *ptr,SSize_t cnt);
110 };
111
112The first few members of the struct give a "name" for the layer, the size to C<malloc>
113for the per-instance data, and some flags which are attributes of the class as whole
114(such as whether it is a buffering layer), then follow the functions which fall into
115four basic groups:
116
117=over 4
118
119=item 1. Opening and setup functions
120
121=item 2. Basic IO operations
122
123=item 3. Stdio class buffering options.
124
125=item 4. Functions to support Perl's traditional "fast" access to the buffer.
126
127=back
128
129A layer does not have to implement all the functions, but the whole table has
130to be present. Unimplemented slots can be NULL (which will will result in an error
131when called) or can be filled in with stubs to "inherit" behaviour from
132a "base class". This "inheritance" is fixed for all instances of the layer,
133but as the layer chooses which stubs to populate the table, limited
134"multiple inheritance" is possible.
135
136=head2 Per-instance Data
137
138The per-instance data are held in memory beyond the basic PerlIOl struct,
139by making a PerlIOl the first member of the layer's struct thus:
140
141 typedef struct
142 {
143 struct _PerlIO base; /* Base "class" info */
144 STDCHAR * buf; /* Start of buffer */
145 STDCHAR * end; /* End of valid part of buffer */
146 STDCHAR * ptr; /* Current position in buffer */
147 Off_t posn; /* Offset of buf into the file */
148 Size_t bufsiz; /* Real size of buffer */
149 IV oneword; /* Emergency buffer */
150 } PerlIOBuf;
151
152In this way (as for perl's scalars) a pointer to a PerlIOBuf can be treated
153as a pointer to a PerlIOl.
154
155=head2 Layers in action.
156
157 table perlio unix
158 | |
159 +-----------+ +----------+ +--------+
160 PerlIO ->| |--->| next |--->| NULL |
161 +-----------+ +----------+ +--------+
162 | | | buffer | | fd |
163 +-----------+ | | +--------+
164 | | +----------+
165
166
167The above attempts to show how the layer scheme works in a simple case.
168The applications PerlIO * points to an entry in the table(s) representing open
169(allocated) handles. For example the first three slots in the table correspond
170to C<stdin>,C<stdout> and C<stderr>. The table in turn points to the current
171"top" layer for the handle - in this case an instance of the generic buffering
172layer "perlio". That layer in turn points to the next layer down - in this
173case the lowlevel "unix" layer.
174
175The above is roughly equivalent to a "stdio" buffered stream, but with much more
176flexibility:
177
178=over 4
179
180=item *
181
182If Unix level read/write/lseek is not appropriate for (say) sockets then
183the "unix" layer can be replaced (at open time or even dynamically) with a
184"socket" layer.
185
186=item *
187
188Different handles can have different buffering schemes. The "top" layer
189could be the "mmap" layer if reading disk files was quicker using C<mmap>
190than C<read>. An "unbuffered" stream can be implemented simply by
191not having a buffer layer.
192
193=item *
194
195Extra layers can be inserted to process the data as it flows through.
196This was the driving need for including the scheme in perkl5.70+ - we needed a mechanism
197to allow data to be translated bewteen perl's internal encoding (conceptually
198at least Unicode as UTF-8), and the "native" format used by the system.
199This is provided by the ":encoding(xxxx)" layer which typically sits above
200the buffering layer.
201
202=item *
203
204A layer can be added that does "\n" to CRLF translation. This layer can be used
205on any platform, not just those that normally do such things.
206
207=back
208
209=head2 Per-instance flag bits
210
211The generic flag bits are a hybrid of O_XXXXX style flags deduced from
212the mode string passed to PerlIO_open() and state bits for typical buffer
213layers.
214
215=over4
216
217=item PERLIO_F_EOF
218
219End of file.
220
221=item PERLIO_F_CANWRITE
222
223Writes are permited i.e. opened as "w" or "r+" or "a". etc.
224
225=item PERLIO_F_CANREAD
226
227Reads are permited i.e. opened "r" or "w+" (or even "a+" - ick).
228
229=item PERLIO_F_ERROR
230
231An error has occured (for PerlIO_error())
232
233=item PERLIO_F_TRUNCATE
234
235Truncate file suggested by open mode.
236
237=item PERLIO_F_APPEND
238
239All writes should be appends.
240
241=item PERLIO_F_CRLF
242
243Layer is performing Win32-like "\n" => CR,LF for output and CR,LF => "\n" for
244input. Normally the provided "crlf" layer is only layer than need bother about
245this. PerlIO_binmode() will mess with this flag rather than add/remove layers
246if the PERLIO_K_CANCRLF bit is set for the layers class.
247
248=item PERLIO_F_UTF8
249
250Data for this written to this layer should be UTF-8 encoded, data provided
251by this layer should be considered UTF-8 encoded. Can be set on any layer
252by ":utf8" dummy layer. Also set on ":encoding" layer.
253
254=item PERLIO_F_UNBUF
255
256Layer is unbuffered - i.e. write to next layer down should occur for
257each write to this layer.
258
259=item PERLIO_F_WRBUF
260
261The buffer for this layer currently holds data written to it but not sent
262to next layer.
263
264=item PERLIO_F_RDBUF
265
266The buffer for this layer currently holds unconsumed data read from
267layer below.
268
269=item PERLIO_F_LINEBUF
270
271Layer is line buffered. Write data should be passed to next layer down whenever a
272"\n" is seen. Any data beyond the "\n" should then be processed.
273
274=item PERLIO_F_TEMP
275
276File has been unlink()ed, or should be deleted on close().
277
278=item PERLIO_F_OPEN
279
280Handle is open.
281
282=item PERLIO_F_FASTGETS
283
284This instance of this layer supports the "fast gets" interface.
285Normally set based on PERLIO_K_FASTGETS for the class and by the
286existance of the function(s) in the table. However a class that
287normally provides that interface may need to avoid it on a
288particular instance. The "pending" layer needs to do this when
289it is pushed above an layer which does not support the interface.
290(Perls sv_gets() does not expect the steams fast gets behaviour
291to change during one "get".)
292
293=back
294
295=head2 Methods in Detail
296
297=over 4
298
299=item IV (*Fileno)(PerlIO *f);
300
301Returns the Unix/Posix numeric file decriptor for the handle.
302Normally PerlIOBase_fileno() (which just asks next layer down) will suffice for this.
303
304=item PerlIO * (*Fdopen)(PerlIO_funcs *tab, int fd, const char *mode);
305
306Should (perhaps indirectly) call PerlIO_allocate() to allocate a slot
307in the table and associate it with the given numeric file descriptor,
308which will be open in an manner compatible with the supplied mode string.
309
310=item PerlIO * (*Open)(PerlIO_funcs *tab, const char *path, const char *mode);
311
312Should attempt to open the given path and if that succeeds then (perhaps indirectly)
313call PerlIO_allocate() to allocate a slot in the table and associate it with the
314layers information for the opened file.
315
316=item int (*Reopen)(const char *path, const char *mode, PerlIO *f);
317
318Re-open the supplied PerlIO * to connect it to C<path> in C<mode>. Returns as success flag.
319Perl does not use this and L<perlapio> marks it as subject to change.
320
321=item IV (*Pushed)(PerlIO *f,const char *mode,const char *arg,STRLEN len);
322
323Called when the layer is pushed onto the stack. The C<mode> argument may be NULL if this
324occurs post-open. The C<arg> and C<len> will be present if an argument string was
325passed. In most cases this should call PerlIOBase_pushed() to conver C<mode> into
326the appropriate PERLIO_F_XXXXX flags in addition to any actions the layer itself takes.
327
328=item IV (*Popped)(PerlIO *f);
329
330Called when the layer is popped from the stack. A layer will normally be popped after
331Close() is called. But a layer can be popped without being closed if the program
332is dynamically managing layers on the stream. In such cases Popped() should free
333any resources (buffers, translation tables, ...) not held directly in the layer's
334struct.
335
336=item SSize_t (*Read)(PerlIO *f, void *vbuf, Size_t count);
337
338Basic read operation. Returns actual bytes read, or -1 on an error.
339Typically will call Fill and manipulate pointers (possibly via the API).
340PerlIOBuf_read() may be suitable for derived classes which provide "fast gets" methods.
341
342=item SSize_t (*Unread)(PerlIO *f, const void *vbuf, Size_t count);
343
344A superset of stdio's ungetc(). Should arrange for future reads to see the bytes in C<vbuf>.
345If there is no obviously better implementation then PerlIOBase_unread() provides
346the function by pushing a "fake" "pending" layer above the calling layer.
347
348=item SSize_t (*Write)(PerlIO *f, const void *vbuf, Size_t count);
349
350Basic write operation. Returns bytes written or -1 on an error.
351
352=item IV (*Seek)(PerlIO *f, Off_t offset, int whence);
353
354Position the file pointer. Should normally call its own Flush method and
355then the Seek method of next layer down.
356
357=item Off_t (*Tell)(PerlIO *f);
358
359Return the file pointer. May be based on layers cached concept of position to
360avoid overhead.
361
362=item IV (*Close)(PerlIO *f);
363
364Close the stream. Should normally call PerlIOBase_close() to flush itself
365and Close layers below and then deallocate any data structures (buffers, translation
366tables, ...) not held directly in the data structure.
367
368=item IV (*Flush)(PerlIO *f);
369
370Should make streams state consistent with layers below. That is any
371buffered write data should be written, and file position of lower layer
372adjusted for data read fron below but not actually consumed.
373
374=item IV (*Fill)(PerlIO *f);
375
376The buffer for this layer should be filled (for read) from layer below.
377
378=item IV (*Eof)(PerlIO *f);
379
380Return end-of-file indicator. PerlIOBase_eof() is normally sufficient.
381
382=item IV (*Error)(PerlIO *f);
383
384Return error indicator. PerlIOBase_error() is normally sufficient.
385
386=item void (*Clearerr)(PerlIO *f);
387
388Clear end-of-file and error indicators. Should call PerlIOBase_clearerr()
389to set the PERLIO_F_XXXXX flags, which may suffice.
390
391=item void (*Setlinebuf)(PerlIO *f);
392
393Mark the stream as line buffered.
394
395=item STDCHAR * (*Get_base)(PerlIO *f);
396
397Allocate (if not already done so) the read buffer for this layer and
398return pointer to it.
399
400=item Size_t (*Get_bufsiz)(PerlIO *f);
401
402Return the number of bytes that last Fill() put in the buffer.
403
404=item STDCHAR * (*Get_ptr)(PerlIO *f);
405
406Return the current read pointer relative to this layers buffer.
407
408=item SSize_t (*Get_cnt)(PerlIO *f);
409
410Return the number of bytes left to be read in the current buffer.
411
412=item void (*Set_ptrcnt)(PerlIO *f,STDCHAR *ptr,SSize_t cnt);
413
414Adjust the read pointer and count of bytes to match C<ptr> and/or C<cnt>.
415The application (or layer above) must ensure they are consistent.
416(Checking is allowed by the paranoid.)
417
418=back
419
420
421=head2 Core Layers
422
423The file C<perlio.c> provides the following layers:
424
425=over 4
426
427=item "unix"
428
429A basic non-buffered layer which calls Unix/POSIX read(), write(), lseek(), close().
430No buffering. Even on platforms that distinguish between O_TEXT and O_BINARY
431this layer is always O_BINARY.
432
433=item "perlio"
434
435A very complete generic buffering layer which provides the whole of PerlIO API.
436It is also intended to be used as a "base class" for other layers. (For example
437its Read() method is implemented in terms of the Get_cnt()/Get_ptr()/Set_ptrcnt()
438methods).
439
440"perlio" over "unix" provides a complete replacement for stdio as seen via PerlIO API.
441This is the default for USE_PERLIO when system's stdio does not permit perl's
442"fast gets" access, and which do not distinguish between O_TEXT and O_BINARY.
443
444=item "stdio"
445
446A layer which provides the PerlIO API via the layer scheme, but implements it by calling
447system's stdio. This is (currently) the default if system's stdio provides sufficient
448access to allow perl's "fast gets" access and which do not distinguish between O_TEXT and
449O_BINARY.
450
451=item "crlf"
452
453A layer derived using "perlio" as a base class. It provides Win32-like "\n" to CR,LF
454translation. Can either be applied above "perlio" or serve as the buffer layer itself.
455"crlf" over "unix" is the default if system distinguishes between O_TEXT and O_BINARY
456opens. (At some point "unix" will be replaced by a "native" Win32 IO layer on that
457platform, as Win32's read/write layer has various drawbacks.)
458The "crlf" layer is a reasonable model for a layer which transforms data in some way.
459
460=item "mmap"
461
462If Configure detects C<mmap()> functions this layer is provided (with "perlio" as a
463"base") which does "read" operations by mmap()ing the file. Performance improvement
464is marginal on modern systems, so it is mainly there as a proof of concept.
465It is likely to be unbundled from the core at some point.
466The "mmap" layer is a reasonable model for a minimalist "derived" layer.
467
468=item "pending"
469
470An "internal" derivative of "perlio" which can be used to provide Unread() function
471for layers which have no buffer or cannot be bothered.
472(Basically this layer's Fill() pops itself off the stack and so resumes reading
473from layer below.)
474
475=item "raw"
476
477A dummy layer which never exists on the layer stack. Instead when "pushed" it
478actually pops the stack!, removing itself, and any other layers until it reaches
479a layer with the class PERLIO_K_RAW bit set.
480
481=item "utf8"
482
483Another dummy layer. When pushed it pops itself and sets the PERLIO_F_UTF8 flag
484on the layer which was (and now is once more) the top of the stack.
485
486=back
487
488In addition C<perlio.c> also provides a number of PerlIOBase_xxxx() functions
489which are intended to be used in the table slots of classes which do not need
490to do anything special for a particular method.
491
492=head2 Extension Layers
493
494Layers can made available by extension modules.
495
496=over 4
497
498=item "encoding"
499
500 use Encoding;
501
502makes this layer available. It is an example of a layer which takes an argument.
503as it is called as:
504
505 open($fh,"<:encoding(iso-8859-7)",$pathname)
506
507=back
508
509
510=cut
511
512
513