This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Document $OLD_PERL_VERSION's history
[perl5.git] / perlio.h
1 /*    perlio.h
2  *
3  *    Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003,
4  *    2004, 2005, 2006, 2007, by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  */
10
11 #ifndef _PERLIO_H
12 #define _PERLIO_H
13 /*
14   Interface for perl to IO functions.
15   There is a hierarchy of Configure determined #define controls:
16    USE_STDIO   - forces PerlIO_xxx() to be #define-d onto stdio functions.
17                  This is used for conservative
18                  builds - "just like perl5.00X used to be".
19                  This dominates over the others.
20
21    USE_PERLIO  - The primary Configure variable that enables PerlIO.
22                  If USE_PERLIO is _NOT_ set
23                    then USE_STDIO above will be set to be conservative.
24                  PerlIO_xxx() are real functions
25                  defined in perlio.c which implement extra functionality
26                  required for utf8 support.
27
28    One further note - the table-of-functions scheme controlled
29    by PERL_IMPLICIT_SYS turns on USE_PERLIO so that iperlsys.h can
30    #define PerlIO_xxx() to go via the function table, without having
31    to #undef them from (say) stdio forms.
32
33 */
34
35 #if defined(PERL_IMPLICIT_SYS)
36 #ifndef USE_PERLIO
37 #ifndef NETWARE
38 /* # define USE_PERLIO */
39 #endif
40 #endif
41 #endif
42
43 #ifndef USE_PERLIO
44 # define USE_STDIO
45 #endif
46
47 #ifdef USE_STDIO
48 #  ifndef PERLIO_IS_STDIO
49 #      define PERLIO_IS_STDIO
50 #  endif
51 #endif
52
53 /* --------------------  End of Configure controls ---------------------------- */
54
55 /*
56  * Although we may not want stdio to be used including <stdio.h> here
57  * avoids issues where stdio.h has strange side effects
58  */
59 #include <stdio.h>
60
61 #if defined(USE_64_BIT_STDIO) && defined(HAS_FTELLO) && !defined(USE_FTELL64)
62 #define ftell ftello
63 #endif
64
65 #if defined(USE_64_BIT_STDIO) && defined(HAS_FSEEKO) && !defined(USE_FSEEK64)
66 #define fseek fseeko
67 #endif
68
69 /* BS2000 includes are sometimes a bit non standard :-( */
70 #if defined(POSIX_BC) && defined(O_BINARY) && !defined(O_TEXT)
71 #undef O_BINARY
72 #endif
73
74 #ifdef PERLIO_IS_STDIO
75 /* #define PerlIO_xxxx() as equivalent stdio function */
76 #include "perlsdio.h"
77 #endif                          /* PERLIO_IS_STDIO */
78
79 #ifndef PerlIO
80 /* ----------- PerlIO implementation ---------- */
81 /* PerlIO not #define-d to something else - define the implementation */
82
83 typedef struct _PerlIO PerlIOl;
84 typedef struct _PerlIO_funcs PerlIO_funcs;
85 typedef PerlIOl *PerlIO;
86 #define PerlIO PerlIO
87 #define PERLIO_LAYERS 1
88
89 /* PERLIO_FUNCS_CONST is now on by default for efficiency, PERLIO_FUNCS_CONST
90    can be removed 1 day once stable & then PerlIO vtables are permanently RO */
91 #ifdef PERLIO_FUNCS_CONST
92 #define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs
93 #define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs)
94 #else
95 #define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs
96 #define PERLIO_FUNCS_CAST(funcs) (funcs)
97 #endif
98
99 PERL_CALLCONV void PerlIO_define_layer(pTHX_ PerlIO_funcs *tab);
100 PERL_CALLCONV PerlIO_funcs *PerlIO_find_layer(pTHX_ const char *name,
101                                               STRLEN len,
102                                               int load);
103 PERL_CALLCONV PerlIO *PerlIO_push(pTHX_ PerlIO *f, PERLIO_FUNCS_DECL(*tab),
104                                   const char *mode, SV *arg);
105 PERL_CALLCONV void PerlIO_pop(pTHX_ PerlIO *f);
106 PERL_CALLCONV AV* PerlIO_get_layers(pTHX_ PerlIO *f);
107 PERL_CALLCONV void PerlIO_clone(pTHX_ PerlInterpreter *proto,
108                                 CLONE_PARAMS *param);
109
110 #endif                          /* PerlIO */
111
112 /* ----------- End of implementation choices  ---------- */
113
114 #ifndef PERLIO_IS_STDIO
115 /* Not using stdio _directly_ as PerlIO */
116
117 /* We now need to determine  what happens if source trys to use stdio.
118  * There are three cases based on PERLIO_NOT_STDIO which XS code
119  * can set how it wants.
120  */
121
122 #   ifdef PERL_CORE
123 /* Make a choice for perl core code
124    - currently this is set to try and catch lingering raw stdio calls.
125      This is a known issue with some non UNIX ports which still use
126      "native" stdio features.
127 */
128 #       ifndef PERLIO_NOT_STDIO
129 #           define PERLIO_NOT_STDIO 1
130 #       endif
131     #else
132 #   ifndef PERLIO_NOT_STDIO
133 #       define PERLIO_NOT_STDIO 0
134 #   endif
135 #endif
136
137 #ifdef PERLIO_NOT_STDIO
138 #if PERLIO_NOT_STDIO
139 /*
140  * PERLIO_NOT_STDIO #define'd as 1
141  * Case 1: Strong denial of stdio - make all stdio calls (we can think of) errors
142  */
143 #include "nostdio.h"
144 #else                           /* if PERLIO_NOT_STDIO */
145 /*
146  * PERLIO_NOT_STDIO #define'd as 0
147  * Case 2: Declares that both PerlIO and stdio can be used
148  */
149 #endif                          /* if PERLIO_NOT_STDIO */
150 #else                           /* ifdef PERLIO_NOT_STDIO */
151 /*
152  * PERLIO_NOT_STDIO not defined
153  * Case 3: Try and fake stdio calls as PerlIO calls
154  */
155 #include "fakesdio.h"
156 #endif                          /* ifndef PERLIO_NOT_STDIO */
157 #endif                          /* PERLIO_IS_STDIO */
158
159 /* ----------- fill in things that have not got #define'd  ---------- */
160
161 #ifndef Fpos_t
162 #define Fpos_t Off_t
163 #endif
164
165 #ifndef EOF
166 #define EOF (-1)
167 #endif
168
169 /* This is to catch case with no stdio */
170 #ifndef BUFSIZ
171 #define BUFSIZ 1024
172 #endif
173
174 /* The default buffer size for the perlio buffering layer */
175 #ifndef PERLIOBUF_DEFAULT_BUFSIZ
176 #define PERLIOBUF_DEFAULT_BUFSIZ (BUFSIZ > 8192 ? BUFSIZ : 8192)
177 #endif
178
179 #ifndef SEEK_SET
180 #define SEEK_SET 0
181 #endif
182
183 #ifndef SEEK_CUR
184 #define SEEK_CUR 1
185 #endif
186
187 #ifndef SEEK_END
188 #define SEEK_END 2
189 #endif
190
191 #define PERLIO_DUP_CLONE        1
192 #define PERLIO_DUP_FD           2
193
194 /* --------------------- Now prototypes for functions --------------- */
195
196 START_EXTERN_C
197 #ifndef __attribute__format__
198 #  ifdef HASATTRIBUTE_FORMAT
199 #    define __attribute__format__(x,y,z) __attribute__((format(x,y,z)))
200 #  else
201 #    define __attribute__format__(x,y,z)
202 #  endif
203 #endif
204 #ifndef PerlIO_init
205 PERL_CALLCONV void PerlIO_init(pTHX);
206 #endif
207 #ifndef PerlIO_stdoutf
208 PERL_CALLCONV int PerlIO_stdoutf(const char *, ...)
209     __attribute__format__(__printf__, 1, 2);
210 #endif
211 #ifndef PerlIO_puts
212 PERL_CALLCONV int PerlIO_puts(PerlIO *, const char *);
213 #endif
214 #ifndef PerlIO_open
215 PERL_CALLCONV PerlIO *PerlIO_open(const char *, const char *);
216 #endif
217 #ifndef PerlIO_openn
218 PERL_CALLCONV PerlIO *PerlIO_openn(pTHX_ const char *layers, const char *mode,
219                                    int fd, int imode, int perm, PerlIO *old,
220                                    int narg, SV **arg);
221 #endif
222 #ifndef PerlIO_eof
223 PERL_CALLCONV int PerlIO_eof(PerlIO *);
224 #endif
225 #ifndef PerlIO_error
226 PERL_CALLCONV int PerlIO_error(PerlIO *);
227 #endif
228 #ifndef PerlIO_clearerr
229 PERL_CALLCONV void PerlIO_clearerr(PerlIO *);
230 #endif
231 #ifndef PerlIO_getc
232 PERL_CALLCONV int PerlIO_getc(PerlIO *);
233 #endif
234 #ifndef PerlIO_putc
235 PERL_CALLCONV int PerlIO_putc(PerlIO *, int);
236 #endif
237 #ifndef PerlIO_ungetc
238 PERL_CALLCONV int PerlIO_ungetc(PerlIO *, int);
239 #endif
240 #ifndef PerlIO_fdopen
241 PERL_CALLCONV PerlIO *PerlIO_fdopen(int, const char *);
242 #endif
243 #ifndef PerlIO_importFILE
244 PERL_CALLCONV PerlIO *PerlIO_importFILE(FILE *, const char *);
245 #endif
246 #ifndef PerlIO_exportFILE
247 PERL_CALLCONV FILE *PerlIO_exportFILE(PerlIO *, const char *);
248 #endif
249 #ifndef PerlIO_findFILE
250 PERL_CALLCONV FILE *PerlIO_findFILE(PerlIO *);
251 #endif
252 #ifndef PerlIO_releaseFILE
253 PERL_CALLCONV void PerlIO_releaseFILE(PerlIO *, FILE *);
254 #endif
255 #ifndef PerlIO_read
256 PERL_CALLCONV SSize_t PerlIO_read(PerlIO *, void *, Size_t);
257 #endif
258 #ifndef PerlIO_unread
259 PERL_CALLCONV SSize_t PerlIO_unread(PerlIO *, const void *, Size_t);
260 #endif
261 #ifndef PerlIO_write
262 PERL_CALLCONV SSize_t PerlIO_write(PerlIO *, const void *, Size_t);
263 #endif
264 #ifndef PerlIO_setlinebuf
265 PERL_CALLCONV void PerlIO_setlinebuf(PerlIO *);
266 #endif
267 #ifndef PerlIO_printf
268 PERL_CALLCONV int PerlIO_printf(PerlIO *, const char *, ...)
269     __attribute__format__(__printf__, 2, 3);
270 #endif
271 #ifndef PerlIO_vprintf
272 PERL_CALLCONV int PerlIO_vprintf(PerlIO *, const char *, va_list);
273 #endif
274 #ifndef PerlIO_tell
275 PERL_CALLCONV Off_t PerlIO_tell(PerlIO *);
276 #endif
277 #ifndef PerlIO_seek
278 PERL_CALLCONV int PerlIO_seek(PerlIO *, Off_t, int);
279 #endif
280 #ifndef PerlIO_rewind
281 PERL_CALLCONV void PerlIO_rewind(PerlIO *);
282 #endif
283 #ifndef PerlIO_has_base
284 PERL_CALLCONV int PerlIO_has_base(PerlIO *);
285 #endif
286 #ifndef PerlIO_has_cntptr
287 PERL_CALLCONV int PerlIO_has_cntptr(PerlIO *);
288 #endif
289 #ifndef PerlIO_fast_gets
290 PERL_CALLCONV int PerlIO_fast_gets(PerlIO *);
291 #endif
292 #ifndef PerlIO_canset_cnt
293 PERL_CALLCONV int PerlIO_canset_cnt(PerlIO *);
294 #endif
295 #ifndef PerlIO_get_ptr
296 PERL_CALLCONV STDCHAR *PerlIO_get_ptr(PerlIO *);
297 #endif
298 #ifndef PerlIO_get_cnt
299 PERL_CALLCONV SSize_t PerlIO_get_cnt(PerlIO *);
300 #endif
301 #ifndef PerlIO_set_cnt
302 PERL_CALLCONV void PerlIO_set_cnt(PerlIO *, SSize_t);
303 #endif
304 #ifndef PerlIO_set_ptrcnt
305 PERL_CALLCONV void PerlIO_set_ptrcnt(PerlIO *, STDCHAR *, SSize_t);
306 #endif
307 #ifndef PerlIO_get_base
308 PERL_CALLCONV STDCHAR *PerlIO_get_base(PerlIO *);
309 #endif
310 #ifndef PerlIO_get_bufsiz
311 PERL_CALLCONV SSize_t PerlIO_get_bufsiz(PerlIO *);
312 #endif
313 #ifndef PerlIO_tmpfile
314 PERL_CALLCONV PerlIO *PerlIO_tmpfile(void);
315 #endif
316 #ifndef PerlIO_stdin
317 PERL_CALLCONV PerlIO *PerlIO_stdin(void);
318 #endif
319 #ifndef PerlIO_stdout
320 PERL_CALLCONV PerlIO *PerlIO_stdout(void);
321 #endif
322 #ifndef PerlIO_stderr
323 PERL_CALLCONV PerlIO *PerlIO_stderr(void);
324 #endif
325 #ifndef PerlIO_getpos
326 PERL_CALLCONV int PerlIO_getpos(PerlIO *, SV *);
327 #endif
328 #ifndef PerlIO_setpos
329 PERL_CALLCONV int PerlIO_setpos(PerlIO *, SV *);
330 #endif
331 #ifndef PerlIO_fdupopen
332 PERL_CALLCONV PerlIO *PerlIO_fdupopen(pTHX_ PerlIO *, CLONE_PARAMS *, int);
333 #endif
334 #if !defined(PerlIO_modestr) && !defined(PERLIO_IS_STDIO)
335 PERL_CALLCONV char *PerlIO_modestr(PerlIO *, char *buf);
336 #endif
337 #ifndef PerlIO_isutf8
338 PERL_CALLCONV int PerlIO_isutf8(PerlIO *);
339 #endif
340 #ifndef PerlIO_apply_layers
341 PERL_CALLCONV int PerlIO_apply_layers(pTHX_ PerlIO *f, const char *mode,
342                                       const char *names);
343 #endif
344 #ifndef PerlIO_binmode
345 PERL_CALLCONV int PerlIO_binmode(pTHX_ PerlIO *f, int iotype, int omode,
346                                  const char *names);
347 #endif
348 #ifndef PerlIO_getname
349 PERL_CALLCONV char *PerlIO_getname(PerlIO *, char *);
350 #endif
351
352 PERL_CALLCONV void PerlIO_destruct(pTHX);
353
354 PERL_CALLCONV int PerlIO_intmode2str(int rawmode, char *mode, int *writing);
355
356 #ifdef PERLIO_LAYERS
357 PERL_CALLCONV void PerlIO_cleanup(pTHX);
358
359 PERL_CALLCONV void PerlIO_debug(const char *fmt, ...)
360     __attribute__format__(__printf__, 1, 2);
361 typedef struct PerlIO_list_s PerlIO_list_t;
362
363
364 #endif
365
366 END_EXTERN_C
367 #endif                          /* _PERLIO_H */
368
369 /*
370  * ex: set ts=8 sts=4 sw=4 et:
371  */