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.2 by root, Sun Jul 10 18:16:49 2005 UTC vs.
Revision 1.8 by root, Mon Jul 11 02:53:59 2005 UTC

1#define PERL_NO_GET_CONTEXT
2
3#include "EXTERN.h" 1#include "EXTERN.h"
4#include "perl.h" 2#include "perl.h"
5#include "XSUB.h" 3#include "XSUB.h"
6 4
7#include <sys/types.h> 5#include <sys/types.h>
17 15
18typedef void *InputStream; /* hack, but 5.6.1 is simply toooo old ;) */ 16typedef void *InputStream; /* hack, but 5.6.1 is simply toooo old ;) */
19typedef void *OutputStream; /* hack, but 5.6.1 is simply toooo old ;) */ 17typedef void *OutputStream; /* hack, but 5.6.1 is simply toooo old ;) */
20typedef void *InOutStream; /* hack, but 5.6.1 is simply toooo old ;) */ 18typedef void *InOutStream; /* hack, but 5.6.1 is simply toooo old ;) */
21 19
22#if __i386 || __amd64
23# define STACKSIZE ( 256 * sizeof (long))
24#elif __ia64 20#if __ia64
25# define STACKSIZE (8192 * sizeof (long)) 21# define STACKSIZE 65536
26#else 22#else
27# define STACKSIZE ( 512 * sizeof (long)) 23# define STACKSIZE 4096
28#endif 24#endif
29 25
30enum { 26enum {
31 REQ_QUIT, 27 REQ_QUIT,
32 REQ_OPEN, REQ_CLOSE, 28 REQ_OPEN, REQ_CLOSE,
34 REQ_STAT, REQ_LSTAT, REQ_FSTAT, REQ_UNLINK, 30 REQ_STAT, REQ_LSTAT, REQ_FSTAT, REQ_UNLINK,
35 REQ_FSYNC, REQ_FDATASYNC, 31 REQ_FSYNC, REQ_FDATASYNC,
36}; 32};
37 33
38typedef struct aio_cb { 34typedef struct aio_cb {
39 struct aio_cb *next; 35 struct aio_cb *volatile next;
40 36
41 int type; 37 int type;
42 38
43 int fd; 39 int fd;
44 off_t offset; 40 off_t offset;
55 51
56typedef aio_cb *aio_req; 52typedef aio_cb *aio_req;
57 53
58static int started; 54static int started;
59static int nreqs; 55static int nreqs;
56static int max_outstanding = 1<<30;
60static int reqpipe[2], respipe[2]; 57static int respipe [2];
61 58
59static pthread_mutex_t reslock = PTHREAD_MUTEX_INITIALIZER;
60static pthread_mutex_t reqlock = PTHREAD_MUTEX_INITIALIZER;
61static pthread_cond_t reqwait = PTHREAD_COND_INITIALIZER;
62
62static aio_req qs, qe; /* queue start, queue end */ 63static volatile aio_req reqs, reqe; /* queue start, queue end */
64static volatile aio_req ress, rese; /* queue start, queue end */
65
66static void
67poll_wait ()
68{
69 if (!nreqs)
70 return;
71
72 fd_set rfd;
73 FD_ZERO(&rfd);
74 FD_SET(respipe [0], &rfd);
75
76 select (respipe [0] + 1, &rfd, 0, 0, 0);
77}
78
79static int
80poll_cb ()
81{
82 dSP;
83 int count = 0;
84 aio_req req;
85
86 {
87 /* read and signals sent by the worker threads */
88 char buf [32];
89 while (read (respipe [0], buf, 32) > 0)
90 ;
91 }
92
93 for (;;)
94 {
95 pthread_mutex_lock (&reslock);
96
97 req = ress;
98
99 if (ress)
100 {
101 ress = ress->next;
102 if (!ress) rese = 0;
103 }
104
105 pthread_mutex_unlock (&reslock);
106
107 if (!req)
108 break;
109
110 nreqs--;
111
112 if (req->type == REQ_QUIT)
113 started--;
114 else
115 {
116 int errorno = errno;
117 errno = req->errorno;
118
119 if (req->type == REQ_READ)
120 SvCUR_set (req->data, req->dataoffset
121 + req->result > 0 ? req->result : 0);
122
123 if (req->data)
124 SvREFCNT_dec (req->data);
125
126 if (req->type == REQ_STAT || req->type == REQ_LSTAT || req->type == REQ_FSTAT)
127 {
128 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT;
129 PL_laststatval = req->result;
130 PL_statcache = *(req->statdata);
131
132 Safefree (req->statdata);
133 }
134
135 PUSHMARK (SP);
136 XPUSHs (sv_2mortal (newSViv (req->result)));
137
138 if (req->type == REQ_OPEN)
139 {
140 /* convert fd to fh */
141 SV *fh;
142
143 PUTBACK;
144 call_pv ("IO::AIO::_fd2fh", G_SCALAR | G_EVAL);
145 SPAGAIN;
146
147 fh = POPs;
148
149 PUSHMARK (SP);
150 XPUSHs (fh);
151 }
152
153 if (SvOK (req->callback))
154 {
155 PUTBACK;
156 call_sv (req->callback, G_VOID | G_EVAL);
157 SPAGAIN;
158 }
159
160 if (req->callback)
161 SvREFCNT_dec (req->callback);
162
163 errno = errorno;
164 count++;
165 }
166
167 Safefree (req);
168 }
169
170 return count;
171}
63 172
64static void *aio_proc(void *arg); 173static void *aio_proc(void *arg);
65 174
66static void 175static void
67start_thread (void) 176start_thread (void)
82 191
83 sigprocmask (SIG_SETMASK, &oldsigset, 0); 192 sigprocmask (SIG_SETMASK, &oldsigset, 0);
84} 193}
85 194
86static void 195static void
87send_reqs (void)
88{
89 /* this write is atomic */
90 while (qs && write (reqpipe[1], &qs, sizeof qs) == sizeof qs)
91 {
92 qs = qs->next;
93 if (!qs) qe = 0;
94 }
95}
96
97static void
98send_req (aio_req req) 196send_req (aio_req req)
99{ 197{
100 nreqs++; 198 nreqs++;
199
200 pthread_mutex_lock (&reqlock);
201
101 req->next = 0; 202 req->next = 0;
102 203
103 if (qe) 204 if (reqe)
104 { 205 {
105 qe->next = req; 206 reqe->next = req;
106 qe = req; 207 reqe = req;
107 } 208 }
108 else 209 else
109 qe = qs = req; 210 reqe = reqs = req;
110 211
111 send_reqs (); 212 pthread_cond_signal (&reqwait);
213 pthread_mutex_unlock (&reqlock);
214
215 while (nreqs > max_outstanding)
216 {
217 poll_wait ();
218 poll_cb ();
219 }
112} 220}
113 221
114static void 222static void
115end_thread (void) 223end_thread (void)
116{ 224{
120 228
121 send_req (req); 229 send_req (req);
122} 230}
123 231
124static void 232static void
125read_write (pTHX_
126 int dowrite, int fd, off_t offset, size_t length, 233read_write (int dowrite, int fd, off_t offset, size_t length,
127 SV *data, STRLEN dataoffset, SV *callback) 234 SV *data, STRLEN dataoffset, SV *callback)
128{ 235{
129 aio_req req; 236 aio_req req;
130 STRLEN svlen; 237 STRLEN svlen;
131 char *svptr = SvPV (data, svlen); 238 char *svptr = SvPV (data, svlen);
168 req->callback = SvREFCNT_inc (callback); 275 req->callback = SvREFCNT_inc (callback);
169 276
170 send_req (req); 277 send_req (req);
171} 278}
172 279
173static void
174poll_wait ()
175{
176 fd_set rfd;
177 FD_ZERO(&rfd);
178 FD_SET(respipe[0], &rfd);
179
180 select (respipe[0] + 1, &rfd, 0, 0, 0);
181}
182
183static int
184poll_cb (pTHX)
185{
186 dSP;
187 int count = 0;
188 aio_req req;
189
190 while (read (respipe[0], (void *)&req, sizeof (req)) == sizeof (req))
191 {
192 nreqs--;
193
194 if (req->type == REQ_QUIT)
195 started--;
196 else
197 {
198 int errorno = errno;
199 errno = req->errorno;
200
201 if (req->type == REQ_READ)
202 SvCUR_set (req->data, req->dataoffset
203 + req->result > 0 ? req->result : 0);
204
205 if (req->data)
206 SvREFCNT_dec (req->data);
207
208 if (req->type == REQ_STAT || req->type == REQ_LSTAT || req->type == REQ_FSTAT)
209 {
210 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT;
211 PL_laststatval = req->result;
212 PL_statcache = *(req->statdata);
213
214 Safefree (req->statdata);
215 }
216
217 PUSHMARK (SP);
218 XPUSHs (sv_2mortal (newSViv (req->result)));
219
220 if (req->type == REQ_OPEN)
221 {
222 /* convert fd to fh */
223 SV *fh;
224
225 PUTBACK;
226 call_pv ("IO::AIO::_fd2fh", G_SCALAR | G_EVAL);
227 SPAGAIN;
228
229 fh = POPs;
230
231 PUSHMARK (SP);
232 XPUSHs (fh);
233 }
234
235 PUTBACK;
236 call_sv (req->callback, G_VOID | G_EVAL);
237 SPAGAIN;
238
239 if (req->callback)
240 SvREFCNT_dec (req->callback);
241
242 errno = errorno;
243 count++;
244 }
245
246 Safefree (req);
247 }
248
249 if (qs)
250 send_reqs ();
251
252 return count;
253}
254
255static void * 280static void *
256aio_proc (void *thr_arg) 281aio_proc (void *thr_arg)
257{ 282{
258 aio_req req; 283 aio_req req;
284 int type;
259 285
260 /* then loop */ 286 do
261 while (read (reqpipe[0], (void *)&req, sizeof (req)) == sizeof (req))
262 { 287 {
288 pthread_mutex_lock (&reqlock);
289
290 for (;;)
291 {
292 req = reqs;
293
294 if (reqs)
295 {
296 reqs = reqs->next;
297 if (!reqs) reqe = 0;
298 }
299
300 if (req)
301 break;
302
303 pthread_cond_wait (&reqwait, &reqlock);
304 }
305
306 pthread_mutex_unlock (&reqlock);
307
263 errno = 0; /* strictly unnecessary */ 308 errno = 0; /* strictly unnecessary */
264 309
310 type = req->type;
311
265 switch (req->type) 312 switch (type)
266 { 313 {
267 case REQ_READ: req->result = pread64 (req->fd, req->dataptr, req->length, req->offset); break; 314 case REQ_READ: req->result = pread64 (req->fd, req->dataptr, req->length, req->offset); break;
268 case REQ_WRITE: req->result = pwrite64 (req->fd, req->dataptr, req->length, req->offset); break; 315 case REQ_WRITE: req->result = pwrite64 (req->fd, req->dataptr, req->length, req->offset); break;
269#if SYS_readahead 316#if SYS_readahead
270 case REQ_READAHEAD: req->result = readahead (req->fd, req->offset, req->length); break; 317 case REQ_READAHEAD: req->result = readahead (req->fd, req->offset, req->length); break;
282 329
283 case REQ_FSYNC: req->result = fsync (req->fd); break; 330 case REQ_FSYNC: req->result = fsync (req->fd); break;
284 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break; 331 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break;
285 332
286 case REQ_QUIT: 333 case REQ_QUIT:
287 write (respipe[1], (void *)&req, sizeof (req)); 334 break;
288 return 0;
289 335
290 default: 336 default:
291 req->result = ENOSYS; 337 req->result = ENOSYS;
292 break; 338 break;
293 } 339 }
294 340
295 req->errorno = errno; 341 req->errorno = errno;
296 write (respipe[1], (void *)&req, sizeof (req)); 342
343 pthread_mutex_lock (&reslock);
344
345 req->next = 0;
346
347 if (rese)
348 {
349 rese->next = req;
350 rese = req;
351 }
352 else
353 {
354 rese = ress = req;
355
356 /* write a dummy byte to the pipe so fh becomes ready */
357 write (respipe [1], &respipe, 1);
358 }
359
360 pthread_mutex_unlock (&reslock);
297 } 361 }
362 while (type != REQ_QUIT);
298 363
299 return 0; 364 return 0;
300} 365}
301 366
302MODULE = IO::AIO PACKAGE = IO::AIO 367MODULE = IO::AIO PACKAGE = IO::AIO
303 368
369PROTOTYPES: ENABLE
370
304BOOT: 371BOOT:
305{ 372{
306 if (pipe (reqpipe) || pipe (respipe)) 373 if (pipe (respipe))
307 croak ("unable to initialize request or result pipe"); 374 croak ("unable to initialize result pipe");
308 375
309 if (fcntl (reqpipe[1], F_SETFL, O_NONBLOCK)) 376 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK))
310 croak ("cannot set result pipe to nonblocking mode"); 377 croak ("cannot set result pipe to nonblocking mode");
311 378
312 if (fcntl (respipe[0], F_SETFL, O_NONBLOCK)) 379 if (fcntl (respipe [1], F_SETFL, O_NONBLOCK))
313 croak ("cannot set result pipe to nonblocking mode"); 380 croak ("cannot set result pipe to nonblocking mode");
314} 381}
315 382
316void 383void
317min_parallel(nthreads) 384min_parallel(nthreads)
335 } 402 }
336 403
337 while (started > nthreads) 404 while (started > nthreads)
338 { 405 {
339 poll_wait (); 406 poll_wait ();
340 poll_cb (aTHX); 407 poll_cb ();
341 } 408 }
342} 409}
343 410
411int
412max_outstanding(nreqs)
413 int nreqs
414 PROTOTYPE: $
415 CODE:
416 RETVAL = max_outstanding;
417 max_outstanding = nreqs;
418
344void 419void
345aio_open(pathname,flags,mode,callback) 420aio_open(pathname,flags,mode,callback=&PL_sv_undef)
346 SV * pathname 421 SV * pathname
347 int flags 422 int flags
348 int mode 423 int mode
349 SV * callback 424 SV * callback
350 PROTOTYPE: $$$$ 425 PROTOTYPE: $$$;$
351 CODE: 426 CODE:
352{ 427{
353 aio_req req; 428 aio_req req;
354 429
355 Newz (0, req, 1, aio_cb); 430 Newz (0, req, 1, aio_cb);
366 441
367 send_req (req); 442 send_req (req);
368} 443}
369 444
370void 445void
371aio_close(fh,callback) 446aio_close(fh,callback=&PL_sv_undef)
372 InputStream fh 447 InputStream fh
373 SV * callback 448 SV * callback
374 PROTOTYPE: $$ 449 PROTOTYPE: $;$
375 ALIAS: 450 ALIAS:
376 aio_close = REQ_CLOSE 451 aio_close = REQ_CLOSE
377 aio_fsync = REQ_FSYNC 452 aio_fsync = REQ_FSYNC
378 aio_fdatasync = REQ_FDATASYNC 453 aio_fdatasync = REQ_FDATASYNC
379 CODE: 454 CODE:
391 466
392 send_req (req); 467 send_req (req);
393} 468}
394 469
395void 470void
396aio_read(fh,offset,length,data,dataoffset,callback) 471aio_read(fh,offset,length,data,dataoffset,callback=&PL_sv_undef)
397 InputStream fh 472 InputStream fh
398 UV offset 473 UV offset
399 IV length 474 IV length
400 SV * data 475 SV * data
401 IV dataoffset 476 IV dataoffset
402 SV * callback 477 SV * callback
403 PROTOTYPE: $$$$$$ 478 PROTOTYPE: $$$$$;$
404 CODE: 479 CODE:
405 read_write (aTHX_ 0, PerlIO_fileno (fh), offset, length, data, dataoffset, callback); 480 read_write (0, PerlIO_fileno (fh), offset, length, data, dataoffset, callback);
406 481
407void 482void
408aio_write(fh,offset,length,data,dataoffset,callback) 483aio_write(fh,offset,length,data,dataoffset,callback=&PL_sv_undef)
409 OutputStream fh 484 OutputStream fh
410 UV offset 485 UV offset
411 IV length 486 IV length
412 SV * data 487 SV * data
413 IV dataoffset 488 IV dataoffset
414 SV * callback 489 SV * callback
415 PROTOTYPE: $$$$$$ 490 PROTOTYPE: $$$$$;$
416 CODE: 491 CODE:
417 read_write (aTHX_ 1, PerlIO_fileno (fh), offset, length, data, dataoffset, callback); 492 read_write (1, PerlIO_fileno (fh), offset, length, data, dataoffset, callback);
418 493
419void 494void
420aio_readahead(fh,offset,length,callback) 495aio_readahead(fh,offset,length,callback=&PL_sv_undef)
421 InputStream fh 496 InputStream fh
422 UV offset 497 UV offset
423 IV length 498 IV length
424 SV * callback 499 SV * callback
425 PROTOTYPE: $$$$ 500 PROTOTYPE: $$$;$
426 CODE: 501 CODE:
427{ 502{
428 aio_req req; 503 aio_req req;
429 504
430 if (length < 0) 505 if (length < 0)
443 518
444 send_req (req); 519 send_req (req);
445} 520}
446 521
447void 522void
448aio_stat(fh_or_path,callback) 523aio_stat(fh_or_path,callback=&PL_sv_undef)
449 SV * fh_or_path 524 SV * fh_or_path
450 SV * callback 525 SV * callback
451 PROTOTYPE: $$
452 ALIAS: 526 ALIAS:
527 aio_stat = REQ_STAT
453 aio_lstat = 1 528 aio_lstat = REQ_LSTAT
454 CODE: 529 CODE:
455{ 530{
456 aio_req req; 531 aio_req req;
457 532
458 Newz (0, req, 1, aio_cb); 533 Newz (0, req, 1, aio_cb);
465 if (!req->statdata) 540 if (!req->statdata)
466 croak ("out of memory during aio_req->statdata allocation"); 541 croak ("out of memory during aio_req->statdata allocation");
467 542
468 if (SvPOK (fh_or_path)) 543 if (SvPOK (fh_or_path))
469 { 544 {
470 req->type = ix ? REQ_LSTAT : REQ_STAT; 545 req->type = ix;
471 req->data = newSVsv (fh_or_path); 546 req->data = newSVsv (fh_or_path);
472 req->dataptr = SvPV_nolen (req->data); 547 req->dataptr = SvPV_nolen (req->data);
473 } 548 }
474 else 549 else
475 { 550 {
481 556
482 send_req (req); 557 send_req (req);
483} 558}
484 559
485void 560void
486aio_unlink(pathname,callback) 561aio_unlink(pathname,callback=&PL_sv_undef)
487 SV * pathname 562 SV * pathname
488 SV * callback 563 SV * callback
489 PROTOTYPE: $$
490 CODE: 564 CODE:
491{ 565{
492 aio_req req; 566 aio_req req;
493 567
494 Newz (0, req, 1, aio_cb); 568 Newz (0, req, 1, aio_cb);
502 req->callback = SvREFCNT_inc (callback); 576 req->callback = SvREFCNT_inc (callback);
503 577
504 send_req (req); 578 send_req (req);
505} 579}
506 580
581void
582flush()
583 PROTOTYPE:
584 CODE:
585 while (nreqs)
586 {
587 poll_wait ();
588 poll_cb ();
589 }
590
591void
592poll()
593 PROTOTYPE:
594 CODE:
595 if (nreqs)
596 {
597 poll_wait ();
598 poll_cb ();
599 }
600
507int 601int
508poll_fileno() 602poll_fileno()
509 PROTOTYPE: 603 PROTOTYPE:
510 CODE: 604 CODE:
511 RETVAL = respipe[0]; 605 RETVAL = respipe [0];
512 OUTPUT: 606 OUTPUT:
513 RETVAL 607 RETVAL
514 608
515int 609int
516poll_cb(...) 610poll_cb(...)
517 PROTOTYPE: 611 PROTOTYPE:
518 CODE: 612 CODE:
519 RETVAL = poll_cb (aTHX); 613 RETVAL = poll_cb ();
520 OUTPUT: 614 OUTPUT:
521 RETVAL 615 RETVAL
522 616
523void 617void
524poll_wait() 618poll_wait()
525 PROTOTYPE: 619 PROTOTYPE:
526 CODE: 620 CODE:
621 if (nreqs)
527 poll_wait (); 622 poll_wait ();
528 623
529int 624int
530nreqs() 625nreqs()
531 PROTOTYPE: 626 PROTOTYPE:
532 CODE: 627 CODE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines