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.3 by root, Sun Jul 10 20:07:11 2005 UTC vs.
Revision 1.40 by root, Sat Jun 24 16:27:02 2006 UTC

1#define PERL_NO_GET_CONTEXT 1#define _REENTRANT 1
2#include <errno.h>
2 3
3#include "EXTERN.h" 4#include "EXTERN.h"
4#include "perl.h" 5#include "perl.h"
5#include "XSUB.h" 6#include "XSUB.h"
6 7
8#include "autoconf/config.h"
9
10#include <pthread.h>
11
12#include <stddef.h>
7#include <sys/types.h> 13#include <sys/types.h>
8#include <sys/stat.h> 14#include <sys/stat.h>
15#include <limits.h>
9#include <unistd.h> 16#include <unistd.h>
10#include <fcntl.h> 17#include <fcntl.h>
11#include <signal.h> 18#include <signal.h>
12#include <sched.h> 19#include <sched.h>
13#include <endian.h>
14 20
15#include <pthread.h> 21#if HAVE_SENDFILE
22# if __linux
23# include <sys/sendfile.h>
24# elif __freebsd
16#include <sys/syscall.h> 25# include <sys/socket.h>
26# include <sys/uio.h>
27# elif __hpux
28# include <sys/socket.h>
29# elif __solaris /* not yet */
30# include <sys/sendfile.h>
31# else
32# error sendfile support requested but not available
33# endif
34#endif
17 35
18typedef void *InputStream; /* hack, but 5.6.1 is simply toooo old ;) */ 36/* used for struct dirent, AIX doesn't provide it */
19typedef void *OutputStream; /* hack, but 5.6.1 is simply toooo old ;) */ 37#ifndef NAME_MAX
20typedef void *InOutStream; /* hack, but 5.6.1 is simply toooo old ;) */ 38# define NAME_MAX 4096
39#endif
21 40
22#if __i386 || __amd64
23# define STACKSIZE ( 256 * sizeof (long))
24#elif __ia64 41#if __ia64
25# define STACKSIZE (8192 * sizeof (long)) 42# define STACKSIZE 65536
26#else 43#else
27# define STACKSIZE ( 512 * sizeof (long)) 44# define STACKSIZE 8192
28#endif 45#endif
29 46
30enum { 47enum {
31 REQ_QUIT, 48 REQ_QUIT,
32 REQ_OPEN, REQ_CLOSE, 49 REQ_OPEN, REQ_CLOSE,
33 REQ_READ, REQ_WRITE, REQ_READAHEAD, 50 REQ_READ, REQ_WRITE, REQ_READAHEAD,
51 REQ_SENDFILE,
34 REQ_STAT, REQ_LSTAT, REQ_FSTAT, REQ_UNLINK, 52 REQ_STAT, REQ_LSTAT, REQ_FSTAT,
35 REQ_FSYNC, REQ_FDATASYNC, 53 REQ_FSYNC, REQ_FDATASYNC,
54 REQ_UNLINK, REQ_RMDIR, REQ_RENAME,
55 REQ_READDIR,
56 REQ_LINK, REQ_SYMLINK,
36}; 57};
37 58
38typedef struct aio_cb { 59typedef struct aio_cb {
39 struct aio_cb *volatile next; 60 struct aio_cb *volatile next;
40 61
41 int type; 62 int type;
42 63
64 /* should receive a cleanup, with unions */
43 int fd; 65 int fd, fd2;
44 off_t offset; 66 off_t offset;
45 size_t length; 67 size_t length;
46 ssize_t result; 68 ssize_t result;
47 mode_t mode; /* open */ 69 mode_t mode; /* open */
48 int errorno; 70 int errorno;
49 SV *data, *callback; 71 SV *data, *callback;
50 void *dataptr; 72 SV *fh, *fh2;
73 void *dataptr, *data2ptr;
51 STRLEN dataoffset; 74 STRLEN dataoffset;
52 75
53 Stat_t *statdata; 76 Stat_t *statdata;
54} aio_cb; 77} aio_cb;
55 78
56typedef aio_cb *aio_req; 79typedef aio_cb *aio_req;
57 80
58static int started; 81static int started, wanted;
59static int nreqs; 82static volatile int nreqs;
83static int max_outstanding = 1<<30;
60static int respipe [2]; 84static int respipe [2];
61 85
62static pthread_mutex_t reslock = PTHREAD_MUTEX_INITIALIZER; 86static pthread_mutex_t reslock = PTHREAD_MUTEX_INITIALIZER;
63static pthread_mutex_t reqlock = PTHREAD_MUTEX_INITIALIZER; 87static pthread_mutex_t reqlock = PTHREAD_MUTEX_INITIALIZER;
64static pthread_cond_t reqwait = PTHREAD_COND_INITIALIZER; 88static pthread_cond_t reqwait = PTHREAD_COND_INITIALIZER;
65 89
66static volatile aio_req reqs, reqe; /* queue start, queue end */ 90static volatile aio_req reqs, reqe; /* queue start, queue end */
67static volatile aio_req ress, rese; /* queue start, queue end */ 91static volatile aio_req ress, rese; /* queue start, queue end */
68 92
69static void *aio_proc(void *arg); 93static void free_req (aio_req req)
70
71static void
72start_thread (void)
73{ 94{
74 sigset_t fullsigset, oldsigset; 95 if (req->data)
75 pthread_t tid; 96 SvREFCNT_dec (req->data);
76 pthread_attr_t attr;
77 97
78 pthread_attr_init (&attr);
79 pthread_attr_setstacksize (&attr, STACKSIZE);
80 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
81
82 sigfillset (&fullsigset);
83 sigprocmask (SIG_SETMASK, &fullsigset, &oldsigset);
84
85 if (pthread_create (&tid, &attr, aio_proc, 0) == 0)
86 started++;
87
88 sigprocmask (SIG_SETMASK, &oldsigset, 0);
89}
90
91static void
92send_req (aio_req req)
93{
94 nreqs++;
95
96 pthread_mutex_lock (&reqlock);
97
98 req->next = 0;
99
100 if (reqe) 98 if (req->fh)
101 { 99 SvREFCNT_dec (req->fh);
102 reqe->next = req;
103 reqe = req;
104 }
105 else
106 reqe = reqs = req;
107 100
108 pthread_cond_signal (&reqwait);
109 pthread_mutex_unlock (&reqlock);
110}
111
112static void
113end_thread (void)
114{
115 aio_req req;
116 New (0, req, 1, aio_cb);
117 req->type = REQ_QUIT;
118
119 send_req (req);
120}
121
122static void
123read_write (pTHX_
124 int dowrite, int fd, off_t offset, size_t length,
125 SV *data, STRLEN dataoffset, SV *callback)
126{
127 aio_req req;
128 STRLEN svlen;
129 char *svptr = SvPV (data, svlen);
130
131 SvUPGRADE (data, SVt_PV);
132 SvPOK_on (data);
133
134 if (dataoffset < 0)
135 dataoffset += svlen;
136
137 if (dataoffset < 0 || dataoffset > svlen)
138 croak ("data offset outside of string");
139
140 if (dowrite)
141 {
142 /* write: check length and adjust. */
143 if (length < 0 || length + dataoffset > svlen)
144 length = svlen - dataoffset;
145 }
146 else
147 {
148 /* read: grow scalar as necessary */
149 svptr = SvGROW (data, length + dataoffset);
150 }
151
152 if (length < 0)
153 croak ("length must not be negative");
154
155 Newz (0, req, 1, aio_cb);
156
157 if (!req) 101 if (req->fh2)
158 croak ("out of memory during aio_req allocation"); 102 SvREFCNT_dec (req->fh2);
159 103
160 req->type = dowrite ? REQ_WRITE : REQ_READ; 104 if (req->statdata)
161 req->fd = fd; 105 Safefree (req->statdata);
162 req->offset = offset;
163 req->length = length;
164 req->data = SvREFCNT_inc (data);
165 req->dataptr = (char *)svptr + dataoffset;
166 req->callback = SvREFCNT_inc (callback);
167 106
168 send_req (req); 107 if (req->callback)
108 SvREFCNT_dec (req->callback);
109
110 if (req->type == REQ_READDIR && req->result >= 0)
111 free (req->data2ptr);
112
113 Safefree (req);
169} 114}
170 115
171static void 116static void
172poll_wait () 117poll_wait ()
173{ 118{
174 if (!nreqs) 119 if (nreqs && !ress)
175 return; 120 {
176
177 fd_set rfd; 121 fd_set rfd;
178 FD_ZERO(&rfd); 122 FD_ZERO(&rfd);
179 FD_SET(respipe [0], &rfd); 123 FD_SET(respipe [0], &rfd);
180 124
181 select (respipe [0] + 1, &rfd, 0, 0, 0); 125 select (respipe [0] + 1, &rfd, 0, 0, 0);
126 }
182} 127}
183 128
184static int 129static int
185poll_cb (pTHX) 130poll_cb ()
186{ 131{
187 dSP; 132 dSP;
188 int count = 0; 133 int count = 0;
134 int do_croak = 0;
189 aio_req req; 135 aio_req req;
190
191 {
192 /* read and signals sent by the worker threads */
193 char buf [32];
194 while (read (respipe [0], buf, 32) > 0)
195 ;
196 }
197 136
198 for (;;) 137 for (;;)
199 { 138 {
200 pthread_mutex_lock (&reslock); 139 pthread_mutex_lock (&reslock);
201
202 req = ress; 140 req = ress;
203 141
204 if (ress) 142 if (req)
205 { 143 {
206 ress = ress->next; 144 ress = req->next;
145
207 if (!ress) rese = 0; 146 if (!ress)
147 {
148 /* read any signals sent by the worker threads */
149 char buf [32];
150 while (read (respipe [0], buf, 32) == 32)
151 ;
152
153 rese = 0;
154 }
208 } 155 }
209 156
210 pthread_mutex_unlock (&reslock); 157 pthread_mutex_unlock (&reslock);
211 158
212 if (!req) 159 if (!req)
220 { 167 {
221 int errorno = errno; 168 int errorno = errno;
222 errno = req->errorno; 169 errno = req->errorno;
223 170
224 if (req->type == REQ_READ) 171 if (req->type == REQ_READ)
225 SvCUR_set (req->data, req->dataoffset 172 SvCUR_set (req->data, req->dataoffset + (req->result > 0 ? req->result : 0));
226 + req->result > 0 ? req->result : 0);
227 173
174 if (req->data2ptr && (req->type == REQ_READ || req->type == REQ_WRITE))
175 SvREADONLY_off (req->data);
176
228 if (req->data) 177 if (req->statdata)
229 SvREFCNT_dec (req->data);
230
231 if (req->type == REQ_STAT || req->type == REQ_LSTAT || req->type == REQ_FSTAT)
232 { 178 {
233 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT; 179 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT;
234 PL_laststatval = req->result; 180 PL_laststatval = req->result;
235 PL_statcache = *(req->statdata); 181 PL_statcache = *(req->statdata);
236
237 Safefree (req->statdata);
238 } 182 }
239 183
184 ENTER;
240 PUSHMARK (SP); 185 PUSHMARK (SP);
241 XPUSHs (sv_2mortal (newSViv (req->result)));
242 186
243 if (req->type == REQ_OPEN) 187 if (req->type == REQ_READDIR)
244 { 188 {
189 SV *rv = &PL_sv_undef;
190
191 if (req->result >= 0)
192 {
193 char *buf = req->data2ptr;
194 AV *av = newAV ();
195
196 while (req->result)
197 {
198 SV *sv = newSVpv (buf, 0);
199
200 av_push (av, sv);
201 buf += SvCUR (sv) + 1;
202 req->result--;
203 }
204
205 rv = sv_2mortal (newRV_noinc ((SV *)av));
206 }
207
208 XPUSHs (rv);
209 }
210 else
211 {
212 XPUSHs (sv_2mortal (newSViv (req->result)));
213
214 if (req->type == REQ_OPEN)
215 {
245 /* convert fd to fh */ 216 /* convert fd to fh */
246 SV *fh; 217 SV *fh;
247 218
219 PUTBACK;
220 call_pv ("IO::AIO::_fd2fh", G_SCALAR | G_EVAL);
221 SPAGAIN;
222
223 fh = SvREFCNT_inc (POPs);
224
225 PUSHMARK (SP);
226 XPUSHs (sv_2mortal (fh));
227 }
228 }
229
230 if (SvOK (req->callback))
231 {
248 PUTBACK; 232 PUTBACK;
249 call_pv ("IO::AIO::_fd2fh", G_SCALAR | G_EVAL); 233 call_sv (req->callback, G_VOID | G_EVAL);
250 SPAGAIN; 234 SPAGAIN;
251 235
252 fh = POPs; 236 if (SvTRUE (ERRSV))
253 237 {
254 PUSHMARK (SP); 238 free_req (req);
255 XPUSHs (fh); 239 croak (0);
240 }
256 } 241 }
257 242
258 PUTBACK;
259 call_sv (req->callback, G_VOID | G_EVAL);
260 SPAGAIN;
261 243 LEAVE;
262 if (req->callback)
263 SvREFCNT_dec (req->callback);
264 244
265 errno = errorno; 245 errno = errorno;
266 count++; 246 count++;
267 } 247 }
268 248
269 Safefree (req); 249 free_req (req);
270 } 250 }
271 251
272 return count; 252 return count;
273} 253}
254
255static void *aio_proc(void *arg);
256
257static void
258start_thread (void)
259{
260 sigset_t fullsigset, oldsigset;
261 pthread_t tid;
262 pthread_attr_t attr;
263
264 pthread_attr_init (&attr);
265 pthread_attr_setstacksize (&attr, STACKSIZE);
266 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
267
268 sigfillset (&fullsigset);
269 sigprocmask (SIG_SETMASK, &fullsigset, &oldsigset);
270
271 if (pthread_create (&tid, &attr, aio_proc, 0) == 0)
272 started++;
273
274 sigprocmask (SIG_SETMASK, &oldsigset, 0);
275}
276
277static void
278send_req (aio_req req)
279{
280 while (started < wanted && nreqs >= started)
281 start_thread ();
282
283 nreqs++;
284
285 pthread_mutex_lock (&reqlock);
286
287 req->next = 0;
288
289 if (reqe)
290 {
291 reqe->next = req;
292 reqe = req;
293 }
294 else
295 reqe = reqs = req;
296
297 pthread_cond_signal (&reqwait);
298 pthread_mutex_unlock (&reqlock);
299
300 if (nreqs > max_outstanding)
301 for (;;)
302 {
303 poll_cb ();
304
305 if (nreqs <= max_outstanding)
306 break;
307
308 poll_wait ();
309 }
310}
311
312static void
313end_thread (void)
314{
315 aio_req req;
316 Newz (0, req, 1, aio_cb);
317 req->type = REQ_QUIT;
318
319 send_req (req);
320}
321
322static void min_parallel (int nthreads)
323{
324 if (wanted < nthreads)
325 wanted = nthreads;
326}
327
328static void max_parallel (int nthreads)
329{
330 int cur = started;
331
332 if (wanted > nthreads)
333 wanted = nthreads;
334
335 while (cur > wanted)
336 {
337 end_thread ();
338 cur--;
339 }
340
341 while (started > wanted)
342 {
343 poll_wait ();
344 poll_cb ();
345 }
346}
347
348static void create_pipe ()
349{
350 if (pipe (respipe))
351 croak ("unable to initialize result pipe");
352
353 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK))
354 croak ("cannot set result pipe to nonblocking mode");
355
356 if (fcntl (respipe [1], F_SETFL, O_NONBLOCK))
357 croak ("cannot set result pipe to nonblocking mode");
358}
359
360/*****************************************************************************/
361/* work around various missing functions */
362
363#if !HAVE_PREADWRITE
364# define pread aio_pread
365# define pwrite aio_pwrite
366
367/*
368 * make our pread/pwrite safe against themselves, but not against
369 * normal read/write by using a mutex. slows down execution a lot,
370 * but that's your problem, not mine.
371 */
372static pthread_mutex_t preadwritelock = PTHREAD_MUTEX_INITIALIZER;
373
374static ssize_t
375pread (int fd, void *buf, size_t count, off_t offset)
376{
377 ssize_t res;
378 off_t ooffset;
379
380 pthread_mutex_lock (&preadwritelock);
381 ooffset = lseek (fd, 0, SEEK_CUR);
382 lseek (fd, offset, SEEK_SET);
383 res = read (fd, buf, count);
384 lseek (fd, ooffset, SEEK_SET);
385 pthread_mutex_unlock (&preadwritelock);
386
387 return res;
388}
389
390static ssize_t
391pwrite (int fd, void *buf, size_t count, off_t offset)
392{
393 ssize_t res;
394 off_t ooffset;
395
396 pthread_mutex_lock (&preadwritelock);
397 ooffset = lseek (fd, 0, SEEK_CUR);
398 lseek (fd, offset, SEEK_SET);
399 res = write (fd, buf, count);
400 lseek (fd, offset, SEEK_SET);
401 pthread_mutex_unlock (&preadwritelock);
402
403 return res;
404}
405#endif
406
407#if !HAVE_FDATASYNC
408# define fdatasync fsync
409#endif
410
411#if !HAVE_READAHEAD
412# define readahead aio_readahead
413
414static ssize_t
415readahead (int fd, off_t offset, size_t count)
416{
417 char readahead_buf[4096];
418
419 while (count > 0)
420 {
421 size_t len = count < sizeof (readahead_buf) ? count : sizeof (readahead_buf);
422
423 pread (fd, readahead_buf, len, offset);
424 offset += len;
425 count -= len;
426 }
427
428 errno = 0;
429}
430#endif
431
432#if !HAVE_READDIR_R
433# define readdir_r aio_readdir_r
434
435static pthread_mutex_t readdirlock = PTHREAD_MUTEX_INITIALIZER;
436
437static int
438readdir_r (DIR *dirp, struct dirent *ent, struct dirent **res)
439{
440 struct dirent *e;
441 int errorno;
442
443 pthread_mutex_lock (&readdirlock);
444
445 e = readdir (dirp);
446 errorno = errno;
447
448 if (e)
449 {
450 *res = ent;
451 strcpy (ent->d_name, e->d_name);
452 }
453 else
454 *res = 0;
455
456 pthread_mutex_unlock (&readdirlock);
457
458 errno = errorno;
459 return e ? 0 : -1;
460}
461#endif
462
463/* sendfile always needs emulation */
464static ssize_t
465sendfile_ (int ofd, int ifd, off_t offset, size_t count)
466{
467 ssize_t res;
468
469 if (!count)
470 return 0;
471
472#if HAVE_SENDFILE
473# if __linux
474 res = sendfile (ofd, ifd, &offset, count);
475
476# elif __freebsd
477 /*
478 * Of course, the freebsd sendfile is a dire hack with no thoughts
479 * wasted on making it similar to other I/O functions.
480 */
481 {
482 off_t sbytes;
483 res = sendfile (ifd, ofd, offset, count, 0, &sbytes, 0);
484
485 if (res < 0 && sbytes)
486 /* maybe only on EAGAIN only: as usual, the manpage leaves you guessing */
487 res = sbytes;
488 }
489
490# elif __hpux
491 res = sendfile (ofd, ifd, offset, count, 0, 0);
492
493# elif __solaris
494 {
495 struct sendfilevec vec;
496 size_t sbytes;
497
498 vec.sfv_fd = ifd;
499 vec.sfv_flag = 0;
500 vec.sfv_off = offset;
501 vec.sfv_len = count;
502
503 res = sendfilev (ofd, &vec, 1, &sbytes);
504
505 if (res < 0 && sbytes)
506 res = sbytes;
507 }
508
509# endif
510#else
511 res = -1;
512 errno = ENOSYS;
513#endif
514
515 if (res < 0
516 && (errno == ENOSYS || errno == EINVAL || errno == ENOTSOCK
517#if __solaris
518 || errno == EAFNOSUPPORT || errno == EPROTOTYPE
519#endif
520 )
521 )
522 {
523 /* emulate sendfile. this is a major pain in the ass */
524 char buf[4096];
525 res = 0;
526
527 while (count)
528 {
529 ssize_t cnt;
530
531 cnt = pread (ifd, buf, count > 4096 ? 4096 : count, offset);
532
533 if (cnt <= 0)
534 {
535 if (cnt && !res) res = -1;
536 break;
537 }
538
539 cnt = write (ofd, buf, cnt);
540
541 if (cnt <= 0)
542 {
543 if (cnt && !res) res = -1;
544 break;
545 }
546
547 offset += cnt;
548 res += cnt;
549 count -= cnt;
550 }
551 }
552
553 return res;
554}
555
556/* read a full directory */
557static int
558scandir_ (const char *path, void **namesp)
559{
560 DIR *dirp = opendir (path);
561 union
562 {
563 struct dirent d;
564 char b [offsetof (struct dirent, d_name) + NAME_MAX + 1];
565 } u;
566 struct dirent *entp;
567 char *name, *names;
568 int memlen = 4096;
569 int memofs = 0;
570 int res = 0;
571 int errorno;
572
573 if (!dirp)
574 return -1;
575
576 names = malloc (memlen);
577
578 for (;;)
579 {
580 errno = 0, readdir_r (dirp, &u.d, &entp);
581
582 if (!entp)
583 break;
584
585 name = entp->d_name;
586
587 if (name [0] != '.' || (name [1] && (name [1] != '.' || name [2])))
588 {
589 int len = strlen (name) + 1;
590
591 res++;
592
593 while (memofs + len > memlen)
594 {
595 memlen *= 2;
596 names = realloc (names, memlen);
597 if (!names)
598 break;
599 }
600
601 memcpy (names + memofs, name, len);
602 memofs += len;
603 }
604 }
605
606 errorno = errno;
607 closedir (dirp);
608
609 if (errorno)
610 {
611 free (names);
612 errno = errorno;
613 res = -1;
614 }
615
616 *namesp = (void *)names;
617 return res;
618}
619
620/*****************************************************************************/
274 621
275static void * 622static void *
276aio_proc (void *thr_arg) 623aio_proc (void *thr_arg)
277{ 624{
278 aio_req req; 625 aio_req req;
304 651
305 type = req->type; 652 type = req->type;
306 653
307 switch (type) 654 switch (type)
308 { 655 {
309 case REQ_READ: req->result = pread64 (req->fd, req->dataptr, req->length, req->offset); break; 656 case REQ_READ: req->result = pread (req->fd, req->dataptr, req->length, req->offset); break;
310 case REQ_WRITE: req->result = pwrite64 (req->fd, req->dataptr, req->length, req->offset); break; 657 case REQ_WRITE: req->result = pwrite (req->fd, req->dataptr, req->length, req->offset); break;
311#if SYS_readahead 658
312 case REQ_READAHEAD: req->result = readahead (req->fd, req->offset, req->length); break; 659 case REQ_READAHEAD: req->result = readahead (req->fd, req->offset, req->length); break;
313#else 660 case REQ_SENDFILE: req->result = sendfile_ (req->fd, req->fd2, req->offset, req->length); break;
314 case REQ_READAHEAD: req->result = -1; errno = ENOSYS; break;
315#endif
316 661
317 case REQ_STAT: req->result = stat (req->dataptr, req->statdata); break; 662 case REQ_STAT: req->result = stat (req->dataptr, req->statdata); break;
318 case REQ_LSTAT: req->result = lstat (req->dataptr, req->statdata); break; 663 case REQ_LSTAT: req->result = lstat (req->dataptr, req->statdata); break;
319 case REQ_FSTAT: req->result = fstat (req->fd , req->statdata); break; 664 case REQ_FSTAT: req->result = fstat (req->fd , req->statdata); break;
320 665
321 case REQ_OPEN: req->result = open (req->dataptr, req->fd, req->mode); break; 666 case REQ_OPEN: req->result = open (req->dataptr, req->fd, req->mode); break;
322 case REQ_CLOSE: req->result = close (req->fd); break; 667 case REQ_CLOSE: req->result = close (req->fd); break;
323 case REQ_UNLINK: req->result = unlink (req->dataptr); break; 668 case REQ_UNLINK: req->result = unlink (req->dataptr); break;
669 case REQ_RMDIR: req->result = rmdir (req->dataptr); break;
670 case REQ_RENAME: req->result = rename (req->data2ptr, req->dataptr); break;
671 case REQ_LINK: req->result = link (req->data2ptr, req->dataptr); break;
672 case REQ_SYMLINK: req->result = symlink (req->data2ptr, req->dataptr); break;
324 673
674 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break;
325 case REQ_FSYNC: req->result = fsync (req->fd); break; 675 case REQ_FSYNC: req->result = fsync (req->fd); break;
326 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break; 676 case REQ_READDIR: req->result = scandir_ (req->dataptr, &req->data2ptr); break;
327 677
328 case REQ_QUIT: 678 case REQ_QUIT:
329 break; 679 break;
330 680
331 default: 681 default:
357 while (type != REQ_QUIT); 707 while (type != REQ_QUIT);
358 708
359 return 0; 709 return 0;
360} 710}
361 711
712/*****************************************************************************/
713
714static void atfork_prepare (void)
715{
716 pthread_mutex_lock (&reqlock);
717 pthread_mutex_lock (&reslock);
718#if !HAVE_PREADWRITE
719 pthread_mutex_lock (&preadwritelock);
720#endif
721#if !HAVE_READDIR_R
722 pthread_mutex_lock (&readdirlock);
723#endif
724}
725
726static void atfork_parent (void)
727{
728#if !HAVE_READDIR_R
729 pthread_mutex_unlock (&readdirlock);
730#endif
731#if !HAVE_PREADWRITE
732 pthread_mutex_unlock (&preadwritelock);
733#endif
734 pthread_mutex_unlock (&reslock);
735 pthread_mutex_unlock (&reqlock);
736}
737
738static void atfork_child (void)
739{
740 aio_req prv;
741
742 started = 0;
743
744 while (reqs)
745 {
746 prv = reqs;
747 reqs = prv->next;
748 free_req (prv);
749 }
750
751 reqs = reqe = 0;
752
753 while (ress)
754 {
755 prv = ress;
756 ress = prv->next;
757 free_req (prv);
758 }
759
760 ress = rese = 0;
761
762 close (respipe [0]);
763 close (respipe [1]);
764 create_pipe ();
765
766 atfork_parent ();
767}
768
769#define dREQ \
770 aio_req req; \
771 \
772 if (SvOK (callback) && !SvROK (callback)) \
773 croak ("clalback must be undef or of reference type"); \
774 \
775 Newz (0, req, 1, aio_cb); \
776 if (!req) \
777 croak ("out of memory during aio_req allocation"); \
778 \
779 req->callback = newSVsv (callback);
780
362MODULE = IO::AIO PACKAGE = IO::AIO 781MODULE = IO::AIO PACKAGE = IO::AIO
363 782
783PROTOTYPES: ENABLE
784
364BOOT: 785BOOT:
365{ 786{
366 if (pipe (respipe)) 787 create_pipe ();
367 croak ("unable to initialize result pipe"); 788 pthread_atfork (atfork_prepare, atfork_parent, atfork_child);
368
369 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK))
370 croak ("cannot set result pipe to nonblocking mode");
371
372 if (fcntl (respipe [1], F_SETFL, O_NONBLOCK))
373 croak ("cannot set result pipe to nonblocking mode");
374} 789}
375 790
376void 791void
377min_parallel(nthreads) 792min_parallel (nthreads)
378 int nthreads 793 int nthreads
379 PROTOTYPE: $ 794 PROTOTYPE: $
380 CODE:
381 while (nthreads > started)
382 start_thread ();
383 795
384void 796void
385max_parallel(nthreads) 797max_parallel (nthreads)
386 int nthreads 798 int nthreads
387 PROTOTYPE: $ 799 PROTOTYPE: $
800
801int
802max_outstanding (nreqs)
803 int nreqs
804 PROTOTYPE: $
388 CODE: 805 CODE:
389{ 806 RETVAL = max_outstanding;
390 int cur = started; 807 max_outstanding = nreqs;
391 while (cur > nthreads)
392 {
393 end_thread ();
394 cur--;
395 }
396 808
397 while (started > nthreads)
398 {
399 poll_wait ();
400 poll_cb (aTHX);
401 }
402}
403
404void 809void
405aio_open(pathname,flags,mode,callback) 810aio_open (pathname,flags,mode,callback=&PL_sv_undef)
406 SV * pathname 811 SV * pathname
407 int flags 812 int flags
408 int mode 813 int mode
409 SV * callback 814 SV * callback
410 PROTOTYPE: $$$$ 815 PROTOTYPE: $$$;$
411 CODE: 816 CODE:
412{ 817{
413 aio_req req; 818 dREQ;
414
415 Newz (0, req, 1, aio_cb);
416
417 if (!req)
418 croak ("out of memory during aio_req allocation");
419 819
420 req->type = REQ_OPEN; 820 req->type = REQ_OPEN;
421 req->data = newSVsv (pathname); 821 req->data = newSVsv (pathname);
422 req->dataptr = SvPV_nolen (req->data); 822 req->dataptr = SvPVbyte_nolen (req->data);
423 req->fd = flags; 823 req->fd = flags;
424 req->mode = mode; 824 req->mode = mode;
425 req->callback = SvREFCNT_inc (callback);
426 825
427 send_req (req); 826 send_req (req);
428} 827}
429 828
430void 829void
431aio_close(fh,callback) 830aio_close (fh,callback=&PL_sv_undef)
432 InputStream fh 831 SV * fh
433 SV * callback 832 SV * callback
434 PROTOTYPE: $$ 833 PROTOTYPE: $;$
435 ALIAS: 834 ALIAS:
436 aio_close = REQ_CLOSE 835 aio_close = REQ_CLOSE
437 aio_fsync = REQ_FSYNC 836 aio_fsync = REQ_FSYNC
438 aio_fdatasync = REQ_FDATASYNC 837 aio_fdatasync = REQ_FDATASYNC
439 CODE: 838 CODE:
440{ 839{
840 dREQ;
841
842 req->type = ix;
843 req->fh = newSVsv (fh);
844 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh)));
845
846 send_req (req);
847}
848
849void
850aio_read (fh,offset,length,data,dataoffset,callback=&PL_sv_undef)
851 SV * fh
852 UV offset
853 UV length
854 SV * data
855 UV dataoffset
856 SV * callback
857 ALIAS:
858 aio_read = REQ_READ
859 aio_write = REQ_WRITE
860 PROTOTYPE: $$$$$;$
861 CODE:
862{
441 aio_req req; 863 aio_req req;
864 STRLEN svlen;
865 char *svptr = SvPVbyte (data, svlen);
442 866
443 Newz (0, req, 1, aio_cb); 867 SvUPGRADE (data, SVt_PV);
868 SvPOK_on (data);
444 869
445 if (!req) 870 if (dataoffset < 0)
446 croak ("out of memory during aio_req allocation"); 871 dataoffset += svlen;
447 872
448 req->type = ix; 873 if (dataoffset < 0 || dataoffset > svlen)
449 req->fd = PerlIO_fileno (fh); 874 croak ("data offset outside of string");
450 req->callback = SvREFCNT_inc (callback);
451 875
452 send_req (req); 876 if (ix == REQ_WRITE)
453} 877 {
454 878 /* write: check length and adjust. */
455void 879 if (length < 0 || length + dataoffset > svlen)
456aio_read(fh,offset,length,data,dataoffset,callback) 880 length = svlen - dataoffset;
457 InputStream fh 881 }
458 UV offset 882 else
459 IV length 883 {
460 SV * data 884 /* read: grow scalar as necessary */
461 IV dataoffset 885 svptr = SvGROW (data, length + dataoffset);
462 SV * callback 886 }
463 PROTOTYPE: $$$$$$
464 CODE:
465 read_write (aTHX_ 0, PerlIO_fileno (fh), offset, length, data, dataoffset, callback);
466
467void
468aio_write(fh,offset,length,data,dataoffset,callback)
469 OutputStream fh
470 UV offset
471 IV length
472 SV * data
473 IV dataoffset
474 SV * callback
475 PROTOTYPE: $$$$$$
476 CODE:
477 read_write (aTHX_ 1, PerlIO_fileno (fh), offset, length, data, dataoffset, callback);
478
479void
480aio_readahead(fh,offset,length,callback)
481 InputStream fh
482 UV offset
483 IV length
484 SV * callback
485 PROTOTYPE: $$$$
486 CODE:
487{
488 aio_req req;
489 887
490 if (length < 0) 888 if (length < 0)
491 croak ("length must not be negative"); 889 croak ("length must not be negative");
492 890
493 Newz (0, req, 1, aio_cb); 891 {
892 dREQ;
494 893
495 if (!req) 894 req->type = ix;
496 croak ("out of memory during aio_req allocation"); 895 req->fh = newSVsv (fh);
896 req->fd = PerlIO_fileno (ix == REQ_READ ? IoIFP (sv_2io (fh))
897 : IoOFP (sv_2io (fh)));
898 req->offset = offset;
899 req->length = length;
900 req->data = SvREFCNT_inc (data);
901 req->dataptr = (char *)svptr + dataoffset;
902
903 if (!SvREADONLY (data))
904 {
905 SvREADONLY_on (data);
906 req->data2ptr = (void *)data;
907 }
908
909 send_req (req);
910 }
911}
912
913void
914aio_sendfile (out_fh,in_fh,in_offset,length,callback=&PL_sv_undef)
915 SV * out_fh
916 SV * in_fh
917 UV in_offset
918 UV length
919 SV * callback
920 PROTOTYPE: $$$$;$
921 CODE:
922{
923 dREQ;
924
925 req->type = REQ_SENDFILE;
926 req->fh = newSVsv (out_fh);
927 req->fd = PerlIO_fileno (IoIFP (sv_2io (out_fh)));
928 req->fh2 = newSVsv (in_fh);
929 req->fd2 = PerlIO_fileno (IoIFP (sv_2io (in_fh)));
930 req->offset = in_offset;
931 req->length = length;
932
933 send_req (req);
934}
935
936void
937aio_readahead (fh,offset,length,callback=&PL_sv_undef)
938 SV * fh
939 UV offset
940 IV length
941 SV * callback
942 PROTOTYPE: $$$;$
943 CODE:
944{
945 dREQ;
497 946
498 req->type = REQ_READAHEAD; 947 req->type = REQ_READAHEAD;
948 req->fh = newSVsv (fh);
499 req->fd = PerlIO_fileno (fh); 949 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh)));
500 req->offset = offset; 950 req->offset = offset;
501 req->length = length; 951 req->length = length;
502 req->callback = SvREFCNT_inc (callback);
503 952
504 send_req (req); 953 send_req (req);
505} 954}
506 955
507void 956void
508aio_stat(fh_or_path,callback) 957aio_stat (fh_or_path,callback=&PL_sv_undef)
509 SV * fh_or_path 958 SV * fh_or_path
510 SV * callback 959 SV * callback
511 PROTOTYPE: $$
512 ALIAS: 960 ALIAS:
961 aio_stat = REQ_STAT
513 aio_lstat = 1 962 aio_lstat = REQ_LSTAT
514 CODE: 963 CODE:
515{ 964{
516 aio_req req; 965 dREQ;
517
518 Newz (0, req, 1, aio_cb);
519
520 if (!req)
521 croak ("out of memory during aio_req allocation");
522 966
523 New (0, req->statdata, 1, Stat_t); 967 New (0, req->statdata, 1, Stat_t);
524
525 if (!req->statdata) 968 if (!req->statdata)
969 {
970 free_req (req);
526 croak ("out of memory during aio_req->statdata allocation"); 971 croak ("out of memory during aio_req->statdata allocation");
972 }
527 973
528 if (SvPOK (fh_or_path)) 974 if (SvPOK (fh_or_path))
529 { 975 {
530 req->type = ix ? REQ_LSTAT : REQ_STAT; 976 req->type = ix;
531 req->data = newSVsv (fh_or_path); 977 req->data = newSVsv (fh_or_path);
532 req->dataptr = SvPV_nolen (req->data); 978 req->dataptr = SvPVbyte_nolen (req->data);
533 } 979 }
534 else 980 else
535 { 981 {
536 req->type = REQ_FSTAT; 982 req->type = REQ_FSTAT;
983 req->fh = newSVsv (fh_or_path);
537 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh_or_path))); 984 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
538 } 985 }
539 986
540 req->callback = SvREFCNT_inc (callback);
541
542 send_req (req); 987 send_req (req);
543} 988}
544 989
545void 990void
546aio_unlink(pathname,callback) 991aio_unlink (pathname,callback=&PL_sv_undef)
547 SV * pathname 992 SV * pathname
548 SV * callback 993 SV * callback
549 PROTOTYPE: $$ 994 ALIAS:
995 aio_unlink = REQ_UNLINK
996 aio_rmdir = REQ_RMDIR
997 aio_readdir = REQ_READDIR
550 CODE: 998 CODE:
551{ 999{
552 aio_req req; 1000 dREQ;
553 1001
554 Newz (0, req, 1, aio_cb); 1002 req->type = ix;
555
556 if (!req)
557 croak ("out of memory during aio_req allocation");
558
559 req->type = REQ_UNLINK;
560 req->data = newSVsv (pathname); 1003 req->data = newSVsv (pathname);
561 req->dataptr = SvPV_nolen (req->data); 1004 req->dataptr = SvPVbyte_nolen (req->data);
562 req->callback = SvREFCNT_inc (callback);
563 1005
564 send_req (req); 1006 send_req (req);
565} 1007}
1008
1009void
1010aio_link (oldpath,newpath,callback=&PL_sv_undef)
1011 SV * oldpath
1012 SV * newpath
1013 SV * callback
1014 ALIAS:
1015 aio_link = REQ_LINK
1016 aio_symlink = REQ_SYMLINK
1017 aio_rename = REQ_RENAME
1018 CODE:
1019{
1020 dREQ;
1021
1022 req->type = ix;
1023 req->fh = newSVsv (oldpath);
1024 req->data2ptr = SvPVbyte_nolen (req->fh);
1025 req->data = newSVsv (newpath);
1026 req->dataptr = SvPVbyte_nolen (req->data);
1027
1028 send_req (req);
1029}
1030
1031void
1032flush ()
1033 PROTOTYPE:
1034 CODE:
1035 while (nreqs)
1036 {
1037 poll_wait ();
1038 poll_cb ();
1039 }
1040
1041void
1042poll()
1043 PROTOTYPE:
1044 CODE:
1045 if (nreqs)
1046 {
1047 poll_wait ();
1048 poll_cb ();
1049 }
566 1050
567int 1051int
568poll_fileno() 1052poll_fileno()
569 PROTOTYPE: 1053 PROTOTYPE:
570 CODE: 1054 CODE:
574 1058
575int 1059int
576poll_cb(...) 1060poll_cb(...)
577 PROTOTYPE: 1061 PROTOTYPE:
578 CODE: 1062 CODE:
579 RETVAL = poll_cb (aTHX); 1063 RETVAL = poll_cb ();
580 OUTPUT: 1064 OUTPUT:
581 RETVAL 1065 RETVAL
582 1066
583void 1067void
584poll_wait() 1068poll_wait()

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines