1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
|
/*
* Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
* This program is free software; you can redistribute it and/or
* modify it under the same terms as Perl itself.
*/
#define PERL_EXT_IO
#define PERL_NO_GET_CONTEXT
#include "EXTERN.h"
#define PERLIO_NOT_STDIO 1
#include "perl.h"
#include "XSUB.h"
#define NEED_newCONSTSUB
#define NEED_newSVpvn_flags
#include "ppport.h"
#include "poll.h"
#ifdef I_UNISTD
# include <unistd.h>
#endif
#if defined(I_FCNTL) || defined(HAS_FCNTL)
# include <fcntl.h>
#endif
#ifndef SIOCATMARK
# ifdef I_SYS_SOCKIO
# include <sys/sockio.h>
# endif
#endif
#ifdef PerlIO
#if defined(MACOS_TRADITIONAL) && defined(USE_SFIO)
#define PERLIO_IS_STDIO 1
#undef setbuf
#undef setvbuf
#define setvbuf _stdsetvbuf
#define setbuf(f,b) ( __sf_setbuf(f,b) )
#endif
typedef int SysRet;
typedef PerlIO * InputStream;
typedef PerlIO * OutputStream;
#else
#define PERLIO_IS_STDIO 1
typedef int SysRet;
typedef FILE * InputStream;
typedef FILE * OutputStream;
#endif
#define MY_start_subparse(fmt,flags) start_subparse(fmt,flags)
#ifndef __attribute__noreturn__
# define __attribute__noreturn__
#endif
#ifndef NORETURN_FUNCTION_END
# define NORETURN_FUNCTION_END /* NOT REACHED */ return 0
#endif
static int not_here(const char *s) __attribute__noreturn__;
static int
not_here(const char *s)
{
croak("%s not implemented on this architecture", s);
NORETURN_FUNCTION_END;
}
#ifndef PerlIO
#define PerlIO_fileno(f) fileno(f)
#endif
static int
io_blocking(pTHX_ InputStream f, int block)
{
int fd = -1;
if (!f) {
errno = EBADF;
return -1;
}
fd = PerlIO_fileno(f);
if (fd < 0) {
errno = EBADF;
return -1;
}
#if defined(HAS_FCNTL)
int RETVAL = fcntl(fd, F_GETFL, 0);
if (RETVAL >= 0) {
int mode = RETVAL;
int newmode = mode;
# ifdef O_NONBLOCK
/* POSIX style */
# ifndef O_NDELAY
# define O_NDELAY O_NONBLOCK
# endif
/* Note: UNICOS and UNICOS/mk a F_GETFL returns an O_NDELAY
* after a successful F_SETFL of an O_NONBLOCK. */
RETVAL = RETVAL & (O_NONBLOCK | O_NDELAY) ? 0 : 1;
if (block == 0) {
newmode &= ~O_NDELAY;
newmode |= O_NONBLOCK;
} else if (block > 0) {
newmode &= ~(O_NDELAY|O_NONBLOCK);
}
# else
/* Not POSIX - better have O_NDELAY or we can't cope.
* for BSD-ish machines this is an acceptable alternative
* for SysV we can't tell "would block" from EOF but that is
* the way SysV is...
*/
RETVAL = RETVAL & O_NDELAY ? 0 : 1;
if (block == 0) {
newmode |= O_NDELAY;
} else if (block > 0) {
newmode &= ~O_NDELAY;
}
# endif
if (newmode != mode) {
const int ret = fcntl(fd, F_SETFL, newmode);
if (ret < 0)
RETVAL = ret;
}
}
return RETVAL;
#elif defined(WIN32)
if (block >= 0) {
unsigned long flags = !block;
/* ioctl claims to take char* but really needs a u_long sized buffer */
if (ioctl(fd, FIONBIO, (char*)&flags) != 0)
return -1;
/* Win32 has no way to get the current blocking status of a socket.
* However, we don't want to just return undef, because there's no way
* to tell that the ioctl succeeded.
*/
return flags;
}
/* TODO: Perhaps set $! to ENOTSUP? */
return -1;
#else
return -1;
#endif
}
MODULE = IO PACKAGE = IO::Seekable PREFIX = f
void
fgetpos(handle)
InputStream handle
CODE:
if (handle) {
#ifdef PerlIO
#if PERL_VERSION_LT(5,8,0)
Fpos_t pos;
ST(0) = sv_newmortal();
if (PerlIO_getpos(handle, &pos) != 0) {
ST(0) = &PL_sv_undef;
}
else {
sv_setpvn(ST(0), (char *)&pos, sizeof(Fpos_t));
}
#else
ST(0) = sv_newmortal();
if (PerlIO_getpos(handle, ST(0)) != 0) {
ST(0) = &PL_sv_undef;
}
#endif
#else
Fpos_t pos;
if (fgetpos(handle, &pos)) {
ST(0) = &PL_sv_undef;
} else {
# if PERL_VERSION_GE(5,11,0)
ST(0) = newSVpvn_flags((char*)&pos, sizeof(Fpos_t), SVs_TEMP);
# else
ST(0) = sv_2mortal(newSVpvn((char*)&pos, sizeof(Fpos_t)));
# endif
}
#endif
}
else {
errno = EINVAL;
ST(0) = &PL_sv_undef;
}
SysRet
fsetpos(handle, pos)
InputStream handle
SV * pos
CODE:
if (handle) {
#ifdef PerlIO
#if PERL_VERSION_LT(5,8,0)
char *p;
STRLEN len;
if (SvOK(pos) && (p = SvPV(pos,len)) && len == sizeof(Fpos_t)) {
RETVAL = PerlIO_setpos(handle, (Fpos_t*)p);
}
else {
RETVAL = -1;
errno = EINVAL;
}
#else
RETVAL = PerlIO_setpos(handle, pos);
#endif
#else
char *p;
STRLEN len;
if ((p = SvPV(pos,len)) && len == sizeof(Fpos_t)) {
RETVAL = fsetpos(handle, (Fpos_t*)p);
}
else {
RETVAL = -1;
errno = EINVAL;
}
#endif
}
else {
RETVAL = -1;
errno = EINVAL;
}
OUTPUT:
RETVAL
MODULE = IO PACKAGE = IO::File PREFIX = f
void
new_tmpfile(packname = "IO::File")
const char * packname
PREINIT:
OutputStream fp;
GV *gv;
CODE:
#ifdef PerlIO
fp = PerlIO_tmpfile();
#else
fp = tmpfile();
#endif
gv = (GV*)SvREFCNT_inc(newGVgen(packname));
if (gv)
(void) hv_delete(GvSTASH(gv), GvNAME(gv), GvNAMELEN(gv), G_DISCARD);
if (gv && do_open(gv, "+>&", 3, FALSE, 0, 0, fp)) {
ST(0) = sv_2mortal(newRV_inc((SV*)gv));
sv_bless(ST(0), gv_stashpv(packname, TRUE));
SvREFCNT_dec(gv); /* undo increment in newRV() */
}
else {
ST(0) = &PL_sv_undef;
SvREFCNT_dec(gv);
}
MODULE = IO PACKAGE = IO::Poll
void
_poll(timeout,...)
int timeout;
PPCODE:
{
#ifdef HAS_POLL
const int nfd = (items - 1) / 2;
SV *tmpsv = sv_2mortal(NEWSV(999,nfd * sizeof(struct pollfd)));
/* We should pass _some_ valid pointer even if nfd is zero, but it
* doesn't matter what it is, since we're telling it to not check any fds.
*/
struct pollfd *fds = nfd ? (struct pollfd *)SvPVX(tmpsv) : (struct pollfd *)tmpsv;
int i,j,ret;
for(i=1, j=0 ; j < nfd ; j++) {
fds[j].fd = SvIV(ST(i));
i++;
fds[j].events = (short)SvIV(ST(i));
i++;
fds[j].revents = 0;
}
if((ret = poll(fds,nfd,timeout)) >= 0) {
for(i=1, j=0 ; j < nfd ; j++) {
sv_setiv(ST(i), fds[j].fd); i++;
sv_setiv(ST(i), fds[j].revents); i++;
}
}
XSRETURN_IV(ret);
#else
not_here("IO::Poll::poll");
#endif
}
MODULE = IO PACKAGE = IO::Handle PREFIX = io_
void
io_blocking(handle,blk=-1)
InputStream handle
int blk
PROTOTYPE: $;$
CODE:
{
const int ret = io_blocking(aTHX_ handle, items == 1 ? -1 : blk ? 1 : 0);
if(ret >= 0)
XSRETURN_IV(ret);
else
XSRETURN_UNDEF;
}
MODULE = IO PACKAGE = IO::Handle PREFIX = f
int
ungetc(handle, c)
InputStream handle
SV * c
CODE:
if (handle) {
#ifdef PerlIO
UV v;
if ((SvIOK_notUV(c) && SvIV(c) < 0) || (SvNOK(c) && SvNV(c) < 0.0))
croak("Negative character number in ungetc()");
v = SvUV(c);
if (UVCHR_IS_INVARIANT(v) || (v <= 0xFF && !PerlIO_isutf8(handle)))
RETVAL = PerlIO_ungetc(handle, (int)v);
else {
U8 buf[UTF8_MAXBYTES + 1], *end;
Size_t len;
if (!PerlIO_isutf8(handle))
croak("Wide character number in ungetc()");
/* This doesn't warn for non-chars, surrogate, and
* above-Unicodes */
end = uvchr_to_utf8_flags(buf, v, 0);
len = end - buf;
if ((Size_t)PerlIO_unread(handle, &buf, len) == len)
XSRETURN_UV(v);
else
RETVAL = EOF;
}
#else
RETVAL = ungetc((int)SvIV(c), handle);
#endif
}
else {
RETVAL = -1;
errno = EINVAL;
}
OUTPUT:
RETVAL
int
ferror(handle)
SV * handle
PREINIT:
IO *io = sv_2io(handle);
InputStream in = IoIFP(io);
OutputStream out = IoOFP(io);
CODE:
if (in)
#ifdef PerlIO
RETVAL = PerlIO_error(in) || (out && in != out && PerlIO_error(out));
#else
RETVAL = ferror(in) || (out && in != out && ferror(out));
#endif
else {
RETVAL = -1;
errno = EINVAL;
}
OUTPUT:
RETVAL
int
clearerr(handle)
SV * handle
PREINIT:
IO *io = sv_2io(handle);
InputStream in = IoIFP(io);
OutputStream out = IoOFP(io);
CODE:
if (handle) {
#ifdef PerlIO
PerlIO_clearerr(in);
if (in != out)
PerlIO_clearerr(out);
#else
clearerr(in);
if (in != out)
clearerr(out);
#endif
RETVAL = 0;
}
else {
RETVAL = -1;
errno = EINVAL;
}
OUTPUT:
RETVAL
int
untaint(handle)
SV * handle
CODE:
#ifdef IOf_UNTAINT
IO * io;
io = sv_2io(handle);
if (io) {
IoFLAGS(io) |= IOf_UNTAINT;
RETVAL = 0;
}
else {
#endif
RETVAL = -1;
errno = EINVAL;
#ifdef IOf_UNTAINT
}
#endif
OUTPUT:
RETVAL
SysRet
fflush(handle)
OutputStream handle
CODE:
if (handle)
#ifdef PerlIO
RETVAL = PerlIO_flush(handle);
#else
RETVAL = Fflush(handle);
#endif
else {
RETVAL = -1;
errno = EINVAL;
}
OUTPUT:
RETVAL
void
setbuf(handle, ...)
OutputStream handle
CODE:
if (handle)
#ifdef PERLIO_IS_STDIO
{
char *buf = items == 2 && SvPOK(ST(1)) ?
sv_grow(ST(1), BUFSIZ) : 0;
setbuf(handle, buf);
}
#else
not_here("IO::Handle::setbuf");
#endif
SysRet
setvbuf(...)
CODE:
if (items != 4)
Perl_croak(aTHX_ "Usage: IO::Handle::setvbuf(handle, buf, type, size)");
#if defined(PERLIO_IS_STDIO) && defined(_IOFBF) && defined(HAS_SETVBUF)
{
OutputStream handle = 0;
char * buf = SvPOK(ST(1)) ? sv_grow(ST(1), SvIV(ST(3))) : 0;
int type;
int size;
if (items == 4) {
handle = IoOFP(sv_2io(ST(0)));
buf = SvPOK(ST(1)) ? sv_grow(ST(1), SvIV(ST(3))) : 0;
type = (int)SvIV(ST(2));
size = (int)SvIV(ST(3));
}
if (!handle) /* Try input stream. */
handle = IoIFP(sv_2io(ST(0)));
if (items == 4 && handle)
RETVAL = setvbuf(handle, buf, type, size);
else {
RETVAL = -1;
errno = EINVAL;
}
}
#else
RETVAL = (SysRet) not_here("IO::Handle::setvbuf");
#endif
OUTPUT:
RETVAL
SysRet
fsync(arg)
SV * arg
PREINIT:
OutputStream handle = NULL;
CODE:
#if defined(HAS_FSYNC) || defined(_WIN32)
handle = IoOFP(sv_2io(arg));
if (!handle)
handle = IoIFP(sv_2io(arg));
if (handle) {
int fd = PerlIO_fileno(handle);
if (fd >= 0) {
# ifdef _WIN32
RETVAL = _commit(fd);
# else
RETVAL = fsync(fd);
# endif
} else {
RETVAL = -1;
errno = EBADF;
}
} else {
RETVAL = -1;
errno = EINVAL;
}
#else
RETVAL = (SysRet) not_here("IO::Handle::sync");
#endif
OUTPUT:
RETVAL
# To make these two work correctly with the open pragma, the readline op
# needs to pick up the lexical hints at the method's callsite. This doesn't
# work in pure Perl, because the hints are read from the most recent nextstate,
# and the nextstate of the Perl subroutines show *here* hold the lexical state
# for the IO package.
#
# There's no clean way to implement this - this approach, while complex, seems
# to be the most robust, and avoids manipulating external state (ie op checkers)
#
# sub getline {
# @_ == 1 or croak 'usage: $io->getline()';
# my $this = shift;
# return scalar <$this>;
# }
#
# sub getlines {
# @_ == 1 or croak 'usage: $io->getlines()';
# wantarray or
# croak 'Can\'t call $io->getlines in a scalar context, use $io->getline';
# my $this = shift;
# return <$this>;
# }
# If this is deprecated, should it warn, and should it be removed at some point?
# *gets = \&getline; # deprecated
void
getlines(...)
ALIAS:
IO::Handle::getline = 1
IO::Handle::gets = 2
INIT:
UNOP myop;
SV *io;
OP *was = PL_op;
PPCODE:
if (items != 1)
Perl_croak(aTHX_ "usage: $io->%s()", ix ? "getline" : "getlines");
if (!ix && GIMME_V != G_LIST)
Perl_croak(aTHX_ "Can't call $io->getlines in a scalar context, use $io->getline");
Zero(&myop, 1, UNOP);
#if PERL_VERSION_GE(5,39,6)
myop.op_flags = (ix ? (OPf_WANT_SCALAR | OPf_STACKED) : OPf_WANT_LIST);
#else
myop.op_flags = (ix ? OPf_WANT_SCALAR : OPf_WANT_LIST ) | OPf_STACKED;
#endif
myop.op_ppaddr = PL_ppaddr[OP_READLINE];
myop.op_type = OP_READLINE;
myop.op_next = NULL; /* return from the runops loop below after 1 op */
/* Sigh, because pp_readline calls pp_rv2gv, and *it* has this wonderful
state check for PL_op->op_type == OP_READLINE */
PL_op = (OP *) &myop;
io = ST(0);
/* For scalar functions (getline/gets), provide a target on the stack,
* as we don't have a pad entry. */
#if PERL_VERSION_GE(5,39,6)
if (ix)
#endif
PUSHs(sv_newmortal());
XPUSHs(io);
PUTBACK;
/* call a new runops loop for just the one op rather than just calling
* pp_readline directly, as the former will handle the call coming
* from a ref-counted stack */
/* And effectively we get away with tail calling pp_readline, as it stacks
exactly the return value(s) we need to return. */
CALLRUNOPS(aTHX);
PL_op = was;
/* And we don't want to reach the line
PL_stack_sp = sp;
that xsubpp adds after our body becase PL_stack_sp is correct, not sp */
return;
MODULE = IO PACKAGE = IO::Socket
SysRet
sockatmark (sock)
InputStream sock
PROTOTYPE: $
PREINIT:
int fd;
CODE:
fd = PerlIO_fileno(sock);
if (fd < 0) {
errno = EBADF;
RETVAL = -1;
}
#ifdef HAS_SOCKATMARK
else {
RETVAL = sockatmark(fd);
}
#else
else {
int flag = 0;
# ifdef SIOCATMARK
# if defined(NETWARE) || defined(WIN32)
if (ioctl(fd, SIOCATMARK, (char*)&flag) != 0)
# else
if (ioctl(fd, SIOCATMARK, &flag) != 0)
# endif
XSRETURN_UNDEF;
# else
not_here("IO::Socket::atmark");
# endif
RETVAL = flag;
}
#endif
OUTPUT:
RETVAL
BOOT:
{
HV *stash;
/*
* constant subs for IO::Poll
*/
stash = gv_stashpvn("IO::Poll", 8, TRUE);
#ifdef POLLIN
newCONSTSUB(stash,"POLLIN",newSViv(POLLIN));
#endif
#ifdef POLLPRI
newCONSTSUB(stash,"POLLPRI", newSViv(POLLPRI));
#endif
#ifdef POLLOUT
newCONSTSUB(stash,"POLLOUT", newSViv(POLLOUT));
#endif
#ifdef POLLRDNORM
newCONSTSUB(stash,"POLLRDNORM", newSViv(POLLRDNORM));
#endif
#ifdef POLLWRNORM
newCONSTSUB(stash,"POLLWRNORM", newSViv(POLLWRNORM));
#endif
#ifdef POLLRDBAND
newCONSTSUB(stash,"POLLRDBAND", newSViv(POLLRDBAND));
#endif
#ifdef POLLWRBAND
newCONSTSUB(stash,"POLLWRBAND", newSViv(POLLWRBAND));
#endif
#ifdef POLLNORM
newCONSTSUB(stash,"POLLNORM", newSViv(POLLNORM));
#endif
#ifdef POLLERR
newCONSTSUB(stash,"POLLERR", newSViv(POLLERR));
#endif
#ifdef POLLHUP
newCONSTSUB(stash,"POLLHUP", newSViv(POLLHUP));
#endif
#ifdef POLLNVAL
newCONSTSUB(stash,"POLLNVAL", newSViv(POLLNVAL));
#endif
/*
* constant subs for IO::Handle
*/
stash = gv_stashpvn("IO::Handle", 10, TRUE);
#ifdef _IOFBF
newCONSTSUB(stash,"_IOFBF", newSViv(_IOFBF));
#endif
#ifdef _IOLBF
newCONSTSUB(stash,"_IOLBF", newSViv(_IOLBF));
#endif
#ifdef _IONBF
newCONSTSUB(stash,"_IONBF", newSViv(_IONBF));
#endif
#ifdef SEEK_SET
newCONSTSUB(stash,"SEEK_SET", newSViv(SEEK_SET));
#endif
#ifdef SEEK_CUR
newCONSTSUB(stash,"SEEK_CUR", newSViv(SEEK_CUR));
#endif
#ifdef SEEK_END
newCONSTSUB(stash,"SEEK_END", newSViv(SEEK_END));
#endif
}
|