ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/AIO.xs
Revision: 1.33
Committed: Mon Aug 22 23:21:57 2005 UTC (18 years, 8 months ago) by root
Branch: MAIN
Changes since 1.32: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

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