ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/AIO.xs
(Generate patch)

Comparing IO-AIO/AIO.xs (file contents):
Revision 1.151 by root, Tue Jul 14 00:13:36 2009 UTC vs.
Revision 1.165 by root, Sun May 9 20:42:55 2010 UTC

11#include <stddef.h> 11#include <stddef.h>
12#include <stdlib.h> 12#include <stdlib.h>
13#include <errno.h> 13#include <errno.h>
14#include <sys/types.h> 14#include <sys/types.h>
15#include <sys/stat.h> 15#include <sys/stat.h>
16#include <sys/statvfs.h>
16#include <limits.h> 17#include <limits.h>
17#include <fcntl.h> 18#include <fcntl.h>
18#include <sched.h> 19#include <sched.h>
20
21#if _POSIX_MEMLOCK || _POSIX_MAPPED_FILES
22# include <sys/mman.h>
23#endif
19 24
20/* perl namespace pollution */ 25/* perl namespace pollution */
21#undef VERSION 26#undef VERSION
22 27
23#ifdef _WIN32 28#ifdef _WIN32
99#define expect_false(expr) expect ((expr) != 0, 0) 104#define expect_false(expr) expect ((expr) != 0, 0)
100#define expect_true(expr) expect ((expr) != 0, 1) 105#define expect_true(expr) expect ((expr) != 0, 1)
101 106
102/*****************************************************************************/ 107/*****************************************************************************/
103 108
104static HV *stash;
105typedef SV SV8; /* byte-sv, used for argument-checking */ 109typedef SV SV8; /* byte-sv, used for argument-checking */
106typedef int aio_rfd; /* read file desriptor */ 110typedef int aio_rfd; /* read file desriptor */
107typedef int aio_wfd; /* write file descriptor */ 111typedef int aio_wfd; /* write file descriptor */
108 112
109#define AIO_REQ_KLASS "IO::AIO::REQ" 113static HV *aio_stash, *aio_req_stash, *aio_grp_stash;
110#define AIO_GRP_KLASS "IO::AIO::GRP"
111 114
112#define EIO_REQ_MEMBERS \ 115#define EIO_REQ_MEMBERS \
113 SV *callback; \ 116 SV *callback; \
114 SV *sv1, *sv2; \ 117 SV *sv1, *sv2; \
115 STRLEN stroffset; \ 118 STRLEN stroffset; \
121 124
122#ifndef POSIX_FADV_NORMAL 125#ifndef POSIX_FADV_NORMAL
123# define POSIX_FADV_NORMAL 0 126# define POSIX_FADV_NORMAL 0
124# define NO_FADVISE 1 127# define NO_FADVISE 1
125#endif 128#endif
126
127#ifndef POSIX_FADV_SEQUENTIAL 129#ifndef POSIX_FADV_SEQUENTIAL
128# define POSIX_FADV_SEQUENTIAL 0 130# define POSIX_FADV_SEQUENTIAL 0
129#endif 131#endif
130
131#ifndef POSIX_FADV_RANDOM 132#ifndef POSIX_FADV_RANDOM
132# define POSIX_FADV_RANDOM 0 133# define POSIX_FADV_RANDOM 0
133#endif 134#endif
134
135#ifndef POSIX_FADV_NOREUSE 135#ifndef POSIX_FADV_NOREUSE
136# define POSIX_FADV_NOREUSE 0 136# define POSIX_FADV_NOREUSE 0
137#endif 137#endif
138
139#ifndef POSIX_FADV_WILLNEED 138#ifndef POSIX_FADV_WILLNEED
140# define POSIX_FADV_WILLNEED 0 139# define POSIX_FADV_WILLNEED 0
141#endif 140#endif
142
143#ifndef POSIX_FADV_DONTNEED 141#ifndef POSIX_FADV_DONTNEED
144# define POSIX_FADV_DONTNEED 0 142# define POSIX_FADV_DONTNEED 0
143#endif
144
145#ifndef ST_NODEV
146# define ST_NODEV 0
147#endif
148#ifndef ST_NOEXEC
149# define ST_NOEXEC 0
150#endif
151#ifndef ST_SYNCHRONOUS
152# define ST_SYNCHRONOUS 0
153#endif
154#ifndef ST_MANDLOCK
155# define ST_MANDLOCK 0
156#endif
157#ifndef ST_WRITE
158# define ST_WRITE 0
159#endif
160#ifndef ST_APPEND
161# define ST_APPEND 0
162#endif
163#ifndef ST_IMMUTABLE
164# define ST_IMMUTABLE 0
165#endif
166#ifndef ST_NOATIME
167# define ST_NOATIME 0
168#endif
169#ifndef ST_NODIRATIME
170# define ST_NODIRATIME 0
171#endif
172#ifndef ST_RELATIME
173# define ST_RELATIME 0
174#endif
175
176#ifndef MCL_CURRENT
177# define MCL_CURRENT 0
178#endif
179#ifndef MCL_FUTURE
180# define MCL_FUTURE 0
181#endif
182
183#ifndef MAP_ANONYMOUS
184# ifdef MAP_ANON
185# define MAP_ANONYMOUS MAP_ANON
186# else
187# define MAP_ANONYMOUS MAP_FIXED /* and hope this fails */
188# endif
189#endif
190#ifndef MAP_HUGETLB
191# define MAP_HUGETLB 0
192#endif
193#ifndef MAP_LOCKED
194# define MAP_LOCKED 0
195#endif
196#ifndef MAP_NORESERVE
197# define MAP_NORESERVE 0
198#endif
199#ifndef MAP_POPULATE
200# define MAP_POPULATE 0
201#endif
202#ifndef MAP_NONBLOCK
203# define MAP_NONBLOCK 0
204#endif
205
206#ifndef PAGESIZE
207# define PAGESIZE sysconf (_SC_PAGESIZE)
145#endif 208#endif
146 209
147static int req_invoke (eio_req *req); 210static int req_invoke (eio_req *req);
148#define EIO_FINISH(req) req_invoke (req) 211#define EIO_FINISH(req) req_invoke (req)
149static void req_destroy (eio_req *grp); 212static void req_destroy (eio_req *grp);
160 223
161static SV *on_next_submit; 224static SV *on_next_submit;
162static int next_pri = EIO_PRI_DEFAULT; 225static int next_pri = EIO_PRI_DEFAULT;
163static int max_outstanding; 226static int max_outstanding;
164 227
165static int respipe_osf [2], respipe [2] = { -1, -1 }; 228static s_epipe respipe;
166 229
167static void req_destroy (aio_req req); 230static void req_destroy (aio_req req);
168static void req_cancel (aio_req req); 231static void req_cancel (aio_req req);
169 232
170static void want_poll (void) 233static void want_poll (void)
171{ 234{
172 /* write a dummy byte to the pipe so fh becomes ready */ 235 /* write a dummy byte to the pipe so fh becomes ready */
173 respipe_write (respipe_osf [1], (const void *)&respipe_osf, 1); 236 s_epipe_signal (&respipe);
174} 237}
175 238
176static void done_poll (void) 239static void done_poll (void)
177{ 240{
178 /* read any signals sent by the worker threads */ 241 /* read any signals sent by the worker threads */
179 char buf [4]; 242 s_epipe_drain (&respipe);
180 while (respipe_read (respipe [0], buf, 4) == 4)
181 ;
182} 243}
183 244
184/* must be called at most once */ 245/* must be called at most once */
185static SV *req_sv (aio_req req, const char *klass) 246static SV *req_sv (aio_req req, HV *stash)
186{ 247{
187 if (!req->self) 248 if (!req->self)
188 { 249 {
189 req->self = (SV *)newHV (); 250 req->self = (SV *)newHV ();
190 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0); 251 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0);
191 } 252 }
192 253
193 return sv_2mortal (sv_bless (newRV_inc (req->self), gv_stashpv (klass, 1))); 254 return sv_2mortal (sv_bless (newRV_inc (req->self), stash));
194} 255}
195 256
196static aio_req SvAIO_REQ (SV *sv) 257static aio_req SvAIO_REQ (SV *sv)
197{ 258{
198 MAGIC *mg; 259 MAGIC *mg;
199 260
200 if (!sv_derived_from (sv, AIO_REQ_KLASS) || !SvROK (sv)) 261 if (!SvROK (sv)
262 || (SvSTASH (SvRV (sv)) != aio_grp_stash
263 && SvSTASH (SvRV (sv)) != aio_req_stash
264 && !sv_derived_from (sv, "IO::AIO::REQ")))
201 croak ("object of class " AIO_REQ_KLASS " expected"); 265 croak ("object of class IO::AIO::REQ expected");
202 266
203 mg = mg_find (SvRV (sv), PERL_MAGIC_ext); 267 mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
204 268
205 return mg ? (aio_req)mg->mg_ptr : 0; 269 return mg ? (aio_req)mg->mg_ptr : 0;
206} 270}
212 dSP; 276 dSP;
213 277
214 ENTER; 278 ENTER;
215 SAVETMPS; 279 SAVETMPS;
216 PUSHMARK (SP); 280 PUSHMARK (SP);
217 XPUSHs (req_sv (grp, AIO_GRP_KLASS)); 281 XPUSHs (req_sv (grp, aio_grp_stash));
218 PUTBACK; 282 PUTBACK;
219 call_sv (grp->sv2, G_VOID | G_EVAL | G_KEEPERR); 283 call_sv (grp->sv2, G_VOID | G_EVAL | G_KEEPERR);
220 SPAGAIN; 284 SPAGAIN;
221 FREETMPS; 285 FREETMPS;
222 LEAVE; 286 LEAVE;
247 if (req->flags & FLAG_SV2_RO_OFF) 311 if (req->flags & FLAG_SV2_RO_OFF)
248 SvREADONLY_off (req->sv2); 312 SvREADONLY_off (req->sv2);
249 313
250 if (!EIO_CANCELLED (req) && req->callback) 314 if (!EIO_CANCELLED (req) && req->callback)
251 { 315 {
316 static SV *sv_result_cache; /* caches the result integer SV */
317 SV *sv_result;
318
252 ENTER; 319 ENTER;
253 SAVETMPS; 320 SAVETMPS;
254 PUSHMARK (SP); 321 PUSHMARK (SP);
255 EXTEND (SP, 1); 322 EXTEND (SP, 1);
323
324 /* do not recreate the result IV from scratch each time */
325 if (expect_true (sv_result_cache))
326 {
327 sv_result = sv_result_cache; sv_result_cache = 0;
328 SvIV_set (sv_result, req->result);
329 }
330 else
331 {
332 sv_result = newSViv (req->result);
333 SvREADONLY_on (sv_result);
334 }
256 335
257 switch (req->type) 336 switch (req->type)
258 { 337 {
259 case EIO_READDIR: 338 case EIO_READDIR:
260 { 339 {
328 int flags = req->int1 & (O_RDONLY | O_WRONLY | O_RDWR); 407 int flags = req->int1 & (O_RDONLY | O_WRONLY | O_RDWR);
329 char sym [64]; 408 char sym [64];
330 int symlen; 409 int symlen;
331 410
332 symlen = snprintf (sym, sizeof (sym), "fd#%d", (int)req->result); 411 symlen = snprintf (sym, sizeof (sym), "fd#%d", (int)req->result);
333 gv_init (gv, stash, sym, symlen, 0); 412 gv_init (gv, aio_stash, sym, symlen, 0);
334 413
335 symlen = snprintf ( 414 symlen = snprintf (
336 sym, 415 sym,
337 sizeof (sym), 416 sizeof (sym),
338 "%s&=%d", 417 "%s&=%d",
346 425
347 PUSHs (fh); 426 PUSHs (fh);
348 } 427 }
349 break; 428 break;
350 429
430 case EIO_STATVFS:
431 case EIO_FSTATVFS:
432 {
433 SV *rv = &PL_sv_undef;
434
435 if (req->result >= 0)
436 {
437 EIO_STRUCT_STATVFS *f = EIO_STATVFS_BUF (req);
438 HV *hv = newHV ();
439
440 rv = sv_2mortal (newRV_noinc ((SV *)hv));
441
442 hv_store (hv, "bsize" , sizeof ("bsize" ) - 1, newSVval64 (f->f_bsize ), 0);
443 hv_store (hv, "frsize" , sizeof ("frsize" ) - 1, newSVval64 (f->f_frsize ), 0);
444 hv_store (hv, "blocks" , sizeof ("blocks" ) - 1, newSVval64 (f->f_blocks ), 0);
445 hv_store (hv, "bfree" , sizeof ("bfree" ) - 1, newSVval64 (f->f_bfree ), 0);
446 hv_store (hv, "bavail" , sizeof ("bavail" ) - 1, newSVval64 (f->f_bavail ), 0);
447 hv_store (hv, "files" , sizeof ("files" ) - 1, newSVval64 (f->f_files ), 0);
448 hv_store (hv, "ffree" , sizeof ("ffree" ) - 1, newSVval64 (f->f_ffree ), 0);
449 hv_store (hv, "favail" , sizeof ("favail" ) - 1, newSVval64 (f->f_favail ), 0);
450 hv_store (hv, "fsid" , sizeof ("fsid" ) - 1, newSVval64 (f->f_fsid ), 0);
451 hv_store (hv, "flag" , sizeof ("flag" ) - 1, newSVval64 (f->f_flag ), 0);
452 hv_store (hv, "namemax", sizeof ("namemax") - 1, newSVval64 (f->f_namemax), 0);
453 }
454
455 PUSHs (rv);
456 }
457
458 break;
459
351 case EIO_GROUP: 460 case EIO_GROUP:
352 req->int1 = 2; /* mark group as finished */ 461 req->int1 = 2; /* mark group as finished */
353 462
354 if (req->sv1) 463 if (req->sv1)
355 { 464 {
375 case EIO_LSTAT: 484 case EIO_LSTAT:
376 case EIO_FSTAT: 485 case EIO_FSTAT:
377 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT; 486 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT;
378 PL_laststatval = req->result; 487 PL_laststatval = req->result;
379 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2); 488 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2);
380 PUSHs (sv_2mortal (newSViv (req->result))); 489 PUSHs (sv_result);
381 break; 490 break;
382 491
383 case EIO_READ: 492 case EIO_READ:
384 { 493 {
385 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0)); 494 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0));
386 *SvEND (req->sv2) = 0; 495 *SvEND (req->sv2) = 0;
387 SvPOK_only (req->sv2); 496 SvPOK_only (req->sv2);
388 SvSETMAGIC (req->sv2); 497 SvSETMAGIC (req->sv2);
389 PUSHs (sv_2mortal (newSViv (req->result))); 498 PUSHs (sv_result);
390 } 499 }
391 break; 500 break;
392 501
393 case EIO_DUP2: 502 case EIO_DUP2:
394 if (req->result > 0) 503 if (req->result > 0)
395 req->result = 0; 504 SvIV_set (sv_result, 0);
396 /* FALLTHROUGH */ 505 /* FALLTHROUGH */
397 506
398 default: 507 default:
399 PUSHs (sv_2mortal (newSViv (req->result))); 508 PUSHs (sv_result);
400 break; 509 break;
401 } 510 }
402 511
403 errno = req->errorno; 512 errno = req->errorno;
404 513
405 PUTBACK; 514 PUTBACK;
406 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD); 515 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD);
407 SPAGAIN; 516 SPAGAIN;
517
518 if (expect_false (SvREFCNT (sv_result) != 1 || sv_result_cache))
519 SvREFCNT_dec (sv_result);
520 else
521 sv_result_cache = sv_result;
408 522
409 FREETMPS; 523 FREETMPS;
410 LEAVE; 524 LEAVE;
411 525
412 PUTBACK; 526 PUTBACK;
441 grp->sv2 = 0; 555 grp->sv2 = 0;
442 556
443 eio_grp_cancel (grp); 557 eio_grp_cancel (grp);
444} 558}
445 559
446#ifdef USE_SOCKETS_AS_HANDLES
447# define TO_SOCKET(x) (win32_get_osfhandle (x))
448#else
449# define TO_SOCKET(x) (x)
450#endif
451
452static void 560static void
453create_respipe (void) 561create_respipe (void)
454{ 562{
455 int old_readfd = respipe [0];
456
457 if (respipe [1] >= 0)
458 respipe_close (TO_SOCKET (respipe [1]));
459
460#ifdef _WIN32
461 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, respipe))
462#else
463 if (pipe (respipe)) 563 if (s_epipe_renew (&respipe))
464#endif
465 croak ("unable to initialize result pipe"); 564 croak ("IO::AIO: unable to initialize result pipe");
466
467 if (old_readfd >= 0)
468 {
469 if (dup2 (TO_SOCKET (respipe [0]), TO_SOCKET (old_readfd)) < 0)
470 croak ("unable to initialize result pipe(2)");
471
472 respipe_close (respipe [0]);
473 respipe [0] = old_readfd;
474 }
475
476#ifdef _WIN32
477 int arg = 1;
478 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
479 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
480#else
481 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
482 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
483#endif
484 croak ("unable to initialize result pipe(3)");
485
486 respipe_osf [0] = TO_SOCKET (respipe [0]);
487 respipe_osf [1] = TO_SOCKET (respipe [1]);
488} 565}
489 566
490static void poll_wait (void) 567static void poll_wait (void)
491{ 568{
492 fd_set rfd;
493
494 while (eio_nreqs ()) 569 while (eio_nreqs ())
495 { 570 {
496 int size; 571 int size;
497 572
498 X_LOCK (reslock); 573 X_LOCK (reslock);
502 if (size) 577 if (size)
503 return; 578 return;
504 579
505 etp_maybe_start_thread (); 580 etp_maybe_start_thread ();
506 581
507 FD_ZERO (&rfd); 582 s_epipe_wait (&respipe);
508 FD_SET (respipe [0], &rfd);
509
510 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
511 } 583 }
512} 584}
513 585
514static int poll_cb (void) 586static int poll_cb (void)
515{ 587{
530static void atfork_child (void) 602static void atfork_child (void)
531{ 603{
532 create_respipe (); 604 create_respipe ();
533} 605}
534 606
607/*****************************************************************************/
608
609#if !_POSIX_MAPPED_FILES
610# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
611# define munmap(addr,length) (errno = ENOSYS, -1)
612#endif
613
614#define MMAP_MAGIC PERL_MAGIC_ext
615
616static int
617mmap_free (pTHX_ SV *sv, MAGIC *mg)
618{
619 int old_errno = errno;
620 munmap (mg->mg_ptr, (size_t)mg->mg_obj);
621 errno = old_errno;
622
623 mg->mg_obj = 0; /* just in case */
624
625 SvREADONLY_off (sv);
626 SvCUR_set (sv, 0);
627 SvLEN_set (sv, 0);
628 SvPVX (sv) = 0;
629 SvOK_off (sv);
630
631 return 0;
632}
633
634static MGVTBL mmap_vtbl = {
635 0, 0, 0, 0, mmap_free
636};
637
638/*****************************************************************************/
639
535static SV * 640static SV *
536get_cb (SV *cb_sv) 641get_cb (SV *cb_sv)
537{ 642{
538 HV *st; 643 SvGETMAGIC (cb_sv);
539 GV *gvp; 644 return SvOK (cb_sv) ? s_get_cv_croak (cb_sv) : 0;
540 CV *cv;
541
542 if (!SvOK (cb_sv))
543 return 0;
544
545 cv = sv_2cv (cb_sv, &st, &gvp, 0);
546
547 if (!cv)
548 croak ("IO::AIO callback must be undef or a CODE reference");
549
550 return (SV *)cv;
551} 645}
552 646
553#define dREQ \ 647#define dREQ \
554 SV *cb_cv; \ 648 SV *cb_cv; \
555 aio_req req; \ 649 aio_req req; \
569 PUTBACK; \ 663 PUTBACK; \
570 req_submit (req); \ 664 req_submit (req); \
571 SPAGAIN; \ 665 SPAGAIN; \
572 \ 666 \
573 if (GIMME_V != G_VOID) \ 667 if (GIMME_V != G_VOID) \
574 XPUSHs (req_sv (req, AIO_REQ_KLASS)); 668 XPUSHs (req_sv (req, aio_req_stash));
575 669
576MODULE = IO::AIO PACKAGE = IO::AIO 670MODULE = IO::AIO PACKAGE = IO::AIO
577 671
578PROTOTYPES: ENABLE 672PROTOTYPES: ENABLE
579 673
581{ 675{
582 static const struct { 676 static const struct {
583 const char *name; 677 const char *name;
584 IV iv; 678 IV iv;
585 } *civ, const_iv[] = { 679 } *civ, const_iv[] = {
586# define const_iv(name, value) { # name, (IV) value }, 680# define const_niv(name, value) { # name, (IV) value },
681# define const_iv(name) { # name, (IV) name },
587# define const_eio(name) { # name, (IV) EIO_ ## name }, 682# define const_eio(name) { # name, (IV) EIO_ ## name },
588 const_iv (EXDEV , EXDEV) 683 const_iv (EXDEV)
589 const_iv (ENOSYS , ENOSYS) 684 const_iv (ENOSYS)
590 const_iv (O_RDONLY, O_RDONLY) 685 const_iv (O_RDONLY)
591 const_iv (O_WRONLY, O_WRONLY) 686 const_iv (O_WRONLY)
687 const_iv (O_RDWR)
592 const_iv (O_CREAT , O_CREAT) 688 const_iv (O_CREAT)
593 const_iv (O_TRUNC , O_TRUNC) 689 const_iv (O_TRUNC)
690 const_iv (O_EXCL)
691 const_iv (O_APPEND)
594#ifndef _WIN32 692#ifndef _WIN32
595 const_iv (S_IFIFO , S_IFIFO) 693 const_iv (S_IFIFO)
596#endif 694#endif
597 const_iv (FADV_NORMAL , POSIX_FADV_NORMAL) 695 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
598 const_iv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL) 696 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
599 const_iv (FADV_RANDOM , POSIX_FADV_RANDOM) 697 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
600 const_iv (FADV_NOREUSE , POSIX_FADV_NOREUSE) 698 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
601 const_iv (FADV_WILLNEED , POSIX_FADV_WILLNEED) 699 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
602 const_iv (FADV_DONTNEED , POSIX_FADV_DONTNEED) 700 const_niv (FADV_DONTNEED , POSIX_FADV_DONTNEED)
701
702 const_iv (ST_RDONLY)
703 const_iv (ST_NOSUID)
704 const_iv (ST_NODEV)
705 const_iv (ST_NOEXEC)
706 const_iv (ST_SYNCHRONOUS)
707 const_iv (ST_MANDLOCK)
708 const_iv (ST_WRITE)
709 const_iv (ST_APPEND)
710 const_iv (ST_IMMUTABLE)
711 const_iv (ST_NOATIME)
712 const_iv (ST_NODIRATIME)
713 const_iv (ST_RELATIME)
714
715 const_iv (PROT_EXEC)
716 const_iv (PROT_NONE)
717 const_iv (PROT_READ)
718 const_iv (PROT_WRITE)
719
720 /*const_iv (MAP_FIXED)*/
721 const_iv (MAP_PRIVATE)
722 const_iv (MAP_SHARED)
723 const_iv (MAP_ANONYMOUS)
724
725 /* linuxish */
726 const_iv (MAP_HUGETLB)
727 const_iv (MAP_LOCKED)
728 const_iv (MAP_NORESERVE)
729 const_iv (MAP_POPULATE)
730 const_iv (MAP_NONBLOCK)
731
732 const_iv (MCL_FUTURE)
733 const_iv (MCL_CURRENT)
734
735 const_eio (MS_ASYNC)
736 const_eio (MS_INVALIDATE)
737 const_eio (MS_SYNC)
738
739 const_eio (MT_MODIFY)
603 740
604 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE) 741 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE)
605 const_eio (SYNC_FILE_RANGE_WRITE) 742 const_eio (SYNC_FILE_RANGE_WRITE)
606 const_eio (SYNC_FILE_RANGE_WAIT_AFTER) 743 const_eio (SYNC_FILE_RANGE_WAIT_AFTER)
607 744
619 const_eio (DT_LNK) 756 const_eio (DT_LNK)
620 const_eio (DT_SOCK) 757 const_eio (DT_SOCK)
621 const_eio (DT_WHT) 758 const_eio (DT_WHT)
622 }; 759 };
623 760
624 stash = gv_stashpv ("IO::AIO", 1); 761 aio_stash = gv_stashpv ("IO::AIO" , 1);
762 aio_req_stash = gv_stashpv ("IO::AIO::REQ", 1);
763 aio_grp_stash = gv_stashpv ("IO::AIO::GRP", 1);
625 764
626 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 765 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
627 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 766 newCONSTSUB (aio_stash, (char *)civ->name, newSViv (civ->iv));
767
768 newCONSTSUB (aio_stash, "PAGESIZE", newSViv (PAGESIZE));
628 769
629 create_respipe (); 770 create_respipe ();
630 771
631 if (eio_init (want_poll, done_poll) < 0) 772 if (eio_init (want_poll, done_poll) < 0)
632 croak ("IO::AIO: unable to initialise eio library"); 773 croak ("IO::AIO: unable to initialise eio library");
859} 1000}
860 1001
861void 1002void
862aio_stat (SV8 *fh_or_path, SV *callback=&PL_sv_undef) 1003aio_stat (SV8 *fh_or_path, SV *callback=&PL_sv_undef)
863 ALIAS: 1004 ALIAS:
864 aio_stat = EIO_STAT 1005 aio_stat = EIO_STAT
865 aio_lstat = EIO_LSTAT 1006 aio_lstat = EIO_LSTAT
1007 aio_statvfs = EIO_STATVFS
866 PPCODE: 1008 PPCODE:
867{ 1009{
868 dREQ; 1010 dREQ;
869 1011
870 req->sv1 = newSVsv (fh_or_path); 1012 req->sv1 = newSVsv (fh_or_path);
874 req->type = ix; 1016 req->type = ix;
875 req->ptr1 = SvPVbyte_nolen (req->sv1); 1017 req->ptr1 = SvPVbyte_nolen (req->sv1);
876 } 1018 }
877 else 1019 else
878 { 1020 {
879 req->type = EIO_FSTAT; 1021 req->type = ix == EIO_STATVFS ? EIO_FSTATVFS : EIO_FSTAT;
880 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path))); 1022 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
881 } 1023 }
882 1024
883 REQ_SEND; 1025 REQ_SEND;
884} 1026}
1047 1189
1048 REQ_SEND; 1190 REQ_SEND;
1049} 1191}
1050 1192
1051void 1193void
1194aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef)
1195 ALIAS:
1196 aio_mtouch = EIO_MTOUCH
1197 aio_msync = EIO_MSYNC
1198 PROTOTYPE: $$$$;$
1199 PPCODE:
1200{
1201 STRLEN svlen;
1202 UV len = SvUV (length);
1203 char *svptr = SvPVbyte (data, svlen);
1204
1205 if (offset < 0)
1206 offset += svlen;
1207
1208 if (offset < 0 || offset > svlen)
1209 croak ("offset outside of scalar");
1210
1211 if (!SvOK (length) || len + offset > svlen)
1212 len = svlen - offset;
1213
1214 {
1215 dREQ;
1216
1217 req->type = ix;
1218 req->size = len;
1219 req->sv2 = SvREFCNT_inc (data);
1220 req->ptr2 = (char *)svptr + offset;
1221 req->int1 = flags;
1222
1223 REQ_SEND;
1224 }
1225}
1226
1227void
1052aio_busy (double delay, SV *callback=&PL_sv_undef) 1228aio_busy (double delay, SV *callback=&PL_sv_undef)
1053 PPCODE: 1229 PPCODE:
1054{ 1230{
1055 dREQ; 1231 dREQ;
1056 1232
1068 dREQ; 1244 dREQ;
1069 1245
1070 req->type = EIO_GROUP; 1246 req->type = EIO_GROUP;
1071 1247
1072 req_submit (req); 1248 req_submit (req);
1073 XPUSHs (req_sv (req, AIO_GRP_KLASS)); 1249 XPUSHs (req_sv (req, aio_grp_stash));
1074} 1250}
1075 1251
1076void 1252void
1077aio_nop (SV *callback=&PL_sv_undef) 1253aio_nop (SV *callback=&PL_sv_undef)
1078 ALIAS: 1254 ALIAS:
1130 1306
1131int 1307int
1132poll_fileno() 1308poll_fileno()
1133 PROTOTYPE: 1309 PROTOTYPE:
1134 CODE: 1310 CODE:
1135 RETVAL = respipe [0]; 1311 RETVAL = s_epipe_fd (&respipe);
1136 OUTPUT: 1312 OUTPUT:
1137 RETVAL 1313 RETVAL
1138 1314
1139int 1315int
1140poll_cb(...) 1316poll_cb(...)
1187 PROTOTYPE: $$$$ 1363 PROTOTYPE: $$$$
1188 CODE: 1364 CODE:
1189#if _XOPEN_SOURCE >= 600 && !NO_FADVISE 1365#if _XOPEN_SOURCE >= 600 && !NO_FADVISE
1190 RETVAL = posix_fadvise (fh, offset, length, advice); 1366 RETVAL = posix_fadvise (fh, offset, length, advice);
1191#else 1367#else
1192 RETVAL = errno = ENOSYS; 1368 RETVAL = errno = ENOSYS; /* yes, this is actually correct */
1193#endif 1369#endif
1194 OUTPUT: 1370 OUTPUT:
1195 RETVAL 1371 RETVAL
1196 1372
1197ssize_t 1373ssize_t
1198sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count) 1374sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count)
1199 PROTOTYPE: $$$$ 1375 PROTOTYPE: $$$$
1200 CODE: 1376 CODE:
1201 eio_sendfile_sync (ofh, ifh, offset, count); 1377 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count);
1378 OUTPUT:
1379 RETVAL
1380
1381void
1382mmap (SV *scalar, size_t length, int prot, int flags, SV *fh, off_t offset = 0)
1383 PROTOTYPE: $$$$$;$
1384 PPCODE:
1385 sv_unmagic (scalar, MMAP_MAGIC);
1386{
1387 int fd = SvOK (fh) ? s_fileno_croak (fh, flags & PROT_WRITE) : -1;
1388 void *addr = (void *)mmap (0, length, prot, flags, fd, offset);
1389 if (addr == (void *)-1)
1390 XSRETURN_NO;
1391
1392 /* we store the length in mg_obj, as namlen is I32 :/ */
1393 sv_magicext (scalar, 0, MMAP_MAGIC, &mmap_vtbl, (char *)addr, 0)
1394 ->mg_obj = (SV *)length;
1395
1396 SvUPGRADE (scalar, SVt_PV); /* nop... */
1397 if (!(prot & PROT_WRITE))
1398 SvREADONLY_on (scalar);
1399
1400 SvPVX (scalar) = (char *)addr;
1401 SvCUR_set (scalar, length);
1402 SvLEN_set (scalar, 0);
1403 SvPOK_only (scalar);
1404
1405 XSRETURN_YES;
1406}
1407
1408void
1409munmap (SV *scalar)
1410 PROTOTYPE: $
1411 CODE:
1412 sv_unmagic (scalar, MMAP_MAGIC);
1413
1414int
1415mlockall (int flags)
1416 PROTOTYPE: $
1417 CODE:
1418#if _POSIX_MEMLOCK
1419#if __GLIBC__ == 2 && __GLIBC_MINOR__ <= 7
1420 extern int mallopt (int, int);
1421 mallopt (-6, 238); /* http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473812 */
1422#endif
1423 mlockall (flags);
1424#else
1425 RETVAL = -1;
1426 errno = ENOSYS;
1427#endif
1428 OUTPUT:
1429 RETVAL
1430
1431int
1432munlockall ()
1433 PROTOTYPE:
1434 CODE:
1435#if _POSIX_MEMLOCK
1436 munlockall ();
1437#else
1438 RETVAL = -1;
1439 errno = ENOSYS;
1440#endif
1441 OUTPUT:
1442 RETVAL
1202 1443
1203void _on_next_submit (SV *cb) 1444void _on_next_submit (SV *cb)
1204 CODE: 1445 CODE:
1205 SvREFCNT_dec (on_next_submit); 1446 SvREFCNT_dec (on_next_submit);
1206 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0; 1447 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0;
1221 if (GIMME_V != G_VOID) 1462 if (GIMME_V != G_VOID)
1222 XPUSHs (req->callback ? sv_2mortal (newRV_inc (req->callback)) : &PL_sv_undef); 1463 XPUSHs (req->callback ? sv_2mortal (newRV_inc (req->callback)) : &PL_sv_undef);
1223 1464
1224 if (items > 1) 1465 if (items > 1)
1225 { 1466 {
1226 SV *cb_cv = get_cb (callback); 1467 SV *cb_cv =get_cb (callback);
1227 1468
1228 SvREFCNT_dec (req->callback); 1469 SvREFCNT_dec (req->callback);
1229 req->callback = SvREFCNT_inc (cb_cv); 1470 req->callback = SvREFCNT_inc (cb_cv);
1230 } 1471 }
1231} 1472}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines