Commit | Line | Data |
---|---|---|
14a5cf38 | 1 | /* |
acde74e1 | 2 | * perlio.c Copyright (c) 1996-2006, Nick Ing-Simmons You may distribute |
14a5cf38 | 3 | * under the terms of either the GNU General Public License or the |
71200d45 | 4 | * Artistic License, as specified in the README file. |
760ac839 LW |
5 | */ |
6 | ||
14a5cf38 | 7 | /* |
d31a8517 AT |
8 | * Hour after hour for nearly three weary days he had jogged up and down, |
9 | * over passes, and through long dales, and across many streams. | |
10 | */ | |
11 | ||
166f8a29 DM |
12 | /* This file contains the functions needed to implement PerlIO, which |
13 | * is Perl's private replacement for the C stdio library. This is used | |
14 | * by default unless you compile with -Uuseperlio or run with | |
15 | * PERLIO=:stdio (but don't do this unless you know what you're doing) | |
16 | */ | |
17 | ||
d31a8517 | 18 | /* |
71200d45 | 19 | * If we have ActivePerl-like PERL_IMPLICIT_SYS then we need a dTHX to get |
14a5cf38 | 20 | * at the dispatch tables, even when we do not need it for other reasons. |
71200d45 | 21 | * Invent a dSYS macro to abstract this out |
14a5cf38 | 22 | */ |
7bcba3d4 NIS |
23 | #ifdef PERL_IMPLICIT_SYS |
24 | #define dSYS dTHX | |
25 | #else | |
26 | #define dSYS dNOOP | |
27 | #endif | |
28 | ||
760ac839 | 29 | #define VOIDUSED 1 |
12ae5dfc JH |
30 | #ifdef PERL_MICRO |
31 | # include "uconfig.h" | |
32 | #else | |
33 | # include "config.h" | |
34 | #endif | |
760ac839 | 35 | |
6f9d8c32 | 36 | #define PERLIO_NOT_STDIO 0 |
760ac839 | 37 | #if !defined(PERLIO_IS_STDIO) && !defined(USE_SFIO) |
14a5cf38 | 38 | /* |
71200d45 | 39 | * #define PerlIO FILE |
14a5cf38 | 40 | */ |
760ac839 LW |
41 | #endif |
42 | /* | |
6f9d8c32 | 43 | * This file provides those parts of PerlIO abstraction |
88b61e10 | 44 | * which are not #defined in perlio.h. |
6f9d8c32 | 45 | * Which these are depends on various Configure #ifdef's |
760ac839 LW |
46 | */ |
47 | ||
48 | #include "EXTERN.h" | |
864dbfa3 | 49 | #define PERL_IN_PERLIO_C |
760ac839 LW |
50 | #include "perl.h" |
51 | ||
32af7c23 CL |
52 | #ifdef PERL_IMPLICIT_CONTEXT |
53 | #undef dSYS | |
54 | #define dSYS dTHX | |
55 | #endif | |
56 | ||
0c4f7ff0 NIS |
57 | #include "XSUB.h" |
58 | ||
9cffb111 OS |
59 | #ifdef __Lynx__ |
60 | /* Missing proto on LynxOS */ | |
61 | int mkstemp(char*); | |
62 | #endif | |
63 | ||
1b7a0411 | 64 | /* Call the callback or PerlIOBase, and return failure. */ |
b32dd47e | 65 | #define Perl_PerlIO_or_Base(f, callback, base, failure, args) \ |
1b7a0411 | 66 | if (PerlIOValid(f)) { \ |
46c461b5 | 67 | const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\ |
1b7a0411 JH |
68 | if (tab && tab->callback) \ |
69 | return (*tab->callback) args; \ | |
70 | else \ | |
71 | return PerlIOBase_ ## base args; \ | |
72 | } \ | |
73 | else \ | |
74 | SETERRNO(EBADF, SS_IVCHAN); \ | |
75 | return failure | |
76 | ||
77 | /* Call the callback or fail, and return failure. */ | |
b32dd47e | 78 | #define Perl_PerlIO_or_fail(f, callback, failure, args) \ |
1b7a0411 | 79 | if (PerlIOValid(f)) { \ |
46c461b5 | 80 | const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\ |
1b7a0411 JH |
81 | if (tab && tab->callback) \ |
82 | return (*tab->callback) args; \ | |
83 | SETERRNO(EINVAL, LIB_INVARG); \ | |
84 | } \ | |
85 | else \ | |
86 | SETERRNO(EBADF, SS_IVCHAN); \ | |
87 | return failure | |
88 | ||
89 | /* Call the callback or PerlIOBase, and be void. */ | |
b32dd47e | 90 | #define Perl_PerlIO_or_Base_void(f, callback, base, args) \ |
1b7a0411 | 91 | if (PerlIOValid(f)) { \ |
46c461b5 | 92 | const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\ |
1b7a0411 JH |
93 | if (tab && tab->callback) \ |
94 | (*tab->callback) args; \ | |
95 | else \ | |
96 | PerlIOBase_ ## base args; \ | |
1b7a0411 JH |
97 | } \ |
98 | else \ | |
99 | SETERRNO(EBADF, SS_IVCHAN) | |
100 | ||
101 | /* Call the callback or fail, and be void. */ | |
b32dd47e | 102 | #define Perl_PerlIO_or_fail_void(f, callback, args) \ |
1b7a0411 | 103 | if (PerlIOValid(f)) { \ |
46c461b5 | 104 | const PerlIO_funcs * const tab = PerlIOBase(f)->tab;\ |
1b7a0411 JH |
105 | if (tab && tab->callback) \ |
106 | (*tab->callback) args; \ | |
37725cdc NIS |
107 | else \ |
108 | SETERRNO(EINVAL, LIB_INVARG); \ | |
1b7a0411 JH |
109 | } \ |
110 | else \ | |
111 | SETERRNO(EBADF, SS_IVCHAN) | |
112 | ||
71ab4674 SP |
113 | #ifndef USE_SFIO |
114 | int | |
115 | perlsio_binmode(FILE *fp, int iotype, int mode) | |
116 | { | |
117 | /* | |
118 | * This used to be contents of do_binmode in doio.c | |
119 | */ | |
120 | #ifdef DOSISH | |
121 | # if defined(atarist) || defined(__MINT__) | |
122 | if (!fflush(fp)) { | |
123 | if (mode & O_BINARY) | |
124 | ((FILE *) fp)->_flag |= _IOBIN; | |
125 | else | |
126 | ((FILE *) fp)->_flag &= ~_IOBIN; | |
127 | return 1; | |
128 | } | |
129 | return 0; | |
130 | # else | |
131 | dTHX; | |
132 | #ifdef NETWARE | |
133 | if (PerlLIO_setmode(fp, mode) != -1) { | |
134 | #else | |
135 | if (PerlLIO_setmode(fileno(fp), mode) != -1) { | |
136 | #endif | |
137 | # if defined(WIN32) && defined(__BORLANDC__) | |
138 | /* | |
139 | * The translation mode of the stream is maintained independent | |
140 | of | |
141 | * the translation mode of the fd in the Borland RTL (heavy | |
142 | * digging through their runtime sources reveal). User has to | |
143 | set | |
144 | * the mode explicitly for the stream (though they don't | |
145 | document | |
146 | * this anywhere). GSAR 97-5-24 | |
147 | */ | |
148 | fseek(fp, 0L, 0); | |
149 | if (mode & O_BINARY) | |
150 | fp->flags |= _F_BIN; | |
151 | else | |
152 | fp->flags &= ~_F_BIN; | |
153 | # endif | |
154 | return 1; | |
155 | } | |
156 | else | |
157 | return 0; | |
158 | # endif | |
159 | #else | |
160 | # if defined(USEMYBINMODE) | |
161 | dTHX; | |
162 | if (my_binmode(fp, iotype, mode) != FALSE) | |
163 | return 1; | |
164 | else | |
165 | return 0; | |
166 | # else | |
167 | PERL_UNUSED_ARG(fp); | |
168 | PERL_UNUSED_ARG(iotype); | |
169 | PERL_UNUSED_ARG(mode); | |
170 | return 1; | |
171 | # endif | |
172 | #endif | |
173 | } | |
174 | #endif /* sfio */ | |
175 | ||
06c7082d | 176 | #ifndef O_ACCMODE |
22569500 | 177 | #define O_ACCMODE 3 /* Assume traditional implementation */ |
06c7082d NIS |
178 | #endif |
179 | ||
180 | int | |
181 | PerlIO_intmode2str(int rawmode, char *mode, int *writing) | |
182 | { | |
de009b76 | 183 | const int result = rawmode & O_ACCMODE; |
06c7082d NIS |
184 | int ix = 0; |
185 | int ptype; | |
186 | switch (result) { | |
187 | case O_RDONLY: | |
188 | ptype = IoTYPE_RDONLY; | |
189 | break; | |
190 | case O_WRONLY: | |
191 | ptype = IoTYPE_WRONLY; | |
192 | break; | |
193 | case O_RDWR: | |
194 | default: | |
195 | ptype = IoTYPE_RDWR; | |
196 | break; | |
197 | } | |
198 | if (writing) | |
199 | *writing = (result != O_RDONLY); | |
200 | ||
201 | if (result == O_RDONLY) { | |
202 | mode[ix++] = 'r'; | |
203 | } | |
204 | #ifdef O_APPEND | |
205 | else if (rawmode & O_APPEND) { | |
206 | mode[ix++] = 'a'; | |
207 | if (result != O_WRONLY) | |
208 | mode[ix++] = '+'; | |
209 | } | |
210 | #endif | |
211 | else { | |
212 | if (result == O_WRONLY) | |
213 | mode[ix++] = 'w'; | |
214 | else { | |
215 | mode[ix++] = 'r'; | |
216 | mode[ix++] = '+'; | |
217 | } | |
218 | } | |
219 | if (rawmode & O_BINARY) | |
220 | mode[ix++] = 'b'; | |
221 | mode[ix] = '\0'; | |
222 | return ptype; | |
223 | } | |
224 | ||
eb73beca NIS |
225 | #ifndef PERLIO_LAYERS |
226 | int | |
227 | PerlIO_apply_layers(pTHX_ PerlIO *f, const char *mode, const char *names) | |
228 | { | |
6874a2de NIS |
229 | if (!names || !*names |
230 | || strEQ(names, ":crlf") | |
231 | || strEQ(names, ":raw") | |
232 | || strEQ(names, ":bytes") | |
233 | ) { | |
14a5cf38 JH |
234 | return 0; |
235 | } | |
236 | Perl_croak(aTHX_ "Cannot apply \"%s\" in non-PerlIO perl", names); | |
237 | /* | |
71200d45 | 238 | * NOTREACHED |
14a5cf38 JH |
239 | */ |
240 | return -1; | |
eb73beca NIS |
241 | } |
242 | ||
13621cfb NIS |
243 | void |
244 | PerlIO_destruct(pTHX) | |
245 | { | |
246 | } | |
247 | ||
f5b9d040 NIS |
248 | int |
249 | PerlIO_binmode(pTHX_ PerlIO *fp, int iotype, int mode, const char *names) | |
250 | { | |
92bff44d | 251 | #ifdef USE_SFIO |
8772537c AL |
252 | PERL_UNUSED_ARG(iotype); |
253 | PERL_UNUSED_ARG(mode); | |
254 | PERL_UNUSED_ARG(names); | |
14a5cf38 | 255 | return 1; |
92bff44d | 256 | #else |
14a5cf38 | 257 | return perlsio_binmode(fp, iotype, mode); |
92bff44d | 258 | #endif |
f5b9d040 | 259 | } |
60382766 | 260 | |
e0fa5af2 | 261 | PerlIO * |
ecdeb87c | 262 | PerlIO_fdupopen(pTHX_ PerlIO *f, CLONE_PARAMS *param, int flags) |
e0fa5af2 | 263 | { |
a0fd4948 | 264 | #if defined(PERL_MICRO) || defined(__SYMBIAN32__) |
0553478e NIS |
265 | return NULL; |
266 | #else | |
267 | #ifdef PERL_IMPLICIT_SYS | |
22569500 | 268 | return PerlSIO_fdupopen(f); |
0553478e | 269 | #else |
30753f56 NIS |
270 | #ifdef WIN32 |
271 | return win32_fdupopen(f); | |
272 | #else | |
e0fa5af2 | 273 | if (f) { |
504618e9 | 274 | const int fd = PerlLIO_dup(PerlIO_fileno(f)); |
e0fa5af2 | 275 | if (fd >= 0) { |
06c7082d | 276 | char mode[8]; |
a5936e02 | 277 | #ifdef DJGPP |
dcda55fc AL |
278 | const int omode = djgpp_get_stream_mode(f); |
279 | #else | |
280 | const int omode = fcntl(fd, F_GETFL); | |
a5936e02 | 281 | #endif |
06c7082d | 282 | PerlIO_intmode2str(omode,mode,NULL); |
e0fa5af2 | 283 | /* the r+ is a hack */ |
06c7082d | 284 | return PerlIO_fdopen(fd, mode); |
e0fa5af2 NIS |
285 | } |
286 | return NULL; | |
287 | } | |
288 | else { | |
93189314 | 289 | SETERRNO(EBADF, SS_IVCHAN); |
e0fa5af2 | 290 | } |
7114a2d2 | 291 | #endif |
e0fa5af2 | 292 | return NULL; |
0553478e | 293 | #endif |
30753f56 | 294 | #endif |
e0fa5af2 NIS |
295 | } |
296 | ||
297 | ||
14a5cf38 | 298 | /* |
71200d45 | 299 | * De-mux PerlIO_openn() into fdopen, freopen and fopen type entries |
14a5cf38 | 300 | */ |
ee518936 NIS |
301 | |
302 | PerlIO * | |
14a5cf38 JH |
303 | PerlIO_openn(pTHX_ const char *layers, const char *mode, int fd, |
304 | int imode, int perm, PerlIO *old, int narg, SV **args) | |
305 | { | |
7cf31beb NIS |
306 | if (narg) { |
307 | if (narg > 1) { | |
3b8752bb | 308 | Perl_croak(aTHX_ "More than one argument to open"); |
7cf31beb | 309 | } |
14a5cf38 JH |
310 | if (*args == &PL_sv_undef) |
311 | return PerlIO_tmpfile(); | |
312 | else { | |
e62f0680 | 313 | const char *name = SvPV_nolen_const(*args); |
3b6c1aba | 314 | if (*mode == IoTYPE_NUMERIC) { |
14a5cf38 JH |
315 | fd = PerlLIO_open3(name, imode, perm); |
316 | if (fd >= 0) | |
de009b76 | 317 | return PerlIO_fdopen(fd, mode + 1); |
14a5cf38 JH |
318 | } |
319 | else if (old) { | |
320 | return PerlIO_reopen(name, mode, old); | |
321 | } | |
322 | else { | |
323 | return PerlIO_open(name, mode); | |
324 | } | |
325 | } | |
326 | } | |
327 | else { | |
328 | return PerlIO_fdopen(fd, (char *) mode); | |
329 | } | |
330 | return NULL; | |
ee518936 NIS |
331 | } |
332 | ||
0c4f7ff0 NIS |
333 | XS(XS_PerlIO__Layer__find) |
334 | { | |
14a5cf38 JH |
335 | dXSARGS; |
336 | if (items < 2) | |
337 | Perl_croak(aTHX_ "Usage class->find(name[,load])"); | |
338 | else { | |
dcda55fc | 339 | const char * const name = SvPV_nolen_const(ST(1)); |
14a5cf38 JH |
340 | ST(0) = (strEQ(name, "crlf") |
341 | || strEQ(name, "raw")) ? &PL_sv_yes : &PL_sv_undef; | |
342 | XSRETURN(1); | |
343 | } | |
0c4f7ff0 NIS |
344 | } |
345 | ||
346 | ||
347 | void | |
348 | Perl_boot_core_PerlIO(pTHX) | |
349 | { | |
14a5cf38 | 350 | newXS("PerlIO::Layer::find", XS_PerlIO__Layer__find, __FILE__); |
0c4f7ff0 NIS |
351 | } |
352 | ||
ac27b0f5 NIS |
353 | #endif |
354 | ||
32e30700 | 355 | |
6f9d8c32 | 356 | #ifdef PERLIO_IS_STDIO |
760ac839 LW |
357 | |
358 | void | |
e8632036 | 359 | PerlIO_init(pTHX) |
760ac839 | 360 | { |
14a5cf38 JH |
361 | /* |
362 | * Does nothing (yet) except force this file to be included in perl | |
71200d45 | 363 | * binary. That allows this file to force inclusion of other functions |
14a5cf38 | 364 | * that may be required by loadable extensions e.g. for |
71200d45 | 365 | * FileHandle::tmpfile |
14a5cf38 | 366 | */ |
760ac839 LW |
367 | } |
368 | ||
33dcbb9a | 369 | #undef PerlIO_tmpfile |
370 | PerlIO * | |
8ac85365 | 371 | PerlIO_tmpfile(void) |
33dcbb9a | 372 | { |
14a5cf38 | 373 | return tmpfile(); |
33dcbb9a | 374 | } |
375 | ||
22569500 | 376 | #else /* PERLIO_IS_STDIO */ |
760ac839 LW |
377 | |
378 | #ifdef USE_SFIO | |
379 | ||
380 | #undef HAS_FSETPOS | |
381 | #undef HAS_FGETPOS | |
382 | ||
14a5cf38 JH |
383 | /* |
384 | * This section is just to make sure these functions get pulled in from | |
71200d45 | 385 | * libsfio.a |
14a5cf38 | 386 | */ |
760ac839 LW |
387 | |
388 | #undef PerlIO_tmpfile | |
389 | PerlIO * | |
c78749f2 | 390 | PerlIO_tmpfile(void) |
760ac839 | 391 | { |
14a5cf38 | 392 | return sftmp(0); |
760ac839 LW |
393 | } |
394 | ||
395 | void | |
e8632036 | 396 | PerlIO_init(pTHX) |
760ac839 | 397 | { |
14a5cf38 JH |
398 | /* |
399 | * Force this file to be included in perl binary. Which allows this | |
400 | * file to force inclusion of other functions that may be required by | |
71200d45 | 401 | * loadable extensions e.g. for FileHandle::tmpfile |
14a5cf38 | 402 | */ |
760ac839 | 403 | |
14a5cf38 | 404 | /* |
71200d45 | 405 | * Hack sfio does its own 'autoflush' on stdout in common cases. Flush |
14a5cf38 | 406 | * results in a lot of lseek()s to regular files and lot of small |
71200d45 | 407 | * writes to pipes. |
14a5cf38 JH |
408 | */ |
409 | sfset(sfstdout, SF_SHARE, 0); | |
760ac839 LW |
410 | } |
411 | ||
b9d6bf13 | 412 | /* This is not the reverse of PerlIO_exportFILE(), PerlIO_releaseFILE() is. */ |
92bff44d | 413 | PerlIO * |
4b069b44 | 414 | PerlIO_importFILE(FILE *stdio, const char *mode) |
92bff44d | 415 | { |
de009b76 | 416 | const int fd = fileno(stdio); |
4b069b44 | 417 | if (!mode || !*mode) { |
81428673 | 418 | mode = "r+"; |
4b069b44 NIS |
419 | } |
420 | return PerlIO_fdopen(fd, mode); | |
92bff44d NIS |
421 | } |
422 | ||
423 | FILE * | |
424 | PerlIO_findFILE(PerlIO *pio) | |
425 | { | |
de009b76 AL |
426 | const int fd = PerlIO_fileno(pio); |
427 | FILE * const f = fdopen(fd, "r+"); | |
14a5cf38 JH |
428 | PerlIO_flush(pio); |
429 | if (!f && errno == EINVAL) | |
430 | f = fdopen(fd, "w"); | |
431 | if (!f && errno == EINVAL) | |
432 | f = fdopen(fd, "r"); | |
433 | return f; | |
92bff44d NIS |
434 | } |
435 | ||
436 | ||
22569500 | 437 | #else /* USE_SFIO */ |
6f9d8c32 | 438 | /*======================================================================================*/ |
14a5cf38 | 439 | /* |
71200d45 | 440 | * Implement all the PerlIO interface ourselves. |
9e353e3b | 441 | */ |
760ac839 | 442 | |
76ced9ad NIS |
443 | #include "perliol.h" |
444 | ||
14a5cf38 JH |
445 | /* |
446 | * We _MUST_ have <unistd.h> if we are using lseek() and may have large | |
71200d45 | 447 | * files |
14a5cf38 | 448 | */ |
02f66e2f NIS |
449 | #ifdef I_UNISTD |
450 | #include <unistd.h> | |
451 | #endif | |
06da4f11 NIS |
452 | #ifdef HAS_MMAP |
453 | #include <sys/mman.h> | |
454 | #endif | |
455 | ||
6f9d8c32 | 456 | void |
14a5cf38 JH |
457 | PerlIO_debug(const char *fmt, ...) |
458 | { | |
14a5cf38 JH |
459 | va_list ap; |
460 | dSYS; | |
461 | va_start(ap, fmt); | |
27da23d5 | 462 | if (!PL_perlio_debug_fd && !PL_tainting && PL_uid == PL_euid && PL_gid == PL_egid) { |
dcda55fc | 463 | const char * const s = PerlEnv_getenv("PERLIO_DEBUG"); |
14a5cf38 | 464 | if (s && *s) |
27da23d5 | 465 | PL_perlio_debug_fd = PerlLIO_open3(s, O_WRONLY | O_CREAT | O_APPEND, 0666); |
14a5cf38 | 466 | else |
27da23d5 | 467 | PL_perlio_debug_fd = -1; |
14a5cf38 | 468 | } |
27da23d5 | 469 | if (PL_perlio_debug_fd > 0) { |
14a5cf38 | 470 | dTHX; |
70ace5da | 471 | #ifdef USE_ITHREADS |
dcda55fc | 472 | const char * const s = CopFILE(PL_curcop); |
70ace5da NIS |
473 | /* Use fixed buffer as sv_catpvf etc. needs SVs */ |
474 | char buffer[1024]; | |
dcda55fc | 475 | const STRLEN len = my_sprintf(buffer, "%.40s:%" IVdf " ", s ? s : "(none)", (IV) CopLINE(PL_curcop)); |
42d9b98d NC |
476 | const STRLEN len2 = vsprintf(buffer+len, fmt, ap); |
477 | PerlLIO_write(PL_perlio_debug_fd, buffer, len + len2); | |
70ace5da | 478 | #else |
dcda55fc AL |
479 | const char *s = CopFILE(PL_curcop); |
480 | STRLEN len; | |
396482e1 | 481 | SV * const sv = newSVpvs(""); |
dcda55fc | 482 | Perl_sv_catpvf(aTHX_ sv, "%s:%" IVdf " ", s ? s : "(none)", |
14a5cf38 JH |
483 | (IV) CopLINE(PL_curcop)); |
484 | Perl_sv_vcatpvf(aTHX_ sv, fmt, &ap); | |
485 | ||
b83604b4 | 486 | s = SvPV_const(sv, len); |
27da23d5 | 487 | PerlLIO_write(PL_perlio_debug_fd, s, len); |
14a5cf38 | 488 | SvREFCNT_dec(sv); |
70ace5da | 489 | #endif |
14a5cf38 JH |
490 | } |
491 | va_end(ap); | |
6f9d8c32 NIS |
492 | } |
493 | ||
9e353e3b NIS |
494 | /*--------------------------------------------------------------------------------------*/ |
495 | ||
14a5cf38 | 496 | /* |
71200d45 | 497 | * Inner level routines |
14a5cf38 | 498 | */ |
9e353e3b | 499 | |
14a5cf38 | 500 | /* |
71200d45 | 501 | * Table of pointers to the PerlIO structs (malloc'ed) |
14a5cf38 | 502 | */ |
05d1247b | 503 | #define PERLIO_TABLE_SIZE 64 |
6f9d8c32 | 504 | |
760ac839 | 505 | PerlIO * |
5f1a76d0 | 506 | PerlIO_allocate(pTHX) |
6f9d8c32 | 507 | { |
97aff369 | 508 | dVAR; |
14a5cf38 | 509 | /* |
71200d45 | 510 | * Find a free slot in the table, allocating new table as necessary |
14a5cf38 JH |
511 | */ |
512 | PerlIO **last; | |
513 | PerlIO *f; | |
a1ea730d | 514 | last = &PL_perlio; |
14a5cf38 JH |
515 | while ((f = *last)) { |
516 | int i; | |
517 | last = (PerlIO **) (f); | |
518 | for (i = 1; i < PERLIO_TABLE_SIZE; i++) { | |
519 | if (!*++f) { | |
520 | return f; | |
521 | } | |
522 | } | |
523 | } | |
a02a5408 | 524 | Newxz(f,PERLIO_TABLE_SIZE,PerlIO); |
14a5cf38 JH |
525 | if (!f) { |
526 | return NULL; | |
527 | } | |
528 | *last = f; | |
529 | return f + 1; | |
05d1247b NIS |
530 | } |
531 | ||
a1ea730d NIS |
532 | #undef PerlIO_fdupopen |
533 | PerlIO * | |
ecdeb87c | 534 | PerlIO_fdupopen(pTHX_ PerlIO *f, CLONE_PARAMS *param, int flags) |
a1ea730d | 535 | { |
04892f78 | 536 | if (PerlIOValid(f)) { |
de009b76 | 537 | const PerlIO_funcs * const tab = PerlIOBase(f)->tab; |
fe5a182c | 538 | PerlIO_debug("fdupopen f=%p param=%p\n",(void*)f,(void*)param); |
210e727c JH |
539 | if (tab && tab->Dup) |
540 | return (*tab->Dup)(aTHX_ PerlIO_allocate(aTHX), f, param, flags); | |
37725cdc NIS |
541 | else { |
542 | return PerlIOBase_dup(aTHX_ PerlIO_allocate(aTHX), f, param, flags); | |
543 | } | |
a1ea730d | 544 | } |
210e727c JH |
545 | else |
546 | SETERRNO(EBADF, SS_IVCHAN); | |
547 | ||
548 | return NULL; | |
a1ea730d NIS |
549 | } |
550 | ||
551 | void | |
5f1a76d0 | 552 | PerlIO_cleantable(pTHX_ PerlIO **tablep) |
05d1247b | 553 | { |
dcda55fc | 554 | PerlIO * const table = *tablep; |
14a5cf38 JH |
555 | if (table) { |
556 | int i; | |
557 | PerlIO_cleantable(aTHX_(PerlIO **) & (table[0])); | |
558 | for (i = PERLIO_TABLE_SIZE - 1; i > 0; i--) { | |
dcda55fc | 559 | PerlIO * const f = table + i; |
14a5cf38 JH |
560 | if (*f) { |
561 | PerlIO_close(f); | |
562 | } | |
563 | } | |
3a1ee7e8 | 564 | Safefree(table); |
14a5cf38 | 565 | *tablep = NULL; |
05d1247b | 566 | } |
05d1247b NIS |
567 | } |
568 | ||
fcf2db38 NIS |
569 | |
570 | PerlIO_list_t * | |
3a1ee7e8 | 571 | PerlIO_list_alloc(pTHX) |
fcf2db38 | 572 | { |
14a5cf38 | 573 | PerlIO_list_t *list; |
a02a5408 | 574 | Newxz(list, 1, PerlIO_list_t); |
14a5cf38 JH |
575 | list->refcnt = 1; |
576 | return list; | |
fcf2db38 NIS |
577 | } |
578 | ||
579 | void | |
3a1ee7e8 | 580 | PerlIO_list_free(pTHX_ PerlIO_list_t *list) |
fcf2db38 | 581 | { |
14a5cf38 JH |
582 | if (list) { |
583 | if (--list->refcnt == 0) { | |
584 | if (list->array) { | |
14a5cf38 JH |
585 | IV i; |
586 | for (i = 0; i < list->cur; i++) { | |
587 | if (list->array[i].arg) | |
588 | SvREFCNT_dec(list->array[i].arg); | |
589 | } | |
590 | Safefree(list->array); | |
591 | } | |
592 | Safefree(list); | |
593 | } | |
594 | } | |
fcf2db38 NIS |
595 | } |
596 | ||
597 | void | |
3a1ee7e8 | 598 | PerlIO_list_push(pTHX_ PerlIO_list_t *list, PerlIO_funcs *funcs, SV *arg) |
14a5cf38 | 599 | { |
97aff369 | 600 | dVAR; |
14a5cf38 JH |
601 | PerlIO_pair_t *p; |
602 | if (list->cur >= list->len) { | |
603 | list->len += 8; | |
604 | if (list->array) | |
605 | Renew(list->array, list->len, PerlIO_pair_t); | |
606 | else | |
a02a5408 | 607 | Newx(list->array, list->len, PerlIO_pair_t); |
14a5cf38 JH |
608 | } |
609 | p = &(list->array[list->cur++]); | |
610 | p->funcs = funcs; | |
611 | if ((p->arg = arg)) { | |
7fc63493 | 612 | (void)SvREFCNT_inc(arg); |
14a5cf38 | 613 | } |
fcf2db38 NIS |
614 | } |
615 | ||
3a1ee7e8 NIS |
616 | PerlIO_list_t * |
617 | PerlIO_clone_list(pTHX_ PerlIO_list_t *proto, CLONE_PARAMS *param) | |
618 | { | |
694c95cf JH |
619 | PerlIO_list_t *list = (PerlIO_list_t *) NULL; |
620 | if (proto) { | |
621 | int i; | |
622 | list = PerlIO_list_alloc(aTHX); | |
623 | for (i=0; i < proto->cur; i++) { | |
a0714e2c | 624 | SV *arg = NULL; |
694c95cf JH |
625 | if (proto->array[i].arg) |
626 | arg = PerlIO_sv_dup(aTHX_ proto->array[i].arg,param); | |
627 | PerlIO_list_push(aTHX_ list, proto->array[i].funcs, arg); | |
628 | } | |
3a1ee7e8 NIS |
629 | } |
630 | return list; | |
631 | } | |
4a4a6116 | 632 | |
05d1247b | 633 | void |
3a1ee7e8 | 634 | PerlIO_clone(pTHX_ PerlInterpreter *proto, CLONE_PARAMS *param) |
9a6404c5 | 635 | { |
3aaf42a7 | 636 | #ifdef USE_ITHREADS |
3a1ee7e8 NIS |
637 | PerlIO **table = &proto->Iperlio; |
638 | PerlIO *f; | |
639 | PL_perlio = NULL; | |
640 | PL_known_layers = PerlIO_clone_list(aTHX_ proto->Iknown_layers, param); | |
641 | PL_def_layerlist = PerlIO_clone_list(aTHX_ proto->Idef_layerlist, param); | |
642 | PerlIO_allocate(aTHX); /* root slot is never used */ | |
694c95cf | 643 | PerlIO_debug("Clone %p from %p\n",aTHX,proto); |
3a1ee7e8 NIS |
644 | while ((f = *table)) { |
645 | int i; | |
646 | table = (PerlIO **) (f++); | |
647 | for (i = 1; i < PERLIO_TABLE_SIZE; i++) { | |
648 | if (*f) { | |
93a8090d | 649 | (void) fp_dup(f, 0, param); |
3a1ee7e8 NIS |
650 | } |
651 | f++; | |
652 | } | |
653 | } | |
1b6737cc AL |
654 | #else |
655 | PERL_UNUSED_ARG(proto); | |
656 | PERL_UNUSED_ARG(param); | |
3aaf42a7 | 657 | #endif |
9a6404c5 DM |
658 | } |
659 | ||
660 | void | |
13621cfb NIS |
661 | PerlIO_destruct(pTHX) |
662 | { | |
97aff369 | 663 | dVAR; |
a1ea730d | 664 | PerlIO **table = &PL_perlio; |
14a5cf38 | 665 | PerlIO *f; |
694c95cf JH |
666 | #ifdef USE_ITHREADS |
667 | PerlIO_debug("Destruct %p\n",aTHX); | |
668 | #endif | |
14a5cf38 JH |
669 | while ((f = *table)) { |
670 | int i; | |
671 | table = (PerlIO **) (f++); | |
672 | for (i = 1; i < PERLIO_TABLE_SIZE; i++) { | |
673 | PerlIO *x = f; | |
dcda55fc | 674 | const PerlIOl *l; |
14a5cf38 JH |
675 | while ((l = *x)) { |
676 | if (l->tab->kind & PERLIO_K_DESTRUCT) { | |
677 | PerlIO_debug("Destruct popping %s\n", l->tab->name); | |
678 | PerlIO_flush(x); | |
679 | PerlIO_pop(aTHX_ x); | |
680 | } | |
681 | else { | |
682 | x = PerlIONext(x); | |
683 | } | |
684 | } | |
685 | f++; | |
686 | } | |
687 | } | |
13621cfb NIS |
688 | } |
689 | ||
690 | void | |
a999f61b | 691 | PerlIO_pop(pTHX_ PerlIO *f) |
760ac839 | 692 | { |
dcda55fc | 693 | const PerlIOl *l = *f; |
14a5cf38 | 694 | if (l) { |
fe5a182c | 695 | PerlIO_debug("PerlIO_pop f=%p %s\n", (void*)f, l->tab->name); |
14a5cf38 JH |
696 | if (l->tab->Popped) { |
697 | /* | |
698 | * If popped returns non-zero do not free its layer structure | |
699 | * it has either done so itself, or it is shared and still in | |
71200d45 | 700 | * use |
14a5cf38 | 701 | */ |
f62ce20a | 702 | if ((*l->tab->Popped) (aTHX_ f) != 0) |
14a5cf38 JH |
703 | return; |
704 | } | |
b47cad08 | 705 | *f = l->next; |
3a1ee7e8 | 706 | Safefree(l); |
a8c08ecd | 707 | } |
6f9d8c32 NIS |
708 | } |
709 | ||
39f7a870 JH |
710 | /* Return as an array the stack of layers on a filehandle. Note that |
711 | * the stack is returned top-first in the array, and there are three | |
712 | * times as many array elements as there are layers in the stack: the | |
713 | * first element of a layer triplet is the name, the second one is the | |
714 | * arguments, and the third one is the flags. */ | |
715 | ||
716 | AV * | |
717 | PerlIO_get_layers(pTHX_ PerlIO *f) | |
718 | { | |
97aff369 | 719 | dVAR; |
dcda55fc | 720 | AV * const av = newAV(); |
39f7a870 | 721 | |
dcda55fc AL |
722 | if (PerlIOValid(f)) { |
723 | PerlIOl *l = PerlIOBase(f); | |
724 | ||
725 | while (l) { | |
726 | SV * const name = l->tab && l->tab->name ? | |
727 | newSVpv(l->tab->name, 0) : &PL_sv_undef; | |
728 | SV * const arg = l->tab && l->tab->Getarg ? | |
729 | (*l->tab->Getarg)(aTHX_ &l, 0, 0) : &PL_sv_undef; | |
730 | av_push(av, name); | |
731 | av_push(av, arg); | |
732 | av_push(av, newSViv((IV)l->flags)); | |
733 | l = l->next; | |
734 | } | |
735 | } | |
39f7a870 | 736 | |
dcda55fc | 737 | return av; |
39f7a870 JH |
738 | } |
739 | ||
9e353e3b | 740 | /*--------------------------------------------------------------------------------------*/ |
14a5cf38 | 741 | /* |
71200d45 | 742 | * XS Interface for perl code |
14a5cf38 | 743 | */ |
9e353e3b | 744 | |
fcf2db38 | 745 | PerlIO_funcs * |
2edd7e44 | 746 | PerlIO_find_layer(pTHX_ const char *name, STRLEN len, int load) |
f3862f8b | 747 | { |
27da23d5 | 748 | dVAR; |
14a5cf38 JH |
749 | IV i; |
750 | if ((SSize_t) len <= 0) | |
751 | len = strlen(name); | |
3a1ee7e8 | 752 | for (i = 0; i < PL_known_layers->cur; i++) { |
46c461b5 | 753 | PerlIO_funcs * const f = PL_known_layers->array[i].funcs; |
a9f76400 | 754 | if (memEQ(f->name, name, len) && f->name[len] == 0) { |
fe5a182c | 755 | PerlIO_debug("%.*s => %p\n", (int) len, name, (void*)f); |
14a5cf38 JH |
756 | return f; |
757 | } | |
758 | } | |
3a1ee7e8 NIS |
759 | if (load && PL_subname && PL_def_layerlist |
760 | && PL_def_layerlist->cur >= 2) { | |
d7a09b41 SR |
761 | if (PL_in_load_module) { |
762 | Perl_croak(aTHX_ "Recursive call to Perl_load_module in PerlIO_find_layer"); | |
763 | return NULL; | |
764 | } else { | |
396482e1 | 765 | SV * const pkgsv = newSVpvs("PerlIO"); |
46c461b5 AL |
766 | SV * const layer = newSVpvn(name, len); |
767 | CV * const cv = get_cv("PerlIO::Layer::NoWarnings", FALSE); | |
768 | ENTER; | |
d7a09b41 | 769 | SAVEINT(PL_in_load_module); |
c9bca74a | 770 | if (cv) { |
9cfa90c0 | 771 | SAVEGENERICSV(PL_warnhook); |
504618e9 | 772 | (void)SvREFCNT_inc(cv); |
c9bca74a NIS |
773 | PL_warnhook = (SV *) cv; |
774 | } | |
d7a09b41 SR |
775 | PL_in_load_module++; |
776 | /* | |
777 | * The two SVs are magically freed by load_module | |
778 | */ | |
a0714e2c | 779 | Perl_load_module(aTHX_ 0, pkgsv, NULL, layer, NULL); |
d7a09b41 SR |
780 | PL_in_load_module--; |
781 | LEAVE; | |
782 | return PerlIO_find_layer(aTHX_ name, len, 0); | |
783 | } | |
14a5cf38 JH |
784 | } |
785 | PerlIO_debug("Cannot find %.*s\n", (int) len, name); | |
786 | return NULL; | |
f3862f8b NIS |
787 | } |
788 | ||
2a1bc955 | 789 | #ifdef USE_ATTRIBUTES_FOR_PERLIO |
b13b2135 NIS |
790 | |
791 | static int | |
792 | perlio_mg_set(pTHX_ SV *sv, MAGIC *mg) | |
793 | { | |
14a5cf38 | 794 | if (SvROK(sv)) { |
dcda55fc AL |
795 | IO * const io = GvIOn((GV *) SvRV(sv)); |
796 | PerlIO * const ifp = IoIFP(io); | |
797 | PerlIO * const ofp = IoOFP(io); | |
14a5cf38 JH |
798 | Perl_warn(aTHX_ "set %" SVf " %p %p %p", sv, io, ifp, ofp); |
799 | } | |
800 | return 0; | |
b13b2135 NIS |
801 | } |
802 | ||
803 | static int | |
804 | perlio_mg_get(pTHX_ SV *sv, MAGIC *mg) | |
805 | { | |
14a5cf38 | 806 | if (SvROK(sv)) { |
dcda55fc AL |
807 | IO * const io = GvIOn((GV *) SvRV(sv)); |
808 | PerlIO * const ifp = IoIFP(io); | |
809 | PerlIO * const ofp = IoOFP(io); | |
14a5cf38 JH |
810 | Perl_warn(aTHX_ "get %" SVf " %p %p %p", sv, io, ifp, ofp); |
811 | } | |
812 | return 0; | |
b13b2135 NIS |
813 | } |
814 | ||
815 | static int | |
816 | perlio_mg_clear(pTHX_ SV *sv, MAGIC *mg) | |
817 | { | |
14a5cf38 JH |
818 | Perl_warn(aTHX_ "clear %" SVf, sv); |
819 | return 0; | |
b13b2135 NIS |
820 | } |
821 | ||
822 | static int | |
823 | perlio_mg_free(pTHX_ SV *sv, MAGIC *mg) | |
824 | { | |
14a5cf38 JH |
825 | Perl_warn(aTHX_ "free %" SVf, sv); |
826 | return 0; | |
b13b2135 NIS |
827 | } |
828 | ||
829 | MGVTBL perlio_vtab = { | |
14a5cf38 JH |
830 | perlio_mg_get, |
831 | perlio_mg_set, | |
22569500 | 832 | NULL, /* len */ |
14a5cf38 JH |
833 | perlio_mg_clear, |
834 | perlio_mg_free | |
b13b2135 NIS |
835 | }; |
836 | ||
837 | XS(XS_io_MODIFY_SCALAR_ATTRIBUTES) | |
838 | { | |
14a5cf38 | 839 | dXSARGS; |
dcda55fc AL |
840 | SV * const sv = SvRV(ST(1)); |
841 | AV * const av = newAV(); | |
14a5cf38 JH |
842 | MAGIC *mg; |
843 | int count = 0; | |
844 | int i; | |
845 | sv_magic(sv, (SV *) av, PERL_MAGIC_ext, NULL, 0); | |
846 | SvRMAGICAL_off(sv); | |
847 | mg = mg_find(sv, PERL_MAGIC_ext); | |
848 | mg->mg_virtual = &perlio_vtab; | |
849 | mg_magical(sv); | |
850 | Perl_warn(aTHX_ "attrib %" SVf, sv); | |
851 | for (i = 2; i < items; i++) { | |
852 | STRLEN len; | |
dcda55fc AL |
853 | const char * const name = SvPV_const(ST(i), len); |
854 | SV * const layer = PerlIO_find_layer(aTHX_ name, len, 1); | |
14a5cf38 JH |
855 | if (layer) { |
856 | av_push(av, SvREFCNT_inc(layer)); | |
857 | } | |
858 | else { | |
859 | ST(count) = ST(i); | |
860 | count++; | |
861 | } | |
862 | } | |
863 | SvREFCNT_dec(av); | |
864 | XSRETURN(count); | |
865 | } | |
866 | ||
22569500 | 867 | #endif /* USE_ATTIBUTES_FOR_PERLIO */ |
2a1bc955 | 868 | |
e3f3bf95 NIS |
869 | SV * |
870 | PerlIO_tab_sv(pTHX_ PerlIO_funcs *tab) | |
f3862f8b | 871 | { |
89529cee | 872 | HV * const stash = gv_stashpvs("PerlIO::Layer", TRUE); |
46c461b5 | 873 | SV * const sv = sv_bless(newRV_noinc(newSViv(PTR2IV(tab))), stash); |
14a5cf38 | 874 | return sv; |
e3f3bf95 NIS |
875 | } |
876 | ||
5ca1d77f | 877 | XS(XS_PerlIO__Layer__NoWarnings) |
c9bca74a | 878 | { |
37725cdc | 879 | /* This is used as a %SIG{__WARN__} handler to supress warnings |
c9bca74a NIS |
880 | during loading of layers. |
881 | */ | |
97aff369 | 882 | dVAR; |
c9bca74a NIS |
883 | dXSARGS; |
884 | if (items) | |
e62f0680 | 885 | PerlIO_debug("warning:%s\n",SvPV_nolen_const(ST(0))); |
c9bca74a NIS |
886 | XSRETURN(0); |
887 | } | |
888 | ||
5ca1d77f | 889 | XS(XS_PerlIO__Layer__find) |
0c4f7ff0 | 890 | { |
97aff369 | 891 | dVAR; |
14a5cf38 JH |
892 | dXSARGS; |
893 | if (items < 2) | |
894 | Perl_croak(aTHX_ "Usage class->find(name[,load])"); | |
895 | else { | |
de009b76 | 896 | STRLEN len; |
46c461b5 | 897 | const char * const name = SvPV_const(ST(1), len); |
de009b76 | 898 | const bool load = (items > 2) ? SvTRUE(ST(2)) : 0; |
46c461b5 | 899 | PerlIO_funcs * const layer = PerlIO_find_layer(aTHX_ name, len, load); |
14a5cf38 JH |
900 | ST(0) = |
901 | (layer) ? sv_2mortal(PerlIO_tab_sv(aTHX_ layer)) : | |
902 | &PL_sv_undef; | |
903 | XSRETURN(1); | |
904 | } | |
0c4f7ff0 NIS |
905 | } |
906 | ||
e3f3bf95 NIS |
907 | void |
908 | PerlIO_define_layer(pTHX_ PerlIO_funcs *tab) | |
909 | { | |
97aff369 | 910 | dVAR; |
3a1ee7e8 NIS |
911 | if (!PL_known_layers) |
912 | PL_known_layers = PerlIO_list_alloc(aTHX); | |
a0714e2c | 913 | PerlIO_list_push(aTHX_ PL_known_layers, tab, NULL); |
fe5a182c | 914 | PerlIO_debug("define %s %p\n", tab->name, (void*)tab); |
f3862f8b NIS |
915 | } |
916 | ||
1141d9f8 | 917 | int |
fcf2db38 | 918 | PerlIO_parse_layers(pTHX_ PerlIO_list_t *av, const char *names) |
1141d9f8 | 919 | { |
97aff369 | 920 | dVAR; |
14a5cf38 JH |
921 | if (names) { |
922 | const char *s = names; | |
923 | while (*s) { | |
924 | while (isSPACE(*s) || *s == ':') | |
925 | s++; | |
926 | if (*s) { | |
927 | STRLEN llen = 0; | |
928 | const char *e = s; | |
bd61b366 | 929 | const char *as = NULL; |
14a5cf38 JH |
930 | STRLEN alen = 0; |
931 | if (!isIDFIRST(*s)) { | |
932 | /* | |
933 | * Message is consistent with how attribute lists are | |
934 | * passed. Even though this means "foo : : bar" is | |
71200d45 | 935 | * seen as an invalid separator character. |
14a5cf38 | 936 | */ |
de009b76 | 937 | const char q = ((*s == '\'') ? '"' : '\''); |
99ef548b | 938 | if (ckWARN(WARN_LAYER)) |
22569500 | 939 | Perl_warner(aTHX_ packWARN(WARN_LAYER), |
b4581f09 | 940 | "Invalid separator character %c%c%c in PerlIO layer specification %s", |
1e616cf5 | 941 | q, *s, q, s); |
93189314 | 942 | SETERRNO(EINVAL, LIB_INVARG); |
14a5cf38 JH |
943 | return -1; |
944 | } | |
945 | do { | |
946 | e++; | |
947 | } while (isALNUM(*e)); | |
948 | llen = e - s; | |
949 | if (*e == '(') { | |
950 | int nesting = 1; | |
951 | as = ++e; | |
952 | while (nesting) { | |
953 | switch (*e++) { | |
954 | case ')': | |
955 | if (--nesting == 0) | |
956 | alen = (e - 1) - as; | |
957 | break; | |
958 | case '(': | |
959 | ++nesting; | |
960 | break; | |
961 | case '\\': | |
962 | /* | |
963 | * It's a nul terminated string, not allowed | |
964 | * to \ the terminating null. Anything other | |
71200d45 | 965 | * character is passed over. |
14a5cf38 JH |
966 | */ |
967 | if (*e++) { | |
968 | break; | |
969 | } | |
970 | /* | |
71200d45 | 971 | * Drop through |
14a5cf38 JH |
972 | */ |
973 | case '\0': | |
974 | e--; | |
22569500 NIS |
975 | if (ckWARN(WARN_LAYER)) |
976 | Perl_warner(aTHX_ packWARN(WARN_LAYER), | |
b4581f09 | 977 | "Argument list not closed for PerlIO layer \"%.*s\"", |
14a5cf38 JH |
978 | (int) (e - s), s); |
979 | return -1; | |
980 | default: | |
981 | /* | |
71200d45 | 982 | * boring. |
14a5cf38 JH |
983 | */ |
984 | break; | |
985 | } | |
986 | } | |
987 | } | |
988 | if (e > s) { | |
46c461b5 | 989 | PerlIO_funcs * const layer = |
14a5cf38 JH |
990 | PerlIO_find_layer(aTHX_ s, llen, 1); |
991 | if (layer) { | |
3a1ee7e8 | 992 | PerlIO_list_push(aTHX_ av, layer, |
14a5cf38 JH |
993 | (as) ? newSVpvn(as, |
994 | alen) : | |
995 | &PL_sv_undef); | |
996 | } | |
997 | else { | |
041457d9 | 998 | if (ckWARN(WARN_LAYER)) |
b4581f09 | 999 | Perl_warner(aTHX_ packWARN(WARN_LAYER), "Unknown PerlIO layer \"%.*s\"", |
14a5cf38 JH |
1000 | (int) llen, s); |
1001 | return -1; | |
1002 | } | |
1003 | } | |
1004 | s = e; | |
1005 | } | |
1006 | } | |
1007 | } | |
1008 | return 0; | |
1141d9f8 NIS |
1009 | } |
1010 | ||
dfebf958 | 1011 | void |
fcf2db38 | 1012 | PerlIO_default_buffer(pTHX_ PerlIO_list_t *av) |
dfebf958 | 1013 | { |
97aff369 | 1014 | dVAR; |
27da23d5 | 1015 | PERLIO_FUNCS_DECL(*tab) = &PerlIO_perlio; |
35990314 | 1016 | #ifdef PERLIO_USING_CRLF |
6ce75a77 | 1017 | tab = &PerlIO_crlf; |
846be114 | 1018 | #else |
6ce75a77 | 1019 | if (PerlIO_stdio.Set_ptrcnt) |
22569500 | 1020 | tab = &PerlIO_stdio; |
846be114 | 1021 | #endif |
14a5cf38 | 1022 | PerlIO_debug("Pushing %s\n", tab->name); |
3a1ee7e8 | 1023 | PerlIO_list_push(aTHX_ av, PerlIO_find_layer(aTHX_ tab->name, 0, 0), |
14a5cf38 | 1024 | &PL_sv_undef); |
dfebf958 NIS |
1025 | } |
1026 | ||
e3f3bf95 | 1027 | SV * |
14a5cf38 | 1028 | PerlIO_arg_fetch(PerlIO_list_t *av, IV n) |
e3f3bf95 | 1029 | { |
14a5cf38 | 1030 | return av->array[n].arg; |
e3f3bf95 NIS |
1031 | } |
1032 | ||
f3862f8b | 1033 | PerlIO_funcs * |
14a5cf38 | 1034 | PerlIO_layer_fetch(pTHX_ PerlIO_list_t *av, IV n, PerlIO_funcs *def) |
f3862f8b | 1035 | { |
14a5cf38 JH |
1036 | if (n >= 0 && n < av->cur) { |
1037 | PerlIO_debug("Layer %" IVdf " is %s\n", n, | |
1038 | av->array[n].funcs->name); | |
1039 | return av->array[n].funcs; | |
1040 | } | |
1041 | if (!def) | |
1042 | Perl_croak(aTHX_ "panic: PerlIO layer array corrupt"); | |
1043 | return def; | |
e3f3bf95 NIS |
1044 | } |
1045 | ||
4ec2216f NIS |
1046 | IV |
1047 | PerlIOPop_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab) | |
1048 | { | |
8772537c AL |
1049 | PERL_UNUSED_ARG(mode); |
1050 | PERL_UNUSED_ARG(arg); | |
1051 | PERL_UNUSED_ARG(tab); | |
4ec2216f NIS |
1052 | if (PerlIOValid(f)) { |
1053 | PerlIO_flush(f); | |
1054 | PerlIO_pop(aTHX_ f); | |
1055 | return 0; | |
1056 | } | |
1057 | return -1; | |
1058 | } | |
1059 | ||
27da23d5 | 1060 | PERLIO_FUNCS_DECL(PerlIO_remove) = { |
4ec2216f NIS |
1061 | sizeof(PerlIO_funcs), |
1062 | "pop", | |
1063 | 0, | |
1064 | PERLIO_K_DUMMY | PERLIO_K_UTF8, | |
1065 | PerlIOPop_pushed, | |
1066 | NULL, | |
1067 | NULL, | |
1068 | NULL, | |
1069 | NULL, | |
1070 | NULL, | |
1071 | NULL, | |
1072 | NULL, | |
1073 | NULL, | |
1074 | NULL, | |
1075 | NULL, | |
de009b76 AL |
1076 | NULL, |
1077 | NULL, | |
4ec2216f NIS |
1078 | NULL, /* flush */ |
1079 | NULL, /* fill */ | |
1080 | NULL, | |
1081 | NULL, | |
1082 | NULL, | |
1083 | NULL, | |
1084 | NULL, /* get_base */ | |
1085 | NULL, /* get_bufsiz */ | |
1086 | NULL, /* get_ptr */ | |
1087 | NULL, /* get_cnt */ | |
1088 | NULL, /* set_ptrcnt */ | |
1089 | }; | |
1090 | ||
fcf2db38 | 1091 | PerlIO_list_t * |
e3f3bf95 NIS |
1092 | PerlIO_default_layers(pTHX) |
1093 | { | |
97aff369 | 1094 | dVAR; |
3a1ee7e8 | 1095 | if (!PL_def_layerlist) { |
bd61b366 | 1096 | const char * const s = (PL_tainting) ? NULL : PerlEnv_getenv("PERLIO"); |
27da23d5 | 1097 | PERLIO_FUNCS_DECL(*osLayer) = &PerlIO_unix; |
3a1ee7e8 | 1098 | PL_def_layerlist = PerlIO_list_alloc(aTHX); |
27da23d5 | 1099 | PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_unix)); |
979e2c82 | 1100 | #if defined(WIN32) |
27da23d5 | 1101 | PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_win32)); |
2f8118af | 1102 | #if 0 |
14a5cf38 | 1103 | osLayer = &PerlIO_win32; |
0c4128ad | 1104 | #endif |
2f8118af | 1105 | #endif |
27da23d5 JH |
1106 | PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_raw)); |
1107 | PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_perlio)); | |
1108 | PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_stdio)); | |
1109 | PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_crlf)); | |
06da4f11 | 1110 | #ifdef HAS_MMAP |
27da23d5 | 1111 | PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_mmap)); |
06da4f11 | 1112 | #endif |
27da23d5 JH |
1113 | PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_utf8)); |
1114 | PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_remove)); | |
1115 | PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_byte)); | |
3a1ee7e8 | 1116 | PerlIO_list_push(aTHX_ PL_def_layerlist, |
14a5cf38 JH |
1117 | PerlIO_find_layer(aTHX_ osLayer->name, 0, 0), |
1118 | &PL_sv_undef); | |
1119 | if (s) { | |
3a1ee7e8 | 1120 | PerlIO_parse_layers(aTHX_ PL_def_layerlist, s); |
14a5cf38 JH |
1121 | } |
1122 | else { | |
3a1ee7e8 | 1123 | PerlIO_default_buffer(aTHX_ PL_def_layerlist); |
14a5cf38 | 1124 | } |
1141d9f8 | 1125 | } |
3a1ee7e8 NIS |
1126 | if (PL_def_layerlist->cur < 2) { |
1127 | PerlIO_default_buffer(aTHX_ PL_def_layerlist); | |
f3862f8b | 1128 | } |
3a1ee7e8 | 1129 | return PL_def_layerlist; |
e3f3bf95 NIS |
1130 | } |
1131 | ||
0c4f7ff0 NIS |
1132 | void |
1133 | Perl_boot_core_PerlIO(pTHX) | |
1134 | { | |
1135 | #ifdef USE_ATTRIBUTES_FOR_PERLIO | |
14a5cf38 JH |
1136 | newXS("io::MODIFY_SCALAR_ATTRIBUTES", XS_io_MODIFY_SCALAR_ATTRIBUTES, |
1137 | __FILE__); | |
0c4f7ff0 | 1138 | #endif |
14a5cf38 | 1139 | newXS("PerlIO::Layer::find", XS_PerlIO__Layer__find, __FILE__); |
c9bca74a | 1140 | newXS("PerlIO::Layer::NoWarnings", XS_PerlIO__Layer__NoWarnings, __FILE__); |
0c4f7ff0 | 1141 | } |
e3f3bf95 NIS |
1142 | |
1143 | PerlIO_funcs * | |
1144 | PerlIO_default_layer(pTHX_ I32 n) | |
1145 | { | |
97aff369 | 1146 | dVAR; |
46c461b5 | 1147 | PerlIO_list_t * const av = PerlIO_default_layers(aTHX); |
14a5cf38 JH |
1148 | if (n < 0) |
1149 | n += av->cur; | |
27da23d5 | 1150 | return PerlIO_layer_fetch(aTHX_ av, n, PERLIO_FUNCS_CAST(&PerlIO_stdio)); |
f3862f8b NIS |
1151 | } |
1152 | ||
a999f61b NIS |
1153 | #define PerlIO_default_top() PerlIO_default_layer(aTHX_ -1) |
1154 | #define PerlIO_default_btm() PerlIO_default_layer(aTHX_ 0) | |
60382766 NIS |
1155 | |
1156 | void | |
1141d9f8 | 1157 | PerlIO_stdstreams(pTHX) |
60382766 | 1158 | { |
97aff369 | 1159 | dVAR; |
a1ea730d | 1160 | if (!PL_perlio) { |
14a5cf38 JH |
1161 | PerlIO_allocate(aTHX); |
1162 | PerlIO_fdopen(0, "Ir" PERLIO_STDTEXT); | |
1163 | PerlIO_fdopen(1, "Iw" PERLIO_STDTEXT); | |
1164 | PerlIO_fdopen(2, "Iw" PERLIO_STDTEXT); | |
1165 | } | |
60382766 NIS |
1166 | } |
1167 | ||
1168 | PerlIO * | |
27da23d5 | 1169 | PerlIO_push(pTHX_ PerlIO *f, PERLIO_FUNCS_DECL(*tab), const char *mode, SV *arg) |
14a5cf38 | 1170 | { |
2dc2558e NIS |
1171 | if (tab->fsize != sizeof(PerlIO_funcs)) { |
1172 | mismatch: | |
1173 | Perl_croak(aTHX_ "Layer does not match this perl"); | |
1174 | } | |
1175 | if (tab->size) { | |
b464bac0 | 1176 | PerlIOl *l; |
2dc2558e NIS |
1177 | if (tab->size < sizeof(PerlIOl)) { |
1178 | goto mismatch; | |
1179 | } | |
1180 | /* Real layer with a data area */ | |
a02a5408 | 1181 | Newxc(l,tab->size,char,PerlIOl); |
2dc2558e NIS |
1182 | if (l && f) { |
1183 | Zero(l, tab->size, char); | |
1184 | l->next = *f; | |
27da23d5 | 1185 | l->tab = (PerlIO_funcs*) tab; |
2dc2558e NIS |
1186 | *f = l; |
1187 | PerlIO_debug("PerlIO_push f=%p %s %s %p\n", (void*)f, tab->name, | |
1188 | (mode) ? mode : "(Null)", (void*)arg); | |
210e727c | 1189 | if (*l->tab->Pushed && |
27da23d5 | 1190 | (*l->tab->Pushed) (aTHX_ f, mode, arg, (PerlIO_funcs*) tab) != 0) { |
2dc2558e NIS |
1191 | PerlIO_pop(aTHX_ f); |
1192 | return NULL; | |
1193 | } | |
1194 | } | |
1195 | } | |
1196 | else if (f) { | |
1197 | /* Pseudo-layer where push does its own stack adjust */ | |
00f51856 NIS |
1198 | PerlIO_debug("PerlIO_push f=%p %s %s %p\n", (void*)f, tab->name, |
1199 | (mode) ? mode : "(Null)", (void*)arg); | |
210e727c | 1200 | if (tab->Pushed && |
27da23d5 | 1201 | (*tab->Pushed) (aTHX_ f, mode, arg, (PerlIO_funcs*) tab) != 0) { |
210e727c | 1202 | return NULL; |
14a5cf38 JH |
1203 | } |
1204 | } | |
1205 | return f; | |
60382766 NIS |
1206 | } |
1207 | ||
dfebf958 | 1208 | IV |
86e05cf2 NIS |
1209 | PerlIOBase_binmode(pTHX_ PerlIO *f) |
1210 | { | |
1211 | if (PerlIOValid(f)) { | |
1212 | /* Is layer suitable for raw stream ? */ | |
1213 | if (PerlIOBase(f)->tab->kind & PERLIO_K_RAW) { | |
1214 | /* Yes - turn off UTF-8-ness, to undo UTF-8 locale effects */ | |
1215 | PerlIOBase(f)->flags &= ~PERLIO_F_UTF8; | |
1216 | } | |
1217 | else { | |
1218 | /* Not suitable - pop it */ | |
1219 | PerlIO_pop(aTHX_ f); | |
1220 | } | |
1221 | return 0; | |
1222 | } | |
1223 | return -1; | |
1224 | } | |
1225 | ||
1226 | IV | |
2dc2558e | 1227 | PerlIORaw_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab) |
dfebf958 | 1228 | { |
8772537c AL |
1229 | PERL_UNUSED_ARG(mode); |
1230 | PERL_UNUSED_ARG(arg); | |
1231 | PERL_UNUSED_ARG(tab); | |
86e05cf2 | 1232 | |
04892f78 | 1233 | if (PerlIOValid(f)) { |
86e05cf2 | 1234 | PerlIO *t; |
de009b76 | 1235 | const PerlIOl *l; |
14a5cf38 | 1236 | PerlIO_flush(f); |
86e05cf2 NIS |
1237 | /* |
1238 | * Strip all layers that are not suitable for a raw stream | |
1239 | */ | |
1240 | t = f; | |
1241 | while (t && (l = *t)) { | |
1242 | if (l->tab->Binmode) { | |
1243 | /* Has a handler - normal case */ | |
1244 | if ((*l->tab->Binmode)(aTHX_ f) == 0) { | |
1245 | if (*t == l) { | |
1246 | /* Layer still there - move down a layer */ | |
1247 | t = PerlIONext(t); | |
1248 | } | |
1249 | } | |
1250 | else { | |
1251 | return -1; | |
1252 | } | |
14a5cf38 JH |
1253 | } |
1254 | else { | |
86e05cf2 NIS |
1255 | /* No handler - pop it */ |
1256 | PerlIO_pop(aTHX_ t); | |
14a5cf38 JH |
1257 | } |
1258 | } | |
86e05cf2 NIS |
1259 | if (PerlIOValid(f)) { |
1260 | PerlIO_debug(":raw f=%p :%s\n", (void*)f, PerlIOBase(f)->tab->name); | |
1261 | return 0; | |
1262 | } | |
14a5cf38 JH |
1263 | } |
1264 | return -1; | |
dfebf958 NIS |
1265 | } |
1266 | ||
ac27b0f5 | 1267 | int |
14a5cf38 | 1268 | PerlIO_apply_layera(pTHX_ PerlIO *f, const char *mode, |
d9dac8cd | 1269 | PerlIO_list_t *layers, IV n, IV max) |
14a5cf38 | 1270 | { |
14a5cf38 JH |
1271 | int code = 0; |
1272 | while (n < max) { | |
8772537c | 1273 | PerlIO_funcs * const tab = PerlIO_layer_fetch(aTHX_ layers, n, NULL); |
14a5cf38 JH |
1274 | if (tab) { |
1275 | if (!PerlIO_push(aTHX_ f, tab, mode, PerlIOArg)) { | |
1276 | code = -1; | |
1277 | break; | |
1278 | } | |
1279 | } | |
1280 | n++; | |
1281 | } | |
1282 | return code; | |
e3f3bf95 NIS |
1283 | } |
1284 | ||
1285 | int | |
ac27b0f5 NIS |
1286 | PerlIO_apply_layers(pTHX_ PerlIO *f, const char *mode, const char *names) |
1287 | { | |
14a5cf38 | 1288 | int code = 0; |
53f1b6d2 | 1289 | if (f && names) { |
8772537c | 1290 | PerlIO_list_t * const layers = PerlIO_list_alloc(aTHX); |
14a5cf38 JH |
1291 | code = PerlIO_parse_layers(aTHX_ layers, names); |
1292 | if (code == 0) { | |
d9dac8cd | 1293 | code = PerlIO_apply_layera(aTHX_ f, mode, layers, 0, layers->cur); |
14a5cf38 | 1294 | } |
3a1ee7e8 | 1295 | PerlIO_list_free(aTHX_ layers); |
ac27b0f5 | 1296 | } |
14a5cf38 | 1297 | return code; |
ac27b0f5 NIS |
1298 | } |
1299 | ||
f3862f8b | 1300 | |
60382766 | 1301 | /*--------------------------------------------------------------------------------------*/ |
14a5cf38 | 1302 | /* |
71200d45 | 1303 | * Given the abstraction above the public API functions |
14a5cf38 | 1304 | */ |
60382766 NIS |
1305 | |
1306 | int | |
f5b9d040 | 1307 | PerlIO_binmode(pTHX_ PerlIO *f, int iotype, int mode, const char *names) |
76ced9ad | 1308 | { |
68b5363f PD |
1309 | PerlIO_debug("PerlIO_binmode f=%p %s %c %x %s\n", (void*)f, |
1310 | (PerlIOBase(f)) ? PerlIOBase(f)->tab->name : "(Null)", | |
1311 | iotype, mode, (names) ? names : "(Null)"); | |
1312 | ||
03c0554d NIS |
1313 | if (names) { |
1314 | /* Do not flush etc. if (e.g.) switching encodings. | |
1315 | if a pushed layer knows it needs to flush lower layers | |
1316 | (for example :unix which is never going to call them) | |
1317 | it can do the flush when it is pushed. | |
1318 | */ | |
1319 | return PerlIO_apply_layers(aTHX_ f, NULL, names) == 0 ? TRUE : FALSE; | |
1320 | } | |
1321 | else { | |
86e05cf2 | 1322 | /* Fake 5.6 legacy of using this call to turn ON O_TEXT */ |
35990314 | 1323 | #ifdef PERLIO_USING_CRLF |
03c0554d NIS |
1324 | /* Legacy binmode only has meaning if O_TEXT has a value distinct from |
1325 | O_BINARY so we can look for it in mode. | |
1326 | */ | |
1327 | if (!(mode & O_BINARY)) { | |
1328 | /* Text mode */ | |
86e05cf2 NIS |
1329 | /* FIXME?: Looking down the layer stack seems wrong, |
1330 | but is a way of reaching past (say) an encoding layer | |
1331 | to flip CRLF-ness of the layer(s) below | |
1332 | */ | |
03c0554d NIS |
1333 | while (*f) { |
1334 | /* Perhaps we should turn on bottom-most aware layer | |
1335 | e.g. Ilya's idea that UNIX TTY could serve | |
1336 | */ | |
1337 | if (PerlIOBase(f)->tab->kind & PERLIO_K_CANCRLF) { | |
1338 | if (!(PerlIOBase(f)->flags & PERLIO_F_CRLF)) { | |
1339 | /* Not in text mode - flush any pending stuff and flip it */ | |
1340 | PerlIO_flush(f); | |
1341 | PerlIOBase(f)->flags |= PERLIO_F_CRLF; | |
1342 | } | |
1343 | /* Only need to turn it on in one layer so we are done */ | |
1344 | return TRUE; | |
ed53a2bb | 1345 | } |
03c0554d | 1346 | f = PerlIONext(f); |
14a5cf38 | 1347 | } |
03c0554d NIS |
1348 | /* Not finding a CRLF aware layer presumably means we are binary |
1349 | which is not what was requested - so we failed | |
1350 | We _could_ push :crlf layer but so could caller | |
1351 | */ | |
1352 | return FALSE; | |
14a5cf38 | 1353 | } |
6ce75a77 | 1354 | #endif |
86e05cf2 NIS |
1355 | /* Legacy binmode is now _defined_ as being equivalent to pushing :raw |
1356 | So code that used to be here is now in PerlIORaw_pushed(). | |
03c0554d | 1357 | */ |
a0714e2c | 1358 | return PerlIO_push(aTHX_ f, PERLIO_FUNCS_CAST(&PerlIO_raw), NULL, NULL) ? TRUE : FALSE; |
14a5cf38 | 1359 | } |
f5b9d040 NIS |
1360 | } |
1361 | ||
f5b9d040 | 1362 | int |
e87a358a | 1363 | PerlIO__close(pTHX_ PerlIO *f) |
f5b9d040 | 1364 | { |
37725cdc | 1365 | if (PerlIOValid(f)) { |
46c461b5 | 1366 | PerlIO_funcs * const tab = PerlIOBase(f)->tab; |
37725cdc NIS |
1367 | if (tab && tab->Close) |
1368 | return (*tab->Close)(aTHX_ f); | |
1369 | else | |
1370 | return PerlIOBase_close(aTHX_ f); | |
1371 | } | |
14a5cf38 | 1372 | else { |
93189314 | 1373 | SETERRNO(EBADF, SS_IVCHAN); |
14a5cf38 JH |
1374 | return -1; |
1375 | } | |
76ced9ad NIS |
1376 | } |
1377 | ||
b931b1d9 | 1378 | int |
e87a358a | 1379 | Perl_PerlIO_close(pTHX_ PerlIO *f) |
b931b1d9 | 1380 | { |
de009b76 | 1381 | const int code = PerlIO__close(aTHX_ f); |
37725cdc NIS |
1382 | while (PerlIOValid(f)) { |
1383 | PerlIO_pop(aTHX_ f); | |
f6c77cf1 | 1384 | } |
14a5cf38 | 1385 | return code; |
b931b1d9 NIS |
1386 | } |
1387 | ||
b931b1d9 | 1388 | int |
e87a358a | 1389 | Perl_PerlIO_fileno(pTHX_ PerlIO *f) |
b931b1d9 | 1390 | { |
97aff369 | 1391 | dVAR; |
b32dd47e | 1392 | Perl_PerlIO_or_Base(f, Fileno, fileno, -1, (aTHX_ f)); |
b931b1d9 NIS |
1393 | } |
1394 | ||
1141d9f8 NIS |
1395 | static const char * |
1396 | PerlIO_context_layers(pTHX_ const char *mode) | |
1397 | { | |
97aff369 | 1398 | dVAR; |
14a5cf38 JH |
1399 | const char *type = NULL; |
1400 | /* | |
71200d45 | 1401 | * Need to supply default layer info from open.pm |
14a5cf38 JH |
1402 | */ |
1403 | if (PL_curcop) { | |
dcda55fc | 1404 | SV * const layers = PL_curcop->cop_io; |
14a5cf38 JH |
1405 | if (layers) { |
1406 | STRLEN len; | |
b83604b4 | 1407 | type = SvPV_const(layers, len); |
14a5cf38 JH |
1408 | if (type && mode[0] != 'r') { |
1409 | /* | |
71200d45 | 1410 | * Skip to write part |
14a5cf38 | 1411 | */ |
dcda55fc | 1412 | const char * const s = strchr(type, 0); |
eb160463 | 1413 | if (s && (STRLEN)(s - type) < len) { |
14a5cf38 JH |
1414 | type = s + 1; |
1415 | } | |
1416 | } | |
1417 | } | |
1418 | } | |
1419 | return type; | |
1141d9f8 NIS |
1420 | } |
1421 | ||
fcf2db38 | 1422 | static PerlIO_funcs * |
2edd7e44 NIS |
1423 | PerlIO_layer_from_ref(pTHX_ SV *sv) |
1424 | { | |
97aff369 | 1425 | dVAR; |
14a5cf38 | 1426 | /* |
71200d45 | 1427 | * For any scalar type load the handler which is bundled with perl |
14a5cf38 JH |
1428 | */ |
1429 | if (SvTYPE(sv) < SVt_PVAV) | |
6a245ed1 | 1430 | return PerlIO_find_layer(aTHX_ STR_WITH_LEN("scalar"), 1); |
14a5cf38 JH |
1431 | |
1432 | /* | |
71200d45 | 1433 | * For other types allow if layer is known but don't try and load it |
14a5cf38 JH |
1434 | */ |
1435 | switch (SvTYPE(sv)) { | |
1436 | case SVt_PVAV: | |
6a245ed1 | 1437 | return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Array"), 0); |
14a5cf38 | 1438 | case SVt_PVHV: |
6a245ed1 | 1439 | return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Hash"), 0); |
14a5cf38 | 1440 | case SVt_PVCV: |
6a245ed1 | 1441 | return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Code"), 0); |
14a5cf38 | 1442 | case SVt_PVGV: |
6a245ed1 | 1443 | return PerlIO_find_layer(aTHX_ STR_WITH_LEN("Glob"), 0); |
14a5cf38 JH |
1444 | } |
1445 | return NULL; | |
2edd7e44 NIS |
1446 | } |
1447 | ||
fcf2db38 | 1448 | PerlIO_list_t * |
14a5cf38 JH |
1449 | PerlIO_resolve_layers(pTHX_ const char *layers, |
1450 | const char *mode, int narg, SV **args) | |
1451 | { | |
97aff369 | 1452 | dVAR; |
14a5cf38 JH |
1453 | PerlIO_list_t *def = PerlIO_default_layers(aTHX); |
1454 | int incdef = 1; | |
a1ea730d | 1455 | if (!PL_perlio) |
14a5cf38 JH |
1456 | PerlIO_stdstreams(aTHX); |
1457 | if (narg) { | |
dcda55fc | 1458 | SV * const arg = *args; |
14a5cf38 | 1459 | /* |
71200d45 NIS |
1460 | * If it is a reference but not an object see if we have a handler |
1461 | * for it | |
14a5cf38 JH |
1462 | */ |
1463 | if (SvROK(arg) && !sv_isobject(arg)) { | |
46c461b5 | 1464 | PerlIO_funcs * const handler = PerlIO_layer_from_ref(aTHX_ SvRV(arg)); |
14a5cf38 | 1465 | if (handler) { |
3a1ee7e8 NIS |
1466 | def = PerlIO_list_alloc(aTHX); |
1467 | PerlIO_list_push(aTHX_ def, handler, &PL_sv_undef); | |
14a5cf38 JH |
1468 | incdef = 0; |
1469 | } | |
1470 | /* | |
e934609f | 1471 | * Don't fail if handler cannot be found :via(...) etc. may do |
14a5cf38 | 1472 | * something sensible else we will just stringfy and open |
71200d45 | 1473 | * resulting string. |
14a5cf38 JH |
1474 | */ |
1475 | } | |
1476 | } | |
9fe371da | 1477 | if (!layers || !*layers) |
14a5cf38 JH |
1478 | layers = PerlIO_context_layers(aTHX_ mode); |
1479 | if (layers && *layers) { | |
1480 | PerlIO_list_t *av; | |
1481 | if (incdef) { | |
de009b76 | 1482 | IV i; |
3a1ee7e8 | 1483 | av = PerlIO_list_alloc(aTHX); |
14a5cf38 | 1484 | for (i = 0; i < def->cur; i++) { |
3a1ee7e8 | 1485 | PerlIO_list_push(aTHX_ av, def->array[i].funcs, |
14a5cf38 JH |
1486 | def->array[i].arg); |
1487 | } | |
1488 | } | |
1489 | else { | |
1490 | av = def; | |
1491 | } | |
0cff2cf3 NIS |
1492 | if (PerlIO_parse_layers(aTHX_ av, layers) == 0) { |
1493 | return av; | |
1494 | } | |
1495 | else { | |
1496 | PerlIO_list_free(aTHX_ av); | |
1497 | return (PerlIO_list_t *) NULL; | |
1498 | } | |
14a5cf38 JH |
1499 | } |
1500 | else { | |
1501 | if (incdef) | |
1502 | def->refcnt++; | |
1503 | return def; | |
1504 | } | |
ee518936 NIS |
1505 | } |
1506 | ||
1507 | PerlIO * | |
14a5cf38 JH |
1508 | PerlIO_openn(pTHX_ const char *layers, const char *mode, int fd, |
1509 | int imode, int perm, PerlIO *f, int narg, SV **args) | |
1510 | { | |
97aff369 | 1511 | dVAR; |
14a5cf38 JH |
1512 | if (!f && narg == 1 && *args == &PL_sv_undef) { |
1513 | if ((f = PerlIO_tmpfile())) { | |
9fe371da | 1514 | if (!layers || !*layers) |
14a5cf38 JH |
1515 | layers = PerlIO_context_layers(aTHX_ mode); |
1516 | if (layers && *layers) | |
1517 | PerlIO_apply_layers(aTHX_ f, mode, layers); | |
1518 | } | |
1519 | } | |
1520 | else { | |
de009b76 | 1521 | PerlIO_list_t *layera; |
14a5cf38 JH |
1522 | IV n; |
1523 | PerlIO_funcs *tab = NULL; | |
04892f78 | 1524 | if (PerlIOValid(f)) { |
14a5cf38 | 1525 | /* |
71200d45 NIS |
1526 | * This is "reopen" - it is not tested as perl does not use it |
1527 | * yet | |
14a5cf38 JH |
1528 | */ |
1529 | PerlIOl *l = *f; | |
3a1ee7e8 | 1530 | layera = PerlIO_list_alloc(aTHX); |
14a5cf38 | 1531 | while (l) { |
46c461b5 | 1532 | SV * const arg = (l->tab->Getarg) |
04892f78 NIS |
1533 | ? (*l->tab->Getarg) (aTHX_ &l, NULL, 0) |
1534 | : &PL_sv_undef; | |
3a1ee7e8 | 1535 | PerlIO_list_push(aTHX_ layera, l->tab, arg); |
14a5cf38 JH |
1536 | l = *PerlIONext(&l); |
1537 | } | |
1538 | } | |
1539 | else { | |
1540 | layera = PerlIO_resolve_layers(aTHX_ layers, mode, narg, args); | |
0cff2cf3 NIS |
1541 | if (!layera) { |
1542 | return NULL; | |
1543 | } | |
14a5cf38 JH |
1544 | } |
1545 | /* | |
71200d45 | 1546 | * Start at "top" of layer stack |
14a5cf38 JH |
1547 | */ |
1548 | n = layera->cur - 1; | |
1549 | while (n >= 0) { | |
46c461b5 | 1550 | PerlIO_funcs * const t = PerlIO_layer_fetch(aTHX_ layera, n, NULL); |
14a5cf38 JH |
1551 | if (t && t->Open) { |
1552 | tab = t; | |
1553 | break; | |
1554 | } | |
1555 | n--; | |
1556 | } | |
1557 | if (tab) { | |
1558 | /* | |
71200d45 | 1559 | * Found that layer 'n' can do opens - call it |
14a5cf38 | 1560 | */ |
7cf31beb | 1561 | if (narg > 1 && !(tab->kind & PERLIO_K_MULTIARG)) { |
3b8752bb | 1562 | Perl_croak(aTHX_ "More than one argument to open(,':%s')",tab->name); |
7cf31beb | 1563 | } |
14a5cf38 | 1564 | PerlIO_debug("openn(%s,'%s','%s',%d,%x,%o,%p,%d,%p)\n", |
355d3743 PD |
1565 | tab->name, layers ? layers : "(Null)", mode, fd, |
1566 | imode, perm, (void*)f, narg, (void*)args); | |
210e727c JH |
1567 | if (tab->Open) |
1568 | f = (*tab->Open) (aTHX_ tab, layera, n, mode, fd, imode, perm, | |
1569 | f, narg, args); | |
1570 | else { | |
1571 | SETERRNO(EINVAL, LIB_INVARG); | |
1572 | f = NULL; | |
1573 | } | |
14a5cf38 JH |
1574 | if (f) { |
1575 | if (n + 1 < layera->cur) { | |
1576 | /* | |
1577 | * More layers above the one that we used to open - | |
71200d45 | 1578 | * apply them now |
14a5cf38 | 1579 | */ |
d9dac8cd NIS |
1580 | if (PerlIO_apply_layera(aTHX_ f, mode, layera, n + 1, layera->cur) != 0) { |
1581 | /* If pushing layers fails close the file */ | |
1582 | PerlIO_close(f); | |
14a5cf38 JH |
1583 | f = NULL; |
1584 | } | |
1585 | } | |
1586 | } | |
1587 | } | |
3a1ee7e8 | 1588 | PerlIO_list_free(aTHX_ layera); |
14a5cf38 JH |
1589 | } |
1590 | return f; | |
ee518936 | 1591 | } |
b931b1d9 NIS |
1592 | |
1593 | ||
9e353e3b | 1594 | SSize_t |
e87a358a | 1595 | Perl_PerlIO_read(pTHX_ PerlIO *f, void *vbuf, Size_t count) |
6f9d8c32 | 1596 | { |
b32dd47e | 1597 | Perl_PerlIO_or_Base(f, Read, read, -1, (aTHX_ f, vbuf, count)); |
760ac839 LW |
1598 | } |
1599 | ||
313ca112 | 1600 | SSize_t |
e87a358a | 1601 | Perl_PerlIO_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count) |
760ac839 | 1602 | { |
b32dd47e | 1603 | Perl_PerlIO_or_Base(f, Unread, unread, -1, (aTHX_ f, vbuf, count)); |
760ac839 LW |
1604 | } |
1605 | ||
9e353e3b | 1606 | SSize_t |
e87a358a | 1607 | Perl_PerlIO_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count) |
760ac839 | 1608 | { |
b32dd47e | 1609 | Perl_PerlIO_or_fail(f, Write, -1, (aTHX_ f, vbuf, count)); |
760ac839 LW |
1610 | } |
1611 | ||
6f9d8c32 | 1612 | int |
e87a358a | 1613 | Perl_PerlIO_seek(pTHX_ PerlIO *f, Off_t offset, int whence) |
760ac839 | 1614 | { |
b32dd47e | 1615 | Perl_PerlIO_or_fail(f, Seek, -1, (aTHX_ f, offset, whence)); |
760ac839 LW |
1616 | } |
1617 | ||
9e353e3b | 1618 | Off_t |
e87a358a | 1619 | Perl_PerlIO_tell(pTHX_ PerlIO *f) |
760ac839 | 1620 | { |
b32dd47e | 1621 | Perl_PerlIO_or_fail(f, Tell, -1, (aTHX_ f)); |
760ac839 LW |
1622 | } |
1623 | ||
6f9d8c32 | 1624 | int |
e87a358a | 1625 | Perl_PerlIO_flush(pTHX_ PerlIO *f) |
760ac839 | 1626 | { |
97aff369 | 1627 | dVAR; |
14a5cf38 JH |
1628 | if (f) { |
1629 | if (*f) { | |
de009b76 | 1630 | const PerlIO_funcs *tab = PerlIOBase(f)->tab; |
1b7a0411 JH |
1631 | |
1632 | if (tab && tab->Flush) | |
f62ce20a | 1633 | return (*tab->Flush) (aTHX_ f); |
1b7a0411 JH |
1634 | else |
1635 | return 0; /* If no Flush defined, silently succeed. */ | |
14a5cf38 JH |
1636 | } |
1637 | else { | |
fe5a182c | 1638 | PerlIO_debug("Cannot flush f=%p\n", (void*)f); |
93189314 | 1639 | SETERRNO(EBADF, SS_IVCHAN); |
14a5cf38 JH |
1640 | return -1; |
1641 | } | |
1642 | } | |
1643 | else { | |
1644 | /* | |
1645 | * Is it good API design to do flush-all on NULL, a potentially | |
1646 | * errorneous input? Maybe some magical value (PerlIO* | |
1647 | * PERLIO_FLUSH_ALL = (PerlIO*)-1;)? Yes, stdio does similar | |
1648 | * things on fflush(NULL), but should we be bound by their design | |
71200d45 | 1649 | * decisions? --jhi |
14a5cf38 | 1650 | */ |
a1ea730d | 1651 | PerlIO **table = &PL_perlio; |
14a5cf38 JH |
1652 | int code = 0; |
1653 | while ((f = *table)) { | |
1654 | int i; | |
1655 | table = (PerlIO **) (f++); | |
1656 | for (i = 1; i < PERLIO_TABLE_SIZE; i++) { | |
1657 | if (*f && PerlIO_flush(f) != 0) | |
1658 | code = -1; | |
1659 | f++; | |
1660 | } | |
1661 | } | |
1662 | return code; | |
1663 | } | |
760ac839 LW |
1664 | } |
1665 | ||
a9c883f6 | 1666 | void |
f62ce20a | 1667 | PerlIOBase_flush_linebuf(pTHX) |
a9c883f6 | 1668 | { |
97aff369 | 1669 | dVAR; |
a1ea730d | 1670 | PerlIO **table = &PL_perlio; |
14a5cf38 JH |
1671 | PerlIO *f; |
1672 | while ((f = *table)) { | |
1673 | int i; | |
1674 | table = (PerlIO **) (f++); | |
1675 | for (i = 1; i < PERLIO_TABLE_SIZE; i++) { | |
1676 | if (*f | |
1677 | && (PerlIOBase(f)-> | |
1678 | flags & (PERLIO_F_LINEBUF | PERLIO_F_CANWRITE)) | |
1679 | == (PERLIO_F_LINEBUF | PERLIO_F_CANWRITE)) | |
1680 | PerlIO_flush(f); | |
1681 | f++; | |
1682 | } | |
a9c883f6 | 1683 | } |
a9c883f6 NIS |
1684 | } |
1685 | ||
06da4f11 | 1686 | int |
e87a358a | 1687 | Perl_PerlIO_fill(pTHX_ PerlIO *f) |
06da4f11 | 1688 | { |
b32dd47e | 1689 | Perl_PerlIO_or_fail(f, Fill, -1, (aTHX_ f)); |
06da4f11 NIS |
1690 | } |
1691 | ||
f3862f8b NIS |
1692 | int |
1693 | PerlIO_isutf8(PerlIO *f) | |
1694 | { | |
1b7a0411 JH |
1695 | if (PerlIOValid(f)) |
1696 | return (PerlIOBase(f)->flags & PERLIO_F_UTF8) != 0; | |
1697 | else | |
1698 | SETERRNO(EBADF, SS_IVCHAN); | |
37725cdc | 1699 | |
1b7a0411 | 1700 | return -1; |
f3862f8b NIS |
1701 | } |
1702 | ||
6f9d8c32 | 1703 | int |
e87a358a | 1704 | Perl_PerlIO_eof(pTHX_ PerlIO *f) |
760ac839 | 1705 | { |
b32dd47e | 1706 | Perl_PerlIO_or_Base(f, Eof, eof, -1, (aTHX_ f)); |
9e353e3b NIS |
1707 | } |
1708 | ||
9e353e3b | 1709 | int |
e87a358a | 1710 | Perl_PerlIO_error(pTHX_ PerlIO *f) |
9e353e3b | 1711 | { |
b32dd47e | 1712 | Perl_PerlIO_or_Base(f, Error, error, -1, (aTHX_ f)); |
9e353e3b NIS |
1713 | } |
1714 | ||
9e353e3b | 1715 | void |
e87a358a | 1716 | Perl_PerlIO_clearerr(pTHX_ PerlIO *f) |
9e353e3b | 1717 | { |
b32dd47e | 1718 | Perl_PerlIO_or_Base_void(f, Clearerr, clearerr, (aTHX_ f)); |
9e353e3b NIS |
1719 | } |
1720 | ||
9e353e3b | 1721 | void |
e87a358a | 1722 | Perl_PerlIO_setlinebuf(pTHX_ PerlIO *f) |
9e353e3b | 1723 | { |
b32dd47e | 1724 | Perl_PerlIO_or_Base_void(f, Setlinebuf, setlinebuf, (aTHX_ f)); |
9e353e3b NIS |
1725 | } |
1726 | ||
9e353e3b NIS |
1727 | int |
1728 | PerlIO_has_base(PerlIO *f) | |
1729 | { | |
1b7a0411 | 1730 | if (PerlIOValid(f)) { |
46c461b5 | 1731 | const PerlIO_funcs * const tab = PerlIOBase(f)->tab; |
1b7a0411 JH |
1732 | |
1733 | if (tab) | |
1734 | return (tab->Get_base != NULL); | |
1735 | SETERRNO(EINVAL, LIB_INVARG); | |
1736 | } | |
1737 | else | |
1738 | SETERRNO(EBADF, SS_IVCHAN); | |
1739 | ||
1740 | return 0; | |
760ac839 LW |
1741 | } |
1742 | ||
9e353e3b NIS |
1743 | int |
1744 | PerlIO_fast_gets(PerlIO *f) | |
760ac839 | 1745 | { |
04892f78 | 1746 | if (PerlIOValid(f) && (PerlIOBase(f)->flags & PERLIO_F_FASTGETS)) { |
46c461b5 | 1747 | const PerlIO_funcs * const tab = PerlIOBase(f)->tab; |
1b7a0411 JH |
1748 | |
1749 | if (tab) | |
1750 | return (tab->Set_ptrcnt != NULL); | |
1751 | SETERRNO(EINVAL, LIB_INVARG); | |
14a5cf38 | 1752 | } |
1b7a0411 JH |
1753 | else |
1754 | SETERRNO(EBADF, SS_IVCHAN); | |
1755 | ||
14a5cf38 | 1756 | return 0; |
9e353e3b NIS |
1757 | } |
1758 | ||
9e353e3b NIS |
1759 | int |
1760 | PerlIO_has_cntptr(PerlIO *f) | |
1761 | { | |
04892f78 | 1762 | if (PerlIOValid(f)) { |
46c461b5 | 1763 | const PerlIO_funcs * const tab = PerlIOBase(f)->tab; |
1b7a0411 JH |
1764 | |
1765 | if (tab) | |
1766 | return (tab->Get_ptr != NULL && tab->Get_cnt != NULL); | |
1767 | SETERRNO(EINVAL, LIB_INVARG); | |
14a5cf38 | 1768 | } |
1b7a0411 JH |
1769 | else |
1770 | SETERRNO(EBADF, SS_IVCHAN); | |
1771 | ||
14a5cf38 | 1772 | return 0; |
9e353e3b NIS |
1773 | } |
1774 | ||
9e353e3b NIS |
1775 | int |
1776 | PerlIO_canset_cnt(PerlIO *f) | |
1777 | { | |
04892f78 | 1778 | if (PerlIOValid(f)) { |
46c461b5 | 1779 | const PerlIO_funcs * const tab = PerlIOBase(f)->tab; |
1b7a0411 JH |
1780 | |
1781 | if (tab) | |
1782 | return (tab->Set_ptrcnt != NULL); | |
1783 | SETERRNO(EINVAL, LIB_INVARG); | |
14a5cf38 | 1784 | } |
1b7a0411 JH |
1785 | else |
1786 | SETERRNO(EBADF, SS_IVCHAN); | |
1787 | ||
14a5cf38 | 1788 | return 0; |
760ac839 LW |
1789 | } |
1790 | ||
888911fc | 1791 | STDCHAR * |
e87a358a | 1792 | Perl_PerlIO_get_base(pTHX_ PerlIO *f) |
760ac839 | 1793 | { |
b32dd47e | 1794 | Perl_PerlIO_or_fail(f, Get_base, NULL, (aTHX_ f)); |
9e353e3b NIS |
1795 | } |
1796 | ||
9e353e3b | 1797 | int |
e87a358a | 1798 | Perl_PerlIO_get_bufsiz(pTHX_ PerlIO *f) |
9e353e3b | 1799 | { |
b32dd47e | 1800 | Perl_PerlIO_or_fail(f, Get_bufsiz, -1, (aTHX_ f)); |
9e353e3b NIS |
1801 | } |
1802 | ||
9e353e3b | 1803 | STDCHAR * |
e87a358a | 1804 | Perl_PerlIO_get_ptr(pTHX_ PerlIO *f) |
9e353e3b | 1805 | { |
b32dd47e | 1806 | Perl_PerlIO_or_fail(f, Get_ptr, NULL, (aTHX_ f)); |
9e353e3b NIS |
1807 | } |
1808 | ||
05d1247b | 1809 | int |
e87a358a | 1810 | Perl_PerlIO_get_cnt(pTHX_ PerlIO *f) |
9e353e3b | 1811 | { |
b32dd47e | 1812 | Perl_PerlIO_or_fail(f, Get_cnt, -1, (aTHX_ f)); |
9e353e3b NIS |
1813 | } |
1814 | ||
9e353e3b | 1815 | void |
e87a358a | 1816 | Perl_PerlIO_set_cnt(pTHX_ PerlIO *f, int cnt) |
9e353e3b | 1817 | { |
b32dd47e | 1818 | Perl_PerlIO_or_fail_void(f, Set_ptrcnt, (aTHX_ f, NULL, cnt)); |
9e353e3b NIS |
1819 | } |
1820 | ||
9e353e3b | 1821 | void |
e87a358a | 1822 | Perl_PerlIO_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, int cnt) |
9e353e3b | 1823 | { |
b32dd47e | 1824 | Perl_PerlIO_or_fail_void(f, Set_ptrcnt, (aTHX_ f, ptr, cnt)); |
9e353e3b NIS |
1825 | } |
1826 | ||
4ec2216f | 1827 | |
9e353e3b | 1828 | /*--------------------------------------------------------------------------------------*/ |
14a5cf38 | 1829 | /* |
71200d45 | 1830 | * utf8 and raw dummy layers |
14a5cf38 | 1831 | */ |
dfebf958 | 1832 | |
26fb694e | 1833 | IV |
2dc2558e | 1834 | PerlIOUtf8_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab) |
26fb694e | 1835 | { |
8772537c AL |
1836 | PERL_UNUSED_ARG(mode); |
1837 | PERL_UNUSED_ARG(arg); | |
00f51856 | 1838 | if (PerlIOValid(f)) { |
14a5cf38 JH |
1839 | if (tab->kind & PERLIO_K_UTF8) |
1840 | PerlIOBase(f)->flags |= PERLIO_F_UTF8; | |
1841 | else | |
1842 | PerlIOBase(f)->flags &= ~PERLIO_F_UTF8; | |
1843 | return 0; | |
1844 | } | |
1845 | return -1; | |
26fb694e NIS |
1846 | } |
1847 | ||
27da23d5 | 1848 | PERLIO_FUNCS_DECL(PerlIO_utf8) = { |
2dc2558e | 1849 | sizeof(PerlIO_funcs), |
14a5cf38 | 1850 | "utf8", |
2dc2558e | 1851 | 0, |
6874a2de | 1852 | PERLIO_K_DUMMY | PERLIO_K_UTF8, |
14a5cf38 JH |
1853 | PerlIOUtf8_pushed, |
1854 | NULL, | |
1855 | NULL, | |
1856 | NULL, | |
1857 | NULL, | |
1858 | NULL, | |
1859 | NULL, | |
1860 | NULL, | |
1861 | NULL, | |
1862 | NULL, | |
1863 | NULL, | |
de009b76 AL |
1864 | NULL, |
1865 | NULL, | |
22569500 NIS |
1866 | NULL, /* flush */ |
1867 | NULL, /* fill */ | |
14a5cf38 JH |
1868 | NULL, |
1869 | NULL, | |
1870 | NULL, | |
1871 | NULL, | |
22569500 NIS |
1872 | NULL, /* get_base */ |
1873 | NULL, /* get_bufsiz */ | |
1874 | NULL, /* get_ptr */ | |
1875 | NULL, /* get_cnt */ | |
1876 | NULL, /* set_ptrcnt */ | |
26fb694e NIS |
1877 | }; |
1878 | ||
27da23d5 | 1879 | PERLIO_FUNCS_DECL(PerlIO_byte) = { |
2dc2558e | 1880 | sizeof(PerlIO_funcs), |
14a5cf38 | 1881 | "bytes", |
2dc2558e | 1882 | 0, |
14a5cf38 JH |
1883 | PERLIO_K_DUMMY, |
1884 | PerlIOUtf8_pushed, | |
1885 | NULL, | |
1886 | NULL, | |
1887 | NULL, | |
1888 | NULL, | |
1889 | NULL, | |
1890 | NULL, | |
1891 | NULL, | |
1892 | NULL, | |
1893 | NULL, | |
1894 | NULL, | |
de009b76 AL |
1895 | NULL, |
1896 | NULL, | |
22569500 NIS |
1897 | NULL, /* flush */ |
1898 | NULL, /* fill */ | |
14a5cf38 JH |
1899 | NULL, |
1900 | NULL, | |
1901 | NULL, | |
1902 | NULL, | |
22569500 NIS |
1903 | NULL, /* get_base */ |
1904 | NULL, /* get_bufsiz */ | |
1905 | NULL, /* get_ptr */ | |
1906 | NULL, /* get_cnt */ | |
1907 | NULL, /* set_ptrcnt */ | |
dfebf958 NIS |
1908 | }; |
1909 | ||
1910 | PerlIO * | |
14a5cf38 JH |
1911 | PerlIORaw_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers, |
1912 | IV n, const char *mode, int fd, int imode, int perm, | |
1913 | PerlIO *old, int narg, SV **args) | |
dfebf958 | 1914 | { |
8772537c AL |
1915 | PerlIO_funcs * const tab = PerlIO_default_btm(); |
1916 | PERL_UNUSED_ARG(self); | |
210e727c JH |
1917 | if (tab && tab->Open) |
1918 | return (*tab->Open) (aTHX_ tab, layers, n - 1, mode, fd, imode, perm, | |
1919 | old, narg, args); | |
1920 | SETERRNO(EINVAL, LIB_INVARG); | |
1921 | return NULL; | |
dfebf958 NIS |
1922 | } |
1923 | ||
27da23d5 | 1924 | PERLIO_FUNCS_DECL(PerlIO_raw) = { |
2dc2558e | 1925 | sizeof(PerlIO_funcs), |
14a5cf38 | 1926 | "raw", |
2dc2558e | 1927 | 0, |
14a5cf38 JH |
1928 | PERLIO_K_DUMMY, |
1929 | PerlIORaw_pushed, | |
1930 | PerlIOBase_popped, | |
1931 | PerlIORaw_open, | |
1932 | NULL, | |
1933 | NULL, | |
1934 | NULL, | |
1935 | NULL, | |
1936 | NULL, | |
1937 | NULL, | |
1938 | NULL, | |
1939 | NULL, | |
de009b76 AL |
1940 | NULL, |
1941 | NULL, | |
22569500 NIS |
1942 | NULL, /* flush */ |
1943 | NULL, /* fill */ | |
14a5cf38 JH |
1944 | NULL, |
1945 | NULL, | |
1946 | NULL, | |
1947 | NULL, | |
22569500 NIS |
1948 | NULL, /* get_base */ |
1949 | NULL, /* get_bufsiz */ | |
1950 | NULL, /* get_ptr */ | |
1951 | NULL, /* get_cnt */ | |
1952 | NULL, /* set_ptrcnt */ | |
dfebf958 NIS |
1953 | }; |
1954 | /*--------------------------------------------------------------------------------------*/ | |
1955 | /*--------------------------------------------------------------------------------------*/ | |
14a5cf38 | 1956 | /* |
71200d45 | 1957 | * "Methods" of the "base class" |
14a5cf38 | 1958 | */ |
9e353e3b NIS |
1959 | |
1960 | IV | |
f62ce20a | 1961 | PerlIOBase_fileno(pTHX_ PerlIO *f) |
9e353e3b | 1962 | { |
04892f78 | 1963 | return PerlIOValid(f) ? PerlIO_fileno(PerlIONext(f)) : -1; |
9e353e3b NIS |
1964 | } |
1965 | ||
f5b9d040 | 1966 | char * |
81428673 | 1967 | PerlIO_modestr(PerlIO * f, char *buf) |
14a5cf38 JH |
1968 | { |
1969 | char *s = buf; | |
81428673 | 1970 | if (PerlIOValid(f)) { |
de009b76 | 1971 | const IV flags = PerlIOBase(f)->flags; |
81428673 NIS |
1972 | if (flags & PERLIO_F_APPEND) { |
1973 | *s++ = 'a'; | |
1974 | if (flags & PERLIO_F_CANREAD) { | |
1975 | *s++ = '+'; | |
1976 | } | |
14a5cf38 | 1977 | } |
81428673 NIS |
1978 | else if (flags & PERLIO_F_CANREAD) { |
1979 | *s++ = 'r'; | |
1980 | if (flags & PERLIO_F_CANWRITE) | |
1981 | *s++ = '+'; | |
1982 | } | |
1983 | else if (flags & PERLIO_F_CANWRITE) { | |
1984 | *s++ = 'w'; | |
1985 | if (flags & PERLIO_F_CANREAD) { | |
1986 | *s++ = '+'; | |
1987 | } | |
14a5cf38 | 1988 | } |
35990314 | 1989 | #ifdef PERLIO_USING_CRLF |
81428673 NIS |
1990 | if (!(flags & PERLIO_F_CRLF)) |
1991 | *s++ = 'b'; | |
5f1a76d0 | 1992 | #endif |
81428673 | 1993 | } |
14a5cf38 JH |
1994 | *s = '\0'; |
1995 | return buf; | |
f5b9d040 NIS |
1996 | } |
1997 | ||
81428673 | 1998 | |
76ced9ad | 1999 | IV |
2dc2558e | 2000 | PerlIOBase_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab) |
9e353e3b | 2001 | { |
de009b76 | 2002 | PerlIOl * const l = PerlIOBase(f); |
8772537c | 2003 | PERL_UNUSED_ARG(arg); |
de009b76 | 2004 | |
14a5cf38 JH |
2005 | l->flags &= ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE | |
2006 | PERLIO_F_TRUNCATE | PERLIO_F_APPEND); | |
2007 | if (tab->Set_ptrcnt != NULL) | |
2008 | l->flags |= PERLIO_F_FASTGETS; | |
2009 | if (mode) { | |
3b6c1aba | 2010 | if (*mode == IoTYPE_NUMERIC || *mode == IoTYPE_IMPLICIT) |
14a5cf38 JH |
2011 | mode++; |
2012 | switch (*mode++) { | |
2013 | case 'r': | |
2014 | l->flags |= PERLIO_F_CANREAD; | |
2015 | break; | |
2016 | case 'a': | |
2017 | l->flags |= PERLIO_F_APPEND | PERLIO_F_CANWRITE; | |
2018 | break; | |
2019 | case 'w': | |
2020 | l->flags |= PERLIO_F_TRUNCATE | PERLIO_F_CANWRITE; | |
2021 | break; | |
2022 | default: | |
93189314 | 2023 | SETERRNO(EINVAL, LIB_INVARG); |
14a5cf38 JH |
2024 | return -1; |
2025 | } | |
2026 | while (*mode) { | |
2027 | switch (*mode++) { | |
2028 | case '+': | |
2029 | l->flags |= PERLIO_F_CANREAD | PERLIO_F_CANWRITE; | |
2030 | break; | |
2031 | case 'b': | |
2032 | l->flags &= ~PERLIO_F_CRLF; | |
2033 | break; | |
2034 | case 't': | |
2035 | l->flags |= PERLIO_F_CRLF; | |
2036 | break; | |
2037 | default: | |
93189314 | 2038 | SETERRNO(EINVAL, LIB_INVARG); |
14a5cf38 JH |
2039 | return -1; |
2040 | } | |
2041 | } | |
2042 | } | |
2043 | else { | |
2044 | if (l->next) { | |
2045 | l->flags |= l->next->flags & | |
2046 | (PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_TRUNCATE | | |
2047 | PERLIO_F_APPEND); | |
2048 | } | |
2049 | } | |
5e2ab84b | 2050 | #if 0 |
14a5cf38 JH |
2051 | PerlIO_debug("PerlIOBase_pushed f=%p %s %s fl=%08" UVxf " (%s)\n", |
2052 | f, PerlIOBase(f)->tab->name, (omode) ? omode : "(Null)", | |
2053 | l->flags, PerlIO_modestr(f, temp)); | |
5e2ab84b | 2054 | #endif |
14a5cf38 | 2055 | return 0; |
76ced9ad NIS |
2056 | } |
2057 | ||
2058 | IV | |
f62ce20a | 2059 | PerlIOBase_popped(pTHX_ PerlIO *f) |
76ced9ad | 2060 | { |
8772537c | 2061 | PERL_UNUSED_ARG(f); |
14a5cf38 | 2062 | return 0; |
760ac839 LW |
2063 | } |
2064 | ||
9e353e3b | 2065 | SSize_t |
f62ce20a | 2066 | PerlIOBase_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count) |
9e353e3b | 2067 | { |
14a5cf38 | 2068 | /* |
71200d45 | 2069 | * Save the position as current head considers it |
14a5cf38 | 2070 | */ |
de009b76 | 2071 | const Off_t old = PerlIO_tell(f); |
a0714e2c | 2072 | PerlIO_push(aTHX_ f, PERLIO_FUNCS_CAST(&PerlIO_pending), "r", NULL); |
14a5cf38 | 2073 | PerlIOSelf(f, PerlIOBuf)->posn = old; |
de009b76 | 2074 | return PerlIOBuf_unread(aTHX_ f, vbuf, count); |
9e353e3b NIS |
2075 | } |
2076 | ||
f6c77cf1 | 2077 | SSize_t |
f62ce20a | 2078 | PerlIOBase_read(pTHX_ PerlIO *f, void *vbuf, Size_t count) |
f6c77cf1 | 2079 | { |
14a5cf38 JH |
2080 | STDCHAR *buf = (STDCHAR *) vbuf; |
2081 | if (f) { | |
263df5f1 JH |
2082 | if (!(PerlIOBase(f)->flags & PERLIO_F_CANREAD)) { |
2083 | PerlIOBase(f)->flags |= PERLIO_F_ERROR; | |
2084 | SETERRNO(EBADF, SS_IVCHAN); | |
2085 | return 0; | |
2086 | } | |
14a5cf38 | 2087 | while (count > 0) { |
93c2c2ec IZ |
2088 | get_cnt: |
2089 | { | |
14a5cf38 JH |
2090 | SSize_t avail = PerlIO_get_cnt(f); |
2091 | SSize_t take = 0; | |
2092 | if (avail > 0) | |
eb160463 | 2093 | take = ((SSize_t)count < avail) ? count : avail; |
14a5cf38 JH |
2094 | if (take > 0) { |
2095 | STDCHAR *ptr = PerlIO_get_ptr(f); | |
2096 | Copy(ptr, buf, take, STDCHAR); | |
2097 | PerlIO_set_ptrcnt(f, ptr + take, (avail -= take)); | |
2098 | count -= take; | |
2099 | buf += take; | |
93c2c2ec IZ |
2100 | if (avail == 0) /* set_ptrcnt could have reset avail */ |
2101 | goto get_cnt; | |
14a5cf38 JH |
2102 | } |
2103 | if (count > 0 && avail <= 0) { | |
2104 | if (PerlIO_fill(f) != 0) | |
2105 | break; | |
2106 | } | |
93c2c2ec | 2107 | } |
14a5cf38 JH |
2108 | } |
2109 | return (buf - (STDCHAR *) vbuf); | |
2110 | } | |
f6c77cf1 | 2111 | return 0; |
f6c77cf1 NIS |
2112 | } |
2113 | ||
9e353e3b | 2114 | IV |
f62ce20a | 2115 | PerlIOBase_noop_ok(pTHX_ PerlIO *f) |
9e353e3b | 2116 | { |
8772537c | 2117 | PERL_UNUSED_ARG(f); |
14a5cf38 | 2118 | return 0; |
9e353e3b NIS |
2119 | } |
2120 | ||
2121 | IV | |
f62ce20a | 2122 | PerlIOBase_noop_fail(pTHX_ PerlIO *f) |
06da4f11 | 2123 | { |
8772537c | 2124 | PERL_UNUSED_ARG(f); |
14a5cf38 | 2125 | return -1; |
06da4f11 NIS |
2126 | } |
2127 | ||
2128 | IV | |
f62ce20a | 2129 | PerlIOBase_close(pTHX_ PerlIO *f) |
9e353e3b | 2130 | { |
37725cdc NIS |
2131 | IV code = -1; |
2132 | if (PerlIOValid(f)) { | |
2133 | PerlIO *n = PerlIONext(f); | |
2134 | code = PerlIO_flush(f); | |
2135 | PerlIOBase(f)->flags &= | |
2136 | ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_OPEN); | |
2137 | while (PerlIOValid(n)) { | |
de009b76 | 2138 | const PerlIO_funcs * const tab = PerlIOBase(n)->tab; |
37725cdc NIS |
2139 | if (tab && tab->Close) { |
2140 | if ((*tab->Close)(aTHX_ n) != 0) | |
2141 | code = -1; | |
2142 | break; | |
2143 | } | |
2144 | else { | |
2145 | PerlIOBase(n)->flags &= | |
2146 | ~(PERLIO_F_CANREAD | PERLIO_F_CANWRITE | PERLIO_F_OPEN); | |
2147 | } | |
2148 | n = PerlIONext(n); | |
2149 | } | |
2150 | } | |
2151 | else { | |
2152 | SETERRNO(EBADF, SS_IVCHAN); | |
2153 | } | |
14a5cf38 | 2154 | return code; |
9e353e3b NIS |
2155 | } |
2156 | ||
2157 | IV | |
f62ce20a | 2158 | PerlIOBase_eof(pTHX_ PerlIO *f) |
9e353e3b | 2159 | { |
04892f78 | 2160 | if (PerlIOValid(f)) { |
14a5cf38 JH |
2161 | return (PerlIOBase(f)->flags & PERLIO_F_EOF) != 0; |
2162 | } | |
2163 | return 1; | |
9e353e3b NIS |
2164 | } |
2165 | ||
2166 | IV | |
f62ce20a | 2167 | PerlIOBase_error(pTHX_ PerlIO *f) |
9e353e3b | 2168 | { |
04892f78 | 2169 | if (PerlIOValid(f)) { |
14a5cf38 JH |
2170 | return (PerlIOBase(f)->flags & PERLIO_F_ERROR) != 0; |
2171 | } | |
2172 | return 1; | |
9e353e3b NIS |
2173 | } |
2174 | ||
2175 | void | |
f62ce20a | 2176 | PerlIOBase_clearerr(pTHX_ PerlIO *f) |
9e353e3b | 2177 | { |
04892f78 | 2178 | if (PerlIOValid(f)) { |
dcda55fc | 2179 | PerlIO * const n = PerlIONext(f); |
14a5cf38 | 2180 | PerlIOBase(f)->flags &= ~(PERLIO_F_ERROR | PERLIO_F_EOF); |
04892f78 | 2181 | if (PerlIOValid(n)) |
14a5cf38 JH |
2182 | PerlIO_clearerr(n); |
2183 | } | |
9e353e3b NIS |
2184 | } |
2185 | ||
2186 | void | |
f62ce20a | 2187 | PerlIOBase_setlinebuf(pTHX_ PerlIO *f) |
9e353e3b | 2188 | { |
04892f78 | 2189 | if (PerlIOValid(f)) { |
14a5cf38 JH |
2190 | PerlIOBase(f)->flags |= PERLIO_F_LINEBUF; |
2191 | } | |
9e353e3b NIS |
2192 | } |
2193 | ||
93a8090d NIS |
2194 | SV * |
2195 | PerlIO_sv_dup(pTHX_ SV *arg, CLONE_PARAMS *param) | |
2196 | { | |
2197 | if (!arg) | |
a0714e2c | 2198 | return NULL; |
93a8090d NIS |
2199 | #ifdef sv_dup |
2200 | if (param) { | |
2201 | return sv_dup(arg, param); | |
2202 | } | |
2203 | else { | |
2204 | return newSVsv(arg); | |
2205 | } | |
2206 | #else | |
1b6737cc | 2207 | PERL_UNUSED_ARG(param); |
93a8090d NIS |
2208 | return newSVsv(arg); |
2209 | #endif | |
2210 | } | |
2211 | ||
2212 | PerlIO * | |
ecdeb87c | 2213 | PerlIOBase_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags) |
93a8090d | 2214 | { |
1b6737cc | 2215 | PerlIO * const nexto = PerlIONext(o); |
04892f78 | 2216 | if (PerlIOValid(nexto)) { |
de009b76 | 2217 | const PerlIO_funcs * const tab = PerlIOBase(nexto)->tab; |
37725cdc NIS |
2218 | if (tab && tab->Dup) |
2219 | f = (*tab->Dup)(aTHX_ f, nexto, param, flags); | |
2220 | else | |
2221 | f = PerlIOBase_dup(aTHX_ f, nexto, param, flags); | |
93a8090d NIS |
2222 | } |
2223 | if (f) { | |
dcda55fc | 2224 | PerlIO_funcs * const self = PerlIOBase(o)->tab; |
210e727c | 2225 | SV *arg; |
93a8090d | 2226 | char buf[8]; |
fe5a182c JH |
2227 | PerlIO_debug("PerlIOBase_dup %s f=%p o=%p param=%p\n", |
2228 | self->name, (void*)f, (void*)o, (void*)param); | |
210e727c JH |
2229 | if (self->Getarg) |
2230 | arg = (*self->Getarg)(aTHX_ o, param, flags); | |
2231 | else { | |
a0714e2c | 2232 | arg = NULL; |
93a8090d NIS |
2233 | } |
2234 | f = PerlIO_push(aTHX_ f, self, PerlIO_modestr(o,buf), arg); | |
ecdeb87c | 2235 | if (arg) { |
93a8090d NIS |
2236 | SvREFCNT_dec(arg); |
2237 | } | |
2238 | } | |
2239 | return f; | |
2240 | } | |
2241 | ||
168d5872 | 2242 | #ifdef USE_THREADS |
93a8090d | 2243 | perl_mutex PerlIO_mutex; |
93a8090d | 2244 | #endif |
27da23d5 JH |
2245 | |
2246 | /* PL_perlio_fd_refcnt[] is in intrpvar.h */ | |
93a8090d | 2247 | |
22c96fc1 NC |
2248 | /* Must be called with PerlIO_mutex locked. */ |
2249 | static void | |
2250 | S_more_refcounted_fds(pTHX_ const int new_fd) { | |
2251 | const int old_max = PL_perlio_fd_refcnt_size; | |
f4ae5be6 | 2252 | const int new_max = 16 + (new_fd & ~15); |
22c96fc1 NC |
2253 | int *new_array; |
2254 | ||
2255 | PerlIO_debug("More fds - old=%d, need %d, new=%d\n", | |
2256 | old_max, new_fd, new_max); | |
2257 | ||
2258 | if (new_fd < old_max) { | |
2259 | return; | |
2260 | } | |
2261 | ||
f4ae5be6 NC |
2262 | assert (new_max > new_fd); |
2263 | ||
22c96fc1 NC |
2264 | new_array |
2265 | = PerlMemShared_realloc(PL_perlio_fd_refcnt, new_max * sizeof(int)); | |
2266 | ||
2267 | if (!new_array) { | |
2268 | #ifdef USE_THREADS | |
2269 | MUTEX_UNLOCK(&PerlIO_mutex); | |
2270 | #endif | |
2271 | /* Can't use PerlIO to write as it allocates memory */ | |
2272 | PerlLIO_write(PerlIO_fileno(Perl_error_log), | |
2273 | PL_no_mem, strlen(PL_no_mem)); | |
2274 | my_exit(1); | |
2275 | } | |
2276 | ||
2277 | PL_perlio_fd_refcnt_size = new_max; | |
2278 | PL_perlio_fd_refcnt = new_array; | |
2279 | ||
2280 | PerlIO_debug("Zeroing %p, %d\n", new_array + old_max, new_max - old_max); | |
2281 | ||
2282 | Zero(new_array + old_max, new_max - old_max, int); | |
2283 | } | |
2284 | ||
2285 | ||
93a8090d NIS |
2286 | void |
2287 | PerlIO_init(pTHX) | |
2288 | { | |
2289 | /* Place holder for stdstreams call ??? */ | |
168d5872 | 2290 | #ifdef USE_THREADS |
27da23d5 | 2291 | MUTEX_INIT(&PerlIO_mutex); |
93a8090d NIS |
2292 | #endif |
2293 | } | |
2294 | ||
168d5872 NIS |
2295 | void |
2296 | PerlIOUnix_refcnt_inc(int fd) | |
2297 | { | |
27da23d5 | 2298 | dTHX; |
22c96fc1 | 2299 | if (fd >= 0) { |
97aff369 | 2300 | dVAR; |
22c96fc1 | 2301 | |
168d5872 NIS |
2302 | #ifdef USE_THREADS |
2303 | MUTEX_LOCK(&PerlIO_mutex); | |
2304 | #endif | |
22c96fc1 NC |
2305 | if (fd >= PL_perlio_fd_refcnt_size) |
2306 | S_more_refcounted_fds(aTHX_ fd); | |
2307 | ||
27da23d5 JH |
2308 | PL_perlio_fd_refcnt[fd]++; |
2309 | PerlIO_debug("fd %d refcnt=%d\n",fd,PL_perlio_fd_refcnt[fd]); | |
22c96fc1 | 2310 | |
168d5872 NIS |
2311 | #ifdef USE_THREADS |
2312 | MUTEX_UNLOCK(&PerlIO_mutex); | |
2313 | #endif | |
2314 | } | |
2315 | } | |
2316 | ||
168d5872 NIS |
2317 | int |
2318 | PerlIOUnix_refcnt_dec(int fd) | |
2319 | { | |
27da23d5 | 2320 | dTHX; |
168d5872 | 2321 | int cnt = 0; |
22c96fc1 | 2322 | if (fd >= 0) { |
97aff369 | 2323 | dVAR; |
168d5872 NIS |
2324 | #ifdef USE_THREADS |
2325 | MUTEX_LOCK(&PerlIO_mutex); | |
2326 | #endif | |
22c96fc1 NC |
2327 | /* XXX should this be a panic? */ |
2328 | if (fd >= PL_perlio_fd_refcnt_size) | |
2329 | S_more_refcounted_fds(aTHX_ fd); | |
2330 | ||
2331 | /* XXX should this be a panic if it drops below 0? */ | |
27da23d5 | 2332 | cnt = --PL_perlio_fd_refcnt[fd]; |
168d5872 NIS |
2333 | PerlIO_debug("fd %d refcnt=%d\n",fd,cnt); |
2334 | #ifdef USE_THREADS | |
2335 | MUTEX_UNLOCK(&PerlIO_mutex); | |
2336 | #endif | |
2337 | } | |
2338 | return cnt; | |
2339 | } | |
2340 | ||
694c95cf JH |
2341 | void |
2342 | PerlIO_cleanup(pTHX) | |
2343 | { | |
97aff369 | 2344 | dVAR; |
694c95cf JH |
2345 | int i; |
2346 | #ifdef USE_ITHREADS | |
9f4bd222 NIS |
2347 | PerlIO_debug("Cleanup layers for %p\n",aTHX); |
2348 | #else | |
2349 | PerlIO_debug("Cleanup layers\n"); | |
694c95cf JH |
2350 | #endif |
2351 | /* Raise STDIN..STDERR refcount so we don't close them */ | |
2352 | for (i=0; i < 3; i++) | |
2353 | PerlIOUnix_refcnt_inc(i); | |
2354 | PerlIO_cleantable(aTHX_ &PL_perlio); | |
2355 | /* Restore STDIN..STDERR refcount */ | |
2356 | for (i=0; i < 3; i++) | |
2357 | PerlIOUnix_refcnt_dec(i); | |
9f4bd222 NIS |
2358 | |
2359 | if (PL_known_layers) { | |
2360 | PerlIO_list_free(aTHX_ PL_known_layers); | |
2361 | PL_known_layers = NULL; | |
2362 | } | |
27da23d5 | 2363 | if (PL_def_layerlist) { |
9f4bd222 NIS |
2364 | PerlIO_list_free(aTHX_ PL_def_layerlist); |
2365 | PL_def_layerlist = NULL; | |
2366 | } | |
694c95cf JH |
2367 | } |
2368 | ||
2369 | ||
2370 | ||
9e353e3b | 2371 | /*--------------------------------------------------------------------------------------*/ |
14a5cf38 | 2372 | /* |
71200d45 | 2373 | * Bottom-most level for UNIX-like case |
14a5cf38 | 2374 | */ |
9e353e3b | 2375 | |
14a5cf38 | 2376 | typedef struct { |
22569500 NIS |
2377 | struct _PerlIO base; /* The generic part */ |
2378 | int fd; /* UNIX like file descriptor */ | |
2379 | int oflags; /* open/fcntl flags */ | |
9e353e3b NIS |
2380 | } PerlIOUnix; |
2381 | ||
6f9d8c32 | 2382 | int |
9e353e3b | 2383 | PerlIOUnix_oflags(const char *mode) |
760ac839 | 2384 | { |
14a5cf38 | 2385 | int oflags = -1; |
3b6c1aba | 2386 | if (*mode == IoTYPE_IMPLICIT || *mode == IoTYPE_NUMERIC) |
14a5cf38 JH |
2387 | mode++; |
2388 | switch (*mode) { | |
2389 | case 'r': | |
2390 | oflags = O_RDONLY; | |
2391 | if (*++mode == '+') { | |
2392 | oflags = O_RDWR; | |
2393 | mode++; | |
2394 | } | |
2395 | break; | |
2396 | ||
2397 | case 'w': | |
2398 | oflags = O_CREAT | O_TRUNC; | |
2399 | if (*++mode == '+') { | |
2400 | oflags |= O_RDWR; | |
2401 | mode++; | |
2402 | } | |
2403 | else | |
2404 | oflags |= O_WRONLY; | |
2405 | break; | |
2406 | ||
2407 | case 'a': | |
2408 | oflags = O_CREAT | O_APPEND; | |
2409 | if (*++mode == '+') { | |
2410 | oflags |= O_RDWR; | |
2411 | mode++; | |
2412 | } | |
2413 | else | |
2414 | oflags |= O_WRONLY; | |
2415 | break; | |
2416 | } | |
2417 | if (*mode == 'b') { | |
2418 | oflags |= O_BINARY; | |
2419 | oflags &= ~O_TEXT; | |
2420 | mode++; | |
2421 | } | |
2422 | else if (*mode == 't') { | |
2423 | oflags |= O_TEXT; | |
2424 | oflags &= ~O_BINARY; | |
2425 | mode++; | |
2426 | } | |
2427 | /* | |
71200d45 | 2428 | * Always open in binary mode |
14a5cf38 JH |
2429 | */ |
2430 | oflags |= O_BINARY; | |
2431 | if (*mode || oflags == -1) { | |
93189314 | 2432 | SETERRNO(EINVAL, LIB_INVARG); |
14a5cf38 JH |
2433 | oflags = -1; |
2434 | } | |
2435 | return oflags; | |
9e353e3b NIS |
2436 | } |
2437 | ||
2438 | IV | |
f62ce20a | 2439 | PerlIOUnix_fileno(pTHX_ PerlIO *f) |
9e353e3b | 2440 | { |
14a5cf38 | 2441 | return PerlIOSelf(f, PerlIOUnix)->fd; |
9e353e3b NIS |
2442 | } |
2443 | ||
aa063c35 NIS |
2444 | static void |
2445 | PerlIOUnix_setfd(pTHX_ PerlIO *f, int fd, int imode) | |
4b803d04 | 2446 | { |
de009b76 | 2447 | PerlIOUnix * const s = PerlIOSelf(f, PerlIOUnix); |
6caa5a9c | 2448 | #if defined(WIN32) |
aa063c35 NIS |
2449 | Stat_t st; |
2450 | if (PerlLIO_fstat(fd, &st) == 0) { | |
6caa5a9c | 2451 | if (!S_ISREG(st.st_mode)) { |
aa063c35 | 2452 | PerlIO_debug("%d is not regular file\n",fd); |
6caa5a9c NIS |
2453 | PerlIOBase(f)->flags |= PERLIO_F_NOTREG; |
2454 | } | |
aa063c35 NIS |
2455 | else { |
2456 | PerlIO_debug("%d _is_ a regular file\n",fd); | |
2457 | } | |
6caa5a9c NIS |
2458 | } |
2459 | #endif | |
aa063c35 NIS |
2460 | s->fd = fd; |
2461 | s->oflags = imode; | |
2462 | PerlIOUnix_refcnt_inc(fd); | |
2463 | } | |
2464 | ||
2465 | IV | |
2466 | PerlIOUnix_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab) | |
2467 | { | |
2468 | IV code = PerlIOBase_pushed(aTHX_ f, mode, arg, tab); | |
14a5cf38 | 2469 | if (*PerlIONext(f)) { |
4b069b44 | 2470 | /* We never call down so do any pending stuff now */ |
03c0554d | 2471 | PerlIO_flush(PerlIONext(f)); |
14a5cf38 | 2472 | /* |
71200d45 | 2473 | * XXX could (or should) we retrieve the oflags from the open file |
14a5cf38 | 2474 | * handle rather than believing the "mode" we are passed in? XXX |
71200d45 | 2475 | * Should the value on NULL mode be 0 or -1? |
14a5cf38 | 2476 | */ |
acbd16bf | 2477 | PerlIOUnix_setfd(aTHX_ f, PerlIO_fileno(PerlIONext(f)), |
aa063c35 | 2478 | mode ? PerlIOUnix_oflags(mode) : -1); |
14a5cf38 JH |
2479 | } |
2480 | PerlIOBase(f)->flags |= PERLIO_F_OPEN; | |
6caa5a9c | 2481 | |
14a5cf38 | 2482 | return code; |
4b803d04 NIS |
2483 | } |
2484 | ||
c2fcde81 JH |
2485 | IV |
2486 | PerlIOUnix_seek(pTHX_ PerlIO *f, Off_t offset, int whence) | |
2487 | { | |
de009b76 | 2488 | const int fd = PerlIOSelf(f, PerlIOUnix)->fd; |
0723351e | 2489 | Off_t new_loc; |
c2fcde81 JH |
2490 | if (PerlIOBase(f)->flags & PERLIO_F_NOTREG) { |
2491 | #ifdef ESPIPE | |
2492 | SETERRNO(ESPIPE, LIB_INVARG); | |
2493 | #else | |
2494 | SETERRNO(EINVAL, LIB_INVARG); | |
2495 | #endif | |
2496 | return -1; | |
2497 | } | |
0723351e NC |
2498 | new_loc = PerlLIO_lseek(fd, offset, whence); |
2499 | if (new_loc == (Off_t) - 1) | |
dcda55fc | 2500 | return -1; |
c2fcde81 JH |
2501 | PerlIOBase(f)->flags &= ~PERLIO_F_EOF; |
2502 | return 0; | |
2503 | } | |
2504 | ||
9e353e3b | 2505 | PerlIO * |
14a5cf38 JH |
2506 | PerlIOUnix_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers, |
2507 | IV n, const char *mode, int fd, int imode, | |
2508 | int perm, PerlIO *f, int narg, SV **args) | |
2509 | { | |
d9dac8cd | 2510 | if (PerlIOValid(f)) { |
14a5cf38 | 2511 | if (PerlIOBase(f)->flags & PERLIO_F_OPEN) |
f62ce20a | 2512 | (*PerlIOBase(f)->tab->Close)(aTHX_ f); |
14a5cf38 JH |
2513 | } |
2514 | if (narg > 0) { | |
3b6c1aba | 2515 | if (*mode == IoTYPE_NUMERIC) |
14a5cf38 JH |
2516 | mode++; |
2517 | else { | |
2518 | imode = PerlIOUnix_oflags(mode); | |
2519 | perm = 0666; | |
2520 | } | |
2521 | if (imode != -1) { | |
e62f0680 | 2522 | const char *path = SvPV_nolen_const(*args); |
14a5cf38 JH |
2523 | fd = PerlLIO_open3(path, imode, perm); |
2524 | } | |
2525 | } | |
2526 | if (fd >= 0) { | |
3b6c1aba | 2527 | if (*mode == IoTYPE_IMPLICIT) |
14a5cf38 JH |
2528 | mode++; |
2529 | if (!f) { | |
2530 | f = PerlIO_allocate(aTHX); | |
d9dac8cd NIS |
2531 | } |
2532 | if (!PerlIOValid(f)) { | |
a33cf58c NIS |
2533 | if (!(f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg))) { |
2534 | return NULL; | |
2535 | } | |
d9dac8cd | 2536 | } |
aa063c35 | 2537 | PerlIOUnix_setfd(aTHX_ f, fd, imode); |
14a5cf38 | 2538 | PerlIOBase(f)->flags |= PERLIO_F_OPEN; |
c2fcde81 JH |
2539 | if (*mode == IoTYPE_APPEND) |
2540 | PerlIOUnix_seek(aTHX_ f, 0, SEEK_END); | |
14a5cf38 JH |
2541 | return f; |
2542 | } | |
2543 | else { | |
2544 | if (f) { | |
bb263b4e | 2545 | /*EMPTY*/; |
14a5cf38 | 2546 | /* |
71200d45 | 2547 | * FIXME: pop layers ??? |
14a5cf38 JH |
2548 | */ |
2549 | } | |
2550 | return NULL; | |
2551 | } | |
9e353e3b NIS |
2552 | } |
2553 | ||
71200d45 | 2554 | PerlIO * |
ecdeb87c | 2555 | PerlIOUnix_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags) |
71200d45 | 2556 | { |
dcda55fc | 2557 | const PerlIOUnix * const os = PerlIOSelf(o, PerlIOUnix); |
93a8090d | 2558 | int fd = os->fd; |
ecdeb87c NIS |
2559 | if (flags & PERLIO_DUP_FD) { |
2560 | fd = PerlLIO_dup(fd); | |
2561 | } | |
22c96fc1 | 2562 | if (fd >= 0) { |
ecdeb87c | 2563 | f = PerlIOBase_dup(aTHX_ f, o, param, flags); |
71200d45 NIS |
2564 | if (f) { |
2565 | /* If all went well overwrite fd in dup'ed lay with the dup()'ed fd */ | |
aa063c35 | 2566 | PerlIOUnix_setfd(aTHX_ f, fd, os->oflags); |
71200d45 NIS |
2567 | return f; |
2568 | } | |
71200d45 NIS |
2569 | } |
2570 | return NULL; | |
2571 | } | |
2572 | ||
2573 | ||
9e353e3b | 2574 | SSize_t |
f62ce20a | 2575 | PerlIOUnix_read(pTHX_ PerlIO *f, void *vbuf, Size_t count) |
9e353e3b | 2576 | { |
97aff369 | 2577 | dVAR; |
de009b76 | 2578 | const int fd = PerlIOSelf(f, PerlIOUnix)->fd; |
27da23d5 JH |
2579 | #ifdef PERLIO_STD_SPECIAL |
2580 | if (fd == 0) | |
2581 | return PERLIO_STD_IN(fd, vbuf, count); | |
2582 | #endif | |
81428673 | 2583 | if (!(PerlIOBase(f)->flags & PERLIO_F_CANREAD) || |
1fd8f4ce | 2584 | PerlIOBase(f)->flags & (PERLIO_F_EOF|PERLIO_F_ERROR)) { |
263df5f1 | 2585 | return 0; |
1fd8f4ce | 2586 | } |
14a5cf38 | 2587 | while (1) { |
b464bac0 | 2588 | const SSize_t len = PerlLIO_read(fd, vbuf, count); |
14a5cf38 | 2589 | if (len >= 0 || errno != EINTR) { |
ba85f2ea NIS |
2590 | if (len < 0) { |
2591 | if (errno != EAGAIN) { | |
2592 | PerlIOBase(f)->flags |= PERLIO_F_ERROR; | |
2593 | } | |
2594 | } | |
2595 | else if (len == 0 && count != 0) { | |
14a5cf38 | 2596 | PerlIOBase(f)->flags |= PERLIO_F_EOF; |
ba85f2ea NIS |
2597 | SETERRNO(0,0); |
2598 | } | |
14a5cf38 JH |
2599 | return len; |
2600 | } | |
2601 | PERL_ASYNC_CHECK(); | |
2602 | } | |
b464bac0 | 2603 | /*NOTREACHED*/ |
9e353e3b NIS |
2604 | } |
2605 | ||
2606 | SSize_t | |
f62ce20a | 2607 | PerlIOUnix_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count) |
9e353e3b | 2608 | { |
97aff369 | 2609 | dVAR; |
de009b76 | 2610 | const int fd = PerlIOSelf(f, PerlIOUnix)->fd; |
27da23d5 JH |
2611 | #ifdef PERLIO_STD_SPECIAL |
2612 | if (fd == 1 || fd == 2) | |
2613 | return PERLIO_STD_OUT(fd, vbuf, count); | |
2614 | #endif | |
14a5cf38 | 2615 | while (1) { |
de009b76 | 2616 | const SSize_t len = PerlLIO_write(fd, vbuf, count); |
14a5cf38 | 2617 | if (len >= 0 || errno != EINTR) { |
ba85f2ea NIS |
2618 | if (len < 0) { |
2619 | if (errno != EAGAIN) { | |
2620 | PerlIOBase(f)->flags |= PERLIO_F_ERROR; | |
2621 | } | |
2622 | } | |
14a5cf38 JH |
2623 | return len; |
2624 | } | |
2625 | PERL_ASYNC_CHECK(); | |
06da4f11 | 2626 | } |
1b6737cc | 2627 | /*NOTREACHED*/ |
9e353e3b NIS |
2628 | } |
2629 | ||
9e353e3b | 2630 | Off_t |
f62ce20a | 2631 | PerlIOUnix_tell(pTHX_ PerlIO *f) |
9e353e3b | 2632 | { |
14a5cf38 | 2633 | return PerlLIO_lseek(PerlIOSelf(f, PerlIOUnix)->fd, 0, SEEK_CUR); |
9e353e3b NIS |
2634 | } |
2635 | ||
71200d45 | 2636 | |
9e353e3b | 2637 | IV |
f62ce20a | 2638 | PerlIOUnix_close(pTHX_ PerlIO *f) |
9e353e3b | 2639 | { |
97aff369 | 2640 | dVAR; |
de009b76 | 2641 | const int fd = PerlIOSelf(f, PerlIOUnix)->fd; |
14a5cf38 | 2642 | int code = 0; |
168d5872 NIS |
2643 | if (PerlIOBase(f)->flags & PERLIO_F_OPEN) { |
2644 | if (PerlIOUnix_refcnt_dec(fd) > 0) { | |
93a8090d NIS |
2645 | PerlIOBase(f)->flags &= ~PERLIO_F_OPEN; |
2646 | return 0; | |
22569500 | 2647 | } |
93a8090d NIS |
2648 | } |
2649 | else { | |
93189314 | 2650 | SETERRNO(EBADF,SS_IVCHAN); |
93a8090d NIS |
2651 | return -1; |
2652 | } | |
14a5cf38 JH |
2653 | while (PerlLIO_close(fd) != 0) { |
2654 | if (errno != EINTR) { | |
2655 | code = -1; | |
2656 | break; | |
2657 | } | |
2658 | PERL_ASYNC_CHECK(); | |
2659 | } | |
2660 | if (code == 0) { | |
2661 | PerlIOBase(f)->flags &= ~PERLIO_F_OPEN; | |
2662 | } | |
2663 | return code; | |
9e353e3b NIS |
2664 | } |
2665 | ||
27da23d5 | 2666 | PERLIO_FUNCS_DECL(PerlIO_unix) = { |
2dc2558e | 2667 | sizeof(PerlIO_funcs), |
14a5cf38 JH |
2668 | "unix", |
2669 | sizeof(PerlIOUnix), | |
2670 | PERLIO_K_RAW, | |
2671 | PerlIOUnix_pushed, | |
44798d05 | 2672 | PerlIOBase_popped, |
14a5cf38 | 2673 | PerlIOUnix_open, |
86e05cf2 | 2674 | PerlIOBase_binmode, /* binmode */ |
14a5cf38 JH |
2675 | NULL, |
2676 | PerlIOUnix_fileno, | |
71200d45 | 2677 | PerlIOUnix_dup, |
14a5cf38 JH |
2678 | PerlIOUnix_read, |
2679 | PerlIOBase_unread, | |
2680 | PerlIOUnix_write, | |
2681 | PerlIOUnix_seek, | |
2682 | PerlIOUnix_tell, | |
2683 | PerlIOUnix_close, | |
22569500 NIS |
2684 | PerlIOBase_noop_ok, /* flush */ |
2685 | PerlIOBase_noop_fail, /* fill */ | |
14a5cf38 JH |
2686 | PerlIOBase_eof, |
2687 | PerlIOBase_error, | |
2688 | PerlIOBase_clearerr, | |
2689 | PerlIOBase_setlinebuf, | |
22569500 NIS |
2690 | NULL, /* get_base */ |
2691 | NULL, /* get_bufsiz */ | |
2692 | NULL, /* get_ptr */ | |
2693 | NULL, /* get_cnt */ | |
2694 | NULL, /* set_ptrcnt */ | |
9e353e3b NIS |
2695 | }; |
2696 | ||
2697 | /*--------------------------------------------------------------------------------------*/ | |
14a5cf38 | 2698 | /* |
71200d45 | 2699 | * stdio as a layer |
14a5cf38 | 2700 | */ |
9e353e3b | 2701 | |
313e59c8 NIS |
2702 | #if defined(VMS) && !defined(STDIO_BUFFER_WRITABLE) |
2703 | /* perl5.8 - This ensures the last minute VMS ungetc fix is not | |
2704 | broken by the last second glibc 2.3 fix | |
2705 | */ | |
2706 | #define STDIO_BUFFER_WRITABLE | |
2707 | #endif | |
2708 | ||
2709 | ||
14a5cf38 JH |
2710 | typedef struct { |
2711 | struct _PerlIO base; | |
22569500 | 2712 | FILE *stdio; /* The stream */ |
9e353e3b NIS |
2713 | } PerlIOStdio; |
2714 | ||
2715 | IV | |
f62ce20a | 2716 | PerlIOStdio_fileno(pTHX_ PerlIO *f) |
9e353e3b | 2717 | { |
c4420975 AL |
2718 | if (PerlIOValid(f)) { |
2719 | FILE * const s = PerlIOSelf(f, PerlIOStdio)->stdio; | |
2720 | if (s) | |
2721 | return PerlSIO_fileno(s); | |
439ba545 NIS |
2722 | } |
2723 | errno = EBADF; | |
2724 | return -1; | |
9e353e3b NIS |
2725 | } |
2726 | ||
766a733e | 2727 | char * |
14a5cf38 JH |
2728 | PerlIOStdio_mode(const char *mode, char *tmode) |
2729 | { | |
de009b76 | 2730 | char * const ret = tmode; |
a0625d38 SR |
2731 | if (mode) { |
2732 | while (*mode) { | |
2733 | *tmode++ = *mode++; | |
2734 | } | |
14a5cf38 | 2735 | } |
95005ad8 | 2736 | #if defined(PERLIO_USING_CRLF) || defined(__CYGWIN__) |
6ce75a77 JH |
2737 | *tmode++ = 'b'; |
2738 | #endif | |
14a5cf38 JH |
2739 | *tmode = '\0'; |
2740 | return ret; | |
2741 | } | |
2742 | ||
4b803d04 | 2743 | IV |
2dc2558e | 2744 | PerlIOStdio_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab) |
4b803d04 | 2745 | { |
1fd8f4ce NIS |
2746 | PerlIO *n; |
2747 | if (PerlIOValid(f) && PerlIOValid(n = PerlIONext(f))) { | |
46c461b5 | 2748 | PerlIO_funcs * const toptab = PerlIOBase(n)->tab; |
1fd8f4ce NIS |
2749 | if (toptab == tab) { |
2750 | /* Top is already stdio - pop self (duplicate) and use original */ | |
2751 | PerlIO_pop(aTHX_ f); | |
2752 | return 0; | |
2753 | } else { | |
de009b76 | 2754 | const int fd = PerlIO_fileno(n); |
1fd8f4ce NIS |
2755 | char tmode[8]; |
2756 | FILE *stdio; | |
81428673 | 2757 | if (fd >= 0 && (stdio = PerlSIO_fdopen(fd, |
1fd8f4ce NIS |
2758 | mode = PerlIOStdio_mode(mode, tmode)))) { |
2759 | PerlIOSelf(f, PerlIOStdio)->stdio = stdio; | |
2760 | /* We never call down so do any pending stuff now */ | |
2761 | PerlIO_flush(PerlIONext(f)); | |
81428673 | 2762 | } |
1fd8f4ce NIS |
2763 | else { |
2764 | return -1; | |
2765 | } | |
2766 | } | |
14a5cf38 | 2767 | } |
2dc2558e | 2768 | return PerlIOBase_pushed(aTHX_ f, mode, arg, tab); |
4b803d04 NIS |
2769 | } |
2770 | ||
22569500 | 2771 | |
9e353e3b | 2772 | PerlIO * |
4b069b44 | 2773 | PerlIO_importFILE(FILE *stdio, const char *mode) |
9e353e3b | 2774 | { |
14a5cf38 JH |
2775 | dTHX; |
2776 | PerlIO *f = NULL; | |
2777 | if (stdio) { | |
22569500 | 2778 | PerlIOStdio *s; |
4b069b44 NIS |
2779 | if (!mode || !*mode) { |
2780 | /* We need to probe to see how we can open the stream | |
2781 | so start with read/write and then try write and read | |
2782 | we dup() so that we can fclose without loosing the fd. | |
2783 | ||
2784 | Note that the errno value set by a failing fdopen | |
2785 | varies between stdio implementations. | |
2786 | */ | |
de009b76 | 2787 | const int fd = PerlLIO_dup(fileno(stdio)); |
a33cf58c | 2788 | FILE *f2 = PerlSIO_fdopen(fd, (mode = "r+")); |
4b069b44 | 2789 | if (!f2) { |
a33cf58c | 2790 | f2 = PerlSIO_fdopen(fd, (mode = "w")); |
4b069b44 NIS |
2791 | } |
2792 | if (!f2) { | |
a33cf58c | 2793 | f2 = PerlSIO_fdopen(fd, (mode = "r")); |
4b069b44 NIS |
2794 | } |
2795 | if (!f2) { | |
2796 | /* Don't seem to be able to open */ | |
2797 | PerlLIO_close(fd); | |
2798 | return f; | |
2799 | } | |
2800 | fclose(f2); | |
22569500 | 2801 | } |
a0714e2c | 2802 | if ((f = PerlIO_push(aTHX_(f = PerlIO_allocate(aTHX)), PERLIO_FUNCS_CAST(&PerlIO_stdio), mode, NULL))) { |
a33cf58c NIS |
2803 | s = PerlIOSelf(f, PerlIOStdio); |
2804 | s->stdio = stdio; | |
2805 | } | |
14a5cf38 JH |
2806 | } |
2807 | return f; | |
9e353e3b NIS |
2808 | } |
2809 | ||
2810 | PerlIO * | |
14a5cf38 JH |
2811 | PerlIOStdio_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers, |
2812 | IV n, const char *mode, int fd, int imode, | |
2813 | int perm, PerlIO *f, int narg, SV **args) | |
2814 | { | |
2815 | char tmode[8]; | |
d9dac8cd | 2816 | if (PerlIOValid(f)) { |
dcda55fc AL |
2817 | const char * const path = SvPV_nolen_const(*args); |
2818 | PerlIOStdio * const s = PerlIOSelf(f, PerlIOStdio); | |
1751d015 NIS |
2819 | FILE *stdio; |
2820 | PerlIOUnix_refcnt_dec(fileno(s->stdio)); | |
2821 | stdio = PerlSIO_freopen(path, (mode = PerlIOStdio_mode(mode, tmode)), | |
14a5cf38 JH |
2822 | s->stdio); |
2823 | if (!s->stdio) | |
2824 | return NULL; | |
2825 | s->stdio = stdio; | |
1751d015 | 2826 | PerlIOUnix_refcnt_inc(fileno(s->stdio)); |
14a5cf38 JH |
2827 | return f; |
2828 | } | |
2829 | else { | |
2830 | if (narg > 0) { | |
dcda55fc | 2831 | const char * const path = SvPV_nolen_const(*args); |
3b6c1aba | 2832 | if (*mode == IoTYPE_NUMERIC) { |
14a5cf38 JH |
2833 | mode++; |
2834 | fd = PerlLIO_open3(path, imode, perm); | |
2835 | } | |
2836 | else { | |
95005ad8 GH |
2837 | FILE *stdio; |
2838 | bool appended = FALSE; | |
2839 | #ifdef __CYGWIN__ | |
2840 | /* Cygwin wants its 'b' early. */ | |
2841 | appended = TRUE; | |
2842 | mode = PerlIOStdio_mode(mode, tmode); | |
2843 | #endif | |
2844 | stdio = PerlSIO_fopen(path, mode); | |
6f0313ac JH |
2845 | if (stdio) { |
2846 | PerlIOStdio *s; | |
2847 | if (!f) { | |
2848 | f = PerlIO_allocate(aTHX); | |
2849 | } | |
95005ad8 GH |
2850 | if (!appended) |
2851 | mode = PerlIOStdio_mode(mode, tmode); | |
2852 | f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg); | |
2853 | if (f) { | |
6f0313ac JH |
2854 | s = PerlIOSelf(f, PerlIOStdio); |
2855 | s->stdio = stdio; | |
2856 | PerlIOUnix_refcnt_inc(fileno(s->stdio)); | |
2857 | } | |
2858 | return f; | |
2859 | } | |
2860 | else { | |
2861 | return NULL; | |
2862 | } | |
14a5cf38 JH |
2863 | } |
2864 | } | |
2865 | if (fd >= 0) { | |
2866 | FILE *stdio = NULL; | |
2867 | int init = 0; | |
3b6c1aba | 2868 | if (*mode == IoTYPE_IMPLICIT) { |
14a5cf38 JH |
2869 | init = 1; |
2870 | mode++; | |
2871 | } | |
2872 | if (init) { | |
2873 | switch (fd) { | |
2874 | case 0: | |
2875 | stdio = PerlSIO_stdin; | |
2876 | break; | |
2877 | case 1: | |
2878 | stdio = PerlSIO_stdout; | |
2879 | break; | |
2880 | case 2: | |
2881 | stdio = PerlSIO_stderr; | |
2882 | break; | |
2883 | } | |
2884 | } | |
2885 | else { | |
2886 | stdio = PerlSIO_fdopen(fd, mode = | |
2887 | PerlIOStdio_mode(mode, tmode)); | |
2888 | } | |
2889 | if (stdio) { | |
d9dac8cd NIS |
2890 | if (!f) { |
2891 | f = PerlIO_allocate(aTHX); | |
2892 | } | |
a33cf58c | 2893 | if ((f = PerlIO_push(aTHX_ f, self, mode, PerlIOArg))) { |
dcda55fc | 2894 | PerlIOStdio * const s = PerlIOSelf(f, PerlIOStdio); |
a33cf58c NIS |
2895 | s->stdio = stdio; |
2896 | PerlIOUnix_refcnt_inc(fileno(s->stdio)); | |
2897 | } | |
14a5cf38 JH |
2898 | return f; |
2899 | } | |
2900 | } | |
2901 | } | |
ee518936 | 2902 | return NULL; |
9e353e3b NIS |
2903 | } |
2904 | ||
1751d015 | 2905 | PerlIO * |
ecdeb87c | 2906 | PerlIOStdio_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *param, int flags) |
1751d015 NIS |
2907 | { |
2908 | /* This assumes no layers underneath - which is what | |
2909 | happens, but is not how I remember it. NI-S 2001/10/16 | |
2910 | */ | |
ecdeb87c | 2911 | if ((f = PerlIOBase_dup(aTHX_ f, o, param, flags))) { |
694c95cf | 2912 | FILE *stdio = PerlIOSelf(o, PerlIOStdio)->stdio; |
de009b76 | 2913 | const int fd = fileno(stdio); |
9217ff3f | 2914 | char mode[8]; |
ecdeb87c | 2915 | if (flags & PERLIO_DUP_FD) { |
de009b76 | 2916 | const int dfd = PerlLIO_dup(fileno(stdio)); |
9217ff3f NIS |
2917 | if (dfd >= 0) { |
2918 | stdio = PerlSIO_fdopen(dfd, PerlIO_modestr(o,mode)); | |
2919 | goto set_this; | |
ecdeb87c NIS |
2920 | } |
2921 | else { | |
bb263b4e | 2922 | /*EMPTY*/; |
ecdeb87c NIS |
2923 | /* FIXME: To avoid messy error recovery if dup fails |
2924 | re-use the existing stdio as though flag was not set | |
2925 | */ | |
2926 | } | |
2927 | } | |
9217ff3f NIS |
2928 | stdio = PerlSIO_fdopen(fd, PerlIO_modestr(o,mode)); |
2929 | set_this: | |
694c95cf JH |
2930 | PerlIOSelf(f, PerlIOStdio)->stdio = stdio; |
2931 | PerlIOUnix_refcnt_inc(fileno(stdio)); | |
1751d015 NIS |
2932 | } |
2933 | return f; | |
2934 | } | |
2935 | ||
0d7a5398 NIS |
2936 | static int |
2937 | PerlIOStdio_invalidate_fileno(pTHX_ FILE *f) | |
2938 | { | |
2939 | /* XXX this could use PerlIO_canset_fileno() and | |
37725cdc | 2940 | * PerlIO_set_fileno() support from Configure |
0d7a5398 | 2941 | */ |
ef8eacb8 AT |
2942 | # if defined(__UCLIBC__) |
2943 | /* uClibc must come before glibc because it defines __GLIBC__ as well. */ | |
2944 | f->__filedes = -1; | |
2945 | return 1; | |
2946 | # elif defined(__GLIBC__) | |
0d7a5398 | 2947 | /* There may be a better way for GLIBC: |
37725cdc | 2948 | - libio.h defines a flag to not close() on cleanup |
0d7a5398 NIS |
2949 | */ |
2950 | f->_fileno = -1; | |
2951 | return 1; | |
2952 | # elif defined(__sun__) | |
2953 | # if defined(_LP64) | |
2954 | /* On solaris, if _LP64 is defined, the FILE structure is this: | |
2955 | * | |
2956 | * struct FILE { | |
2957 | * long __pad[16]; | |
2958 | * }; | |
2959 | * | |
37725cdc | 2960 | * It turns out that the fd is stored in the top 32 bits of |
0d7a5398 NIS |
2961 | * file->__pad[4]. The lower 32 bits contain flags. file->pad[5] appears |
2962 | * to contain a pointer or offset into another structure. All the | |
2963 | * remaining fields are zero. | |
2964 | * | |
2965 | * We set the top bits to -1 (0xFFFFFFFF). | |
2966 | */ | |
2967 | f->__pad[4] |= 0xffffffff00000000L; | |
2968 | assert(fileno(f) == 0xffffffff); | |
2969 | # else /* !defined(_LP64) */ | |
37725cdc NIS |
2970 | /* _file is just a unsigned char :-( |
2971 | Not clear why we dup() rather than using -1 | |
2972 | even if that would be treated as 0xFF - so will | |
0d7a5398 NIS |
2973 | a dup fail ... |
2974 | */ | |
673c27c1 | 2975 | f->_file = PerlLIO_dup(fileno(f)); |
0d7a5398 NIS |
2976 | # endif /* defined(_LP64) */ |
2977 | return 1; | |
2978 | # elif defined(__hpux) | |
2979 | f->__fileH = 0xff; | |
2980 | f->__fileL = 0xff; | |
2981 | return 1; | |
9837d373 | 2982 | /* Next one ->_file seems to be a reasonable fallback, i.e. if |
37725cdc | 2983 | your platform does not have special entry try this one. |
9837d373 NIS |
2984 | [For OSF only have confirmation for Tru64 (alpha) |
2985 | but assume other OSFs will be similar.] | |
37725cdc | 2986 | */ |
9837d373 | 2987 | # elif defined(_AIX) || defined(__osf__) || defined(__irix__) |
0d7a5398 NIS |
2988 | f->_file = -1; |
2989 | return 1; | |
2990 | # elif defined(__FreeBSD__) | |
2991 | /* There may be a better way on FreeBSD: | |
37725cdc NIS |
2992 | - we could insert a dummy func in the _close function entry |
2993 | f->_close = (int (*)(void *)) dummy_close; | |
0d7a5398 NIS |
2994 | */ |
2995 | f->_file = -1; | |
0c49ea6a SU |
2996 | return 1; |
2997 | # elif defined(__OpenBSD__) | |
2998 | /* There may be a better way on OpenBSD: | |
2999 | - we could insert a dummy func in the _close function entry | |
3000 | f->_close = (int (*)(void *)) dummy_close; | |
3001 | */ | |
3002 | f->_file = -1; | |
0d7a5398 | 3003 | return 1; |
59ad941d IZ |
3004 | # elif defined(__EMX__) |
3005 | /* f->_flags &= ~_IOOPEN; */ /* Will leak stream->_buffer */ | |
3006 | f->_handle = -1; | |
3007 | return 1; | |
0d7a5398 NIS |
3008 | # elif defined(__CYGWIN__) |
3009 | /* There may be a better way on CYGWIN: | |
37725cdc NIS |
3010 | - we could insert a dummy func in the _close function entry |
3011 | f->_close = (int (*)(void *)) dummy_close; | |
0d7a5398 NIS |
3012 | */ |
3013 | f->_file = -1; | |
3014 | return 1; | |
3015 | # elif defined(WIN32) | |
3016 | # if defined(__BORLANDC__) | |
3017 | f->fd = PerlLIO_dup(fileno(f)); | |
b475b3e6 JH |
3018 | # elif defined(UNDER_CE) |
3019 | /* WIN_CE does not have access to FILE internals, it hardly has FILE | |
3020 | structure at all | |
3021 | */ | |
0d7a5398 NIS |
3022 | # else |
3023 | f->_file = -1; | |
3024 | # endif | |
3025 | return 1; | |
3026 | # else | |
3027 | #if 0 | |
37725cdc | 3028 | /* Sarathy's code did this - we fall back to a dup/dup2 hack |
0d7a5398 | 3029 | (which isn't thread safe) instead |
37725cdc | 3030 | */ |
0d7a5398 NIS |
3031 | # error "Don't know how to set FILE.fileno on your platform" |
3032 | #endif | |
8772537c | 3033 | PERL_UNUSED_ARG(f); |
0d7a5398 NIS |
3034 | return 0; |
3035 | # endif | |
3036 | } | |
3037 | ||
1751d015 | 3038 | IV |
f62ce20a | 3039 | PerlIOStdio_close(pTHX_ PerlIO *f) |
1751d015 | 3040 | { |
c4420975 | 3041 | FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; |
439ba545 NIS |
3042 | if (!stdio) { |
3043 | errno = EBADF; | |
3044 | return -1; | |
3045 | } | |
9217ff3f | 3046 | else { |
de009b76 | 3047 | const int fd = fileno(stdio); |
0d7a5398 NIS |
3048 | int socksfd = 0; |
3049 | int invalidate = 0; | |
bbfd922f | 3050 | IV result = 0; |
0d7a5398 NIS |
3051 | int saveerr = 0; |
3052 | int dupfd = 0; | |
3053 | #ifdef SOCKS5_VERSION_NAME | |
37725cdc NIS |
3054 | /* Socks lib overrides close() but stdio isn't linked to |
3055 | that library (though we are) - so we must call close() | |
3056 | on sockets on stdio's behalf. | |
3057 | */ | |
0d7a5398 NIS |
3058 | int optval; |
3059 | Sock_size_t optlen = sizeof(int); | |
3060 | if (getsockopt(fd, SOL_SOCKET, SO_TYPE, (void *) &optval, &optlen) == 0) { | |
3061 | socksfd = 1; | |
37725cdc | 3062 | invalidate = 1; |
0d7a5398 NIS |
3063 | } |
3064 | #endif | |
9217ff3f NIS |
3065 | if (PerlIOUnix_refcnt_dec(fd) > 0) { |
3066 | /* File descriptor still in use */ | |
0d7a5398 NIS |
3067 | invalidate = 1; |
3068 | socksfd = 0; | |
37725cdc | 3069 | } |
0d7a5398 | 3070 | if (invalidate) { |
37725cdc NIS |
3071 | /* For STD* handles don't close the stdio at all |
3072 | this is because we have shared the FILE * too | |
0d7a5398 NIS |
3073 | */ |
3074 | if (stdio == stdin) { | |
3075 | /* Some stdios are buggy fflush-ing inputs */ | |
3076 | return 0; | |
3077 | } | |
3078 | else if (stdio == stdout || stdio == stderr) { | |
9217ff3f NIS |
3079 | return PerlIO_flush(f); |
3080 | } | |
37725cdc NIS |
3081 | /* Tricky - must fclose(stdio) to free memory but not close(fd) |
3082 | Use Sarathy's trick from maint-5.6 to invalidate the | |
3083 | fileno slot of the FILE * | |
3084 | */ | |
bbfd922f | 3085 | result = PerlIO_flush(f); |
0d7a5398 NIS |
3086 | saveerr = errno; |
3087 | if (!(invalidate = PerlIOStdio_invalidate_fileno(aTHX_ stdio))) { | |
9217ff3f NIS |
3088 | dupfd = PerlLIO_dup(fd); |
3089 | } | |
37725cdc | 3090 | } |
0d7a5398 | 3091 | result = PerlSIO_fclose(stdio); |
37725cdc NIS |
3092 | /* We treat error from stdio as success if we invalidated |
3093 | errno may NOT be expected EBADF | |
e8529473 NIS |
3094 | */ |
3095 | if (invalidate && result != 0) { | |
0d7a5398 NIS |
3096 | errno = saveerr; |
3097 | result = 0; | |
37725cdc | 3098 | } |
0d7a5398 NIS |
3099 | if (socksfd) { |
3100 | /* in SOCKS case let close() determine return value */ | |
3101 | result = close(fd); | |
3102 | } | |
3103 | if (dupfd) { | |
3104 | PerlLIO_dup2(dupfd,fd); | |
8a521f28 | 3105 | PerlLIO_close(dupfd); |
9217ff3f NIS |
3106 | } |
3107 | return result; | |
37725cdc | 3108 | } |
1751d015 NIS |
3109 | } |
3110 | ||
9e353e3b | 3111 | SSize_t |
f62ce20a | 3112 | PerlIOStdio_read(pTHX_ PerlIO *f, void *vbuf, Size_t count) |
9e353e3b | 3113 | { |
97aff369 | 3114 | dVAR; |
c4420975 | 3115 | FILE * const s = PerlIOSelf(f, PerlIOStdio)->stdio; |
14a5cf38 | 3116 | SSize_t got = 0; |
4d948241 NIS |
3117 | for (;;) { |
3118 | if (count == 1) { | |
3119 | STDCHAR *buf = (STDCHAR *) vbuf; | |
3120 | /* | |
3121 | * Perl is expecting PerlIO_getc() to fill the buffer Linux's | |
3122 | * stdio does not do that for fread() | |
3123 | */ | |
de009b76 | 3124 | const int ch = PerlSIO_fgetc(s); |
4d948241 NIS |
3125 | if (ch != EOF) { |
3126 | *buf = ch; | |
3127 | got = 1; | |
3128 | } | |
14a5cf38 | 3129 | } |
4d948241 NIS |
3130 | else |
3131 | got = PerlSIO_fread(vbuf, 1, count, s); | |
b1d8b47a CS |
3132 | if (got == 0 && PerlSIO_ferror(s)) |
3133 | got = -1; | |
42a7a32f | 3134 | if (got >= 0 || errno != EINTR) |
4d948241 NIS |
3135 | break; |
3136 | PERL_ASYNC_CHECK(); | |
42a7a32f | 3137 | SETERRNO(0,0); /* just in case */ |
14a5cf38 | 3138 | } |
14a5cf38 | 3139 | return got; |
9e353e3b NIS |
3140 | } |
3141 | ||
3142 | SSize_t | |
f62ce20a | 3143 | PerlIOStdio_unread(pTHX_ PerlIO *f, const void *vbuf, Size_t count) |
9e353e3b | 3144 | { |
14a5cf38 | 3145 | SSize_t unread = 0; |
c4420975 | 3146 | FILE * const s = PerlIOSelf(f, PerlIOStdio)->stdio; |
93679785 | 3147 | |
313e59c8 | 3148 | #ifdef STDIO_BUFFER_WRITABLE |
9f7cd136 | 3149 | if (PerlIO_fast_gets(f) && PerlIO_has_base(f)) { |
93679785 NIS |
3150 | STDCHAR *buf = ((STDCHAR *) vbuf) + count; |
3151 | STDCHAR *base = PerlIO_get_base(f); | |
3152 | SSize_t cnt = PerlIO_get_cnt(f); | |
3153 | STDCHAR *ptr = PerlIO_get_ptr(f); | |
3154 | SSize_t avail = ptr - base; | |
3155 | if (avail > 0) { | |
3156 | if (avail > count) { | |
3157 | avail = count; | |
3158 | } | |
3159 | ptr -= avail; | |
3160 | Move(buf-avail,ptr,avail,STDCHAR); | |
3161 | count -= avail; | |
3162 | unread += avail; | |
3163 | PerlIO_set_ptrcnt(f,ptr,cnt+avail); | |
9f7cd136 NIS |
3164 | if (PerlSIO_feof(s) && unread >= 0) |
3165 | PerlSIO_clearerr(s); | |
3166 | } | |
3167 | } | |
313e59c8 NIS |
3168 | else |
3169 | #endif | |
3170 | if (PerlIO_has_cntptr(f)) { | |
9f7cd136 NIS |
3171 | /* We can get pointer to buffer but not its base |
3172 | Do ungetc() but check chars are ending up in the | |
3173 | buffer | |
3174 | */ | |
3175 | STDCHAR *eptr = (STDCHAR*)PerlSIO_get_ptr(s); | |
3176 | STDCHAR *buf = ((STDCHAR *) vbuf) + count; | |
3177 | while (count > 0) { | |
de009b76 | 3178 | const int ch = *--buf & 0xFF; |
9f7cd136 NIS |
3179 | if (ungetc(ch,s) != ch) { |
3180 | /* ungetc did not work */ | |
3181 | break; | |
3182 | } | |
3183 | if ((STDCHAR*)PerlSIO_get_ptr(s) != --eptr || ((*eptr & 0xFF) != ch)) { | |
3184 | /* Did not change pointer as expected */ | |
3185 | fgetc(s); /* get char back again */ | |
3186 | break; | |
3187 | } | |
3188 | /* It worked ! */ | |
3189 | count--; | |
3190 | unread++; | |
93679785 NIS |
3191 | } |
3192 | } | |
3193 | ||
3194 | if (count > 0) { | |
3195 | unread += PerlIOBase_unread(aTHX_ f, vbuf, count); | |
14a5cf38 JH |
3196 | } |
3197 | return unread; | |
9e353e3b NIS |
3198 | } |
3199 | ||
3200 | SSize_t | |
f62ce20a | 3201 | PerlIOStdio_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count) |
9e353e3b | 3202 | { |
97aff369 | 3203 | dVAR; |
4d948241 NIS |
3204 | SSize_t got; |
3205 | for (;;) { | |
3206 | got = PerlSIO_fwrite(vbuf, 1, count, | |
3207 | PerlIOSelf(f, PerlIOStdio)->stdio); | |
42a7a32f | 3208 | if (got >= 0 || errno != EINTR) |
4d948241 NIS |
3209 | break; |
3210 | PERL_ASYNC_CHECK(); | |
42a7a32f | 3211 | SETERRNO(0,0); /* just in case */ |
4d948241 NIS |
3212 | } |
3213 | return got; | |
9e353e3b NIS |
3214 | } |
3215 | ||
94a175e1 | 3216 | IV |
f62ce20a | 3217 | PerlIOStdio_seek(pTHX_ PerlIO *f, Off_t offset, int whence) |
9e353e3b | 3218 | { |
c4420975 | 3219 | FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; |
94a175e1 | 3220 | return PerlSIO_fseek(stdio, offset, whence); |
9e353e3b NIS |
3221 | } |
3222 | ||
3223 | Off_t | |
f62ce20a | 3224 | PerlIOStdio_tell(pTHX_ PerlIO *f) |
9e353e3b | 3225 | { |
c4420975 | 3226 | FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; |
94a175e1 | 3227 | return PerlSIO_ftell(stdio); |
9e353e3b NIS |
3228 | } |
3229 | ||
3230 | IV | |
f62ce20a | 3231 | PerlIOStdio_flush(pTHX_ PerlIO *f) |
9e353e3b | 3232 | { |
c4420975 | 3233 | FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; |
14a5cf38 JH |
3234 | if (PerlIOBase(f)->flags & PERLIO_F_CANWRITE) { |
3235 | return PerlSIO_fflush(stdio); | |
3236 | } | |
3237 | else { | |
bb263b4e | 3238 | /*EMPTY*/; |
88b61e10 | 3239 | #if 0 |
14a5cf38 JH |
3240 | /* |
3241 | * FIXME: This discards ungetc() and pre-read stuff which is not | |
71200d45 | 3242 | * right if this is just a "sync" from a layer above Suspect right |
14a5cf38 | 3243 | * design is to do _this_ but not have layer above flush this |
71200d45 | 3244 | * layer read-to-read |
14a5cf38 JH |
3245 | */ |
3246 | /* | |
71200d45 | 3247 | * Not writeable - sync by attempting a seek |
14a5cf38 | 3248 | */ |
79852593 | 3249 | const int err = errno; |
14a5cf38 JH |
3250 | if (PerlSIO_fseek(stdio, (Off_t) 0, SEEK_CUR) != 0) |
3251 | errno = err; | |
88b61e10 | 3252 | #endif |
14a5cf38 JH |
3253 | } |
3254 | return 0; | |
9e353e3b NIS |
3255 | } |
3256 | ||
3257 | IV | |
f62ce20a | 3258 | PerlIOStdio_eof(pTHX_ PerlIO *f) |
9e353e3b | 3259 | { |
14a5cf38 | 3260 | return PerlSIO_feof(PerlIOSelf(f, PerlIOStdio)->stdio); |
9e353e3b NIS |
3261 | } |
3262 | ||
3263 | IV | |
f62ce20a | 3264 | PerlIOStdio_error(pTHX_ PerlIO *f) |
9e353e3b | 3265 | { |
263df5f1 | 3266 | return PerlSIO_ferror(PerlIOSelf(f, PerlIOStdio)->stdio); |
9e353e3b NIS |
3267 | } |
3268 | ||
3269 | void | |
f62ce20a | 3270 | PerlIOStdio_clearerr(pTHX_ PerlIO *f) |
9e353e3b | 3271 | { |
14a5cf38 | 3272 | PerlSIO_clearerr(PerlIOSelf(f, PerlIOStdio)->stdio); |
9e353e3b NIS |
3273 | } |
3274 | ||
3275 | void | |
f62ce20a | 3276 | PerlIOStdio_setlinebuf(pTHX_ PerlIO *f) |
9e353e3b NIS |
3277 | { |
3278 | #ifdef HAS_SETLINEBUF | |
14a5cf38 | 3279 | PerlSIO_setlinebuf(PerlIOSelf(f, PerlIOStdio)->stdio); |
9e353e3b | 3280 | #else |
bd61b366 | 3281 | PerlSIO_setvbuf(PerlIOSelf(f, PerlIOStdio)->stdio, NULL, _IOLBF, 0); |
9e353e3b NIS |
3282 | #endif |
3283 | } | |
3284 | ||
3285 | #ifdef FILE_base | |
3286 | STDCHAR * | |
f62ce20a | 3287 | PerlIOStdio_get_base(pTHX_ PerlIO *f) |
9e353e3b | 3288 | { |
c4420975 | 3289 | FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; |
cc00df79 | 3290 | return (STDCHAR*)PerlSIO_get_base(stdio); |
9e353e3b NIS |
3291 | } |
3292 | ||
3293 | Size_t | |
f62ce20a | 3294 | PerlIOStdio_get_bufsiz(pTHX_ PerlIO *f) |
9e353e3b | 3295 | { |
c4420975 | 3296 | FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; |
14a5cf38 | 3297 | return PerlSIO_get_bufsiz(stdio); |
9e353e3b NIS |
3298 | } |
3299 | #endif | |
3300 | ||
3301 | #ifdef USE_STDIO_PTR | |
3302 | STDCHAR * | |
f62ce20a | 3303 | PerlIOStdio_get_ptr(pTHX_ PerlIO *f) |
9e353e3b | 3304 | { |
c4420975 | 3305 | FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; |
cc00df79 | 3306 | return (STDCHAR*)PerlSIO_get_ptr(stdio); |
9e353e3b NIS |
3307 | } |
3308 | ||
3309 | SSize_t | |
f62ce20a | 3310 | PerlIOStdio_get_cnt(pTHX_ PerlIO *f) |
9e353e3b | 3311 | { |
c4420975 | 3312 | FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; |
14a5cf38 | 3313 | return PerlSIO_get_cnt(stdio); |
9e353e3b NIS |
3314 | } |
3315 | ||
3316 | void | |
f62ce20a | 3317 | PerlIOStdio_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt) |
9e353e3b | 3318 | { |
c4420975 | 3319 | FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; |
14a5cf38 | 3320 | if (ptr != NULL) { |
9e353e3b | 3321 | #ifdef STDIO_PTR_LVALUE |
22569500 | 3322 | PerlSIO_set_ptr(stdio, (void*)ptr); /* LHS STDCHAR* cast non-portable */ |
9e353e3b | 3323 | #ifdef STDIO_PTR_LVAL_SETS_CNT |
14a5cf38 | 3324 | if (PerlSIO_get_cnt(stdio) != (cnt)) { |
14a5cf38 JH |
3325 | assert(PerlSIO_get_cnt(stdio) == (cnt)); |
3326 | } | |
9e353e3b NIS |
3327 | #endif |
3328 | #if (!defined(STDIO_PTR_LVAL_NOCHANGE_CNT)) | |
14a5cf38 | 3329 | /* |
71200d45 | 3330 | * Setting ptr _does_ change cnt - we are done |
14a5cf38 JH |
3331 | */ |
3332 | return; | |
9e353e3b | 3333 | #endif |
22569500 | 3334 | #else /* STDIO_PTR_LVALUE */ |
14a5cf38 | 3335 | PerlProc_abort(); |
22569500 | 3336 | #endif /* STDIO_PTR_LVALUE */ |
14a5cf38 JH |
3337 | } |
3338 | /* | |
71200d45 | 3339 | * Now (or only) set cnt |
14a5cf38 | 3340 | */ |
9e353e3b | 3341 | #ifdef STDIO_CNT_LVALUE |
14a5cf38 | 3342 | PerlSIO_set_cnt(stdio, cnt); |
22569500 | 3343 | #else /* STDIO_CNT_LVALUE */ |
9e353e3b | 3344 | #if (defined(STDIO_PTR_LVALUE) && defined(STDIO_PTR_LVAL_SETS_CNT)) |
14a5cf38 JH |
3345 | PerlSIO_set_ptr(stdio, |
3346 | PerlSIO_get_ptr(stdio) + (PerlSIO_get_cnt(stdio) - | |
3347 | cnt)); | |
22569500 | 3348 | #else /* STDIO_PTR_LVAL_SETS_CNT */ |
14a5cf38 | 3349 | PerlProc_abort(); |
22569500 NIS |
3350 | #endif /* STDIO_PTR_LVAL_SETS_CNT */ |
3351 | #endif /* STDIO_CNT_LVALUE */ | |
9e353e3b NIS |
3352 | } |
3353 | ||
93679785 | 3354 | |
9e353e3b NIS |
3355 | #endif |
3356 | ||
93679785 NIS |
3357 | IV |
3358 | PerlIOStdio_fill(pTHX_ PerlIO *f) | |
3359 | { | |
c4420975 | 3360 | FILE * const stdio = PerlIOSelf(f, PerlIOStdio)->stdio; |
93679785 NIS |
3361 | int c; |
3362 | /* | |
3363 | * fflush()ing read-only streams can cause trouble on some stdio-s | |
3364 | */ | |
3365 | if ((PerlIOBase(f)->flags & PERLIO_F_CANWRITE)) { | |
3366 | if (PerlSIO_fflush(stdio) != 0) | |
3367 | return EOF; | |
3368 | } | |
3369 | c = PerlSIO_fgetc(stdio); | |
3370 | if (c == EOF) | |
3371 | return EOF; | |
3372 | ||
3373 | #if (defined(STDIO_PTR_LVALUE) && (defined(STDIO_CNT_LVALUE) || defined(STDIO_PTR_LVAL_SETS_CNT))) | |
313e59c8 NIS |
3374 | |
3375 | #ifdef STDIO_BUFFER_WRITABLE | |
9f7cd136 | 3376 | if (PerlIO_fast_gets(f) && PerlIO_has_base(f)) { |
93679785 NIS |
3377 | /* Fake ungetc() to the real buffer in case system's ungetc |
3378 | goes elsewhere | |
3379 | */ | |
3380 | STDCHAR *base = (STDCHAR*)PerlSIO_get_base(stdio); | |
3381 | SSize_t cnt = PerlSIO_get_cnt(stdio); | |
3382 | STDCHAR *ptr = (STDCHAR*)PerlSIO_get_ptr(stdio); | |
3383 | if (ptr == base+1) { | |
3384 | *--ptr = (STDCHAR) c; | |
3385 | PerlIOStdio_set_ptrcnt(aTHX_ f,ptr,cnt+1); | |
3386 | if (PerlSIO_feof(stdio)) | |
3387 | PerlSIO_clearerr(stdio); | |
3388 | return 0; | |
3389 | } | |
3390 | } | |
313e59c8 NIS |
3391 | else |
3392 | #endif | |
3393 | if (PerlIO_has_cntptr(f)) { | |
9f7cd136 NIS |
3394 | STDCHAR ch = c; |
3395 | if (PerlIOStdio_unread(aTHX_ f,&ch,1) == 1) { | |
3396 | return 0; | |
3397 | } | |
3398 | } | |
93679785 NIS |
3399 | #endif |
3400 | ||
3401 | #if defined(VMS) | |
3402 | /* An ungetc()d char is handled separately from the regular | |
3403 | * buffer, so we stuff it in the buffer ourselves. | |
3404 | * Should never get called as should hit code above | |
3405 | */ | |
bad9695d NIS |
3406 | *(--((*stdio)->_ptr)) = (unsigned char) c; |
3407 | (*stdio)->_cnt++; | |
93679785 NIS |
3408 | #else |
3409 | /* If buffer snoop scheme above fails fall back to | |
9f7cd136 | 3410 | using ungetc(). |
93679785 NIS |
3411 | */ |
3412 | if (PerlSIO_ungetc(c, stdio) != c) | |
3413 | return EOF; | |
3414 | #endif | |
3415 | return 0; | |
3416 | } | |
3417 | ||
3418 | ||
3419 | ||
27da23d5 | 3420 | PERLIO_FUNCS_DECL(PerlIO_stdio) = { |
2dc2558e | 3421 | sizeof(PerlIO_funcs), |
14a5cf38 JH |
3422 | "stdio", |
3423 | sizeof(PerlIOStdio), | |
86e05cf2 | 3424 | PERLIO_K_BUFFERED|PERLIO_K_RAW, |
1fd8f4ce | 3425 | PerlIOStdio_pushed, |
44798d05 | 3426 | PerlIOBase_popped, |
14a5cf38 | 3427 | PerlIOStdio_open, |
86e05cf2 | 3428 | PerlIOBase_binmode, /* binmode */ |
14a5cf38 JH |
3429 | NULL, |
3430 | PerlIOStdio_fileno, | |
71200d45 | 3431 | PerlIOStdio_dup, |
14a5cf38 JH |
3432 | PerlIOStdio_read, |
3433 | PerlIOStdio_unread, | |
3434 | PerlIOStdio_write, | |
3435 | PerlIOStdio_seek, | |
3436 | PerlIOStdio_tell, | |
3437 | PerlIOStdio_close, | |
3438 | PerlIOStdio_flush, | |
3439 | PerlIOStdio_fill, | |
3440 | PerlIOStdio_eof, | |
3441 | PerlIOStdio_error, | |
3442 | PerlIOStdio_clearerr, | |
3443 | PerlIOStdio_setlinebuf, | |
9e353e3b | 3444 | #ifdef FILE_base |
14a5cf38 JH |
3445 | PerlIOStdio_get_base, |
3446 | PerlIOStdio_get_bufsiz, | |
9e353e3b | 3447 | #else |
14a5cf38 JH |
3448 | NULL, |
3449 | NULL, | |
9e353e3b NIS |
3450 | #endif |
3451 | #ifdef USE_STDIO_PTR | |
14a5cf38 JH |
3452 | PerlIOStdio_get_ptr, |
3453 | PerlIOStdio_get_cnt, | |
15b61c98 | 3454 | # if defined(HAS_FAST_STDIO) && defined(USE_FAST_STDIO) |
79ed0f43 | 3455 | PerlIOStdio_set_ptrcnt, |
15b61c98 JH |
3456 | # else |
3457 | NULL, | |
3458 | # endif /* HAS_FAST_STDIO && USE_FAST_STDIO */ | |
3459 | #else | |
3460 | NULL, | |
14a5cf38 JH |
3461 | NULL, |
3462 | NULL, | |
15b61c98 | 3463 | #endif /* USE_STDIO_PTR */ |
9e353e3b NIS |
3464 | }; |
3465 | ||
b9d6bf13 JH |
3466 | /* Note that calls to PerlIO_exportFILE() are reversed using |
3467 | * PerlIO_releaseFILE(), not importFILE. */ | |
9e353e3b | 3468 | FILE * |
81428673 | 3469 | PerlIO_exportFILE(PerlIO * f, const char *mode) |
9e353e3b | 3470 | { |
e87a358a | 3471 | dTHX; |
81428673 NIS |
3472 | FILE *stdio = NULL; |
3473 | if (PerlIOValid(f)) { | |
3474 | char buf[8]; | |
3475 | PerlIO_flush(f); | |
3476 | if (!mode || !*mode) { | |
3477 | mode = PerlIO_modestr(f, buf); | |
3478 | } | |
3479 | stdio = PerlSIO_fdopen(PerlIO_fileno(f), mode); | |
3480 | if (stdio) { | |
3481 | PerlIOl *l = *f; | |
9f75cc58 | 3482 | PerlIO *f2; |
81428673 NIS |
3483 | /* De-link any lower layers so new :stdio sticks */ |
3484 | *f = NULL; | |
a0714e2c | 3485 | if ((f2 = PerlIO_push(aTHX_ f, PERLIO_FUNCS_CAST(&PerlIO_stdio), buf, NULL))) { |
9f75cc58 | 3486 | PerlIOStdio *s = PerlIOSelf((f = f2), PerlIOStdio); |
81428673 NIS |
3487 | s->stdio = stdio; |
3488 | /* Link previous lower layers under new one */ | |
3489 | *PerlIONext(f) = l; | |
3490 | } | |
3491 | else { | |
3492 | /* restore layers list */ | |
3493 | *f = l; | |
3494 | } | |
a33cf58c | 3495 | } |
14a5cf38 JH |
3496 | } |
3497 | return stdio; | |
9e353e3b NIS |
3498 | } |
3499 | ||
81428673 | 3500 | |
9e353e3b NIS |
3501 | FILE * |
3502 | PerlIO_findFILE(PerlIO *f) | |
3503 | { | |
14a5cf38 JH |
3504 | PerlIOl *l = *f; |
3505 | while (l) { | |
3506 | if (l->tab == &PerlIO_stdio) { | |
3507 | PerlIOStdio *s = PerlIOSelf(&l, PerlIOStdio); | |
3508 | return s->stdio; | |
3509 | } | |
3510 | l = *PerlIONext(&l); | |
f7e7eb72 | 3511 | } |
4b069b44 | 3512 | /* Uses fallback "mode" via PerlIO_modestr() in PerlIO_exportFILE */ |
bd61b366 | 3513 | return PerlIO_exportFILE(f, NULL); |
9e353e3b NIS |
3514 | } |
3515 | ||
b9d6bf13 | 3516 | /* Use this to reverse PerlIO_exportFILE calls. */ |
9e353e3b NIS |
3517 | void |
3518 | PerlIO_releaseFILE(PerlIO *p, FILE *f) | |
3519 | { | |
27da23d5 | 3520 | dVAR; |
22569500 NIS |
3521 | PerlIOl *l; |
3522 | while ((l = *p)) { | |
3523 | if (l->tab == &PerlIO_stdio) { | |
3524 | PerlIOStdio *s = PerlIOSelf(&l, PerlIOStdio); | |
3525 | if (s->stdio == f) { | |
3526 | dTHX; | |
3527 | PerlIO_pop(aTHX_ p); | |
3528 | return; | |
3529 | } | |
3530 | } | |
3531 | p = PerlIONext(p); | |
3532 | } | |
3533 | return; | |
9e353e3b NIS |
3534 | } |
3535 | ||
3536 | /*--------------------------------------------------------------------------------------*/ | |
14a5cf38 | 3537 | /* |
71200d45 | 3538 | * perlio buffer layer |
14a5cf38 | 3539 | */ |
9e353e3b | 3540 | |
5e2ab84b | 3541 | IV |
2dc2558e | 3542 | PerlIOBuf_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs *tab) |
5e2ab84b | 3543 | { |
14a5cf38 | 3544 | PerlIOBuf *b = PerlIOSelf(f, PerlIOBuf); |
de009b76 | 3545 | const int fd = PerlIO_fileno(f); |
14a5cf38 JH |
3546 | if (fd >= 0 && PerlLIO_isatty(fd)) { |
3547 | PerlIOBase(f)->flags |= PERLIO_F_LINEBUF | PERLIO_F_TTY; | |
3548 | } | |
4b069b44 | 3549 | if (*PerlIONext(f)) { |
de009b76 | 3550 | const Off_t posn = PerlIO_tell(PerlIONext(f)); |
4b069b44 NIS |
3551 | if (posn != (Off_t) - 1) { |
3552 | b->posn = posn; | |
3553 | } | |
14a5cf38 | 3554 | } |
2dc2558e | 3555 | return PerlIOBase_pushed(aTHX_ f, mode, arg, tab); |
5e2ab84b NIS |
3556 | } |
3557 | ||
9e353e3b | 3558 | PerlIO * |
14a5cf38 JH |
3559 | PerlIOBuf_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers, |
3560 | IV n, const char *mode, int fd, int imode, int perm, | |
3561 | PerlIO *f, int narg, SV **args) | |
3562 | { | |
04892f78 | 3563 | if (PerlIOValid(f)) { |
14a5cf38 | 3564 | PerlIO *next = PerlIONext(f); |
67363c0d JH |
3565 | PerlIO_funcs *tab = |
3566 | PerlIO_layer_fetch(aTHX_ layers, n - 1, PerlIOBase(next)->tab); | |
3567 | if (tab && tab->Open) | |
3568 | next = | |
3569 | (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm, | |
3570 | next, narg, args); | |
2dc2558e | 3571 | if (!next || (*PerlIOBase(f)->tab->Pushed) (aTHX_ f, mode, PerlIOArg, self) != 0) { |
14a5cf38 JH |
3572 | return NULL; |
3573 | } | |
3574 | } | |
3575 | else { | |
04892f78 | 3576 | PerlIO_funcs *tab = PerlIO_layer_fetch(aTHX_ layers, n - 1, PerlIO_default_btm()); |
14a5cf38 | 3577 | int init = 0; |
3b6c1aba | 3578 | if (*mode == IoTYPE_IMPLICIT) { |
14a5cf38 JH |
3579 | init = 1; |
3580 | /* | |
71200d45 | 3581 | * mode++; |
14a5cf38 JH |
3582 | */ |
3583 | } | |
67363c0d JH |
3584 | if (tab && tab->Open) |
3585 | f = (*tab->Open)(aTHX_ tab, layers, n - 1, mode, fd, imode, perm, | |
3586 | f, narg, args); | |
3587 | else | |
3588 | SETERRNO(EINVAL, LIB_INVARG); | |
14a5cf38 | 3589 | if (f) { |
22569500 | 3590 | if (PerlIO_push(aTHX_ f, self, mode, PerlIOArg) == 0) { |
b26b1ab5 NC |
3591 | /* |
3592 | * if push fails during open, open fails. close will pop us. | |