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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines