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