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.137 by root, Sun Apr 19 13:19:57 2009 UTC vs.
Revision 1.186 by root, Thu Jul 14 22:36:17 2011 UTC

3#include <errno.h> 3#include <errno.h>
4 4
5#include "EXTERN.h" 5#include "EXTERN.h"
6#include "perl.h" 6#include "perl.h"
7#include "XSUB.h" 7#include "XSUB.h"
8
9#include "schmorp.h"
8 10
9#include <stddef.h> 11#include <stddef.h>
10#include <stdlib.h> 12#include <stdlib.h>
11#include <errno.h> 13#include <errno.h>
12#include <sys/types.h> 14#include <sys/types.h>
13#include <sys/stat.h> 15#include <sys/stat.h>
14#include <limits.h> 16#include <limits.h>
15#include <fcntl.h> 17#include <fcntl.h>
16#include <sched.h> 18#include <sched.h>
19
20#if _POSIX_MEMLOCK || _POSIX_MEMLOCK_RANGE || _POSIX_MAPPED_FILES
21# include <sys/mman.h>
22#endif
17 23
18/* perl namespace pollution */ 24/* perl namespace pollution */
19#undef VERSION 25#undef VERSION
20 26
21#ifdef _WIN32 27#ifdef _WIN32
40# undef unlink 46# undef unlink
41# undef rmdir 47# undef rmdir
42# undef rename 48# undef rename
43# undef lseek 49# undef lseek
44 50
45# define chown(a,b,c) (errno = ENOSYS, -1)
46# define fchown(a,b,c) (errno = ENOSYS, -1)
47# define fchmod(a,b) (errno = ENOSYS, -1)
48# define symlink(a,b) (errno = ENOSYS, -1)
49# define readlink(a,b,c) (errno = ENOSYS, -1)
50# define mknod(a,b,c) (errno = ENOSYS, -1)
51# define truncate(a,b) (errno = ENOSYS, -1)
52# define ftruncate(fd,o) chsize ((fd), (o))
53# define fsync(fd) _commit (fd)
54# define opendir(fd) (errno = ENOSYS, 0) 51# define opendir(fd) (errno = ENOSYS, 0)
55# define readdir(fd) (errno = ENOSYS, -1) 52# define readdir(fd) (errno = ENOSYS, -1)
56# define closedir(fd) (errno = ENOSYS, -1) 53# define closedir(fd) (errno = ENOSYS, -1)
57# define mkdir(a,b) mkdir (a)
58 54
59#else 55#else
60 56
61# include <sys/time.h> 57# include <sys/time.h>
62# include <sys/select.h> 58# include <sys/select.h>
75 71
76#define EIO_STRUCT_STAT Stat_t 72#define EIO_STRUCT_STAT Stat_t
77 73
78/* use NV for 32 bit perls as it allows larger offsets */ 74/* use NV for 32 bit perls as it allows larger offsets */
79#if IVSIZE >= 8 75#if IVSIZE >= 8
76# define VAL64 IV
80# define SvVAL64 SvIV 77# define SvVAL64 SvIV
78# define newSVval64 newSViv
81#else 79#else
80# define VAL64 NV
82# define SvVAL64 SvNV 81# define SvVAL64 SvNV
82# define newSVval64 newSVnv
83#endif 83#endif
84 84
85/*****************************************************************************/ 85/*****************************************************************************/
86 86
87#if __GNUC__ >= 3 87#if __GNUC__ >= 3
93#define expect_false(expr) expect ((expr) != 0, 0) 93#define expect_false(expr) expect ((expr) != 0, 0)
94#define expect_true(expr) expect ((expr) != 0, 1) 94#define expect_true(expr) expect ((expr) != 0, 1)
95 95
96/*****************************************************************************/ 96/*****************************************************************************/
97 97
98static HV *stash;
99typedef SV SV8; /* byte-sv, used for argument-checking */ 98typedef SV SV8; /* byte-sv, used for argument-checking */
99typedef int aio_rfd; /* read file desriptor */
100typedef int aio_wfd; /* write file descriptor */
100 101
101#define AIO_REQ_KLASS "IO::AIO::REQ" 102static HV *aio_stash, *aio_req_stash, *aio_grp_stash;
102#define AIO_GRP_KLASS "IO::AIO::GRP"
103 103
104#define EIO_REQ_MEMBERS \ 104#define EIO_REQ_MEMBERS \
105 SV *callback; \ 105 SV *callback; \
106 SV *sv1, *sv2; \ 106 SV *sv1, *sv2; \
107 STRLEN stroffset; \ 107 STRLEN stroffset; \
108 SV *self; 108 SV *self;
109 109
110#define EIO_NO_WRAPPERS 1 110#define EIO_NO_WRAPPERS 1
111 111
112#include "libeio/config.h"
112#include "libeio/eio.h" 113#include "libeio/eio.h"
114
115/* Linux/others */
116#ifndef O_ASYNC
117# define O_ASYNC 0
118#endif
119#ifndef O_DIRECT
120# define O_DIRECT 0
121#endif
122#ifndef O_NOATIME
123# define O_NOATIME 0
124#endif
125
126/* POSIX */
127#ifndef O_CLOEXEC
128# define O_CLOEXEC 0
129#endif
130#ifndef O_NOFOLLOW
131# define O_NOFOLLOW 0
132#endif
133#ifndef O_NOCTTY
134# define O_NOCTTY 0
135#endif
136#ifndef O_NONBLOCK
137# define O_NONBLOCK 0
138#endif
139#ifndef O_EXEC
140# define O_EXEC 0
141#endif
142#ifndef O_SEARCH
143# define O_SEARCH 0
144#endif
145#ifndef O_DIRECTORY
146# define O_DIRECTORY 0
147#endif
148#ifndef O_DSYNC
149# define O_DSYNC 0
150#endif
151#ifndef O_RSYNC
152# define O_RSYNC 0
153#endif
154#ifndef O_SYNC
155# define O_SYNC 0
156#endif
157#ifndef O_TTY_INIT
158# define O_TTY_INIT 0
159#endif
160
161#ifndef POSIX_FADV_NORMAL
162# define POSIX_FADV_NORMAL 0
163#endif
164#ifndef POSIX_FADV_SEQUENTIAL
165# define POSIX_FADV_SEQUENTIAL 0
166#endif
167#ifndef POSIX_FADV_RANDOM
168# define POSIX_FADV_RANDOM 0
169#endif
170#ifndef POSIX_FADV_NOREUSE
171# define POSIX_FADV_NOREUSE 0
172#endif
173#ifndef POSIX_FADV_WILLNEED
174# define POSIX_FADV_WILLNEED 0
175#endif
176#ifndef POSIX_FADV_DONTNEED
177# define POSIX_FADV_DONTNEED 0
178#endif
179
180#if !HAVE_POSIX_FADVISE
181# define posix_fadvise(a,b,c,d) errno = ENOSYS /* also return ENOSYS */
182#endif
183
184#ifndef POSIX_MADV_NORMAL
185# define POSIX_MADV_NORMAL 0
186#endif
187#ifndef POSIX_MADV_SEQUENTIAL
188# define POSIX_MADV_SEQUENTIAL 0
189#endif
190#ifndef POSIX_MADV_RANDOM
191# define POSIX_MADV_RANDOM 0
192#endif
193#ifndef POSIX_MADV_WILLNEED
194# define POSIX_MADV_WILLNEED 0
195#endif
196#ifndef POSIX_MADV_DONTNEED
197# define POSIX_MADV_DONTNEED 0
198#endif
199
200#if !HAVE_POSIX_MADVISE
201# define posix_madvise(a,b,c) errno = ENOSYS /* also return ENOSYS */
202#endif
203
204#ifndef PROT_NONE
205# define PROT_NONE 0
206#endif
207#ifndef PROT_READ
208# define PROT_READ 0
209#endif
210#ifndef PROT_WRITE
211# define PROT_READ 0
212#endif
213#ifndef PROT_EXEC
214# define PROT_EXEC 0
215#endif
216
217#ifndef ST_NODEV
218# define ST_NODEV 0
219#endif
220#ifndef ST_NOEXEC
221# define ST_NOEXEC 0
222#endif
223#ifndef ST_SYNCHRONOUS
224# define ST_SYNCHRONOUS 0
225#endif
226#ifndef ST_MANDLOCK
227# define ST_MANDLOCK 0
228#endif
229#ifndef ST_WRITE
230# define ST_WRITE 0
231#endif
232#ifndef ST_APPEND
233# define ST_APPEND 0
234#endif
235#ifndef ST_IMMUTABLE
236# define ST_IMMUTABLE 0
237#endif
238#ifndef ST_NOATIME
239# define ST_NOATIME 0
240#endif
241#ifndef ST_NODIRATIME
242# define ST_NODIRATIME 0
243#endif
244#ifndef ST_RELATIME
245# define ST_RELATIME 0
246#endif
247
248#ifndef S_IFIFO
249# define S_IFIFO 0
250#endif
251#ifndef S_IFCHR
252# define S_IFCHR 0
253#endif
254#ifndef S_IFBLK
255# define S_IFBLK 0
256#endif
257#ifndef S_IFLNK
258# define S_IFLNK 0
259#endif
260#ifndef S_IFREG
261# define S_IFREG 0
262#endif
263#ifndef S_IFDIR
264# define S_IFDIR 0
265#endif
266#ifndef S_IFWHT
267# define S_IFWHT 0
268#endif
269#ifndef S_IFSOCK
270# define S_IFSOCK 0
271#endif
272
273#ifndef MAP_ANONYMOUS
274# ifdef MAP_ANON
275# define MAP_ANONYMOUS MAP_ANON
276# else
277# define MAP_ANONYMOUS MAP_FIXED /* and hope this fails */
278# endif
279#endif
280#ifndef MAP_HUGETLB
281# define MAP_HUGETLB 0
282#endif
283#ifndef MAP_LOCKED
284# define MAP_LOCKED 0
285#endif
286#ifndef MAP_NORESERVE
287# define MAP_NORESERVE 0
288#endif
289#ifndef MAP_POPULATE
290# define MAP_POPULATE 0
291#endif
292#ifndef MAP_NONBLOCK
293# define MAP_NONBLOCK 0
294#endif
295
296#ifndef makedev
297# define makedev(maj,min) (((maj) << 8) | (min))
298#endif
299#ifndef major
300# define major(dev) ((dev) >> 8)
301#endif
302#ifndef minor
303# define minor(dev) ((dev) & 0xff)
304#endif
305
306#ifndef PAGESIZE
307# define PAGESIZE sysconf (_SC_PAGESIZE)
308#endif
113 309
114static int req_invoke (eio_req *req); 310static int req_invoke (eio_req *req);
115#define EIO_FINISH(req) req_invoke (req) 311#define EIO_FINISH(req) req_invoke (req)
116static void req_destroy (eio_req *grp); 312static void req_destroy (eio_req *grp);
117#define EIO_DESTROY(req) req_destroy (req) 313#define EIO_DESTROY(req) req_destroy (req)
127 323
128static SV *on_next_submit; 324static SV *on_next_submit;
129static int next_pri = EIO_PRI_DEFAULT; 325static int next_pri = EIO_PRI_DEFAULT;
130static int max_outstanding; 326static int max_outstanding;
131 327
132static int respipe_osf [2], respipe [2] = { -1, -1 }; 328static s_epipe respipe;
133 329
134static void req_destroy (aio_req req); 330static void req_destroy (aio_req req);
135static void req_cancel (aio_req req); 331static void req_cancel (aio_req req);
136 332
137static void want_poll (void) 333static void want_poll (void)
138{ 334{
139 /* write a dummy byte to the pipe so fh becomes ready */ 335 /* write a dummy byte to the pipe so fh becomes ready */
140 respipe_write (respipe_osf [1], (const void *)&respipe_osf, 1); 336 s_epipe_signal (&respipe);
141} 337}
142 338
143static void done_poll (void) 339static void done_poll (void)
144{ 340{
145 /* read any signals sent by the worker threads */ 341 /* read any signals sent by the worker threads */
146 char buf [4]; 342 s_epipe_drain (&respipe);
147 while (respipe_read (respipe [0], buf, 4) == 4)
148 ;
149} 343}
150 344
151/* must be called at most once */ 345/* must be called at most once */
152static SV *req_sv (aio_req req, const char *klass) 346static SV *req_sv (aio_req req, HV *stash)
153{ 347{
154 if (!req->self) 348 if (!req->self)
155 { 349 {
156 req->self = (SV *)newHV (); 350 req->self = (SV *)newHV ();
157 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0); 351 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0);
158 } 352 }
159 353
160 return sv_2mortal (sv_bless (newRV_inc (req->self), gv_stashpv (klass, 1))); 354 return sv_2mortal (sv_bless (newRV_inc (req->self), stash));
161} 355}
162 356
163static aio_req SvAIO_REQ (SV *sv) 357static aio_req SvAIO_REQ (SV *sv)
164{ 358{
165 MAGIC *mg; 359 MAGIC *mg;
166 360
167 if (!sv_derived_from (sv, AIO_REQ_KLASS) || !SvROK (sv)) 361 if (!SvROK (sv)
362 || (SvSTASH (SvRV (sv)) != aio_grp_stash
363 && SvSTASH (SvRV (sv)) != aio_req_stash
364 && !sv_derived_from (sv, "IO::AIO::REQ")))
168 croak ("object of class " AIO_REQ_KLASS " expected"); 365 croak ("object of class IO::AIO::REQ expected");
169 366
170 mg = mg_find (SvRV (sv), PERL_MAGIC_ext); 367 mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
171 368
172 return mg ? (aio_req)mg->mg_ptr : 0; 369 return mg ? (aio_req)mg->mg_ptr : 0;
173} 370}
179 dSP; 376 dSP;
180 377
181 ENTER; 378 ENTER;
182 SAVETMPS; 379 SAVETMPS;
183 PUSHMARK (SP); 380 PUSHMARK (SP);
184 XPUSHs (req_sv (grp, AIO_GRP_KLASS)); 381 XPUSHs (req_sv (grp, aio_grp_stash));
185 PUTBACK; 382 PUTBACK;
186 call_sv (grp->sv2, G_VOID | G_EVAL | G_KEEPERR); 383 call_sv (grp->sv2, G_VOID | G_EVAL | G_KEEPERR);
187 SPAGAIN; 384 SPAGAIN;
188 FREETMPS; 385 FREETMPS;
189 LEAVE; 386 LEAVE;
207 } 404 }
208} 405}
209 406
210static int req_invoke (eio_req *req) 407static int req_invoke (eio_req *req)
211{ 408{
212 dSP;
213
214 if (req->flags & FLAG_SV2_RO_OFF) 409 if (req->flags & FLAG_SV2_RO_OFF)
215 SvREADONLY_off (req->sv2); 410 SvREADONLY_off (req->sv2);
216 411
217 if (!EIO_CANCELLED (req) && req->callback) 412 if (!EIO_CANCELLED (req) && req->callback)
218 { 413 {
414 dSP;
415 static SV *sv_result_cache; /* caches the result integer SV */
416 SV *sv_result;
417
219 ENTER; 418 ENTER;
220 SAVETMPS; 419 SAVETMPS;
221 PUSHMARK (SP); 420 PUSHMARK (SP);
222 EXTEND (SP, 1); 421 EXTEND (SP, 1);
422
423 /* do not recreate the result IV from scratch each time */
424 if (expect_true (sv_result_cache))
425 {
426 sv_result = sv_result_cache; sv_result_cache = 0;
427 SvIV_set (sv_result, req->result);
428 SvIOK_only (sv_result);
429 }
430 else
431 {
432 sv_result = newSViv (req->result);
433 SvREADONLY_on (sv_result);
434 }
223 435
224 switch (req->type) 436 switch (req->type)
225 { 437 {
226 case EIO_READDIR: 438 case EIO_READDIR:
227 { 439 {
228 SV *rv = &PL_sv_undef; 440 SV *rv = &PL_sv_undef;
229 441
230 if (req->result >= 0) 442 if (req->result >= 0)
231 { 443 {
232 int i; 444 int i;
233 char *buf = req->ptr2; 445 char *names = (char *)req->ptr2;
446 eio_dirent *ent = (eio_dirent *)req->ptr1; /* might be 0 */
234 AV *av = newAV (); 447 AV *av = newAV ();
235 448
236 av_extend (av, req->result - 1); 449 av_extend (av, req->result - 1);
237 450
238 for (i = 0; i < req->result; ++i) 451 for (i = 0; i < req->result; ++i)
239 { 452 {
240 SV *sv = newSVpv (buf, 0); 453 if (req->int1 & EIO_READDIR_DENTS)
454 {
455 SV *namesv = newSVpvn (names + ent->nameofs, ent->namelen);
241 456
457 if (req->int1 & EIO_READDIR_CUSTOM2)
458 {
459 static SV *sv_type [EIO_DT_MAX + 1]; /* type sv cache */
460 AV *avent = newAV ();
461
462 av_extend (avent, 2);
463
464 if (!sv_type [ent->type])
465 {
466 sv_type [ent->type] = newSViv (ent->type);
467 SvREADONLY_on (sv_type [ent->type]);
468 }
469
470 av_store (avent, 0, namesv);
471 av_store (avent, 1, SvREFCNT_inc (sv_type [ent->type]));
472 av_store (avent, 2, IVSIZE >= 8 ? newSVuv (ent->inode) : newSVnv (ent->inode));
473
474 av_store (av, i, newRV_noinc ((SV *)avent));
475 }
476 else
242 av_store (av, i, sv); 477 av_store (av, i, namesv);
478
479 ++ent;
480 }
481 else
482 {
483 SV *name = newSVpv (names, 0);
484 av_store (av, i, name);
243 buf += SvCUR (sv) + 1; 485 names += SvCUR (name) + 1;
486 }
244 } 487 }
245 488
246 rv = sv_2mortal (newRV_noinc ((SV *)av)); 489 rv = sv_2mortal (newRV_noinc ((SV *)av));
247 } 490 }
248 491
249 PUSHs (rv); 492 PUSHs (rv);
493
494 if (req->int1 & EIO_READDIR_CUSTOM1)
495 XPUSHs (sv_2mortal (newSViv (req->int1 & ~(EIO_READDIR_CUSTOM1 | EIO_READDIR_CUSTOM2))));
250 } 496 }
251 break; 497 break;
252 498
253 case EIO_OPEN: 499 case EIO_OPEN:
254 { 500 {
260 GV *gv = (GV *)sv_newmortal (); 506 GV *gv = (GV *)sv_newmortal ();
261 int flags = req->int1 & (O_RDONLY | O_WRONLY | O_RDWR); 507 int flags = req->int1 & (O_RDONLY | O_WRONLY | O_RDWR);
262 char sym [64]; 508 char sym [64];
263 int symlen; 509 int symlen;
264 510
265 symlen = snprintf (sym, sizeof (sym), "fd#%d", req->result); 511 symlen = snprintf (sym, sizeof (sym), "fd#%d", (int)req->result);
266 gv_init (gv, stash, sym, symlen, 0); 512 gv_init (gv, aio_stash, sym, symlen, 0);
267 513
268 symlen = snprintf ( 514 symlen = snprintf (
269 sym, 515 sym,
270 sizeof (sym), 516 sizeof (sym),
271 "%s&=%d", 517 "%s&=%d",
272 flags == O_RDONLY ? "<" : flags == O_WRONLY ? ">" : "+<", 518 flags == O_RDONLY ? "<" : flags == O_WRONLY ? ">" : "+<",
273 req->result 519 (int)req->result
274 ); 520 );
275 521
276 if (do_open (gv, sym, symlen, 0, 0, 0, 0)) 522 if (do_open (gv, sym, symlen, 0, 0, 0, 0))
277 fh = (SV *)gv; 523 fh = (SV *)gv;
278 } 524 }
279 525
280 PUSHs (fh); 526 PUSHs (fh);
281 } 527 }
528 break;
529
530 case EIO_STATVFS:
531 case EIO_FSTATVFS:
532 {
533 SV *rv = &PL_sv_undef;
534
535 if (req->result >= 0)
536 {
537 EIO_STRUCT_STATVFS *f = EIO_STATVFS_BUF (req);
538 HV *hv = newHV ();
539
540 rv = sv_2mortal (newRV_noinc ((SV *)hv));
541
542 hv_store (hv, "bsize" , sizeof ("bsize" ) - 1, newSVval64 (f->f_bsize ), 0);
543 hv_store (hv, "frsize" , sizeof ("frsize" ) - 1, newSVval64 (f->f_frsize ), 0);
544 hv_store (hv, "blocks" , sizeof ("blocks" ) - 1, newSVval64 (f->f_blocks ), 0);
545 hv_store (hv, "bfree" , sizeof ("bfree" ) - 1, newSVval64 (f->f_bfree ), 0);
546 hv_store (hv, "bavail" , sizeof ("bavail" ) - 1, newSVval64 (f->f_bavail ), 0);
547 hv_store (hv, "files" , sizeof ("files" ) - 1, newSVval64 (f->f_files ), 0);
548 hv_store (hv, "ffree" , sizeof ("ffree" ) - 1, newSVval64 (f->f_ffree ), 0);
549 hv_store (hv, "favail" , sizeof ("favail" ) - 1, newSVval64 (f->f_favail ), 0);
550 hv_store (hv, "fsid" , sizeof ("fsid" ) - 1, newSVval64 (f->f_fsid ), 0);
551 hv_store (hv, "flag" , sizeof ("flag" ) - 1, newSVval64 (f->f_flag ), 0);
552 hv_store (hv, "namemax", sizeof ("namemax") - 1, newSVval64 (f->f_namemax), 0);
553 }
554
555 PUSHs (rv);
556 }
557
282 break; 558 break;
283 559
284 case EIO_GROUP: 560 case EIO_GROUP:
285 req->int1 = 2; /* mark group as finished */ 561 req->int1 = 2; /* mark group as finished */
286 562
298 case EIO_NOP: 574 case EIO_NOP:
299 case EIO_BUSY: 575 case EIO_BUSY:
300 break; 576 break;
301 577
302 case EIO_READLINK: 578 case EIO_READLINK:
579 case EIO_REALPATH:
303 if (req->result > 0) 580 if (req->result > 0)
304 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result))); 581 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result)));
305 break; 582 break;
306 583
307 case EIO_STAT: 584 case EIO_STAT:
308 case EIO_LSTAT: 585 case EIO_LSTAT:
309 case EIO_FSTAT: 586 case EIO_FSTAT:
310 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT; 587 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT;
311 PL_laststatval = req->result; 588 PL_laststatval = req->result;
312 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2); 589 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2);
313 PUSHs (sv_2mortal (newSViv (req->result))); 590 PUSHs (sv_result);
314 break; 591 break;
315 592
316 case EIO_READ: 593 case EIO_READ:
594 {
317 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0)); 595 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0));
318 *SvEND (req->sv2) = 0; 596 *SvEND (req->sv2) = 0;
319 PUSHs (sv_2mortal (newSViv (req->result))); 597 SvPOK_only (req->sv2);
598 SvSETMAGIC (req->sv2);
599 PUSHs (sv_result);
600 }
320 break; 601 break;
321 602
322 case EIO_DUP2: 603 case EIO_DUP2: /* EIO_DUP2 actually means aio_close(), so fudge result value */
323 if (req->result > 0) 604 if (req->result > 0)
324 req->result = 0; 605 SvIV_set (sv_result, 0);
325 /* FALLTHROUGH */ 606 /* FALLTHROUGH */
326 607
327 default: 608 default:
328 PUSHs (sv_2mortal (newSViv (req->result))); 609 PUSHs (sv_result);
329 break; 610 break;
330 } 611 }
331 612
332 errno = req->errorno; 613 errno = req->errorno;
333 614
334 PUTBACK; 615 PUTBACK;
335 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD); 616 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD);
336 SPAGAIN; 617 SPAGAIN;
618
619 if (expect_false (SvREFCNT (sv_result) != 1 || sv_result_cache))
620 SvREFCNT_dec (sv_result);
621 else
622 sv_result_cache = sv_result;
337 623
338 FREETMPS; 624 FREETMPS;
339 LEAVE; 625 LEAVE;
340 626
341 PUTBACK; 627 PUTBACK;
370 grp->sv2 = 0; 656 grp->sv2 = 0;
371 657
372 eio_grp_cancel (grp); 658 eio_grp_cancel (grp);
373} 659}
374 660
375#ifdef USE_SOCKETS_AS_HANDLES
376# define TO_SOCKET(x) (win32_get_osfhandle (x))
377#else
378# define TO_SOCKET(x) (x)
379#endif
380
381static void
382create_respipe (void) 661static void create_respipe (void)
383{ 662{
384 int old_readfd = respipe [0];
385
386 if (respipe [1] >= 0)
387 respipe_close (TO_SOCKET (respipe [1]));
388
389#ifdef _WIN32
390 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, respipe))
391#else
392 if (pipe (respipe)) 663 if (s_epipe_renew (&respipe))
393#endif
394 croak ("unable to initialize result pipe"); 664 croak ("IO::AIO: unable to initialize result pipe");
395
396 if (old_readfd >= 0)
397 {
398 if (dup2 (TO_SOCKET (respipe [0]), TO_SOCKET (old_readfd)) < 0)
399 croak ("unable to initialize result pipe(2)");
400
401 respipe_close (respipe [0]);
402 respipe [0] = old_readfd;
403 }
404
405#ifdef _WIN32
406 int arg = 1;
407 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
408 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
409#else
410 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
411 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
412#endif
413 croak ("unable to initialize result pipe(3)");
414
415 respipe_osf [0] = TO_SOCKET (respipe [0]);
416 respipe_osf [1] = TO_SOCKET (respipe [1]);
417} 665}
418 666
419static void poll_wait (void) 667static void poll_wait (void)
420{ 668{
421 fd_set rfd;
422
423 while (eio_nreqs ()) 669 while (eio_nreqs ())
424 { 670 {
425 int size; 671 int size;
426 672
427 X_LOCK (reslock); 673 X_LOCK (reslock);
431 if (size) 677 if (size)
432 return; 678 return;
433 679
434 etp_maybe_start_thread (); 680 etp_maybe_start_thread ();
435 681
436 FD_ZERO (&rfd); 682 s_epipe_wait (&respipe);
437 FD_SET (respipe [0], &rfd);
438
439 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
440 } 683 }
441} 684}
442 685
443static int poll_cb (void) 686static int poll_cb (void)
444{ 687{
459static void atfork_child (void) 702static void atfork_child (void)
460{ 703{
461 create_respipe (); 704 create_respipe ();
462} 705}
463 706
464static SV * 707/*****************************************************************************/
465get_cb (SV *cb_sv)
466{
467 HV *st;
468 GV *gvp;
469 CV *cv;
470 708
471 if (!SvOK (cb_sv)) 709#if !_POSIX_MAPPED_FILES
710# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
711# define munmap(addr,length) (errno = ENOSYS, -1)
712#endif
713
714#if !_POSIX_MEMORY_PROTECTION
715# define mprotect(addr,len,prot) (errno = ENOSYS, -1)
716# define PROT_NONE 0
717# define PROT_WRITE 0
718# define MAP_PRIVATE 0
719# define MAP_SHARED 0
720# define MAP_FIXED 0
721#endif
722
723#define MMAP_MAGIC PERL_MAGIC_ext
724
725static int mmap_free (pTHX_ SV *sv, MAGIC *mg)
726{
727 int old_errno = errno;
728 munmap (mg->mg_ptr, (size_t)mg->mg_obj);
729 errno = old_errno;
730
731 mg->mg_obj = 0; /* just in case */
732
733 SvREADONLY_off (sv);
734
735 if (SvPVX (sv) != mg->mg_ptr)
736 croak ("ERROR: IO::AIO::mmap-mapped scalar changed location, detected");
737
738 SvCUR_set (sv, 0);
739 SvPVX (sv) = 0;
740 SvOK_off (sv);
741
472 return 0; 742 return 0;
743}
473 744
474 cv = sv_2cv (cb_sv, &st, &gvp, 0); 745static MGVTBL mmap_vtbl = {
746 0, 0, 0, 0, mmap_free
747};
475 748
476 if (!cv) 749/*****************************************************************************/
477 croak ("IO::AIO callback must be undef or a CODE reference");
478 750
479 return (SV *)cv; 751static SV * get_cb (SV *cb_sv)
752{
753 SvGETMAGIC (cb_sv);
754 return SvOK (cb_sv) ? s_get_cv_croak (cb_sv) : 0;
480} 755}
481 756
482#define dREQ \ 757#define dREQ \
483 SV *cb_cv; \ 758 SV *cb_cv; \
484 aio_req req; \ 759 aio_req req; \
498 PUTBACK; \ 773 PUTBACK; \
499 req_submit (req); \ 774 req_submit (req); \
500 SPAGAIN; \ 775 SPAGAIN; \
501 \ 776 \
502 if (GIMME_V != G_VOID) \ 777 if (GIMME_V != G_VOID) \
503 XPUSHs (req_sv (req, AIO_REQ_KLASS)); 778 XPUSHs (req_sv (req, aio_req_stash));
504
505static int
506extract_fd (SV *fh, int wr)
507{
508 int fd = PerlIO_fileno (wr ? IoOFP (sv_2io (fh)) : IoIFP (sv_2io (fh)));
509
510 if (fd < 0)
511 croak ("illegal fh argument, either not an OS file or read/write mode mismatch");
512
513 return fd;
514}
515 779
516MODULE = IO::AIO PACKAGE = IO::AIO 780MODULE = IO::AIO PACKAGE = IO::AIO
517 781
518PROTOTYPES: ENABLE 782PROTOTYPES: ENABLE
519 783
520BOOT: 784BOOT:
521{ 785{
786 static const struct {
787 const char *name;
788 IV iv;
789 } *civ, const_iv[] = {
790# define const_niv(name, value) { # name, (IV) value },
791# define const_iv(name) { # name, (IV) name },
792# define const_eio(name) { # name, (IV) EIO_ ## name },
793 const_iv (EXDEV)
794 const_iv (ENOSYS)
795 const_iv (O_RDONLY)
796 const_iv (O_WRONLY)
797 const_iv (O_RDWR)
798 const_iv (O_CREAT)
799 const_iv (O_TRUNC)
800 const_iv (O_EXCL)
801 const_iv (O_APPEND)
802
803 const_iv (O_ASYNC)
804 const_iv (O_DIRECT)
805 const_iv (O_NOATIME)
806
807 const_iv (O_CLOEXEC)
808 const_iv (O_NOCTTY)
809 const_iv (O_NOFOLLOW)
810 const_iv (O_NONBLOCK)
811 const_iv (O_EXEC)
812 const_iv (O_SEARCH)
813 const_iv (O_DIRECTORY)
814 const_iv (O_DSYNC)
815 const_iv (O_RSYNC)
816 const_iv (O_SYNC)
817 const_iv (O_TTY_INIT)
818
819 const_iv (S_IFIFO)
820 const_iv (S_IFCHR)
821 const_iv (S_IFBLK)
822 const_iv (S_IFLNK)
823 const_iv (S_IFREG)
824 const_iv (S_IFDIR)
825 const_iv (S_IFWHT)
826 const_iv (S_IFSOCK)
827 const_iv (S_IFMT)
828
829 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
830 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
831 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
832 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
833 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
834 const_niv (FADV_DONTNEED , POSIX_FADV_DONTNEED)
835
836 const_niv (MADV_NORMAL , POSIX_MADV_NORMAL)
837 const_niv (MADV_SEQUENTIAL, POSIX_MADV_SEQUENTIAL)
838 const_niv (MADV_RANDOM , POSIX_MADV_RANDOM)
839 const_niv (MADV_WILLNEED , POSIX_MADV_WILLNEED)
840 const_niv (MADV_DONTNEED , POSIX_MADV_DONTNEED)
841
842 const_iv (ST_RDONLY)
843 const_iv (ST_NOSUID)
844 const_iv (ST_NODEV)
845 const_iv (ST_NOEXEC)
846 const_iv (ST_SYNCHRONOUS)
847 const_iv (ST_MANDLOCK)
848 const_iv (ST_WRITE)
849 const_iv (ST_APPEND)
850 const_iv (ST_IMMUTABLE)
851 const_iv (ST_NOATIME)
852 const_iv (ST_NODIRATIME)
853 const_iv (ST_RELATIME)
854
855 const_iv (PROT_NONE)
856 const_iv (PROT_EXEC)
857 const_iv (PROT_READ)
858 const_iv (PROT_WRITE)
859
860 /*const_iv (MAP_FIXED)*/
861 const_iv (MAP_PRIVATE)
862 const_iv (MAP_SHARED)
863 const_iv (MAP_ANONYMOUS)
864
865 /* linuxish */
866 const_iv (MAP_HUGETLB)
867 const_iv (MAP_LOCKED)
868 const_iv (MAP_NORESERVE)
869 const_iv (MAP_POPULATE)
870 const_iv (MAP_NONBLOCK)
871
872 const_eio (MCL_FUTURE)
873 const_eio (MCL_CURRENT)
874
875 const_eio (MS_ASYNC)
876 const_eio (MS_INVALIDATE)
877 const_eio (MS_SYNC)
878
879 const_eio (MT_MODIFY)
880
881 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE)
882 const_eio (SYNC_FILE_RANGE_WRITE)
883 const_eio (SYNC_FILE_RANGE_WAIT_AFTER)
884
885 const_eio (FALLOC_FL_KEEP_SIZE)
886
887 const_eio (READDIR_DENTS)
888 const_eio (READDIR_DIRS_FIRST)
889 const_eio (READDIR_STAT_ORDER)
890 const_eio (READDIR_FOUND_UNKNOWN)
891
892 const_eio (DT_UNKNOWN)
893 const_eio (DT_FIFO)
894 const_eio (DT_CHR)
895 const_eio (DT_DIR)
896 const_eio (DT_BLK)
897 const_eio (DT_REG)
898 const_eio (DT_LNK)
899 const_eio (DT_SOCK)
900 const_eio (DT_WHT)
901 };
902
522 stash = gv_stashpv ("IO::AIO", 1); 903 aio_stash = gv_stashpv ("IO::AIO" , 1);
904 aio_req_stash = gv_stashpv ("IO::AIO::REQ", 1);
905 aio_grp_stash = gv_stashpv ("IO::AIO::GRP", 1);
523 906
524 newCONSTSUB (stash, "EXDEV", newSViv (EXDEV)); 907 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
525 newCONSTSUB (stash, "O_RDONLY", newSViv (O_RDONLY)); 908 newCONSTSUB (aio_stash, (char *)civ->name, newSViv (civ->iv));
526 newCONSTSUB (stash, "O_WRONLY", newSViv (O_WRONLY));
527 newCONSTSUB (stash, "O_CREAT", newSViv (O_CREAT));
528 newCONSTSUB (stash, "O_TRUNC", newSViv (O_TRUNC));
529#ifndef _WIN32
530 newCONSTSUB (stash, "S_IFIFO", newSViv (S_IFIFO));
531#endif
532 newCONSTSUB (stash, "S_IFIFO", newSViv (S_IFIFO));
533 newCONSTSUB (stash, "SYNC_FILE_RANGE_WAIT_BEFORE", newSViv (EIO_SYNC_FILE_RANGE_WAIT_BEFORE));
534 newCONSTSUB (stash, "SYNC_FILE_RANGE_WRITE" , newSViv (EIO_SYNC_FILE_RANGE_WRITE));
535 newCONSTSUB (stash, "SYNC_FILE_RANGE_WAIT_AFTER" , newSViv (EIO_SYNC_FILE_RANGE_WAIT_AFTER));
536 909
910 newCONSTSUB (aio_stash, "PAGESIZE", newSViv (PAGESIZE));
911
537 create_respipe (); 912 create_respipe ();
538 913
539 if (eio_init (want_poll, done_poll) < 0) 914 if (eio_init (want_poll, done_poll) < 0)
540 croak ("IO::AIO: unable to initialise eio library"); 915 croak ("IO::AIO: unable to initialise eio library");
541 916
542 /* atfork child called in fifo order, so before eio's handler */ 917 /* atfork child called in fifo order, so before eio's handler */
543 X_THREAD_ATFORK (0, 0, atfork_child); 918 X_THREAD_ATFORK (0, 0, atfork_child);
544} 919}
545 920
546void 921void
547max_poll_reqs (int nreqs) 922max_poll_reqs (unsigned int nreqs)
548 PROTOTYPE: $ 923 PROTOTYPE: $
549 CODE: 924 CODE:
550 eio_set_max_poll_reqs (nreqs); 925 eio_set_max_poll_reqs (nreqs);
551 926
552void 927void
554 PROTOTYPE: $ 929 PROTOTYPE: $
555 CODE: 930 CODE:
556 eio_set_max_poll_time (nseconds); 931 eio_set_max_poll_time (nseconds);
557 932
558void 933void
559min_parallel (int nthreads) 934min_parallel (unsigned int nthreads)
560 PROTOTYPE: $ 935 PROTOTYPE: $
561 CODE: 936 CODE:
562 eio_set_min_parallel (nthreads); 937 eio_set_min_parallel (nthreads);
563 938
564void 939void
565max_parallel (int nthreads) 940max_parallel (unsigned int nthreads)
566 PROTOTYPE: $ 941 PROTOTYPE: $
567 CODE: 942 CODE:
568 eio_set_max_parallel (nthreads); 943 eio_set_max_parallel (nthreads);
569 944
570void 945void
571max_idle (int nthreads) 946max_idle (unsigned int nthreads)
572 PROTOTYPE: $ 947 PROTOTYPE: $
573 CODE: 948 CODE:
574 eio_set_max_idle (nthreads); 949 eio_set_max_idle (nthreads);
575 950
576void 951void
952idle_timeout (unsigned int seconds)
953 PROTOTYPE: $
954 CODE:
955 eio_set_idle_timeout (seconds);
956
957void
577max_outstanding (int maxreqs) 958max_outstanding (unsigned int maxreqs)
578 PROTOTYPE: $ 959 PROTOTYPE: $
579 CODE: 960 CODE:
580 max_outstanding = maxreqs; 961 max_outstanding = maxreqs;
581 962
582void 963void
583aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef) 964aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef)
584 PROTOTYPE: $$$;$
585 PPCODE: 965 PPCODE:
586{ 966{
587 dREQ; 967 dREQ;
588 968
589 req->type = EIO_OPEN; 969 req->type = EIO_OPEN;
595 REQ_SEND; 975 REQ_SEND;
596} 976}
597 977
598void 978void
599aio_fsync (SV *fh, SV *callback=&PL_sv_undef) 979aio_fsync (SV *fh, SV *callback=&PL_sv_undef)
600 PROTOTYPE: $;$
601 ALIAS: 980 ALIAS:
602 aio_fsync = EIO_FSYNC 981 aio_fsync = EIO_FSYNC
603 aio_fdatasync = EIO_FDATASYNC 982 aio_fdatasync = EIO_FDATASYNC
604 PPCODE: 983 PPCODE:
605{ 984{
606 int fd = extract_fd (fh, 0); 985 int fd = s_fileno_croak (fh, 0);
607 dREQ; 986 dREQ;
608 987
609 req->type = ix; 988 req->type = ix;
610 req->sv1 = newSVsv (fh); 989 req->sv1 = newSVsv (fh);
611 req->int1 = fd; 990 req->int1 = fd;
612 991
613 REQ_SEND (req); 992 REQ_SEND (req);
614} 993}
615 994
616void 995void
617aio_sync_file_range (SV *fh, SV *offset, SV *nbytes, IV flags, SV *callback=&PL_sv_undef) 996aio_sync_file_range (SV *fh, off_t offset, size_t nbytes, UV flags, SV *callback=&PL_sv_undef)
618 PROTOTYPE: $$$$;$
619 PPCODE: 997 PPCODE:
620{ 998{
621 int fd = extract_fd (fh, 0); 999 int fd = s_fileno_croak (fh, 0);
622 dREQ; 1000 dREQ;
623 1001
624 req->type = EIO_SYNC_FILE_RANGE; 1002 req->type = EIO_SYNC_FILE_RANGE;
625 req->sv1 = newSVsv (fh); 1003 req->sv1 = newSVsv (fh);
626 req->int1 = fd; 1004 req->int1 = fd;
627 req->offs = SvVAL64 (offset); 1005 req->offs = offset;
628 req->size = SvVAL64 (nbytes); 1006 req->size = nbytes;
629 req->int2 = flags; 1007 req->int2 = flags;
630 1008
631 REQ_SEND (req); 1009 REQ_SEND (req);
632} 1010}
633 1011
634void 1012void
1013aio_fallocate (SV *fh, int mode, off_t offset, size_t len, SV *callback=&PL_sv_undef)
1014 PPCODE:
1015{
1016 int fd = s_fileno_croak (fh, 0);
1017 dREQ;
1018
1019 req->type = EIO_FALLOCATE;
1020 req->sv1 = newSVsv (fh);
1021 req->int1 = fd;
1022 req->int2 = mode;
1023 req->offs = offset;
1024 req->size = len;
1025
1026 REQ_SEND (req);
1027}
1028
1029void
635aio_close (SV *fh, SV *callback=&PL_sv_undef) 1030aio_close (SV *fh, SV *callback=&PL_sv_undef)
636 PROTOTYPE: $;$
637 PPCODE: 1031 PPCODE:
638{ 1032{
639 static int close_pipe = -1; /* dummy fd to close fds via dup2 */ 1033 static int close_pipe = -1; /* dummy fd to close fds via dup2 */
640 int fd = extract_fd (fh, 0); 1034 int fd = s_fileno_croak (fh, 0);
641 dREQ; 1035 dREQ;
642 1036
643 if (close_pipe < 0) 1037 if (close_pipe < 0)
644 { 1038 {
645 int pipefd [2]; 1039 int pipefd [2];
663void 1057void
664aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef) 1058aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef)
665 ALIAS: 1059 ALIAS:
666 aio_read = EIO_READ 1060 aio_read = EIO_READ
667 aio_write = EIO_WRITE 1061 aio_write = EIO_WRITE
668 PROTOTYPE: $$$$$;$
669 PPCODE: 1062 PPCODE:
670{ 1063{
671 STRLEN svlen; 1064 STRLEN svlen;
672 int fd = extract_fd (fh, ix == EIO_WRITE); 1065 int fd = s_fileno_croak (fh, ix == EIO_WRITE);
673 char *svptr = SvPVbyte (data, svlen); 1066 char *svptr = SvPVbyte (data, svlen);
674 UV len = SvUV (length); 1067 UV len = SvUV (length);
675
676 if (SvTYPE (data) > SVt_PVMG || SvROK (data))
677 croak ("illegal data argument '%s', must be plain scalar string", SvPV_nolen (data));
678
679 SvUPGRADE (data, SVt_PV);
680 SvPOK_only (data);
681 1068
682 if (dataoffset < 0) 1069 if (dataoffset < 0)
683 dataoffset += svlen; 1070 dataoffset += svlen;
684 1071
685 if (dataoffset < 0 || dataoffset > svlen) 1072 if (dataoffset < 0 || dataoffset > svlen)
691 if (!SvOK (length) || len + dataoffset > svlen) 1078 if (!SvOK (length) || len + dataoffset > svlen)
692 len = svlen - dataoffset; 1079 len = svlen - dataoffset;
693 } 1080 }
694 else 1081 else
695 { 1082 {
696 /* read: grow scalar as necessary */ 1083 /* read: check type and grow scalar as necessary */
1084 SvUPGRADE (data, SVt_PV);
697 svptr = SvGROW (data, len + dataoffset + 1); 1085 svptr = SvGROW (data, len + dataoffset + 1);
698 } 1086 }
699
700 if (len < 0)
701 croak ("length must not be negative");
702 1087
703 { 1088 {
704 dREQ; 1089 dREQ;
705 1090
706 req->type = ix; 1091 req->type = ix;
722 } 1107 }
723} 1108}
724 1109
725void 1110void
726aio_readlink (SV8 *path, SV *callback=&PL_sv_undef) 1111aio_readlink (SV8 *path, SV *callback=&PL_sv_undef)
727 PROTOTYPE: $$;$ 1112 ALIAS:
1113 aio_readlink = EIO_READLINK
1114 aio_realpath = EIO_REALPATH
728 PPCODE: 1115 PPCODE:
729{ 1116{
730 SV *data; 1117 SV *data;
731 dREQ; 1118 dREQ;
732 1119
733 req->type = EIO_READLINK; 1120 req->type = ix;
734 req->sv1 = newSVsv (path); 1121 req->sv1 = newSVsv (path);
735 req->ptr1 = SvPVbyte_nolen (req->sv1); 1122 req->ptr1 = SvPVbyte_nolen (req->sv1);
736 1123
737 REQ_SEND; 1124 REQ_SEND;
738} 1125}
739 1126
740void 1127void
741aio_sendfile (SV *out_fh, SV *in_fh, SV *in_offset, UV length, SV *callback=&PL_sv_undef) 1128aio_sendfile (SV *out_fh, SV *in_fh, off_t in_offset, size_t length, SV *callback=&PL_sv_undef)
742 PROTOTYPE: $$$$;$
743 PPCODE: 1129 PPCODE:
744{ 1130{
745 int ifd = extract_fd (in_fh , 0); 1131 int ifd = s_fileno_croak (in_fh , 0);
746 int ofd = extract_fd (out_fh, 0); 1132 int ofd = s_fileno_croak (out_fh, 1);
747 dREQ; 1133 dREQ;
748 1134
749 req->type = EIO_SENDFILE; 1135 req->type = EIO_SENDFILE;
750 req->sv1 = newSVsv (out_fh); 1136 req->sv1 = newSVsv (out_fh);
751 req->int1 = ofd; 1137 req->int1 = ofd;
752 req->sv2 = newSVsv (in_fh); 1138 req->sv2 = newSVsv (in_fh);
753 req->int2 = ifd; 1139 req->int2 = ifd;
754 req->offs = SvVAL64 (in_offset); 1140 req->offs = in_offset;
755 req->size = length; 1141 req->size = length;
756 1142
757 REQ_SEND; 1143 REQ_SEND;
758} 1144}
759 1145
760void 1146void
761aio_readahead (SV *fh, SV *offset, IV length, SV *callback=&PL_sv_undef) 1147aio_readahead (SV *fh, off_t offset, size_t length, SV *callback=&PL_sv_undef)
762 PROTOTYPE: $$$;$
763 PPCODE: 1148 PPCODE:
764{ 1149{
765 int fd = extract_fd (fh, 0); 1150 int fd = s_fileno_croak (fh, 0);
766 dREQ; 1151 dREQ;
767 1152
768 req->type = EIO_READAHEAD; 1153 req->type = EIO_READAHEAD;
769 req->sv1 = newSVsv (fh); 1154 req->sv1 = newSVsv (fh);
770 req->int1 = fd; 1155 req->int1 = fd;
771 req->offs = SvVAL64 (offset); 1156 req->offs = offset;
772 req->size = length; 1157 req->size = length;
773 1158
774 REQ_SEND; 1159 REQ_SEND;
775} 1160}
776 1161
777void 1162void
778aio_stat (SV8 *fh_or_path, SV *callback=&PL_sv_undef) 1163aio_stat (SV8 *fh_or_path, SV *callback=&PL_sv_undef)
779 ALIAS: 1164 ALIAS:
780 aio_stat = EIO_STAT 1165 aio_stat = EIO_STAT
781 aio_lstat = EIO_LSTAT 1166 aio_lstat = EIO_LSTAT
1167 aio_statvfs = EIO_STATVFS
782 PPCODE: 1168 PPCODE:
783{ 1169{
784 dREQ; 1170 dREQ;
785 1171
786 req->sv1 = newSVsv (fh_or_path); 1172 req->sv1 = newSVsv (fh_or_path);
790 req->type = ix; 1176 req->type = ix;
791 req->ptr1 = SvPVbyte_nolen (req->sv1); 1177 req->ptr1 = SvPVbyte_nolen (req->sv1);
792 } 1178 }
793 else 1179 else
794 { 1180 {
795 req->type = EIO_FSTAT; 1181 req->type = ix == EIO_STATVFS ? EIO_FSTATVFS : EIO_FSTAT;
796 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path))); 1182 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
797 } 1183 }
798 1184
799 REQ_SEND; 1185 REQ_SEND;
800} 1186}
1187
1188UV
1189major (UV dev)
1190 ALIAS:
1191 minor = 1
1192 CODE:
1193 RETVAL = ix ? major (dev) : minor (dev);
1194 OUTPUT:
1195 RETVAL
1196
1197UV
1198makedev (UV maj, UV min)
1199 CODE:
1200 RETVAL = makedev (maj, min);
1201 OUTPUT:
1202 RETVAL
801 1203
802void 1204void
803aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef) 1205aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef)
804 PPCODE: 1206 PPCODE:
805{ 1207{
895 1297
896 REQ_SEND; 1298 REQ_SEND;
897} 1299}
898 1300
899void 1301void
1302aio_readdirx (SV8 *pathname, IV flags, SV *callback=&PL_sv_undef)
1303 PPCODE:
1304{
1305 dREQ;
1306
1307 req->type = EIO_READDIR;
1308 req->sv1 = newSVsv (pathname);
1309 req->ptr1 = SvPVbyte_nolen (req->sv1);
1310 req->int1 = flags | EIO_READDIR_DENTS | EIO_READDIR_CUSTOM1;
1311
1312 if (flags & EIO_READDIR_DENTS)
1313 req->int1 |= EIO_READDIR_CUSTOM2;
1314
1315 REQ_SEND;
1316}
1317
1318void
900aio_unlink (SV8 *pathname, SV *callback=&PL_sv_undef) 1319aio_unlink (SV8 *pathname, SV *callback=&PL_sv_undef)
901 ALIAS: 1320 ALIAS:
902 aio_unlink = EIO_UNLINK 1321 aio_unlink = EIO_UNLINK
903 aio_rmdir = EIO_RMDIR 1322 aio_rmdir = EIO_RMDIR
904 aio_readdir = EIO_READDIR 1323 aio_readdir = EIO_READDIR
946 1365
947 REQ_SEND; 1366 REQ_SEND;
948} 1367}
949 1368
950void 1369void
1370aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef)
1371 ALIAS:
1372 aio_mtouch = EIO_MTOUCH
1373 aio_msync = EIO_MSYNC
1374 PPCODE:
1375{
1376 STRLEN svlen;
1377 char *svptr = SvPVbyte (data, svlen);
1378 UV len = SvUV (length);
1379
1380 if (offset < 0)
1381 offset += svlen;
1382
1383 if (offset < 0 || offset > svlen)
1384 croak ("offset outside of scalar");
1385
1386 if (!SvOK (length) || len + offset > svlen)
1387 len = svlen - offset;
1388
1389 {
1390 dREQ;
1391
1392 req->type = ix;
1393 req->sv2 = SvREFCNT_inc (data);
1394 req->ptr2 = (char *)svptr + offset;
1395 req->size = len;
1396 req->int1 = flags;
1397
1398 REQ_SEND;
1399 }
1400}
1401
1402void
1403aio_mlock (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, SV *callback=&PL_sv_undef)
1404 PPCODE:
1405{
1406 STRLEN svlen;
1407 char *svptr = SvPVbyte (data, svlen);
1408 UV len = SvUV (length);
1409
1410 if (offset < 0)
1411 offset += svlen;
1412
1413 if (offset < 0 || offset > svlen)
1414 croak ("offset outside of scalar");
1415
1416 if (!SvOK (length) || len + offset > svlen)
1417 len = svlen - offset;
1418
1419 {
1420 dREQ;
1421
1422 req->type = EIO_MLOCK;
1423 req->sv2 = SvREFCNT_inc (data);
1424 req->ptr2 = (char *)svptr + offset;
1425 req->size = len;
1426
1427 REQ_SEND;
1428 }
1429}
1430
1431void
1432aio_mlockall (IV flags, SV *callback=&PL_sv_undef)
1433 PPCODE:
1434{
1435 dREQ;
1436
1437 req->type = EIO_MLOCKALL;
1438 req->int1 = flags;
1439
1440 REQ_SEND;
1441}
1442
1443void
951aio_busy (double delay, SV *callback=&PL_sv_undef) 1444aio_busy (double delay, SV *callback=&PL_sv_undef)
952 PPCODE: 1445 PPCODE:
953{ 1446{
954 dREQ; 1447 dREQ;
955 1448
959 REQ_SEND; 1452 REQ_SEND;
960} 1453}
961 1454
962void 1455void
963aio_group (SV *callback=&PL_sv_undef) 1456aio_group (SV *callback=&PL_sv_undef)
964 PROTOTYPE: ;$
965 PPCODE: 1457 PPCODE:
966{ 1458{
967 dREQ; 1459 dREQ;
968 1460
969 req->type = EIO_GROUP; 1461 req->type = EIO_GROUP;
970 1462
971 req_submit (req); 1463 req_submit (req);
972 XPUSHs (req_sv (req, AIO_GRP_KLASS)); 1464 XPUSHs (req_sv (req, aio_grp_stash));
973} 1465}
974 1466
975void 1467void
976aio_nop (SV *callback=&PL_sv_undef) 1468aio_nop (SV *callback=&PL_sv_undef)
977 ALIAS: 1469 ALIAS:
986 REQ_SEND; 1478 REQ_SEND;
987} 1479}
988 1480
989int 1481int
990aioreq_pri (int pri = 0) 1482aioreq_pri (int pri = 0)
991 PROTOTYPE: ;$
992 CODE: 1483 CODE:
993 RETVAL = next_pri; 1484 RETVAL = next_pri;
994 if (items > 0) 1485 if (items > 0)
995 { 1486 {
996 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN; 1487 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN;
1008 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX; 1499 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX;
1009 next_pri = nice; 1500 next_pri = nice;
1010 1501
1011void 1502void
1012flush () 1503flush ()
1013 PROTOTYPE:
1014 CODE: 1504 CODE:
1015 while (eio_nreqs ()) 1505 while (eio_nreqs ())
1016 { 1506 {
1017 poll_wait (); 1507 poll_wait ();
1018 poll_cb (); 1508 poll_cb ();
1019 } 1509 }
1020 1510
1021int 1511int
1022poll() 1512poll ()
1023 PROTOTYPE:
1024 CODE: 1513 CODE:
1025 poll_wait (); 1514 poll_wait ();
1026 RETVAL = poll_cb (); 1515 RETVAL = poll_cb ();
1027 OUTPUT: 1516 OUTPUT:
1028 RETVAL 1517 RETVAL
1029 1518
1030int 1519int
1031poll_fileno() 1520poll_fileno ()
1032 PROTOTYPE:
1033 CODE: 1521 CODE:
1034 RETVAL = respipe [0]; 1522 RETVAL = s_epipe_fd (&respipe);
1035 OUTPUT: 1523 OUTPUT:
1036 RETVAL 1524 RETVAL
1037 1525
1038int 1526int
1039poll_cb(...) 1527poll_cb (...)
1040 PROTOTYPE: 1528 PROTOTYPE:
1041 CODE: 1529 CODE:
1042 RETVAL = poll_cb (); 1530 RETVAL = poll_cb ();
1043 OUTPUT: 1531 OUTPUT:
1044 RETVAL 1532 RETVAL
1045 1533
1046void 1534void
1047poll_wait() 1535poll_wait ()
1048 PROTOTYPE:
1049 CODE: 1536 CODE:
1050 poll_wait (); 1537 poll_wait ();
1051 1538
1052int 1539int
1053nreqs() 1540nreqs ()
1054 PROTOTYPE:
1055 CODE: 1541 CODE:
1056 RETVAL = eio_nreqs (); 1542 RETVAL = eio_nreqs ();
1057 OUTPUT: 1543 OUTPUT:
1058 RETVAL 1544 RETVAL
1059 1545
1060int 1546int
1061nready() 1547nready ()
1062 PROTOTYPE:
1063 CODE: 1548 CODE:
1064 RETVAL = eio_nready (); 1549 RETVAL = eio_nready ();
1065 OUTPUT: 1550 OUTPUT:
1066 RETVAL 1551 RETVAL
1067 1552
1068int 1553int
1069npending() 1554npending ()
1070 PROTOTYPE:
1071 CODE: 1555 CODE:
1072 RETVAL = eio_npending (); 1556 RETVAL = eio_npending ();
1073 OUTPUT: 1557 OUTPUT:
1074 RETVAL 1558 RETVAL
1075 1559
1076int 1560int
1077nthreads() 1561nthreads ()
1078 PROTOTYPE:
1079 CODE: 1562 CODE:
1080 RETVAL = eio_nthreads (); 1563 RETVAL = eio_nthreads ();
1081 OUTPUT: 1564 OUTPUT:
1082 RETVAL 1565 RETVAL
1083 1566
1567int
1568fadvise (aio_rfd fh, off_t offset, off_t length, IV advice)
1569 CODE:
1570 RETVAL = posix_fadvise (fh, offset, length, advice);
1571 OUTPUT:
1572 RETVAL
1573
1574ssize_t
1575sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count)
1576 CODE:
1577 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count);
1578 OUTPUT:
1579 RETVAL
1580
1581void
1582mmap (SV *scalar, size_t length, int prot, int flags, SV *fh, off_t offset = 0)
1583 PPCODE:
1584 sv_unmagic (scalar, MMAP_MAGIC);
1585{
1586 int fd = SvOK (fh) ? s_fileno_croak (fh, flags & PROT_WRITE) : -1;
1587 void *addr = (void *)mmap (0, length, prot, flags, fd, offset);
1588 if (addr == (void *)-1)
1589 XSRETURN_NO;
1590
1591 sv_force_normal (scalar);
1592
1593 /* we store the length in mg_obj, as namlen is I32 :/ */
1594 sv_magicext (scalar, 0, MMAP_MAGIC, &mmap_vtbl, (char *)addr, 0)
1595 ->mg_obj = (SV *)length;
1596
1597 SvUPGRADE (scalar, SVt_PV); /* nop... */
1598
1599 if (!(prot & PROT_WRITE))
1600 SvREADONLY_on (scalar);
1601
1602 if (SvLEN (scalar))
1603 Safefree (SvPVX (scalar));
1604
1605 SvPVX (scalar) = (char *)addr;
1606 SvCUR_set (scalar, length);
1607 SvLEN_set (scalar, 0);
1608 SvPOK_only (scalar);
1609
1610 XSRETURN_YES;
1611}
1612
1613void
1614munmap (SV *scalar)
1615 CODE:
1616 sv_unmagic (scalar, MMAP_MAGIC);
1617
1618int
1619madvise (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef, IV advice_or_prot)
1620 ALIAS:
1621 mprotect = 1
1622 CODE:
1623{
1624 STRLEN svlen;
1625 void *addr = SvPVbyte (scalar, svlen);
1626 size_t len = SvUV (length);
1627
1628 if (offset < 0)
1629 offset += svlen;
1630
1631 if (offset < 0 || offset > svlen)
1632 croak ("offset outside of scalar");
1633
1634 if (!SvOK (length) || len + offset > svlen)
1635 len = svlen - offset;
1636
1637 addr = (void *)(((intptr_t)addr) + offset);
1638 eio_page_align (&addr, &len);
1639
1640 switch (ix)
1641 {
1642 case 0: RETVAL = posix_madvise (addr, len, advice_or_prot); break;
1643 case 1: RETVAL = mprotect (addr, len, advice_or_prot); break;
1644 }
1645}
1646 OUTPUT:
1647 RETVAL
1648
1649int
1650munlock (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef)
1651 CODE:
1652{
1653 STRLEN svlen;
1654 void *addr = SvPVbyte (scalar, svlen);
1655 size_t len = SvUV (length);
1656
1657 if (offset < 0)
1658 offset += svlen;
1659
1660 if (offset < 0 || offset > svlen)
1661 croak ("offset outside of scalar");
1662
1663 if (!SvOK (length) || len + offset > svlen)
1664 len = svlen - offset;
1665
1666 addr = (void *)(((intptr_t)addr) + offset);
1667 eio_page_align (&addr, &len);
1668#if _POSIX_MEMLOCK_RANGE
1669 RETVAL = munlock (addr, len);
1670#else
1671 RETVAL = ((errno = ENOSYS), -1);
1672#endif
1673}
1674 OUTPUT:
1675 RETVAL
1676
1677int
1678munlockall ()
1679 CODE:
1680#if _POSIX_MEMLOCK
1681 munlockall ();
1682#else
1683 RETVAL = -1;
1684 errno = ENOSYS;
1685#endif
1686 OUTPUT:
1687 RETVAL
1688
1084void _on_next_submit (SV *cb) 1689void _on_next_submit (SV *cb)
1085 CODE: 1690 CODE:
1086 SvREFCNT_dec (on_next_submit); 1691 SvREFCNT_dec (on_next_submit);
1087 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0; 1692 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0;
1088 1693
1102 if (GIMME_V != G_VOID) 1707 if (GIMME_V != G_VOID)
1103 XPUSHs (req->callback ? sv_2mortal (newRV_inc (req->callback)) : &PL_sv_undef); 1708 XPUSHs (req->callback ? sv_2mortal (newRV_inc (req->callback)) : &PL_sv_undef);
1104 1709
1105 if (items > 1) 1710 if (items > 1)
1106 { 1711 {
1107 SV *cb_cv = get_cb (callback); 1712 SV *cb_cv =get_cb (callback);
1108 1713
1109 SvREFCNT_dec (req->callback); 1714 SvREFCNT_dec (req->callback);
1110 req->callback = SvREFCNT_inc (cb_cv); 1715 req->callback = SvREFCNT_inc (cb_cv);
1111 } 1716 }
1112} 1717}
1149 AV *av; 1754 AV *av;
1150 1755
1151 grp->errorno = errno; 1756 grp->errorno = errno;
1152 1757
1153 av = newAV (); 1758 av = newAV ();
1759 av_extend (av, items - 1);
1154 1760
1155 for (i = 1; i < items; ++i ) 1761 for (i = 1; i < items; ++i )
1156 av_push (av, newSVsv (ST (i))); 1762 av_push (av, newSVsv (ST (i)));
1157 1763
1158 SvREFCNT_dec (grp->sv1); 1764 SvREFCNT_dec (grp->sv1);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines