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.160 by root, Thu Jan 7 18:25:51 2010 UTC vs.
Revision 1.202 by root, Thu Sep 29 10:01:35 2011 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>
17#include <limits.h> 16#include <limits.h>
18#include <fcntl.h> 17#include <fcntl.h>
19#include <sched.h> 18#include <sched.h>
20 19
20#if _POSIX_MEMLOCK || _POSIX_MEMLOCK_RANGE || _POSIX_MAPPED_FILES
21# include <sys/mman.h>
22#endif
23
21/* perl namespace pollution */ 24/* perl namespace pollution */
22#undef VERSION 25#undef VERSION
23
24#ifdef _WIN32
25
26# define EIO_STRUCT_DIRENT Direntry_t
27# undef malloc
28# undef free
29
30// perl overrides all those nice win32 functions
31# undef open
32# undef read
33# undef write
34# undef send
35# undef recv
36# undef stat
37# undef fstat
38# define lstat stat
39# undef truncate
40# undef ftruncate
41# undef open
42# undef close
43# undef unlink
44# undef rmdir
45# undef rename
46# undef lseek
47
48# define chown(a,b,c) (errno = ENOSYS, -1)
49# define fchown(a,b,c) (errno = ENOSYS, -1)
50# define fchmod(a,b) (errno = ENOSYS, -1)
51# define symlink(a,b) (errno = ENOSYS, -1)
52# define readlink(a,b,c) (errno = ENOSYS, -1)
53# define mknod(a,b,c) (errno = ENOSYS, -1)
54# define truncate(a,b) (errno = ENOSYS, -1)
55# define ftruncate(fd,o) chsize ((fd), (o))
56# define fsync(fd) _commit (fd)
57# define opendir(fd) (errno = ENOSYS, 0)
58# define readdir(fd) (errno = ENOSYS, -1)
59# define closedir(fd) (errno = ENOSYS, -1)
60# define mkdir(a,b) mkdir (a)
61
62#else
63
64# include <sys/time.h>
65# include <sys/select.h>
66# include <unistd.h>
67# include <utime.h>
68# include <signal.h>
69# define EIO_STRUCT_DIRENT struct dirent
70
71#endif
72 26
73/* perl stupidly overrides readdir and maybe others */ 27/* perl stupidly overrides readdir and maybe others */
74/* with thread-unsafe versions, imagine that :( */ 28/* with thread-unsafe versions, imagine that :( */
75#undef readdir 29#undef readdir
76#undef opendir 30#undef opendir
77#undef closedir 31#undef closedir
32
33#ifdef _WIN32
34
35 // perl overrides all those nice libc functions
36
37 #undef malloc
38 #undef free
39 #undef open
40 #undef read
41 #undef write
42 #undef send
43 #undef recv
44 #undef stat
45 #undef lstat
46 #undef fstat
47 #undef truncate
48 #undef ftruncate
49 #undef open
50 #undef link
51 #undef close
52 #undef unlink
53 #undef mkdir
54 #undef rmdir
55 #undef rename
56 #undef lseek
57 #undef opendir
58 #undef readdir
59 #undef closedir
60 #undef chmod
61 #undef fchmod
62 #undef dup
63 #undef dup2
64 #undef abort
65 #undef pipe
66
67#else
68
69 #include <sys/time.h>
70 #include <sys/select.h>
71 #include <unistd.h>
72 #include <utime.h>
73 #include <signal.h>
74
75#endif
78 76
79#define EIO_STRUCT_STAT Stat_t 77#define EIO_STRUCT_STAT Stat_t
80 78
81/* use NV for 32 bit perls as it allows larger offsets */ 79/* use NV for 32 bit perls as it allows larger offsets */
82#if IVSIZE >= 8 80#if IVSIZE >= 8
104 102
105typedef SV SV8; /* byte-sv, used for argument-checking */ 103typedef SV SV8; /* byte-sv, used for argument-checking */
106typedef int aio_rfd; /* read file desriptor */ 104typedef int aio_rfd; /* read file desriptor */
107typedef int aio_wfd; /* write file descriptor */ 105typedef int aio_wfd; /* write file descriptor */
108 106
109static HV *aio_stash, *aio_req_stash, *aio_grp_stash; 107static HV *aio_stash, *aio_req_stash, *aio_grp_stash, *aio_wd_stash;
110 108
111#define EIO_REQ_MEMBERS \ 109#define EIO_REQ_MEMBERS \
112 SV *callback; \ 110 SV *callback; \
113 SV *sv1, *sv2; \ 111 SV *sv1, *sv2; \
112 SV *sv3, *sv4; \
114 STRLEN stroffset; \ 113 STRLEN stroffset; \
115 SV *self; 114 SV *self;
116 115
117#define EIO_NO_WRAPPERS 1 116#define EIO_NO_WRAPPERS 1
118 117
118#include "libeio/config.h"
119#include "libeio/eio.h" 119#include "libeio/eio.h"
120
121#ifndef POSIX_FADV_NORMAL
122# define POSIX_FADV_NORMAL 0
123# define NO_FADVISE 1
124#endif
125
126#ifndef POSIX_FADV_SEQUENTIAL
127# define POSIX_FADV_SEQUENTIAL 0
128#endif
129
130#ifndef POSIX_FADV_RANDOM
131# define POSIX_FADV_RANDOM 0
132#endif
133
134#ifndef POSIX_FADV_NOREUSE
135# define POSIX_FADV_NOREUSE 0
136#endif
137
138#ifndef POSIX_FADV_WILLNEED
139# define POSIX_FADV_WILLNEED 0
140#endif
141
142#ifndef POSIX_FADV_DONTNEED
143# define POSIX_FADV_DONTNEED 0
144#endif
145
146#ifndef ST_NODEV
147# define ST_NODEV 0
148#endif
149
150#ifndef ST_NOEXEC
151# define ST_NOEXEC 0
152#endif
153
154#ifndef ST_SYNCHRONOUS
155# define ST_SYNCHRONOUS 0
156#endif
157
158#ifndef ST_MANDLOCK
159# define ST_MANDLOCK 0
160#endif
161
162#ifndef ST_WRITE
163# define ST_WRITE 0
164#endif
165
166#ifndef ST_APPEND
167# define ST_APPEND 0
168#endif
169
170#ifndef ST_IMMUTABLE
171# define ST_IMMUTABLE 0
172#endif
173
174#ifndef ST_NOATIME
175# define ST_NOATIME 0
176#endif
177
178#ifndef ST_NODIRATIME
179# define ST_NODIRATIME 0
180#endif
181
182#ifndef ST_RELATIME
183# define ST_RELATIME 0
184#endif
185 120
186static int req_invoke (eio_req *req); 121static int req_invoke (eio_req *req);
187#define EIO_FINISH(req) req_invoke (req) 122#define EIO_FINISH(req) req_invoke (req)
188static void req_destroy (eio_req *grp); 123static void req_destroy (eio_req *grp);
189#define EIO_DESTROY(req) req_destroy (req) 124#define EIO_DESTROY(req) req_destroy (req)
190 125
126#include "libeio/eio.c"
127
128/* Linux/others */
129#ifndef O_ASYNC
130# define O_ASYNC 0
131#endif
132#ifndef O_DIRECT
133# define O_DIRECT 0
134#endif
135#ifndef O_NOATIME
136# define O_NOATIME 0
137#endif
138
139/* POSIX */
140#ifndef O_CLOEXEC
141# define O_CLOEXEC 0
142#endif
143#ifndef O_NOFOLLOW
144# define O_NOFOLLOW 0
145#endif
146#ifndef O_NOCTTY
147# define O_NOCTTY 0
148#endif
149#ifndef O_NONBLOCK
150# define O_NONBLOCK 0
151#endif
152#ifndef O_EXEC
153# define O_EXEC 0
154#endif
155#ifndef O_SEARCH
156# define O_SEARCH 0
157#endif
158#ifndef O_DIRECTORY
159# define O_DIRECTORY 0
160#endif
161#ifndef O_DSYNC
162# define O_DSYNC 0
163#endif
164#ifndef O_RSYNC
165# define O_RSYNC 0
166#endif
167#ifndef O_SYNC
168# define O_SYNC 0
169#endif
170#ifndef O_TTY_INIT
171# define O_TTY_INIT 0
172#endif
173
174#ifndef POSIX_FADV_NORMAL
175# define POSIX_FADV_NORMAL 0
176#endif
177#ifndef POSIX_FADV_SEQUENTIAL
178# define POSIX_FADV_SEQUENTIAL 0
179#endif
180#ifndef POSIX_FADV_RANDOM
181# define POSIX_FADV_RANDOM 0
182#endif
183#ifndef POSIX_FADV_NOREUSE
184# define POSIX_FADV_NOREUSE 0
185#endif
186#ifndef POSIX_FADV_WILLNEED
187# define POSIX_FADV_WILLNEED 0
188#endif
189#ifndef POSIX_FADV_DONTNEED
190# define POSIX_FADV_DONTNEED 0
191#endif
192
193#if !HAVE_POSIX_FADVISE
194# define posix_fadvise(a,b,c,d) errno = ENOSYS /* also return ENOSYS */
195#endif
196
197#ifndef POSIX_MADV_NORMAL
198# define POSIX_MADV_NORMAL 0
199#endif
200#ifndef POSIX_MADV_SEQUENTIAL
201# define POSIX_MADV_SEQUENTIAL 0
202#endif
203#ifndef POSIX_MADV_RANDOM
204# define POSIX_MADV_RANDOM 0
205#endif
206#ifndef POSIX_MADV_WILLNEED
207# define POSIX_MADV_WILLNEED 0
208#endif
209#ifndef POSIX_MADV_DONTNEED
210# define POSIX_MADV_DONTNEED 0
211#endif
212
213#if !HAVE_POSIX_MADVISE
214# define posix_madvise(a,b,c) errno = ENOSYS /* also return ENOSYS */
215#endif
216
217#ifndef PROT_NONE
218# define PROT_NONE 0
219#endif
220#ifndef PROT_READ
221# define PROT_READ 0
222#endif
223#ifndef PROT_WRITE
224# define PROT_READ 0
225#endif
226#ifndef PROT_EXEC
227# define PROT_EXEC 0
228#endif
229
230#ifndef ST_RDONLY
231# define ST_RDONLY 0
232#endif
233#ifndef ST_NOSUID
234# define ST_NOSUID 0
235#endif
236#ifndef ST_NODEV
237# define ST_NODEV 0
238#endif
239#ifndef ST_NOEXEC
240# define ST_NOEXEC 0
241#endif
242#ifndef ST_SYNCHRONOUS
243# define ST_SYNCHRONOUS 0
244#endif
245#ifndef ST_MANDLOCK
246# define ST_MANDLOCK 0
247#endif
248#ifndef ST_WRITE
249# define ST_WRITE 0
250#endif
251#ifndef ST_APPEND
252# define ST_APPEND 0
253#endif
254#ifndef ST_IMMUTABLE
255# define ST_IMMUTABLE 0
256#endif
257#ifndef ST_NOATIME
258# define ST_NOATIME 0
259#endif
260#ifndef ST_NODIRATIME
261# define ST_NODIRATIME 0
262#endif
263#ifndef ST_RELATIME
264# define ST_RELATIME 0
265#endif
266
267#ifndef S_IFIFO
268# define S_IFIFO 0
269#endif
270#ifndef S_IFCHR
271# define S_IFCHR 0
272#endif
273#ifndef S_IFBLK
274# define S_IFBLK 0
275#endif
276#ifndef S_IFLNK
277# define S_IFLNK 0
278#endif
279#ifndef S_IFREG
280# define S_IFREG 0
281#endif
282#ifndef S_IFDIR
283# define S_IFDIR 0
284#endif
285#ifndef S_IFWHT
286# define S_IFWHT 0
287#endif
288#ifndef S_IFSOCK
289# define S_IFSOCK 0
290#endif
291
292#ifndef MAP_ANONYMOUS
293# ifdef MAP_ANON
294# define MAP_ANONYMOUS MAP_ANON
295# else
296# define MAP_ANONYMOUS MAP_FIXED /* and hope this fails */
297# endif
298#endif
299#ifndef MAP_HUGETLB
300# define MAP_HUGETLB 0
301#endif
302#ifndef MAP_LOCKED
303# define MAP_LOCKED 0
304#endif
305#ifndef MAP_NORESERVE
306# define MAP_NORESERVE 0
307#endif
308#ifndef MAP_POPULATE
309# define MAP_POPULATE 0
310#endif
311#ifndef MAP_NONBLOCK
312# define MAP_NONBLOCK 0
313#endif
314
315#ifndef makedev
316# define makedev(maj,min) (((maj) << 8) | (min))
317#endif
318#ifndef major
319# define major(dev) ((dev) >> 8)
320#endif
321#ifndef minor
322# define minor(dev) ((dev) & 0xff)
323#endif
324
325#ifndef PAGESIZE
326# define PAGESIZE sysconf (_SC_PAGESIZE)
327#endif
328
191enum { 329enum {
192 FLAG_SV2_RO_OFF = 0x40, /* data was set readonly */ 330 FLAG_SV2_RO_OFF = 0x40, /* data was set readonly */
193}; 331};
194 332
195#include "libeio/eio.c"
196
197typedef eio_req *aio_req; 333typedef eio_req *aio_req;
198typedef eio_req *aio_req_ornot; 334typedef eio_req *aio_req_ornot;
335typedef eio_wd aio_wd;
199 336
200static SV *on_next_submit; 337static SV *on_next_submit;
201static int next_pri = EIO_PRI_DEFAULT; 338static int next_pri = EIO_PRI_DEFAULT;
202static int max_outstanding; 339static int max_outstanding;
203 340
204static s_epipe respipe; 341static s_epipe respipe;
205 342
206static void req_destroy (aio_req req); 343static void req_destroy (aio_req req);
207static void req_cancel (aio_req req); 344static void req_cancel (aio_req req);
208 345
209static void want_poll (void) 346static void
347want_poll (void)
210{ 348{
211 /* write a dummy byte to the pipe so fh becomes ready */ 349 /* write a dummy byte to the pipe so fh becomes ready */
212 s_epipe_signal (&respipe); 350 s_epipe_signal (&respipe);
213} 351}
214 352
215static void done_poll (void) 353static void
354done_poll (void)
216{ 355{
217 /* read any signals sent by the worker threads */ 356 /* read any signals sent by the worker threads */
218 s_epipe_drain (&respipe); 357 s_epipe_drain (&respipe);
219} 358}
220 359
221/* must be called at most once */ 360/* must be called at most once */
361static SV *
222static SV *req_sv (aio_req req, HV *stash) 362req_sv (aio_req req, HV *stash)
223{ 363{
224 if (!req->self) 364 if (!req->self)
225 { 365 {
226 req->self = (SV *)newHV (); 366 req->self = (SV *)newHV ();
227 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0); 367 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0);
228 } 368 }
229 369
230 return sv_2mortal (sv_bless (newRV_inc (req->self), stash)); 370 return sv_2mortal (sv_bless (newRV_inc (req->self), stash));
231} 371}
232 372
233static aio_req SvAIO_REQ (SV *sv) 373static SV *
374newSVaio_wd (aio_wd wd)
375{
376 return sv_bless (newRV_noinc (newSViv ((long)wd)), aio_wd_stash);
377}
378
379static aio_req
380SvAIO_REQ (SV *sv)
234{ 381{
235 MAGIC *mg; 382 MAGIC *mg;
236 383
237 if (!SvROK (sv) 384 if (!SvROK (sv)
238 || (SvSTASH (SvRV (sv)) != aio_grp_stash 385 || (SvSTASH (SvRV (sv)) != aio_grp_stash
243 mg = mg_find (SvRV (sv), PERL_MAGIC_ext); 390 mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
244 391
245 return mg ? (aio_req)mg->mg_ptr : 0; 392 return mg ? (aio_req)mg->mg_ptr : 0;
246} 393}
247 394
395static aio_wd
396SvAIO_WD (SV *sv)
397{
398 if (!SvROK (sv)
399 || SvSTASH (SvRV (sv)) != aio_wd_stash
400 || SvTYPE (SvRV (sv)) != SVt_PVMG)
401 croak ("IO::AIO: expected a working directory object as returned by aio_wd");
402
403 return (aio_wd)(long)SvIVX (SvRV (sv));
404}
405
406static void
248static void aio_grp_feed (aio_req grp) 407aio_grp_feed (aio_req grp)
249{ 408{
250 if (grp->sv2 && SvOK (grp->sv2)) 409 if (grp->sv2 && SvOK (grp->sv2))
251 { 410 {
252 dSP; 411 dSP;
253 412
261 FREETMPS; 420 FREETMPS;
262 LEAVE; 421 LEAVE;
263 } 422 }
264} 423}
265 424
425static void
266static void req_submit (eio_req *req) 426req_submit (eio_req *req)
267{ 427{
268 eio_submit (req); 428 eio_submit (req);
269 429
270 if (expect_false (on_next_submit)) 430 if (expect_false (on_next_submit))
271 { 431 {
278 PUTBACK; 438 PUTBACK;
279 call_sv (cb, G_DISCARD | G_EVAL); 439 call_sv (cb, G_DISCARD | G_EVAL);
280 } 440 }
281} 441}
282 442
443static int
283static int req_invoke (eio_req *req) 444req_invoke (eio_req *req)
284{ 445{
285 dSP;
286
287 if (req->flags & FLAG_SV2_RO_OFF) 446 if (req->flags & FLAG_SV2_RO_OFF)
288 SvREADONLY_off (req->sv2); 447 SvREADONLY_off (req->sv2);
289 448
290 if (!EIO_CANCELLED (req) && req->callback) 449 if (!EIO_CANCELLED (req) && req->callback)
291 { 450 {
451 dSP;
452 static SV *sv_result_cache; /* caches the result integer SV */
453 SV *sv_result;
454
292 ENTER; 455 ENTER;
293 SAVETMPS; 456 SAVETMPS;
294 PUSHMARK (SP); 457 PUSHMARK (SP);
295 EXTEND (SP, 1); 458 EXTEND (SP, 1);
296 459
460 /* do not recreate the result IV from scratch each time */
461 if (expect_true (sv_result_cache))
462 {
463 sv_result = sv_result_cache; sv_result_cache = 0;
464 SvIV_set (sv_result, req->result);
465 SvIOK_only (sv_result);
466 }
467 else
468 {
469 sv_result = newSViv (req->result);
470 SvREADONLY_on (sv_result);
471 }
472
297 switch (req->type) 473 switch (req->type)
298 { 474 {
475 case EIO_WD_OPEN:
476 PUSHs (sv_2mortal (newSVaio_wd (req->wd)));
477 break;
478
299 case EIO_READDIR: 479 case EIO_READDIR:
300 { 480 {
301 SV *rv = &PL_sv_undef; 481 SV *rv = &PL_sv_undef;
302 482
303 if (req->result >= 0) 483 if (req->result >= 0)
391 case EIO_STATVFS: 571 case EIO_STATVFS:
392 case EIO_FSTATVFS: 572 case EIO_FSTATVFS:
393 { 573 {
394 SV *rv = &PL_sv_undef; 574 SV *rv = &PL_sv_undef;
395 575
576#ifndef _WIN32
396 if (req->result >= 0) 577 if (req->result >= 0)
397 { 578 {
398 EIO_STRUCT_STATVFS *f = EIO_STATVFS_BUF (req); 579 EIO_STRUCT_STATVFS *f = EIO_STATVFS_BUF (req);
399 HV *hv = newHV (); 580 HV *hv = newHV ();
400 581
410 hv_store (hv, "favail" , sizeof ("favail" ) - 1, newSVval64 (f->f_favail ), 0); 591 hv_store (hv, "favail" , sizeof ("favail" ) - 1, newSVval64 (f->f_favail ), 0);
411 hv_store (hv, "fsid" , sizeof ("fsid" ) - 1, newSVval64 (f->f_fsid ), 0); 592 hv_store (hv, "fsid" , sizeof ("fsid" ) - 1, newSVval64 (f->f_fsid ), 0);
412 hv_store (hv, "flag" , sizeof ("flag" ) - 1, newSVval64 (f->f_flag ), 0); 593 hv_store (hv, "flag" , sizeof ("flag" ) - 1, newSVval64 (f->f_flag ), 0);
413 hv_store (hv, "namemax", sizeof ("namemax") - 1, newSVval64 (f->f_namemax), 0); 594 hv_store (hv, "namemax", sizeof ("namemax") - 1, newSVval64 (f->f_namemax), 0);
414 } 595 }
596#endif
415 597
416 PUSHs (rv); 598 PUSHs (rv);
417 } 599 }
418 600
419 break; 601 break;
435 case EIO_NOP: 617 case EIO_NOP:
436 case EIO_BUSY: 618 case EIO_BUSY:
437 break; 619 break;
438 620
439 case EIO_READLINK: 621 case EIO_READLINK:
622 case EIO_REALPATH:
440 if (req->result > 0) 623 if (req->result > 0)
441 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result))); 624 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result)));
442 break; 625 break;
443 626
444 case EIO_STAT: 627 case EIO_STAT:
445 case EIO_LSTAT: 628 case EIO_LSTAT:
446 case EIO_FSTAT: 629 case EIO_FSTAT:
447 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT; 630 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT;
631
448 PL_laststatval = req->result; 632 if (!(PL_laststatval = req->result))
633 /* if compilation fails here then perl's Stat_t is not struct _stati64 */
449 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2); 634 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2);
450 PUSHs (sv_2mortal (newSViv (req->result))); 635
636 PUSHs (sv_result);
451 break; 637 break;
452 638
453 case EIO_READ: 639 case EIO_READ:
454 { 640 {
455 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0)); 641 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0));
456 *SvEND (req->sv2) = 0; 642 *SvEND (req->sv2) = 0;
457 SvPOK_only (req->sv2); 643 SvPOK_only (req->sv2);
458 SvSETMAGIC (req->sv2); 644 SvSETMAGIC (req->sv2);
459 PUSHs (sv_2mortal (newSViv (req->result))); 645 PUSHs (sv_result);
460 } 646 }
461 break; 647 break;
462 648
463 case EIO_DUP2: 649 case EIO_DUP2: /* EIO_DUP2 actually means aio_close(), so fudge result value */
464 if (req->result > 0) 650 if (req->result > 0)
465 req->result = 0; 651 SvIV_set (sv_result, 0);
466 /* FALLTHROUGH */ 652 /* FALLTHROUGH */
467 653
468 default: 654 default:
469 PUSHs (sv_2mortal (newSViv (req->result))); 655 PUSHs (sv_result);
470 break; 656 break;
471 } 657 }
472 658
473 errno = req->errorno; 659 errno = req->errorno;
474 660
475 PUTBACK; 661 PUTBACK;
476 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD); 662 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD);
477 SPAGAIN; 663 SPAGAIN;
478 664
665 if (expect_false (SvREFCNT (sv_result) != 1 || sv_result_cache))
666 SvREFCNT_dec (sv_result);
667 else
668 sv_result_cache = sv_result;
669
479 FREETMPS; 670 FREETMPS;
480 LEAVE; 671 LEAVE;
481 672
482 PUTBACK; 673 PUTBACK;
483 } 674 }
484 675
485 return !!SvTRUE (ERRSV); 676 return !!SvTRUE (ERRSV);
486} 677}
487 678
679static void
488static void req_destroy (aio_req req) 680req_destroy (aio_req req)
489{ 681{
490 if (req->self) 682 if (req->self)
491 { 683 {
492 sv_unmagic (req->self, PERL_MAGIC_ext); 684 sv_unmagic (req->self, PERL_MAGIC_ext);
493 SvREFCNT_dec (req->self); 685 SvREFCNT_dec (req->self);
494 } 686 }
495 687
496 SvREFCNT_dec (req->sv1); 688 SvREFCNT_dec (req->sv1);
497 SvREFCNT_dec (req->sv2); 689 SvREFCNT_dec (req->sv2);
690 SvREFCNT_dec (req->sv3);
691 SvREFCNT_dec (req->sv4);
498 SvREFCNT_dec (req->callback); 692 SvREFCNT_dec (req->callback);
499 693
500 Safefree (req); 694 Safefree (req);
501} 695}
502 696
697static void
503static void req_cancel_subs (aio_req grp) 698req_cancel_subs (aio_req grp)
504{ 699{
505 aio_req sub;
506
507 if (grp->type != EIO_GROUP) 700 if (grp->type != EIO_GROUP)
508 return; 701 return;
509 702
510 SvREFCNT_dec (grp->sv2); 703 SvREFCNT_dec (grp->sv2);
511 grp->sv2 = 0; 704 grp->sv2 = 0;
512 705
513 eio_grp_cancel (grp); 706 eio_grp_cancel (grp);
514} 707}
515 708
516static void 709static void ecb_cold
517create_respipe (void) 710create_respipe (void)
518{ 711{
519 if (s_epipe_renew (&respipe)) 712 if (s_epipe_renew (&respipe))
520 croak ("IO::AIO: unable to initialize result pipe"); 713 croak ("IO::AIO: unable to initialize result pipe");
521} 714}
522 715
523static void poll_wait (void) 716static void
717poll_wait (void)
524{ 718{
525 while (eio_nreqs ()) 719 while (eio_nreqs ())
526 { 720 {
527 int size; 721 int size;
528 722
537 731
538 s_epipe_wait (&respipe); 732 s_epipe_wait (&respipe);
539 } 733 }
540} 734}
541 735
542static int poll_cb (void) 736static int
737poll_cb (void)
543{ 738{
544 for (;;) 739 for (;;)
545 { 740 {
546 int res = eio_poll (); 741 int res = eio_poll ();
547 742
553 748
554 poll_wait (); 749 poll_wait ();
555 } 750 }
556} 751}
557 752
558static void atfork_child (void) 753static void ecb_cold
754reinit (void)
559{ 755{
560 create_respipe (); 756 create_respipe ();
757
758 if (eio_init (want_poll, done_poll) < 0)
759 croak ("IO::AIO: unable to initialise eio library");
561} 760}
761
762/*****************************************************************************/
763
764#if !_POSIX_MAPPED_FILES
765# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
766# define munmap(addr,length) (errno = ENOSYS, -1)
767#endif
768
769#if !_POSIX_MEMORY_PROTECTION
770# define mprotect(addr,len,prot) (errno = ENOSYS, -1)
771# define PROT_NONE 0
772# define PROT_WRITE 0
773# define MAP_PRIVATE 0
774# define MAP_SHARED 0
775# define MAP_FIXED 0
776#endif
777
778#define MMAP_MAGIC PERL_MAGIC_ext
779
780static int ecb_cold
781mmap_free (pTHX_ SV *sv, MAGIC *mg)
782{
783 int old_errno = errno;
784 munmap (mg->mg_ptr, (size_t)mg->mg_obj);
785 errno = old_errno;
786
787 mg->mg_obj = 0; /* just in case */
788
789 SvREADONLY_off (sv);
790
791 if (SvPVX (sv) != mg->mg_ptr)
792 croak ("ERROR: IO::AIO::mmap-mapped scalar changed location, detected");
793
794 SvCUR_set (sv, 0);
795 SvPVX (sv) = 0;
796 SvOK_off (sv);
797
798 return 0;
799}
800
801static MGVTBL mmap_vtbl = {
802 0, 0, 0, 0, mmap_free
803};
804
805/*****************************************************************************/
562 806
563static SV * 807static SV *
564get_cb (SV *cb_sv) 808get_cb (SV *cb_sv)
565{ 809{
566 SvGETMAGIC (cb_sv); 810 SvGETMAGIC (cb_sv);
588 SPAGAIN; \ 832 SPAGAIN; \
589 \ 833 \
590 if (GIMME_V != G_VOID) \ 834 if (GIMME_V != G_VOID) \
591 XPUSHs (req_sv (req, aio_req_stash)); 835 XPUSHs (req_sv (req, aio_req_stash));
592 836
837ecb_inline void
838req_set_path (aio_req req, SV *path, SV **wdsv, SV **pathsv, eio_wd *wd, void **ptr)
839{
840 if (expect_false (SvROK (path)))
841 {
842 AV *av = (AV *)SvRV (path);
843 SV *wdob;
844
845 if (SvTYPE (av) != SVt_PVAV || AvFILLp (av) != 1)
846 croak ("IO::AIO: pathname arguments must be specified as strings or [wd, path] arrayrefs");
847
848 path = AvARRAY (av)[1];
849 wdob = AvARRAY (av)[0];
850
851 if (SvOK (wdob))
852 {
853 *wd = SvAIO_WD (wdob);
854 *wdsv = SvREFCNT_inc_NN (SvRV (wdob));
855 }
856 else
857 *wd = EIO_INVALID_WD;
858 }
859
860 *pathsv = newSVsv (path);
861 *ptr = SvPVbyte_nolen (*pathsv);
862}
863
864static void ecb_noinline
865req_set_path1 (aio_req req, SV *path)
866{
867 req_set_path (req, path, &req->sv1, &req->sv3, &req->wd, &req->ptr1);
868}
869
870static void ecb_noinline
871req_set_fh_or_path (aio_req req, int type_path, int type_fh, SV *fh_or_path)
872{
873 SV *rv = SvROK (fh_or_path) ? SvRV (fh_or_path) : fh_or_path;
874
875 switch (SvTYPE (rv))
876 {
877 case SVt_PVIO:
878 case SVt_PVLV:
879 case SVt_PVGV:
880 req->type = type_fh;
881 req->sv1 = newSVsv (fh_or_path);
882 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
883 break;
884
885 default:
886 req->type = type_path;
887 req_set_path1 (req, fh_or_path);
888 break;
889 }
890}
891
892XS(boot_IO__AIO) ecb_cold;
893
593MODULE = IO::AIO PACKAGE = IO::AIO 894MODULE = IO::AIO PACKAGE = IO::AIO
594 895
595PROTOTYPES: ENABLE 896PROTOTYPES: ENABLE
596 897
597BOOT: 898BOOT:
598{ 899{
599 static const struct { 900 static const struct {
600 const char *name; 901 const char *name;
601 IV iv; 902 IV iv;
602 } *civ, const_iv[] = { 903 } *civ, const_iv[] = {
603# define const_iv(name, value) { # name, (IV) value }, 904# define const_niv(name, value) { # name, (IV) value },
905# define const_iv(name) { # name, (IV) name },
604# define const_eio(name) { # name, (IV) EIO_ ## name }, 906# define const_eio(name) { # name, (IV) EIO_ ## name },
605 const_iv (EXDEV , EXDEV) 907 const_iv (EXDEV)
606 const_iv (ENOSYS , ENOSYS) 908 const_iv (ENOSYS)
607 const_iv (O_RDONLY, O_RDONLY) 909 const_iv (O_RDONLY)
608 const_iv (O_WRONLY, O_WRONLY) 910 const_iv (O_WRONLY)
911 const_iv (O_RDWR)
609 const_iv (O_CREAT , O_CREAT) 912 const_iv (O_CREAT)
610 const_iv (O_TRUNC , O_TRUNC) 913 const_iv (O_TRUNC)
611#ifndef _WIN32 914 const_iv (O_EXCL)
915 const_iv (O_APPEND)
916
917 const_iv (O_ASYNC)
918 const_iv (O_DIRECT)
919 const_iv (O_NOATIME)
920
921 const_iv (O_CLOEXEC)
922 const_iv (O_NOCTTY)
923 const_iv (O_NOFOLLOW)
924 const_iv (O_NONBLOCK)
925 const_iv (O_EXEC)
926 const_iv (O_SEARCH)
927 const_iv (O_DIRECTORY)
928 const_iv (O_DSYNC)
929 const_iv (O_RSYNC)
930 const_iv (O_SYNC)
931 const_iv (O_TTY_INIT)
932
612 const_iv (S_IFIFO , S_IFIFO) 933 const_iv (S_IFIFO)
613#endif 934 const_iv (S_IFCHR)
935 const_iv (S_IFBLK)
936 const_iv (S_IFLNK)
937 const_iv (S_IFREG)
938 const_iv (S_IFDIR)
939 const_iv (S_IFWHT)
940 const_iv (S_IFSOCK)
941 const_iv (S_IFMT)
942
614 const_iv (FADV_NORMAL , POSIX_FADV_NORMAL) 943 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
615 const_iv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL) 944 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
616 const_iv (FADV_RANDOM , POSIX_FADV_RANDOM) 945 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
617 const_iv (FADV_NOREUSE , POSIX_FADV_NOREUSE) 946 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
618 const_iv (FADV_WILLNEED , POSIX_FADV_WILLNEED) 947 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
619 const_iv (FADV_DONTNEED , POSIX_FADV_DONTNEED) 948 const_niv (FADV_DONTNEED , POSIX_FADV_DONTNEED)
620 949
621 const_iv (ST_RDONLY , ST_RDONLY) 950 const_niv (MADV_NORMAL , POSIX_MADV_NORMAL)
622 const_iv (ST_NOSUID , ST_NOSUID) 951 const_niv (MADV_SEQUENTIAL, POSIX_MADV_SEQUENTIAL)
623 const_iv (ST_NODEV , ST_NODEV) 952 const_niv (MADV_RANDOM , POSIX_MADV_RANDOM)
624 const_iv (ST_NOEXEC , ST_NOEXEC) 953 const_niv (MADV_WILLNEED , POSIX_MADV_WILLNEED)
954 const_niv (MADV_DONTNEED , POSIX_MADV_DONTNEED)
955
956 const_iv (ST_RDONLY)
957 const_iv (ST_NOSUID)
958 const_iv (ST_NODEV)
959 const_iv (ST_NOEXEC)
625 const_iv (ST_SYNCHRONOUS , ST_SYNCHRONOUS) 960 const_iv (ST_SYNCHRONOUS)
626 const_iv (ST_MANDLOCK , ST_MANDLOCK) 961 const_iv (ST_MANDLOCK)
627 const_iv (ST_WRITE , ST_WRITE) 962 const_iv (ST_WRITE)
628 const_iv (ST_APPEND , ST_APPEND) 963 const_iv (ST_APPEND)
629 const_iv (ST_IMMUTABLE , ST_IMMUTABLE) 964 const_iv (ST_IMMUTABLE)
630 const_iv (ST_NOATIME , ST_NOATIME) 965 const_iv (ST_NOATIME)
631 const_iv (ST_NODIRATIME , ST_NODIRATIME) 966 const_iv (ST_NODIRATIME)
632 const_iv (ST_RELATIME , ST_RELATIME) 967 const_iv (ST_RELATIME)
968
969 const_iv (PROT_NONE)
970 const_iv (PROT_EXEC)
971 const_iv (PROT_READ)
972 const_iv (PROT_WRITE)
973
974 /*const_iv (MAP_FIXED)*/
975 const_iv (MAP_PRIVATE)
976 const_iv (MAP_SHARED)
977 const_iv (MAP_ANONYMOUS)
978
979 /* linuxish */
980 const_iv (MAP_HUGETLB)
981 const_iv (MAP_LOCKED)
982 const_iv (MAP_NORESERVE)
983 const_iv (MAP_POPULATE)
984 const_iv (MAP_NONBLOCK)
985
986 const_eio (MCL_FUTURE)
987 const_eio (MCL_CURRENT)
633 988
634 const_eio (MS_ASYNC) 989 const_eio (MS_ASYNC)
635 const_eio (MS_INVALIDATE) 990 const_eio (MS_INVALIDATE)
636 const_eio (MS_SYNC) 991 const_eio (MS_SYNC)
637 992
638 const_eio (MT_MODIFY) 993 const_eio (MT_MODIFY)
639 994
640 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE) 995 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE)
641 const_eio (SYNC_FILE_RANGE_WRITE) 996 const_eio (SYNC_FILE_RANGE_WRITE)
642 const_eio (SYNC_FILE_RANGE_WAIT_AFTER) 997 const_eio (SYNC_FILE_RANGE_WAIT_AFTER)
998
999 const_eio (FALLOC_FL_KEEP_SIZE)
643 1000
644 const_eio (READDIR_DENTS) 1001 const_eio (READDIR_DENTS)
645 const_eio (READDIR_DIRS_FIRST) 1002 const_eio (READDIR_DIRS_FIRST)
646 const_eio (READDIR_STAT_ORDER) 1003 const_eio (READDIR_STAT_ORDER)
647 const_eio (READDIR_FOUND_UNKNOWN) 1004 const_eio (READDIR_FOUND_UNKNOWN)
658 }; 1015 };
659 1016
660 aio_stash = gv_stashpv ("IO::AIO" , 1); 1017 aio_stash = gv_stashpv ("IO::AIO" , 1);
661 aio_req_stash = gv_stashpv ("IO::AIO::REQ", 1); 1018 aio_req_stash = gv_stashpv ("IO::AIO::REQ", 1);
662 aio_grp_stash = gv_stashpv ("IO::AIO::GRP", 1); 1019 aio_grp_stash = gv_stashpv ("IO::AIO::GRP", 1);
1020 aio_wd_stash = gv_stashpv ("IO::AIO::WD" , 1);
663 1021
664 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1022 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ > const_iv; civ--)
665 newCONSTSUB (aio_stash, (char *)civ->name, newSViv (civ->iv)); 1023 newCONSTSUB (aio_stash, (char *)civ[-1].name, newSViv (civ[-1].iv));
666 1024
667 create_respipe (); 1025 newCONSTSUB (aio_stash, "PAGESIZE", newSViv (PAGESIZE));
668 1026
669 if (eio_init (want_poll, done_poll) < 0) 1027 reinit ();
670 croak ("IO::AIO: unable to initialise eio library");
671
672 /* atfork child called in fifo order, so before eio's handler */
673 X_THREAD_ATFORK (0, 0, atfork_child);
674} 1028}
675 1029
676void 1030void
1031reinit ()
1032 PROTOTYPE:
1033
1034void
677max_poll_reqs (int nreqs) 1035max_poll_reqs (unsigned int nreqs)
678 PROTOTYPE: $ 1036 PROTOTYPE: $
679 CODE: 1037 CODE:
680 eio_set_max_poll_reqs (nreqs); 1038 eio_set_max_poll_reqs (nreqs);
681 1039
682void 1040void
684 PROTOTYPE: $ 1042 PROTOTYPE: $
685 CODE: 1043 CODE:
686 eio_set_max_poll_time (nseconds); 1044 eio_set_max_poll_time (nseconds);
687 1045
688void 1046void
689min_parallel (int nthreads) 1047min_parallel (unsigned int nthreads)
690 PROTOTYPE: $ 1048 PROTOTYPE: $
691 CODE: 1049 CODE:
692 eio_set_min_parallel (nthreads); 1050 eio_set_min_parallel (nthreads);
693 1051
694void 1052void
695max_parallel (int nthreads) 1053max_parallel (unsigned int nthreads)
696 PROTOTYPE: $ 1054 PROTOTYPE: $
697 CODE: 1055 CODE:
698 eio_set_max_parallel (nthreads); 1056 eio_set_max_parallel (nthreads);
699 1057
700void 1058void
701max_idle (int nthreads) 1059max_idle (unsigned int nthreads)
702 PROTOTYPE: $ 1060 PROTOTYPE: $
703 CODE: 1061 CODE:
704 eio_set_max_idle (nthreads); 1062 eio_set_max_idle (nthreads);
705 1063
706void 1064void
1065idle_timeout (unsigned int seconds)
1066 PROTOTYPE: $
1067 CODE:
1068 eio_set_idle_timeout (seconds);
1069
1070void
707max_outstanding (int maxreqs) 1071max_outstanding (unsigned int maxreqs)
708 PROTOTYPE: $ 1072 PROTOTYPE: $
709 CODE: 1073 CODE:
710 max_outstanding = maxreqs; 1074 max_outstanding = maxreqs;
711 1075
712void 1076void
1077aio_wd (SV8 *pathname, SV *callback=&PL_sv_undef)
1078 PPCODE:
1079{
1080 dREQ;
1081
1082 req->type = EIO_WD_OPEN;
1083 req_set_path1 (req, pathname);
1084
1085 REQ_SEND;
1086}
1087
1088void
713aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef) 1089aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef)
714 PROTOTYPE: $$$;$
715 PPCODE: 1090 PPCODE:
716{ 1091{
717 dREQ; 1092 dREQ;
718 1093
719 req->type = EIO_OPEN; 1094 req->type = EIO_OPEN;
720 req->sv1 = newSVsv (pathname); 1095 req_set_path1 (req, pathname);
721 req->ptr1 = SvPVbyte_nolen (req->sv1);
722 req->int1 = flags; 1096 req->int1 = flags;
723 req->int2 = mode; 1097 req->int2 = mode;
724 1098
725 REQ_SEND; 1099 REQ_SEND;
726} 1100}
727 1101
728void 1102void
729aio_fsync (SV *fh, SV *callback=&PL_sv_undef) 1103aio_fsync (SV *fh, SV *callback=&PL_sv_undef)
730 PROTOTYPE: $;$
731 ALIAS: 1104 ALIAS:
732 aio_fsync = EIO_FSYNC 1105 aio_fsync = EIO_FSYNC
733 aio_fdatasync = EIO_FDATASYNC 1106 aio_fdatasync = EIO_FDATASYNC
1107 aio_syncfs = EIO_SYNCFS
734 PPCODE: 1108 PPCODE:
735{ 1109{
736 int fd = s_fileno_croak (fh, 0); 1110 int fd = s_fileno_croak (fh, 0);
737 dREQ; 1111 dREQ;
738 1112
743 REQ_SEND (req); 1117 REQ_SEND (req);
744} 1118}
745 1119
746void 1120void
747aio_sync_file_range (SV *fh, off_t offset, size_t nbytes, UV flags, SV *callback=&PL_sv_undef) 1121aio_sync_file_range (SV *fh, off_t offset, size_t nbytes, UV flags, SV *callback=&PL_sv_undef)
748 PROTOTYPE: $$$$;$
749 PPCODE: 1122 PPCODE:
750{ 1123{
751 int fd = s_fileno_croak (fh, 0); 1124 int fd = s_fileno_croak (fh, 0);
752 dREQ; 1125 dREQ;
753 1126
760 1133
761 REQ_SEND (req); 1134 REQ_SEND (req);
762} 1135}
763 1136
764void 1137void
765aio_close (SV *fh, SV *callback=&PL_sv_undef) 1138aio_fallocate (SV *fh, int mode, off_t offset, size_t len, SV *callback=&PL_sv_undef)
766 PROTOTYPE: $;$
767 PPCODE: 1139 PPCODE:
768{ 1140{
769 static int close_pipe = -1; /* dummy fd to close fds via dup2 */
770 int fd = s_fileno_croak (fh, 0); 1141 int fd = s_fileno_croak (fh, 0);
771 dREQ; 1142 dREQ;
772 1143
773 if (close_pipe < 0) 1144 req->type = EIO_FALLOCATE;
1145 req->sv1 = newSVsv (fh);
1146 req->int1 = fd;
1147 req->int2 = mode;
1148 req->offs = offset;
1149 req->size = len;
1150
1151 REQ_SEND (req);
1152}
1153
1154void
1155aio_close (SV *fh, SV *callback=&PL_sv_undef)
1156 PPCODE:
1157{
1158 static int close_fd = -1; /* dummy fd to close fds via dup2 */
1159 int fd = s_fileno_croak (fh, 0);
1160 dREQ;
1161
1162 if (expect_false (close_fd < 0))
774 { 1163 {
775 int pipefd [2]; 1164 int pipefd [2];
776 1165
1166 if (
1167#ifdef _WIN32
1168 _pipe (pipefd, 1, _O_BINARY) < 0
1169#else
777 if (pipe (pipefd) < 0 1170 pipe (pipefd) < 0
778 || close (pipefd [1]) < 0
779 || fcntl (pipefd [0], F_SETFD, FD_CLOEXEC) < 0) 1171 || fcntl (pipefd [0], F_SETFD, FD_CLOEXEC) < 0
1172#endif
1173 || close (pipefd [1]) < 0
1174 )
780 abort (); /*D*/ 1175 abort (); /*D*/
781 1176
782 close_pipe = pipefd [0]; 1177 close_fd = pipefd [0];
783 } 1178 }
784 1179
785 req->type = EIO_DUP2; 1180 req->type = EIO_DUP2;
786 req->int1 = close_pipe; 1181 req->int1 = close_fd;
787 req->sv2 = newSVsv (fh); 1182 req->sv2 = newSVsv (fh);
788 req->int2 = fd; 1183 req->int2 = fd;
789 1184
790 REQ_SEND (req); 1185 REQ_SEND (req);
791} 1186}
793void 1188void
794aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef) 1189aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef)
795 ALIAS: 1190 ALIAS:
796 aio_read = EIO_READ 1191 aio_read = EIO_READ
797 aio_write = EIO_WRITE 1192 aio_write = EIO_WRITE
798 PROTOTYPE: $$$$$;$
799 PPCODE: 1193 PPCODE:
800{ 1194{
801 STRLEN svlen; 1195 STRLEN svlen;
802 int fd = s_fileno_croak (fh, ix == EIO_WRITE); 1196 int fd = s_fileno_croak (fh, ix == EIO_WRITE);
803 char *svptr = SvPVbyte (data, svlen); 1197 char *svptr = SvPVbyte (data, svlen);
843 REQ_SEND; 1237 REQ_SEND;
844 } 1238 }
845} 1239}
846 1240
847void 1241void
848aio_readlink (SV8 *path, SV *callback=&PL_sv_undef) 1242aio_readlink (SV8 *pathname, SV *callback=&PL_sv_undef)
849 PROTOTYPE: $$;$ 1243 ALIAS:
1244 aio_readlink = EIO_READLINK
1245 aio_realpath = EIO_REALPATH
850 PPCODE: 1246 PPCODE:
851{ 1247{
852 SV *data;
853 dREQ; 1248 dREQ;
854 1249
855 req->type = EIO_READLINK; 1250 req->type = ix;
856 req->sv1 = newSVsv (path); 1251 req_set_path1 (req, pathname);
857 req->ptr1 = SvPVbyte_nolen (req->sv1);
858 1252
859 REQ_SEND; 1253 REQ_SEND;
860} 1254}
861 1255
862void 1256void
863aio_sendfile (SV *out_fh, SV *in_fh, off_t in_offset, size_t length, SV *callback=&PL_sv_undef) 1257aio_sendfile (SV *out_fh, SV *in_fh, off_t in_offset, size_t length, SV *callback=&PL_sv_undef)
864 PROTOTYPE: $$$$;$
865 PPCODE: 1258 PPCODE:
866{ 1259{
867 int ifd = s_fileno_croak (in_fh , 0); 1260 int ifd = s_fileno_croak (in_fh , 0);
868 int ofd = s_fileno_croak (out_fh, 1); 1261 int ofd = s_fileno_croak (out_fh, 1);
869 dREQ; 1262 dREQ;
879 REQ_SEND; 1272 REQ_SEND;
880} 1273}
881 1274
882void 1275void
883aio_readahead (SV *fh, off_t offset, size_t length, SV *callback=&PL_sv_undef) 1276aio_readahead (SV *fh, off_t offset, size_t length, SV *callback=&PL_sv_undef)
884 PROTOTYPE: $$$;$
885 PPCODE: 1277 PPCODE:
886{ 1278{
887 int fd = s_fileno_croak (fh, 0); 1279 int fd = s_fileno_croak (fh, 0);
888 dREQ; 1280 dREQ;
889 1281
905 PPCODE: 1297 PPCODE:
906{ 1298{
907 dREQ; 1299 dREQ;
908 1300
909 req->sv1 = newSVsv (fh_or_path); 1301 req->sv1 = newSVsv (fh_or_path);
910 1302 req_set_fh_or_path (req, ix, ix == EIO_STATVFS ? EIO_FSTATVFS : EIO_FSTAT, fh_or_path);
911 if (SvPOK (req->sv1))
912 {
913 req->type = ix;
914 req->ptr1 = SvPVbyte_nolen (req->sv1);
915 }
916 else
917 {
918 req->type = ix == EIO_STATVFS ? EIO_FSTATVFS : EIO_FSTAT;
919 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
920 }
921
922 REQ_SEND; 1303 REQ_SEND;
923} 1304}
1305
1306UV
1307major (UV dev)
1308 ALIAS:
1309 minor = 1
1310 CODE:
1311 RETVAL = ix ? major (dev) : minor (dev);
1312 OUTPUT:
1313 RETVAL
1314
1315UV
1316makedev (UV maj, UV min)
1317 CODE:
1318 RETVAL = makedev (maj, min);
1319 OUTPUT:
1320 RETVAL
924 1321
925void 1322void
926aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef) 1323aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef)
927 PPCODE: 1324 PPCODE:
928{ 1325{
929 dREQ; 1326 dREQ;
930 1327
931 req->nv1 = SvOK (atime) ? SvNV (atime) : -1.; 1328 req->nv1 = SvOK (atime) ? SvNV (atime) : -1.;
932 req->nv2 = SvOK (mtime) ? SvNV (mtime) : -1.; 1329 req->nv2 = SvOK (mtime) ? SvNV (mtime) : -1.;
933 req->sv1 = newSVsv (fh_or_path); 1330 req_set_fh_or_path (req, EIO_UTIME, EIO_FUTIME, fh_or_path);
934
935 if (SvPOK (req->sv1))
936 {
937 req->type = EIO_UTIME;
938 req->ptr1 = SvPVbyte_nolen (req->sv1);
939 }
940 else
941 {
942 req->type = EIO_FUTIME;
943 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
944 }
945 1331
946 REQ_SEND; 1332 REQ_SEND;
947} 1333}
948 1334
949void 1335void
950aio_truncate (SV8 *fh_or_path, SV *offset, SV *callback=&PL_sv_undef) 1336aio_truncate (SV8 *fh_or_path, SV *offset, SV *callback=&PL_sv_undef)
951 PPCODE: 1337 PPCODE:
952{ 1338{
953 dREQ; 1339 dREQ;
954 1340
955 req->sv1 = newSVsv (fh_or_path);
956 req->offs = SvOK (offset) ? SvVAL64 (offset) : -1; 1341 req->offs = SvOK (offset) ? SvVAL64 (offset) : -1;
957 1342 req_set_fh_or_path (req, EIO_TRUNCATE, EIO_FTRUNCATE, fh_or_path);
958 if (SvPOK (req->sv1))
959 {
960 req->type = EIO_TRUNCATE;
961 req->ptr1 = SvPVbyte_nolen (req->sv1);
962 }
963 else
964 {
965 req->type = EIO_FTRUNCATE;
966 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
967 }
968 1343
969 REQ_SEND; 1344 REQ_SEND;
970} 1345}
971 1346
972void 1347void
973aio_chmod (SV8 *fh_or_path, int mode, SV *callback=&PL_sv_undef) 1348aio_chmod (SV8 *fh_or_path, int mode, SV *callback=&PL_sv_undef)
974 ALIAS:
975 aio_chmod = EIO_CHMOD
976 aio_mkdir = EIO_MKDIR
977 PPCODE: 1349 PPCODE:
978{ 1350{
979 dREQ; 1351 dREQ;
980 1352
981 req->int2 = mode; 1353 req->int2 = mode;
982 req->sv1 = newSVsv (fh_or_path); 1354 req_set_fh_or_path (req, EIO_CHMOD, EIO_FCHMOD, fh_or_path);
983
984 if (SvPOK (req->sv1))
985 {
986 req->type = ix;
987 req->ptr1 = SvPVbyte_nolen (req->sv1);
988 }
989 else
990 {
991 req->type = EIO_FCHMOD;
992 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
993 }
994 1355
995 REQ_SEND; 1356 REQ_SEND;
996} 1357}
997 1358
998void 1359void
1001{ 1362{
1002 dREQ; 1363 dREQ;
1003 1364
1004 req->int2 = SvOK (uid) ? SvIV (uid) : -1; 1365 req->int2 = SvOK (uid) ? SvIV (uid) : -1;
1005 req->int3 = SvOK (gid) ? SvIV (gid) : -1; 1366 req->int3 = SvOK (gid) ? SvIV (gid) : -1;
1006 req->sv1 = newSVsv (fh_or_path); 1367 req_set_fh_or_path (req, EIO_CHOWN, EIO_FCHOWN, fh_or_path);
1007
1008 if (SvPOK (req->sv1))
1009 {
1010 req->type = EIO_CHOWN;
1011 req->ptr1 = SvPVbyte_nolen (req->sv1);
1012 }
1013 else
1014 {
1015 req->type = EIO_FCHOWN;
1016 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1017 }
1018 1368
1019 REQ_SEND; 1369 REQ_SEND;
1020} 1370}
1021 1371
1022void 1372void
1024 PPCODE: 1374 PPCODE:
1025{ 1375{
1026 dREQ; 1376 dREQ;
1027 1377
1028 req->type = EIO_READDIR; 1378 req->type = EIO_READDIR;
1029 req->sv1 = newSVsv (pathname);
1030 req->ptr1 = SvPVbyte_nolen (req->sv1);
1031 req->int1 = flags | EIO_READDIR_DENTS | EIO_READDIR_CUSTOM1; 1379 req->int1 = flags | EIO_READDIR_DENTS | EIO_READDIR_CUSTOM1;
1032 1380
1033 if (flags & EIO_READDIR_DENTS) 1381 if (flags & EIO_READDIR_DENTS)
1034 req->int1 |= EIO_READDIR_CUSTOM2; 1382 req->int1 |= EIO_READDIR_CUSTOM2;
1035 1383
1384 req_set_path1 (req, pathname);
1385
1036 REQ_SEND; 1386 REQ_SEND;
1387}
1388
1389void
1390aio_mkdir (SV8 *pathname, int mode, SV *callback=&PL_sv_undef)
1391 PPCODE:
1392{
1393 dREQ;
1394
1395 req->type = EIO_MKDIR;
1396 req->int2 = mode;
1397 req_set_path1 (req, pathname);
1398
1399 REQ_SEND;
1037} 1400}
1038 1401
1039void 1402void
1040aio_unlink (SV8 *pathname, SV *callback=&PL_sv_undef) 1403aio_unlink (SV8 *pathname, SV *callback=&PL_sv_undef)
1041 ALIAS: 1404 ALIAS:
1045 PPCODE: 1408 PPCODE:
1046{ 1409{
1047 dREQ; 1410 dREQ;
1048 1411
1049 req->type = ix; 1412 req->type = ix;
1050 req->sv1 = newSVsv (pathname); 1413 req_set_path1 (req, pathname);
1051 req->ptr1 = SvPVbyte_nolen (req->sv1);
1052 1414
1053 REQ_SEND; 1415 REQ_SEND;
1054} 1416}
1055 1417
1056void 1418void
1060 aio_symlink = EIO_SYMLINK 1422 aio_symlink = EIO_SYMLINK
1061 aio_rename = EIO_RENAME 1423 aio_rename = EIO_RENAME
1062 PPCODE: 1424 PPCODE:
1063{ 1425{
1064 dREQ; 1426 dREQ;
1427 eio_wd wd2 = 0;
1065 1428
1066 req->type = ix; 1429 req->type = ix;
1067 req->sv1 = newSVsv (oldpath); 1430 req_set_path1 (req, oldpath);
1068 req->ptr1 = SvPVbyte_nolen (req->sv1); 1431 req_set_path (req, newpath, &req->sv2, &req->sv4, &wd2, &req->ptr2);
1069 req->sv2 = newSVsv (newpath); 1432 req->int3 = (long)wd2;
1070 req->ptr2 = SvPVbyte_nolen (req->sv2);
1071 1433
1072 REQ_SEND; 1434 REQ_SEND;
1073} 1435}
1074 1436
1075void 1437void
1077 PPCODE: 1439 PPCODE:
1078{ 1440{
1079 dREQ; 1441 dREQ;
1080 1442
1081 req->type = EIO_MKNOD; 1443 req->type = EIO_MKNOD;
1082 req->sv1 = newSVsv (pathname);
1083 req->ptr1 = SvPVbyte_nolen (req->sv1);
1084 req->int2 = (mode_t)mode; 1444 req->int2 = (mode_t)mode;
1085 req->offs = dev; 1445 req->offs = dev;
1446 req_set_path1 (req, pathname);
1086 1447
1087 REQ_SEND; 1448 REQ_SEND;
1088} 1449}
1089 1450
1090void 1451void
1091aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef) 1452aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef)
1092 ALIAS: 1453 ALIAS:
1093 aio_mtouch = EIO_MTOUCH 1454 aio_mtouch = EIO_MTOUCH
1094 aio_msync = EIO_MSYNC 1455 aio_msync = EIO_MSYNC
1095 PROTOTYPE: $$$$;$
1096 PPCODE: 1456 PPCODE:
1097{ 1457{
1098 STRLEN svlen; 1458 STRLEN svlen;
1459 char *svptr = SvPVbyte (data, svlen);
1099 UV len = SvUV (length); 1460 UV len = SvUV (length);
1100 char *svptr = SvPVbyte (data, svlen);
1101 1461
1102 if (offset < 0) 1462 if (offset < 0)
1103 offset += svlen; 1463 offset += svlen;
1104 1464
1105 if (offset < 0 || offset > svlen) 1465 if (offset < 0 || offset > svlen)
1110 1470
1111 { 1471 {
1112 dREQ; 1472 dREQ;
1113 1473
1114 req->type = ix; 1474 req->type = ix;
1115 req->size = len;
1116 req->sv2 = SvREFCNT_inc (data); 1475 req->sv2 = SvREFCNT_inc (data);
1117 req->ptr2 = (char *)svptr + offset; 1476 req->ptr2 = (char *)svptr + offset;
1477 req->size = len;
1118 req->int1 = flags; 1478 req->int1 = flags;
1119 1479
1120 REQ_SEND; 1480 REQ_SEND;
1121 } 1481 }
1122} 1482}
1123 1483
1124void 1484void
1485aio_mlock (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, SV *callback=&PL_sv_undef)
1486 PPCODE:
1487{
1488 STRLEN svlen;
1489 char *svptr = SvPVbyte (data, svlen);
1490 UV len = SvUV (length);
1491
1492 if (offset < 0)
1493 offset += svlen;
1494
1495 if (offset < 0 || offset > svlen)
1496 croak ("offset outside of scalar");
1497
1498 if (!SvOK (length) || len + offset > svlen)
1499 len = svlen - offset;
1500
1501 {
1502 dREQ;
1503
1504 req->type = EIO_MLOCK;
1505 req->sv2 = SvREFCNT_inc (data);
1506 req->ptr2 = (char *)svptr + offset;
1507 req->size = len;
1508
1509 REQ_SEND;
1510 }
1511}
1512
1513void
1514aio_mlockall (IV flags, SV *callback=&PL_sv_undef)
1515 PPCODE:
1516{
1517 dREQ;
1518
1519 req->type = EIO_MLOCKALL;
1520 req->int1 = flags;
1521
1522 REQ_SEND;
1523}
1524
1525void
1125aio_busy (double delay, SV *callback=&PL_sv_undef) 1526aio_busy (double delay, SV *callback=&PL_sv_undef)
1126 PPCODE: 1527 PPCODE:
1127{ 1528{
1128 dREQ; 1529 dREQ;
1129 1530
1133 REQ_SEND; 1534 REQ_SEND;
1134} 1535}
1135 1536
1136void 1537void
1137aio_group (SV *callback=&PL_sv_undef) 1538aio_group (SV *callback=&PL_sv_undef)
1138 PROTOTYPE: ;$
1139 PPCODE: 1539 PPCODE:
1140{ 1540{
1141 dREQ; 1541 dREQ;
1142 1542
1143 req->type = EIO_GROUP; 1543 req->type = EIO_GROUP;
1160 REQ_SEND; 1560 REQ_SEND;
1161} 1561}
1162 1562
1163int 1563int
1164aioreq_pri (int pri = 0) 1564aioreq_pri (int pri = 0)
1165 PROTOTYPE: ;$
1166 CODE: 1565 CODE:
1167 RETVAL = next_pri; 1566 RETVAL = next_pri;
1168 if (items > 0) 1567 if (items > 0)
1169 { 1568 {
1170 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN; 1569 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN;
1182 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX; 1581 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX;
1183 next_pri = nice; 1582 next_pri = nice;
1184 1583
1185void 1584void
1186flush () 1585flush ()
1187 PROTOTYPE:
1188 CODE: 1586 CODE:
1189 while (eio_nreqs ()) 1587 while (eio_nreqs ())
1190 { 1588 {
1191 poll_wait (); 1589 poll_wait ();
1192 poll_cb (); 1590 poll_cb ();
1193 } 1591 }
1194 1592
1195int 1593int
1196poll() 1594poll ()
1197 PROTOTYPE:
1198 CODE: 1595 CODE:
1199 poll_wait (); 1596 poll_wait ();
1200 RETVAL = poll_cb (); 1597 RETVAL = poll_cb ();
1201 OUTPUT: 1598 OUTPUT:
1202 RETVAL 1599 RETVAL
1203 1600
1204int 1601int
1205poll_fileno() 1602poll_fileno ()
1206 PROTOTYPE:
1207 CODE: 1603 CODE:
1208 RETVAL = s_epipe_fd (&respipe); 1604 RETVAL = s_epipe_fd (&respipe);
1209 OUTPUT: 1605 OUTPUT:
1210 RETVAL 1606 RETVAL
1211 1607
1212int 1608int
1213poll_cb(...) 1609poll_cb (...)
1214 PROTOTYPE: 1610 PROTOTYPE:
1215 CODE: 1611 CODE:
1216 RETVAL = poll_cb (); 1612 RETVAL = poll_cb ();
1217 OUTPUT: 1613 OUTPUT:
1218 RETVAL 1614 RETVAL
1219 1615
1220void 1616void
1221poll_wait() 1617poll_wait ()
1222 PROTOTYPE:
1223 CODE: 1618 CODE:
1224 poll_wait (); 1619 poll_wait ();
1225 1620
1226int 1621int
1227nreqs() 1622nreqs ()
1228 PROTOTYPE:
1229 CODE: 1623 CODE:
1230 RETVAL = eio_nreqs (); 1624 RETVAL = eio_nreqs ();
1231 OUTPUT: 1625 OUTPUT:
1232 RETVAL 1626 RETVAL
1233 1627
1234int 1628int
1235nready() 1629nready ()
1236 PROTOTYPE:
1237 CODE: 1630 CODE:
1238 RETVAL = eio_nready (); 1631 RETVAL = eio_nready ();
1239 OUTPUT: 1632 OUTPUT:
1240 RETVAL 1633 RETVAL
1241 1634
1242int 1635int
1243npending() 1636npending ()
1244 PROTOTYPE:
1245 CODE: 1637 CODE:
1246 RETVAL = eio_npending (); 1638 RETVAL = eio_npending ();
1247 OUTPUT: 1639 OUTPUT:
1248 RETVAL 1640 RETVAL
1249 1641
1250int 1642int
1251nthreads() 1643nthreads ()
1252 PROTOTYPE:
1253 CODE: 1644 CODE:
1254 RETVAL = eio_nthreads (); 1645 RETVAL = eio_nthreads ();
1255 OUTPUT: 1646 OUTPUT:
1256 RETVAL 1647 RETVAL
1257 1648
1258int 1649int
1259fadvise (aio_rfd fh, off_t offset, off_t length, IV advice) 1650fadvise (aio_rfd fh, off_t offset, off_t length, IV advice)
1260 PROTOTYPE: $$$$
1261 CODE: 1651 CODE:
1262#if _XOPEN_SOURCE >= 600 && !NO_FADVISE
1263 RETVAL = posix_fadvise (fh, offset, length, advice); 1652 RETVAL = posix_fadvise (fh, offset, length, advice);
1264#else
1265 RETVAL = errno = ENOSYS;
1266#endif
1267 OUTPUT: 1653 OUTPUT:
1268 RETVAL 1654 RETVAL
1269 1655
1270ssize_t 1656IV
1271sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count) 1657sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count)
1272 PROTOTYPE: $$$$
1273 CODE: 1658 CODE:
1274 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count); 1659 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count);
1275 OUTPUT: 1660 OUTPUT:
1276 RETVAL 1661 RETVAL
1277 1662
1663void
1664mmap (SV *scalar, size_t length, int prot, int flags, SV *fh, off_t offset = 0)
1665 PPCODE:
1666 sv_unmagic (scalar, MMAP_MAGIC);
1667{
1668 int fd = SvOK (fh) ? s_fileno_croak (fh, flags & PROT_WRITE) : -1;
1669 void *addr = (void *)mmap (0, length, prot, flags, fd, offset);
1670 if (addr == (void *)-1)
1671 XSRETURN_NO;
1672
1673 sv_force_normal (scalar);
1674
1675 /* we store the length in mg_obj, as namlen is I32 :/ */
1676 sv_magicext (scalar, 0, MMAP_MAGIC, &mmap_vtbl, (char *)addr, 0)
1677 ->mg_obj = (SV *)length;
1678
1679 SvUPGRADE (scalar, SVt_PV); /* nop... */
1680
1681 if (!(prot & PROT_WRITE))
1682 SvREADONLY_on (scalar);
1683
1684 if (SvLEN (scalar))
1685 Safefree (SvPVX (scalar));
1686
1687 SvPVX (scalar) = (char *)addr;
1688 SvCUR_set (scalar, length);
1689 SvLEN_set (scalar, 0);
1690 SvPOK_only (scalar);
1691
1692 XSRETURN_YES;
1693}
1694
1695void
1696munmap (SV *scalar)
1697 CODE:
1698 sv_unmagic (scalar, MMAP_MAGIC);
1699
1700int
1701madvise (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef, IV advice_or_prot)
1702 ALIAS:
1703 mprotect = 1
1704 CODE:
1705{
1706 STRLEN svlen;
1707 void *addr = SvPVbyte (scalar, svlen);
1708 size_t len = SvUV (length);
1709
1710 if (offset < 0)
1711 offset += svlen;
1712
1713 if (offset < 0 || offset > svlen)
1714 croak ("offset outside of scalar");
1715
1716 if (!SvOK (length) || len + offset > svlen)
1717 len = svlen - offset;
1718
1719 addr = (void *)(((intptr_t)addr) + offset);
1720 eio_page_align (&addr, &len);
1721
1722 switch (ix)
1723 {
1724 case 0: RETVAL = posix_madvise (addr, len, advice_or_prot); break;
1725 case 1: RETVAL = mprotect (addr, len, advice_or_prot); break;
1726 }
1727}
1728 OUTPUT:
1729 RETVAL
1730
1731int
1732munlock (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef)
1733 CODE:
1734{
1735 STRLEN svlen;
1736 void *addr = SvPVbyte (scalar, svlen);
1737 size_t len = SvUV (length);
1738
1739 if (offset < 0)
1740 offset += svlen;
1741
1742 if (offset < 0 || offset > svlen)
1743 croak ("offset outside of scalar");
1744
1745 if (!SvOK (length) || len + offset > svlen)
1746 len = svlen - offset;
1747
1748 addr = (void *)(((intptr_t)addr) + offset);
1749 eio_page_align (&addr, &len);
1750#if _POSIX_MEMLOCK_RANGE
1751 RETVAL = munlock (addr, len);
1752#else
1753 RETVAL = ((errno = ENOSYS), -1);
1754#endif
1755}
1756 OUTPUT:
1757 RETVAL
1758
1759int
1760munlockall ()
1761 CODE:
1762#if _POSIX_MEMLOCK
1763 munlockall ();
1764#else
1765 RETVAL = -1;
1766 errno = ENOSYS;
1767#endif
1768 OUTPUT:
1769 RETVAL
1770
1278void _on_next_submit (SV *cb) 1771void _on_next_submit (SV *cb)
1279 CODE: 1772 CODE:
1280 SvREFCNT_dec (on_next_submit); 1773 SvREFCNT_dec (on_next_submit);
1281 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0; 1774 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0;
1282 1775
1283PROTOTYPES: DISABLE 1776PROTOTYPES: DISABLE
1777
1778MODULE = IO::AIO PACKAGE = IO::AIO::WD
1779
1780BOOT:
1781{
1782 newCONSTSUB (aio_stash, "CWD" , newSVaio_wd (EIO_CWD ));
1783 newCONSTSUB (aio_stash, "INVALID_WD", newSVaio_wd (EIO_INVALID_WD));
1784}
1785
1786void
1787DESTROY (SV *self)
1788 CODE:
1789{
1790 aio_wd wd = SvAIO_WD (self);
1791#if HAVE_AT
1792 SV *callback = &PL_sv_undef;
1793 dREQ; /* clobbers next_pri :/ */
1794 req->type = EIO_WD_CLOSE;
1795 req->wd = wd;
1796 REQ_SEND;
1797#else
1798 eio_wd_close_sync (wd);
1799#endif
1800}
1284 1801
1285MODULE = IO::AIO PACKAGE = IO::AIO::REQ 1802MODULE = IO::AIO PACKAGE = IO::AIO::REQ
1286 1803
1287void 1804void
1288cancel (aio_req_ornot req) 1805cancel (aio_req_ornot req)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines