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.26 by root, Wed Aug 17 03:52:20 2005 UTC vs.
Revision 1.47 by root, Sun Oct 22 10:10:23 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines