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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines