ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/AIO.xs
(Generate patch)

Comparing IO-AIO/AIO.xs (file contents):
Revision 1.10 by root, Wed Jul 13 00:13:09 2005 UTC vs.
Revision 1.61 by root, Mon Oct 23 22:44:21 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines