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