ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/AIO.xs
Revision: 1.79
Committed: Thu Oct 26 16:28:33 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-2_0
Changes since 1.78: +71 -21 lines
Log Message:
*** empty log message ***

File Contents

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