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.8 by root, Mon Jul 11 02:53:59 2005 UTC vs.
Revision 1.34 by root, Tue Aug 23 00:03:14 2005 UTC

1#define _REENTRANT 1
2#include <errno.h>
3
1#include "EXTERN.h" 4#include "EXTERN.h"
2#include "perl.h" 5#include "perl.h"
3#include "XSUB.h" 6#include "XSUB.h"
4 7
8#include "autoconf/config.h"
9
10#include <pthread.h>
11
5#include <sys/types.h> 12#include <sys/types.h>
6#include <sys/stat.h> 13#include <sys/stat.h>
14
7#include <unistd.h> 15#include <unistd.h>
8#include <fcntl.h> 16#include <fcntl.h>
9#include <signal.h> 17#include <signal.h>
10#include <sched.h> 18#include <sched.h>
11#include <endian.h>
12 19
13#include <pthread.h> 20#if HAVE_SENDFILE
21# if __linux
22# include <sys/sendfile.h>
23# elif __freebsd
14#include <sys/syscall.h> 24# include <sys/socket.h>
15 25# include <sys/uio.h>
16typedef void *InputStream; /* hack, but 5.6.1 is simply toooo old ;) */ 26# elif __hpux
17typedef void *OutputStream; /* hack, but 5.6.1 is simply toooo old ;) */ 27# include <sys/socket.h>
18typedef void *InOutStream; /* hack, but 5.6.1 is simply toooo old ;) */ 28# else
29# error sendfile support requested but not available
30# endif
31#endif
19 32
20#if __ia64 33#if __ia64
21# define STACKSIZE 65536 34# define STACKSIZE 65536
22#else 35#else
23# define STACKSIZE 4096 36# define STACKSIZE 4096
25 38
26enum { 39enum {
27 REQ_QUIT, 40 REQ_QUIT,
28 REQ_OPEN, REQ_CLOSE, 41 REQ_OPEN, REQ_CLOSE,
29 REQ_READ, REQ_WRITE, REQ_READAHEAD, 42 REQ_READ, REQ_WRITE, REQ_READAHEAD,
43 REQ_SENDFILE,
30 REQ_STAT, REQ_LSTAT, REQ_FSTAT, REQ_UNLINK, 44 REQ_STAT, REQ_LSTAT, REQ_FSTAT,
31 REQ_FSYNC, REQ_FDATASYNC, 45 REQ_FSYNC, REQ_FDATASYNC,
46 REQ_UNLINK, REQ_RMDIR,
47 REQ_SYMLINK,
32}; 48};
33 49
34typedef struct aio_cb { 50typedef struct aio_cb {
35 struct aio_cb *volatile next; 51 struct aio_cb *volatile next;
36 52
37 int type; 53 int type;
38 54
39 int fd; 55 int fd, fd2;
40 off_t offset; 56 off_t offset;
41 size_t length; 57 size_t length;
42 ssize_t result; 58 ssize_t result;
43 mode_t mode; /* open */ 59 mode_t mode; /* open */
44 int errorno; 60 int errorno;
45 SV *data, *callback; 61 SV *data, *callback;
46 void *dataptr; 62 SV *fh, *fh2;
63 void *dataptr, *data2ptr;
47 STRLEN dataoffset; 64 STRLEN dataoffset;
48 65
49 Stat_t *statdata; 66 Stat_t *statdata;
50} aio_cb; 67} aio_cb;
51 68
52typedef aio_cb *aio_req; 69typedef aio_cb *aio_req;
53 70
54static int started; 71static int started, wanted;
55static int nreqs; 72static volatile int nreqs;
56static int max_outstanding = 1<<30; 73static int max_outstanding = 1<<30;
57static int respipe [2]; 74static int respipe [2];
58 75
59static pthread_mutex_t reslock = PTHREAD_MUTEX_INITIALIZER; 76static pthread_mutex_t reslock = PTHREAD_MUTEX_INITIALIZER;
60static pthread_mutex_t reqlock = PTHREAD_MUTEX_INITIALIZER; 77static pthread_mutex_t reqlock = PTHREAD_MUTEX_INITIALIZER;
61static pthread_cond_t reqwait = PTHREAD_COND_INITIALIZER; 78static pthread_cond_t reqwait = PTHREAD_COND_INITIALIZER;
62 79
63static volatile aio_req reqs, reqe; /* queue start, queue end */ 80static volatile aio_req reqs, reqe; /* queue start, queue end */
64static volatile aio_req ress, rese; /* queue start, queue end */ 81static volatile aio_req ress, rese; /* queue start, queue end */
65 82
83static void free_req (aio_req req)
84{
85 if (req->data)
86 SvREFCNT_dec (req->data);
87
88 if (req->fh)
89 SvREFCNT_dec (req->fh);
90
91 if (req->fh2)
92 SvREFCNT_dec (req->fh2);
93
94 if (req->statdata)
95 Safefree (req->statdata);
96
97 if (req->callback)
98 SvREFCNT_dec (req->callback);
99
100 Safefree (req);
101}
102
66static void 103static void
67poll_wait () 104poll_wait ()
68{ 105{
69 if (!nreqs) 106 if (nreqs && !ress)
70 return; 107 {
71
72 fd_set rfd; 108 fd_set rfd;
73 FD_ZERO(&rfd); 109 FD_ZERO(&rfd);
74 FD_SET(respipe [0], &rfd); 110 FD_SET(respipe [0], &rfd);
75 111
76 select (respipe [0] + 1, &rfd, 0, 0, 0); 112 select (respipe [0] + 1, &rfd, 0, 0, 0);
113 }
77} 114}
78 115
79static int 116static int
80poll_cb () 117poll_cb ()
81{ 118{
82 dSP; 119 dSP;
83 int count = 0; 120 int count = 0;
121 int do_croak = 0;
84 aio_req req; 122 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 123
93 for (;;) 124 for (;;)
94 { 125 {
95 pthread_mutex_lock (&reslock); 126 pthread_mutex_lock (&reslock);
96
97 req = ress; 127 req = ress;
98 128
99 if (ress) 129 if (req)
100 { 130 {
101 ress = ress->next; 131 ress = req->next;
132
102 if (!ress) rese = 0; 133 if (!ress)
134 {
135 /* read any signals sent by the worker threads */
136 char buf [32];
137 while (read (respipe [0], buf, 32) == 32)
138 ;
139
140 rese = 0;
141 }
103 } 142 }
104 143
105 pthread_mutex_unlock (&reslock); 144 pthread_mutex_unlock (&reslock);
106 145
107 if (!req) 146 if (!req)
115 { 154 {
116 int errorno = errno; 155 int errorno = errno;
117 errno = req->errorno; 156 errno = req->errorno;
118 157
119 if (req->type == REQ_READ) 158 if (req->type == REQ_READ)
120 SvCUR_set (req->data, req->dataoffset 159 SvCUR_set (req->data, req->dataoffset + (req->result > 0 ? req->result : 0));
121 + req->result > 0 ? req->result : 0);
122 160
161 if (req->data2ptr && (req->type == REQ_READ || req->type == REQ_WRITE))
162 SvREADONLY_off (req->data);
163
123 if (req->data) 164 if (req->statdata)
124 SvREFCNT_dec (req->data);
125
126 if (req->type == REQ_STAT || req->type == REQ_LSTAT || req->type == REQ_FSTAT)
127 { 165 {
128 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT; 166 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT;
129 PL_laststatval = req->result; 167 PL_laststatval = req->result;
130 PL_statcache = *(req->statdata); 168 PL_statcache = *(req->statdata);
131
132 Safefree (req->statdata);
133 } 169 }
134 170
171 ENTER;
135 PUSHMARK (SP); 172 PUSHMARK (SP);
136 XPUSHs (sv_2mortal (newSViv (req->result))); 173 XPUSHs (sv_2mortal (newSViv (req->result)));
137 174
138 if (req->type == REQ_OPEN) 175 if (req->type == REQ_OPEN)
139 { 176 {
142 179
143 PUTBACK; 180 PUTBACK;
144 call_pv ("IO::AIO::_fd2fh", G_SCALAR | G_EVAL); 181 call_pv ("IO::AIO::_fd2fh", G_SCALAR | G_EVAL);
145 SPAGAIN; 182 SPAGAIN;
146 183
147 fh = POPs; 184 fh = SvREFCNT_inc (POPs);
148 185
149 PUSHMARK (SP); 186 PUSHMARK (SP);
150 XPUSHs (fh); 187 XPUSHs (sv_2mortal (fh));
151 } 188 }
152 189
153 if (SvOK (req->callback)) 190 if (SvOK (req->callback))
154 { 191 {
155 PUTBACK; 192 PUTBACK;
156 call_sv (req->callback, G_VOID | G_EVAL); 193 call_sv (req->callback, G_VOID | G_EVAL);
157 SPAGAIN; 194 SPAGAIN;
195
196 if (SvTRUE (ERRSV))
197 {
198 free_req (req);
199 croak (0);
200 }
158 } 201 }
202
159 203 LEAVE;
160 if (req->callback)
161 SvREFCNT_dec (req->callback);
162 204
163 errno = errorno; 205 errno = errorno;
164 count++; 206 count++;
165 } 207 }
166 208
167 Safefree (req); 209 free_req (req);
168 } 210 }
169 211
170 return count; 212 return count;
171} 213}
172 214
193} 235}
194 236
195static void 237static void
196send_req (aio_req req) 238send_req (aio_req req)
197{ 239{
240 while (started < wanted && nreqs >= started)
241 start_thread ();
242
198 nreqs++; 243 nreqs++;
199 244
200 pthread_mutex_lock (&reqlock); 245 pthread_mutex_lock (&reqlock);
201 246
202 req->next = 0; 247 req->next = 0;
210 reqe = reqs = req; 255 reqe = reqs = req;
211 256
212 pthread_cond_signal (&reqwait); 257 pthread_cond_signal (&reqwait);
213 pthread_mutex_unlock (&reqlock); 258 pthread_mutex_unlock (&reqlock);
214 259
215 while (nreqs > max_outstanding) 260 if (nreqs > max_outstanding)
261 for (;;)
262 {
263 poll_cb ();
264
265 if (nreqs <= max_outstanding)
266 break;
267
268 poll_wait ();
269 }
270}
271
272static void
273end_thread (void)
274{
275 aio_req req;
276 Newz (0, req, 1, aio_cb);
277 req->type = REQ_QUIT;
278
279 send_req (req);
280}
281
282static void min_parallel (int nthreads)
283{
284 if (wanted < nthreads)
285 wanted = nthreads;
286}
287
288static void max_parallel (int nthreads)
289{
290 int cur = started;
291
292 if (wanted > nthreads)
293 wanted = nthreads;
294
295 while (cur > wanted)
296 {
297 end_thread ();
298 cur--;
299 }
300
301 while (started > wanted)
216 { 302 {
217 poll_wait (); 303 poll_wait ();
218 poll_cb (); 304 poll_cb ();
219 } 305 }
220} 306}
221 307
222static void 308static void create_pipe ()
223end_thread (void)
224{ 309{
310 if (pipe (respipe))
311 croak ("unable to initialize result pipe");
312
313 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK))
314 croak ("cannot set result pipe to nonblocking mode");
315
316 if (fcntl (respipe [1], F_SETFL, O_NONBLOCK))
317 croak ("cannot set result pipe to nonblocking mode");
318}
319
320static void atfork_prepare (void)
321{
322 pthread_mutex_lock (&reqlock);
323 pthread_mutex_lock (&reslock);
324}
325
326static void atfork_parent (void)
327{
328 pthread_mutex_unlock (&reslock);
329 pthread_mutex_unlock (&reqlock);
330}
331
332static void atfork_child (void)
333{
225 aio_req req; 334 aio_req prv;
226 New (0, req, 1, aio_cb);
227 req->type = REQ_QUIT;
228 335
229 send_req (req); 336 started = 0;
230}
231 337
232static void 338 while (reqs)
233read_write (int dowrite, int fd, off_t offset, size_t length,
234 SV *data, STRLEN dataoffset, SV *callback)
235{
236 aio_req req;
237 STRLEN svlen;
238 char *svptr = SvPV (data, svlen);
239
240 SvUPGRADE (data, SVt_PV);
241 SvPOK_on (data);
242
243 if (dataoffset < 0)
244 dataoffset += svlen;
245
246 if (dataoffset < 0 || dataoffset > svlen)
247 croak ("data offset outside of string");
248
249 if (dowrite)
250 { 339 {
251 /* write: check length and adjust. */ 340 prv = reqs;
252 if (length < 0 || length + dataoffset > svlen) 341 reqs = prv->next;
253 length = svlen - dataoffset; 342 free_req (prv);
254 } 343 }
255 else 344
345 reqs = reqe = 0;
346
347 while (ress)
256 { 348 {
257 /* read: grow scalar as necessary */ 349 prv = ress;
258 svptr = SvGROW (data, length + dataoffset); 350 ress = prv->next;
351 free_req (prv);
259 } 352 }
353
354 ress = rese = 0;
260 355
261 if (length < 0) 356 close (respipe [0]);
262 croak ("length must not be negative"); 357 close (respipe [1]);
358 create_pipe ();
263 359
264 Newz (0, req, 1, aio_cb); 360 atfork_parent ();
265
266 if (!req)
267 croak ("out of memory during aio_req allocation");
268
269 req->type = dowrite ? REQ_WRITE : REQ_READ;
270 req->fd = fd;
271 req->offset = offset;
272 req->length = length;
273 req->data = SvREFCNT_inc (data);
274 req->dataptr = (char *)svptr + dataoffset;
275 req->callback = SvREFCNT_inc (callback);
276
277 send_req (req);
278} 361}
362
363/*****************************************************************************/
364/* work around various missing functions */
365
366#if !HAVE_PREADWRITE
367# define pread aio_pread
368# define pwrite aio_pwrite
369
370/*
371 * make our pread/pwrite safe against themselves, but not against
372 * normal read/write by using a mutex. slows down execution a lot,
373 * but that's your problem, not mine.
374 */
375static pthread_mutex_t iolock = PTHREAD_MUTEX_INITIALIZER;
376
377static ssize_t
378pread (int fd, void *buf, size_t count, off_t offset)
379{
380 ssize_t res;
381 off_t ooffset;
382
383 pthread_mutex_lock (&iolock);
384 ooffset = lseek (fd, 0, SEEK_CUR);
385 lseek (fd, offset, SEEK_SET);
386 res = read (fd, buf, count);
387 lseek (fd, ooffset, SEEK_SET);
388 pthread_mutex_unlock (&iolock);
389
390 return res;
391}
392
393static ssize_t
394pwrite (int fd, void *buf, size_t count, off_t offset)
395{
396 ssize_t res;
397 off_t ooffset;
398
399 pthread_mutex_lock (&iolock);
400 ooffset = lseek (fd, 0, SEEK_CUR);
401 lseek (fd, offset, SEEK_SET);
402 res = write (fd, buf, count);
403 lseek (fd, offset, SEEK_SET);
404 pthread_mutex_unlock (&iolock);
405
406 return res;
407}
408#endif
409
410#if !HAVE_FDATASYNC
411# define fdatasync fsync
412#endif
413
414#if !HAVE_READAHEAD
415# define readahead aio_readahead
416
417static char readahead_buf[4096];
418
419static ssize_t
420readahead (int fd, off_t offset, size_t count)
421{
422 while (count > 0)
423 {
424 size_t len = count < sizeof (readahead_buf) ? count : sizeof (readahead_buf);
425
426 pread (fd, readahead_buf, len, offset);
427 offset += len;
428 count -= len;
429 }
430
431 errno = 0;
432}
433#endif
434
435/* sendfile always needs emulation */
436static ssize_t
437sendfile_ (int ofd, int ifd, off_t offset, size_t count)
438{
439 ssize_t res;
440
441 if (!count)
442 return 0;
443
444#if __linux
445 res = sendfile (ofd, ifd, &offset, count);
446
447#elif __freebsd
448 /*
449 * Of course, the freebsd sendfile is a dire hack with no thoughts
450 * wasted on making it similar to other i/o functions.
451 */
452 {
453 off_t sbytes;
454 res = sendfile (ifd, ofd, offset, count, 0, &sbytes, 0);
455
456 if (!res && errno == EAGAIN)
457 /* maybe on others, too, as usual, the manpage leaves you guessing */
458 res = sbytes;
459 }
460
461#elif __hpux
462 res = sendfile (ofd, ifd, offset, count, 0, 0);
463
464#else
465 res = -1;
466 errno = ENOSYS;
467#endif
468
469 if (res < 0 && (errno == ENOSYS || errno == EINVAL || errno == ENOTSOCK))
470 {
471 /* emulate sendfile. this is a major pain in the ass */
472 char *buf = malloc (4096);
473 res = 0;
474
475 for (;;)
476 {
477 ssize_t cnt;
478
479 cnt = pread (ifd, buf, 4096, offset);
480
481 if (cnt <= 0)
482 {
483 if (cnt && !res) res = -1;
484 break;
485 }
486
487 cnt = write (ofd, buf, cnt);
488
489 if (cnt <= 0)
490 {
491 if (cnt && !res) res = -1;
492 break;
493 }
494
495 offset += cnt;
496 res += cnt;
497 }
498
499 {
500 int errorno = errno;
501 free (buf);
502 errno = errorno;
503 }
504 }
505
506 return res;
507}
508
509/*****************************************************************************/
279 510
280static void * 511static void *
281aio_proc (void *thr_arg) 512aio_proc (void *thr_arg)
282{ 513{
283 aio_req req; 514 aio_req req;
309 540
310 type = req->type; 541 type = req->type;
311 542
312 switch (type) 543 switch (type)
313 { 544 {
314 case REQ_READ: req->result = pread64 (req->fd, req->dataptr, req->length, req->offset); break; 545 case REQ_READ: req->result = pread (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; 546 case REQ_WRITE: req->result = pwrite (req->fd, req->dataptr, req->length, req->offset); break;
316#if SYS_readahead 547
317 case REQ_READAHEAD: req->result = readahead (req->fd, req->offset, req->length); break; 548 case REQ_READAHEAD: req->result = readahead (req->fd, req->offset, req->length); break;
318#else 549 case REQ_SENDFILE: req->result = sendfile_ (req->fd, req->fd2, req->offset, req->length); break;
319 case REQ_READAHEAD: req->result = -1; errno = ENOSYS; break;
320#endif
321 550
322 case REQ_STAT: req->result = stat (req->dataptr, req->statdata); break; 551 case REQ_STAT: req->result = stat (req->dataptr, req->statdata); break;
323 case REQ_LSTAT: req->result = lstat (req->dataptr, req->statdata); break; 552 case REQ_LSTAT: req->result = lstat (req->dataptr, req->statdata); break;
324 case REQ_FSTAT: req->result = fstat (req->fd , req->statdata); break; 553 case REQ_FSTAT: req->result = fstat (req->fd , req->statdata); break;
325 554
326 case REQ_OPEN: req->result = open (req->dataptr, req->fd, req->mode); break; 555 case REQ_OPEN: req->result = open (req->dataptr, req->fd, req->mode); break;
327 case REQ_CLOSE: req->result = close (req->fd); break; 556 case REQ_CLOSE: req->result = close (req->fd); break;
328 case REQ_UNLINK: req->result = unlink (req->dataptr); break; 557 case REQ_UNLINK: req->result = unlink (req->dataptr); break;
558 case REQ_RMDIR: req->result = rmdir (req->dataptr); break;
559 case REQ_SYMLINK: req->result = symlink (req->data2ptr, req->dataptr); break;
329 560
561 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break;
330 case REQ_FSYNC: req->result = fsync (req->fd); break; 562 case REQ_FSYNC: req->result = fsync (req->fd); break;
331 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break;
332 563
333 case REQ_QUIT: 564 case REQ_QUIT:
334 break; 565 break;
335 566
336 default: 567 default:
362 while (type != REQ_QUIT); 593 while (type != REQ_QUIT);
363 594
364 return 0; 595 return 0;
365} 596}
366 597
598#define dREQ \
599 aio_req req; \
600 \
601 if (SvOK (callback) && !SvROK (callback)) \
602 croak ("clalback must be undef or of reference type"); \
603 \
604 Newz (0, req, 1, aio_cb); \
605 if (!req) \
606 croak ("out of memory during aio_req allocation"); \
607 \
608 req->callback = newSVsv (callback);
609
367MODULE = IO::AIO PACKAGE = IO::AIO 610MODULE = IO::AIO PACKAGE = IO::AIO
368 611
369PROTOTYPES: ENABLE 612PROTOTYPES: ENABLE
370 613
371BOOT: 614BOOT:
372{ 615{
373 if (pipe (respipe)) 616 create_pipe ();
374 croak ("unable to initialize result pipe"); 617 pthread_atfork (atfork_prepare, atfork_parent, atfork_child);
375
376 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK))
377 croak ("cannot set result pipe to nonblocking mode");
378
379 if (fcntl (respipe [1], F_SETFL, O_NONBLOCK))
380 croak ("cannot set result pipe to nonblocking mode");
381} 618}
382 619
383void 620void
384min_parallel(nthreads) 621min_parallel(nthreads)
385 int nthreads 622 int nthreads
386 PROTOTYPE: $ 623 PROTOTYPE: $
387 CODE:
388 while (nthreads > started)
389 start_thread ();
390 624
391void 625void
392max_parallel(nthreads) 626max_parallel(nthreads)
393 int nthreads 627 int nthreads
394 PROTOTYPE: $ 628 PROTOTYPE: $
395 CODE:
396{
397 int cur = started;
398 while (cur > nthreads)
399 {
400 end_thread ();
401 cur--;
402 }
403
404 while (started > nthreads)
405 {
406 poll_wait ();
407 poll_cb ();
408 }
409}
410 629
411int 630int
412max_outstanding(nreqs) 631max_outstanding(nreqs)
413 int nreqs 632 int nreqs
414 PROTOTYPE: $ 633 PROTOTYPE: $
423 int mode 642 int mode
424 SV * callback 643 SV * callback
425 PROTOTYPE: $$$;$ 644 PROTOTYPE: $$$;$
426 CODE: 645 CODE:
427{ 646{
428 aio_req req; 647 dREQ;
429
430 Newz (0, req, 1, aio_cb);
431
432 if (!req)
433 croak ("out of memory during aio_req allocation");
434 648
435 req->type = REQ_OPEN; 649 req->type = REQ_OPEN;
436 req->data = newSVsv (pathname); 650 req->data = newSVsv (pathname);
437 req->dataptr = SvPV_nolen (req->data); 651 req->dataptr = SvPVbyte_nolen (req->data);
438 req->fd = flags; 652 req->fd = flags;
439 req->mode = mode; 653 req->mode = mode;
440 req->callback = SvREFCNT_inc (callback);
441 654
442 send_req (req); 655 send_req (req);
443} 656}
444 657
445void 658void
446aio_close(fh,callback=&PL_sv_undef) 659aio_close(fh,callback=&PL_sv_undef)
447 InputStream fh 660 SV * fh
448 SV * callback 661 SV * callback
449 PROTOTYPE: $;$ 662 PROTOTYPE: $;$
450 ALIAS: 663 ALIAS:
451 aio_close = REQ_CLOSE 664 aio_close = REQ_CLOSE
452 aio_fsync = REQ_FSYNC 665 aio_fsync = REQ_FSYNC
453 aio_fdatasync = REQ_FDATASYNC 666 aio_fdatasync = REQ_FDATASYNC
454 CODE: 667 CODE:
455{ 668{
456 aio_req req; 669 dREQ;
457
458 Newz (0, req, 1, aio_cb);
459
460 if (!req)
461 croak ("out of memory during aio_req allocation");
462 670
463 req->type = ix; 671 req->type = ix;
672 req->fh = newSVsv (fh);
464 req->fd = PerlIO_fileno (fh); 673 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh)));
465 req->callback = SvREFCNT_inc (callback);
466 674
467 send_req (req); 675 send_req (req);
468} 676}
469 677
470void 678void
471aio_read(fh,offset,length,data,dataoffset,callback=&PL_sv_undef) 679aio_read(fh,offset,length,data,dataoffset,callback=&PL_sv_undef)
472 InputStream fh 680 SV * fh
473 UV offset 681 UV offset
474 IV length 682 UV length
475 SV * data 683 SV * data
476 IV dataoffset 684 UV dataoffset
477 SV * callback 685 SV * callback
686 ALIAS:
687 aio_read = REQ_READ
688 aio_write = REQ_WRITE
478 PROTOTYPE: $$$$$;$ 689 PROTOTYPE: $$$$$;$
479 CODE: 690 CODE:
480 read_write (0, PerlIO_fileno (fh), offset, length, data, dataoffset, callback); 691{
692 aio_req req;
693 STRLEN svlen;
694 char *svptr = SvPVbyte (data, svlen);
481 695
696 SvUPGRADE (data, SVt_PV);
697 SvPOK_on (data);
698
699 if (dataoffset < 0)
700 dataoffset += svlen;
701
702 if (dataoffset < 0 || dataoffset > svlen)
703 croak ("data offset outside of string");
704
705 if (ix == REQ_WRITE)
706 {
707 /* write: check length and adjust. */
708 if (length < 0 || length + dataoffset > svlen)
709 length = svlen - dataoffset;
710 }
711 else
712 {
713 /* read: grow scalar as necessary */
714 svptr = SvGROW (data, length + dataoffset);
715 }
716
717 if (length < 0)
718 croak ("length must not be negative");
719
720 {
721 dREQ;
722
723 req->type = ix;
724 req->fh = newSVsv (fh);
725 req->fd = PerlIO_fileno (ix == REQ_READ ? IoIFP (sv_2io (fh))
726 : IoOFP (sv_2io (fh)));
727 req->offset = offset;
728 req->length = length;
729 req->data = SvREFCNT_inc (data);
730 req->dataptr = (char *)svptr + dataoffset;
731
732 if (!SvREADONLY (data))
733 {
734 SvREADONLY_on (data);
735 req->data2ptr = (void *)data;
736 }
737
738 send_req (req);
739 }
740}
741
482void 742void
483aio_write(fh,offset,length,data,dataoffset,callback=&PL_sv_undef) 743aio_sendfile(out_fh,in_fh,in_offset,length,callback=&PL_sv_undef)
484 OutputStream fh 744 SV * out_fh
745 SV * in_fh
485 UV offset 746 UV in_offset
486 IV length 747 UV length
487 SV * data
488 IV dataoffset
489 SV * callback 748 SV * callback
490 PROTOTYPE: $$$$$;$ 749 PROTOTYPE: $$$$;$
491 CODE: 750 CODE:
492 read_write (1, PerlIO_fileno (fh), offset, length, data, dataoffset, callback); 751{
752 dREQ;
753
754 req->type = REQ_SENDFILE;
755 req->fh = newSVsv (out_fh);
756 req->fd = PerlIO_fileno (IoIFP (sv_2io (out_fh)));
757 req->fh2 = newSVsv (in_fh);
758 req->fd2 = PerlIO_fileno (IoIFP (sv_2io (in_fh)));
759 req->offset = in_offset;
760 req->length = length;
761
762 send_req (req);
763}
493 764
494void 765void
495aio_readahead(fh,offset,length,callback=&PL_sv_undef) 766aio_readahead(fh,offset,length,callback=&PL_sv_undef)
496 InputStream fh 767 SV * fh
497 UV offset 768 UV offset
498 IV length 769 IV length
499 SV * callback 770 SV * callback
500 PROTOTYPE: $$$;$ 771 PROTOTYPE: $$$;$
501 CODE: 772 CODE:
502{ 773{
503 aio_req req; 774 dREQ;
504
505 if (length < 0)
506 croak ("length must not be negative");
507
508 Newz (0, req, 1, aio_cb);
509
510 if (!req)
511 croak ("out of memory during aio_req allocation");
512 775
513 req->type = REQ_READAHEAD; 776 req->type = REQ_READAHEAD;
777 req->fh = newSVsv (fh);
514 req->fd = PerlIO_fileno (fh); 778 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh)));
515 req->offset = offset; 779 req->offset = offset;
516 req->length = length; 780 req->length = length;
517 req->callback = SvREFCNT_inc (callback);
518 781
519 send_req (req); 782 send_req (req);
520} 783}
521 784
522void 785void
526 ALIAS: 789 ALIAS:
527 aio_stat = REQ_STAT 790 aio_stat = REQ_STAT
528 aio_lstat = REQ_LSTAT 791 aio_lstat = REQ_LSTAT
529 CODE: 792 CODE:
530{ 793{
531 aio_req req; 794 dREQ;
532
533 Newz (0, req, 1, aio_cb);
534
535 if (!req)
536 croak ("out of memory during aio_req allocation");
537 795
538 New (0, req->statdata, 1, Stat_t); 796 New (0, req->statdata, 1, Stat_t);
539
540 if (!req->statdata) 797 if (!req->statdata)
798 {
799 free_req (req);
541 croak ("out of memory during aio_req->statdata allocation"); 800 croak ("out of memory during aio_req->statdata allocation");
801 }
542 802
543 if (SvPOK (fh_or_path)) 803 if (SvPOK (fh_or_path))
544 { 804 {
545 req->type = ix; 805 req->type = ix;
546 req->data = newSVsv (fh_or_path); 806 req->data = newSVsv (fh_or_path);
547 req->dataptr = SvPV_nolen (req->data); 807 req->dataptr = SvPVbyte_nolen (req->data);
548 } 808 }
549 else 809 else
550 { 810 {
551 req->type = REQ_FSTAT; 811 req->type = REQ_FSTAT;
812 req->fh = newSVsv (fh_or_path);
552 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh_or_path))); 813 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
553 } 814 }
554
555 req->callback = SvREFCNT_inc (callback);
556 815
557 send_req (req); 816 send_req (req);
558} 817}
559 818
560void 819void
561aio_unlink(pathname,callback=&PL_sv_undef) 820aio_unlink(pathname,callback=&PL_sv_undef)
562 SV * pathname 821 SV * pathname
563 SV * callback 822 SV * callback
823 ALIAS:
824 aio_unlink = REQ_UNLINK
825 aio_rmdir = REQ_RMDIR
564 CODE: 826 CODE:
565{ 827{
566 aio_req req; 828 dREQ;
567 829
568 Newz (0, req, 1, aio_cb); 830 req->type = ix;
831 req->data = newSVsv (pathname);
832 req->dataptr = SvPVbyte_nolen (req->data);
569 833
570 if (!req) 834 send_req (req);
571 croak ("out of memory during aio_req allocation"); 835}
836
837void
838aio_symlink(oldpath,newpath,callback=&PL_sv_undef)
839 SV * oldpath
840 SV * newpath
841 SV * callback
842 CODE:
843{
844 dREQ;
572 845
573 req->type = REQ_UNLINK; 846 req->type = REQ_SYMLINK;
847 req->fh = newSVsv (oldpath);
848 req->data2ptr = SvPVbyte_nolen (req->fh);
574 req->data = newSVsv (pathname); 849 req->data = newSVsv (newpath);
575 req->dataptr = SvPV_nolen (req->data); 850 req->dataptr = SvPVbyte_nolen (req->data);
576 req->callback = SvREFCNT_inc (callback);
577 851
578 send_req (req); 852 send_req (req);
579} 853}
580 854
581void 855void

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines