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.19 by root, Sun Jul 31 19:04:45 2005 UTC vs.
Revision 1.70 by root, Tue Oct 24 15:15:56 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines