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.35 by root, Tue Aug 23 01:16:50 2005 UTC vs.
Revision 1.64 by root, Mon Oct 23 23:54:41 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines