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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines