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.67 by root, Tue Oct 24 03:17:39 2006 UTC vs.
Revision 1.176 by root, Thu Dec 2 10:04:47 2010 UTC

1#if __linux 1#include "libeio/xthread.h"
2# define _GNU_SOURCE
3#endif
4
5#define _REENTRANT 1
6 2
7#include <errno.h> 3#include <errno.h>
8 4
9#include "EXTERN.h" 5#include "EXTERN.h"
10#include "perl.h" 6#include "perl.h"
11#include "XSUB.h" 7#include "XSUB.h"
12 8
13#include "autoconf/config.h" 9#include "schmorp.h"
14
15#include <pthread.h>
16 10
17#include <stddef.h> 11#include <stddef.h>
12#include <stdlib.h>
18#include <errno.h> 13#include <errno.h>
19#include <sys/time.h>
20#include <sys/select.h>
21#include <sys/types.h> 14#include <sys/types.h>
22#include <sys/stat.h> 15#include <sys/stat.h>
16#include <sys/statvfs.h>
23#include <limits.h> 17#include <limits.h>
24#include <unistd.h>
25#include <fcntl.h> 18#include <fcntl.h>
26#include <signal.h>
27#include <sched.h> 19#include <sched.h>
28 20
29#if HAVE_SENDFILE 21#if _POSIX_MEMLOCK || _POSIX_MAPPED_FILES
30# if __linux
31# include <sys/sendfile.h> 22# include <sys/mman.h>
32# elif __freebsd 23#endif
33# include <sys/socket.h> 24
25/* perl namespace pollution */
26#undef VERSION
27
28#ifdef _WIN32
29
30# define EIO_STRUCT_DIRENT Direntry_t
31# undef malloc
32# undef free
33
34// perl overrides all those nice win32 functions
35# undef open
36# undef read
37# undef write
38# undef send
39# undef recv
40# undef stat
41# undef fstat
42# define lstat stat
43# undef truncate
44# undef ftruncate
45# undef open
46# undef close
47# undef unlink
48# undef rmdir
49# undef rename
50# undef lseek
51
52# define chown(a,b,c) (errno = ENOSYS, -1)
53# define fchown(a,b,c) (errno = ENOSYS, -1)
54# define fchmod(a,b) (errno = ENOSYS, -1)
55# define symlink(a,b) (errno = ENOSYS, -1)
56# define readlink(a,b,c) (errno = ENOSYS, -1)
57# define mknod(a,b,c) (errno = ENOSYS, -1)
58# define truncate(a,b) (errno = ENOSYS, -1)
59# define ftruncate(fd,o) chsize ((fd), (o))
60# define fsync(fd) _commit (fd)
61# define opendir(fd) (errno = ENOSYS, 0)
62# define readdir(fd) (errno = ENOSYS, -1)
63# define closedir(fd) (errno = ENOSYS, -1)
64# define mkdir(a,b) mkdir (a)
65
66#else
67
34# include <sys/uio.h> 68# include <sys/time.h>
35# elif __hpux
36# include <sys/socket.h>
37# elif __solaris /* not yet */
38# include <sys/sendfile.h> 69# include <sys/select.h>
70# include <unistd.h>
71# include <utime.h>
72# include <signal.h>
73# define EIO_STRUCT_DIRENT struct dirent
74
75#endif
76
77/* perl stupidly overrides readdir and maybe others */
78/* with thread-unsafe versions, imagine that :( */
79#undef readdir
80#undef opendir
81#undef closedir
82
83#define EIO_STRUCT_STAT Stat_t
84
85/* use NV for 32 bit perls as it allows larger offsets */
86#if IVSIZE >= 8
87# define VAL64 IV
88# define SvVAL64 SvIV
89# define newSVval64 newSViv
90#else
91# define VAL64 NV
92# define SvVAL64 SvNV
93# define newSVval64 newSVnv
94#endif
95
96/*****************************************************************************/
97
98#if __GNUC__ >= 3
99# define expect(expr,value) __builtin_expect ((expr),(value))
100#else
101# define expect(expr,value) (expr)
102#endif
103
104#define expect_false(expr) expect ((expr) != 0, 0)
105#define expect_true(expr) expect ((expr) != 0, 1)
106
107/*****************************************************************************/
108
109typedef SV SV8; /* byte-sv, used for argument-checking */
110typedef int aio_rfd; /* read file desriptor */
111typedef int aio_wfd; /* write file descriptor */
112
113static HV *aio_stash, *aio_req_stash, *aio_grp_stash;
114
115#define EIO_REQ_MEMBERS \
116 SV *callback; \
117 SV *sv1, *sv2; \
118 STRLEN stroffset; \
119 SV *self;
120
121#define EIO_NO_WRAPPERS 1
122
123#include "libeio/config.h"
124#include "libeio/eio.h"
125
126#ifndef POSIX_FADV_NORMAL
127# define POSIX_FADV_NORMAL 0
128#endif
129#ifndef POSIX_FADV_SEQUENTIAL
130# define POSIX_FADV_SEQUENTIAL 0
131#endif
132#ifndef POSIX_FADV_RANDOM
133# define POSIX_FADV_RANDOM 0
134#endif
135#ifndef POSIX_FADV_NOREUSE
136# define POSIX_FADV_NOREUSE 0
137#endif
138#ifndef POSIX_FADV_WILLNEED
139# define POSIX_FADV_WILLNEED 0
140#endif
141#ifndef POSIX_FADV_DONTNEED
142# define POSIX_FADV_DONTNEED 0
143#endif
144
145#if !HAVE_POSIX_FADVISE
146# define posix_fadvise(a,b,c,d) errno = ENOSYS /* also return ENOSYS */
147#endif
148
149#ifndef POSIX_MADV_NORMAL
150# define POSIX_MADV_NORMAL 0
151#endif
152#ifndef POSIX_MADV_SEQUENTIAL
153# define POSIX_MADV_SEQUENTIAL 0
154#endif
155#ifndef POSIX_MADV_RANDOM
156# define POSIX_MADV_RANDOM 0
157#endif
158#ifndef POSIX_MADV_WILLNEED
159# define POSIX_MADV_WILLNEED 0
160#endif
161#ifndef POSIX_MADV_DONTNEED
162# define POSIX_MADV_DONTNEED 0
163#endif
164
165#if !HAVE_POSIX_MADVISE
166# define posix_madvise(a,b,c) errno = ENOSYS /* also return ENOSYS */
167#endif
168
169#ifndef PROT_NONE
170# define PROT_NONE 0
171#endif
172#ifndef PROT_READ
173# define PROT_READ 0
174#endif
175#ifndef PROT_WRITE
176# define PROT_READ 0
177#endif
178#ifndef PROT_EXEC
179# define PROT_EXEC 0
180#endif
181
182#ifndef ST_NODEV
183# define ST_NODEV 0
184#endif
185#ifndef ST_NOEXEC
186# define ST_NOEXEC 0
187#endif
188#ifndef ST_SYNCHRONOUS
189# define ST_SYNCHRONOUS 0
190#endif
191#ifndef ST_MANDLOCK
192# define ST_MANDLOCK 0
193#endif
194#ifndef ST_WRITE
195# define ST_WRITE 0
196#endif
197#ifndef ST_APPEND
198# define ST_APPEND 0
199#endif
200#ifndef ST_IMMUTABLE
201# define ST_IMMUTABLE 0
202#endif
203#ifndef ST_NOATIME
204# define ST_NOATIME 0
205#endif
206#ifndef ST_NODIRATIME
207# define ST_NODIRATIME 0
208#endif
209#ifndef ST_RELATIME
210# define ST_RELATIME 0
211#endif
212
213#ifndef MAP_ANONYMOUS
214# ifdef MAP_ANON
215# define MAP_ANONYMOUS MAP_ANON
39# else 216# else
40# error sendfile support requested but not available 217# define MAP_ANONYMOUS MAP_FIXED /* and hope this fails */
41# endif 218# endif
42#endif 219#endif
43 220#ifndef MAP_HUGETLB
44/* used for struct dirent, AIX doesn't provide it */ 221# define MAP_HUGETLB 0
45#ifndef NAME_MAX
46# define NAME_MAX 4096
47#endif 222#endif
48 223#ifndef MAP_LOCKED
49#if __ia64 224# define MAP_LOCKED 0
50# define STACKSIZE 65536
51#elif __i386 || __x86_64 /* 16k is unreasonably high :( */
52# define STACKSIZE PTHREAD_STACK_MIN
53#else
54# define STACKSIZE 16384
55#endif 225#endif
226#ifndef MAP_NORESERVE
227# define MAP_NORESERVE 0
228#endif
229#ifndef MAP_POPULATE
230# define MAP_POPULATE 0
231#endif
232#ifndef MAP_NONBLOCK
233# define MAP_NONBLOCK 0
234#endif
56 235
57/* buffer size for various temporary buffers */ 236#ifndef PAGESIZE
58#define AIO_BUFSIZE 65536 237# define PAGESIZE sysconf (_SC_PAGESIZE)
238#endif
59 239
60#define dBUF \ 240static int req_invoke (eio_req *req);
61 char *aio_buf = malloc (AIO_BUFSIZE); \ 241#define EIO_FINISH(req) req_invoke (req)
62 if (!aio_buf) \ 242static void req_destroy (eio_req *grp);
63 return -1; 243#define EIO_DESTROY(req) req_destroy (req)
64
65#define fBUF free (aio_buf)
66 244
67enum { 245enum {
68 REQ_QUIT, 246 FLAG_SV2_RO_OFF = 0x40, /* data was set readonly */
69 REQ_OPEN, REQ_CLOSE,
70 REQ_READ, REQ_WRITE, REQ_READAHEAD,
71 REQ_SENDFILE,
72 REQ_STAT, REQ_LSTAT, REQ_FSTAT,
73 REQ_FSYNC, REQ_FDATASYNC,
74 REQ_UNLINK, REQ_RMDIR, REQ_RENAME,
75 REQ_READDIR,
76 REQ_LINK, REQ_SYMLINK,
77 REQ_GROUP, REQ_NOP,
78 REQ_SLEEP,
79}; 247};
80 248
81#define AIO_REQ_KLASS "IO::AIO::REQ" 249#include "libeio/eio.c"
82#define AIO_GRP_KLASS "IO::AIO::GRP"
83 250
84typedef struct aio_cb
85{
86 struct aio_cb *volatile next;
87
88 SV *data, *callback;
89 SV *fh, *fh2;
90 void *dataptr, *data2ptr;
91 Stat_t *statdata;
92 off_t offset;
93 size_t length;
94 ssize_t result;
95
96 STRLEN dataoffset;
97 int type;
98 int fd, fd2;
99 int errorno;
100 mode_t mode; /* open */
101
102 unsigned char flags;
103 unsigned char pri;
104
105 SV *self; /* the perl counterpart of this request, if any */
106 struct aio_cb *grp, *grp_prev, *grp_next, *grp_first;
107} aio_cb;
108
109enum {
110 FLAG_CANCELLED = 0x01,
111};
112
113typedef aio_cb *aio_req; 251typedef eio_req *aio_req;
114typedef aio_cb *aio_req_ornot; 252typedef eio_req *aio_req_ornot;
115 253
116enum { 254static SV *on_next_submit;
117 PRI_MIN = -4, 255static int next_pri = EIO_PRI_DEFAULT;
118 PRI_MAX = 4,
119
120 DEFAULT_PRI = 0,
121 PRI_BIAS = -PRI_MIN,
122 NUM_PRI = PRI_MAX + PRI_BIAS + 1,
123};
124
125static int next_pri = DEFAULT_PRI + PRI_BIAS;
126
127static int started, wanted;
128static volatile int nreqs;
129static int max_outstanding = 1<<30; 256static int max_outstanding;
130static int respipe [2];
131 257
132#if __linux && defined (PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP) 258static s_epipe respipe;
133# define AIO_MUTEX_INIT PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
134#else
135# define AIO_MUTEX_INIT PTHREAD_MUTEX_INITIALIZER
136#endif
137 259
138static pthread_mutex_t reslock = AIO_MUTEX_INIT; 260static void req_destroy (aio_req req);
139static pthread_mutex_t reqlock = AIO_MUTEX_INIT;
140static pthread_cond_t reqwait = PTHREAD_COND_INITIALIZER;
141
142/*
143 * a somewhat faster data structure might be nice, but
144 * with 8 priorities this actually needs <20 insns
145 * per shift, the most expensive operation.
146 */
147typedef struct {
148 aio_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */
149 int size;
150} reqq;
151
152static reqq req_queue;
153static reqq res_queue;
154
155int reqq_push (reqq *q, aio_req req)
156{
157 int pri = req->pri;
158 req->next = 0;
159
160 if (q->qe[pri])
161 {
162 q->qe[pri]->next = req;
163 q->qe[pri] = req;
164 }
165 else
166 q->qe[pri] = q->qs[pri] = req;
167
168 return q->size++;
169}
170
171aio_req reqq_shift (reqq *q)
172{
173 int pri;
174
175 if (!q->size)
176 return 0;
177
178 --q->size;
179
180 for (pri = NUM_PRI; pri--; )
181 {
182 aio_req req = q->qs[pri];
183
184 if (req)
185 {
186 if (!(q->qs[pri] = req->next))
187 q->qe[pri] = 0;
188
189 return req;
190 }
191 }
192
193 abort ();
194}
195
196static void req_invoke (aio_req req); 261static void req_cancel (aio_req req);
197static void req_free (aio_req req); 262
263static void want_poll (void)
264{
265 /* write a dummy byte to the pipe so fh becomes ready */
266 s_epipe_signal (&respipe);
267}
268
269static void done_poll (void)
270{
271 /* read any signals sent by the worker threads */
272 s_epipe_drain (&respipe);
273}
198 274
199/* must be called at most once */ 275/* must be called at most once */
200static SV *req_sv (aio_req req, const char *klass) 276static SV *req_sv (aio_req req, HV *stash)
201{ 277{
202 if (!req->self) 278 if (!req->self)
203 { 279 {
204 req->self = (SV *)newHV (); 280 req->self = (SV *)newHV ();
205 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0); 281 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0);
206 } 282 }
207 283
208 return sv_2mortal (sv_bless (newRV_inc (req->self), gv_stashpv (klass, 1))); 284 return sv_2mortal (sv_bless (newRV_inc (req->self), stash));
209} 285}
210 286
211static aio_req SvAIO_REQ (SV *sv) 287static aio_req SvAIO_REQ (SV *sv)
212{ 288{
213 MAGIC *mg; 289 MAGIC *mg;
214 290
215 if (!sv_derived_from (sv, AIO_REQ_KLASS) || !SvROK (sv)) 291 if (!SvROK (sv)
292 || (SvSTASH (SvRV (sv)) != aio_grp_stash
293 && SvSTASH (SvRV (sv)) != aio_req_stash
294 && !sv_derived_from (sv, "IO::AIO::REQ")))
216 croak ("object of class " AIO_REQ_KLASS " expected"); 295 croak ("object of class IO::AIO::REQ expected");
217 296
218 mg = mg_find (SvRV (sv), PERL_MAGIC_ext); 297 mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
219 298
220 return mg ? (aio_req)mg->mg_ptr : 0; 299 return mg ? (aio_req)mg->mg_ptr : 0;
221} 300}
222 301
223static void aio_grp_feed (aio_req grp) 302static void aio_grp_feed (aio_req grp)
224{ 303{
225 while (grp->length < grp->fd2 && !(grp->flags & FLAG_CANCELLED)) 304 if (grp->sv2 && SvOK (grp->sv2))
226 { 305 {
227 int old_len = grp->length;
228
229 if (grp->fh2 && SvOK (grp->fh2))
230 {
231 dSP; 306 dSP;
232 307
233 ENTER; 308 ENTER;
234 SAVETMPS; 309 SAVETMPS;
235 PUSHMARK (SP); 310 PUSHMARK (SP);
236 XPUSHs (req_sv (grp, AIO_GRP_KLASS)); 311 XPUSHs (req_sv (grp, aio_grp_stash));
237 PUTBACK; 312 PUTBACK;
238 call_sv (grp->fh2, G_VOID | G_EVAL | G_KEEPERR); 313 call_sv (grp->sv2, G_VOID | G_EVAL | G_KEEPERR);
239 SPAGAIN; 314 SPAGAIN;
240 FREETMPS; 315 FREETMPS;
241 LEAVE; 316 LEAVE;
242 }
243
244 /* stop if no progress has been made */
245 if (old_len == grp->length)
246 {
247 SvREFCNT_dec (grp->fh2);
248 grp->fh2 = 0;
249 break;
250 }
251 } 317 }
252} 318}
253 319
254static void aio_grp_dec (aio_req grp) 320static void req_submit (eio_req *req)
255{ 321{
256 --grp->length; 322 eio_submit (req);
257 323
258 /* call feeder, if applicable */ 324 if (expect_false (on_next_submit))
259 aio_grp_feed (grp);
260
261 /* finish, if done */
262 if (!grp->length && grp->fd)
263 { 325 {
264 req_invoke (grp); 326 dSP;
265 req_free (grp); 327 SV *cb = sv_2mortal (on_next_submit);
328
329 on_next_submit = 0;
330
331 PUSHMARK (SP);
332 PUTBACK;
333 call_sv (cb, G_DISCARD | G_EVAL);
266 } 334 }
267} 335}
268 336
269static void poll_wait () 337static int req_invoke (eio_req *req)
270{ 338{
271 fd_set rfd; 339 if (req->flags & FLAG_SV2_RO_OFF)
340 SvREADONLY_off (req->sv2);
272 341
273 while (nreqs) 342 if (!EIO_CANCELLED (req) && req->callback)
274 { 343 {
275 int size;
276#if !(__i386 || __x86_64) /* safe without sempahore on this archs */
277 pthread_mutex_lock (&reslock);
278#endif
279 size = res_queue.size;
280#if !(__i386 || __x86_64) /* safe without sempahore on this archs */
281 pthread_mutex_unlock (&reslock);
282#endif
283
284 if (size)
285 return;
286
287 FD_ZERO(&rfd);
288 FD_SET(respipe [0], &rfd);
289
290 select (respipe [0] + 1, &rfd, 0, 0, 0);
291 }
292}
293
294static void req_invoke (aio_req req)
295{
296 dSP; 344 dSP;
297 345 static SV *sv_result_cache; /* caches the result integer SV */
298 if (!(req->flags & FLAG_CANCELLED) && SvOK (req->callback)) 346 SV *sv_result;
299 {
300 errno = req->errorno;
301 347
302 ENTER; 348 ENTER;
303 SAVETMPS; 349 SAVETMPS;
304 PUSHMARK (SP); 350 PUSHMARK (SP);
305 EXTEND (SP, 1); 351 EXTEND (SP, 1);
306 352
353 /* do not recreate the result IV from scratch each time */
354 if (expect_true (sv_result_cache))
355 {
356 sv_result = sv_result_cache; sv_result_cache = 0;
357 SvIV_set (sv_result, req->result);
358 }
359 else
360 {
361 sv_result = newSViv (req->result);
362 SvREADONLY_on (sv_result);
363 }
364
307 switch (req->type) 365 switch (req->type)
308 { 366 {
309 case REQ_READDIR: 367 case EIO_READDIR:
310 { 368 {
311 SV *rv = &PL_sv_undef; 369 SV *rv = &PL_sv_undef;
312 370
313 if (req->result >= 0) 371 if (req->result >= 0)
314 { 372 {
373 int i;
315 char *buf = req->data2ptr; 374 char *names = (char *)req->ptr2;
375 eio_dirent *ent = (eio_dirent *)req->ptr1; /* might be 0 */
316 AV *av = newAV (); 376 AV *av = newAV ();
317 377
318 while (req->result) 378 av_extend (av, req->result - 1);
379
380 for (i = 0; i < req->result; ++i)
319 { 381 {
382 if (req->int1 & EIO_READDIR_DENTS)
383 {
384 SV *namesv = newSVpvn (names + ent->nameofs, ent->namelen);
385
386 if (req->int1 & EIO_READDIR_CUSTOM2)
387 {
388 static SV *sv_type [EIO_DT_MAX + 1]; /* type sv cache */
389 AV *avent = newAV ();
390
391 av_extend (avent, 2);
392
393 if (!sv_type [ent->type])
394 {
395 sv_type [ent->type] = newSViv (ent->type);
396 SvREADONLY_on (sv_type [ent->type]);
397 }
398
399 av_store (avent, 0, namesv);
400 av_store (avent, 1, SvREFCNT_inc (sv_type [ent->type]));
401 av_store (avent, 2, IVSIZE >= 8 ? newSVuv (ent->inode) : newSVnv (ent->inode));
402
403 av_store (av, i, newRV_noinc ((SV *)avent));
404 }
405 else
406 av_store (av, i, namesv);
407
408 ++ent;
409 }
410 else
411 {
320 SV *sv = newSVpv (buf, 0); 412 SV *name = newSVpv (names, 0);
321
322 av_push (av, sv); 413 av_store (av, i, name);
323 buf += SvCUR (sv) + 1; 414 names += SvCUR (name) + 1;
324 req->result--; 415 }
325 } 416 }
326 417
327 rv = sv_2mortal (newRV_noinc ((SV *)av)); 418 rv = sv_2mortal (newRV_noinc ((SV *)av));
328 } 419 }
329 420
330 PUSHs (rv); 421 PUSHs (rv);
422
423 if (req->int1 & EIO_READDIR_CUSTOM1)
424 XPUSHs (sv_2mortal (newSViv (req->int1 & ~(EIO_READDIR_CUSTOM1 | EIO_READDIR_CUSTOM2))));
331 } 425 }
332 break; 426 break;
333 427
334 case REQ_OPEN: 428 case EIO_OPEN:
335 { 429 {
336 /* convert fd to fh */ 430 /* convert fd to fh */
337 SV *fh; 431 SV *fh = &PL_sv_undef;
338 432
339 PUSHs (sv_2mortal (newSViv (req->result))); 433 if (req->result >= 0)
340 PUTBACK; 434 {
341 call_pv ("IO::AIO::_fd2fh", G_SCALAR | G_EVAL); 435 GV *gv = (GV *)sv_newmortal ();
342 SPAGAIN; 436 int flags = req->int1 & (O_RDONLY | O_WRONLY | O_RDWR);
437 char sym [64];
438 int symlen;
439
440 symlen = snprintf (sym, sizeof (sym), "fd#%d", (int)req->result);
441 gv_init (gv, aio_stash, sym, symlen, 0);
343 442
344 fh = SvREFCNT_inc (POPs); 443 symlen = snprintf (
444 sym,
445 sizeof (sym),
446 "%s&=%d",
447 flags == O_RDONLY ? "<" : flags == O_WRONLY ? ">" : "+<",
448 (int)req->result
449 );
345 450
451 if (do_open (gv, sym, symlen, 0, 0, 0, 0))
452 fh = (SV *)gv;
453 }
454
346 PUSHMARK (SP); 455 PUSHs (fh);
347 XPUSHs (sv_2mortal (fh));
348 } 456 }
349 break; 457 break;
350 458
459 case EIO_STATVFS:
460 case EIO_FSTATVFS:
461 {
462 SV *rv = &PL_sv_undef;
463
464 if (req->result >= 0)
465 {
466 EIO_STRUCT_STATVFS *f = EIO_STATVFS_BUF (req);
467 HV *hv = newHV ();
468
469 rv = sv_2mortal (newRV_noinc ((SV *)hv));
470
471 hv_store (hv, "bsize" , sizeof ("bsize" ) - 1, newSVval64 (f->f_bsize ), 0);
472 hv_store (hv, "frsize" , sizeof ("frsize" ) - 1, newSVval64 (f->f_frsize ), 0);
473 hv_store (hv, "blocks" , sizeof ("blocks" ) - 1, newSVval64 (f->f_blocks ), 0);
474 hv_store (hv, "bfree" , sizeof ("bfree" ) - 1, newSVval64 (f->f_bfree ), 0);
475 hv_store (hv, "bavail" , sizeof ("bavail" ) - 1, newSVval64 (f->f_bavail ), 0);
476 hv_store (hv, "files" , sizeof ("files" ) - 1, newSVval64 (f->f_files ), 0);
477 hv_store (hv, "ffree" , sizeof ("ffree" ) - 1, newSVval64 (f->f_ffree ), 0);
478 hv_store (hv, "favail" , sizeof ("favail" ) - 1, newSVval64 (f->f_favail ), 0);
479 hv_store (hv, "fsid" , sizeof ("fsid" ) - 1, newSVval64 (f->f_fsid ), 0);
480 hv_store (hv, "flag" , sizeof ("flag" ) - 1, newSVval64 (f->f_flag ), 0);
481 hv_store (hv, "namemax", sizeof ("namemax") - 1, newSVval64 (f->f_namemax), 0);
482 }
483
484 PUSHs (rv);
485 }
486
487 break;
488
351 case REQ_GROUP: 489 case EIO_GROUP:
352 req->fd = 2; /* mark group as finished */ 490 req->int1 = 2; /* mark group as finished */
353 491
354 if (req->data) 492 if (req->sv1)
355 { 493 {
356 int i; 494 int i;
357 AV *av = (AV *)req->data; 495 AV *av = (AV *)req->sv1;
358 496
359 EXTEND (SP, AvFILL (av) + 1); 497 EXTEND (SP, AvFILL (av) + 1);
360 for (i = 0; i <= AvFILL (av); ++i) 498 for (i = 0; i <= AvFILL (av); ++i)
361 PUSHs (*av_fetch (av, i, 0)); 499 PUSHs (*av_fetch (av, i, 0));
362 } 500 }
363 break; 501 break;
364 502
365 case REQ_NOP: 503 case EIO_NOP:
366 case REQ_SLEEP: 504 case EIO_BUSY:
367 break; 505 break;
368 506
507 case EIO_READLINK:
508 if (req->result > 0)
509 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result)));
510 break;
511
512 case EIO_STAT:
513 case EIO_LSTAT:
514 case EIO_FSTAT:
515 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT;
516 PL_laststatval = req->result;
517 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2);
518 PUSHs (sv_result);
519 break;
520
521 case EIO_READ:
522 {
523 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0));
524 *SvEND (req->sv2) = 0;
525 SvPOK_only (req->sv2);
526 SvSETMAGIC (req->sv2);
527 PUSHs (sv_result);
528 }
529 break;
530
531 case EIO_DUP2: /* EIO_DUP2 actually means aio_close(), su fudge result value */
532 if (req->result > 0)
533 SvIV_set (sv_result, 0);
534 /* FALLTHROUGH */
535
369 default: 536 default:
370 PUSHs (sv_2mortal (newSViv (req->result))); 537 PUSHs (sv_result);
371 break; 538 break;
372 } 539 }
373 540
541 errno = req->errorno;
374 542
375 PUTBACK; 543 PUTBACK;
376 call_sv (req->callback, G_VOID | G_EVAL); 544 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD);
377 SPAGAIN; 545 SPAGAIN;
546
547 if (expect_false (SvREFCNT (sv_result) != 1 || sv_result_cache))
548 SvREFCNT_dec (sv_result);
549 else
550 sv_result_cache = sv_result;
378 551
379 FREETMPS; 552 FREETMPS;
380 LEAVE; 553 LEAVE;
554
555 PUTBACK;
381 } 556 }
382 557
383 if (req->grp) 558 return !!SvTRUE (ERRSV);
384 {
385 aio_req grp = req->grp;
386
387 /* unlink request */
388 if (req->grp_next) req->grp_next->grp_prev = req->grp_prev;
389 if (req->grp_prev) req->grp_prev->grp_next = req->grp_next;
390
391 if (grp->grp_first == req)
392 grp->grp_first = req->grp_next;
393
394 aio_grp_dec (grp);
395 }
396
397 if (SvTRUE (ERRSV))
398 {
399 req_free (req);
400 croak (0);
401 }
402} 559}
403 560
404static void req_free (aio_req req) 561static void req_destroy (aio_req req)
405{ 562{
406 if (req->self) 563 if (req->self)
407 { 564 {
408 sv_unmagic (req->self, PERL_MAGIC_ext); 565 sv_unmagic (req->self, PERL_MAGIC_ext);
409 SvREFCNT_dec (req->self); 566 SvREFCNT_dec (req->self);
410 } 567 }
411 568
412 SvREFCNT_dec (req->data);
413 SvREFCNT_dec (req->fh); 569 SvREFCNT_dec (req->sv1);
414 SvREFCNT_dec (req->fh2); 570 SvREFCNT_dec (req->sv2);
415 SvREFCNT_dec (req->callback); 571 SvREFCNT_dec (req->callback);
416 Safefree (req->statdata);
417
418 if (req->type == REQ_READDIR && req->result >= 0)
419 free (req->data2ptr);
420 572
421 Safefree (req); 573 Safefree (req);
422} 574}
423 575
424static void req_cancel (aio_req req) 576static void req_cancel_subs (aio_req grp)
425{ 577{
426 req->flags |= FLAG_CANCELLED; 578 aio_req sub;
427 579
428 if (req->type == REQ_GROUP) 580 if (grp->type != EIO_GROUP)
581 return;
582
583 SvREFCNT_dec (grp->sv2);
584 grp->sv2 = 0;
585
586 eio_grp_cancel (grp);
587}
588
589static void
590create_respipe (void)
591{
592 if (s_epipe_renew (&respipe))
593 croak ("IO::AIO: unable to initialize result pipe");
594}
595
596static void poll_wait (void)
597{
598 while (eio_nreqs ())
429 { 599 {
430 aio_req sub; 600 int size;
431 601
432 for (sub = req->grp_first; sub; sub = sub->grp_next) 602 X_LOCK (reslock);
433 req_cancel (sub); 603 size = res_queue.size;
604 X_UNLOCK (reslock);
605
606 if (size)
607 return;
608
609 etp_maybe_start_thread ();
610
611 s_epipe_wait (&respipe);
434 } 612 }
435} 613}
436 614
437static int poll_cb () 615static int poll_cb (void)
438{ 616{
439 dSP;
440 int count = 0;
441 int do_croak = 0;
442 aio_req req;
443
444 for (;;) 617 for (;;)
445 { 618 {
446 pthread_mutex_lock (&reslock); 619 int res = eio_poll ();
447 req = reqq_shift (&res_queue);
448 620
449 if (req) 621 if (res > 0)
450 {
451 if (!res_queue.size)
452 {
453 /* read any signals sent by the worker threads */
454 char buf [32];
455 while (read (respipe [0], buf, 32) == 32)
456 ;
457 }
458 }
459
460 pthread_mutex_unlock (&reslock);
461
462 if (!req)
463 break; 622 croak (0);
464 623
465 --nreqs; 624 if (!max_outstanding || max_outstanding > eio_nreqs ())
625 return res;
466 626
467 if (req->type == REQ_QUIT) 627 poll_wait ();
468 started--;
469 else if (req->type == REQ_GROUP && req->length)
470 {
471 req->fd = 1; /* mark request as delayed */
472 continue;
473 }
474 else
475 {
476 if (req->type == REQ_READ)
477 SvCUR_set (req->data, req->dataoffset + (req->result > 0 ? req->result : 0));
478
479 if (req->data2ptr && (req->type == REQ_READ || req->type == REQ_WRITE))
480 SvREADONLY_off (req->data);
481
482 if (req->statdata)
483 {
484 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT;
485 PL_laststatval = req->result;
486 PL_statcache = *(req->statdata);
487 }
488
489 req_invoke (req);
490
491 count++;
492 }
493
494 req_free (req);
495 } 628 }
496
497 return count;
498} 629}
499 630
500static void *aio_proc(void *arg);
501
502static void start_thread (void) 631static void atfork_child (void)
503{ 632{
504 sigset_t fullsigset, oldsigset; 633 create_respipe ();
505 pthread_t tid;
506 pthread_attr_t attr;
507
508 pthread_attr_init (&attr);
509 pthread_attr_setstacksize (&attr, STACKSIZE);
510 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
511
512 sigfillset (&fullsigset);
513 sigprocmask (SIG_SETMASK, &fullsigset, &oldsigset);
514
515 if (pthread_create (&tid, &attr, aio_proc, 0) == 0)
516 started++;
517
518 sigprocmask (SIG_SETMASK, &oldsigset, 0);
519}
520
521static void req_send (aio_req req)
522{
523 while (started < wanted && nreqs >= started)
524 start_thread ();
525
526 ++nreqs;
527
528 pthread_mutex_lock (&reqlock);
529 reqq_push (&req_queue, req);
530 pthread_cond_signal (&reqwait);
531 pthread_mutex_unlock (&reqlock);
532
533 if (nreqs > max_outstanding)
534 for (;;)
535 {
536 poll_cb ();
537
538 if (nreqs <= max_outstanding)
539 break;
540
541 poll_wait ();
542 }
543}
544
545static void end_thread (void)
546{
547 aio_req req;
548
549 Newz (0, req, 1, aio_cb);
550
551 req->type = REQ_QUIT;
552 req->pri = PRI_MAX + PRI_BIAS;
553
554 req_send (req);
555}
556
557static void min_parallel (int nthreads)
558{
559 if (wanted < nthreads)
560 wanted = nthreads;
561}
562
563static void max_parallel (int nthreads)
564{
565 int cur = started;
566
567 if (wanted > nthreads)
568 wanted = nthreads;
569
570 while (cur > wanted)
571 {
572 end_thread ();
573 cur--;
574 }
575
576 while (started > wanted)
577 {
578 poll_wait ();
579 poll_cb ();
580 }
581}
582
583static void create_pipe ()
584{
585 if (pipe (respipe))
586 croak ("unable to initialize result pipe");
587
588 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK))
589 croak ("cannot set result pipe to nonblocking mode");
590
591 if (fcntl (respipe [1], F_SETFL, O_NONBLOCK))
592 croak ("cannot set result pipe to nonblocking mode");
593} 634}
594 635
595/*****************************************************************************/ 636/*****************************************************************************/
596/* work around various missing functions */
597 637
598#if !HAVE_PREADWRITE 638#if !_POSIX_MAPPED_FILES
599# define pread aio_pread 639# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
600# define pwrite aio_pwrite 640# define munmap(addr,length) (errno = ENOSYS, -1)
601 641# define mprotect(addr,len,prot) (errno = ENOSYS, -1)
602/* 642# define PROT_NONE 0
603 * make our pread/pwrite safe against themselves, but not against 643# define PROT_WRITE 0
604 * normal read/write by using a mutex. slows down execution a lot, 644# define MAP_PRIVATE 0
605 * but that's your problem, not mine. 645# define MAP_SHARED 0
606 */ 646# define MAP_FIXED 0
607static pthread_mutex_t preadwritelock = PTHREAD_MUTEX_INITIALIZER;
608
609static ssize_t pread (int fd, void *buf, size_t count, off_t offset)
610{
611 ssize_t res;
612 off_t ooffset;
613
614 pthread_mutex_lock (&preadwritelock);
615 ooffset = lseek (fd, 0, SEEK_CUR);
616 lseek (fd, offset, SEEK_SET);
617 res = read (fd, buf, count);
618 lseek (fd, ooffset, SEEK_SET);
619 pthread_mutex_unlock (&preadwritelock);
620
621 return res;
622}
623
624static ssize_t pwrite (int fd, void *buf, size_t count, off_t offset)
625{
626 ssize_t res;
627 off_t ooffset;
628
629 pthread_mutex_lock (&preadwritelock);
630 ooffset = lseek (fd, 0, SEEK_CUR);
631 lseek (fd, offset, SEEK_SET);
632 res = write (fd, buf, count);
633 lseek (fd, offset, SEEK_SET);
634 pthread_mutex_unlock (&preadwritelock);
635
636 return res;
637}
638#endif
639
640#if !HAVE_FDATASYNC
641# define fdatasync fsync
642#endif
643
644#if !HAVE_READAHEAD
645# define readahead aio_readahead
646
647static ssize_t readahead (int fd, off_t offset, size_t count)
648{
649 dBUF;
650
651 while (count > 0)
652 {
653 size_t len = count < AIO_BUFSIZE ? count : AIO_BUFSIZE;
654
655 pread (fd, aio_buf, len, offset);
656 offset += len;
657 count -= len;
658 }
659
660 fBUF;
661
662 errno = 0;
663}
664#endif
665
666#if !HAVE_READDIR_R
667# define readdir_r aio_readdir_r
668
669static pthread_mutex_t readdirlock = PTHREAD_MUTEX_INITIALIZER;
670
671static int readdir_r (DIR *dirp, struct dirent *ent, struct dirent **res)
672{
673 struct dirent *e;
674 int errorno;
675
676 pthread_mutex_lock (&readdirlock);
677
678 e = readdir (dirp);
679 errorno = errno;
680
681 if (e)
682 {
683 *res = ent;
684 strcpy (ent->d_name, e->d_name);
685 }
686 else
687 *res = 0;
688
689 pthread_mutex_unlock (&readdirlock);
690
691 errno = errorno;
692 return e ? 0 : -1;
693}
694#endif
695
696/* sendfile always needs emulation */
697static ssize_t sendfile_ (int ofd, int ifd, off_t offset, size_t count)
698{
699 ssize_t res;
700
701 if (!count)
702 return 0;
703
704#if HAVE_SENDFILE
705# if __linux
706 res = sendfile (ofd, ifd, &offset, count);
707
708# elif __freebsd
709 /*
710 * Of course, the freebsd sendfile is a dire hack with no thoughts
711 * wasted on making it similar to other I/O functions.
712 */
713 {
714 off_t sbytes;
715 res = sendfile (ifd, ofd, offset, count, 0, &sbytes, 0);
716
717 if (res < 0 && sbytes)
718 /* maybe only on EAGAIN only: as usual, the manpage leaves you guessing */
719 res = sbytes;
720 }
721
722# elif __hpux
723 res = sendfile (ofd, ifd, offset, count, 0, 0);
724
725# elif __solaris
726 {
727 struct sendfilevec vec;
728 size_t sbytes;
729
730 vec.sfv_fd = ifd;
731 vec.sfv_flag = 0;
732 vec.sfv_off = offset;
733 vec.sfv_len = count;
734
735 res = sendfilev (ofd, &vec, 1, &sbytes);
736
737 if (res < 0 && sbytes)
738 res = sbytes;
739 }
740
741# endif 647#endif
742#else
743 res = -1;
744 errno = ENOSYS;
745#endif
746 648
747 if (res < 0 649#define MMAP_MAGIC PERL_MAGIC_ext
748 && (errno == ENOSYS || errno == EINVAL || errno == ENOTSOCK
749#if __solaris
750 || errno == EAFNOSUPPORT || errno == EPROTOTYPE
751#endif
752 )
753 )
754 {
755 /* emulate sendfile. this is a major pain in the ass */
756 dBUF;
757 650
758 res = 0; 651static int
759 652mmap_free (pTHX_ SV *sv, MAGIC *mg)
760 while (count)
761 {
762 ssize_t cnt;
763
764 cnt = pread (ifd, aio_buf, count > AIO_BUFSIZE ? AIO_BUFSIZE : count, offset);
765
766 if (cnt <= 0)
767 {
768 if (cnt && !res) res = -1;
769 break;
770 }
771
772 cnt = write (ofd, aio_buf, cnt);
773
774 if (cnt <= 0)
775 {
776 if (cnt && !res) res = -1;
777 break;
778 }
779
780 offset += cnt;
781 res += cnt;
782 count -= cnt;
783 }
784
785 fBUF;
786 }
787
788 return res;
789}
790
791/* read a full directory */
792static int scandir_ (const char *path, void **namesp)
793{ 653{
794 DIR *dirp; 654 int old_errno = errno;
795 union 655 munmap (mg->mg_ptr, (size_t)mg->mg_obj);
796 {
797 struct dirent d;
798 char b [offsetof (struct dirent, d_name) + NAME_MAX + 1];
799 } *u;
800 struct dirent *entp;
801 char *name, *names;
802 int memlen = 4096;
803 int memofs = 0;
804 int res = 0;
805 int errorno;
806
807 dirp = opendir (path);
808 if (!dirp)
809 return -1;
810
811 u = malloc (sizeof (*u));
812 names = malloc (memlen);
813
814 if (u && names)
815 for (;;)
816 {
817 errno = 0;
818 readdir_r (dirp, &u->d, &entp);
819
820 if (!entp)
821 break;
822
823 name = entp->d_name;
824
825 if (name [0] != '.' || (name [1] && (name [1] != '.' || name [2])))
826 {
827 int len = strlen (name) + 1;
828
829 res++;
830
831 while (memofs + len > memlen)
832 {
833 memlen *= 2;
834 names = realloc (names, memlen);
835 if (!names)
836 break;
837 }
838
839 memcpy (names + memofs, name, len);
840 memofs += len;
841 }
842 }
843
844 errorno = errno; 656 errno = old_errno;
845 free (u);
846 closedir (dirp);
847 657
848 if (errorno) 658 mg->mg_obj = 0; /* just in case */
849 {
850 free (names);
851 errno = errorno;
852 res = -1;
853 }
854 659
855 *namesp = (void *)names; 660 SvREADONLY_off (sv);
661
662 if (SvPVX (sv) != mg->mg_ptr)
663 croak ("ERROR: IO::AIO::mmap-mapped scalar changed location, detected");
664
665 SvCUR_set (sv, 0);
666 SvPVX (sv) = 0;
667 SvOK_off (sv);
668
856 return res; 669 return 0;
857} 670}
671
672static MGVTBL mmap_vtbl = {
673 0, 0, 0, 0, mmap_free
674};
858 675
859/*****************************************************************************/ 676/*****************************************************************************/
860 677
861static void *aio_proc (void *thr_arg) 678static SV *
679get_cb (SV *cb_sv)
862{ 680{
863 aio_req req; 681 SvGETMAGIC (cb_sv);
864 int type; 682 return SvOK (cb_sv) ? s_get_cv_croak (cb_sv) : 0;
865
866 do
867 {
868 pthread_mutex_lock (&reqlock);
869
870 for (;;)
871 {
872 req = reqq_shift (&req_queue);
873
874 if (req)
875 break;
876
877 pthread_cond_wait (&reqwait, &reqlock);
878 }
879
880 pthread_mutex_unlock (&reqlock);
881
882 errno = 0; /* strictly unnecessary */
883 type = req->type; /* remember type for QUIT check */
884
885 if (!(req->flags & FLAG_CANCELLED))
886 switch (type)
887 {
888 case REQ_READ: req->result = pread (req->fd, req->dataptr, req->length, req->offset); break;
889 case REQ_WRITE: req->result = pwrite (req->fd, req->dataptr, req->length, req->offset); break;
890
891 case REQ_READAHEAD: req->result = readahead (req->fd, req->offset, req->length); break;
892 case REQ_SENDFILE: req->result = sendfile_ (req->fd, req->fd2, req->offset, req->length); break;
893
894 case REQ_STAT: req->result = stat (req->dataptr, req->statdata); break;
895 case REQ_LSTAT: req->result = lstat (req->dataptr, req->statdata); break;
896 case REQ_FSTAT: req->result = fstat (req->fd , req->statdata); break;
897
898 case REQ_OPEN: req->result = open (req->dataptr, req->fd, req->mode); break;
899 case REQ_CLOSE: req->result = close (req->fd); break;
900 case REQ_UNLINK: req->result = unlink (req->dataptr); break;
901 case REQ_RMDIR: req->result = rmdir (req->dataptr); break;
902 case REQ_RENAME: req->result = rename (req->data2ptr, req->dataptr); break;
903 case REQ_LINK: req->result = link (req->data2ptr, req->dataptr); break;
904 case REQ_SYMLINK: req->result = symlink (req->data2ptr, req->dataptr); break;
905
906 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break;
907 case REQ_FSYNC: req->result = fsync (req->fd); break;
908 case REQ_READDIR: req->result = scandir_ (req->dataptr, &req->data2ptr); break;
909
910 case REQ_SLEEP:
911 {
912 struct timeval tv;
913
914 tv.tv_sec = req->fd;
915 tv.tv_usec = req->fd2;
916
917 req->result = select (0, 0, 0, 0, &tv);
918 }
919
920 case REQ_GROUP:
921 case REQ_NOP:
922 case REQ_QUIT:
923 break;
924
925 default:
926 req->result = ENOSYS;
927 break;
928 }
929
930 req->errorno = errno;
931
932 pthread_mutex_lock (&reslock);
933
934 if (!reqq_push (&res_queue, req))
935 /* write a dummy byte to the pipe so fh becomes ready */
936 write (respipe [1], &respipe, 1);
937
938 pthread_mutex_unlock (&reslock);
939 }
940 while (type != REQ_QUIT);
941
942 return 0;
943}
944
945/*****************************************************************************/
946
947static void atfork_prepare (void)
948{
949 pthread_mutex_lock (&reqlock);
950 pthread_mutex_lock (&reslock);
951#if !HAVE_PREADWRITE
952 pthread_mutex_lock (&preadwritelock);
953#endif
954#if !HAVE_READDIR_R
955 pthread_mutex_lock (&readdirlock);
956#endif
957}
958
959static void atfork_parent (void)
960{
961#if !HAVE_READDIR_R
962 pthread_mutex_unlock (&readdirlock);
963#endif
964#if !HAVE_PREADWRITE
965 pthread_mutex_unlock (&preadwritelock);
966#endif
967 pthread_mutex_unlock (&reslock);
968 pthread_mutex_unlock (&reqlock);
969}
970
971static void atfork_child (void)
972{
973 aio_req prv;
974
975 started = 0;
976
977 while (prv = reqq_shift (&req_queue))
978 req_free (prv);
979
980 while (prv = reqq_shift (&res_queue))
981 req_free (prv);
982
983 close (respipe [0]);
984 close (respipe [1]);
985 create_pipe ();
986
987 atfork_parent ();
988} 683}
989 684
990#define dREQ \ 685#define dREQ \
686 SV *cb_cv; \
991 aio_req req; \ 687 aio_req req; \
992 int req_pri = next_pri; \ 688 int req_pri = next_pri; \
993 next_pri = DEFAULT_PRI + PRI_BIAS; \ 689 next_pri = EIO_PRI_DEFAULT; \
994 \ 690 \
995 if (SvOK (callback) && !SvROK (callback)) \ 691 cb_cv = get_cb (callback); \
996 croak ("callback must be undef or of reference type"); \
997 \ 692 \
998 Newz (0, req, 1, aio_cb); \ 693 Newz (0, req, 1, eio_req); \
999 if (!req) \ 694 if (!req) \
1000 croak ("out of memory during aio_req allocation"); \ 695 croak ("out of memory during eio_req allocation"); \
1001 \ 696 \
1002 req->callback = newSVsv (callback); \ 697 req->callback = SvREFCNT_inc (cb_cv); \
1003 req->pri = req_pri 698 req->pri = req_pri
1004 699
1005#define REQ_SEND \ 700#define REQ_SEND \
701 PUTBACK; \
1006 req_send (req); \ 702 req_submit (req); \
703 SPAGAIN; \
1007 \ 704 \
1008 if (GIMME_V != G_VOID) \ 705 if (GIMME_V != G_VOID) \
1009 XPUSHs (req_sv (req, AIO_REQ_KLASS)); 706 XPUSHs (req_sv (req, aio_req_stash));
1010 707
1011MODULE = IO::AIO PACKAGE = IO::AIO 708MODULE = IO::AIO PACKAGE = IO::AIO
1012 709
1013PROTOTYPES: ENABLE 710PROTOTYPES: ENABLE
1014 711
1015BOOT: 712BOOT:
1016{ 713{
714 static const struct {
715 const char *name;
716 IV iv;
717 } *civ, const_iv[] = {
718# define const_niv(name, value) { # name, (IV) value },
719# define const_iv(name) { # name, (IV) name },
720# define const_eio(name) { # name, (IV) EIO_ ## name },
721 const_iv (EXDEV)
722 const_iv (ENOSYS)
723 const_iv (O_RDONLY)
724 const_iv (O_WRONLY)
725 const_iv (O_RDWR)
726 const_iv (O_CREAT)
727 const_iv (O_TRUNC)
728 const_iv (O_EXCL)
729 const_iv (O_APPEND)
730#ifndef _WIN32
731 const_iv (S_IFIFO)
732#endif
733 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
734 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
735 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
736 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
737 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
738 const_niv (FADV_DONTNEED , POSIX_FADV_DONTNEED)
739
740 const_niv (MADV_NORMAL , POSIX_MADV_NORMAL)
741 const_niv (MADV_SEQUENTIAL, POSIX_MADV_SEQUENTIAL)
742 const_niv (MADV_RANDOM , POSIX_MADV_RANDOM)
743 const_niv (MADV_WILLNEED , POSIX_MADV_WILLNEED)
744 const_niv (MADV_DONTNEED , POSIX_MADV_DONTNEED)
745
746 const_iv (ST_RDONLY)
747 const_iv (ST_NOSUID)
748 const_iv (ST_NODEV)
749 const_iv (ST_NOEXEC)
750 const_iv (ST_SYNCHRONOUS)
751 const_iv (ST_MANDLOCK)
752 const_iv (ST_WRITE)
753 const_iv (ST_APPEND)
754 const_iv (ST_IMMUTABLE)
755 const_iv (ST_NOATIME)
756 const_iv (ST_NODIRATIME)
757 const_iv (ST_RELATIME)
758
759 const_iv (PROT_NONE)
760 const_iv (PROT_EXEC)
761 const_iv (PROT_READ)
762 const_iv (PROT_WRITE)
763
764 /*const_iv (MAP_FIXED)*/
765 const_iv (MAP_PRIVATE)
766 const_iv (MAP_SHARED)
767 const_iv (MAP_ANONYMOUS)
768
769 /* linuxish */
770 const_iv (MAP_HUGETLB)
771 const_iv (MAP_LOCKED)
772 const_iv (MAP_NORESERVE)
773 const_iv (MAP_POPULATE)
774 const_iv (MAP_NONBLOCK)
775
776 const_eio (MCL_FUTURE)
777 const_eio (MCL_CURRENT)
778
779 const_eio (MS_ASYNC)
780 const_eio (MS_INVALIDATE)
781 const_eio (MS_SYNC)
782
783 const_eio (MT_MODIFY)
784
785 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE)
786 const_eio (SYNC_FILE_RANGE_WRITE)
787 const_eio (SYNC_FILE_RANGE_WAIT_AFTER)
788
789 const_eio (READDIR_DENTS)
790 const_eio (READDIR_DIRS_FIRST)
791 const_eio (READDIR_STAT_ORDER)
792 const_eio (READDIR_FOUND_UNKNOWN)
793
794 const_eio (DT_UNKNOWN)
795 const_eio (DT_FIFO)
796 const_eio (DT_CHR)
797 const_eio (DT_DIR)
798 const_eio (DT_BLK)
799 const_eio (DT_REG)
800 const_eio (DT_LNK)
801 const_eio (DT_SOCK)
802 const_eio (DT_WHT)
803 };
804
1017 HV *stash = gv_stashpv ("IO::AIO", 1); 805 aio_stash = gv_stashpv ("IO::AIO" , 1);
1018 newCONSTSUB (stash, "EXDEV", newSViv (EXDEV)); 806 aio_req_stash = gv_stashpv ("IO::AIO::REQ", 1);
1019 newCONSTSUB (stash, "O_RDONLY", newSViv (O_RDONLY)); 807 aio_grp_stash = gv_stashpv ("IO::AIO::GRP", 1);
1020 newCONSTSUB (stash, "O_WRONLY", newSViv (O_WRONLY));
1021 808
809 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
810 newCONSTSUB (aio_stash, (char *)civ->name, newSViv (civ->iv));
811
812 newCONSTSUB (aio_stash, "PAGESIZE", newSViv (PAGESIZE));
813
1022 create_pipe (); 814 create_respipe ();
1023 pthread_atfork (atfork_prepare, atfork_parent, atfork_child);
1024}
1025 815
816 if (eio_init (want_poll, done_poll) < 0)
817 croak ("IO::AIO: unable to initialise eio library");
818
819 /* atfork child called in fifo order, so before eio's handler */
820 X_THREAD_ATFORK (0, 0, atfork_child);
821}
822
1026void 823void
1027min_parallel (nthreads) 824max_poll_reqs (int nreqs)
1028 int nthreads
1029 PROTOTYPE: $ 825 PROTOTYPE: $
826 CODE:
827 eio_set_max_poll_reqs (nreqs);
1030 828
1031void 829void
1032max_parallel (nthreads) 830max_poll_time (double nseconds)
1033 int nthreads
1034 PROTOTYPE: $ 831 PROTOTYPE: $
1035
1036int
1037max_outstanding (nreqs)
1038 int nreqs
1039 PROTOTYPE: $
1040 CODE: 832 CODE:
1041 RETVAL = max_outstanding; 833 eio_set_max_poll_time (nseconds);
834
835void
836min_parallel (int nthreads)
837 PROTOTYPE: $
838 CODE:
839 eio_set_min_parallel (nthreads);
840
841void
842max_parallel (int nthreads)
843 PROTOTYPE: $
844 CODE:
845 eio_set_max_parallel (nthreads);
846
847void
848max_idle (int nthreads)
849 PROTOTYPE: $
850 CODE:
851 eio_set_max_idle (nthreads);
852
853void
854max_outstanding (int maxreqs)
855 PROTOTYPE: $
856 CODE:
1042 max_outstanding = nreqs; 857 max_outstanding = maxreqs;
1043 858
1044void 859void
1045aio_open (pathname,flags,mode,callback=&PL_sv_undef) 860aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef)
1046 SV * pathname
1047 int flags
1048 int mode
1049 SV * callback
1050 PROTOTYPE: $$$;$
1051 PPCODE: 861 PPCODE:
1052{ 862{
1053 dREQ; 863 dREQ;
1054 864
1055 req->type = REQ_OPEN; 865 req->type = EIO_OPEN;
1056 req->data = newSVsv (pathname); 866 req->sv1 = newSVsv (pathname);
1057 req->dataptr = SvPVbyte_nolen (req->data); 867 req->ptr1 = SvPVbyte_nolen (req->sv1);
1058 req->fd = flags; 868 req->int1 = flags;
1059 req->mode = mode; 869 req->int2 = mode;
1060 870
1061 REQ_SEND; 871 REQ_SEND;
1062} 872}
1063 873
1064void 874void
1065aio_close (fh,callback=&PL_sv_undef) 875aio_fsync (SV *fh, SV *callback=&PL_sv_undef)
1066 SV * fh
1067 SV * callback
1068 PROTOTYPE: $;$
1069 ALIAS: 876 ALIAS:
1070 aio_close = REQ_CLOSE
1071 aio_fsync = REQ_FSYNC 877 aio_fsync = EIO_FSYNC
1072 aio_fdatasync = REQ_FDATASYNC 878 aio_fdatasync = EIO_FDATASYNC
1073 PPCODE: 879 PPCODE:
1074{ 880{
881 int fd = s_fileno_croak (fh, 0);
1075 dREQ; 882 dREQ;
1076 883
1077 req->type = ix; 884 req->type = ix;
1078 req->fh = newSVsv (fh); 885 req->sv1 = newSVsv (fh);
1079 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh))); 886 req->int1 = fd;
1080 887
1081 REQ_SEND (req); 888 REQ_SEND (req);
1082} 889}
1083 890
1084void 891void
892aio_sync_file_range (SV *fh, off_t offset, size_t nbytes, UV flags, SV *callback=&PL_sv_undef)
893 PPCODE:
894{
895 int fd = s_fileno_croak (fh, 0);
896 dREQ;
897
898 req->type = EIO_SYNC_FILE_RANGE;
899 req->sv1 = newSVsv (fh);
900 req->int1 = fd;
901 req->offs = offset;
902 req->size = nbytes;
903 req->int2 = flags;
904
905 REQ_SEND (req);
906}
907
908void
909aio_close (SV *fh, SV *callback=&PL_sv_undef)
910 PPCODE:
911{
912 static int close_pipe = -1; /* dummy fd to close fds via dup2 */
913 int fd = s_fileno_croak (fh, 0);
914 dREQ;
915
916 if (close_pipe < 0)
917 {
918 int pipefd [2];
919
920 if (pipe (pipefd) < 0
921 || close (pipefd [1]) < 0
922 || fcntl (pipefd [0], F_SETFD, FD_CLOEXEC) < 0)
923 abort (); /*D*/
924
925 close_pipe = pipefd [0];
926 }
927
928 req->type = EIO_DUP2;
929 req->int1 = close_pipe;
930 req->sv2 = newSVsv (fh);
931 req->int2 = fd;
932
933 REQ_SEND (req);
934}
935
936void
1085aio_read (fh,offset,length,data,dataoffset,callback=&PL_sv_undef) 937aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef)
1086 SV * fh
1087 UV offset
1088 UV length
1089 SV * data
1090 UV dataoffset
1091 SV * callback
1092 ALIAS: 938 ALIAS:
1093 aio_read = REQ_READ 939 aio_read = EIO_READ
1094 aio_write = REQ_WRITE 940 aio_write = EIO_WRITE
1095 PROTOTYPE: $$$$$;$
1096 PPCODE: 941 PPCODE:
1097{ 942{
1098 aio_req req;
1099 STRLEN svlen; 943 STRLEN svlen;
944 int fd = s_fileno_croak (fh, ix == EIO_WRITE);
1100 char *svptr = SvPVbyte (data, svlen); 945 char *svptr = SvPVbyte (data, svlen);
1101 946 UV len = SvUV (length);
1102 SvUPGRADE (data, SVt_PV);
1103 SvPOK_on (data);
1104 947
1105 if (dataoffset < 0) 948 if (dataoffset < 0)
1106 dataoffset += svlen; 949 dataoffset += svlen;
1107 950
1108 if (dataoffset < 0 || dataoffset > svlen) 951 if (dataoffset < 0 || dataoffset > svlen)
1109 croak ("data offset outside of string"); 952 croak ("dataoffset outside of data scalar");
1110 953
1111 if (ix == REQ_WRITE) 954 if (ix == EIO_WRITE)
1112 { 955 {
1113 /* write: check length and adjust. */ 956 /* write: check length and adjust. */
1114 if (length < 0 || length + dataoffset > svlen) 957 if (!SvOK (length) || len + dataoffset > svlen)
1115 length = svlen - dataoffset; 958 len = svlen - dataoffset;
1116 } 959 }
1117 else 960 else
1118 { 961 {
1119 /* read: grow scalar as necessary */ 962 /* read: check type and grow scalar as necessary */
963 SvUPGRADE (data, SVt_PV);
1120 svptr = SvGROW (data, length + dataoffset); 964 svptr = SvGROW (data, len + dataoffset + 1);
1121 } 965 }
1122
1123 if (length < 0)
1124 croak ("length must not be negative");
1125 966
1126 { 967 {
1127 dREQ; 968 dREQ;
1128 969
1129 req->type = ix; 970 req->type = ix;
1130 req->fh = newSVsv (fh); 971 req->sv1 = newSVsv (fh);
1131 req->fd = PerlIO_fileno (ix == REQ_READ ? IoIFP (sv_2io (fh)) 972 req->int1 = fd;
1132 : IoOFP (sv_2io (fh))); 973 req->offs = SvOK (offset) ? SvVAL64 (offset) : -1;
1133 req->offset = offset; 974 req->size = len;
1134 req->length = length;
1135 req->data = SvREFCNT_inc (data); 975 req->sv2 = SvREFCNT_inc (data);
1136 req->dataptr = (char *)svptr + dataoffset; 976 req->ptr2 = (char *)svptr + dataoffset;
977 req->stroffset = dataoffset;
1137 978
1138 if (!SvREADONLY (data)) 979 if (!SvREADONLY (data))
1139 { 980 {
1140 SvREADONLY_on (data); 981 SvREADONLY_on (data);
1141 req->data2ptr = (void *)data; 982 req->flags |= FLAG_SV2_RO_OFF;
1142 } 983 }
1143 984
1144 REQ_SEND; 985 REQ_SEND;
1145 } 986 }
1146} 987}
1147 988
1148void 989void
1149aio_sendfile (out_fh,in_fh,in_offset,length,callback=&PL_sv_undef) 990aio_readlink (SV8 *path, SV *callback=&PL_sv_undef)
1150 SV * out_fh
1151 SV * in_fh
1152 UV in_offset
1153 UV length
1154 SV * callback
1155 PROTOTYPE: $$$$;$
1156 PPCODE: 991 PPCODE:
1157{ 992{
993 SV *data;
994 dREQ;
995
996 req->type = EIO_READLINK;
997 req->sv1 = newSVsv (path);
998 req->ptr1 = SvPVbyte_nolen (req->sv1);
999
1000 REQ_SEND;
1001}
1002
1003void
1004aio_sendfile (SV *out_fh, SV *in_fh, off_t in_offset, size_t length, SV *callback=&PL_sv_undef)
1005 PPCODE:
1006{
1007 int ifd = s_fileno_croak (in_fh , 0);
1008 int ofd = s_fileno_croak (out_fh, 1);
1158 dREQ; 1009 dREQ;
1159 1010
1160 req->type = REQ_SENDFILE; 1011 req->type = EIO_SENDFILE;
1161 req->fh = newSVsv (out_fh); 1012 req->sv1 = newSVsv (out_fh);
1162 req->fd = PerlIO_fileno (IoIFP (sv_2io (out_fh))); 1013 req->int1 = ofd;
1163 req->fh2 = newSVsv (in_fh); 1014 req->sv2 = newSVsv (in_fh);
1164 req->fd2 = PerlIO_fileno (IoIFP (sv_2io (in_fh))); 1015 req->int2 = ifd;
1165 req->offset = in_offset; 1016 req->offs = in_offset;
1166 req->length = length; 1017 req->size = length;
1167 1018
1168 REQ_SEND; 1019 REQ_SEND;
1169} 1020}
1170 1021
1171void 1022void
1172aio_readahead (fh,offset,length,callback=&PL_sv_undef) 1023aio_readahead (SV *fh, off_t offset, size_t length, SV *callback=&PL_sv_undef)
1173 SV * fh
1174 UV offset
1175 IV length
1176 SV * callback
1177 PROTOTYPE: $$$;$
1178 PPCODE: 1024 PPCODE:
1179{ 1025{
1026 int fd = s_fileno_croak (fh, 0);
1180 dREQ; 1027 dREQ;
1181 1028
1182 req->type = REQ_READAHEAD; 1029 req->type = EIO_READAHEAD;
1183 req->fh = newSVsv (fh); 1030 req->sv1 = newSVsv (fh);
1184 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh))); 1031 req->int1 = fd;
1185 req->offset = offset; 1032 req->offs = offset;
1186 req->length = length; 1033 req->size = length;
1187 1034
1188 REQ_SEND; 1035 REQ_SEND;
1189} 1036}
1190 1037
1191void 1038void
1192aio_stat (fh_or_path,callback=&PL_sv_undef) 1039aio_stat (SV8 *fh_or_path, SV *callback=&PL_sv_undef)
1193 SV * fh_or_path
1194 SV * callback
1195 ALIAS: 1040 ALIAS:
1196 aio_stat = REQ_STAT 1041 aio_stat = EIO_STAT
1197 aio_lstat = REQ_LSTAT 1042 aio_lstat = EIO_LSTAT
1043 aio_statvfs = EIO_STATVFS
1198 PPCODE: 1044 PPCODE:
1199{ 1045{
1200 dREQ; 1046 dREQ;
1201 1047
1202 New (0, req->statdata, 1, Stat_t); 1048 req->sv1 = newSVsv (fh_or_path);
1203 if (!req->statdata)
1204 {
1205 req_free (req);
1206 croak ("out of memory during aio_req->statdata allocation");
1207 }
1208 1049
1209 if (SvPOK (fh_or_path)) 1050 if (SvPOK (req->sv1))
1210 { 1051 {
1211 req->type = ix; 1052 req->type = ix;
1212 req->data = newSVsv (fh_or_path);
1213 req->dataptr = SvPVbyte_nolen (req->data); 1053 req->ptr1 = SvPVbyte_nolen (req->sv1);
1214 } 1054 }
1215 else 1055 else
1216 { 1056 {
1217 req->type = REQ_FSTAT; 1057 req->type = ix == EIO_STATVFS ? EIO_FSTATVFS : EIO_FSTAT;
1218 req->fh = newSVsv (fh_or_path);
1219 req->fd = PerlIO_fileno (IoIFP (sv_2io (fh_or_path))); 1058 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1220 } 1059 }
1221 1060
1222 REQ_SEND; 1061 REQ_SEND;
1223} 1062}
1224 1063
1225void 1064void
1065aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef)
1066 PPCODE:
1067{
1068 dREQ;
1069
1070 req->nv1 = SvOK (atime) ? SvNV (atime) : -1.;
1071 req->nv2 = SvOK (mtime) ? SvNV (mtime) : -1.;
1072 req->sv1 = newSVsv (fh_or_path);
1073
1074 if (SvPOK (req->sv1))
1075 {
1076 req->type = EIO_UTIME;
1077 req->ptr1 = SvPVbyte_nolen (req->sv1);
1078 }
1079 else
1080 {
1081 req->type = EIO_FUTIME;
1082 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1083 }
1084
1085 REQ_SEND;
1086}
1087
1088void
1089aio_truncate (SV8 *fh_or_path, SV *offset, SV *callback=&PL_sv_undef)
1090 PPCODE:
1091{
1092 dREQ;
1093
1094 req->sv1 = newSVsv (fh_or_path);
1095 req->offs = SvOK (offset) ? SvVAL64 (offset) : -1;
1096
1097 if (SvPOK (req->sv1))
1098 {
1099 req->type = EIO_TRUNCATE;
1100 req->ptr1 = SvPVbyte_nolen (req->sv1);
1101 }
1102 else
1103 {
1104 req->type = EIO_FTRUNCATE;
1105 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1106 }
1107
1108 REQ_SEND;
1109}
1110
1111void
1112aio_chmod (SV8 *fh_or_path, int mode, SV *callback=&PL_sv_undef)
1113 ALIAS:
1114 aio_chmod = EIO_CHMOD
1115 aio_mkdir = EIO_MKDIR
1116 PPCODE:
1117{
1118 dREQ;
1119
1120 req->int2 = mode;
1121 req->sv1 = newSVsv (fh_or_path);
1122
1123 if (SvPOK (req->sv1))
1124 {
1125 req->type = ix;
1126 req->ptr1 = SvPVbyte_nolen (req->sv1);
1127 }
1128 else
1129 {
1130 req->type = EIO_FCHMOD;
1131 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1132 }
1133
1134 REQ_SEND;
1135}
1136
1137void
1138aio_chown (SV8 *fh_or_path, SV *uid, SV *gid, SV *callback=&PL_sv_undef)
1139 PPCODE:
1140{
1141 dREQ;
1142
1143 req->int2 = SvOK (uid) ? SvIV (uid) : -1;
1144 req->int3 = SvOK (gid) ? SvIV (gid) : -1;
1145 req->sv1 = newSVsv (fh_or_path);
1146
1147 if (SvPOK (req->sv1))
1148 {
1149 req->type = EIO_CHOWN;
1150 req->ptr1 = SvPVbyte_nolen (req->sv1);
1151 }
1152 else
1153 {
1154 req->type = EIO_FCHOWN;
1155 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1156 }
1157
1158 REQ_SEND;
1159}
1160
1161void
1162aio_readdirx (SV8 *pathname, IV flags, SV *callback=&PL_sv_undef)
1163 PPCODE:
1164{
1165 dREQ;
1166
1167 req->type = EIO_READDIR;
1168 req->sv1 = newSVsv (pathname);
1169 req->ptr1 = SvPVbyte_nolen (req->sv1);
1170 req->int1 = flags | EIO_READDIR_DENTS | EIO_READDIR_CUSTOM1;
1171
1172 if (flags & EIO_READDIR_DENTS)
1173 req->int1 |= EIO_READDIR_CUSTOM2;
1174
1175 REQ_SEND;
1176}
1177
1178void
1226aio_unlink (pathname,callback=&PL_sv_undef) 1179aio_unlink (SV8 *pathname, SV *callback=&PL_sv_undef)
1227 SV * pathname
1228 SV * callback
1229 ALIAS: 1180 ALIAS:
1230 aio_unlink = REQ_UNLINK 1181 aio_unlink = EIO_UNLINK
1231 aio_rmdir = REQ_RMDIR 1182 aio_rmdir = EIO_RMDIR
1232 aio_readdir = REQ_READDIR 1183 aio_readdir = EIO_READDIR
1233 PPCODE: 1184 PPCODE:
1234{ 1185{
1235 dREQ; 1186 dREQ;
1236 1187
1237 req->type = ix; 1188 req->type = ix;
1238 req->data = newSVsv (pathname); 1189 req->sv1 = newSVsv (pathname);
1239 req->dataptr = SvPVbyte_nolen (req->data); 1190 req->ptr1 = SvPVbyte_nolen (req->sv1);
1240 1191
1241 REQ_SEND; 1192 REQ_SEND;
1242} 1193}
1243 1194
1244void 1195void
1245aio_link (oldpath,newpath,callback=&PL_sv_undef) 1196aio_link (SV8 *oldpath, SV8 *newpath, SV *callback=&PL_sv_undef)
1246 SV * oldpath
1247 SV * newpath
1248 SV * callback
1249 ALIAS: 1197 ALIAS:
1250 aio_link = REQ_LINK 1198 aio_link = EIO_LINK
1251 aio_symlink = REQ_SYMLINK 1199 aio_symlink = EIO_SYMLINK
1252 aio_rename = REQ_RENAME 1200 aio_rename = EIO_RENAME
1253 PPCODE: 1201 PPCODE:
1254{ 1202{
1255 dREQ; 1203 dREQ;
1256 1204
1257 req->type = ix; 1205 req->type = ix;
1258 req->fh = newSVsv (oldpath); 1206 req->sv1 = newSVsv (oldpath);
1259 req->data2ptr = SvPVbyte_nolen (req->fh); 1207 req->ptr1 = SvPVbyte_nolen (req->sv1);
1260 req->data = newSVsv (newpath); 1208 req->sv2 = newSVsv (newpath);
1261 req->dataptr = SvPVbyte_nolen (req->data); 1209 req->ptr2 = SvPVbyte_nolen (req->sv2);
1262 1210
1263 REQ_SEND; 1211 REQ_SEND;
1264} 1212}
1265 1213
1266void 1214void
1267aio_sleep (delay,callback=&PL_sv_undef) 1215aio_mknod (SV8 *pathname, int mode, UV dev, SV *callback=&PL_sv_undef)
1268 double delay
1269 SV * callback
1270 PPCODE: 1216 PPCODE:
1271{ 1217{
1272 dREQ; 1218 dREQ;
1273 1219
1274 req->type = REQ_SLEEP; 1220 req->type = EIO_MKNOD;
1275 req->fd = delay < 0. ? 0 : delay; 1221 req->sv1 = newSVsv (pathname);
1276 req->fd2 = delay < 0. ? 0 : 1000. * (delay - req->fd); 1222 req->ptr1 = SvPVbyte_nolen (req->sv1);
1277 1223 req->int2 = (mode_t)mode;
1224 req->offs = dev;
1225
1278 REQ_SEND; 1226 REQ_SEND;
1279} 1227}
1280 1228
1281void 1229void
1282aio_group (callback=&PL_sv_undef) 1230aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef)
1283 SV * callback 1231 ALIAS:
1284 PROTOTYPE: ;$ 1232 aio_mtouch = EIO_MTOUCH
1233 aio_msync = EIO_MSYNC
1285 PPCODE: 1234 PPCODE:
1286{ 1235{
1236 STRLEN svlen;
1237 char *svptr = SvPVbyte (data, svlen);
1238 UV len = SvUV (length);
1239
1240 if (offset < 0)
1241 offset += svlen;
1242
1243 if (offset < 0 || offset > svlen)
1244 croak ("offset outside of scalar");
1245
1246 if (!SvOK (length) || len + offset > svlen)
1247 len = svlen - offset;
1248
1249 {
1250 dREQ;
1251
1252 req->type = ix;
1253 req->sv2 = SvREFCNT_inc (data);
1254 req->ptr2 = (char *)svptr + offset;
1255 req->size = len;
1256 req->int1 = flags;
1257
1258 REQ_SEND;
1259 }
1260}
1261
1262void
1263aio_mlock (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, SV *callback=&PL_sv_undef)
1264 PPCODE:
1265{
1266 STRLEN svlen;
1267 char *svptr = SvPVbyte (data, svlen);
1268 UV len = SvUV (length);
1269
1270 if (offset < 0)
1271 offset += svlen;
1272
1273 if (offset < 0 || offset > svlen)
1274 croak ("offset outside of scalar");
1275
1276 if (!SvOK (length) || len + offset > svlen)
1277 len = svlen - offset;
1278
1279 {
1280 dREQ;
1281
1282 req->type = EIO_MLOCK;
1283 req->sv2 = SvREFCNT_inc (data);
1284 req->ptr2 = (char *)svptr + offset;
1285 req->size = len;
1286
1287 REQ_SEND;
1288 }
1289}
1290
1291void
1292aio_mlockall (IV flags, SV *callback=&PL_sv_undef)
1293 PPCODE:
1294{
1295 dREQ;
1296
1297 req->type = EIO_MLOCKALL;
1298 req->int1 = flags;
1299
1300 REQ_SEND;
1301}
1302
1303void
1304aio_busy (double delay, SV *callback=&PL_sv_undef)
1305 PPCODE:
1306{
1287 dREQ; 1307 dREQ;
1288 1308
1309 req->type = EIO_BUSY;
1310 req->nv1 = delay < 0. ? 0. : delay;
1311
1312 REQ_SEND;
1313}
1314
1315void
1316aio_group (SV *callback=&PL_sv_undef)
1317 PPCODE:
1318{
1319 dREQ;
1320
1289 req->type = REQ_GROUP; 1321 req->type = EIO_GROUP;
1322
1290 req_send (req); 1323 req_submit (req);
1291
1292 XPUSHs (req_sv (req, AIO_GRP_KLASS)); 1324 XPUSHs (req_sv (req, aio_grp_stash));
1293} 1325}
1294 1326
1295void 1327void
1296aio_nop (callback=&PL_sv_undef) 1328aio_nop (SV *callback=&PL_sv_undef)
1297 SV * callback 1329 ALIAS:
1330 aio_nop = EIO_NOP
1331 aio_sync = EIO_SYNC
1298 PPCODE: 1332 PPCODE:
1299{ 1333{
1300 dREQ; 1334 dREQ;
1301 1335
1302 req->type = REQ_NOP; 1336 req->type = ix;
1303 1337
1304 REQ_SEND; 1338 REQ_SEND;
1305} 1339}
1306 1340
1307void 1341int
1308aioreq_pri (int pri = DEFAULT_PRI) 1342aioreq_pri (int pri = 0)
1309 CODE: 1343 CODE:
1344 RETVAL = next_pri;
1345 if (items > 0)
1346 {
1310 if (pri < PRI_MIN) pri = PRI_MIN; 1347 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN;
1311 if (pri > PRI_MAX) pri = PRI_MAX; 1348 if (pri > EIO_PRI_MAX) pri = EIO_PRI_MAX;
1312 next_pri = pri + PRI_BIAS; 1349 next_pri = pri;
1350 }
1351 OUTPUT:
1352 RETVAL
1353
1354void
1355aioreq_nice (int nice = 0)
1356 CODE:
1357 nice = next_pri - nice;
1358 if (nice < EIO_PRI_MIN) nice = EIO_PRI_MIN;
1359 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX;
1360 next_pri = nice;
1313 1361
1314void 1362void
1315flush () 1363flush ()
1316 PROTOTYPE:
1317 CODE: 1364 CODE:
1318 while (nreqs) 1365 while (eio_nreqs ())
1319 { 1366 {
1320 poll_wait (); 1367 poll_wait ();
1321 poll_cb (); 1368 poll_cb ();
1322 } 1369 }
1323 1370
1324void 1371int
1325poll() 1372poll ()
1326 PROTOTYPE:
1327 CODE: 1373 CODE:
1328 if (nreqs)
1329 {
1330 poll_wait (); 1374 poll_wait ();
1331 poll_cb (); 1375 RETVAL = poll_cb ();
1332 }
1333
1334int
1335poll_fileno()
1336 PROTOTYPE:
1337 CODE:
1338 RETVAL = respipe [0];
1339 OUTPUT: 1376 OUTPUT:
1340 RETVAL 1377 RETVAL
1341 1378
1342int 1379int
1380poll_fileno ()
1381 CODE:
1382 RETVAL = s_epipe_fd (&respipe);
1383 OUTPUT:
1384 RETVAL
1385
1386int
1343poll_cb(...) 1387poll_cb (...)
1344 PROTOTYPE: 1388 PROTOTYPE:
1345 CODE: 1389 CODE:
1346 RETVAL = poll_cb (); 1390 RETVAL = poll_cb ();
1347 OUTPUT: 1391 OUTPUT:
1348 RETVAL 1392 RETVAL
1349 1393
1350void 1394void
1351poll_wait() 1395poll_wait ()
1352 PROTOTYPE:
1353 CODE: 1396 CODE:
1354 if (nreqs)
1355 poll_wait (); 1397 poll_wait ();
1356 1398
1357int 1399int
1358nreqs() 1400nreqs ()
1359 PROTOTYPE:
1360 CODE: 1401 CODE:
1361 RETVAL = nreqs; 1402 RETVAL = eio_nreqs ();
1362 OUTPUT: 1403 OUTPUT:
1363 RETVAL 1404 RETVAL
1364 1405
1406int
1407nready ()
1408 CODE:
1409 RETVAL = eio_nready ();
1410 OUTPUT:
1411 RETVAL
1412
1413int
1414npending ()
1415 CODE:
1416 RETVAL = eio_npending ();
1417 OUTPUT:
1418 RETVAL
1419
1420int
1421nthreads ()
1422 CODE:
1423 RETVAL = eio_nthreads ();
1424 OUTPUT:
1425 RETVAL
1426
1427int
1428fadvise (aio_rfd fh, off_t offset, off_t length, IV advice)
1429 CODE:
1430 RETVAL = posix_fadvise (fh, offset, length, advice);
1431 OUTPUT:
1432 RETVAL
1433
1434ssize_t
1435sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count)
1436 CODE:
1437 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count);
1438 OUTPUT:
1439 RETVAL
1440
1441void
1442mmap (SV *scalar, size_t length, int prot, int flags, SV *fh, off_t offset = 0)
1443 PPCODE:
1444 sv_unmagic (scalar, MMAP_MAGIC);
1445{
1446 int fd = SvOK (fh) ? s_fileno_croak (fh, flags & PROT_WRITE) : -1;
1447 void *addr = (void *)mmap (0, length, prot, flags, fd, offset);
1448 if (addr == (void *)-1)
1449 XSRETURN_NO;
1450
1451 sv_force_normal (scalar);
1452
1453 /* we store the length in mg_obj, as namlen is I32 :/ */
1454 sv_magicext (scalar, 0, MMAP_MAGIC, &mmap_vtbl, (char *)addr, 0)
1455 ->mg_obj = (SV *)length;
1456
1457 SvUPGRADE (scalar, SVt_PV); /* nop... */
1458
1459 if (!(prot & PROT_WRITE))
1460 SvREADONLY_on (scalar);
1461
1462 if (SvLEN (scalar))
1463 Safefree (SvPVX (scalar));
1464
1465 SvPVX (scalar) = (char *)addr;
1466 SvCUR_set (scalar, length);
1467 SvLEN_set (scalar, 0);
1468 SvPOK_only (scalar);
1469
1470 XSRETURN_YES;
1471}
1472
1473void
1474munmap (SV *scalar)
1475 CODE:
1476 sv_unmagic (scalar, MMAP_MAGIC);
1477
1478int
1479madvise (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef, IV advice_or_prot)
1480 ALIAS:
1481 mprotect = 1
1482 CODE:
1483{
1484 STRLEN svlen;
1485 void *addr = SvPVbyte (scalar, svlen);
1486 size_t len = SvUV (length);
1487
1488 if (offset < 0)
1489 offset += svlen;
1490
1491 if (offset < 0 || offset > svlen)
1492 croak ("offset outside of scalar");
1493
1494 if (!SvOK (length) || len + offset > svlen)
1495 len = svlen - offset;
1496
1497 addr = (void *)(((intptr_t)addr) + offset);
1498 eio_page_align (&addr, &len);
1499
1500 switch (ix)
1501 {
1502 case 0: RETVAL = posix_madvise (addr, len, advice_or_prot); break;
1503 case 1: RETVAL = mprotect (addr, len, advice_or_prot); break;
1504 }
1505}
1506 OUTPUT:
1507 RETVAL
1508
1509int
1510munlock (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef)
1511 CODE:
1512{
1513 STRLEN svlen;
1514 void *addr = SvPVbyte (scalar, svlen);
1515 size_t len = SvUV (length);
1516
1517 if (offset < 0)
1518 offset += svlen;
1519
1520 if (offset < 0 || offset > svlen)
1521 croak ("offset outside of scalar");
1522
1523 if (!SvOK (length) || len + offset > svlen)
1524 len = svlen - offset;
1525
1526 addr = (void *)(((intptr_t)addr) + offset);
1527 eio_page_align (&addr, &len);
1528#if _POSIX_MEMLOCK
1529 RETVAL = munlock (addr, len);
1530#else
1531 RETVAL = ((errno = ENOSYS), -1);
1532#endif
1533}
1534 OUTPUT:
1535 RETVAL
1536
1537int
1538munlockall ()
1539 CODE:
1540#if _POSIX_MEMLOCK
1541 munlockall ();
1542#else
1543 RETVAL = -1;
1544 errno = ENOSYS;
1545#endif
1546 OUTPUT:
1547 RETVAL
1548
1549void _on_next_submit (SV *cb)
1550 CODE:
1551 SvREFCNT_dec (on_next_submit);
1552 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0;
1553
1365PROTOTYPES: DISABLE 1554PROTOTYPES: DISABLE
1366 1555
1367MODULE = IO::AIO PACKAGE = IO::AIO::REQ 1556MODULE = IO::AIO PACKAGE = IO::AIO::REQ
1368 1557
1369void 1558void
1370cancel (aio_req_ornot req) 1559cancel (aio_req_ornot req)
1371 CODE: 1560 CODE:
1372 req_cancel (req); 1561 eio_cancel (req);
1373 1562
1374void 1563void
1375cb (aio_req_ornot req, SV *callback=&PL_sv_undef) 1564cb (aio_req_ornot req, SV *callback=&PL_sv_undef)
1376 CODE: 1565 PPCODE:
1566{
1567 if (GIMME_V != G_VOID)
1568 XPUSHs (req->callback ? sv_2mortal (newRV_inc (req->callback)) : &PL_sv_undef);
1569
1570 if (items > 1)
1571 {
1572 SV *cb_cv =get_cb (callback);
1573
1377 SvREFCNT_dec (req->callback); 1574 SvREFCNT_dec (req->callback);
1378 req->callback = newSVsv (callback); 1575 req->callback = SvREFCNT_inc (cb_cv);
1576 }
1577}
1379 1578
1380MODULE = IO::AIO PACKAGE = IO::AIO::GRP 1579MODULE = IO::AIO PACKAGE = IO::AIO::GRP
1381 1580
1382void 1581void
1383add (aio_req grp, ...) 1582add (aio_req grp, ...)
1384 PPCODE: 1583 PPCODE:
1385{ 1584{
1386 int i; 1585 int i;
1387 aio_req req;
1388 1586
1389 if (grp->fd == 2) 1587 if (grp->int1 == 2)
1390 croak ("cannot add requests to IO::AIO::GRP after the group finished"); 1588 croak ("cannot add requests to IO::AIO::GRP after the group finished");
1391 1589
1392 for (i = 1; i < items; ++i ) 1590 for (i = 1; i < items; ++i )
1393 { 1591 {
1592 aio_req req;
1593
1394 if (GIMME_V != G_VOID) 1594 if (GIMME_V != G_VOID)
1395 XPUSHs (sv_2mortal (newSVsv (ST (i)))); 1595 XPUSHs (sv_2mortal (newSVsv (ST (i))));
1396 1596
1397 req = SvAIO_REQ (ST (i)); 1597 req = SvAIO_REQ (ST (i));
1398 1598
1399 if (req) 1599 if (req)
1400 { 1600 eio_grp_add (grp, req);
1401 ++grp->length;
1402 req->grp = grp;
1403
1404 req->grp_prev = 0;
1405 req->grp_next = grp->grp_first;
1406
1407 if (grp->grp_first)
1408 grp->grp_first->grp_prev = req;
1409
1410 grp->grp_first = req;
1411 }
1412 } 1601 }
1413} 1602}
1603
1604void
1605cancel_subs (aio_req_ornot req)
1606 CODE:
1607 req_cancel_subs (req);
1414 1608
1415void 1609void
1416result (aio_req grp, ...) 1610result (aio_req grp, ...)
1417 CODE: 1611 CODE:
1418{ 1612{
1419 int i; 1613 int i;
1614 AV *av;
1615
1616 grp->errorno = errno;
1617
1420 AV *av = newAV (); 1618 av = newAV ();
1619 av_extend (av, items - 1);
1421 1620
1422 for (i = 1; i < items; ++i ) 1621 for (i = 1; i < items; ++i )
1423 av_push (av, newSVsv (ST (i))); 1622 av_push (av, newSVsv (ST (i)));
1424 1623
1425 SvREFCNT_dec (grp->data); 1624 SvREFCNT_dec (grp->sv1);
1426 grp->data = (SV *)av; 1625 grp->sv1 = (SV *)av;
1427} 1626}
1627
1628void
1629errno (aio_req grp, int errorno = errno)
1630 CODE:
1631 grp->errorno = errorno;
1428 1632
1429void 1633void
1430limit (aio_req grp, int limit) 1634limit (aio_req grp, int limit)
1431 CODE: 1635 CODE:
1432 grp->fd2 = limit; 1636 eio_grp_limit (grp, limit);
1433 aio_grp_feed (grp);
1434 1637
1435void 1638void
1436feed (aio_req grp, SV *callback=&PL_sv_undef) 1639feed (aio_req grp, SV *callback=&PL_sv_undef)
1437 CODE: 1640 CODE:
1438{ 1641{
1439 SvREFCNT_dec (grp->fh2); 1642 SvREFCNT_dec (grp->sv2);
1440 grp->fh2 = newSVsv (callback); 1643 grp->sv2 = newSVsv (callback);
1644 grp->feed = aio_grp_feed;
1441 1645
1442 if (grp->fd2 <= 0) 1646 if (grp->int2 <= 0)
1443 grp->fd2 = 2; 1647 grp->int2 = 2;
1444 1648
1445 aio_grp_feed (grp); 1649 eio_grp_limit (grp, grp->int2);
1446} 1650}
1447 1651

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines