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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines