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.18 by root, Sun Jul 31 19:00:31 2005 UTC vs.
Revision 1.71 by root, Tue Oct 24 16:35:04 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines