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.77 by root, Thu Oct 26 13:25:40 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines