ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/AIO.xs
Revision: 1.65
Committed: Tue Oct 24 00:26:32 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.64: +54 -32 lines
Log Message:
*** empty log message ***

File Contents

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