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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines