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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines