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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines