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