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.53 by root, Mon Oct 23 00:17:07 2006 UTC vs.
Revision 1.108 by root, Thu Oct 4 12:50:35 2007 UTC

1#define _REENTRANT 1 1#include "xthread.h"
2
2#include <errno.h> 3#include <errno.h>
3 4
4#include "EXTERN.h" 5#include "EXTERN.h"
5#include "perl.h" 6#include "perl.h"
6#include "XSUB.h" 7#include "XSUB.h"
7 8
8#include "autoconf/config.h"
9
10#include <pthread.h>
11
12#include <stddef.h> 9#include <stddef.h>
10#include <stdlib.h>
13#include <errno.h> 11#include <errno.h>
14#include <sys/time.h>
15#include <sys/select.h>
16#include <sys/types.h> 12#include <sys/types.h>
17#include <sys/stat.h> 13#include <sys/stat.h>
18#include <limits.h> 14#include <limits.h>
19#include <unistd.h>
20#include <fcntl.h> 15#include <fcntl.h>
21#include <signal.h>
22#include <sched.h> 16#include <sched.h>
17
18#ifdef _WIN32
19
20# define SIGIO 0
21 typedef Direntry_t X_DIRENT;
22#undef malloc
23#undef free
24
25// perl overrides all those nice win32 functions
26# undef open
27# undef read
28# undef write
29# undef send
30# undef recv
31# undef stat
32# undef fstat
33# define lstat stat
34# undef truncate
35# undef ftruncate
36# undef open
37# undef close
38# undef unlink
39# undef rmdir
40# undef rename
41# undef lseek
42
43# define chown(a,b,c) (errno = ENOSYS, -1)
44# define fchown(a,b,c) (errno = ENOSYS, -1)
45# define fchmod(a,b) (errno = ENOSYS, -1)
46# define symlink(a,b) (errno = ENOSYS, -1)
47# define readlink(a,b,c) (errno = ENOSYS, -1)
48# define mknod(a,b,c) (errno = ENOSYS, -1)
49# define truncate(a,b) (errno = ENOSYS, -1)
50# define ftruncate(fd,o) chsize ((fd), (o))
51# define fsync(fd) _commit (fd)
52# define opendir(fd) (errno = ENOSYS, 0)
53# define readdir(fd) (errno = ENOSYS, -1)
54# define closedir(fd) (errno = ENOSYS, -1)
55# define mkdir(a,b) mkdir (a)
56
57#else
58
59# include "autoconf/config.h"
60# include <sys/time.h>
61# include <sys/select.h>
62# include <unistd.h>
63# include <utime.h>
64# include <signal.h>
65 typedef struct dirent X_DIRENT;
66
67#endif
23 68
24#if HAVE_SENDFILE 69#if HAVE_SENDFILE
25# if __linux 70# if __linux
26# include <sys/sendfile.h> 71# include <sys/sendfile.h>
27# elif __freebsd 72# elif __freebsd
34# else 79# else
35# error sendfile support requested but not available 80# error sendfile support requested but not available
36# endif 81# endif
37#endif 82#endif
38 83
84/* number of seconds after which idle threads exit */
85#define IDLE_TIMEOUT 10
86
39/* used for struct dirent, AIX doesn't provide it */ 87/* used for struct dirent, AIX doesn't provide it */
40#ifndef NAME_MAX 88#ifndef NAME_MAX
41# define NAME_MAX 4096 89# define NAME_MAX 4096
42#endif 90#endif
43 91
44#if __ia64 92/* buffer size for various temporary buffers */
45# define STACKSIZE 65536 93#define AIO_BUFSIZE 65536
94
95/* use NV for 32 bit perls as it allows larger offsets */
96#if IVSIZE >= 8
97# define SvVAL64 SvIV
46#else 98#else
47# define STACKSIZE 8192 99# define SvVAL64 SvNV
48#endif 100#endif
101
102static HV *stash;
103
104#define dBUF \
105 char *aio_buf; \
106 X_LOCK (wrklock); \
107 self->dbuf = aio_buf = malloc (AIO_BUFSIZE); \
108 X_UNLOCK (wrklock); \
109 if (!aio_buf) \
110 return -1;
111
112typedef SV SV8; /* byte-sv, used for argument-checking */
49 113
50enum { 114enum {
51 REQ_QUIT, 115 REQ_QUIT,
52 REQ_OPEN, REQ_CLOSE, 116 REQ_OPEN, REQ_CLOSE,
53 REQ_READ, REQ_WRITE, REQ_READAHEAD, 117 REQ_READ, REQ_WRITE,
54 REQ_SENDFILE, 118 REQ_READAHEAD, REQ_SENDFILE,
55 REQ_STAT, REQ_LSTAT, REQ_FSTAT, 119 REQ_STAT, REQ_LSTAT, REQ_FSTAT,
120 REQ_TRUNCATE, REQ_FTRUNCATE,
121 REQ_UTIME, REQ_FUTIME,
122 REQ_CHMOD, REQ_FCHMOD,
123 REQ_CHOWN, REQ_FCHOWN,
56 REQ_FSYNC, REQ_FDATASYNC, 124 REQ_FSYNC, REQ_FDATASYNC,
57 REQ_UNLINK, REQ_RMDIR, REQ_RENAME, 125 REQ_UNLINK, REQ_RMDIR, REQ_MKDIR, REQ_RENAME,
58 REQ_READDIR, 126 REQ_MKNOD, REQ_READDIR,
59 REQ_LINK, REQ_SYMLINK, 127 REQ_LINK, REQ_SYMLINK, REQ_READLINK,
60 REQ_SLEEP, 128 REQ_GROUP, REQ_NOP,
61 REQ_GROUP, 129 REQ_BUSY,
62}; 130};
63 131
64#define AIO_REQ_KLASS "IO::AIO::REQ" 132#define AIO_REQ_KLASS "IO::AIO::REQ"
65#define AIO_GRP_KLASS "IO::AIO::GRP" 133#define AIO_GRP_KLASS "IO::AIO::GRP"
66 134
67typedef struct aio_cb 135typedef struct aio_cb
68{ 136{
69 struct aio_cb *volatile next; 137 struct aio_cb *volatile next;
70 138
139 SV *callback;
140 SV *sv1, *sv2;
141 void *ptr1, *ptr2;
142 off_t offs;
143 size_t size;
144 ssize_t result;
145 double nv1, nv2;
146
147 STRLEN stroffset;
148 int type;
149 int int1, int2, int3;
150 int errorno;
151 mode_t mode; /* open */
152
153 unsigned char flags;
154 unsigned char pri;
155
156 SV *self; /* the perl counterpart of this request, if any */
71 struct aio_cb *grp, *grp_prev, *grp_next, *grp_first; 157 struct aio_cb *grp, *grp_prev, *grp_next, *grp_first;
72
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;
79 off_t offset;
80 size_t length;
81 ssize_t result;
82
83 int type;
84 int fd, fd2;
85 int errorno;
86 STRLEN dataoffset;
87 mode_t mode; /* open */
88 unsigned char cancelled;
89} aio_cb; 158} aio_cb;
159
160enum {
161 FLAG_CANCELLED = 0x01, /* request was cancelled */
162 FLAG_SV2_RO_OFF = 0x40, /* data was set readonly */
163 FLAG_PTR2_FREE = 0x80, /* need to free(ptr2) */
164};
90 165
91typedef aio_cb *aio_req; 166typedef aio_cb *aio_req;
92typedef aio_cb *aio_req_ornot; 167typedef aio_cb *aio_req_ornot;
93 168
169enum {
170 PRI_MIN = -4,
171 PRI_MAX = 4,
172
173 DEFAULT_PRI = 0,
174 PRI_BIAS = -PRI_MIN,
175 NUM_PRI = PRI_MAX + PRI_BIAS + 1,
176};
177
178#define AIO_TICKS ((1000000 + 1023) >> 10)
179
180static unsigned int max_poll_time = 0;
181static unsigned int max_poll_reqs = 0;
182
183/* calculcate time difference in ~1/AIO_TICKS of a second */
184static int tvdiff (struct timeval *tv1, struct timeval *tv2)
185{
186 return (tv2->tv_sec - tv1->tv_sec ) * AIO_TICKS
187 + ((tv2->tv_usec - tv1->tv_usec) >> 10);
188}
189
190static thread_t main_tid;
191static int main_sig;
192static int block_sig_level;
193
194void block_sig ()
195{
196 sigset_t ss;
197
198 if (block_sig_level++)
199 return;
200
201 if (!main_sig)
202 return;
203
204 sigemptyset (&ss);
205 sigaddset (&ss, main_sig);
206 pthread_sigmask (SIG_BLOCK, &ss, 0);
207}
208
209void unblock_sig ()
210{
211 sigset_t ss;
212
213 if (--block_sig_level)
214 return;
215
216 if (!main_sig)
217 return;
218
219 sigemptyset (&ss);
220 sigaddset (&ss, main_sig);
221 pthread_sigmask (SIG_UNBLOCK, &ss, 0);
222}
223
224static int next_pri = DEFAULT_PRI + PRI_BIAS;
225
94static int started, wanted; 226static unsigned int started, idle, wanted;
95static volatile int nreqs;
96static int max_outstanding = 1<<30;
97static int respipe [2];
98 227
228/* worker threads management */
229static mutex_t wrklock = X_MUTEX_INIT;
230
231typedef struct worker {
232 /* locked by wrklock */
233 struct worker *prev, *next;
234
235 thread_t tid;
236
237 /* locked by reslock, reqlock or wrklock */
238 aio_req req; /* currently processed request */
239 void *dbuf;
240 DIR *dirp;
241} worker;
242
243static worker wrk_first = { &wrk_first, &wrk_first, 0 };
244
245static void worker_clear (worker *wrk)
246{
247 if (wrk->dirp)
248 {
249 closedir (wrk->dirp);
250 wrk->dirp = 0;
251 }
252
253 if (wrk->dbuf)
254 {
255 free (wrk->dbuf);
256 wrk->dbuf = 0;
257 }
258}
259
260static void worker_free (worker *wrk)
261{
262 wrk->next->prev = wrk->prev;
263 wrk->prev->next = wrk->next;
264
265 free (wrk);
266}
267
268static volatile unsigned int nreqs, nready, npending;
269static volatile unsigned int max_idle = 4;
270static volatile unsigned int max_outstanding = 0xffffffff;
271static int respipe_osf [2], respipe [2] = { -1, -1 };
272
99static pthread_mutex_t reslock = PTHREAD_MUTEX_INITIALIZER; 273static mutex_t reslock = X_MUTEX_INIT;
100static pthread_mutex_t reqlock = PTHREAD_MUTEX_INITIALIZER; 274static mutex_t reqlock = X_MUTEX_INIT;
101static pthread_cond_t reqwait = PTHREAD_COND_INITIALIZER; 275static cond_t reqwait = X_COND_INIT;
102 276
103static volatile aio_req reqs, reqe; /* queue start, queue end */ 277#if WORDACCESS_UNSAFE
104static volatile aio_req ress, rese; /* queue start, queue end */
105 278
279static unsigned int get_nready ()
280{
281 unsigned int retval;
282
283 X_LOCK (reqlock);
284 retval = nready;
285 X_UNLOCK (reqlock);
286
287 return retval;
288}
289
290static unsigned int get_npending ()
291{
292 unsigned int retval;
293
294 X_LOCK (reslock);
295 retval = npending;
296 X_UNLOCK (reslock);
297
298 return retval;
299}
300
301static unsigned int get_nthreads ()
302{
303 unsigned int retval;
304
305 X_LOCK (wrklock);
306 retval = started;
307 X_UNLOCK (wrklock);
308
309 return retval;
310}
311
312#else
313
314# define get_nready() nready
315# define get_npending() npending
316# define get_nthreads() started
317
318#endif
319
320/*
321 * a somewhat faster data structure might be nice, but
322 * with 8 priorities this actually needs <20 insns
323 * per shift, the most expensive operation.
324 */
325typedef struct {
326 aio_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */
327 int size;
328} reqq;
329
330static reqq req_queue;
331static reqq res_queue;
332
333int reqq_push (reqq *q, aio_req req)
334{
335 int pri = req->pri;
336 req->next = 0;
337
338 if (q->qe[pri])
339 {
340 q->qe[pri]->next = req;
341 q->qe[pri] = req;
342 }
343 else
344 q->qe[pri] = q->qs[pri] = req;
345
346 return q->size++;
347}
348
349aio_req reqq_shift (reqq *q)
350{
351 int pri;
352
353 if (!q->size)
354 return 0;
355
356 --q->size;
357
358 for (pri = NUM_PRI; pri--; )
359 {
360 aio_req req = q->qs[pri];
361
362 if (req)
363 {
364 if (!(q->qs[pri] = req->next))
365 q->qe[pri] = 0;
366
367 return req;
368 }
369 }
370
371 abort ();
372}
373
374static int poll_cb ();
106static void req_invoke (aio_req req); 375static int req_invoke (aio_req req);
376static void req_destroy (aio_req req);
107static void req_free (aio_req req); 377static void req_cancel (aio_req req);
108 378
109/* must be called at most once */ 379/* must be called at most once */
110static SV *req_sv (aio_req req, const char *klass) 380static SV *req_sv (aio_req req, const char *klass)
111{ 381{
112 if (!req->self) 382 if (!req->self)
130 return mg ? (aio_req)mg->mg_ptr : 0; 400 return mg ? (aio_req)mg->mg_ptr : 0;
131} 401}
132 402
133static void aio_grp_feed (aio_req grp) 403static void aio_grp_feed (aio_req grp)
134{ 404{
135 while (grp->length < grp->fd2) 405 block_sig ();
406
407 while (grp->size < grp->int2 && !(grp->flags & FLAG_CANCELLED))
136 { 408 {
137 int old_len = grp->length; 409 int old_len = grp->size;
138 410
139 if (grp->fh2 && SvOK (grp->fh2)) 411 if (grp->sv2 && SvOK (grp->sv2))
140 { 412 {
141 dSP; 413 dSP;
142 414
143 ENTER; 415 ENTER;
144 SAVETMPS; 416 SAVETMPS;
145 PUSHMARK (SP); 417 PUSHMARK (SP);
146 XPUSHs (req_sv (grp, AIO_GRP_KLASS)); 418 XPUSHs (req_sv (grp, AIO_GRP_KLASS));
147 PUTBACK; 419 PUTBACK;
148 call_sv (grp->fh2, G_VOID | G_EVAL); 420 call_sv (grp->sv2, G_VOID | G_EVAL | G_KEEPERR);
149 SPAGAIN; 421 SPAGAIN;
150 FREETMPS; 422 FREETMPS;
151 LEAVE; 423 LEAVE;
152 } 424 }
153 425
154 /* stop if no progress has been made */ 426 /* stop if no progress has been made */
155 if (old_len == grp->length) 427 if (old_len == grp->size)
156 { 428 {
157 SvREFCNT_dec (grp->fh2); 429 SvREFCNT_dec (grp->sv2);
158 grp->fh2 = 0; 430 grp->sv2 = 0;
159 break; 431 break;
160 } 432 }
161 } 433 }
434
435 unblock_sig ();
162} 436}
163 437
164static void aio_grp_dec (aio_req grp) 438static void aio_grp_dec (aio_req grp)
165{ 439{
166 --grp->length; 440 --grp->size;
167 441
168 /* call feeder, if applicable */ 442 /* call feeder, if applicable */
169 aio_grp_feed (grp); 443 aio_grp_feed (grp);
170 444
171 /* finish, if done */ 445 /* finish, if done */
172 if (!grp->length && grp->fd) 446 if (!grp->size && grp->int1)
173 { 447 {
448 block_sig ();
449
174 req_invoke (grp); 450 if (!req_invoke (grp))
451 {
452 req_destroy (grp);
453 unblock_sig ();
454 croak (0);
455 }
456
175 req_free (grp); 457 req_destroy (grp);
458 unblock_sig ();
176 } 459 }
177} 460}
178 461
179static void poll_wait () 462static int req_invoke (aio_req req)
180{ 463{
181 if (nreqs && !ress) 464 dSP;
465
466 if (req->flags & FLAG_SV2_RO_OFF)
467 SvREADONLY_off (req->sv2);
468
469 if (!(req->flags & FLAG_CANCELLED) && SvOK (req->callback))
182 { 470 {
183 fd_set rfd; 471 ENTER;
184 FD_ZERO(&rfd); 472 SAVETMPS;
185 FD_SET(respipe [0], &rfd); 473 PUSHMARK (SP);
474 EXTEND (SP, 1);
186 475
187 select (respipe [0] + 1, &rfd, 0, 0, 0); 476 switch (req->type)
477 {
478 case REQ_READDIR:
479 {
480 SV *rv = &PL_sv_undef;
481
482 if (req->result >= 0)
483 {
484 int i;
485 char *buf = req->ptr2;
486 AV *av = newAV ();
487
488 av_extend (av, req->result - 1);
489
490 for (i = 0; i < req->result; ++i)
491 {
492 SV *sv = newSVpv (buf, 0);
493
494 av_store (av, i, sv);
495 buf += SvCUR (sv) + 1;
496 }
497
498 rv = sv_2mortal (newRV_noinc ((SV *)av));
499 }
500
501 PUSHs (rv);
502 }
503 break;
504
505 case REQ_OPEN:
506 {
507 /* convert fd to fh */
508 SV *fh = &PL_sv_undef;
509
510 if (req->result >= 0)
511 {
512 GV *gv = (GV *)sv_newmortal ();
513 int flags = req->int1 & (O_RDONLY | O_WRONLY | O_RDWR);
514 char sym [64];
515 int symlen;
516
517 symlen = snprintf (sym, sizeof (sym), "fd#%d", req->result);
518 gv_init (gv, stash, sym, symlen, 0);
519
520 symlen = snprintf (
521 sym,
522 sizeof (sym),
523 "%s&=%d",
524 flags == O_RDONLY ? "<" : flags == O_WRONLY ? ">" : "+<",
525 req->result
526 );
527
528 if (do_open (gv, sym, symlen, 0, 0, 0, 0))
529 fh = (SV *)gv;
530 }
531
532 XPUSHs (fh);
533 }
534 break;
535
536 case REQ_GROUP:
537 req->int1 = 2; /* mark group as finished */
538
539 if (req->sv1)
540 {
541 int i;
542 AV *av = (AV *)req->sv1;
543
544 EXTEND (SP, AvFILL (av) + 1);
545 for (i = 0; i <= AvFILL (av); ++i)
546 PUSHs (*av_fetch (av, i, 0));
547 }
548 break;
549
550 case REQ_NOP:
551 case REQ_BUSY:
552 break;
553
554 case REQ_READLINK:
555 if (req->result > 0)
556 {
557 SvCUR_set (req->sv2, req->result);
558 *SvEND (req->sv2) = 0;
559 PUSHs (req->sv2);
560 }
561 break;
562
563 case REQ_STAT:
564 case REQ_LSTAT:
565 case REQ_FSTAT:
566 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT;
567 PL_laststatval = req->result;
568 PL_statcache = *(Stat_t *)(req->ptr2);
569 PUSHs (sv_2mortal (newSViv (req->result)));
570 break;
571
572 case REQ_READ:
573 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0));
574 *SvEND (req->sv2) = 0;
575 PUSHs (sv_2mortal (newSViv (req->result)));
576 break;
577
578 default:
579 PUSHs (sv_2mortal (newSViv (req->result)));
580 break;
581 }
582
583 errno = req->errorno;
584
585 PUTBACK;
586 call_sv (req->callback, G_VOID | G_EVAL);
587 SPAGAIN;
588
589 FREETMPS;
590 LEAVE;
188 } 591 }
189}
190 592
191static void req_invoke (aio_req req)
192{
193 dSP;
194 int errorno = errno;
195
196 if (req->cancelled || !SvOK (req->callback))
197 return;
198
199 errno = req->errorno;
200
201 ENTER;
202 SAVETMPS;
203 PUSHMARK (SP);
204 EXTEND (SP, 1);
205
206 switch (req->type)
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_SLEEP:
265 break;
266
267 default:
268 PUSHs (sv_2mortal (newSViv (req->result)));
269 break;
270 }
271
272
273 PUTBACK;
274 call_sv (req->callback, G_VOID | G_EVAL);
275 SPAGAIN;
276
277 FREETMPS;
278 LEAVE;
279
280 errno = errorno;
281
282 if (SvTRUE (ERRSV))
283 {
284 req_free (req);
285 croak (0);
286 }
287}
288
289static void req_free (aio_req req)
290{
291 if (req->grp) 593 if (req->grp)
292 { 594 {
293 aio_req grp = req->grp; 595 aio_req grp = req->grp;
294 596
295 /* unlink request */ 597 /* unlink request */
300 grp->grp_first = req->grp_next; 602 grp->grp_first = req->grp_next;
301 603
302 aio_grp_dec (grp); 604 aio_grp_dec (grp);
303 } 605 }
304 606
607 return !SvTRUE (ERRSV);
608}
609
610static void req_destroy (aio_req req)
611{
305 if (req->self) 612 if (req->self)
306 { 613 {
307 sv_unmagic (req->self, PERL_MAGIC_ext); 614 sv_unmagic (req->self, PERL_MAGIC_ext);
308 SvREFCNT_dec (req->self); 615 SvREFCNT_dec (req->self);
309 } 616 }
310 617
311 SvREFCNT_dec (req->data);
312 SvREFCNT_dec (req->fh); 618 SvREFCNT_dec (req->sv1);
313 SvREFCNT_dec (req->fh2); 619 SvREFCNT_dec (req->sv2);
314 SvREFCNT_dec (req->callback); 620 SvREFCNT_dec (req->callback);
315 Safefree (req->statdata);
316 621
317 if (req->type == REQ_READDIR && req->result >= 0) 622 if (req->flags & FLAG_PTR2_FREE)
318 free (req->data2ptr); 623 free (req->ptr2);
319 624
320 Safefree (req); 625 Safefree (req);
321} 626}
322 627
628static void req_cancel_subs (aio_req grp)
629{
630 aio_req sub;
631
632 if (grp->type != REQ_GROUP)
633 return;
634
635 SvREFCNT_dec (grp->sv2);
636 grp->sv2 = 0;
637
638 for (sub = grp->grp_first; sub; sub = sub->grp_next)
639 req_cancel (sub);
640}
641
323static void req_cancel (aio_req req) 642static void req_cancel (aio_req req)
324{ 643{
325 req->cancelled = 1; 644 req->flags |= FLAG_CANCELLED;
326 645
327 if (req->type == REQ_GROUP) 646 req_cancel_subs (req);
647}
648
649#ifdef USE_SOCKETS_AS_HANDLES
650# define TO_SOCKET(x) (win32_get_osfhandle (x))
651#else
652# define TO_SOCKET(x) (x)
653#endif
654
655static void
656create_respipe ()
657{
658 int old_readfd = respipe [0];
659
660 if (respipe [1] >= 0)
661 respipe_close (TO_SOCKET (respipe [1]));
662
663#ifdef _WIN32
664 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, respipe))
665#else
666 if (pipe (respipe))
667#endif
668 croak ("unable to initialize result pipe");
669
670 if (old_readfd >= 0)
328 { 671 {
329 aio_req sub; 672 if (dup2 (TO_SOCKET (respipe [0]), TO_SOCKET (old_readfd)) < 0)
673 croak ("unable to initialize result pipe(2)");
330 674
331 for (sub = req->grp_first; sub; sub = sub->grp_next) 675 respipe_close (respipe [0]);
332 req_cancel (sub); 676 respipe [0] = old_readfd;
677 }
678
679#ifdef _WIN32
680 int arg = 1;
681 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
682 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
683#else
684 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
685 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
686#endif
687 croak ("unable to initialize result pipe(3)");
688
689 respipe_osf [0] = TO_SOCKET (respipe [0]);
690 respipe_osf [1] = TO_SOCKET (respipe [1]);
691}
692
693X_THREAD_PROC (aio_proc);
694
695static void start_thread (void)
696{
697 worker *wrk = calloc (1, sizeof (worker));
698
699 if (!wrk)
700 croak ("unable to allocate worker thread data");
701
702 X_LOCK (wrklock);
703
704 if (thread_create (&wrk->tid, aio_proc, (void *)wrk))
705 {
706 wrk->prev = &wrk_first;
707 wrk->next = wrk_first.next;
708 wrk_first.next->prev = wrk;
709 wrk_first.next = wrk;
710 ++started;
711 }
712 else
713 free (wrk);
714
715 X_UNLOCK (wrklock);
716}
717
718static void maybe_start_thread ()
719{
720 if (get_nthreads () >= wanted)
721 return;
722
723 /* todo: maybe use idle here, but might be less exact */
724 if (0 <= (int)get_nthreads () + (int)get_npending () - (int)nreqs)
725 return;
726
727 start_thread ();
728}
729
730static void req_send (aio_req req)
731{
732 block_sig ();
733
734 ++nreqs;
735
736 X_LOCK (reqlock);
737 ++nready;
738 reqq_push (&req_queue, req);
739 X_COND_SIGNAL (reqwait);
740 X_UNLOCK (reqlock);
741
742 unblock_sig ();
743
744 maybe_start_thread ();
745}
746
747static void end_thread (void)
748{
749 aio_req req;
750
751 Newz (0, req, 1, aio_cb);
752
753 req->type = REQ_QUIT;
754 req->pri = PRI_MAX + PRI_BIAS;
755
756 X_LOCK (reqlock);
757 reqq_push (&req_queue, req);
758 X_COND_SIGNAL (reqwait);
759 X_UNLOCK (reqlock);
760
761 X_LOCK (wrklock);
762 --started;
763 X_UNLOCK (wrklock);
764}
765
766static void set_max_idle (int nthreads)
767{
768 if (WORDACCESS_UNSAFE) X_LOCK (reqlock);
769 max_idle = nthreads <= 0 ? 1 : nthreads;
770 if (WORDACCESS_UNSAFE) X_UNLOCK (reqlock);
771}
772
773static void min_parallel (int nthreads)
774{
775 if (wanted < nthreads)
776 wanted = nthreads;
777}
778
779static void max_parallel (int nthreads)
780{
781 if (wanted > nthreads)
782 wanted = nthreads;
783
784 while (started > wanted)
785 end_thread ();
786}
787
788static void poll_wait ()
789{
790 fd_set rfd;
791
792 while (nreqs)
793 {
794 int size;
795 if (WORDACCESS_UNSAFE) X_LOCK (reslock);
796 size = res_queue.size;
797 if (WORDACCESS_UNSAFE) X_UNLOCK (reslock);
798
799 if (size)
800 return;
801
802 maybe_start_thread ();
803
804 FD_ZERO (&rfd);
805 FD_SET (respipe [0], &rfd);
806
807 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
333 } 808 }
334} 809}
335 810
336static int poll_cb () 811static int poll_cb ()
337{ 812{
338 dSP; 813 dSP;
339 int count = 0; 814 int count = 0;
815 int maxreqs = max_poll_reqs;
340 int do_croak = 0; 816 int do_croak = 0;
817 struct timeval tv_start, tv_now;
341 aio_req req; 818 aio_req req;
819
820 if (max_poll_time)
821 gettimeofday (&tv_start, 0);
822
823 block_sig ();
342 824
343 for (;;) 825 for (;;)
344 { 826 {
345 pthread_mutex_lock (&reslock); 827 for (;;)
346 req = ress;
347
348 if (req)
349 { 828 {
350 ress = req->next; 829 maybe_start_thread ();
351 830
831 X_LOCK (reslock);
832 req = reqq_shift (&res_queue);
833
352 if (!ress) 834 if (req)
353 { 835 {
836 --npending;
837
838 if (!res_queue.size)
839 {
354 /* read any signals sent by the worker threads */ 840 /* read any signals sent by the worker threads */
355 char buf [32]; 841 char buf [4];
356 while (read (respipe [0], buf, 32) == 32) 842 while (respipe_read (respipe [0], buf, 4) == 4)
843 ;
357 ; 844 }
845 }
358 846
847 X_UNLOCK (reslock);
848
849 if (!req)
850 break;
851
852 --nreqs;
853
854 if (req->type == REQ_GROUP && req->size)
855 {
856 req->int1 = 1; /* mark request as delayed */
857 continue;
858 }
859 else
860 {
861 if (!req_invoke (req))
862 {
863 req_destroy (req);
864 unblock_sig ();
865 croak (0);
866 }
867
868 count++;
869 }
870
871 req_destroy (req);
872
873 if (maxreqs && !--maxreqs)
874 break;
875
876 if (max_poll_time)
877 {
878 gettimeofday (&tv_now, 0);
879
880 if (tvdiff (&tv_start, &tv_now) >= max_poll_time)
359 rese = 0; 881 break;
360 } 882 }
361 } 883 }
362 884
363 pthread_mutex_unlock (&reslock); 885 if (nreqs <= max_outstanding)
364
365 if (!req)
366 break; 886 break;
367 887
368 --nreqs; 888 poll_wait ();
369 889
370 if (req->type == REQ_QUIT) 890 ++maxreqs;
371 started--;
372 else if (req->type == REQ_GROUP && req->length)
373 {
374 req->fd = 1; /* mark request as delayed */
375 continue;
376 }
377 else
378 {
379 if (req->type == REQ_READ)
380 SvCUR_set (req->data, req->dataoffset + (req->result > 0 ? req->result : 0));
381
382 if (req->data2ptr && (req->type == REQ_READ || req->type == REQ_WRITE))
383 SvREADONLY_off (req->data);
384
385 if (req->statdata)
386 {
387 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT;
388 PL_laststatval = req->result;
389 PL_statcache = *(req->statdata);
390 }
391
392 req_invoke (req);
393
394 count++;
395 }
396
397 req_free (req);
398 } 891 }
399 892
893 unblock_sig ();
400 return count; 894 return count;
401}
402
403static void *aio_proc(void *arg);
404
405static void start_thread (void)
406{
407 sigset_t fullsigset, oldsigset;
408 pthread_t tid;
409 pthread_attr_t attr;
410
411 pthread_attr_init (&attr);
412 pthread_attr_setstacksize (&attr, STACKSIZE);
413 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
414
415 sigfillset (&fullsigset);
416 sigprocmask (SIG_SETMASK, &fullsigset, &oldsigset);
417
418 if (pthread_create (&tid, &attr, aio_proc, 0) == 0)
419 started++;
420
421 sigprocmask (SIG_SETMASK, &oldsigset, 0);
422}
423
424static void req_send (aio_req req)
425{
426 while (started < wanted && nreqs >= started)
427 start_thread ();
428
429 ++nreqs;
430
431 pthread_mutex_lock (&reqlock);
432
433 req->next = 0;
434
435 if (reqe)
436 {
437 reqe->next = req;
438 reqe = req;
439 }
440 else
441 reqe = reqs = req;
442
443 pthread_cond_signal (&reqwait);
444 pthread_mutex_unlock (&reqlock);
445
446 if (nreqs > max_outstanding)
447 for (;;)
448 {
449 poll_cb ();
450
451 if (nreqs <= max_outstanding)
452 break;
453
454 poll_wait ();
455 }
456}
457
458static void end_thread (void)
459{
460 aio_req req;
461 Newz (0, req, 1, aio_cb);
462 req->type = REQ_QUIT;
463
464 req_send (req);
465}
466
467static void min_parallel (int nthreads)
468{
469 if (wanted < nthreads)
470 wanted = nthreads;
471}
472
473static void max_parallel (int nthreads)
474{
475 int cur = started;
476
477 if (wanted > nthreads)
478 wanted = nthreads;
479
480 while (cur > wanted)
481 {
482 end_thread ();
483 cur--;
484 }
485
486 while (started > wanted)
487 {
488 poll_wait ();
489 poll_cb ();
490 }
491}
492
493static void create_pipe ()
494{
495 if (pipe (respipe))
496 croak ("unable to initialize result pipe");
497
498 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK))
499 croak ("cannot set result pipe to nonblocking mode");
500
501 if (fcntl (respipe [1], F_SETFL, O_NONBLOCK))
502 croak ("cannot set result pipe to nonblocking mode");
503} 895}
504 896
505/*****************************************************************************/ 897/*****************************************************************************/
506/* work around various missing functions */ 898/* work around various missing functions */
507 899
512/* 904/*
513 * make our pread/pwrite safe against themselves, but not against 905 * make our pread/pwrite safe against themselves, but not against
514 * normal read/write by using a mutex. slows down execution a lot, 906 * normal read/write by using a mutex. slows down execution a lot,
515 * but that's your problem, not mine. 907 * but that's your problem, not mine.
516 */ 908 */
517static pthread_mutex_t preadwritelock = PTHREAD_MUTEX_INITIALIZER; 909static mutex_t preadwritelock = X_MUTEX_INIT;
518 910
519static ssize_t pread (int fd, void *buf, size_t count, off_t offset) 911static ssize_t pread (int fd, void *buf, size_t count, off_t offset)
520{ 912{
521 ssize_t res; 913 ssize_t res;
522 off_t ooffset; 914 off_t ooffset;
523 915
524 pthread_mutex_lock (&preadwritelock); 916 X_LOCK (preadwritelock);
525 ooffset = lseek (fd, 0, SEEK_CUR); 917 ooffset = lseek (fd, 0, SEEK_CUR);
526 lseek (fd, offset, SEEK_SET); 918 lseek (fd, offset, SEEK_SET);
527 res = read (fd, buf, count); 919 res = read (fd, buf, count);
528 lseek (fd, ooffset, SEEK_SET); 920 lseek (fd, ooffset, SEEK_SET);
529 pthread_mutex_unlock (&preadwritelock); 921 X_UNLOCK (preadwritelock);
530 922
531 return res; 923 return res;
532} 924}
533 925
534static ssize_t pwrite (int fd, void *buf, size_t count, off_t offset) 926static ssize_t pwrite (int fd, void *buf, size_t count, off_t offset)
535{ 927{
536 ssize_t res; 928 ssize_t res;
537 off_t ooffset; 929 off_t ooffset;
538 930
539 pthread_mutex_lock (&preadwritelock); 931 X_LOCK (preadwritelock);
540 ooffset = lseek (fd, 0, SEEK_CUR); 932 ooffset = lseek (fd, 0, SEEK_CUR);
541 lseek (fd, offset, SEEK_SET); 933 lseek (fd, offset, SEEK_SET);
542 res = write (fd, buf, count); 934 res = write (fd, buf, count);
543 lseek (fd, offset, SEEK_SET); 935 lseek (fd, offset, SEEK_SET);
544 pthread_mutex_unlock (&preadwritelock); 936 X_UNLOCK (preadwritelock);
545 937
546 return res; 938 return res;
547} 939}
940#endif
941
942#ifndef HAVE_FUTIMES
943
944# define utimes(path,times) aio_utimes (path, times)
945# define futimes(fd,times) aio_futimes (fd, times)
946
947int aio_utimes (const char *filename, const struct timeval times[2])
948{
949 if (times)
950 {
951 struct utimbuf buf;
952
953 buf.actime = times[0].tv_sec;
954 buf.modtime = times[1].tv_sec;
955
956 return utime (filename, &buf);
957 }
958 else
959 return utime (filename, 0);
960}
961
962int aio_futimes (int fd, const struct timeval tv[2])
963{
964 errno = ENOSYS;
965 return -1;
966}
967
548#endif 968#endif
549 969
550#if !HAVE_FDATASYNC 970#if !HAVE_FDATASYNC
551# define fdatasync fsync 971# define fdatasync fsync
552#endif 972#endif
553 973
554#if !HAVE_READAHEAD 974#if !HAVE_READAHEAD
555# define readahead aio_readahead 975# define readahead(fd,offset,count) aio_readahead (fd, offset, count, self)
556 976
557static ssize_t readahead (int fd, off_t offset, size_t count) 977static ssize_t aio_readahead (int fd, off_t offset, size_t count, worker *self)
558{ 978{
559 char readahead_buf[4096]; 979 size_t todo = count;
980 dBUF;
560 981
561 while (count > 0) 982 while (todo > 0)
562 { 983 {
563 size_t len = count < sizeof (readahead_buf) ? count : sizeof (readahead_buf); 984 size_t len = todo < AIO_BUFSIZE ? todo : AIO_BUFSIZE;
564 985
565 pread (fd, readahead_buf, len, offset); 986 pread (fd, aio_buf, len, offset);
566 offset += len; 987 offset += len;
567 count -= len; 988 todo -= len;
568 } 989 }
569 990
570 errno = 0; 991 errno = 0;
992 return count;
571} 993}
994
572#endif 995#endif
573 996
574#if !HAVE_READDIR_R 997#if !HAVE_READDIR_R
575# define readdir_r aio_readdir_r 998# define readdir_r aio_readdir_r
576 999
577static pthread_mutex_t readdirlock = PTHREAD_MUTEX_INITIALIZER; 1000static mutex_t readdirlock = X_MUTEX_INIT;
578 1001
579static int readdir_r (DIR *dirp, struct dirent *ent, struct dirent **res) 1002static int readdir_r (DIR *dirp, X_DIRENT *ent, X_DIRENT **res)
580{ 1003{
581 struct dirent *e; 1004 X_DIRENT *e;
582 int errorno; 1005 int errorno;
583 1006
584 pthread_mutex_lock (&readdirlock); 1007 X_LOCK (readdirlock);
585 1008
586 e = readdir (dirp); 1009 e = readdir (dirp);
587 errorno = errno; 1010 errorno = errno;
588 1011
589 if (e) 1012 if (e)
592 strcpy (ent->d_name, e->d_name); 1015 strcpy (ent->d_name, e->d_name);
593 } 1016 }
594 else 1017 else
595 *res = 0; 1018 *res = 0;
596 1019
597 pthread_mutex_unlock (&readdirlock); 1020 X_UNLOCK (readdirlock);
598 1021
599 errno = errorno; 1022 errno = errorno;
600 return e ? 0 : -1; 1023 return e ? 0 : -1;
601} 1024}
602#endif 1025#endif
603 1026
604/* sendfile always needs emulation */ 1027/* sendfile always needs emulation */
605static ssize_t sendfile_ (int ofd, int ifd, off_t offset, size_t count) 1028static ssize_t sendfile_ (int ofd, int ifd, off_t offset, size_t count, worker *self)
606{ 1029{
607 ssize_t res; 1030 ssize_t res;
608 1031
609 if (!count) 1032 if (!count)
610 return 0; 1033 return 0;
621 { 1044 {
622 off_t sbytes; 1045 off_t sbytes;
623 res = sendfile (ifd, ofd, offset, count, 0, &sbytes, 0); 1046 res = sendfile (ifd, ofd, offset, count, 0, &sbytes, 0);
624 1047
625 if (res < 0 && sbytes) 1048 if (res < 0 && sbytes)
626 /* maybe only on EAGAIN only: as usual, the manpage leaves you guessing */ 1049 /* maybe only on EAGAIN: as usual, the manpage leaves you guessing */
627 res = sbytes; 1050 res = sbytes;
628 } 1051 }
629 1052
630# elif __hpux 1053# elif __hpux
631 res = sendfile (ofd, ifd, offset, count, 0, 0); 1054 res = sendfile (ofd, ifd, offset, count, 0, 0);
659#endif 1082#endif
660 ) 1083 )
661 ) 1084 )
662 { 1085 {
663 /* emulate sendfile. this is a major pain in the ass */ 1086 /* emulate sendfile. this is a major pain in the ass */
664 char buf[4096]; 1087 dBUF;
1088
665 res = 0; 1089 res = 0;
666 1090
667 while (count) 1091 while (count)
668 { 1092 {
669 ssize_t cnt; 1093 ssize_t cnt;
670 1094
671 cnt = pread (ifd, buf, count > 4096 ? 4096 : count, offset); 1095 cnt = pread (ifd, aio_buf, count > AIO_BUFSIZE ? AIO_BUFSIZE : count, offset);
672 1096
673 if (cnt <= 0) 1097 if (cnt <= 0)
674 { 1098 {
675 if (cnt && !res) res = -1; 1099 if (cnt && !res) res = -1;
676 break; 1100 break;
677 } 1101 }
678 1102
679 cnt = write (ofd, buf, cnt); 1103 cnt = write (ofd, aio_buf, cnt);
680 1104
681 if (cnt <= 0) 1105 if (cnt <= 0)
682 { 1106 {
683 if (cnt && !res) res = -1; 1107 if (cnt && !res) res = -1;
684 break; 1108 break;
692 1116
693 return res; 1117 return res;
694} 1118}
695 1119
696/* read a full directory */ 1120/* read a full directory */
697static int scandir_ (const char *path, void **namesp) 1121static void scandir_ (aio_req req, worker *self)
698{ 1122{
699 DIR *dirp = opendir (path); 1123 DIR *dirp;
700 union 1124 union
701 { 1125 {
702 struct dirent d; 1126 X_DIRENT d;
703 char b [offsetof (struct dirent, d_name) + NAME_MAX + 1]; 1127 char b [offsetof (X_DIRENT, d_name) + NAME_MAX + 1];
704 } u; 1128 } *u;
705 struct dirent *entp; 1129 X_DIRENT *entp;
706 char *name, *names; 1130 char *name, *names;
707 int memlen = 4096; 1131 int memlen = 4096;
708 int memofs = 0; 1132 int memofs = 0;
709 int res = 0; 1133 int res = 0;
710 int errorno;
711 1134
712 if (!dirp) 1135 X_LOCK (wrklock);
713 return -1; 1136 self->dirp = dirp = opendir (req->ptr1);
714 1137 self->dbuf = u = malloc (sizeof (*u));
1138 req->flags |= FLAG_PTR2_FREE;
715 names = malloc (memlen); 1139 req->ptr2 = names = malloc (memlen);
1140 X_UNLOCK (wrklock);
1141
1142 if (dirp && u && names)
1143 for (;;)
1144 {
1145 errno = 0;
1146 readdir_r (dirp, &u->d, &entp);
1147
1148 if (!entp)
1149 break;
1150
1151 name = entp->d_name;
1152
1153 if (name [0] != '.' || (name [1] && (name [1] != '.' || name [2])))
1154 {
1155 int len = strlen (name) + 1;
1156
1157 res++;
1158
1159 while (memofs + len > memlen)
1160 {
1161 memlen *= 2;
1162 X_LOCK (wrklock);
1163 req->ptr2 = names = realloc (names, memlen);
1164 X_UNLOCK (wrklock);
1165
1166 if (!names)
1167 break;
1168 }
1169
1170 memcpy (names + memofs, name, len);
1171 memofs += len;
1172 }
1173 }
1174
1175 if (errno)
1176 res = -1;
1177
1178 req->result = res;
1179}
1180
1181/*****************************************************************************/
1182
1183X_THREAD_PROC (aio_proc)
1184{
1185 {//D
1186 aio_req req;
1187 struct timespec ts;
1188 worker *self = (worker *)thr_arg;
1189
1190 /* try to distribute timeouts somewhat randomly */
1191 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
716 1192
717 for (;;) 1193 for (;;)
718 { 1194 {
719 errno = 0, readdir_r (dirp, &u.d, &entp); 1195 ts.tv_sec = time (0) + IDLE_TIMEOUT;
720 1196
721 if (!entp) 1197 X_LOCK (reqlock);
722 break;
723
724 name = entp->d_name;
725
726 if (name [0] != '.' || (name [1] && (name [1] != '.' || name [2])))
727 {
728 int len = strlen (name) + 1;
729
730 res++;
731
732 while (memofs + len > memlen)
733 {
734 memlen *= 2;
735 names = realloc (names, memlen);
736 if (!names)
737 break;
738 }
739
740 memcpy (names + memofs, name, len);
741 memofs += len;
742 }
743 }
744
745 errorno = errno;
746 closedir (dirp);
747
748 if (errorno)
749 {
750 free (names);
751 errno = errorno;
752 res = -1;
753 }
754
755 *namesp = (void *)names;
756 return res;
757}
758
759/*****************************************************************************/
760
761static void *aio_proc (void *thr_arg)
762{
763 aio_req req;
764 int type;
765
766 do
767 {
768 pthread_mutex_lock (&reqlock);
769 1198
770 for (;;) 1199 for (;;)
771 { 1200 {
772 req = reqs; 1201 self->req = req = reqq_shift (&req_queue);
773
774 if (reqs)
775 {
776 reqs = reqs->next;
777 if (!reqs) reqe = 0;
778 }
779 1202
780 if (req) 1203 if (req)
781 break; 1204 break;
782 1205
783 pthread_cond_wait (&reqwait, &reqlock); 1206 ++idle;
1207
1208 if (X_COND_TIMEDWAIT (reqwait, reqlock, ts)
1209 == ETIMEDOUT)
1210 {
1211 if (idle > max_idle)
1212 {
1213 --idle;
1214 X_UNLOCK (reqlock);
1215 X_LOCK (wrklock);
1216 --started;
1217 X_UNLOCK (wrklock);
1218 goto quit;
1219 }
1220
1221 /* we are allowed to idle, so do so without any timeout */
1222 X_COND_WAIT (reqwait, reqlock);
1223 ts.tv_sec = time (0) + IDLE_TIMEOUT;
1224 }
1225
1226 --idle;
784 } 1227 }
785 1228
786 pthread_mutex_unlock (&reqlock); 1229 --nready;
1230
1231 X_UNLOCK (reqlock);
787 1232
788 errno = 0; /* strictly unnecessary */ 1233 errno = 0; /* strictly unnecessary */
789 1234
790 if (!req->cancelled) 1235 if (!(req->flags & FLAG_CANCELLED))
791 switch (type = req->type) /* remember type for QUIT check */ 1236 switch (req->type)
792 { 1237 {
793 case REQ_READ: req->result = pread (req->fd, req->dataptr, req->length, req->offset); break; 1238 case REQ_READ: req->result = req->offs >= 0
794 case REQ_WRITE: req->result = pwrite (req->fd, req->dataptr, req->length, req->offset); break; 1239 ? pread (req->int1, req->ptr1, req->size, req->offs)
1240 : read (req->int1, req->ptr1, req->size); break;
1241 case REQ_WRITE: req->result = req->offs >= 0
1242 ? pwrite (req->int1, req->ptr1, req->size, req->offs)
1243 : write (req->int1, req->ptr1, req->size); break;
795 1244
796 case REQ_READAHEAD: req->result = readahead (req->fd, req->offset, req->length); break; 1245 case REQ_READAHEAD: req->result = readahead (req->int1, req->offs, req->size); break;
797 case REQ_SENDFILE: req->result = sendfile_ (req->fd, req->fd2, req->offset, req->length); break; 1246 case REQ_SENDFILE: req->result = sendfile_ (req->int1, req->int2, req->offs, req->size, self); break;
798 1247
799 case REQ_STAT: req->result = stat (req->dataptr, req->statdata); break; 1248 case REQ_STAT: req->result = stat (req->ptr1, (Stat_t *)req->ptr2); break;
800 case REQ_LSTAT: req->result = lstat (req->dataptr, req->statdata); break; 1249 case REQ_LSTAT: req->result = lstat (req->ptr1, (Stat_t *)req->ptr2); break;
801 case REQ_FSTAT: req->result = fstat (req->fd , req->statdata); break; 1250 case REQ_FSTAT: req->result = fstat (req->int1, (Stat_t *)req->ptr2); break;
802 1251
1252 case REQ_CHOWN: req->result = chown (req->ptr1, req->int2, req->int3); break;
1253 case REQ_FCHOWN: req->result = fchown (req->int1, req->int2, req->int3); break;
1254 case REQ_CHMOD: req->result = chmod (req->ptr1, req->mode); break;
1255 case REQ_FCHMOD: req->result = fchmod (req->int1, req->mode); break;
1256 case REQ_TRUNCATE: req->result = truncate (req->ptr1, req->offs); break;
1257 case REQ_FTRUNCATE: req->result = ftruncate (req->int1, req->offs); break;
1258
803 case REQ_OPEN: req->result = open (req->dataptr, req->fd, req->mode); break; 1259 case REQ_OPEN: req->result = open (req->ptr1, req->int1, req->mode); break;
804 case REQ_CLOSE: req->result = close (req->fd); break; 1260 case REQ_CLOSE: req->result = PerlIO_close ((PerlIO *)req->ptr1); break;
805 case REQ_UNLINK: req->result = unlink (req->dataptr); break; 1261 case REQ_UNLINK: req->result = unlink (req->ptr1); break;
806 case REQ_RMDIR: req->result = rmdir (req->dataptr); break; 1262 case REQ_RMDIR: req->result = rmdir (req->ptr1); break;
1263 case REQ_MKDIR: req->result = mkdir (req->ptr1, req->mode); break;
807 case REQ_RENAME: req->result = rename (req->data2ptr, req->dataptr); break; 1264 case REQ_RENAME: req->result = rename (req->ptr2, req->ptr1); break;
808 case REQ_LINK: req->result = link (req->data2ptr, req->dataptr); break; 1265 case REQ_LINK: req->result = link (req->ptr2, req->ptr1); break;
809 case REQ_SYMLINK: req->result = symlink (req->data2ptr, req->dataptr); break; 1266 case REQ_SYMLINK: req->result = symlink (req->ptr2, req->ptr1); break;
1267 case REQ_MKNOD: req->result = mknod (req->ptr2, req->mode, (dev_t)req->offs); break;
1268 case REQ_READLINK: req->result = readlink (req->ptr2, req->ptr1, NAME_MAX); break;
810 1269
811 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break; 1270 case REQ_FDATASYNC: req->result = fdatasync (req->int1); break;
812 case REQ_FSYNC: req->result = fsync (req->fd); break; 1271 case REQ_FSYNC: req->result = fsync (req->int1); break;
813 case REQ_READDIR: req->result = scandir_ (req->dataptr, &req->data2ptr); break; 1272 case REQ_READDIR: scandir_ (req, self); break;
814 1273
815 case REQ_SLEEP: 1274 case REQ_BUSY:
1275#ifdef _WIN32
1276 Sleep (req->nv1 * 1000.);
1277#else
816 { 1278 {
817 struct timeval tv; 1279 struct timeval tv;
818 1280
819 tv.tv_sec = req->fd; 1281 tv.tv_sec = req->nv1;
820 tv.tv_usec = req->fd2; 1282 tv.tv_usec = (req->nv1 - tv.tv_sec) * 1000000.;
821 1283
822 req->result = select (0, 0, 0, 0, &tv); 1284 req->result = select (0, 0, 0, 0, &tv);
823 } 1285 }
1286#endif
1287 break;
1288
1289 case REQ_UTIME:
1290 case REQ_FUTIME:
1291 {
1292 struct timeval tv[2];
1293 struct timeval *times;
1294
1295 if (req->nv1 != -1. || req->nv2 != -1.)
1296 {
1297 tv[0].tv_sec = req->nv1;
1298 tv[0].tv_usec = (req->nv1 - tv[0].tv_sec) * 1000000.;
1299 tv[1].tv_sec = req->nv2;
1300 tv[1].tv_usec = (req->nv2 - tv[1].tv_sec) * 1000000.;
1301
1302 times = tv;
1303 }
1304 else
1305 times = 0;
1306
1307
1308 req->result = req->type == REQ_FUTIME
1309 ? futimes (req->int1, times)
1310 : utimes (req->ptr1, times);
1311 }
1312
1313 case REQ_GROUP:
1314 case REQ_NOP:
1315 break;
824 1316
825 case REQ_QUIT: 1317 case REQ_QUIT:
826 break; 1318 goto quit;
827 1319
828 default: 1320 default:
829 req->result = ENOSYS; 1321 req->result = -1;
830 break; 1322 break;
831 } 1323 }
832 1324
833 req->errorno = errno; 1325 req->errorno = errno;
834 1326
835 pthread_mutex_lock (&reslock); 1327 X_LOCK (reslock);
836 1328
837 req->next = 0; 1329 ++npending;
838 1330
839 if (rese) 1331 if (!reqq_push (&res_queue, req))
840 { 1332 {
841 rese->next = req; 1333 /* write a dummy byte to the pipe so fh becomes ready */
842 rese = req; 1334 respipe_write (respipe_osf [1], (const void *)&respipe_osf, 1);
1335
1336 /* optionally signal the main thread asynchronously */
1337 if (main_sig)
1338 pthread_kill (main_tid, main_sig);
843 } 1339 }
844 else
845 {
846 rese = ress = req;
847 1340
848 /* write a dummy byte to the pipe so fh becomes ready */ 1341 self->req = 0;
849 write (respipe [1], &respipe, 1); 1342 worker_clear (self);
850 }
851 1343
852 pthread_mutex_unlock (&reslock); 1344 X_UNLOCK (reslock);
853 } 1345 }
854 while (type != REQ_QUIT); 1346
1347quit:
1348 X_LOCK (wrklock);
1349 worker_free (self);
1350 X_UNLOCK (wrklock);
855 1351
856 return 0; 1352 return 0;
1353 }//D
857} 1354}
858 1355
859/*****************************************************************************/ 1356/*****************************************************************************/
860 1357
861static void atfork_prepare (void) 1358static void atfork_prepare (void)
862{ 1359{
863 pthread_mutex_lock (&reqlock); 1360 X_LOCK (wrklock);
864 pthread_mutex_lock (&reslock); 1361 X_LOCK (reqlock);
1362 X_LOCK (reslock);
865#if !HAVE_PREADWRITE 1363#if !HAVE_PREADWRITE
866 pthread_mutex_lock (&preadwritelock); 1364 X_LOCK (preadwritelock);
867#endif 1365#endif
868#if !HAVE_READDIR_R 1366#if !HAVE_READDIR_R
869 pthread_mutex_lock (&readdirlock); 1367 X_LOCK (readdirlock);
870#endif 1368#endif
871} 1369}
872 1370
873static void atfork_parent (void) 1371static void atfork_parent (void)
874{ 1372{
875#if !HAVE_READDIR_R 1373#if !HAVE_READDIR_R
876 pthread_mutex_unlock (&readdirlock); 1374 X_UNLOCK (readdirlock);
877#endif 1375#endif
878#if !HAVE_PREADWRITE 1376#if !HAVE_PREADWRITE
879 pthread_mutex_unlock (&preadwritelock); 1377 X_UNLOCK (preadwritelock);
880#endif 1378#endif
881 pthread_mutex_unlock (&reslock); 1379 X_UNLOCK (reslock);
882 pthread_mutex_unlock (&reqlock); 1380 X_UNLOCK (reqlock);
1381 X_UNLOCK (wrklock);
883} 1382}
884 1383
885static void atfork_child (void) 1384static void atfork_child (void)
886{ 1385{
887 aio_req prv; 1386 aio_req prv;
888 1387
889 started = 0; 1388 while (prv = reqq_shift (&req_queue))
1389 req_destroy (prv);
890 1390
891 while (reqs) 1391 while (prv = reqq_shift (&res_queue))
1392 req_destroy (prv);
1393
1394 while (wrk_first.next != &wrk_first)
892 { 1395 {
893 prv = reqs; 1396 worker *wrk = wrk_first.next;
894 reqs = prv->next; 1397
1398 if (wrk->req)
1399 req_destroy (wrk->req);
1400
1401 worker_clear (wrk);
895 req_free (prv); 1402 worker_free (wrk);
896 } 1403 }
897 1404
898 reqs = reqe = 0; 1405 started = 0;
899 1406 idle = 0;
900 while (ress) 1407 nreqs = 0;
901 { 1408 nready = 0;
902 prv = ress; 1409 npending = 0;
903 ress = prv->next;
904 req_free (prv);
905 }
906
907 ress = rese = 0;
908 1410
909 close (respipe [0]);
910 close (respipe [1]);
911 create_pipe (); 1411 create_respipe ();
912 1412
913 atfork_parent (); 1413 atfork_parent ();
914} 1414}
915 1415
916#define dREQ \ 1416#define dREQ \
917 aio_req req; \ 1417 aio_req req; \
1418 int req_pri = next_pri; \
1419 next_pri = DEFAULT_PRI + PRI_BIAS; \
918 \ 1420 \
919 if (SvOK (callback) && !SvROK (callback)) \ 1421 if (SvOK (callback) && !SvROK (callback)) \
920 croak ("callback must be undef or of reference type"); \ 1422 croak ("callback must be undef or of reference type"); \
921 \ 1423 \
922 Newz (0, req, 1, aio_cb); \ 1424 Newz (0, req, 1, aio_cb); \
923 if (!req) \ 1425 if (!req) \
924 croak ("out of memory during aio_req allocation"); \ 1426 croak ("out of memory during aio_req allocation"); \
925 \ 1427 \
926 req->callback = newSVsv (callback) 1428 req->callback = newSVsv (callback); \
1429 req->pri = req_pri
927 1430
928#define REQ_SEND \ 1431#define REQ_SEND \
929 req_send (req); \ 1432 req_send (req); \
930 \ 1433 \
931 if (GIMME_V != G_VOID) \ 1434 if (GIMME_V != G_VOID) \
935 1438
936PROTOTYPES: ENABLE 1439PROTOTYPES: ENABLE
937 1440
938BOOT: 1441BOOT:
939{ 1442{
940 HV *stash = gv_stashpv ("IO::AIO", 1); 1443 stash = gv_stashpv ("IO::AIO", 1);
1444
941 newCONSTSUB (stash, "EXDEV", newSViv (EXDEV)); 1445 newCONSTSUB (stash, "EXDEV", newSViv (EXDEV));
942 newCONSTSUB (stash, "O_RDONLY", newSViv (O_RDONLY)); 1446 newCONSTSUB (stash, "O_RDONLY", newSViv (O_RDONLY));
943 newCONSTSUB (stash, "O_WRONLY", newSViv (O_WRONLY)); 1447 newCONSTSUB (stash, "O_WRONLY", newSViv (O_WRONLY));
1448 newCONSTSUB (stash, "O_CREAT", newSViv (O_CREAT));
1449 newCONSTSUB (stash, "O_TRUNC", newSViv (O_TRUNC));
1450#ifdef _WIN32
1451 X_MUTEX_CHECK (wrklock);
1452 X_MUTEX_CHECK (reslock);
1453 X_MUTEX_CHECK (reqlock);
1454 X_MUTEX_CHECK (reqwait);
1455 X_MUTEX_CHECK (preadwritelock);
1456 X_MUTEX_CHECK (readdirlock);
944 1457
945 create_pipe (); 1458 X_COND_CHECK (reqwait);
1459#else
1460 newCONSTSUB (stash, "S_IFIFO", newSViv (S_IFIFO));
1461 newCONSTSUB (stash, "SIGIO", newSViv (SIGIO));
1462#endif
1463
1464 create_respipe ();
1465
946 pthread_atfork (atfork_prepare, atfork_parent, atfork_child); 1466 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child);
947} 1467}
948 1468
949void 1469void
950min_parallel (nthreads) 1470max_poll_reqs (int nreqs)
951 int nthreads
952 PROTOTYPE: $ 1471 PROTOTYPE: $
1472 CODE:
1473 max_poll_reqs = nreqs;
953 1474
954void 1475void
955max_parallel (nthreads) 1476max_poll_time (double nseconds)
956 int nthreads
957 PROTOTYPE: $ 1477 PROTOTYPE: $
1478 CODE:
1479 max_poll_time = nseconds * AIO_TICKS;
1480
1481void
1482min_parallel (int nthreads)
1483 PROTOTYPE: $
1484
1485void
1486max_parallel (int nthreads)
1487 PROTOTYPE: $
1488
1489void
1490max_idle (int nthreads)
1491 PROTOTYPE: $
1492 CODE:
1493 set_max_idle (nthreads);
958 1494
959int 1495int
960max_outstanding (nreqs) 1496max_outstanding (int maxreqs)
961 int nreqs 1497 PROTOTYPE: $
962 PROTOTYPE: $
963 CODE: 1498 CODE:
964 RETVAL = max_outstanding; 1499 RETVAL = max_outstanding;
965 max_outstanding = nreqs; 1500 max_outstanding = maxreqs;
1501 OUTPUT:
1502 RETVAL
966 1503
967void 1504void
968aio_open (pathname,flags,mode,callback=&PL_sv_undef) 1505aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef)
969 SV * pathname
970 int flags
971 int mode
972 SV * callback
973 PROTOTYPE: $$$;$ 1506 PROTOTYPE: $$$;$
974 PPCODE: 1507 PPCODE:
975{ 1508{
976 dREQ; 1509 dREQ;
977 1510
978 req->type = REQ_OPEN; 1511 req->type = REQ_OPEN;
979 req->data = newSVsv (pathname); 1512 req->sv1 = newSVsv (pathname);
980 req->dataptr = SvPVbyte_nolen (req->data); 1513 req->ptr1 = SvPVbyte_nolen (req->sv1);
981 req->fd = flags; 1514 req->int1 = flags;
982 req->mode = mode; 1515 req->mode = mode;
983 1516
984 REQ_SEND; 1517 REQ_SEND;
985} 1518}
986 1519
987void 1520void
988aio_close (fh,callback=&PL_sv_undef) 1521aio_fsync (SV *fh, SV *callback=&PL_sv_undef)
989 SV * fh
990 SV * callback
991 PROTOTYPE: $;$ 1522 PROTOTYPE: $;$
992 ALIAS: 1523 ALIAS:
993 aio_close = REQ_CLOSE
994 aio_fsync = REQ_FSYNC 1524 aio_fsync = REQ_FSYNC
995 aio_fdatasync = REQ_FDATASYNC 1525 aio_fdatasync = REQ_FDATASYNC
996 PPCODE: 1526 PPCODE:
997{ 1527{
998 dREQ; 1528 dREQ;
999 1529
1000 req->type = ix; 1530 req->type = ix;
1001 req->fh = newSVsv (fh); 1531 req->sv1 = newSVsv (fh);
1002 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh))); 1532 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh)));
1003 1533
1004 REQ_SEND (req); 1534 REQ_SEND (req);
1005} 1535}
1006 1536
1007void 1537void
1538aio_close (SV *fh, SV *callback=&PL_sv_undef)
1539 PROTOTYPE: $;$
1540 PPCODE:
1541{
1542 PerlIO *io = IoIFP (sv_2io (fh));
1543 int fd = PerlIO_fileno (io);
1544
1545 if (fd < 0)
1546 croak ("aio_close called with fd-less filehandle");
1547
1548 PerlIO_binmode (aTHX_ io, 0, 0, 0);
1549
1550 {
1551 dREQ;
1552
1553 req->type = REQ_CLOSE;
1554 req->sv1 = newSVsv (fh);
1555 req->ptr1 = (void *)io;
1556
1557 REQ_SEND (req);
1558 }
1559}
1560
1561void
1008aio_read (fh,offset,length,data,dataoffset,callback=&PL_sv_undef) 1562aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef)
1009 SV * fh
1010 UV offset
1011 UV length
1012 SV * data
1013 UV dataoffset
1014 SV * callback
1015 ALIAS: 1563 ALIAS:
1016 aio_read = REQ_READ 1564 aio_read = REQ_READ
1017 aio_write = REQ_WRITE 1565 aio_write = REQ_WRITE
1018 PROTOTYPE: $$$$$;$ 1566 PROTOTYPE: $$$$$;$
1019 PPCODE: 1567 PPCODE:
1020{ 1568{
1021 aio_req req;
1022 STRLEN svlen; 1569 STRLEN svlen;
1023 char *svptr = SvPVbyte (data, svlen); 1570 char *svptr = SvPVbyte (data, svlen);
1571 UV len = SvUV (length);
1024 1572
1025 SvUPGRADE (data, SVt_PV); 1573 SvUPGRADE (data, SVt_PV);
1026 SvPOK_on (data); 1574 SvPOK_on (data);
1027 1575
1028 if (dataoffset < 0) 1576 if (dataoffset < 0)
1029 dataoffset += svlen; 1577 dataoffset += svlen;
1030 1578
1031 if (dataoffset < 0 || dataoffset > svlen) 1579 if (dataoffset < 0 || dataoffset > svlen)
1032 croak ("data offset outside of string"); 1580 croak ("dataoffset outside of data scalar");
1033 1581
1034 if (ix == REQ_WRITE) 1582 if (ix == REQ_WRITE)
1035 { 1583 {
1036 /* write: check length and adjust. */ 1584 /* write: check length and adjust. */
1037 if (length < 0 || length + dataoffset > svlen) 1585 if (!SvOK (length) || len + dataoffset > svlen)
1038 length = svlen - dataoffset; 1586 len = svlen - dataoffset;
1039 } 1587 }
1040 else 1588 else
1041 { 1589 {
1042 /* read: grow scalar as necessary */ 1590 /* read: grow scalar as necessary */
1043 svptr = SvGROW (data, length + dataoffset); 1591 svptr = SvGROW (data, len + dataoffset + 1);
1044 } 1592 }
1045 1593
1046 if (length < 0) 1594 if (len < 0)
1047 croak ("length must not be negative"); 1595 croak ("length must not be negative");
1048 1596
1049 { 1597 {
1050 dREQ; 1598 dREQ;
1051 1599
1052 req->type = ix; 1600 req->type = ix;
1053 req->fh = newSVsv (fh); 1601 req->sv1 = newSVsv (fh);
1054 req->fd = PerlIO_fileno (ix == REQ_READ ? IoIFP (sv_2io (fh)) 1602 req->int1 = PerlIO_fileno (ix == REQ_READ ? IoIFP (sv_2io (fh))
1055 : IoOFP (sv_2io (fh))); 1603 : IoOFP (sv_2io (fh)));
1604 req->offs = SvOK (offset) ? SvVAL64 (offset) : -1;
1056 req->offset = offset; 1605 req->size = len;
1057 req->length = length;
1058 req->data = SvREFCNT_inc (data); 1606 req->sv2 = SvREFCNT_inc (data);
1059 req->dataptr = (char *)svptr + dataoffset; 1607 req->ptr1 = (char *)svptr + dataoffset;
1608 req->stroffset = dataoffset;
1060 1609
1061 if (!SvREADONLY (data)) 1610 if (!SvREADONLY (data))
1062 { 1611 {
1063 SvREADONLY_on (data); 1612 SvREADONLY_on (data);
1064 req->data2ptr = (void *)data; 1613 req->flags |= FLAG_SV2_RO_OFF;
1065 } 1614 }
1066 1615
1067 REQ_SEND; 1616 REQ_SEND;
1068 } 1617 }
1069} 1618}
1070 1619
1071void 1620void
1621aio_readlink (SV8 *path, SV *callback=&PL_sv_undef)
1622 PROTOTYPE: $$;$
1623 PPCODE:
1624{
1625 SV *data;
1626 dREQ;
1627
1628 data = newSV (NAME_MAX);
1629 SvPOK_on (data);
1630
1631 req->type = REQ_READLINK;
1632 req->sv1 = newSVsv (path);
1633 req->ptr2 = SvPVbyte_nolen (req->sv1);
1634 req->sv2 = data;
1635 req->ptr1 = SvPVbyte_nolen (data);
1636
1637 REQ_SEND;
1638}
1639
1640void
1072aio_sendfile (out_fh,in_fh,in_offset,length,callback=&PL_sv_undef) 1641aio_sendfile (SV *out_fh, SV *in_fh, SV *in_offset, UV length, SV *callback=&PL_sv_undef)
1073 SV * out_fh
1074 SV * in_fh
1075 UV in_offset
1076 UV length
1077 SV * callback
1078 PROTOTYPE: $$$$;$ 1642 PROTOTYPE: $$$$;$
1079 PPCODE: 1643 PPCODE:
1080{ 1644{
1081 dREQ; 1645 dREQ;
1082 1646
1083 req->type = REQ_SENDFILE; 1647 req->type = REQ_SENDFILE;
1084 req->fh = newSVsv (out_fh); 1648 req->sv1 = newSVsv (out_fh);
1085 req->fd = PerlIO_fileno (IoIFP (sv_2io (out_fh))); 1649 req->int1 = PerlIO_fileno (IoIFP (sv_2io (out_fh)));
1086 req->fh2 = newSVsv (in_fh); 1650 req->sv2 = newSVsv (in_fh);
1087 req->fd2 = PerlIO_fileno (IoIFP (sv_2io (in_fh))); 1651 req->int2 = PerlIO_fileno (IoIFP (sv_2io (in_fh)));
1088 req->offset = in_offset; 1652 req->offs = SvVAL64 (in_offset);
1089 req->length = length; 1653 req->size = length;
1090 1654
1091 REQ_SEND; 1655 REQ_SEND;
1092} 1656}
1093 1657
1094void 1658void
1095aio_readahead (fh,offset,length,callback=&PL_sv_undef) 1659aio_readahead (SV *fh, SV *offset, IV length, SV *callback=&PL_sv_undef)
1096 SV * fh
1097 UV offset
1098 IV length
1099 SV * callback
1100 PROTOTYPE: $$$;$ 1660 PROTOTYPE: $$$;$
1101 PPCODE: 1661 PPCODE:
1102{ 1662{
1103 dREQ; 1663 dREQ;
1104 1664
1105 req->type = REQ_READAHEAD; 1665 req->type = REQ_READAHEAD;
1106 req->fh = newSVsv (fh); 1666 req->sv1 = newSVsv (fh);
1107 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh))); 1667 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh)));
1108 req->offset = offset; 1668 req->offs = SvVAL64 (offset);
1109 req->length = length; 1669 req->size = length;
1110 1670
1111 REQ_SEND; 1671 REQ_SEND;
1112} 1672}
1113 1673
1114void 1674void
1115aio_stat (fh_or_path,callback=&PL_sv_undef) 1675aio_stat (SV8 *fh_or_path, SV *callback=&PL_sv_undef)
1116 SV * fh_or_path
1117 SV * callback
1118 ALIAS: 1676 ALIAS:
1119 aio_stat = REQ_STAT 1677 aio_stat = REQ_STAT
1120 aio_lstat = REQ_LSTAT 1678 aio_lstat = REQ_LSTAT
1121 PPCODE: 1679 PPCODE:
1122{ 1680{
1123 dREQ; 1681 dREQ;
1124 1682
1125 New (0, req->statdata, 1, Stat_t); 1683 req->ptr2 = malloc (sizeof (Stat_t));
1126 if (!req->statdata) 1684 if (!req->ptr2)
1127 { 1685 {
1128 req_free (req); 1686 req_destroy (req);
1129 croak ("out of memory during aio_req->statdata allocation"); 1687 croak ("out of memory during aio_stat statdata allocation");
1130 } 1688 }
1689
1690 req->flags |= FLAG_PTR2_FREE;
1691 req->sv1 = newSVsv (fh_or_path);
1131 1692
1132 if (SvPOK (fh_or_path)) 1693 if (SvPOK (fh_or_path))
1133 { 1694 {
1134 req->type = ix; 1695 req->type = ix;
1135 req->data = newSVsv (fh_or_path);
1136 req->dataptr = SvPVbyte_nolen (req->data); 1696 req->ptr1 = SvPVbyte_nolen (req->sv1);
1137 } 1697 }
1138 else 1698 else
1139 { 1699 {
1140 req->type = REQ_FSTAT; 1700 req->type = REQ_FSTAT;
1141 req->fh = newSVsv (fh_or_path);
1142 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh_or_path))); 1701 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1143 } 1702 }
1144 1703
1145 REQ_SEND; 1704 REQ_SEND;
1146} 1705}
1147 1706
1148void 1707void
1708aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef)
1709 PPCODE:
1710{
1711 dREQ;
1712
1713 req->nv1 = SvOK (atime) ? SvNV (atime) : -1.;
1714 req->nv2 = SvOK (mtime) ? SvNV (mtime) : -1.;
1715 req->sv1 = newSVsv (fh_or_path);
1716
1717 if (SvPOK (fh_or_path))
1718 {
1719 req->type = REQ_UTIME;
1720 req->ptr1 = SvPVbyte_nolen (req->sv1);
1721 }
1722 else
1723 {
1724 req->type = REQ_FUTIME;
1725 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1726 }
1727
1728 REQ_SEND;
1729}
1730
1731void
1732aio_truncate (SV8 *fh_or_path, SV *offset, SV *callback=&PL_sv_undef)
1733 PPCODE:
1734{
1735 dREQ;
1736
1737 req->sv1 = newSVsv (fh_or_path);
1738 req->offs = SvOK (offset) ? SvVAL64 (offset) : -1;
1739
1740 if (SvPOK (fh_or_path))
1741 {
1742 req->type = REQ_TRUNCATE;
1743 req->ptr1 = SvPVbyte_nolen (req->sv1);
1744 }
1745 else
1746 {
1747 req->type = REQ_FTRUNCATE;
1748 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1749 }
1750
1751 REQ_SEND;
1752}
1753
1754void
1755aio_chmod (SV8 *fh_or_path, int mode, SV *callback=&PL_sv_undef)
1756 PPCODE:
1757{
1758 dREQ;
1759
1760 req->mode = mode;
1761 req->sv1 = newSVsv (fh_or_path);
1762
1763 if (SvPOK (fh_or_path))
1764 {
1765 req->type = REQ_CHMOD;
1766 req->ptr1 = SvPVbyte_nolen (req->sv1);
1767 }
1768 else
1769 {
1770 req->type = REQ_FCHMOD;
1771 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1772 }
1773
1774 REQ_SEND;
1775}
1776
1777void
1778aio_chown (SV8 *fh_or_path, SV *uid, SV *gid, SV *callback=&PL_sv_undef)
1779 PPCODE:
1780{
1781 dREQ;
1782
1783 req->int2 = SvOK (uid) ? SvIV (uid) : -1;
1784 req->int3 = SvOK (gid) ? SvIV (gid) : -1;
1785 req->sv1 = newSVsv (fh_or_path);
1786
1787 if (SvPOK (fh_or_path))
1788 {
1789 req->type = REQ_CHOWN;
1790 req->ptr1 = SvPVbyte_nolen (req->sv1);
1791 }
1792 else
1793 {
1794 req->type = REQ_FCHOWN;
1795 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1796 }
1797
1798 REQ_SEND;
1799}
1800
1801void
1149aio_unlink (pathname,callback=&PL_sv_undef) 1802aio_unlink (SV8 *pathname, SV *callback=&PL_sv_undef)
1150 SV * pathname
1151 SV * callback
1152 ALIAS: 1803 ALIAS:
1153 aio_unlink = REQ_UNLINK 1804 aio_unlink = REQ_UNLINK
1154 aio_rmdir = REQ_RMDIR 1805 aio_rmdir = REQ_RMDIR
1155 aio_readdir = REQ_READDIR 1806 aio_readdir = REQ_READDIR
1156 PPCODE: 1807 PPCODE:
1157{ 1808{
1158 dREQ; 1809 dREQ;
1159 1810
1160 req->type = ix; 1811 req->type = ix;
1161 req->data = newSVsv (pathname); 1812 req->sv1 = newSVsv (pathname);
1162 req->dataptr = SvPVbyte_nolen (req->data); 1813 req->ptr1 = SvPVbyte_nolen (req->sv1);
1814
1815 REQ_SEND;
1816}
1817
1818void
1819aio_mkdir (SV8 *pathname, int mode, SV *callback=&PL_sv_undef)
1820 PPCODE:
1821{
1822 dREQ;
1163 1823
1824 req->type = REQ_MKDIR;
1825 req->sv1 = newSVsv (pathname);
1826 req->ptr1 = SvPVbyte_nolen (req->sv1);
1827 req->mode = mode;
1828
1164 REQ_SEND; 1829 REQ_SEND;
1165} 1830}
1166 1831
1167void 1832void
1168aio_link (oldpath,newpath,callback=&PL_sv_undef) 1833aio_link (SV8 *oldpath, SV8 *newpath, SV *callback=&PL_sv_undef)
1169 SV * oldpath
1170 SV * newpath
1171 SV * callback
1172 ALIAS: 1834 ALIAS:
1173 aio_link = REQ_LINK 1835 aio_link = REQ_LINK
1174 aio_symlink = REQ_SYMLINK 1836 aio_symlink = REQ_SYMLINK
1175 aio_rename = REQ_RENAME 1837 aio_rename = REQ_RENAME
1176 PPCODE: 1838 PPCODE:
1177{ 1839{
1178 dREQ; 1840 dREQ;
1179 1841
1180 req->type = ix; 1842 req->type = ix;
1181 req->fh = newSVsv (oldpath); 1843 req->sv2 = newSVsv (oldpath);
1182 req->data2ptr = SvPVbyte_nolen (req->fh); 1844 req->ptr2 = SvPVbyte_nolen (req->sv2);
1183 req->data = newSVsv (newpath); 1845 req->sv1 = newSVsv (newpath);
1184 req->dataptr = SvPVbyte_nolen (req->data); 1846 req->ptr1 = SvPVbyte_nolen (req->sv1);
1185 1847
1186 REQ_SEND; 1848 REQ_SEND;
1187} 1849}
1188 1850
1189void 1851void
1190aio_sleep (delay,callback=&PL_sv_undef) 1852aio_mknod (SV8 *pathname, int mode, UV dev, SV *callback=&PL_sv_undef)
1191 double delay
1192 SV * callback
1193 PPCODE: 1853 PPCODE:
1194{ 1854{
1195 dREQ; 1855 dREQ;
1196 1856
1197 req->type = REQ_SLEEP; 1857 req->type = REQ_MKNOD;
1198 req->fd = delay < 0. ? 0 : delay; 1858 req->sv1 = newSVsv (pathname);
1199 req->fd2 = delay < 0. ? 0 : 1000. * (delay - req->fd); 1859 req->ptr1 = SvPVbyte_nolen (req->sv1);
1200 1860 req->mode = (mode_t)mode;
1861 req->offs = dev;
1862
1201 REQ_SEND; 1863 REQ_SEND;
1202} 1864}
1203 1865
1204void 1866void
1867aio_busy (double delay, SV *callback=&PL_sv_undef)
1868 PPCODE:
1869{
1870 dREQ;
1871
1872 req->type = REQ_BUSY;
1873 req->nv1 = delay < 0. ? 0. : delay;
1874
1875 REQ_SEND;
1876}
1877
1878void
1205aio_group (callback=&PL_sv_undef) 1879aio_group (SV *callback=&PL_sv_undef)
1206 SV * callback
1207 PROTOTYPE: ;$ 1880 PROTOTYPE: ;$
1208 PPCODE: 1881 PPCODE:
1209{ 1882{
1210 dREQ; 1883 dREQ;
1884
1211 req->type = REQ_GROUP; 1885 req->type = REQ_GROUP;
1886
1212 req_send (req); 1887 req_send (req);
1213 XPUSHs (req_sv (req, AIO_GRP_KLASS)); 1888 XPUSHs (req_sv (req, AIO_GRP_KLASS));
1214} 1889}
1890
1891void
1892aio_nop (SV *callback=&PL_sv_undef)
1893 PPCODE:
1894{
1895 dREQ;
1896
1897 req->type = REQ_NOP;
1898
1899 REQ_SEND;
1900}
1901
1902int
1903aioreq_pri (int pri = 0)
1904 PROTOTYPE: ;$
1905 CODE:
1906 RETVAL = next_pri - PRI_BIAS;
1907 if (items > 0)
1908 {
1909 if (pri < PRI_MIN) pri = PRI_MIN;
1910 if (pri > PRI_MAX) pri = PRI_MAX;
1911 next_pri = pri + PRI_BIAS;
1912 }
1913 OUTPUT:
1914 RETVAL
1915
1916void
1917aioreq_nice (int nice = 0)
1918 CODE:
1919 nice = next_pri - nice;
1920 if (nice < PRI_MIN) nice = PRI_MIN;
1921 if (nice > PRI_MAX) nice = PRI_MAX;
1922 next_pri = nice + PRI_BIAS;
1215 1923
1216void 1924void
1217flush () 1925flush ()
1218 PROTOTYPE: 1926 PROTOTYPE:
1219 CODE: 1927 CODE:
1221 { 1929 {
1222 poll_wait (); 1930 poll_wait ();
1223 poll_cb (); 1931 poll_cb ();
1224 } 1932 }
1225 1933
1226void 1934int
1227poll() 1935poll()
1228 PROTOTYPE: 1936 PROTOTYPE:
1229 CODE: 1937 CODE:
1230 if (nreqs)
1231 {
1232 poll_wait (); 1938 poll_wait ();
1233 poll_cb (); 1939 RETVAL = poll_cb ();
1234 } 1940 OUTPUT:
1941 RETVAL
1235 1942
1236int 1943int
1237poll_fileno() 1944poll_fileno()
1238 PROTOTYPE: 1945 PROTOTYPE:
1239 CODE: 1946 CODE:
1251 1958
1252void 1959void
1253poll_wait() 1960poll_wait()
1254 PROTOTYPE: 1961 PROTOTYPE:
1255 CODE: 1962 CODE:
1256 if (nreqs)
1257 poll_wait (); 1963 poll_wait ();
1964
1965void
1966setsig (int signum = SIGIO)
1967 PROTOTYPE: ;$
1968 CODE:
1969{
1970 if (block_sig_level)
1971 croak ("cannot call IO::AIO::setsig from within aio_block/callback");
1972
1973 X_LOCK (reslock);
1974 main_tid = pthread_self ();
1975 main_sig = signum;
1976 X_UNLOCK (reslock);
1977
1978 if (main_sig && npending)
1979 pthread_kill (main_tid, main_sig);
1980}
1981
1982void
1983aio_block (SV *cb)
1984 PROTOTYPE: &
1985 PPCODE:
1986{
1987 int count;
1988
1989 block_sig ();
1990 PUSHMARK (SP);
1991 PUTBACK;
1992 count = call_sv (cb, GIMME_V | G_NOARGS | G_EVAL);
1993 SPAGAIN;
1994 unblock_sig ();
1995
1996 if (SvTRUE (ERRSV))
1997 croak (0);
1998
1999 XSRETURN (count);
2000}
1258 2001
1259int 2002int
1260nreqs() 2003nreqs()
1261 PROTOTYPE: 2004 PROTOTYPE:
1262 CODE: 2005 CODE:
1263 RETVAL = nreqs; 2006 RETVAL = nreqs;
1264 OUTPUT: 2007 OUTPUT:
1265 RETVAL 2008 RETVAL
1266 2009
1267PROTOTYPES: DISABLE 2010int
1268 2011nready()
1269MODULE = IO::AIO PACKAGE = IO::AIO::REQ
1270
1271void
1272cancel (aio_req_ornot req)
1273 PROTOTYPE: 2012 PROTOTYPE:
1274 CODE: 2013 CODE:
2014 RETVAL = get_nready ();
2015 OUTPUT:
2016 RETVAL
2017
2018int
2019npending()
2020 PROTOTYPE:
2021 CODE:
2022 RETVAL = get_npending ();
2023 OUTPUT:
2024 RETVAL
2025
2026int
2027nthreads()
2028 PROTOTYPE:
2029 CODE:
2030 if (WORDACCESS_UNSAFE) X_LOCK (wrklock);
2031 RETVAL = started;
2032 if (WORDACCESS_UNSAFE) X_UNLOCK (wrklock);
2033 OUTPUT:
2034 RETVAL
2035
2036PROTOTYPES: DISABLE
2037
2038MODULE = IO::AIO PACKAGE = IO::AIO::REQ
2039
2040void
2041cancel (aio_req_ornot req)
2042 CODE:
1275 req_cancel (req); 2043 req_cancel (req);
2044
2045void
2046cb (aio_req_ornot req, SV *callback=&PL_sv_undef)
2047 CODE:
2048 SvREFCNT_dec (req->callback);
2049 req->callback = newSVsv (callback);
1276 2050
1277MODULE = IO::AIO PACKAGE = IO::AIO::GRP 2051MODULE = IO::AIO PACKAGE = IO::AIO::GRP
1278 2052
1279void 2053void
1280add (aio_req grp, ...) 2054add (aio_req grp, ...)
1281 PPCODE: 2055 PPCODE:
1282{ 2056{
1283 int i; 2057 int i;
1284 aio_req req; 2058 aio_req req;
1285 2059
2060 if (main_sig && !block_sig_level)
2061 croak ("aio_group->add called outside aio_block/callback context while IO::AIO::setsig is in use");
2062
1286 if (grp->fd == 2) 2063 if (grp->int1 == 2)
1287 croak ("cannot add requests to IO::AIO::GRP after the group finished"); 2064 croak ("cannot add requests to IO::AIO::GRP after the group finished");
1288 2065
1289 for (i = 1; i < items; ++i ) 2066 for (i = 1; i < items; ++i )
1290 { 2067 {
1291 if (GIMME_V != G_VOID) 2068 if (GIMME_V != G_VOID)
1293 2070
1294 req = SvAIO_REQ (ST (i)); 2071 req = SvAIO_REQ (ST (i));
1295 2072
1296 if (req) 2073 if (req)
1297 { 2074 {
1298 ++grp->length; 2075 ++grp->size;
1299 req->grp = grp; 2076 req->grp = grp;
1300 2077
1301 req->grp_prev = 0; 2078 req->grp_prev = 0;
1302 req->grp_next = grp->grp_first; 2079 req->grp_next = grp->grp_first;
1303 2080
1308 } 2085 }
1309 } 2086 }
1310} 2087}
1311 2088
1312void 2089void
2090cancel_subs (aio_req_ornot req)
2091 CODE:
2092 req_cancel_subs (req);
2093
2094void
1313result (aio_req grp, ...) 2095result (aio_req grp, ...)
1314 CODE: 2096 CODE:
1315{ 2097{
1316 int i; 2098 int i;
2099 AV *av;
2100
2101 grp->errorno = errno;
2102
1317 AV *av = newAV (); 2103 av = newAV ();
1318 2104
1319 for (i = 1; i < items; ++i ) 2105 for (i = 1; i < items; ++i )
1320 av_push (av, newSVsv (ST (i))); 2106 av_push (av, newSVsv (ST (i)));
1321 2107
1322 SvREFCNT_dec (grp->data); 2108 SvREFCNT_dec (grp->sv1);
1323 grp->data = (SV *)av; 2109 grp->sv1 = (SV *)av;
1324} 2110}
1325 2111
1326void 2112void
1327lock (aio_req grp) 2113errno (aio_req grp, int errorno = errno)
2114 CODE:
2115 grp->errorno = errorno;
2116
2117void
2118limit (aio_req grp, int limit)
1328 CODE: 2119 CODE:
1329 ++grp->length; 2120 grp->int2 = limit;
2121 aio_grp_feed (grp);
1330 2122
1331void 2123void
1332unlock (aio_req grp) 2124feed (aio_req grp, SV *callback=&PL_sv_undef)
1333 CODE: 2125 CODE:
1334 aio_grp_dec (grp); 2126{
2127 SvREFCNT_dec (grp->sv2);
2128 grp->sv2 = newSVsv (callback);
1335 2129
1336void 2130 if (grp->int2 <= 0)
1337feeder_limit (aio_req grp, int limit) 2131 grp->int2 = 2;
1338 CODE: 2132
1339 grp->fd2 = limit;
1340 aio_grp_feed (grp); 2133 aio_grp_feed (grp);
1341
1342void
1343set_feeder (aio_req grp, SV *callback=&PL_sv_undef)
1344 CODE:
1345{
1346 SvREFCNT_dec (grp->fh2);
1347 grp->fh2 = newSVsv (callback);
1348
1349 if (grp->fd2 <= 0)
1350 grp->fd2 = 2;
1351
1352 aio_grp_feed (grp);
1353} 2134}
1354 2135

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines