4 Interface for perl to IO functions.
5 There is a hierachy of Configure determined #define controls:
6 USE_STDIO - forces PerlIO_xxx() to be #define-d onto stdio functions.
7 This is used for x2p subdirectory and for conservative
8 builds - "just like perl5.00X used to be".
9 This dominates over the others.
11 USE_PERLIO - The primary Configure variable that enables PerlIO.
12 If USE_PERLIO is _NOT_ set
13 then USE_STDIO above will be set to be conservative.
15 then there are two modes determined by USE_SFIO:
17 USE_SFIO - If set causes PerlIO_xxx() to be #define-d onto sfio functions.
18 A backward compatability mode for some specialist applications.
20 If USE_SFIO is not set then PerlIO_xxx() are real functions
21 defined in perlio.c which implement extra functionality
22 required for utf8 support.
24 One further note - the table-of-functions scheme controlled
25 by PERL_IMPLICIT_SYS turns on USE_PERLIO so that iperlsys.h can
26 #define PerlIO_xxx() to go via the function table, without having
27 to #undef them from (say) stdio forms.
31 #if defined(PERL_IMPLICIT_SYS)
42 # ifndef PERLIO_IS_STDIO
43 # define PERLIO_IS_STDIO
47 /* -------------------- End of Configure controls ---------------------------- */
50 * Although we may not want stdio to be used including <stdio.h> here
51 * avoids issues where stdio.h has strange side effects
55 #if defined(USE_64_BIT_STDIO) && defined(HAS_FTELLO) && !defined(USE_FTELL64)
59 #if defined(USE_64_BIT_STDIO) && defined(HAS_FSEEKO) && !defined(USE_FSEEK64)
63 #ifdef PERLIO_IS_STDIO
64 /* #define PerlIO_xxxx() as equivalent stdio function */
66 #else /* PERLIO_IS_STDIO */
68 /* #define PerlIO_xxxx() as equivalent sfio function */
71 #endif /* PERLIO_IS_STDIO */
74 /* ----------- PerlIO implementation ---------- */
75 /* PerlIO not #define-d to something else - define the implementation */
77 typedef struct _PerlIO PerlIOl;
78 typedef struct _PerlIO_funcs PerlIO_funcs;
79 typedef PerlIOl *PerlIO;
81 #define PERLIO_LAYERS 1
83 extern void PerlIO_define_layer (pTHX_ PerlIO_funcs *tab);
84 extern SV * PerlIO_find_layer (pTHX_ const char *name, STRLEN len, int load);
85 extern PerlIO * PerlIO_push (pTHX_ PerlIO *f,PerlIO_funcs *tab,const char *mode,SV *arg);
86 extern void PerlIO_pop (pTHX_ PerlIO *f);
90 /* ----------- End of implementation choices ---------- */
92 #ifndef PERLIO_IS_STDIO
93 /* Not using stdio _directly_ as PerlIO */
95 /* We now need to determine what happens if source trys to use stdio.
96 * There are three cases based on PERLIO_NOT_STDIO which XS code
97 * can set how it wants.
101 /* Make a choice for perl core code
102 - currently this is set to try and catch lingering raw stdio calls.
103 This is a known issue with some non UNIX ports which still use
104 "native" stdio features.
106 #ifndef PERLIO_NOT_STDIO
107 #define PERLIO_NOT_STDIO 1
110 #ifndef PERLIO_NOT_STDIO
111 #define PERLIO_NOT_STDIO 0
115 #ifdef PERLIO_NOT_STDIO
118 * PERLIO_NOT_STDIO #define'd as 1
119 * Case 1: Strong denial of stdio - make all stdio calls (we can think of) errors
122 #else /* if PERLIO_NOT_STDIO */
124 * PERLIO_NOT_STDIO #define'd as 0
125 * Case 2: Declares that both PerlIO and stdio can be used
127 #endif /* if PERLIO_NOT_STDIO */
128 #else /* ifdef PERLIO_NOT_STDIO */
130 * PERLIO_NOT_STDIO not defined
131 * Case 3: Try and fake stdio calls as PerlIO calls
133 #include "fakesdio.h"
134 #endif /* ifndef PERLIO_NOT_STDIO */
135 #endif /* PERLIO_IS_STDIO */
137 #define specialCopIO(sv) ((sv) != Nullsv)
139 /* ----------- fill in things that have not got #define'd ---------- */
149 /* This is to catch case with no stdio */
166 /* --------------------- Now prototypes for functions --------------- */
170 #ifndef NEXT30_NO_ATTRIBUTE
171 #ifndef HASATTRIBUTE /* disable GNU-cc attribute checking? */
172 #ifdef __attribute__ /* Avoid possible redefinition errors */
175 #define __attribute__(attr)
180 extern void PerlIO_init (void);
182 #ifndef PerlIO_stdoutf
183 extern int PerlIO_stdoutf (const char *,...)
184 __attribute__((__format__ (__printf__, 1, 2)));
187 extern int PerlIO_puts (PerlIO *,const char *);
190 extern PerlIO * PerlIO_open (const char *,const char *);
193 extern PerlIO * PerlIO_openn (pTHX_ const char *layers, const char *mode,int fd,int imode,int perm,PerlIO *old,int narg,SV **arg);
196 extern int PerlIO_close (PerlIO *);
199 extern int PerlIO_eof (PerlIO *);
202 extern int PerlIO_error (PerlIO *);
204 #ifndef PerlIO_clearerr
205 extern void PerlIO_clearerr (PerlIO *);
208 extern int PerlIO_getc (PerlIO *);
211 extern int PerlIO_putc (PerlIO *,int);
214 extern int PerlIO_flush (PerlIO *);
216 #ifndef PerlIO_ungetc
217 extern int PerlIO_ungetc (PerlIO *,int);
219 #ifndef PerlIO_fileno
220 extern int PerlIO_fileno (PerlIO *);
222 #ifndef PerlIO_fdopen
223 extern PerlIO * PerlIO_fdopen (int, const char *);
225 #ifndef PerlIO_importFILE
226 extern PerlIO * PerlIO_importFILE (FILE *,int);
228 #ifndef PerlIO_exportFILE
229 extern FILE * PerlIO_exportFILE (PerlIO *,int);
231 #ifndef PerlIO_findFILE
232 extern FILE * PerlIO_findFILE (PerlIO *);
234 #ifndef PerlIO_releaseFILE
235 extern void PerlIO_releaseFILE (PerlIO *,FILE *);
238 extern SSize_t PerlIO_read (PerlIO *,void *,Size_t);
240 #ifndef PerlIO_unread
241 extern SSize_t PerlIO_unread (PerlIO *,const void *,Size_t);
244 extern SSize_t PerlIO_write (PerlIO *,const void *,Size_t);
246 #ifndef PerlIO_setlinebuf
247 extern void PerlIO_setlinebuf (PerlIO *);
249 #ifndef PerlIO_printf
250 extern int PerlIO_printf (PerlIO *, const char *,...)
251 __attribute__((__format__ (__printf__, 2, 3)));
253 #ifndef PerlIO_sprintf
254 extern int PerlIO_sprintf (char *, int, const char *,...)
255 __attribute__((__format__ (__printf__, 3, 4)));
257 #ifndef PerlIO_vprintf
258 extern int PerlIO_vprintf (PerlIO *, const char *, va_list);
261 extern Off_t PerlIO_tell (PerlIO *);
264 extern int PerlIO_seek (PerlIO *, Off_t, int);
266 #ifndef PerlIO_rewind
267 extern void PerlIO_rewind (PerlIO *);
269 #ifndef PerlIO_has_base
270 extern int PerlIO_has_base (PerlIO *);
272 #ifndef PerlIO_has_cntptr
273 extern int PerlIO_has_cntptr (PerlIO *);
275 #ifndef PerlIO_fast_gets
276 extern int PerlIO_fast_gets (PerlIO *);
278 #ifndef PerlIO_canset_cnt
279 extern int PerlIO_canset_cnt (PerlIO *);
281 #ifndef PerlIO_get_ptr
282 extern STDCHAR * PerlIO_get_ptr (PerlIO *);
284 #ifndef PerlIO_get_cnt
285 extern int PerlIO_get_cnt (PerlIO *);
287 #ifndef PerlIO_set_cnt
288 extern void PerlIO_set_cnt (PerlIO *,int);
290 #ifndef PerlIO_set_ptrcnt
291 extern void PerlIO_set_ptrcnt (PerlIO *,STDCHAR *,int);
293 #ifndef PerlIO_get_base
294 extern STDCHAR * PerlIO_get_base (PerlIO *);
296 #ifndef PerlIO_get_bufsiz
297 extern int PerlIO_get_bufsiz (PerlIO *);
299 #ifndef PerlIO_tmpfile
300 extern PerlIO * PerlIO_tmpfile (void);
303 extern PerlIO * PerlIO_stdin (void);
305 #ifndef PerlIO_stdout
306 extern PerlIO * PerlIO_stdout (void);
308 #ifndef PerlIO_stderr
309 extern PerlIO * PerlIO_stderr (void);
311 #ifndef PerlIO_getpos
312 extern int PerlIO_getpos (PerlIO *,SV *);
314 #ifndef PerlIO_setpos
315 extern int PerlIO_setpos (PerlIO *,SV *);
317 #ifndef PerlIO_fdupopen
318 extern PerlIO * PerlIO_fdupopen (pTHX_ PerlIO *);
320 #if !defined(PerlIO_modestr) && !defined(PERLIO_IS_STDIO)
321 extern char *PerlIO_modestr (PerlIO *,char *buf);
323 #ifndef PerlIO_isutf8
324 extern int PerlIO_isutf8 (PerlIO *);
326 #ifndef PerlIO_apply_layers
327 extern int PerlIO_apply_layers (pTHX_ PerlIO *f, const char *mode, const char *names);
329 #ifndef PerlIO_binmode
330 extern int PerlIO_binmode (pTHX_ PerlIO *f, int iotype, int omode, const char *names);
332 #ifndef PerlIO_getname
333 extern char * PerlIO_getname (PerlIO *, char *);
336 extern void PerlIO_destruct(pTHX);
338 #ifndef PERLIO_IS_STDIO
340 extern void PerlIO_cleanup(void);
342 extern void PerlIO_debug(const char *fmt,...);
348 #endif /* _PERLIO_H */