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.161 by root, Sun Jan 10 20:28:43 2010 UTC vs.
Revision 1.177 by root, Thu Dec 30 07:19:31 2010 UTC

16#include <sys/statvfs.h> 16#include <sys/statvfs.h>
17#include <limits.h> 17#include <limits.h>
18#include <fcntl.h> 18#include <fcntl.h>
19#include <sched.h> 19#include <sched.h>
20 20
21#if _POSIX_MEMLOCK 21#if _POSIX_MEMLOCK || _POSIX_MAPPED_FILES
22# include <sys/mman.h> 22# include <sys/mman.h>
23#endif 23#endif
24 24
25/* perl namespace pollution */ 25/* perl namespace pollution */
26#undef VERSION 26#undef VERSION
118 STRLEN stroffset; \ 118 STRLEN stroffset; \
119 SV *self; 119 SV *self;
120 120
121#define EIO_NO_WRAPPERS 1 121#define EIO_NO_WRAPPERS 1
122 122
123#include "libeio/config.h"
123#include "libeio/eio.h" 124#include "libeio/eio.h"
124 125
125#ifndef POSIX_FADV_NORMAL 126#ifndef POSIX_FADV_NORMAL
126# define POSIX_FADV_NORMAL 0 127# define POSIX_FADV_NORMAL 0
127# define NO_FADVISE 1
128#endif 128#endif
129#ifndef POSIX_FADV_SEQUENTIAL 129#ifndef POSIX_FADV_SEQUENTIAL
130# define POSIX_FADV_SEQUENTIAL 0 130# define POSIX_FADV_SEQUENTIAL 0
131#endif 131#endif
132#ifndef POSIX_FADV_RANDOM 132#ifndef POSIX_FADV_RANDOM
140#endif 140#endif
141#ifndef POSIX_FADV_DONTNEED 141#ifndef POSIX_FADV_DONTNEED
142# define POSIX_FADV_DONTNEED 0 142# define POSIX_FADV_DONTNEED 0
143#endif 143#endif
144 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
145#ifndef ST_NODEV 182#ifndef ST_NODEV
146# define ST_NODEV 0 183# define ST_NODEV 0
147#endif 184#endif
148#ifndef ST_NOEXEC 185#ifndef ST_NOEXEC
149# define ST_NOEXEC 0 186# define ST_NOEXEC 0
171#endif 208#endif
172#ifndef ST_RELATIME 209#ifndef ST_RELATIME
173# define ST_RELATIME 0 210# define ST_RELATIME 0
174#endif 211#endif
175 212
176#ifndef MCL_CURRENT 213#ifndef MAP_ANONYMOUS
177# define MCL_CURRENT 0 214# ifdef MAP_ANON
215# define MAP_ANONYMOUS MAP_ANON
216# else
217# define MAP_ANONYMOUS MAP_FIXED /* and hope this fails */
178#endif 218# endif
179#ifndef MCL_FUTURE 219#endif
180# define MCL_FUTURE 0 220#ifndef MAP_HUGETLB
221# define MAP_HUGETLB 0
222#endif
223#ifndef MAP_LOCKED
224# define MAP_LOCKED 0
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
235
236#ifndef PAGESIZE
237# define PAGESIZE sysconf (_SC_PAGESIZE)
181#endif 238#endif
182 239
183static int req_invoke (eio_req *req); 240static int req_invoke (eio_req *req);
184#define EIO_FINISH(req) req_invoke (req) 241#define EIO_FINISH(req) req_invoke (req)
185static void req_destroy (eio_req *grp); 242static void req_destroy (eio_req *grp);
277 } 334 }
278} 335}
279 336
280static int req_invoke (eio_req *req) 337static int req_invoke (eio_req *req)
281{ 338{
282 dSP;
283
284 if (req->flags & FLAG_SV2_RO_OFF) 339 if (req->flags & FLAG_SV2_RO_OFF)
285 SvREADONLY_off (req->sv2); 340 SvREADONLY_off (req->sv2);
286 341
287 if (!EIO_CANCELLED (req) && req->callback) 342 if (!EIO_CANCELLED (req) && req->callback)
288 { 343 {
344 dSP;
345 static SV *sv_result_cache; /* caches the result integer SV */
346 SV *sv_result;
347
289 ENTER; 348 ENTER;
290 SAVETMPS; 349 SAVETMPS;
291 PUSHMARK (SP); 350 PUSHMARK (SP);
292 EXTEND (SP, 1); 351 EXTEND (SP, 1);
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 SvIOK_only (sv_result);
359 }
360 else
361 {
362 sv_result = newSViv (req->result);
363 SvREADONLY_on (sv_result);
364 }
293 365
294 switch (req->type) 366 switch (req->type)
295 { 367 {
296 case EIO_READDIR: 368 case EIO_READDIR:
297 { 369 {
442 case EIO_LSTAT: 514 case EIO_LSTAT:
443 case EIO_FSTAT: 515 case EIO_FSTAT:
444 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT; 516 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT;
445 PL_laststatval = req->result; 517 PL_laststatval = req->result;
446 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2); 518 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2);
447 PUSHs (sv_2mortal (newSViv (req->result))); 519 PUSHs (sv_result);
448 break; 520 break;
449 521
450 case EIO_READ: 522 case EIO_READ:
451 { 523 {
452 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0)); 524 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0));
453 *SvEND (req->sv2) = 0; 525 *SvEND (req->sv2) = 0;
454 SvPOK_only (req->sv2); 526 SvPOK_only (req->sv2);
455 SvSETMAGIC (req->sv2); 527 SvSETMAGIC (req->sv2);
456 PUSHs (sv_2mortal (newSViv (req->result))); 528 PUSHs (sv_result);
457 } 529 }
458 break; 530 break;
459 531
460 case EIO_DUP2: 532 case EIO_DUP2: /* EIO_DUP2 actually means aio_close(), so fudge result value */
461 if (req->result > 0) 533 if (req->result > 0)
462 req->result = 0; 534 SvIV_set (sv_result, 0);
463 /* FALLTHROUGH */ 535 /* FALLTHROUGH */
464 536
465 default: 537 default:
466 PUSHs (sv_2mortal (newSViv (req->result))); 538 PUSHs (sv_result);
467 break; 539 break;
468 } 540 }
469 541
470 errno = req->errorno; 542 errno = req->errorno;
471 543
472 PUTBACK; 544 PUTBACK;
473 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD); 545 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD);
474 SPAGAIN; 546 SPAGAIN;
547
548 if (expect_false (SvREFCNT (sv_result) != 1 || sv_result_cache))
549 SvREFCNT_dec (sv_result);
550 else
551 sv_result_cache = sv_result;
475 552
476 FREETMPS; 553 FREETMPS;
477 LEAVE; 554 LEAVE;
478 555
479 PUTBACK; 556 PUTBACK;
554 631
555static void atfork_child (void) 632static void atfork_child (void)
556{ 633{
557 create_respipe (); 634 create_respipe ();
558} 635}
636
637/*****************************************************************************/
638
639#if !_POSIX_MAPPED_FILES
640# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
641# define munmap(addr,length) (errno = ENOSYS, -1)
642# define mprotect(addr,len,prot) (errno = ENOSYS, -1)
643# define PROT_NONE 0
644# define PROT_WRITE 0
645# define MAP_PRIVATE 0
646# define MAP_SHARED 0
647# define MAP_FIXED 0
648#endif
649
650#define MMAP_MAGIC PERL_MAGIC_ext
651
652static int
653mmap_free (pTHX_ SV *sv, MAGIC *mg)
654{
655 int old_errno = errno;
656 munmap (mg->mg_ptr, (size_t)mg->mg_obj);
657 errno = old_errno;
658
659 mg->mg_obj = 0; /* just in case */
660
661 SvREADONLY_off (sv);
662
663 if (SvPVX (sv) != mg->mg_ptr)
664 croak ("ERROR: IO::AIO::mmap-mapped scalar changed location, detected");
665
666 SvCUR_set (sv, 0);
667 SvPVX (sv) = 0;
668 SvOK_off (sv);
669
670 return 0;
671}
672
673static MGVTBL mmap_vtbl = {
674 0, 0, 0, 0, mmap_free
675};
676
677/*****************************************************************************/
559 678
560static SV * 679static SV *
561get_cb (SV *cb_sv) 680get_cb (SV *cb_sv)
562{ 681{
563 SvGETMAGIC (cb_sv); 682 SvGETMAGIC (cb_sv);
595{ 714{
596 static const struct { 715 static const struct {
597 const char *name; 716 const char *name;
598 IV iv; 717 IV iv;
599 } *civ, const_iv[] = { 718 } *civ, const_iv[] = {
600# define const_iv(name, value) { # name, (IV) value }, 719# define const_niv(name, value) { # name, (IV) value },
720# define const_iv(name) { # name, (IV) name },
601# define const_eio(name) { # name, (IV) EIO_ ## name }, 721# define const_eio(name) { # name, (IV) EIO_ ## name },
602 const_iv (EXDEV , EXDEV) 722 const_iv (EXDEV)
603 const_iv (ENOSYS , ENOSYS) 723 const_iv (ENOSYS)
604 const_iv (O_RDONLY, O_RDONLY) 724 const_iv (O_RDONLY)
605 const_iv (O_WRONLY, O_WRONLY) 725 const_iv (O_WRONLY)
726 const_iv (O_RDWR)
606 const_iv (O_CREAT , O_CREAT) 727 const_iv (O_CREAT)
607 const_iv (O_TRUNC , O_TRUNC) 728 const_iv (O_TRUNC)
729 const_iv (O_EXCL)
730 const_iv (O_APPEND)
608#ifndef _WIN32 731#ifndef _WIN32
609 const_iv (S_IFIFO , S_IFIFO) 732 const_iv (S_IFIFO)
610#endif 733#endif
611 const_iv (FADV_NORMAL , POSIX_FADV_NORMAL) 734 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
612 const_iv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL) 735 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
613 const_iv (FADV_RANDOM , POSIX_FADV_RANDOM) 736 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
614 const_iv (FADV_NOREUSE , POSIX_FADV_NOREUSE) 737 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
615 const_iv (FADV_WILLNEED , POSIX_FADV_WILLNEED) 738 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
616 const_iv (FADV_DONTNEED , POSIX_FADV_DONTNEED) 739 const_niv (FADV_DONTNEED , POSIX_FADV_DONTNEED)
617 740
618 const_iv (ST_RDONLY , ST_RDONLY) 741 const_niv (MADV_NORMAL , POSIX_MADV_NORMAL)
619 const_iv (ST_NOSUID , ST_NOSUID) 742 const_niv (MADV_SEQUENTIAL, POSIX_MADV_SEQUENTIAL)
620 const_iv (ST_NODEV , ST_NODEV) 743 const_niv (MADV_RANDOM , POSIX_MADV_RANDOM)
621 const_iv (ST_NOEXEC , ST_NOEXEC) 744 const_niv (MADV_WILLNEED , POSIX_MADV_WILLNEED)
745 const_niv (MADV_DONTNEED , POSIX_MADV_DONTNEED)
746
747 const_iv (ST_RDONLY)
748 const_iv (ST_NOSUID)
749 const_iv (ST_NODEV)
750 const_iv (ST_NOEXEC)
622 const_iv (ST_SYNCHRONOUS , ST_SYNCHRONOUS) 751 const_iv (ST_SYNCHRONOUS)
623 const_iv (ST_MANDLOCK , ST_MANDLOCK) 752 const_iv (ST_MANDLOCK)
624 const_iv (ST_WRITE , ST_WRITE) 753 const_iv (ST_WRITE)
625 const_iv (ST_APPEND , ST_APPEND) 754 const_iv (ST_APPEND)
626 const_iv (ST_IMMUTABLE , ST_IMMUTABLE) 755 const_iv (ST_IMMUTABLE)
627 const_iv (ST_NOATIME , ST_NOATIME) 756 const_iv (ST_NOATIME)
628 const_iv (ST_NODIRATIME , ST_NODIRATIME) 757 const_iv (ST_NODIRATIME)
629 const_iv (ST_RELATIME , ST_RELATIME) 758 const_iv (ST_RELATIME)
630 759
631 const_iv (MCL_FUTURE , MCL_FUTURE) 760 const_iv (PROT_NONE)
632 const_iv (MCL_CURRENT , MCL_CURRENT) 761 const_iv (PROT_EXEC)
762 const_iv (PROT_READ)
763 const_iv (PROT_WRITE)
764
765 /*const_iv (MAP_FIXED)*/
766 const_iv (MAP_PRIVATE)
767 const_iv (MAP_SHARED)
768 const_iv (MAP_ANONYMOUS)
769
770 /* linuxish */
771 const_iv (MAP_HUGETLB)
772 const_iv (MAP_LOCKED)
773 const_iv (MAP_NORESERVE)
774 const_iv (MAP_POPULATE)
775 const_iv (MAP_NONBLOCK)
776
777 const_eio (MCL_FUTURE)
778 const_eio (MCL_CURRENT)
633 779
634 const_eio (MS_ASYNC) 780 const_eio (MS_ASYNC)
635 const_eio (MS_INVALIDATE) 781 const_eio (MS_INVALIDATE)
636 const_eio (MS_SYNC) 782 const_eio (MS_SYNC)
637 783
662 aio_grp_stash = gv_stashpv ("IO::AIO::GRP", 1); 808 aio_grp_stash = gv_stashpv ("IO::AIO::GRP", 1);
663 809
664 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 810 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
665 newCONSTSUB (aio_stash, (char *)civ->name, newSViv (civ->iv)); 811 newCONSTSUB (aio_stash, (char *)civ->name, newSViv (civ->iv));
666 812
813 newCONSTSUB (aio_stash, "PAGESIZE", newSViv (PAGESIZE));
814
667 create_respipe (); 815 create_respipe ();
668 816
669 if (eio_init (want_poll, done_poll) < 0) 817 if (eio_init (want_poll, done_poll) < 0)
670 croak ("IO::AIO: unable to initialise eio library"); 818 croak ("IO::AIO: unable to initialise eio library");
671 819
709 CODE: 857 CODE:
710 max_outstanding = maxreqs; 858 max_outstanding = maxreqs;
711 859
712void 860void
713aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef) 861aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef)
714 PROTOTYPE: $$$;$
715 PPCODE: 862 PPCODE:
716{ 863{
717 dREQ; 864 dREQ;
718 865
719 req->type = EIO_OPEN; 866 req->type = EIO_OPEN;
725 REQ_SEND; 872 REQ_SEND;
726} 873}
727 874
728void 875void
729aio_fsync (SV *fh, SV *callback=&PL_sv_undef) 876aio_fsync (SV *fh, SV *callback=&PL_sv_undef)
730 PROTOTYPE: $;$
731 ALIAS: 877 ALIAS:
732 aio_fsync = EIO_FSYNC 878 aio_fsync = EIO_FSYNC
733 aio_fdatasync = EIO_FDATASYNC 879 aio_fdatasync = EIO_FDATASYNC
734 PPCODE: 880 PPCODE:
735{ 881{
743 REQ_SEND (req); 889 REQ_SEND (req);
744} 890}
745 891
746void 892void
747aio_sync_file_range (SV *fh, off_t offset, size_t nbytes, UV flags, SV *callback=&PL_sv_undef) 893aio_sync_file_range (SV *fh, off_t offset, size_t nbytes, UV flags, SV *callback=&PL_sv_undef)
748 PROTOTYPE: $$$$;$
749 PPCODE: 894 PPCODE:
750{ 895{
751 int fd = s_fileno_croak (fh, 0); 896 int fd = s_fileno_croak (fh, 0);
752 dREQ; 897 dREQ;
753 898
761 REQ_SEND (req); 906 REQ_SEND (req);
762} 907}
763 908
764void 909void
765aio_close (SV *fh, SV *callback=&PL_sv_undef) 910aio_close (SV *fh, SV *callback=&PL_sv_undef)
766 PROTOTYPE: $;$
767 PPCODE: 911 PPCODE:
768{ 912{
769 static int close_pipe = -1; /* dummy fd to close fds via dup2 */ 913 static int close_pipe = -1; /* dummy fd to close fds via dup2 */
770 int fd = s_fileno_croak (fh, 0); 914 int fd = s_fileno_croak (fh, 0);
771 dREQ; 915 dREQ;
793void 937void
794aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef) 938aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef)
795 ALIAS: 939 ALIAS:
796 aio_read = EIO_READ 940 aio_read = EIO_READ
797 aio_write = EIO_WRITE 941 aio_write = EIO_WRITE
798 PROTOTYPE: $$$$$;$
799 PPCODE: 942 PPCODE:
800{ 943{
801 STRLEN svlen; 944 STRLEN svlen;
802 int fd = s_fileno_croak (fh, ix == EIO_WRITE); 945 int fd = s_fileno_croak (fh, ix == EIO_WRITE);
803 char *svptr = SvPVbyte (data, svlen); 946 char *svptr = SvPVbyte (data, svlen);
844 } 987 }
845} 988}
846 989
847void 990void
848aio_readlink (SV8 *path, SV *callback=&PL_sv_undef) 991aio_readlink (SV8 *path, SV *callback=&PL_sv_undef)
849 PROTOTYPE: $$;$
850 PPCODE: 992 PPCODE:
851{ 993{
852 SV *data; 994 SV *data;
853 dREQ; 995 dREQ;
854 996
859 REQ_SEND; 1001 REQ_SEND;
860} 1002}
861 1003
862void 1004void
863aio_sendfile (SV *out_fh, SV *in_fh, off_t in_offset, size_t length, SV *callback=&PL_sv_undef) 1005aio_sendfile (SV *out_fh, SV *in_fh, off_t in_offset, size_t length, SV *callback=&PL_sv_undef)
864 PROTOTYPE: $$$$;$
865 PPCODE: 1006 PPCODE:
866{ 1007{
867 int ifd = s_fileno_croak (in_fh , 0); 1008 int ifd = s_fileno_croak (in_fh , 0);
868 int ofd = s_fileno_croak (out_fh, 1); 1009 int ofd = s_fileno_croak (out_fh, 1);
869 dREQ; 1010 dREQ;
879 REQ_SEND; 1020 REQ_SEND;
880} 1021}
881 1022
882void 1023void
883aio_readahead (SV *fh, off_t offset, size_t length, SV *callback=&PL_sv_undef) 1024aio_readahead (SV *fh, off_t offset, size_t length, SV *callback=&PL_sv_undef)
884 PROTOTYPE: $$$;$
885 PPCODE: 1025 PPCODE:
886{ 1026{
887 int fd = s_fileno_croak (fh, 0); 1027 int fd = s_fileno_croak (fh, 0);
888 dREQ; 1028 dREQ;
889 1029
1090void 1230void
1091aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef) 1231aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef)
1092 ALIAS: 1232 ALIAS:
1093 aio_mtouch = EIO_MTOUCH 1233 aio_mtouch = EIO_MTOUCH
1094 aio_msync = EIO_MSYNC 1234 aio_msync = EIO_MSYNC
1095 PROTOTYPE: $$$$;$
1096 PPCODE: 1235 PPCODE:
1097{ 1236{
1098 STRLEN svlen; 1237 STRLEN svlen;
1238 char *svptr = SvPVbyte (data, svlen);
1099 UV len = SvUV (length); 1239 UV len = SvUV (length);
1100 char *svptr = SvPVbyte (data, svlen);
1101 1240
1102 if (offset < 0) 1241 if (offset < 0)
1103 offset += svlen; 1242 offset += svlen;
1104 1243
1105 if (offset < 0 || offset > svlen) 1244 if (offset < 0 || offset > svlen)
1110 1249
1111 { 1250 {
1112 dREQ; 1251 dREQ;
1113 1252
1114 req->type = ix; 1253 req->type = ix;
1115 req->size = len;
1116 req->sv2 = SvREFCNT_inc (data); 1254 req->sv2 = SvREFCNT_inc (data);
1117 req->ptr2 = (char *)svptr + offset; 1255 req->ptr2 = (char *)svptr + offset;
1256 req->size = len;
1118 req->int1 = flags; 1257 req->int1 = flags;
1119 1258
1120 REQ_SEND; 1259 REQ_SEND;
1121 } 1260 }
1122} 1261}
1123 1262
1124void 1263void
1264aio_mlock (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, SV *callback=&PL_sv_undef)
1265 PPCODE:
1266{
1267 STRLEN svlen;
1268 char *svptr = SvPVbyte (data, svlen);
1269 UV len = SvUV (length);
1270
1271 if (offset < 0)
1272 offset += svlen;
1273
1274 if (offset < 0 || offset > svlen)
1275 croak ("offset outside of scalar");
1276
1277 if (!SvOK (length) || len + offset > svlen)
1278 len = svlen - offset;
1279
1280 {
1281 dREQ;
1282
1283 req->type = EIO_MLOCK;
1284 req->sv2 = SvREFCNT_inc (data);
1285 req->ptr2 = (char *)svptr + offset;
1286 req->size = len;
1287
1288 REQ_SEND;
1289 }
1290}
1291
1292void
1293aio_mlockall (IV flags, SV *callback=&PL_sv_undef)
1294 PPCODE:
1295{
1296 dREQ;
1297
1298 req->type = EIO_MLOCKALL;
1299 req->int1 = flags;
1300
1301 REQ_SEND;
1302}
1303
1304void
1125aio_busy (double delay, SV *callback=&PL_sv_undef) 1305aio_busy (double delay, SV *callback=&PL_sv_undef)
1126 PPCODE: 1306 PPCODE:
1127{ 1307{
1128 dREQ; 1308 dREQ;
1129 1309
1133 REQ_SEND; 1313 REQ_SEND;
1134} 1314}
1135 1315
1136void 1316void
1137aio_group (SV *callback=&PL_sv_undef) 1317aio_group (SV *callback=&PL_sv_undef)
1138 PROTOTYPE: ;$
1139 PPCODE: 1318 PPCODE:
1140{ 1319{
1141 dREQ; 1320 dREQ;
1142 1321
1143 req->type = EIO_GROUP; 1322 req->type = EIO_GROUP;
1160 REQ_SEND; 1339 REQ_SEND;
1161} 1340}
1162 1341
1163int 1342int
1164aioreq_pri (int pri = 0) 1343aioreq_pri (int pri = 0)
1165 PROTOTYPE: ;$
1166 CODE: 1344 CODE:
1167 RETVAL = next_pri; 1345 RETVAL = next_pri;
1168 if (items > 0) 1346 if (items > 0)
1169 { 1347 {
1170 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN; 1348 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN;
1182 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX; 1360 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX;
1183 next_pri = nice; 1361 next_pri = nice;
1184 1362
1185void 1363void
1186flush () 1364flush ()
1187 PROTOTYPE:
1188 CODE: 1365 CODE:
1189 while (eio_nreqs ()) 1366 while (eio_nreqs ())
1190 { 1367 {
1191 poll_wait (); 1368 poll_wait ();
1192 poll_cb (); 1369 poll_cb ();
1193 } 1370 }
1194 1371
1195int 1372int
1196poll() 1373poll ()
1197 PROTOTYPE:
1198 CODE: 1374 CODE:
1199 poll_wait (); 1375 poll_wait ();
1200 RETVAL = poll_cb (); 1376 RETVAL = poll_cb ();
1201 OUTPUT: 1377 OUTPUT:
1202 RETVAL 1378 RETVAL
1203 1379
1204int 1380int
1205poll_fileno() 1381poll_fileno ()
1206 PROTOTYPE:
1207 CODE: 1382 CODE:
1208 RETVAL = s_epipe_fd (&respipe); 1383 RETVAL = s_epipe_fd (&respipe);
1209 OUTPUT: 1384 OUTPUT:
1210 RETVAL 1385 RETVAL
1211 1386
1212int 1387int
1213poll_cb(...) 1388poll_cb (...)
1214 PROTOTYPE: 1389 PROTOTYPE:
1215 CODE: 1390 CODE:
1216 RETVAL = poll_cb (); 1391 RETVAL = poll_cb ();
1217 OUTPUT: 1392 OUTPUT:
1218 RETVAL 1393 RETVAL
1219 1394
1220void 1395void
1221poll_wait() 1396poll_wait ()
1222 PROTOTYPE:
1223 CODE: 1397 CODE:
1224 poll_wait (); 1398 poll_wait ();
1225 1399
1226int 1400int
1227nreqs() 1401nreqs ()
1228 PROTOTYPE:
1229 CODE: 1402 CODE:
1230 RETVAL = eio_nreqs (); 1403 RETVAL = eio_nreqs ();
1231 OUTPUT: 1404 OUTPUT:
1232 RETVAL 1405 RETVAL
1233 1406
1234int 1407int
1235nready() 1408nready ()
1236 PROTOTYPE:
1237 CODE: 1409 CODE:
1238 RETVAL = eio_nready (); 1410 RETVAL = eio_nready ();
1239 OUTPUT: 1411 OUTPUT:
1240 RETVAL 1412 RETVAL
1241 1413
1242int 1414int
1243npending() 1415npending ()
1244 PROTOTYPE:
1245 CODE: 1416 CODE:
1246 RETVAL = eio_npending (); 1417 RETVAL = eio_npending ();
1247 OUTPUT: 1418 OUTPUT:
1248 RETVAL 1419 RETVAL
1249 1420
1250int 1421int
1251nthreads() 1422nthreads ()
1252 PROTOTYPE:
1253 CODE: 1423 CODE:
1254 RETVAL = eio_nthreads (); 1424 RETVAL = eio_nthreads ();
1255 OUTPUT: 1425 OUTPUT:
1256 RETVAL 1426 RETVAL
1257 1427
1258int 1428int
1259fadvise (aio_rfd fh, off_t offset, off_t length, IV advice) 1429fadvise (aio_rfd fh, off_t offset, off_t length, IV advice)
1260 PROTOTYPE: $$$$
1261 CODE: 1430 CODE:
1262#if _XOPEN_SOURCE >= 600 && !NO_FADVISE
1263 RETVAL = posix_fadvise (fh, offset, length, advice); 1431 RETVAL = posix_fadvise (fh, offset, length, advice);
1264#else
1265 RETVAL = errno = ENOSYS;
1266#endif
1267 OUTPUT: 1432 OUTPUT:
1268 RETVAL 1433 RETVAL
1269 1434
1270ssize_t 1435ssize_t
1271sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count) 1436sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count)
1272 PROTOTYPE: $$$$
1273 CODE: 1437 CODE:
1274 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count); 1438 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count);
1275 OUTPUT: 1439 OUTPUT:
1276 RETVAL 1440 RETVAL
1277 1441
1442void
1443mmap (SV *scalar, size_t length, int prot, int flags, SV *fh, off_t offset = 0)
1444 PPCODE:
1445 sv_unmagic (scalar, MMAP_MAGIC);
1446{
1447 int fd = SvOK (fh) ? s_fileno_croak (fh, flags & PROT_WRITE) : -1;
1448 void *addr = (void *)mmap (0, length, prot, flags, fd, offset);
1449 if (addr == (void *)-1)
1450 XSRETURN_NO;
1451
1452 sv_force_normal (scalar);
1453
1454 /* we store the length in mg_obj, as namlen is I32 :/ */
1455 sv_magicext (scalar, 0, MMAP_MAGIC, &mmap_vtbl, (char *)addr, 0)
1456 ->mg_obj = (SV *)length;
1457
1458 SvUPGRADE (scalar, SVt_PV); /* nop... */
1459
1460 if (!(prot & PROT_WRITE))
1461 SvREADONLY_on (scalar);
1462
1463 if (SvLEN (scalar))
1464 Safefree (SvPVX (scalar));
1465
1466 SvPVX (scalar) = (char *)addr;
1467 SvCUR_set (scalar, length);
1468 SvLEN_set (scalar, 0);
1469 SvPOK_only (scalar);
1470
1471 XSRETURN_YES;
1472}
1473
1474void
1475munmap (SV *scalar)
1476 CODE:
1477 sv_unmagic (scalar, MMAP_MAGIC);
1478
1278int 1479int
1279mlockall (int flags) 1480madvise (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef, IV advice_or_prot)
1280 PROTOTYPE: $ 1481 ALIAS:
1482 mprotect = 1
1281 CODE: 1483 CODE:
1484{
1485 STRLEN svlen;
1486 void *addr = SvPVbyte (scalar, svlen);
1487 size_t len = SvUV (length);
1488
1489 if (offset < 0)
1490 offset += svlen;
1491
1492 if (offset < 0 || offset > svlen)
1493 croak ("offset outside of scalar");
1494
1495 if (!SvOK (length) || len + offset > svlen)
1496 len = svlen - offset;
1497
1498 addr = (void *)(((intptr_t)addr) + offset);
1499 eio_page_align (&addr, &len);
1500
1501 switch (ix)
1502 {
1503 case 0: RETVAL = posix_madvise (addr, len, advice_or_prot); break;
1504 case 1: RETVAL = mprotect (addr, len, advice_or_prot); break;
1505 }
1506}
1507 OUTPUT:
1508 RETVAL
1509
1510int
1511munlock (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef)
1512 CODE:
1513{
1514 STRLEN svlen;
1515 void *addr = SvPVbyte (scalar, svlen);
1516 size_t len = SvUV (length);
1517
1518 if (offset < 0)
1519 offset += svlen;
1520
1521 if (offset < 0 || offset > svlen)
1522 croak ("offset outside of scalar");
1523
1524 if (!SvOK (length) || len + offset > svlen)
1525 len = svlen - offset;
1526
1527 addr = (void *)(((intptr_t)addr) + offset);
1528 eio_page_align (&addr, &len);
1282#if _POSIX_MEMLOCK 1529#if _POSIX_MEMLOCK
1283#if __GLIBC__ == 2 && __GLIBC_MINOR__ <= 7 1530 RETVAL = munlock (addr, len);
1284 extern int mallopt (int, int);
1285 mallopt (-6, 238); /* http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473812 */
1286#endif
1287 mlockall (flags);
1288#else 1531#else
1289 RETVAL =-1; 1532 RETVAL = ((errno = ENOSYS), -1);
1290 errno = ENOSYS;
1291#endif 1533#endif
1534}
1292 OUTPUT: 1535 OUTPUT:
1293 RETVAL 1536 RETVAL
1294 1537
1295int 1538int
1296munlockall () 1539munlockall ()
1297 PROTOTYPE:
1298 CODE: 1540 CODE:
1299#if _POSIX_MEMLOCK 1541#if _POSIX_MEMLOCK
1300 munlockall (); 1542 munlockall ();
1301#else 1543#else
1302 RETVAL -1; 1544 RETVAL = -1;
1303 errno = ENOSYS; 1545 errno = ENOSYS;
1304#endif 1546#endif
1305 OUTPUT: 1547 OUTPUT:
1306 RETVAL 1548 RETVAL
1307 1549

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines