Various attempts at MSVC debug - not sure what has
[p5sagit/p5-mst-13.2.git] / ext / IO / IO.xs
CommitLineData
cf7fe8a2 1/*
2 * Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
3 * This program is free software; you can redistribute it and/or
4 * modify it under the same terms as Perl itself.
5 */
6
c5be433b 7#define PERL_NO_GET_CONTEXT
8add82fc 8#include "EXTERN.h"
760ac839 9#define PERLIO_NOT_STDIO 1
8add82fc 10#include "perl.h"
11#include "XSUB.h"
cf7fe8a2 12#include "poll.h"
8add82fc 13#ifdef I_UNISTD
14# include <unistd.h>
15#endif
cf7fe8a2 16#if defined(I_FCNTL) || defined(HAS_FCNTL)
760ac839 17# include <fcntl.h>
18#endif
8add82fc 19
2a0cf753 20#ifdef PerlIO
8add82fc 21typedef int SysRet;
760ac839 22typedef PerlIO * InputStream;
23typedef PerlIO * OutputStream;
2a0cf753 24#else
25#define PERLIO_IS_STDIO 1
26typedef int SysRet;
27typedef FILE * InputStream;
28typedef FILE * OutputStream;
29#endif
8add82fc 30
cceca5ed 31#define MY_start_subparse(fmt,flags) start_subparse(fmt,flags)
cf7fe8a2 32
33#ifndef gv_stashpvn
34#define gv_stashpvn(str,len,flags) gv_stashpv(str,flags)
35#endif
36
8add82fc 37static int
a1ea39dc 38not_here(char *s)
8add82fc 39{
40 croak("%s not implemented on this architecture", s);
41 return -1;
42}
43
cf7fe8a2 44
45#ifndef PerlIO
46#define PerlIO_fileno(f) fileno(f)
8add82fc 47#endif
cf7fe8a2 48
49static int
a1ea39dc 50io_blocking(InputStream f, int block)
cf7fe8a2 51{
52 int RETVAL;
53 if(!f) {
54 errno = EBADF;
55 return -1;
56 }
57#if defined(HAS_FCNTL)
58 RETVAL = fcntl(PerlIO_fileno(f), F_GETFL, 0);
59 if (RETVAL >= 0) {
60 int mode = RETVAL;
61#ifdef O_NONBLOCK
62 /* POSIX style */
63#if defined(O_NDELAY) && O_NDELAY != O_NONBLOCK
64 /* Ooops has O_NDELAY too - make sure we don't
6fd254a4 65 * get SysV behaviour by mistake. */
cf7fe8a2 66
6fd254a4 67 /* E.g. In UNICOS and UNICOS/mk a F_GETFL returns an O_NDELAY
68 * after a successful F_SETFL of an O_NONBLOCK. */
69 RETVAL = RETVAL & (O_NONBLOCK | O_NDELAY) ? 0 : 1;
70
71 if (block >= 0) {
72 if ((mode & O_NDELAY) || ((block == 0) && !(mode & O_NONBLOCK))) {
73 int ret;
74 mode = (mode & ~O_NDELAY) | O_NONBLOCK;
75 ret = fcntl(PerlIO_fileno(f),F_SETFL,mode);
76 if(ret < 0)
77 RETVAL = ret;
78 }
79 else
80 if ((mode & O_NDELAY) || ((block > 0) && (mode & O_NONBLOCK))) {
81 int ret;
82 mode &= ~(O_NONBLOCK | O_NDELAY);
83 ret = fcntl(PerlIO_fileno(f),F_SETFL,mode);
84 if(ret < 0)
85 RETVAL = ret;
86 }
cf7fe8a2 87 }
8add82fc 88#else
cf7fe8a2 89 /* Standard POSIX */
90 RETVAL = RETVAL & O_NONBLOCK ? 0 : 1;
91
92 if ((block == 0) && !(mode & O_NONBLOCK)) {
93 int ret;
94 mode |= O_NONBLOCK;
95 ret = fcntl(PerlIO_fileno(f),F_SETFL,mode);
96 if(ret < 0)
97 RETVAL = ret;
98 }
99 else if ((block > 0) && (mode & O_NONBLOCK)) {
100 int ret;
101 mode &= ~O_NONBLOCK;
102 ret = fcntl(PerlIO_fileno(f),F_SETFL,mode);
103 if(ret < 0)
104 RETVAL = ret;
105 }
106#endif
8add82fc 107#else
cf7fe8a2 108 /* Not POSIX - better have O_NDELAY or we can't cope.
109 * for BSD-ish machines this is an acceptable alternative
110 * for SysV we can't tell "would block" from EOF but that is
111 * the way SysV is...
112 */
113 RETVAL = RETVAL & O_NDELAY ? 0 : 1;
114
115 if ((block == 0) && !(mode & O_NDELAY)) {
116 int ret;
117 mode |= O_NDELAY;
118 ret = fcntl(PerlIO_fileno(f),F_SETFL,mode);
119 if(ret < 0)
120 RETVAL = ret;
121 }
122 else if ((block > 0) && (mode & O_NDELAY)) {
123 int ret;
124 mode &= ~O_NDELAY;
125 ret = fcntl(PerlIO_fileno(f),F_SETFL,mode);
126 if(ret < 0)
127 RETVAL = ret;
128 }
8add82fc 129#endif
cf7fe8a2 130 }
131 return RETVAL;
8add82fc 132#else
cf7fe8a2 133 return -1;
8add82fc 134#endif
8add82fc 135}
136
8add82fc 137MODULE = IO PACKAGE = IO::Seekable PREFIX = f
138
139SV *
140fgetpos(handle)
141 InputStream handle
142 CODE:
8add82fc 143 if (handle) {
144 Fpos_t pos;
a6a714bd 145 if (
2a0cf753 146#ifdef PerlIO
a6a714bd 147 PerlIO_getpos(handle, &pos)
2a0cf753 148#else
a6a714bd 149 fgetpos(handle, &pos)
2a0cf753 150#endif
a6a714bd 151 ) {
152 ST(0) = &PL_sv_undef;
153 } else {
154 ST(0) = sv_2mortal(newSVpv((char*)&pos, sizeof(Fpos_t)));
155 }
8add82fc 156 }
157 else {
a1ea39dc 158 ST(0) = &PL_sv_undef;
8add82fc 159 errno = EINVAL;
160 }
8add82fc 161
162SysRet
163fsetpos(handle, pos)
164 InputStream handle
165 SV * pos
166 CODE:
a1ea39dc 167 char *p;
168 STRLEN len;
169 if (handle && (p = SvPV(pos,len)) && len == sizeof(Fpos_t))
2a0cf753 170#ifdef PerlIO
a1ea39dc 171 RETVAL = PerlIO_setpos(handle, (Fpos_t*)p);
2a0cf753 172#else
a1ea39dc 173 RETVAL = fsetpos(handle, (Fpos_t*)p);
2a0cf753 174#endif
8add82fc 175 else {
176 RETVAL = -1;
177 errno = EINVAL;
178 }
8add82fc 179 OUTPUT:
180 RETVAL
181
182MODULE = IO PACKAGE = IO::File PREFIX = f
183
a375a877 184SV *
8add82fc 185new_tmpfile(packname = "IO::File")
186 char * packname
a375a877 187 PREINIT:
188 OutputStream fp;
189 GV *gv;
8add82fc 190 CODE:
2a0cf753 191#ifdef PerlIO
a375a877 192 fp = PerlIO_tmpfile();
2a0cf753 193#else
a375a877 194 fp = tmpfile();
2a0cf753 195#endif
a375a877 196 gv = (GV*)SvREFCNT_inc(newGVgen(packname));
197 hv_delete(GvSTASH(gv), GvNAME(gv), GvNAMELEN(gv), G_DISCARD);
198 if (do_open(gv, "+>&", 3, FALSE, 0, 0, fp)) {
6d5cdeed 199 ST(0) = sv_2mortal(newRV((SV*)gv));
a375a877 200 sv_bless(ST(0), gv_stashpv(packname, TRUE));
cf7fe8a2 201 SvREFCNT_dec(gv); /* undo increment in newRV() */
a375a877 202 }
203 else {
a1ea39dc 204 ST(0) = &PL_sv_undef;
a375a877 205 SvREFCNT_dec(gv);
206 }
8add82fc 207
cf7fe8a2 208MODULE = IO PACKAGE = IO::Poll
209
210void
211_poll(timeout,...)
212 int timeout;
213PPCODE:
214{
215#ifdef HAS_POLL
216 int nfd = (items - 1) / 2;
217 SV *tmpsv = NEWSV(999,nfd * sizeof(struct pollfd));
218 struct pollfd *fds = (struct pollfd *)SvPVX(tmpsv);
219 int i,j,ret;
220 for(i=1, j=0 ; j < nfd ; j++) {
221 fds[j].fd = SvIV(ST(i));
222 i++;
223 fds[j].events = SvIV(ST(i));
224 i++;
225 fds[j].revents = 0;
226 }
227 if((ret = poll(fds,nfd,timeout)) >= 0) {
228 for(i=1, j=0 ; j < nfd ; j++) {
229 sv_setiv(ST(i), fds[j].fd); i++;
230 sv_setiv(ST(i), fds[j].revents); i++;
231 }
232 }
233 SvREFCNT_dec(tmpsv);
234 XSRETURN_IV(ret);
235#else
236 not_here("IO::Poll::poll");
237#endif
238}
239
240MODULE = IO PACKAGE = IO::Handle PREFIX = io_
241
242void
243io_blocking(handle,blk=-1)
244 InputStream handle
245 int blk
246PROTOTYPE: $;$
247CODE:
248{
249 int ret = io_blocking(handle, items == 1 ? -1 : blk ? 1 : 0);
250 if(ret >= 0)
251 XSRETURN_IV(ret);
252 else
253 XSRETURN_UNDEF;
254}
255
8add82fc 256MODULE = IO PACKAGE = IO::Handle PREFIX = f
257
8add82fc 258
259int
260ungetc(handle, c)
261 InputStream handle
262 int c
263 CODE:
264 if (handle)
2a0cf753 265#ifdef PerlIO
760ac839 266 RETVAL = PerlIO_ungetc(handle, c);
2a0cf753 267#else
268 RETVAL = ungetc(c, handle);
269#endif
8add82fc 270 else {
271 RETVAL = -1;
272 errno = EINVAL;
273 }
274 OUTPUT:
275 RETVAL
276
277int
278ferror(handle)
279 InputStream handle
280 CODE:
281 if (handle)
2a0cf753 282#ifdef PerlIO
760ac839 283 RETVAL = PerlIO_error(handle);
2a0cf753 284#else
285 RETVAL = ferror(handle);
286#endif
287 else {
288 RETVAL = -1;
289 errno = EINVAL;
290 }
291 OUTPUT:
292 RETVAL
293
294int
295clearerr(handle)
296 InputStream handle
297 CODE:
298 if (handle) {
299#ifdef PerlIO
300 PerlIO_clearerr(handle);
301#else
302 clearerr(handle);
303#endif
304 RETVAL = 0;
305 }
8add82fc 306 else {
307 RETVAL = -1;
59629a13 308 errno = EINVAL;
309 }
310 OUTPUT:
311 RETVAL
312
313int
314untaint(handle)
315 SV * handle
316 CODE:
7a4c00b4 317#ifdef IOf_UNTAINT
59629a13 318 IO * io;
319 io = sv_2io(handle);
320 if (io) {
321 IoFLAGS(io) |= IOf_UNTAINT;
322 RETVAL = 0;
323 }
324 else {
7a4c00b4 325#endif
59629a13 326 RETVAL = -1;
8add82fc 327 errno = EINVAL;
7a4c00b4 328#ifdef IOf_UNTAINT
8add82fc 329 }
7a4c00b4 330#endif
8add82fc 331 OUTPUT:
332 RETVAL
333
334SysRet
335fflush(handle)
336 OutputStream handle
337 CODE:
338 if (handle)
2a0cf753 339#ifdef PerlIO
760ac839 340 RETVAL = PerlIO_flush(handle);
2a0cf753 341#else
342 RETVAL = Fflush(handle);
343#endif
8add82fc 344 else {
345 RETVAL = -1;
346 errno = EINVAL;
347 }
348 OUTPUT:
349 RETVAL
350
351void
352setbuf(handle, buf)
353 OutputStream handle
354 char * buf = SvPOK(ST(1)) ? sv_grow(ST(1), BUFSIZ) : 0;
355 CODE:
356 if (handle)
760ac839 357#ifdef PERLIO_IS_STDIO
8add82fc 358 setbuf(handle, buf);
760ac839 359#else
360 not_here("IO::Handle::setbuf");
361#endif
8add82fc 362
363SysRet
364setvbuf(handle, buf, type, size)
365 OutputStream handle
366 char * buf = SvPOK(ST(1)) ? sv_grow(ST(1), SvIV(ST(3))) : 0;
367 int type
368 int size
369 CODE:
1eeb0f31 370#if defined(PERLIO_IS_STDIO) && defined(_IOFBF) && defined(HAS_SETVBUF)
d924de76 371 if (!handle) /* Try input stream. */
372 handle = IoIFP(sv_2io(ST(0)));
8add82fc 373 if (handle)
374 RETVAL = setvbuf(handle, buf, type, size);
375 else {
376 RETVAL = -1;
377 errno = EINVAL;
378 }
379#else
61839fa9 380 RETVAL = (SysRet) not_here("IO::Handle::setvbuf");
760ac839 381#endif
8add82fc 382 OUTPUT:
383 RETVAL
384
385
cf7fe8a2 386SysRet
387fsync(handle)
388 OutputStream handle
389 CODE:
390#ifdef HAS_FSYNC
391 if(handle)
392 RETVAL = fsync(PerlIO_fileno(handle));
393 else {
394 RETVAL = -1;
395 errno = EINVAL;
396 }
397#else
398 RETVAL = (SysRet) not_here("IO::Handle::sync");
399#endif
400 OUTPUT:
401 RETVAL
402
403
404BOOT:
405{
406 HV *stash;
407 /*
408 * constant subs for IO::Poll
409 */
410 stash = gv_stashpvn("IO::Poll", 8, TRUE);
411#ifdef POLLIN
412 newCONSTSUB(stash,"POLLIN",newSViv(POLLIN));
413#endif
414#ifdef POLLPRI
415 newCONSTSUB(stash,"POLLPRI", newSViv(POLLPRI));
416#endif
417#ifdef POLLOUT
418 newCONSTSUB(stash,"POLLOUT", newSViv(POLLOUT));
419#endif
420#ifdef POLLRDNORM
421 newCONSTSUB(stash,"POLLRDNORM", newSViv(POLLRDNORM));
422#endif
423#ifdef POLLWRNORM
424 newCONSTSUB(stash,"POLLWRNORM", newSViv(POLLWRNORM));
425#endif
426#ifdef POLLRDBAND
427 newCONSTSUB(stash,"POLLRDBAND", newSViv(POLLRDBAND));
428#endif
429#ifdef POLLWRBAND
430 newCONSTSUB(stash,"POLLWRBAND", newSViv(POLLWRBAND));
431#endif
432#ifdef POLLNORM
433 newCONSTSUB(stash,"POLLNORM", newSViv(POLLNORM));
434#endif
435#ifdef POLLERR
436 newCONSTSUB(stash,"POLLERR", newSViv(POLLERR));
437#endif
438#ifdef POLLHUP
439 newCONSTSUB(stash,"POLLHUP", newSViv(POLLHUP));
440#endif
441#ifdef POLLNVAL
442 newCONSTSUB(stash,"POLLNVAL", newSViv(POLLNVAL));
443#endif
444 /*
445 * constant subs for IO::Handle
446 */
447 stash = gv_stashpvn("IO::Handle", 10, TRUE);
448#ifdef _IOFBF
449 newCONSTSUB(stash,"_IOFBF", newSViv(_IOFBF));
450#endif
451#ifdef _IOLBF
452 newCONSTSUB(stash,"_IOLBF", newSViv(_IOLBF));
453#endif
454#ifdef _IONBF
455 newCONSTSUB(stash,"_IONBF", newSViv(_IONBF));
456#endif
457#ifdef SEEK_SET
458 newCONSTSUB(stash,"SEEK_SET", newSViv(SEEK_SET));
459#endif
460#ifdef SEEK_CUR
461 newCONSTSUB(stash,"SEEK_CUR", newSViv(SEEK_CUR));
462#endif
463#ifdef SEEK_END
464 newCONSTSUB(stash,"SEEK_END", newSViv(SEEK_END));
465#endif
cf7fe8a2 466}