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.155 by root, Fri Jul 17 00:56:54 2009 UTC vs.
Revision 1.167 by root, Sun May 9 20:49:52 2010 UTC

11#include <stddef.h> 11#include <stddef.h>
12#include <stdlib.h> 12#include <stdlib.h>
13#include <errno.h> 13#include <errno.h>
14#include <sys/types.h> 14#include <sys/types.h>
15#include <sys/stat.h> 15#include <sys/stat.h>
16#include <sys/statvfs.h>
16#include <limits.h> 17#include <limits.h>
17#include <fcntl.h> 18#include <fcntl.h>
18#include <sched.h> 19#include <sched.h>
20
21#if _POSIX_MEMLOCK || _POSIX_MAPPED_FILES
22# include <sys/mman.h>
23#endif
19 24
20/* perl namespace pollution */ 25/* perl namespace pollution */
21#undef VERSION 26#undef VERSION
22 27
23#ifdef _WIN32 28#ifdef _WIN32
99#define expect_false(expr) expect ((expr) != 0, 0) 104#define expect_false(expr) expect ((expr) != 0, 0)
100#define expect_true(expr) expect ((expr) != 0, 1) 105#define expect_true(expr) expect ((expr) != 0, 1)
101 106
102/*****************************************************************************/ 107/*****************************************************************************/
103 108
104static HV *stash;
105typedef SV SV8; /* byte-sv, used for argument-checking */ 109typedef SV SV8; /* byte-sv, used for argument-checking */
106typedef int aio_rfd; /* read file desriptor */ 110typedef int aio_rfd; /* read file desriptor */
107typedef int aio_wfd; /* write file descriptor */ 111typedef int aio_wfd; /* write file descriptor */
108 112
109#define AIO_REQ_KLASS "IO::AIO::REQ" 113static HV *aio_stash, *aio_req_stash, *aio_grp_stash;
110#define AIO_GRP_KLASS "IO::AIO::GRP"
111 114
112#define EIO_REQ_MEMBERS \ 115#define EIO_REQ_MEMBERS \
113 SV *callback; \ 116 SV *callback; \
114 SV *sv1, *sv2; \ 117 SV *sv1, *sv2; \
115 STRLEN stroffset; \ 118 STRLEN stroffset; \
121 124
122#ifndef POSIX_FADV_NORMAL 125#ifndef POSIX_FADV_NORMAL
123# define POSIX_FADV_NORMAL 0 126# define POSIX_FADV_NORMAL 0
124# define NO_FADVISE 1 127# define NO_FADVISE 1
125#endif 128#endif
126
127#ifndef POSIX_FADV_SEQUENTIAL 129#ifndef POSIX_FADV_SEQUENTIAL
128# define POSIX_FADV_SEQUENTIAL 0 130# define POSIX_FADV_SEQUENTIAL 0
129#endif 131#endif
130
131#ifndef POSIX_FADV_RANDOM 132#ifndef POSIX_FADV_RANDOM
132# define POSIX_FADV_RANDOM 0 133# define POSIX_FADV_RANDOM 0
133#endif 134#endif
134
135#ifndef POSIX_FADV_NOREUSE 135#ifndef POSIX_FADV_NOREUSE
136# define POSIX_FADV_NOREUSE 0 136# define POSIX_FADV_NOREUSE 0
137#endif 137#endif
138
139#ifndef POSIX_FADV_WILLNEED 138#ifndef POSIX_FADV_WILLNEED
140# define POSIX_FADV_WILLNEED 0 139# define POSIX_FADV_WILLNEED 0
141#endif 140#endif
142
143#ifndef POSIX_FADV_DONTNEED 141#ifndef POSIX_FADV_DONTNEED
144# define POSIX_FADV_DONTNEED 0 142# define POSIX_FADV_DONTNEED 0
143#endif
144
145#ifndef ST_NODEV
146# define ST_NODEV 0
147#endif
148#ifndef ST_NOEXEC
149# define ST_NOEXEC 0
150#endif
151#ifndef ST_SYNCHRONOUS
152# define ST_SYNCHRONOUS 0
153#endif
154#ifndef ST_MANDLOCK
155# define ST_MANDLOCK 0
156#endif
157#ifndef ST_WRITE
158# define ST_WRITE 0
159#endif
160#ifndef ST_APPEND
161# define ST_APPEND 0
162#endif
163#ifndef ST_IMMUTABLE
164# define ST_IMMUTABLE 0
165#endif
166#ifndef ST_NOATIME
167# define ST_NOATIME 0
168#endif
169#ifndef ST_NODIRATIME
170# define ST_NODIRATIME 0
171#endif
172#ifndef ST_RELATIME
173# define ST_RELATIME 0
174#endif
175
176#ifndef MCL_CURRENT
177# define MCL_CURRENT 0
178#endif
179#ifndef MCL_FUTURE
180# define MCL_FUTURE 0
181#endif
182
183#ifndef MAP_ANONYMOUS
184# ifdef MAP_ANON
185# define MAP_ANONYMOUS MAP_ANON
186# else
187# define MAP_ANONYMOUS MAP_FIXED /* and hope this fails */
188# endif
189#endif
190#ifndef MAP_HUGETLB
191# define MAP_HUGETLB 0
192#endif
193#ifndef MAP_LOCKED
194# define MAP_LOCKED 0
195#endif
196#ifndef MAP_NORESERVE
197# define MAP_NORESERVE 0
198#endif
199#ifndef MAP_POPULATE
200# define MAP_POPULATE 0
201#endif
202#ifndef MAP_NONBLOCK
203# define MAP_NONBLOCK 0
204#endif
205
206#ifndef PAGESIZE
207# define PAGESIZE sysconf (_SC_PAGESIZE)
145#endif 208#endif
146 209
147static int req_invoke (eio_req *req); 210static int req_invoke (eio_req *req);
148#define EIO_FINISH(req) req_invoke (req) 211#define EIO_FINISH(req) req_invoke (req)
149static void req_destroy (eio_req *grp); 212static void req_destroy (eio_req *grp);
178 /* read any signals sent by the worker threads */ 241 /* read any signals sent by the worker threads */
179 s_epipe_drain (&respipe); 242 s_epipe_drain (&respipe);
180} 243}
181 244
182/* must be called at most once */ 245/* must be called at most once */
183static SV *req_sv (aio_req req, const char *klass) 246static SV *req_sv (aio_req req, HV *stash)
184{ 247{
185 if (!req->self) 248 if (!req->self)
186 { 249 {
187 req->self = (SV *)newHV (); 250 req->self = (SV *)newHV ();
188 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0); 251 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0);
189 } 252 }
190 253
191 return sv_2mortal (sv_bless (newRV_inc (req->self), gv_stashpv (klass, 1))); 254 return sv_2mortal (sv_bless (newRV_inc (req->self), stash));
192} 255}
193 256
194static aio_req SvAIO_REQ (SV *sv) 257static aio_req SvAIO_REQ (SV *sv)
195{ 258{
196 MAGIC *mg; 259 MAGIC *mg;
197 260
198 if (!sv_derived_from (sv, AIO_REQ_KLASS) || !SvROK (sv)) 261 if (!SvROK (sv)
262 || (SvSTASH (SvRV (sv)) != aio_grp_stash
263 && SvSTASH (SvRV (sv)) != aio_req_stash
264 && !sv_derived_from (sv, "IO::AIO::REQ")))
199 croak ("object of class " AIO_REQ_KLASS " expected"); 265 croak ("object of class IO::AIO::REQ expected");
200 266
201 mg = mg_find (SvRV (sv), PERL_MAGIC_ext); 267 mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
202 268
203 return mg ? (aio_req)mg->mg_ptr : 0; 269 return mg ? (aio_req)mg->mg_ptr : 0;
204} 270}
210 dSP; 276 dSP;
211 277
212 ENTER; 278 ENTER;
213 SAVETMPS; 279 SAVETMPS;
214 PUSHMARK (SP); 280 PUSHMARK (SP);
215 XPUSHs (req_sv (grp, AIO_GRP_KLASS)); 281 XPUSHs (req_sv (grp, aio_grp_stash));
216 PUTBACK; 282 PUTBACK;
217 call_sv (grp->sv2, G_VOID | G_EVAL | G_KEEPERR); 283 call_sv (grp->sv2, G_VOID | G_EVAL | G_KEEPERR);
218 SPAGAIN; 284 SPAGAIN;
219 FREETMPS; 285 FREETMPS;
220 LEAVE; 286 LEAVE;
238 } 304 }
239} 305}
240 306
241static int req_invoke (eio_req *req) 307static int req_invoke (eio_req *req)
242{ 308{
243 dSP;
244
245 if (req->flags & FLAG_SV2_RO_OFF) 309 if (req->flags & FLAG_SV2_RO_OFF)
246 SvREADONLY_off (req->sv2); 310 SvREADONLY_off (req->sv2);
247 311
248 if (!EIO_CANCELLED (req) && req->callback) 312 if (!EIO_CANCELLED (req) && req->callback)
249 { 313 {
314 dSP;
315 static SV *sv_result_cache; /* caches the result integer SV */
316 SV *sv_result;
317
250 ENTER; 318 ENTER;
251 SAVETMPS; 319 SAVETMPS;
252 PUSHMARK (SP); 320 PUSHMARK (SP);
253 EXTEND (SP, 1); 321 EXTEND (SP, 1);
322
323 /* do not recreate the result IV from scratch each time */
324 if (expect_true (sv_result_cache))
325 {
326 sv_result = sv_result_cache; sv_result_cache = 0;
327 SvIV_set (sv_result, req->result);
328 }
329 else
330 {
331 sv_result = newSViv (req->result);
332 SvREADONLY_on (sv_result);
333 }
254 334
255 switch (req->type) 335 switch (req->type)
256 { 336 {
257 case EIO_READDIR: 337 case EIO_READDIR:
258 { 338 {
326 int flags = req->int1 & (O_RDONLY | O_WRONLY | O_RDWR); 406 int flags = req->int1 & (O_RDONLY | O_WRONLY | O_RDWR);
327 char sym [64]; 407 char sym [64];
328 int symlen; 408 int symlen;
329 409
330 symlen = snprintf (sym, sizeof (sym), "fd#%d", (int)req->result); 410 symlen = snprintf (sym, sizeof (sym), "fd#%d", (int)req->result);
331 gv_init (gv, stash, sym, symlen, 0); 411 gv_init (gv, aio_stash, sym, symlen, 0);
332 412
333 symlen = snprintf ( 413 symlen = snprintf (
334 sym, 414 sym,
335 sizeof (sym), 415 sizeof (sym),
336 "%s&=%d", 416 "%s&=%d",
344 424
345 PUSHs (fh); 425 PUSHs (fh);
346 } 426 }
347 break; 427 break;
348 428
429 case EIO_STATVFS:
430 case EIO_FSTATVFS:
431 {
432 SV *rv = &PL_sv_undef;
433
434 if (req->result >= 0)
435 {
436 EIO_STRUCT_STATVFS *f = EIO_STATVFS_BUF (req);
437 HV *hv = newHV ();
438
439 rv = sv_2mortal (newRV_noinc ((SV *)hv));
440
441 hv_store (hv, "bsize" , sizeof ("bsize" ) - 1, newSVval64 (f->f_bsize ), 0);
442 hv_store (hv, "frsize" , sizeof ("frsize" ) - 1, newSVval64 (f->f_frsize ), 0);
443 hv_store (hv, "blocks" , sizeof ("blocks" ) - 1, newSVval64 (f->f_blocks ), 0);
444 hv_store (hv, "bfree" , sizeof ("bfree" ) - 1, newSVval64 (f->f_bfree ), 0);
445 hv_store (hv, "bavail" , sizeof ("bavail" ) - 1, newSVval64 (f->f_bavail ), 0);
446 hv_store (hv, "files" , sizeof ("files" ) - 1, newSVval64 (f->f_files ), 0);
447 hv_store (hv, "ffree" , sizeof ("ffree" ) - 1, newSVval64 (f->f_ffree ), 0);
448 hv_store (hv, "favail" , sizeof ("favail" ) - 1, newSVval64 (f->f_favail ), 0);
449 hv_store (hv, "fsid" , sizeof ("fsid" ) - 1, newSVval64 (f->f_fsid ), 0);
450 hv_store (hv, "flag" , sizeof ("flag" ) - 1, newSVval64 (f->f_flag ), 0);
451 hv_store (hv, "namemax", sizeof ("namemax") - 1, newSVval64 (f->f_namemax), 0);
452 }
453
454 PUSHs (rv);
455 }
456
457 break;
458
349 case EIO_GROUP: 459 case EIO_GROUP:
350 req->int1 = 2; /* mark group as finished */ 460 req->int1 = 2; /* mark group as finished */
351 461
352 if (req->sv1) 462 if (req->sv1)
353 { 463 {
373 case EIO_LSTAT: 483 case EIO_LSTAT:
374 case EIO_FSTAT: 484 case EIO_FSTAT:
375 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT; 485 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT;
376 PL_laststatval = req->result; 486 PL_laststatval = req->result;
377 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2); 487 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2);
378 PUSHs (sv_2mortal (newSViv (req->result))); 488 PUSHs (sv_result);
379 break; 489 break;
380 490
381 case EIO_READ: 491 case EIO_READ:
382 { 492 {
383 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0)); 493 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0));
384 *SvEND (req->sv2) = 0; 494 *SvEND (req->sv2) = 0;
385 SvPOK_only (req->sv2); 495 SvPOK_only (req->sv2);
386 SvSETMAGIC (req->sv2); 496 SvSETMAGIC (req->sv2);
387 PUSHs (sv_2mortal (newSViv (req->result))); 497 PUSHs (sv_result);
388 } 498 }
389 break; 499 break;
390 500
391 case EIO_DUP2: 501 case EIO_DUP2: /* EIO_DUP2 actually means aio_close(), su fudge result value */
392 if (req->result > 0) 502 if (req->result > 0)
393 req->result = 0; 503 SvIV_set (sv_result, 0);
394 /* FALLTHROUGH */ 504 /* FALLTHROUGH */
395 505
396 default: 506 default:
397 PUSHs (sv_2mortal (newSViv (req->result))); 507 PUSHs (sv_result);
398 break; 508 break;
399 } 509 }
400 510
401 errno = req->errorno; 511 errno = req->errorno;
402 512
403 PUTBACK; 513 PUTBACK;
404 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD); 514 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD);
405 SPAGAIN; 515 SPAGAIN;
516
517 if (expect_false (SvREFCNT (sv_result) != 1 || sv_result_cache))
518 SvREFCNT_dec (sv_result);
519 else
520 sv_result_cache = sv_result;
406 521
407 FREETMPS; 522 FREETMPS;
408 LEAVE; 523 LEAVE;
409 524
410 PUTBACK; 525 PUTBACK;
485 600
486static void atfork_child (void) 601static void atfork_child (void)
487{ 602{
488 create_respipe (); 603 create_respipe ();
489} 604}
605
606/*****************************************************************************/
607
608#if !_POSIX_MAPPED_FILES
609# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
610# define munmap(addr,length) (errno = ENOSYS, -1)
611#endif
612
613#define MMAP_MAGIC PERL_MAGIC_ext
614
615static int
616mmap_free (pTHX_ SV *sv, MAGIC *mg)
617{
618 int old_errno = errno;
619 munmap (mg->mg_ptr, (size_t)mg->mg_obj);
620 errno = old_errno;
621
622 mg->mg_obj = 0; /* just in case */
623
624 SvREADONLY_off (sv);
625 SvCUR_set (sv, 0);
626 SvLEN_set (sv, 0);
627 SvPVX (sv) = 0;
628 SvOK_off (sv);
629
630 return 0;
631}
632
633static MGVTBL mmap_vtbl = {
634 0, 0, 0, 0, mmap_free
635};
636
637/*****************************************************************************/
490 638
491static SV * 639static SV *
492get_cb (SV *cb_sv) 640get_cb (SV *cb_sv)
493{ 641{
494 SvGETMAGIC (cb_sv); 642 SvGETMAGIC (cb_sv);
514 PUTBACK; \ 662 PUTBACK; \
515 req_submit (req); \ 663 req_submit (req); \
516 SPAGAIN; \ 664 SPAGAIN; \
517 \ 665 \
518 if (GIMME_V != G_VOID) \ 666 if (GIMME_V != G_VOID) \
519 XPUSHs (req_sv (req, AIO_REQ_KLASS)); 667 XPUSHs (req_sv (req, aio_req_stash));
520 668
521MODULE = IO::AIO PACKAGE = IO::AIO 669MODULE = IO::AIO PACKAGE = IO::AIO
522 670
523PROTOTYPES: ENABLE 671PROTOTYPES: ENABLE
524 672
526{ 674{
527 static const struct { 675 static const struct {
528 const char *name; 676 const char *name;
529 IV iv; 677 IV iv;
530 } *civ, const_iv[] = { 678 } *civ, const_iv[] = {
531# define const_iv(name, value) { # name, (IV) value }, 679# define const_niv(name, value) { # name, (IV) value },
680# define const_iv(name) { # name, (IV) name },
532# define const_eio(name) { # name, (IV) EIO_ ## name }, 681# define const_eio(name) { # name, (IV) EIO_ ## name },
533 const_iv (EXDEV , EXDEV) 682 const_iv (EXDEV)
534 const_iv (ENOSYS , ENOSYS) 683 const_iv (ENOSYS)
535 const_iv (O_RDONLY, O_RDONLY) 684 const_iv (O_RDONLY)
536 const_iv (O_WRONLY, O_WRONLY) 685 const_iv (O_WRONLY)
686 const_iv (O_RDWR)
537 const_iv (O_CREAT , O_CREAT) 687 const_iv (O_CREAT)
538 const_iv (O_TRUNC , O_TRUNC) 688 const_iv (O_TRUNC)
689 const_iv (O_EXCL)
690 const_iv (O_APPEND)
539#ifndef _WIN32 691#ifndef _WIN32
540 const_iv (S_IFIFO , S_IFIFO) 692 const_iv (S_IFIFO)
541#endif 693#endif
542 const_iv (FADV_NORMAL , POSIX_FADV_NORMAL) 694 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
543 const_iv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL) 695 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
544 const_iv (FADV_RANDOM , POSIX_FADV_RANDOM) 696 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
545 const_iv (FADV_NOREUSE , POSIX_FADV_NOREUSE) 697 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
546 const_iv (FADV_WILLNEED , POSIX_FADV_WILLNEED) 698 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
547 const_iv (FADV_DONTNEED , POSIX_FADV_DONTNEED) 699 const_niv (FADV_DONTNEED , POSIX_FADV_DONTNEED)
700
701 const_iv (ST_RDONLY)
702 const_iv (ST_NOSUID)
703 const_iv (ST_NODEV)
704 const_iv (ST_NOEXEC)
705 const_iv (ST_SYNCHRONOUS)
706 const_iv (ST_MANDLOCK)
707 const_iv (ST_WRITE)
708 const_iv (ST_APPEND)
709 const_iv (ST_IMMUTABLE)
710 const_iv (ST_NOATIME)
711 const_iv (ST_NODIRATIME)
712 const_iv (ST_RELATIME)
713
714 const_iv (PROT_EXEC)
715 const_iv (PROT_NONE)
716 const_iv (PROT_READ)
717 const_iv (PROT_WRITE)
718
719 /*const_iv (MAP_FIXED)*/
720 const_iv (MAP_PRIVATE)
721 const_iv (MAP_SHARED)
722 const_iv (MAP_ANONYMOUS)
723
724 /* linuxish */
725 const_iv (MAP_HUGETLB)
726 const_iv (MAP_LOCKED)
727 const_iv (MAP_NORESERVE)
728 const_iv (MAP_POPULATE)
729 const_iv (MAP_NONBLOCK)
730
731 const_iv (MCL_FUTURE)
732 const_iv (MCL_CURRENT)
733
734 const_eio (MS_ASYNC)
735 const_eio (MS_INVALIDATE)
736 const_eio (MS_SYNC)
737
738 const_eio (MT_MODIFY)
548 739
549 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE) 740 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE)
550 const_eio (SYNC_FILE_RANGE_WRITE) 741 const_eio (SYNC_FILE_RANGE_WRITE)
551 const_eio (SYNC_FILE_RANGE_WAIT_AFTER) 742 const_eio (SYNC_FILE_RANGE_WAIT_AFTER)
552 743
564 const_eio (DT_LNK) 755 const_eio (DT_LNK)
565 const_eio (DT_SOCK) 756 const_eio (DT_SOCK)
566 const_eio (DT_WHT) 757 const_eio (DT_WHT)
567 }; 758 };
568 759
569 stash = gv_stashpv ("IO::AIO", 1); 760 aio_stash = gv_stashpv ("IO::AIO" , 1);
761 aio_req_stash = gv_stashpv ("IO::AIO::REQ", 1);
762 aio_grp_stash = gv_stashpv ("IO::AIO::GRP", 1);
570 763
571 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 764 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
572 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 765 newCONSTSUB (aio_stash, (char *)civ->name, newSViv (civ->iv));
766
767 newCONSTSUB (aio_stash, "PAGESIZE", newSViv (PAGESIZE));
573 768
574 create_respipe (); 769 create_respipe ();
575 770
576 if (eio_init (want_poll, done_poll) < 0) 771 if (eio_init (want_poll, done_poll) < 0)
577 croak ("IO::AIO: unable to initialise eio library"); 772 croak ("IO::AIO: unable to initialise eio library");
804} 999}
805 1000
806void 1001void
807aio_stat (SV8 *fh_or_path, SV *callback=&PL_sv_undef) 1002aio_stat (SV8 *fh_or_path, SV *callback=&PL_sv_undef)
808 ALIAS: 1003 ALIAS:
809 aio_stat = EIO_STAT 1004 aio_stat = EIO_STAT
810 aio_lstat = EIO_LSTAT 1005 aio_lstat = EIO_LSTAT
1006 aio_statvfs = EIO_STATVFS
811 PPCODE: 1007 PPCODE:
812{ 1008{
813 dREQ; 1009 dREQ;
814 1010
815 req->sv1 = newSVsv (fh_or_path); 1011 req->sv1 = newSVsv (fh_or_path);
819 req->type = ix; 1015 req->type = ix;
820 req->ptr1 = SvPVbyte_nolen (req->sv1); 1016 req->ptr1 = SvPVbyte_nolen (req->sv1);
821 } 1017 }
822 else 1018 else
823 { 1019 {
824 req->type = EIO_FSTAT; 1020 req->type = ix == EIO_STATVFS ? EIO_FSTATVFS : EIO_FSTAT;
825 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path))); 1021 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
826 } 1022 }
827 1023
828 REQ_SEND; 1024 REQ_SEND;
829} 1025}
992 1188
993 REQ_SEND; 1189 REQ_SEND;
994} 1190}
995 1191
996void 1192void
1193aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef)
1194 ALIAS:
1195 aio_mtouch = EIO_MTOUCH
1196 aio_msync = EIO_MSYNC
1197 PROTOTYPE: $$$$;$
1198 PPCODE:
1199{
1200 STRLEN svlen;
1201 UV len = SvUV (length);
1202 char *svptr = SvPVbyte (data, svlen);
1203
1204 if (offset < 0)
1205 offset += svlen;
1206
1207 if (offset < 0 || offset > svlen)
1208 croak ("offset outside of scalar");
1209
1210 if (!SvOK (length) || len + offset > svlen)
1211 len = svlen - offset;
1212
1213 {
1214 dREQ;
1215
1216 req->type = ix;
1217 req->size = len;
1218 req->sv2 = SvREFCNT_inc (data);
1219 req->ptr2 = (char *)svptr + offset;
1220 req->int1 = flags;
1221
1222 REQ_SEND;
1223 }
1224}
1225
1226void
997aio_busy (double delay, SV *callback=&PL_sv_undef) 1227aio_busy (double delay, SV *callback=&PL_sv_undef)
998 PPCODE: 1228 PPCODE:
999{ 1229{
1000 dREQ; 1230 dREQ;
1001 1231
1013 dREQ; 1243 dREQ;
1014 1244
1015 req->type = EIO_GROUP; 1245 req->type = EIO_GROUP;
1016 1246
1017 req_submit (req); 1247 req_submit (req);
1018 XPUSHs (req_sv (req, AIO_GRP_KLASS)); 1248 XPUSHs (req_sv (req, aio_grp_stash));
1019} 1249}
1020 1250
1021void 1251void
1022aio_nop (SV *callback=&PL_sv_undef) 1252aio_nop (SV *callback=&PL_sv_undef)
1023 ALIAS: 1253 ALIAS:
1132 PROTOTYPE: $$$$ 1362 PROTOTYPE: $$$$
1133 CODE: 1363 CODE:
1134#if _XOPEN_SOURCE >= 600 && !NO_FADVISE 1364#if _XOPEN_SOURCE >= 600 && !NO_FADVISE
1135 RETVAL = posix_fadvise (fh, offset, length, advice); 1365 RETVAL = posix_fadvise (fh, offset, length, advice);
1136#else 1366#else
1137 RETVAL = errno = ENOSYS; 1367 RETVAL = errno = ENOSYS; /* yes, this is actually correct */
1138#endif 1368#endif
1139 OUTPUT: 1369 OUTPUT:
1140 RETVAL 1370 RETVAL
1141 1371
1142ssize_t 1372ssize_t
1143sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count) 1373sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count)
1144 PROTOTYPE: $$$$ 1374 PROTOTYPE: $$$$
1145 CODE: 1375 CODE:
1146 eio_sendfile_sync (ofh, ifh, offset, count); 1376 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count);
1377 OUTPUT:
1378 RETVAL
1379
1380void
1381mmap (SV *scalar, size_t length, int prot, int flags, SV *fh, off_t offset = 0)
1382 PROTOTYPE: $$$$$;$
1383 PPCODE:
1384 sv_unmagic (scalar, MMAP_MAGIC);
1385{
1386 int fd = SvOK (fh) ? s_fileno_croak (fh, flags & PROT_WRITE) : -1;
1387 void *addr = (void *)mmap (0, length, prot, flags, fd, offset);
1388 if (addr == (void *)-1)
1389 XSRETURN_NO;
1390
1391 /* we store the length in mg_obj, as namlen is I32 :/ */
1392 sv_magicext (scalar, 0, MMAP_MAGIC, &mmap_vtbl, (char *)addr, 0)
1393 ->mg_obj = (SV *)length;
1394
1395 SvUPGRADE (scalar, SVt_PV); /* nop... */
1396 if (!(prot & PROT_WRITE))
1397 SvREADONLY_on (scalar);
1398
1399 SvPVX (scalar) = (char *)addr;
1400 SvCUR_set (scalar, length);
1401 SvLEN_set (scalar, 0);
1402 SvPOK_only (scalar);
1403
1404 XSRETURN_YES;
1405}
1406
1407void
1408munmap (SV *scalar)
1409 PROTOTYPE: $
1410 CODE:
1411 sv_unmagic (scalar, MMAP_MAGIC);
1412
1413int
1414mlockall (int flags)
1415 PROTOTYPE: $
1416 CODE:
1417#if _POSIX_MEMLOCK
1418#if __GLIBC__ == 2 && __GLIBC_MINOR__ <= 7
1419 extern int mallopt (int, int);
1420 mallopt (-6, 238); /* http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473812 */
1421#endif
1422 mlockall (flags);
1423#else
1424 RETVAL = -1;
1425 errno = ENOSYS;
1426#endif
1427 OUTPUT:
1428 RETVAL
1429
1430int
1431munlockall ()
1432 PROTOTYPE:
1433 CODE:
1434#if _POSIX_MEMLOCK
1435 munlockall ();
1436#else
1437 RETVAL = -1;
1438 errno = ENOSYS;
1439#endif
1440 OUTPUT:
1441 RETVAL
1147 1442
1148void _on_next_submit (SV *cb) 1443void _on_next_submit (SV *cb)
1149 CODE: 1444 CODE:
1150 SvREFCNT_dec (on_next_submit); 1445 SvREFCNT_dec (on_next_submit);
1151 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0; 1446 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines