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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines