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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines