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.5 by root, Sun Jul 10 23:45:16 2005 UTC vs.
Revision 1.44 by root, Sat Oct 21 23:20:29 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines