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.34 by root, Tue Aug 23 00:03:14 2005 UTC vs.
Revision 1.43 by root, Sat Oct 21 23:06:04 2006 UTC

7 7
8#include "autoconf/config.h" 8#include "autoconf/config.h"
9 9
10#include <pthread.h> 10#include <pthread.h>
11 11
12#include <stddef.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 16#include <limits.h>
15#include <unistd.h> 17#include <unistd.h>
16#include <fcntl.h> 18#include <fcntl.h>
17#include <signal.h> 19#include <signal.h>
18#include <sched.h> 20#include <sched.h>
19 21
23# elif __freebsd 25# elif __freebsd
24# include <sys/socket.h> 26# include <sys/socket.h>
25# include <sys/uio.h> 27# include <sys/uio.h>
26# elif __hpux 28# elif __hpux
27# include <sys/socket.h> 29# include <sys/socket.h>
30# elif __solaris /* not yet */
31# include <sys/sendfile.h>
28# else 32# else
29# error sendfile support requested but not available 33# error sendfile support requested but not available
30# endif 34# endif
31#endif 35#endif
32 36
37/* used for struct dirent, AIX doesn't provide it */
38#ifndef NAME_MAX
39# define NAME_MAX 4096
40#endif
41
33#if __ia64 42#if __ia64
34# define STACKSIZE 65536 43# define STACKSIZE 65536
35#else 44#else
36# define STACKSIZE 4096 45# define STACKSIZE 8192
37#endif 46#endif
38 47
39enum { 48enum {
40 REQ_QUIT, 49 REQ_QUIT,
41 REQ_OPEN, REQ_CLOSE, 50 REQ_OPEN, REQ_CLOSE,
42 REQ_READ, REQ_WRITE, REQ_READAHEAD, 51 REQ_READ, REQ_WRITE, REQ_READAHEAD,
43 REQ_SENDFILE, 52 REQ_SENDFILE,
44 REQ_STAT, REQ_LSTAT, REQ_FSTAT, 53 REQ_STAT, REQ_LSTAT, REQ_FSTAT,
45 REQ_FSYNC, REQ_FDATASYNC, 54 REQ_FSYNC, REQ_FDATASYNC,
46 REQ_UNLINK, REQ_RMDIR, 55 REQ_UNLINK, REQ_RMDIR, REQ_RENAME,
47 REQ_SYMLINK, 56 REQ_READDIR,
57 REQ_LINK, REQ_SYMLINK,
48}; 58};
49 59
60#define AIO_CB_KLASS "IO::AIO::CB"
61
50typedef struct aio_cb { 62typedef struct aio_cb
63{
64 struct aio_cb *grp_prev, *grp_next;
65 struct aio_grp *grp;
66
51 struct aio_cb *volatile next; 67 struct aio_cb *volatile next;
52 68
53 int type; 69 SV *self; /* the perl counterpart of this request, if any */
54 70
55 int fd, fd2; 71 SV *data, *callback;
72 SV *fh, *fh2;
73 void *dataptr, *data2ptr;
74 Stat_t *statdata;
56 off_t offset; 75 off_t offset;
57 size_t length; 76 size_t length;
58 ssize_t result; 77 ssize_t result;
78
79 int type;
80 int fd, fd2;
81 int errorno;
82 STRLEN dataoffset;
59 mode_t mode; /* open */ 83 mode_t mode; /* open */
60 int errorno; 84 unsigned char cancelled;
61 SV *data, *callback;
62 SV *fh, *fh2;
63 void *dataptr, *data2ptr;
64 STRLEN dataoffset;
65
66 Stat_t *statdata;
67} aio_cb; 85} aio_cb;
68 86
69typedef aio_cb *aio_req; 87typedef aio_cb *aio_req;
88typedef aio_cb *aio_req_ornot;
70 89
71static int started, wanted; 90static int started, wanted;
72static volatile int nreqs; 91static volatile int nreqs;
73static int max_outstanding = 1<<30; 92static int max_outstanding = 1<<30;
74static int respipe [2]; 93static int respipe [2];
78static pthread_cond_t reqwait = PTHREAD_COND_INITIALIZER; 97static pthread_cond_t reqwait = PTHREAD_COND_INITIALIZER;
79 98
80static volatile aio_req reqs, reqe; /* queue start, queue end */ 99static volatile aio_req reqs, reqe; /* queue start, queue end */
81static volatile aio_req ress, rese; /* queue start, queue end */ 100static volatile aio_req ress, rese; /* queue start, queue end */
82 101
102typedef struct aio_grp
103{
104 struct aio_cb *first, *last;
105 SV *callback;
106 int busycount;
107} aio_grp;
108
109static void aio_grp_begin (aio_grp *grp)
110{
111 ++grp->busycount;
112}
113
114static void aio_grp_end (aio_grp *grp)
115{
116 --grp->busycount;
117
118 if (grp->busycount)
119 return;
120
121 SvREFCNT_dec (grp->callback);
122 grp->callback = 0;
123}
124
125static aio_grp *aio_grp_new ()
126{
127 aio_grp *grp;
128
129 Newz (0, grp, 1, aio_grp);
130 aio_grp_begin (grp);
131
132 return grp;
133}
134
135/* must be called at most once */
136static SV *req_sv (aio_req req)
137{
138 req->self = (SV *)newHV ();
139 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0);
140
141 return sv_bless (newRV_noinc (req->self), gv_stashpv (AIO_CB_KLASS, 1));
142}
143
144static aio_req SvAIO_REQ (SV *sv)
145{
146 if (!sv_derived_from (sv, AIO_CB_KLASS) || !SvROK (sv))
147 croak ("object of class " AIO_CB_KLASS " expected");
148
149 MAGIC *mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
150
151 return mg ? (aio_req)mg->mg_ptr : 0;
152}
153
83static void free_req (aio_req req) 154static void req_free (aio_req req)
84{ 155{
156 if (req->self)
157 {
158 sv_unmagic (req->self, PERL_MAGIC_ext);
159 SvREFCNT_dec (req->self);
160 }
161
85 if (req->data) 162 if (req->data)
86 SvREFCNT_dec (req->data); 163 SvREFCNT_dec (req->data);
87 164
88 if (req->fh) 165 if (req->fh)
89 SvREFCNT_dec (req->fh); 166 SvREFCNT_dec (req->fh);
94 if (req->statdata) 171 if (req->statdata)
95 Safefree (req->statdata); 172 Safefree (req->statdata);
96 173
97 if (req->callback) 174 if (req->callback)
98 SvREFCNT_dec (req->callback); 175 SvREFCNT_dec (req->callback);
176
177 if (req->type == REQ_READDIR && req->result >= 0)
178 free (req->data2ptr);
99 179
100 Safefree (req); 180 Safefree (req);
101} 181}
102 182
103static void 183static void
168 PL_statcache = *(req->statdata); 248 PL_statcache = *(req->statdata);
169 } 249 }
170 250
171 ENTER; 251 ENTER;
172 PUSHMARK (SP); 252 PUSHMARK (SP);
173 XPUSHs (sv_2mortal (newSViv (req->result)));
174 253
175 if (req->type == REQ_OPEN) 254 if (req->type == REQ_READDIR)
176 { 255 {
177 /* convert fd to fh */ 256 SV *rv = &PL_sv_undef;
178 SV *fh;
179 257
180 PUTBACK; 258 if (req->result >= 0)
181 call_pv ("IO::AIO::_fd2fh", G_SCALAR | G_EVAL); 259 {
182 SPAGAIN; 260 char *buf = req->data2ptr;
261 AV *av = newAV ();
183 262
184 fh = SvREFCNT_inc (POPs); 263 while (req->result)
264 {
265 SV *sv = newSVpv (buf, 0);
185 266
267 av_push (av, sv);
268 buf += SvCUR (sv) + 1;
269 req->result--;
270 }
271
272 rv = sv_2mortal (newRV_noinc ((SV *)av));
273 }
274
186 PUSHMARK (SP); 275 XPUSHs (rv);
187 XPUSHs (sv_2mortal (fh));
188 } 276 }
277 else
278 {
279 XPUSHs (sv_2mortal (newSViv (req->result)));
189 280
281 if (req->type == REQ_OPEN)
282 {
283 /* convert fd to fh */
284 SV *fh;
285
286 PUTBACK;
287 call_pv ("IO::AIO::_fd2fh", G_SCALAR | G_EVAL);
288 SPAGAIN;
289
290 fh = SvREFCNT_inc (POPs);
291
292 PUSHMARK (SP);
293 XPUSHs (sv_2mortal (fh));
294 }
295 }
296
190 if (SvOK (req->callback)) 297 if (SvOK (req->callback) && !req->cancelled)
191 { 298 {
192 PUTBACK; 299 PUTBACK;
193 call_sv (req->callback, G_VOID | G_EVAL); 300 call_sv (req->callback, G_VOID | G_EVAL);
194 SPAGAIN; 301 SPAGAIN;
195 302
196 if (SvTRUE (ERRSV)) 303 if (SvTRUE (ERRSV))
197 { 304 {
198 free_req (req); 305 req_free (req);
199 croak (0); 306 croak (0);
200 } 307 }
201 } 308 }
202 309
203 LEAVE; 310 LEAVE;
204 311
205 errno = errorno; 312 errno = errorno;
206 count++; 313 count++;
207 } 314 }
208 315
209 free_req (req); 316 req_free (req);
210 } 317 }
211 318
212 return count; 319 return count;
213} 320}
214 321
233 340
234 sigprocmask (SIG_SETMASK, &oldsigset, 0); 341 sigprocmask (SIG_SETMASK, &oldsigset, 0);
235} 342}
236 343
237static void 344static void
238send_req (aio_req req) 345req_send (aio_req req)
239{ 346{
240 while (started < wanted && nreqs >= started) 347 while (started < wanted && nreqs >= started)
241 start_thread (); 348 start_thread ();
242 349
243 nreqs++; 350 nreqs++;
274{ 381{
275 aio_req req; 382 aio_req req;
276 Newz (0, req, 1, aio_cb); 383 Newz (0, req, 1, aio_cb);
277 req->type = REQ_QUIT; 384 req->type = REQ_QUIT;
278 385
279 send_req (req); 386 req_send (req);
280} 387}
281 388
282static void min_parallel (int nthreads) 389static void min_parallel (int nthreads)
283{ 390{
284 if (wanted < nthreads) 391 if (wanted < nthreads)
313 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)) 420 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK))
314 croak ("cannot set result pipe to nonblocking mode"); 421 croak ("cannot set result pipe to nonblocking mode");
315 422
316 if (fcntl (respipe [1], F_SETFL, O_NONBLOCK)) 423 if (fcntl (respipe [1], F_SETFL, O_NONBLOCK))
317 croak ("cannot set result pipe to nonblocking mode"); 424 croak ("cannot set result pipe to nonblocking mode");
318}
319
320static void atfork_prepare (void)
321{
322 pthread_mutex_lock (&reqlock);
323 pthread_mutex_lock (&reslock);
324}
325
326static void atfork_parent (void)
327{
328 pthread_mutex_unlock (&reslock);
329 pthread_mutex_unlock (&reqlock);
330}
331
332static void atfork_child (void)
333{
334 aio_req prv;
335
336 started = 0;
337
338 while (reqs)
339 {
340 prv = reqs;
341 reqs = prv->next;
342 free_req (prv);
343 }
344
345 reqs = reqe = 0;
346
347 while (ress)
348 {
349 prv = ress;
350 ress = prv->next;
351 free_req (prv);
352 }
353
354 ress = rese = 0;
355
356 close (respipe [0]);
357 close (respipe [1]);
358 create_pipe ();
359
360 atfork_parent ();
361} 425}
362 426
363/*****************************************************************************/ 427/*****************************************************************************/
364/* work around various missing functions */ 428/* work around various missing functions */
365 429
370/* 434/*
371 * make our pread/pwrite safe against themselves, but not against 435 * make our pread/pwrite safe against themselves, but not against
372 * normal read/write by using a mutex. slows down execution a lot, 436 * normal read/write by using a mutex. slows down execution a lot,
373 * but that's your problem, not mine. 437 * but that's your problem, not mine.
374 */ 438 */
375static pthread_mutex_t iolock = PTHREAD_MUTEX_INITIALIZER; 439static pthread_mutex_t preadwritelock = PTHREAD_MUTEX_INITIALIZER;
376 440
377static ssize_t 441static ssize_t
378pread (int fd, void *buf, size_t count, off_t offset) 442pread (int fd, void *buf, size_t count, off_t offset)
379{ 443{
380 ssize_t res; 444 ssize_t res;
381 off_t ooffset; 445 off_t ooffset;
382 446
383 pthread_mutex_lock (&iolock); 447 pthread_mutex_lock (&preadwritelock);
384 ooffset = lseek (fd, 0, SEEK_CUR); 448 ooffset = lseek (fd, 0, SEEK_CUR);
385 lseek (fd, offset, SEEK_SET); 449 lseek (fd, offset, SEEK_SET);
386 res = read (fd, buf, count); 450 res = read (fd, buf, count);
387 lseek (fd, ooffset, SEEK_SET); 451 lseek (fd, ooffset, SEEK_SET);
388 pthread_mutex_unlock (&iolock); 452 pthread_mutex_unlock (&preadwritelock);
389 453
390 return res; 454 return res;
391} 455}
392 456
393static ssize_t 457static ssize_t
394pwrite (int fd, void *buf, size_t count, off_t offset) 458pwrite (int fd, void *buf, size_t count, off_t offset)
395{ 459{
396 ssize_t res; 460 ssize_t res;
397 off_t ooffset; 461 off_t ooffset;
398 462
399 pthread_mutex_lock (&iolock); 463 pthread_mutex_lock (&preadwritelock);
400 ooffset = lseek (fd, 0, SEEK_CUR); 464 ooffset = lseek (fd, 0, SEEK_CUR);
401 lseek (fd, offset, SEEK_SET); 465 lseek (fd, offset, SEEK_SET);
402 res = write (fd, buf, count); 466 res = write (fd, buf, count);
403 lseek (fd, offset, SEEK_SET); 467 lseek (fd, offset, SEEK_SET);
404 pthread_mutex_unlock (&iolock); 468 pthread_mutex_unlock (&preadwritelock);
405 469
406 return res; 470 return res;
407} 471}
408#endif 472#endif
409 473
412#endif 476#endif
413 477
414#if !HAVE_READAHEAD 478#if !HAVE_READAHEAD
415# define readahead aio_readahead 479# define readahead aio_readahead
416 480
417static char readahead_buf[4096];
418
419static ssize_t 481static ssize_t
420readahead (int fd, off_t offset, size_t count) 482readahead (int fd, off_t offset, size_t count)
421{ 483{
484 char readahead_buf[4096];
485
422 while (count > 0) 486 while (count > 0)
423 { 487 {
424 size_t len = count < sizeof (readahead_buf) ? count : sizeof (readahead_buf); 488 size_t len = count < sizeof (readahead_buf) ? count : sizeof (readahead_buf);
425 489
426 pread (fd, readahead_buf, len, offset); 490 pread (fd, readahead_buf, len, offset);
430 494
431 errno = 0; 495 errno = 0;
432} 496}
433#endif 497#endif
434 498
499#if !HAVE_READDIR_R
500# define readdir_r aio_readdir_r
501
502static pthread_mutex_t readdirlock = PTHREAD_MUTEX_INITIALIZER;
503
504static int
505readdir_r (DIR *dirp, struct dirent *ent, struct dirent **res)
506{
507 struct dirent *e;
508 int errorno;
509
510 pthread_mutex_lock (&readdirlock);
511
512 e = readdir (dirp);
513 errorno = errno;
514
515 if (e)
516 {
517 *res = ent;
518 strcpy (ent->d_name, e->d_name);
519 }
520 else
521 *res = 0;
522
523 pthread_mutex_unlock (&readdirlock);
524
525 errno = errorno;
526 return e ? 0 : -1;
527}
528#endif
529
435/* sendfile always needs emulation */ 530/* sendfile always needs emulation */
436static ssize_t 531static ssize_t
437sendfile_ (int ofd, int ifd, off_t offset, size_t count) 532sendfile_ (int ofd, int ifd, off_t offset, size_t count)
438{ 533{
439 ssize_t res; 534 ssize_t res;
440 535
441 if (!count) 536 if (!count)
442 return 0; 537 return 0;
443 538
539#if HAVE_SENDFILE
444#if __linux 540# if __linux
445 res = sendfile (ofd, ifd, &offset, count); 541 res = sendfile (ofd, ifd, &offset, count);
446 542
447#elif __freebsd 543# elif __freebsd
448 /* 544 /*
449 * Of course, the freebsd sendfile is a dire hack with no thoughts 545 * Of course, the freebsd sendfile is a dire hack with no thoughts
450 * wasted on making it similar to other i/o functions. 546 * wasted on making it similar to other I/O functions.
451 */ 547 */
452 { 548 {
453 off_t sbytes; 549 off_t sbytes;
454 res = sendfile (ifd, ofd, offset, count, 0, &sbytes, 0); 550 res = sendfile (ifd, ofd, offset, count, 0, &sbytes, 0);
455 551
456 if (!res && errno == EAGAIN) 552 if (res < 0 && sbytes)
457 /* maybe on others, too, as usual, the manpage leaves you guessing */ 553 /* maybe only on EAGAIN only: as usual, the manpage leaves you guessing */
458 res = sbytes; 554 res = sbytes;
459 } 555 }
460 556
461#elif __hpux 557# elif __hpux
462 res = sendfile (ofd, ifd, offset, count, 0, 0); 558 res = sendfile (ofd, ifd, offset, count, 0, 0);
463 559
560# elif __solaris
561 {
562 struct sendfilevec vec;
563 size_t sbytes;
564
565 vec.sfv_fd = ifd;
566 vec.sfv_flag = 0;
567 vec.sfv_off = offset;
568 vec.sfv_len = count;
569
570 res = sendfilev (ofd, &vec, 1, &sbytes);
571
572 if (res < 0 && sbytes)
573 res = sbytes;
574 }
575
576# endif
464#else 577#else
465 res = -1; 578 res = -1;
466 errno = ENOSYS; 579 errno = ENOSYS;
467#endif 580#endif
468 581
582 if (res < 0
469 if (res < 0 && (errno == ENOSYS || errno == EINVAL || errno == ENOTSOCK)) 583 && (errno == ENOSYS || errno == EINVAL || errno == ENOTSOCK
584#if __solaris
585 || errno == EAFNOSUPPORT || errno == EPROTOTYPE
586#endif
587 )
588 )
470 { 589 {
471 /* emulate sendfile. this is a major pain in the ass */ 590 /* emulate sendfile. this is a major pain in the ass */
472 char *buf = malloc (4096); 591 char buf[4096];
473 res = 0; 592 res = 0;
474 593
475 for (;;) 594 while (count)
476 { 595 {
477 ssize_t cnt; 596 ssize_t cnt;
478 597
479 cnt = pread (ifd, buf, 4096, offset); 598 cnt = pread (ifd, buf, count > 4096 ? 4096 : count, offset);
480 599
481 if (cnt <= 0) 600 if (cnt <= 0)
482 { 601 {
483 if (cnt && !res) res = -1; 602 if (cnt && !res) res = -1;
484 break; 603 break;
485 } 604 }
486 605
487 cnt = write (ofd, buf, cnt); 606 cnt = write (ofd, buf, cnt);
488 607
489 if (cnt <= 0) 608 if (cnt <= 0)
490 { 609 {
491 if (cnt && !res) res = -1; 610 if (cnt && !res) res = -1;
492 break; 611 break;
493 } 612 }
494 613
495 offset += cnt; 614 offset += cnt;
496 res += cnt; 615 res += cnt;
616 count -= cnt;
497 } 617 }
498
499 {
500 int errorno = errno;
501 free (buf);
502 errno = errorno;
503 }
504 } 618 }
505 619
506 return res; 620 return res;
621}
622
623/* read a full directory */
624static int
625scandir_ (const char *path, void **namesp)
626{
627 DIR *dirp = opendir (path);
628 union
629 {
630 struct dirent d;
631 char b [offsetof (struct dirent, d_name) + NAME_MAX + 1];
632 } u;
633 struct dirent *entp;
634 char *name, *names;
635 int memlen = 4096;
636 int memofs = 0;
637 int res = 0;
638 int errorno;
639
640 if (!dirp)
641 return -1;
642
643 names = malloc (memlen);
644
645 for (;;)
646 {
647 errno = 0, readdir_r (dirp, &u.d, &entp);
648
649 if (!entp)
650 break;
651
652 name = entp->d_name;
653
654 if (name [0] != '.' || (name [1] && (name [1] != '.' || name [2])))
655 {
656 int len = strlen (name) + 1;
657
658 res++;
659
660 while (memofs + len > memlen)
661 {
662 memlen *= 2;
663 names = realloc (names, memlen);
664 if (!names)
665 break;
666 }
667
668 memcpy (names + memofs, name, len);
669 memofs += len;
670 }
671 }
672
673 errorno = errno;
674 closedir (dirp);
675
676 if (errorno)
677 {
678 free (names);
679 errno = errorno;
680 res = -1;
681 }
682
683 *namesp = (void *)names;
684 return res;
507} 685}
508 686
509/*****************************************************************************/ 687/*****************************************************************************/
510 688
511static void * 689static void *
536 714
537 pthread_mutex_unlock (&reqlock); 715 pthread_mutex_unlock (&reqlock);
538 716
539 errno = 0; /* strictly unnecessary */ 717 errno = 0; /* strictly unnecessary */
540 718
541 type = req->type; 719 if (!req->cancelled)
542
543 switch (type) 720 switch (req->type)
544 { 721 {
545 case REQ_READ: req->result = pread (req->fd, req->dataptr, req->length, req->offset); break; 722 case REQ_READ: req->result = pread (req->fd, req->dataptr, req->length, req->offset); break;
546 case REQ_WRITE: req->result = pwrite (req->fd, req->dataptr, req->length, req->offset); break; 723 case REQ_WRITE: req->result = pwrite (req->fd, req->dataptr, req->length, req->offset); break;
547 724
548 case REQ_READAHEAD: req->result = readahead (req->fd, req->offset, req->length); break; 725 case REQ_READAHEAD: req->result = readahead (req->fd, req->offset, req->length); break;
549 case REQ_SENDFILE: req->result = sendfile_ (req->fd, req->fd2, req->offset, req->length); break; 726 case REQ_SENDFILE: req->result = sendfile_ (req->fd, req->fd2, req->offset, req->length); break;
550 727
551 case REQ_STAT: req->result = stat (req->dataptr, req->statdata); break; 728 case REQ_STAT: req->result = stat (req->dataptr, req->statdata); break;
552 case REQ_LSTAT: req->result = lstat (req->dataptr, req->statdata); break; 729 case REQ_LSTAT: req->result = lstat (req->dataptr, req->statdata); break;
553 case REQ_FSTAT: req->result = fstat (req->fd , req->statdata); break; 730 case REQ_FSTAT: req->result = fstat (req->fd , req->statdata); break;
554 731
555 case REQ_OPEN: req->result = open (req->dataptr, req->fd, req->mode); break; 732 case REQ_OPEN: req->result = open (req->dataptr, req->fd, req->mode); break;
556 case REQ_CLOSE: req->result = close (req->fd); break; 733 case REQ_CLOSE: req->result = close (req->fd); break;
557 case REQ_UNLINK: req->result = unlink (req->dataptr); break; 734 case REQ_UNLINK: req->result = unlink (req->dataptr); break;
558 case REQ_RMDIR: req->result = rmdir (req->dataptr); break; 735 case REQ_RMDIR: req->result = rmdir (req->dataptr); break;
736 case REQ_RENAME: req->result = rename (req->data2ptr, req->dataptr); break;
737 case REQ_LINK: req->result = link (req->data2ptr, req->dataptr); break;
559 case REQ_SYMLINK: req->result = symlink (req->data2ptr, req->dataptr); break; 738 case REQ_SYMLINK: req->result = symlink (req->data2ptr, req->dataptr); break;
560 739
561 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break; 740 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break;
562 case REQ_FSYNC: req->result = fsync (req->fd); break; 741 case REQ_FSYNC: req->result = fsync (req->fd); break;
742 case REQ_READDIR: req->result = scandir_ (req->dataptr, &req->data2ptr); break;
563 743
564 case REQ_QUIT: 744 case REQ_QUIT:
565 break; 745 break;
566 746
567 default: 747 default:
568 req->result = ENOSYS; 748 req->result = ENOSYS;
569 break; 749 break;
570 } 750 }
571 751
572 req->errorno = errno; 752 req->errorno = errno;
573 753
574 pthread_mutex_lock (&reslock); 754 pthread_mutex_lock (&reslock);
575 755
593 while (type != REQ_QUIT); 773 while (type != REQ_QUIT);
594 774
595 return 0; 775 return 0;
596} 776}
597 777
778/*****************************************************************************/
779
780static void atfork_prepare (void)
781{
782 pthread_mutex_lock (&reqlock);
783 pthread_mutex_lock (&reslock);
784#if !HAVE_PREADWRITE
785 pthread_mutex_lock (&preadwritelock);
786#endif
787#if !HAVE_READDIR_R
788 pthread_mutex_lock (&readdirlock);
789#endif
790}
791
792static void atfork_parent (void)
793{
794#if !HAVE_READDIR_R
795 pthread_mutex_unlock (&readdirlock);
796#endif
797#if !HAVE_PREADWRITE
798 pthread_mutex_unlock (&preadwritelock);
799#endif
800 pthread_mutex_unlock (&reslock);
801 pthread_mutex_unlock (&reqlock);
802}
803
804static void atfork_child (void)
805{
806 aio_req prv;
807
808 started = 0;
809
810 while (reqs)
811 {
812 prv = reqs;
813 reqs = prv->next;
814 req_free (prv);
815 }
816
817 reqs = reqe = 0;
818
819 while (ress)
820 {
821 prv = ress;
822 ress = prv->next;
823 req_free (prv);
824 }
825
826 ress = rese = 0;
827
828 close (respipe [0]);
829 close (respipe [1]);
830 create_pipe ();
831
832 atfork_parent ();
833}
834
598#define dREQ \ 835#define dREQ \
599 aio_req req; \ 836 aio_req req; \
600 \ 837 \
601 if (SvOK (callback) && !SvROK (callback)) \ 838 if (SvOK (callback) && !SvROK (callback)) \
602 croak ("clalback must be undef or of reference type"); \ 839 croak ("callback must be undef or of reference type"); \
603 \ 840 \
604 Newz (0, req, 1, aio_cb); \ 841 Newz (0, req, 1, aio_cb); \
605 if (!req) \ 842 if (!req) \
606 croak ("out of memory during aio_req allocation"); \ 843 croak ("out of memory during aio_req allocation"); \
607 \ 844 \
608 req->callback = newSVsv (callback); 845 req->callback = newSVsv (callback)
846
847#define REQ_SEND \
848 req_send (req); \
849 \
850 if (GIMME_V != G_VOID) \
851 XPUSHs (req_sv (req));
609 852
610MODULE = IO::AIO PACKAGE = IO::AIO 853MODULE = IO::AIO PACKAGE = IO::AIO
611 854
612PROTOTYPES: ENABLE 855PROTOTYPES: ENABLE
613 856
614BOOT: 857BOOT:
615{ 858{
859 HV *stash = gv_stashpv ("IO::AIO", 1);
860 newCONSTSUB (stash, "EXDEV", newSViv (EXDEV));
861 newCONSTSUB (stash, "O_RDONLY", newSViv (O_RDONLY));
862 newCONSTSUB (stash, "O_WRONLY", newSViv (O_WRONLY));
863
616 create_pipe (); 864 create_pipe ();
617 pthread_atfork (atfork_prepare, atfork_parent, atfork_child); 865 pthread_atfork (atfork_prepare, atfork_parent, atfork_child);
618} 866}
619 867
620void 868void
621min_parallel(nthreads) 869min_parallel (nthreads)
622 int nthreads 870 int nthreads
623 PROTOTYPE: $ 871 PROTOTYPE: $
624 872
625void 873void
626max_parallel(nthreads) 874max_parallel (nthreads)
627 int nthreads 875 int nthreads
628 PROTOTYPE: $ 876 PROTOTYPE: $
629 877
630int 878int
631max_outstanding(nreqs) 879max_outstanding (nreqs)
632 int nreqs 880 int nreqs
633 PROTOTYPE: $ 881 PROTOTYPE: $
634 CODE: 882 CODE:
635 RETVAL = max_outstanding; 883 RETVAL = max_outstanding;
636 max_outstanding = nreqs; 884 max_outstanding = nreqs;
637 885
638void 886void
639aio_open(pathname,flags,mode,callback=&PL_sv_undef) 887aio_open (pathname,flags,mode,callback=&PL_sv_undef)
640 SV * pathname 888 SV * pathname
641 int flags 889 int flags
642 int mode 890 int mode
643 SV * callback 891 SV * callback
644 PROTOTYPE: $$$;$ 892 PROTOTYPE: $$$;$
645 CODE: 893 PPCODE:
646{ 894{
647 dREQ; 895 dREQ;
648 896
649 req->type = REQ_OPEN; 897 req->type = REQ_OPEN;
650 req->data = newSVsv (pathname); 898 req->data = newSVsv (pathname);
651 req->dataptr = SvPVbyte_nolen (req->data); 899 req->dataptr = SvPVbyte_nolen (req->data);
652 req->fd = flags; 900 req->fd = flags;
653 req->mode = mode; 901 req->mode = mode;
654 902
655 send_req (req); 903 REQ_SEND;
656} 904}
657 905
658void 906void
659aio_close(fh,callback=&PL_sv_undef) 907aio_close (fh,callback=&PL_sv_undef)
660 SV * fh 908 SV * fh
661 SV * callback 909 SV * callback
662 PROTOTYPE: $;$ 910 PROTOTYPE: $;$
663 ALIAS: 911 ALIAS:
664 aio_close = REQ_CLOSE 912 aio_close = REQ_CLOSE
665 aio_fsync = REQ_FSYNC 913 aio_fsync = REQ_FSYNC
666 aio_fdatasync = REQ_FDATASYNC 914 aio_fdatasync = REQ_FDATASYNC
667 CODE: 915 PPCODE:
668{ 916{
669 dREQ; 917 dREQ;
670 918
671 req->type = ix; 919 req->type = ix;
672 req->fh = newSVsv (fh); 920 req->fh = newSVsv (fh);
673 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh))); 921 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh)));
674 922
675 send_req (req); 923 REQ_SEND (req);
676} 924}
677 925
678void 926void
679aio_read(fh,offset,length,data,dataoffset,callback=&PL_sv_undef) 927aio_read (fh,offset,length,data,dataoffset,callback=&PL_sv_undef)
680 SV * fh 928 SV * fh
681 UV offset 929 UV offset
682 UV length 930 UV length
683 SV * data 931 SV * data
684 UV dataoffset 932 UV dataoffset
685 SV * callback 933 SV * callback
686 ALIAS: 934 ALIAS:
687 aio_read = REQ_READ 935 aio_read = REQ_READ
688 aio_write = REQ_WRITE 936 aio_write = REQ_WRITE
689 PROTOTYPE: $$$$$;$ 937 PROTOTYPE: $$$$$;$
690 CODE: 938 PPCODE:
691{ 939{
692 aio_req req; 940 aio_req req;
693 STRLEN svlen; 941 STRLEN svlen;
694 char *svptr = SvPVbyte (data, svlen); 942 char *svptr = SvPVbyte (data, svlen);
695 943
733 { 981 {
734 SvREADONLY_on (data); 982 SvREADONLY_on (data);
735 req->data2ptr = (void *)data; 983 req->data2ptr = (void *)data;
736 } 984 }
737 985
738 send_req (req); 986 REQ_SEND;
739 } 987 }
740} 988}
741 989
742void 990void
743aio_sendfile(out_fh,in_fh,in_offset,length,callback=&PL_sv_undef) 991aio_sendfile (out_fh,in_fh,in_offset,length,callback=&PL_sv_undef)
744 SV * out_fh 992 SV * out_fh
745 SV * in_fh 993 SV * in_fh
746 UV in_offset 994 UV in_offset
747 UV length 995 UV length
748 SV * callback 996 SV * callback
749 PROTOTYPE: $$$$;$ 997 PROTOTYPE: $$$$;$
750 CODE: 998 PPCODE:
751{ 999{
752 dREQ; 1000 dREQ;
753 1001
754 req->type = REQ_SENDFILE; 1002 req->type = REQ_SENDFILE;
755 req->fh = newSVsv (out_fh); 1003 req->fh = newSVsv (out_fh);
757 req->fh2 = newSVsv (in_fh); 1005 req->fh2 = newSVsv (in_fh);
758 req->fd2 = PerlIO_fileno (IoIFP (sv_2io (in_fh))); 1006 req->fd2 = PerlIO_fileno (IoIFP (sv_2io (in_fh)));
759 req->offset = in_offset; 1007 req->offset = in_offset;
760 req->length = length; 1008 req->length = length;
761 1009
762 send_req (req); 1010 REQ_SEND;
763} 1011}
764 1012
765void 1013void
766aio_readahead(fh,offset,length,callback=&PL_sv_undef) 1014aio_readahead (fh,offset,length,callback=&PL_sv_undef)
767 SV * fh 1015 SV * fh
768 UV offset 1016 UV offset
769 IV length 1017 IV length
770 SV * callback 1018 SV * callback
771 PROTOTYPE: $$$;$ 1019 PROTOTYPE: $$$;$
772 CODE: 1020 PPCODE:
773{ 1021{
774 dREQ; 1022 dREQ;
775 1023
776 req->type = REQ_READAHEAD; 1024 req->type = REQ_READAHEAD;
777 req->fh = newSVsv (fh); 1025 req->fh = newSVsv (fh);
778 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh))); 1026 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh)));
779 req->offset = offset; 1027 req->offset = offset;
780 req->length = length; 1028 req->length = length;
781 1029
782 send_req (req); 1030 REQ_SEND;
783} 1031}
784 1032
785void 1033void
786aio_stat(fh_or_path,callback=&PL_sv_undef) 1034aio_stat (fh_or_path,callback=&PL_sv_undef)
787 SV * fh_or_path 1035 SV * fh_or_path
788 SV * callback 1036 SV * callback
789 ALIAS: 1037 ALIAS:
790 aio_stat = REQ_STAT 1038 aio_stat = REQ_STAT
791 aio_lstat = REQ_LSTAT 1039 aio_lstat = REQ_LSTAT
792 CODE: 1040 PPCODE:
793{ 1041{
794 dREQ; 1042 dREQ;
795 1043
796 New (0, req->statdata, 1, Stat_t); 1044 New (0, req->statdata, 1, Stat_t);
797 if (!req->statdata) 1045 if (!req->statdata)
798 { 1046 {
799 free_req (req); 1047 req_free (req);
800 croak ("out of memory during aio_req->statdata allocation"); 1048 croak ("out of memory during aio_req->statdata allocation");
801 } 1049 }
802 1050
803 if (SvPOK (fh_or_path)) 1051 if (SvPOK (fh_or_path))
804 { 1052 {
811 req->type = REQ_FSTAT; 1059 req->type = REQ_FSTAT;
812 req->fh = newSVsv (fh_or_path); 1060 req->fh = newSVsv (fh_or_path);
813 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh_or_path))); 1061 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
814 } 1062 }
815 1063
816 send_req (req); 1064 REQ_SEND;
817} 1065}
818 1066
819void 1067void
820aio_unlink(pathname,callback=&PL_sv_undef) 1068aio_unlink (pathname,callback=&PL_sv_undef)
821 SV * pathname 1069 SV * pathname
822 SV * callback 1070 SV * callback
823 ALIAS: 1071 ALIAS:
824 aio_unlink = REQ_UNLINK 1072 aio_unlink = REQ_UNLINK
825 aio_rmdir = REQ_RMDIR 1073 aio_rmdir = REQ_RMDIR
1074 aio_readdir = REQ_READDIR
826 CODE: 1075 PPCODE:
827{ 1076{
828 dREQ; 1077 dREQ;
829 1078
830 req->type = ix; 1079 req->type = ix;
831 req->data = newSVsv (pathname); 1080 req->data = newSVsv (pathname);
832 req->dataptr = SvPVbyte_nolen (req->data); 1081 req->dataptr = SvPVbyte_nolen (req->data);
833 1082
834 send_req (req); 1083 REQ_SEND;
835} 1084}
836 1085
837void 1086void
838aio_symlink(oldpath,newpath,callback=&PL_sv_undef) 1087aio_link (oldpath,newpath,callback=&PL_sv_undef)
839 SV * oldpath 1088 SV * oldpath
840 SV * newpath 1089 SV * newpath
841 SV * callback 1090 SV * callback
1091 ALIAS:
1092 aio_link = REQ_LINK
1093 aio_symlink = REQ_SYMLINK
1094 aio_rename = REQ_RENAME
842 CODE: 1095 PPCODE:
843{ 1096{
844 dREQ; 1097 dREQ;
845 1098
846 req->type = REQ_SYMLINK; 1099 req->type = ix;
847 req->fh = newSVsv (oldpath); 1100 req->fh = newSVsv (oldpath);
848 req->data2ptr = SvPVbyte_nolen (req->fh); 1101 req->data2ptr = SvPVbyte_nolen (req->fh);
849 req->data = newSVsv (newpath); 1102 req->data = newSVsv (newpath);
850 req->dataptr = SvPVbyte_nolen (req->data); 1103 req->dataptr = SvPVbyte_nolen (req->data);
851 1104
852 send_req (req); 1105 REQ_SEND;
853} 1106}
854 1107
1108#if 0
1109
1110# undocumented, because it does not cancel active requests
855void 1111void
1112cancel_most_requests ()
1113 PROTOTYPE:
1114 CODE:
1115{
1116 aio_req *req;
1117
1118 pthread_mutex_lock (&reqlock);
1119 for (req = reqs; req; req = req->next)
1120 req->flags |= 1;
1121 pthread_mutex_unlock (&reqlock);
1122
1123 pthread_mutex_lock (&reslock);
1124 for (req = ress; req; req = req->next)
1125 req->flags |= 1;
1126 pthread_mutex_unlock (&reslock);
1127}
1128
1129#endif
1130
1131void
856flush() 1132flush ()
857 PROTOTYPE: 1133 PROTOTYPE:
858 CODE: 1134 CODE:
859 while (nreqs) 1135 while (nreqs)
860 { 1136 {
861 poll_wait (); 1137 poll_wait ();
901 CODE: 1177 CODE:
902 RETVAL = nreqs; 1178 RETVAL = nreqs;
903 OUTPUT: 1179 OUTPUT:
904 RETVAL 1180 RETVAL
905 1181
1182MODULE = IO::AIO PACKAGE = IO::AIO::CB
1183
1184void
1185cancel (aio_req_ornot req)
1186 PROTOTYPE:
1187 CODE:
1188 req->cancelled = 1;
1189

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines