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.171 by root, Wed Aug 4 17:16:19 2010 UTC vs.
Revision 1.185 by root, Thu Jul 7 22:36:18 2011 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 || _POSIX_MAPPED_FILES 21#if _POSIX_MEMLOCK || _POSIX_MEMLOCK_RANGE || _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"
125
126/* Linux/others */
127#ifndef O_ASYNC
128# define O_ASYNC 0
129#endif
130#ifndef O_DIRECT
131# define O_DIRECT 0
132#endif
133#ifndef O_NOATIME
134# define O_NOATIME 0
135#endif
136
137/* POSIX */
138#ifndef O_CLOEXEC
139# define O_CLOEXEC 0
140#endif
141#ifndef O_NOFOLLOW
142# define O_NOFOLLOW 0
143#endif
144#ifndef O_NOCTTY
145# define O_NOCTTY 0
146#endif
147#ifndef O_NONBLOCK
148# define O_NONBLOCK 0
149#endif
150#ifndef O_EXEC
151# define O_EXEC 0
152#endif
153#ifndef O_SEARCH
154# define O_SEARCH 0
155#endif
156#ifndef O_DIRECTORY
157# define O_DIRECTORY 0
158#endif
159#ifndef O_DSYNC
160# define O_DSYNC 0
161#endif
162#ifndef O_RSYNC
163# define O_RSYNC 0
164#endif
165#ifndef O_SYNC
166# define O_SYNC 0
167#endif
168#ifndef O_TTY_INIT
169# define O_TTY_INIT 0
170#endif
124 171
125#ifndef POSIX_FADV_NORMAL 172#ifndef POSIX_FADV_NORMAL
126# define POSIX_FADV_NORMAL 0 173# define POSIX_FADV_NORMAL 0
127# define NO_FADVISE 1
128#endif 174#endif
129#ifndef POSIX_FADV_SEQUENTIAL 175#ifndef POSIX_FADV_SEQUENTIAL
130# define POSIX_FADV_SEQUENTIAL 0 176# define POSIX_FADV_SEQUENTIAL 0
131#endif 177#endif
132#ifndef POSIX_FADV_RANDOM 178#ifndef POSIX_FADV_RANDOM
140#endif 186#endif
141#ifndef POSIX_FADV_DONTNEED 187#ifndef POSIX_FADV_DONTNEED
142# define POSIX_FADV_DONTNEED 0 188# define POSIX_FADV_DONTNEED 0
143#endif 189#endif
144 190
145#if _XOPEN_SOURCE < 600 || NO_FADVISE 191#if !HAVE_POSIX_FADVISE
146# define posix_fadvise(a,b,c,d) errno = ENOSYS /* also return ENOSYS */ 192# define posix_fadvise(a,b,c,d) errno = ENOSYS /* also return ENOSYS */
147#endif 193#endif
148 194
149#ifndef POSIX_MADV_NORMAL 195#ifndef POSIX_MADV_NORMAL
150# define POSIX_MADV_NORMAL 0 196# define POSIX_MADV_NORMAL 0
151# define NO_MADVISE 1
152#endif 197#endif
153#ifndef POSIX_MADV_SEQUENTIAL 198#ifndef POSIX_MADV_SEQUENTIAL
154# define POSIX_MADV_SEQUENTIAL 0 199# define POSIX_MADV_SEQUENTIAL 0
155#endif 200#endif
156#ifndef POSIX_MADV_RANDOM 201#ifndef POSIX_MADV_RANDOM
161#endif 206#endif
162#ifndef POSIX_MADV_DONTNEED 207#ifndef POSIX_MADV_DONTNEED
163# define POSIX_MADV_DONTNEED 0 208# define POSIX_MADV_DONTNEED 0
164#endif 209#endif
165 210
166#if _XOPEN_SOURCE < 600 || NO_MADVISE 211#if !HAVE_POSIX_MADVISE
167# define posix_madvise(a,b,c) errno = ENOSYS /* also return ENOSYS */ 212# define posix_madvise(a,b,c) errno = ENOSYS /* also return ENOSYS */
168#endif 213#endif
169 214
170#ifndef PROT_NONE 215#ifndef PROT_NONE
171# define PROT_NONE 0 216# define PROT_NONE 0
209#endif 254#endif
210#ifndef ST_RELATIME 255#ifndef ST_RELATIME
211# define ST_RELATIME 0 256# define ST_RELATIME 0
212#endif 257#endif
213 258
214#ifndef MCL_CURRENT 259#ifndef S_IFIFO
215# define MCL_CURRENT 0 260# define S_IFIFO 0
216#endif 261#endif
217#ifndef MCL_FUTURE 262#ifndef S_IFCHR
218# define MCL_FUTURE 0 263# define S_IFCHR 0
264#endif
265#ifndef S_IFBLK
266# define S_IFBLK 0
267#endif
268#ifndef S_IFLNK
269# define S_IFLNK 0
270#endif
271#ifndef S_IFREG
272# define S_IFREG 0
273#endif
274#ifndef S_IFDIR
275# define S_IFDIR 0
276#endif
277#ifndef S_IFWHT
278# define S_IFWHT 0
279#endif
280#ifndef S_IFSOCK
281# define S_IFSOCK 0
219#endif 282#endif
220 283
221#ifndef MAP_ANONYMOUS 284#ifndef MAP_ANONYMOUS
222# ifdef MAP_ANON 285# ifdef MAP_ANON
223# define MAP_ANONYMOUS MAP_ANON 286# define MAP_ANONYMOUS MAP_ANON
237#ifndef MAP_POPULATE 300#ifndef MAP_POPULATE
238# define MAP_POPULATE 0 301# define MAP_POPULATE 0
239#endif 302#endif
240#ifndef MAP_NONBLOCK 303#ifndef MAP_NONBLOCK
241# define MAP_NONBLOCK 0 304# define MAP_NONBLOCK 0
305#endif
306
307#ifndef makedev
308# define makedev(maj,min) (((maj) << 8) | (min))
309#endif
310#ifndef major
311# define major(dev) ((dev) >> 8)
312#endif
313#ifndef minor
314# define minor(dev) ((dev) & 0xff)
242#endif 315#endif
243 316
244#ifndef PAGESIZE 317#ifndef PAGESIZE
245# define PAGESIZE sysconf (_SC_PAGESIZE) 318# define PAGESIZE sysconf (_SC_PAGESIZE)
246#endif 319#endif
361 /* do not recreate the result IV from scratch each time */ 434 /* do not recreate the result IV from scratch each time */
362 if (expect_true (sv_result_cache)) 435 if (expect_true (sv_result_cache))
363 { 436 {
364 sv_result = sv_result_cache; sv_result_cache = 0; 437 sv_result = sv_result_cache; sv_result_cache = 0;
365 SvIV_set (sv_result, req->result); 438 SvIV_set (sv_result, req->result);
439 SvIOK_only (sv_result);
366 } 440 }
367 else 441 else
368 { 442 {
369 sv_result = newSViv (req->result); 443 sv_result = newSViv (req->result);
370 SvREADONLY_on (sv_result); 444 SvREADONLY_on (sv_result);
511 case EIO_NOP: 585 case EIO_NOP:
512 case EIO_BUSY: 586 case EIO_BUSY:
513 break; 587 break;
514 588
515 case EIO_READLINK: 589 case EIO_READLINK:
590 case EIO_REALPATH:
516 if (req->result > 0) 591 if (req->result > 0)
517 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result))); 592 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result)));
518 break; 593 break;
519 594
520 case EIO_STAT: 595 case EIO_STAT:
534 SvSETMAGIC (req->sv2); 609 SvSETMAGIC (req->sv2);
535 PUSHs (sv_result); 610 PUSHs (sv_result);
536 } 611 }
537 break; 612 break;
538 613
539 case EIO_DUP2: /* EIO_DUP2 actually means aio_close(), su fudge result value */ 614 case EIO_DUP2: /* EIO_DUP2 actually means aio_close(), so fudge result value */
540 if (req->result > 0) 615 if (req->result > 0)
541 SvIV_set (sv_result, 0); 616 SvIV_set (sv_result, 0);
542 /* FALLTHROUGH */ 617 /* FALLTHROUGH */
543 618
544 default: 619 default:
592 grp->sv2 = 0; 667 grp->sv2 = 0;
593 668
594 eio_grp_cancel (grp); 669 eio_grp_cancel (grp);
595} 670}
596 671
597static void
598create_respipe (void) 672static void create_respipe (void)
599{ 673{
600 if (s_epipe_renew (&respipe)) 674 if (s_epipe_renew (&respipe))
601 croak ("IO::AIO: unable to initialize result pipe"); 675 croak ("IO::AIO: unable to initialize result pipe");
602} 676}
603 677
644/*****************************************************************************/ 718/*****************************************************************************/
645 719
646#if !_POSIX_MAPPED_FILES 720#if !_POSIX_MAPPED_FILES
647# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1) 721# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
648# define munmap(addr,length) (errno = ENOSYS, -1) 722# define munmap(addr,length) (errno = ENOSYS, -1)
723#endif
724
725#if !_POSIX_MEMORY_PROTECTION
649# define mprotect(addr,len,prot) (errno = ENOSYS, -1) 726# define mprotect(addr,len,prot) (errno = ENOSYS, -1)
727# define PROT_NONE 0
728# define PROT_WRITE 0
729# define MAP_PRIVATE 0
730# define MAP_SHARED 0
731# define MAP_FIXED 0
650#endif 732#endif
651 733
652#define MMAP_MAGIC PERL_MAGIC_ext 734#define MMAP_MAGIC PERL_MAGIC_ext
653 735
654static int
655mmap_free (pTHX_ SV *sv, MAGIC *mg) 736static int mmap_free (pTHX_ SV *sv, MAGIC *mg)
656{ 737{
657 int old_errno = errno; 738 int old_errno = errno;
658 munmap (mg->mg_ptr, (size_t)mg->mg_obj); 739 munmap (mg->mg_ptr, (size_t)mg->mg_obj);
659 errno = old_errno; 740 errno = old_errno;
660 741
676 0, 0, 0, 0, mmap_free 757 0, 0, 0, 0, mmap_free
677}; 758};
678 759
679/*****************************************************************************/ 760/*****************************************************************************/
680 761
681static SV *
682get_cb (SV *cb_sv) 762static SV * get_cb (SV *cb_sv)
683{ 763{
684 SvGETMAGIC (cb_sv); 764 SvGETMAGIC (cb_sv);
685 return SvOK (cb_sv) ? s_get_cv_croak (cb_sv) : 0; 765 return SvOK (cb_sv) ? s_get_cv_croak (cb_sv) : 0;
686} 766}
687 767
728 const_iv (O_RDWR) 808 const_iv (O_RDWR)
729 const_iv (O_CREAT) 809 const_iv (O_CREAT)
730 const_iv (O_TRUNC) 810 const_iv (O_TRUNC)
731 const_iv (O_EXCL) 811 const_iv (O_EXCL)
732 const_iv (O_APPEND) 812 const_iv (O_APPEND)
733#ifndef _WIN32 813
814 const_iv (O_ASYNC)
815 const_iv (O_DIRECT)
816 const_iv (O_NOATIME)
817
818 const_iv (O_CLOEXEC)
819 const_iv (O_NOCTTY)
820 const_iv (O_NOFOLLOW)
821 const_iv (O_NONBLOCK)
822 const_iv (O_EXEC)
823 const_iv (O_SEARCH)
824 const_iv (O_DIRECTORY)
825 const_iv (O_DSYNC)
826 const_iv (O_RSYNC)
827 const_iv (O_SYNC)
828 const_iv (O_TTY_INIT)
829
734 const_iv (S_IFIFO) 830 const_iv (S_IFIFO)
735#endif 831 const_iv (S_IFCHR)
832 const_iv (S_IFBLK)
833 const_iv (S_IFLNK)
834 const_iv (S_IFREG)
835 const_iv (S_IFDIR)
836 const_iv (S_IFWHT)
837 const_iv (S_IFSOCK)
838 const_iv (S_IFMT)
839
736 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL) 840 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
737 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL) 841 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
738 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM) 842 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
739 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE) 843 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
740 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED) 844 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
774 const_iv (MAP_LOCKED) 878 const_iv (MAP_LOCKED)
775 const_iv (MAP_NORESERVE) 879 const_iv (MAP_NORESERVE)
776 const_iv (MAP_POPULATE) 880 const_iv (MAP_POPULATE)
777 const_iv (MAP_NONBLOCK) 881 const_iv (MAP_NONBLOCK)
778 882
779 const_iv (MCL_FUTURE) 883 const_eio (MCL_FUTURE)
780 const_iv (MCL_CURRENT) 884 const_eio (MCL_CURRENT)
781 885
782 const_eio (MS_ASYNC) 886 const_eio (MS_ASYNC)
783 const_eio (MS_INVALIDATE) 887 const_eio (MS_INVALIDATE)
784 const_eio (MS_SYNC) 888 const_eio (MS_SYNC)
785 889
786 const_eio (MT_MODIFY) 890 const_eio (MT_MODIFY)
787 891
788 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE) 892 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE)
789 const_eio (SYNC_FILE_RANGE_WRITE) 893 const_eio (SYNC_FILE_RANGE_WRITE)
790 const_eio (SYNC_FILE_RANGE_WAIT_AFTER) 894 const_eio (SYNC_FILE_RANGE_WAIT_AFTER)
895
896 const_eio (FALLOC_FL_KEEP_SIZE)
791 897
792 const_eio (READDIR_DENTS) 898 const_eio (READDIR_DENTS)
793 const_eio (READDIR_DIRS_FIRST) 899 const_eio (READDIR_DIRS_FIRST)
794 const_eio (READDIR_STAT_ORDER) 900 const_eio (READDIR_STAT_ORDER)
795 const_eio (READDIR_FOUND_UNKNOWN) 901 const_eio (READDIR_FOUND_UNKNOWN)
822 /* atfork child called in fifo order, so before eio's handler */ 928 /* atfork child called in fifo order, so before eio's handler */
823 X_THREAD_ATFORK (0, 0, atfork_child); 929 X_THREAD_ATFORK (0, 0, atfork_child);
824} 930}
825 931
826void 932void
827max_poll_reqs (int nreqs) 933max_poll_reqs (unsigned int nreqs)
828 PROTOTYPE: $ 934 PROTOTYPE: $
829 CODE: 935 CODE:
830 eio_set_max_poll_reqs (nreqs); 936 eio_set_max_poll_reqs (nreqs);
831 937
832void 938void
834 PROTOTYPE: $ 940 PROTOTYPE: $
835 CODE: 941 CODE:
836 eio_set_max_poll_time (nseconds); 942 eio_set_max_poll_time (nseconds);
837 943
838void 944void
839min_parallel (int nthreads) 945min_parallel (unsigned int nthreads)
840 PROTOTYPE: $ 946 PROTOTYPE: $
841 CODE: 947 CODE:
842 eio_set_min_parallel (nthreads); 948 eio_set_min_parallel (nthreads);
843 949
844void 950void
845max_parallel (int nthreads) 951max_parallel (unsigned int nthreads)
846 PROTOTYPE: $ 952 PROTOTYPE: $
847 CODE: 953 CODE:
848 eio_set_max_parallel (nthreads); 954 eio_set_max_parallel (nthreads);
849 955
850void 956void
851max_idle (int nthreads) 957max_idle (unsigned int nthreads)
852 PROTOTYPE: $ 958 PROTOTYPE: $
853 CODE: 959 CODE:
854 eio_set_max_idle (nthreads); 960 eio_set_max_idle (nthreads);
855 961
856void 962void
963idle_timeout (unsigned int seconds)
964 PROTOTYPE: $
965 CODE:
966 eio_set_idle_timeout (seconds);
967
968void
857max_outstanding (int maxreqs) 969max_outstanding (unsigned int maxreqs)
858 PROTOTYPE: $ 970 PROTOTYPE: $
859 CODE: 971 CODE:
860 max_outstanding = maxreqs; 972 max_outstanding = maxreqs;
861 973
862void 974void
863aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef) 975aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef)
864 PROTOTYPE: $$$;$
865 PPCODE: 976 PPCODE:
866{ 977{
867 dREQ; 978 dREQ;
868 979
869 req->type = EIO_OPEN; 980 req->type = EIO_OPEN;
875 REQ_SEND; 986 REQ_SEND;
876} 987}
877 988
878void 989void
879aio_fsync (SV *fh, SV *callback=&PL_sv_undef) 990aio_fsync (SV *fh, SV *callback=&PL_sv_undef)
880 PROTOTYPE: $;$
881 ALIAS: 991 ALIAS:
882 aio_fsync = EIO_FSYNC 992 aio_fsync = EIO_FSYNC
883 aio_fdatasync = EIO_FDATASYNC 993 aio_fdatasync = EIO_FDATASYNC
884 PPCODE: 994 PPCODE:
885{ 995{
893 REQ_SEND (req); 1003 REQ_SEND (req);
894} 1004}
895 1005
896void 1006void
897aio_sync_file_range (SV *fh, off_t offset, size_t nbytes, UV flags, SV *callback=&PL_sv_undef) 1007aio_sync_file_range (SV *fh, off_t offset, size_t nbytes, UV flags, SV *callback=&PL_sv_undef)
898 PROTOTYPE: $$$$;$
899 PPCODE: 1008 PPCODE:
900{ 1009{
901 int fd = s_fileno_croak (fh, 0); 1010 int fd = s_fileno_croak (fh, 0);
902 dREQ; 1011 dREQ;
903 1012
910 1019
911 REQ_SEND (req); 1020 REQ_SEND (req);
912} 1021}
913 1022
914void 1023void
1024aio_fallocate (SV *fh, int mode, off_t offset, size_t len, SV *callback=&PL_sv_undef)
1025 PPCODE:
1026{
1027 int fd = s_fileno_croak (fh, 0);
1028 dREQ;
1029
1030 req->type = EIO_FALLOCATE;
1031 req->sv1 = newSVsv (fh);
1032 req->int1 = fd;
1033 req->int2 = mode;
1034 req->offs = offset;
1035 req->size = len;
1036
1037 REQ_SEND (req);
1038}
1039
1040void
915aio_close (SV *fh, SV *callback=&PL_sv_undef) 1041aio_close (SV *fh, SV *callback=&PL_sv_undef)
916 PROTOTYPE: $;$
917 PPCODE: 1042 PPCODE:
918{ 1043{
919 static int close_pipe = -1; /* dummy fd to close fds via dup2 */ 1044 static int close_pipe = -1; /* dummy fd to close fds via dup2 */
920 int fd = s_fileno_croak (fh, 0); 1045 int fd = s_fileno_croak (fh, 0);
921 dREQ; 1046 dREQ;
943void 1068void
944aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef) 1069aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef)
945 ALIAS: 1070 ALIAS:
946 aio_read = EIO_READ 1071 aio_read = EIO_READ
947 aio_write = EIO_WRITE 1072 aio_write = EIO_WRITE
948 PROTOTYPE: $$$$$;$
949 PPCODE: 1073 PPCODE:
950{ 1074{
951 STRLEN svlen; 1075 STRLEN svlen;
952 int fd = s_fileno_croak (fh, ix == EIO_WRITE); 1076 int fd = s_fileno_croak (fh, ix == EIO_WRITE);
953 char *svptr = SvPVbyte (data, svlen); 1077 char *svptr = SvPVbyte (data, svlen);
994 } 1118 }
995} 1119}
996 1120
997void 1121void
998aio_readlink (SV8 *path, SV *callback=&PL_sv_undef) 1122aio_readlink (SV8 *path, SV *callback=&PL_sv_undef)
999 PROTOTYPE: $$;$ 1123 ALIAS:
1124 aio_readlink = EIO_READLINK
1125 aio_realpath = EIO_REALPATH
1000 PPCODE: 1126 PPCODE:
1001{ 1127{
1002 SV *data; 1128 SV *data;
1003 dREQ; 1129 dREQ;
1004 1130
1005 req->type = EIO_READLINK; 1131 req->type = ix;
1006 req->sv1 = newSVsv (path); 1132 req->sv1 = newSVsv (path);
1007 req->ptr1 = SvPVbyte_nolen (req->sv1); 1133 req->ptr1 = SvPVbyte_nolen (req->sv1);
1008 1134
1009 REQ_SEND; 1135 REQ_SEND;
1010} 1136}
1011 1137
1012void 1138void
1013aio_sendfile (SV *out_fh, SV *in_fh, off_t in_offset, size_t length, SV *callback=&PL_sv_undef) 1139aio_sendfile (SV *out_fh, SV *in_fh, off_t in_offset, size_t length, SV *callback=&PL_sv_undef)
1014 PROTOTYPE: $$$$;$
1015 PPCODE: 1140 PPCODE:
1016{ 1141{
1017 int ifd = s_fileno_croak (in_fh , 0); 1142 int ifd = s_fileno_croak (in_fh , 0);
1018 int ofd = s_fileno_croak (out_fh, 1); 1143 int ofd = s_fileno_croak (out_fh, 1);
1019 dREQ; 1144 dREQ;
1029 REQ_SEND; 1154 REQ_SEND;
1030} 1155}
1031 1156
1032void 1157void
1033aio_readahead (SV *fh, off_t offset, size_t length, SV *callback=&PL_sv_undef) 1158aio_readahead (SV *fh, off_t offset, size_t length, SV *callback=&PL_sv_undef)
1034 PROTOTYPE: $$$;$
1035 PPCODE: 1159 PPCODE:
1036{ 1160{
1037 int fd = s_fileno_croak (fh, 0); 1161 int fd = s_fileno_croak (fh, 0);
1038 dREQ; 1162 dREQ;
1039 1163
1070 } 1194 }
1071 1195
1072 REQ_SEND; 1196 REQ_SEND;
1073} 1197}
1074 1198
1199UV
1200major (UV dev)
1201 ALIAS:
1202 minor = 1
1203 CODE:
1204 RETVAL = ix ? major (dev) : minor (dev);
1205 OUTPUT:
1206 RETVAL
1207
1208UV
1209makedev (UV maj, UV min)
1210 CODE:
1211 RETVAL = makedev (maj, min);
1212 OUTPUT:
1213 RETVAL
1214
1075void 1215void
1076aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef) 1216aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef)
1077 PPCODE: 1217 PPCODE:
1078{ 1218{
1079 dREQ; 1219 dREQ;
1240void 1380void
1241aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef) 1381aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef)
1242 ALIAS: 1382 ALIAS:
1243 aio_mtouch = EIO_MTOUCH 1383 aio_mtouch = EIO_MTOUCH
1244 aio_msync = EIO_MSYNC 1384 aio_msync = EIO_MSYNC
1245 PROTOTYPE: $$$$;$
1246 PPCODE: 1385 PPCODE:
1247{ 1386{
1248 STRLEN svlen; 1387 STRLEN svlen;
1388 char *svptr = SvPVbyte (data, svlen);
1249 UV len = SvUV (length); 1389 UV len = SvUV (length);
1250 char *svptr = SvPVbyte (data, svlen);
1251 1390
1252 if (offset < 0) 1391 if (offset < 0)
1253 offset += svlen; 1392 offset += svlen;
1254 1393
1255 if (offset < 0 || offset > svlen) 1394 if (offset < 0 || offset > svlen)
1260 1399
1261 { 1400 {
1262 dREQ; 1401 dREQ;
1263 1402
1264 req->type = ix; 1403 req->type = ix;
1265 req->size = len;
1266 req->sv2 = SvREFCNT_inc (data); 1404 req->sv2 = SvREFCNT_inc (data);
1267 req->ptr2 = (char *)svptr + offset; 1405 req->ptr2 = (char *)svptr + offset;
1406 req->size = len;
1268 req->int1 = flags; 1407 req->int1 = flags;
1269 1408
1270 REQ_SEND; 1409 REQ_SEND;
1271 } 1410 }
1272} 1411}
1273 1412
1274void 1413void
1414aio_mlock (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, SV *callback=&PL_sv_undef)
1415 PPCODE:
1416{
1417 STRLEN svlen;
1418 char *svptr = SvPVbyte (data, svlen);
1419 UV len = SvUV (length);
1420
1421 if (offset < 0)
1422 offset += svlen;
1423
1424 if (offset < 0 || offset > svlen)
1425 croak ("offset outside of scalar");
1426
1427 if (!SvOK (length) || len + offset > svlen)
1428 len = svlen - offset;
1429
1430 {
1431 dREQ;
1432
1433 req->type = EIO_MLOCK;
1434 req->sv2 = SvREFCNT_inc (data);
1435 req->ptr2 = (char *)svptr + offset;
1436 req->size = len;
1437
1438 REQ_SEND;
1439 }
1440}
1441
1442void
1443aio_mlockall (IV flags, SV *callback=&PL_sv_undef)
1444 PPCODE:
1445{
1446 dREQ;
1447
1448 req->type = EIO_MLOCKALL;
1449 req->int1 = flags;
1450
1451 REQ_SEND;
1452}
1453
1454void
1275aio_busy (double delay, SV *callback=&PL_sv_undef) 1455aio_busy (double delay, SV *callback=&PL_sv_undef)
1276 PPCODE: 1456 PPCODE:
1277{ 1457{
1278 dREQ; 1458 dREQ;
1279 1459
1283 REQ_SEND; 1463 REQ_SEND;
1284} 1464}
1285 1465
1286void 1466void
1287aio_group (SV *callback=&PL_sv_undef) 1467aio_group (SV *callback=&PL_sv_undef)
1288 PROTOTYPE: ;$
1289 PPCODE: 1468 PPCODE:
1290{ 1469{
1291 dREQ; 1470 dREQ;
1292 1471
1293 req->type = EIO_GROUP; 1472 req->type = EIO_GROUP;
1310 REQ_SEND; 1489 REQ_SEND;
1311} 1490}
1312 1491
1313int 1492int
1314aioreq_pri (int pri = 0) 1493aioreq_pri (int pri = 0)
1315 PROTOTYPE: ;$
1316 CODE: 1494 CODE:
1317 RETVAL = next_pri; 1495 RETVAL = next_pri;
1318 if (items > 0) 1496 if (items > 0)
1319 { 1497 {
1320 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN; 1498 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN;
1332 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX; 1510 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX;
1333 next_pri = nice; 1511 next_pri = nice;
1334 1512
1335void 1513void
1336flush () 1514flush ()
1337 PROTOTYPE:
1338 CODE: 1515 CODE:
1339 while (eio_nreqs ()) 1516 while (eio_nreqs ())
1340 { 1517 {
1341 poll_wait (); 1518 poll_wait ();
1342 poll_cb (); 1519 poll_cb ();
1343 } 1520 }
1344 1521
1345int 1522int
1346poll() 1523poll ()
1347 PROTOTYPE:
1348 CODE: 1524 CODE:
1349 poll_wait (); 1525 poll_wait ();
1350 RETVAL = poll_cb (); 1526 RETVAL = poll_cb ();
1351 OUTPUT: 1527 OUTPUT:
1352 RETVAL 1528 RETVAL
1353 1529
1354int 1530int
1355poll_fileno() 1531poll_fileno ()
1356 PROTOTYPE:
1357 CODE: 1532 CODE:
1358 RETVAL = s_epipe_fd (&respipe); 1533 RETVAL = s_epipe_fd (&respipe);
1359 OUTPUT: 1534 OUTPUT:
1360 RETVAL 1535 RETVAL
1361 1536
1362int 1537int
1363poll_cb(...) 1538poll_cb (...)
1364 PROTOTYPE: 1539 PROTOTYPE:
1365 CODE: 1540 CODE:
1366 RETVAL = poll_cb (); 1541 RETVAL = poll_cb ();
1367 OUTPUT: 1542 OUTPUT:
1368 RETVAL 1543 RETVAL
1369 1544
1370void 1545void
1371poll_wait() 1546poll_wait ()
1372 PROTOTYPE:
1373 CODE: 1547 CODE:
1374 poll_wait (); 1548 poll_wait ();
1375 1549
1376int 1550int
1377nreqs() 1551nreqs ()
1378 PROTOTYPE:
1379 CODE: 1552 CODE:
1380 RETVAL = eio_nreqs (); 1553 RETVAL = eio_nreqs ();
1381 OUTPUT: 1554 OUTPUT:
1382 RETVAL 1555 RETVAL
1383 1556
1384int 1557int
1385nready() 1558nready ()
1386 PROTOTYPE:
1387 CODE: 1559 CODE:
1388 RETVAL = eio_nready (); 1560 RETVAL = eio_nready ();
1389 OUTPUT: 1561 OUTPUT:
1390 RETVAL 1562 RETVAL
1391 1563
1392int 1564int
1393npending() 1565npending ()
1394 PROTOTYPE:
1395 CODE: 1566 CODE:
1396 RETVAL = eio_npending (); 1567 RETVAL = eio_npending ();
1397 OUTPUT: 1568 OUTPUT:
1398 RETVAL 1569 RETVAL
1399 1570
1400int 1571int
1401nthreads() 1572nthreads ()
1402 PROTOTYPE:
1403 CODE: 1573 CODE:
1404 RETVAL = eio_nthreads (); 1574 RETVAL = eio_nthreads ();
1405 OUTPUT: 1575 OUTPUT:
1406 RETVAL 1576 RETVAL
1407 1577
1408int 1578int
1409fadvise (aio_rfd fh, off_t offset, off_t length, IV advice) 1579fadvise (aio_rfd fh, off_t offset, off_t length, IV advice)
1410 PROTOTYPE: $$$$
1411 CODE: 1580 CODE:
1412 RETVAL = posix_fadvise (fh, offset, length, advice); 1581 RETVAL = posix_fadvise (fh, offset, length, advice);
1413 OUTPUT: 1582 OUTPUT:
1414 RETVAL 1583 RETVAL
1415 1584
1416ssize_t 1585ssize_t
1417sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count) 1586sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count)
1418 PROTOTYPE: $$$$
1419 CODE: 1587 CODE:
1420 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count); 1588 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count);
1421 OUTPUT: 1589 OUTPUT:
1422 RETVAL 1590 RETVAL
1423 1591
1424void 1592void
1425mmap (SV *scalar, size_t length, int prot, int flags, SV *fh, off_t offset = 0) 1593mmap (SV *scalar, size_t length, int prot, int flags, SV *fh, off_t offset = 0)
1426 PROTOTYPE: $$$$$;$
1427 PPCODE: 1594 PPCODE:
1428 sv_unmagic (scalar, MMAP_MAGIC); 1595 sv_unmagic (scalar, MMAP_MAGIC);
1429{ 1596{
1430 int fd = SvOK (fh) ? s_fileno_croak (fh, flags & PROT_WRITE) : -1; 1597 int fd = SvOK (fh) ? s_fileno_croak (fh, flags & PROT_WRITE) : -1;
1431 void *addr = (void *)mmap (0, length, prot, flags, fd, offset); 1598 void *addr = (void *)mmap (0, length, prot, flags, fd, offset);
1454 XSRETURN_YES; 1621 XSRETURN_YES;
1455} 1622}
1456 1623
1457void 1624void
1458munmap (SV *scalar) 1625munmap (SV *scalar)
1459 PROTOTYPE: $
1460 CODE: 1626 CODE:
1461 sv_unmagic (scalar, MMAP_MAGIC); 1627 sv_unmagic (scalar, MMAP_MAGIC);
1462 1628
1463int 1629int
1464madvise (SV *scalar, off_t offset, off_t length, IV advice_or_prot) 1630madvise (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef, IV advice_or_prot)
1465 ALIAS: 1631 ALIAS:
1466 mprotect = 1 1632 mprotect = 1
1467 PROTOTYPE: $$$$
1468 CODE: 1633 CODE:
1469{ 1634{
1470 STRLEN cur; 1635 STRLEN svlen;
1471 char *addr = SvPVbyte (scalar, cur); 1636 void *addr = SvPVbyte (scalar, svlen);
1637 size_t len = SvUV (length);
1472 1638
1473 if (offset > cur) 1639 if (offset < 0)
1474 RETVAL = errno = EFAULT; 1640 offset += svlen;
1475 else 1641
1642 if (offset < 0 || offset > svlen)
1643 croak ("offset outside of scalar");
1644
1645 if (!SvOK (length) || len + offset > svlen)
1646 len = svlen - offset;
1647
1648 addr = (void *)(((intptr_t)addr) + offset);
1649 eio_page_align (&addr, &len);
1650
1651 switch (ix)
1476 { 1652 {
1477 if (!SvOK (ST (2)))
1478 length = cur - offset;
1479
1480 if (offset + length > cur)
1481 RETVAL = errno = EFAULT;
1482 else
1483 switch (ix)
1484 {
1485 case 0: RETVAL = posix_madvise (addr + offset, length, advice_or_prot); break; 1653 case 0: RETVAL = posix_madvise (addr, len, advice_or_prot); break;
1486 case 1: RETVAL = mprotect (addr + offset, length, advice_or_prot); break; 1654 case 1: RETVAL = mprotect (addr, len, advice_or_prot); break;
1487 }
1488 } 1655 }
1489} 1656}
1490 OUTPUT: 1657 OUTPUT:
1491 RETVAL 1658 RETVAL
1492 1659
1493int 1660int
1494mlockall (int flags) 1661munlock (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef)
1495 PROTOTYPE: $
1496 CODE: 1662 CODE:
1663{
1664 STRLEN svlen;
1665 void *addr = SvPVbyte (scalar, svlen);
1666 size_t len = SvUV (length);
1667
1668 if (offset < 0)
1669 offset += svlen;
1670
1671 if (offset < 0 || offset > svlen)
1672 croak ("offset outside of scalar");
1673
1674 if (!SvOK (length) || len + offset > svlen)
1675 len = svlen - offset;
1676
1677 addr = (void *)(((intptr_t)addr) + offset);
1678 eio_page_align (&addr, &len);
1497#if _POSIX_MEMLOCK 1679#if _POSIX_MEMLOCK_RANGE
1498#if __GLIBC__ == 2 && __GLIBC_MINOR__ <= 7 1680 RETVAL = munlock (addr, len);
1499 extern int mallopt (int, int);
1500 mallopt (-6, 238); /* http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473812 */
1501#endif
1502 mlockall (flags);
1503#else 1681#else
1504 RETVAL = -1; 1682 RETVAL = ((errno = ENOSYS), -1);
1505 errno = ENOSYS;
1506#endif 1683#endif
1684}
1507 OUTPUT: 1685 OUTPUT:
1508 RETVAL 1686 RETVAL
1509 1687
1510int 1688int
1511munlockall () 1689munlockall ()
1512 PROTOTYPE:
1513 CODE: 1690 CODE:
1514#if _POSIX_MEMLOCK 1691#if _POSIX_MEMLOCK
1515 munlockall (); 1692 munlockall ();
1516#else 1693#else
1517 RETVAL = -1; 1694 RETVAL = -1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines