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.177 by root, Thu Dec 30 07:19:31 2010 UTC vs.
Revision 1.183 by root, Tue Jul 5 09:24:11 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
121#define EIO_NO_WRAPPERS 1 121#define EIO_NO_WRAPPERS 1
122 122
123#include "libeio/config.h" 123#include "libeio/config.h"
124#include "libeio/eio.h" 124#include "libeio/eio.h"
125 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
171
126#ifndef POSIX_FADV_NORMAL 172#ifndef POSIX_FADV_NORMAL
127# define POSIX_FADV_NORMAL 0 173# define POSIX_FADV_NORMAL 0
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
206#ifndef ST_NODIRATIME 252#ifndef ST_NODIRATIME
207# define ST_NODIRATIME 0 253# define ST_NODIRATIME 0
208#endif 254#endif
209#ifndef ST_RELATIME 255#ifndef ST_RELATIME
210# define ST_RELATIME 0 256# define ST_RELATIME 0
257#endif
258
259#ifndef S_IFIFO
260# define S_IFIFO 0
261#endif
262#ifndef S_IFCHR
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
211#endif 282#endif
212 283
213#ifndef MAP_ANONYMOUS 284#ifndef MAP_ANONYMOUS
214# ifdef MAP_ANON 285# ifdef MAP_ANON
215# define MAP_ANONYMOUS MAP_ANON 286# define MAP_ANONYMOUS MAP_ANON
229#ifndef MAP_POPULATE 300#ifndef MAP_POPULATE
230# define MAP_POPULATE 0 301# define MAP_POPULATE 0
231#endif 302#endif
232#ifndef MAP_NONBLOCK 303#ifndef MAP_NONBLOCK
233# 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)
234#endif 315#endif
235 316
236#ifndef PAGESIZE 317#ifndef PAGESIZE
237# define PAGESIZE sysconf (_SC_PAGESIZE) 318# define PAGESIZE sysconf (_SC_PAGESIZE)
238#endif 319#endif
504 case EIO_NOP: 585 case EIO_NOP:
505 case EIO_BUSY: 586 case EIO_BUSY:
506 break; 587 break;
507 588
508 case EIO_READLINK: 589 case EIO_READLINK:
590 case EIO_REALPATH:
509 if (req->result > 0) 591 if (req->result > 0)
510 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result))); 592 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result)));
511 break; 593 break;
512 594
513 case EIO_STAT: 595 case EIO_STAT:
637/*****************************************************************************/ 719/*****************************************************************************/
638 720
639#if !_POSIX_MAPPED_FILES 721#if !_POSIX_MAPPED_FILES
640# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1) 722# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
641# define munmap(addr,length) (errno = ENOSYS, -1) 723# define munmap(addr,length) (errno = ENOSYS, -1)
724#endif
725
726#if !_POSIX_MEMORY_PROTECTION
642# define mprotect(addr,len,prot) (errno = ENOSYS, -1) 727# define mprotect(addr,len,prot) (errno = ENOSYS, -1)
643# define PROT_NONE 0 728# define PROT_NONE 0
644# define PROT_WRITE 0 729# define PROT_WRITE 0
645# define MAP_PRIVATE 0 730# define MAP_PRIVATE 0
646# define MAP_SHARED 0 731# define MAP_SHARED 0
726 const_iv (O_RDWR) 811 const_iv (O_RDWR)
727 const_iv (O_CREAT) 812 const_iv (O_CREAT)
728 const_iv (O_TRUNC) 813 const_iv (O_TRUNC)
729 const_iv (O_EXCL) 814 const_iv (O_EXCL)
730 const_iv (O_APPEND) 815 const_iv (O_APPEND)
731#ifndef _WIN32 816
817 const_iv (O_ASYNC)
818 const_iv (O_DIRECT)
819 const_iv (O_NOATIME)
820
821 const_iv (O_CLOEXEC)
822 const_iv (O_NOCTTY)
823 const_iv (O_NOFOLLOW)
824 const_iv (O_NONBLOCK)
825 const_iv (O_EXEC)
826 const_iv (O_SEARCH)
827 const_iv (O_DIRECTORY)
828 const_iv (O_DSYNC)
829 const_iv (O_RSYNC)
830 const_iv (O_SYNC)
831 const_iv (O_TTY_INIT)
832
732 const_iv (S_IFIFO) 833 const_iv (S_IFIFO)
733#endif 834 const_iv (S_IFCHR)
835 const_iv (S_IFBLK)
836 const_iv (S_IFLNK)
837 const_iv (S_IFREG)
838 const_iv (S_IFDIR)
839 const_iv (S_IFWHT)
840 const_iv (S_IFSOCK)
841 const_iv (S_IFMT)
842
734 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL) 843 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
735 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL) 844 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
736 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM) 845 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
737 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE) 846 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
738 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED) 847 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
820 /* atfork child called in fifo order, so before eio's handler */ 929 /* atfork child called in fifo order, so before eio's handler */
821 X_THREAD_ATFORK (0, 0, atfork_child); 930 X_THREAD_ATFORK (0, 0, atfork_child);
822} 931}
823 932
824void 933void
825max_poll_reqs (int nreqs) 934max_poll_reqs (unsigned int nreqs)
826 PROTOTYPE: $ 935 PROTOTYPE: $
827 CODE: 936 CODE:
828 eio_set_max_poll_reqs (nreqs); 937 eio_set_max_poll_reqs (nreqs);
829 938
830void 939void
832 PROTOTYPE: $ 941 PROTOTYPE: $
833 CODE: 942 CODE:
834 eio_set_max_poll_time (nseconds); 943 eio_set_max_poll_time (nseconds);
835 944
836void 945void
837min_parallel (int nthreads) 946min_parallel (unsigned int nthreads)
838 PROTOTYPE: $ 947 PROTOTYPE: $
839 CODE: 948 CODE:
840 eio_set_min_parallel (nthreads); 949 eio_set_min_parallel (nthreads);
841 950
842void 951void
843max_parallel (int nthreads) 952max_parallel (unsigned int nthreads)
844 PROTOTYPE: $ 953 PROTOTYPE: $
845 CODE: 954 CODE:
846 eio_set_max_parallel (nthreads); 955 eio_set_max_parallel (nthreads);
847 956
848void 957void
849max_idle (int nthreads) 958max_idle (unsigned int nthreads)
850 PROTOTYPE: $ 959 PROTOTYPE: $
851 CODE: 960 CODE:
852 eio_set_max_idle (nthreads); 961 eio_set_max_idle (nthreads);
853 962
854void 963void
964idle_timeout (unsigned int seconds)
965 PROTOTYPE: $
966 CODE:
967 eio_set_idle_timeout (seconds);
968
969void
855max_outstanding (int maxreqs) 970max_outstanding (unsigned int maxreqs)
856 PROTOTYPE: $ 971 PROTOTYPE: $
857 CODE: 972 CODE:
858 max_outstanding = maxreqs; 973 max_outstanding = maxreqs;
859 974
860void 975void
987 } 1102 }
988} 1103}
989 1104
990void 1105void
991aio_readlink (SV8 *path, SV *callback=&PL_sv_undef) 1106aio_readlink (SV8 *path, SV *callback=&PL_sv_undef)
1107 ALIAS:
1108 aio_readlink = EIO_READLINK
1109 aio_realpath = EIO_REALPATH
992 PPCODE: 1110 PPCODE:
993{ 1111{
994 SV *data; 1112 SV *data;
995 dREQ; 1113 dREQ;
996 1114
997 req->type = EIO_READLINK; 1115 req->type = ix;
998 req->sv1 = newSVsv (path); 1116 req->sv1 = newSVsv (path);
999 req->ptr1 = SvPVbyte_nolen (req->sv1); 1117 req->ptr1 = SvPVbyte_nolen (req->sv1);
1000 1118
1001 REQ_SEND; 1119 REQ_SEND;
1002} 1120}
1060 } 1178 }
1061 1179
1062 REQ_SEND; 1180 REQ_SEND;
1063} 1181}
1064 1182
1183UV
1184major (UV dev)
1185 ALIAS:
1186 minor = 1
1187 CODE:
1188 RETVAL = ix ? major (dev) : minor (dev);
1189 OUTPUT:
1190 RETVAL
1191
1192UV
1193makedev (UV maj, UV min)
1194 CODE:
1195 RETVAL = makedev (maj, min);
1196 OUTPUT:
1197 RETVAL
1198
1065void 1199void
1066aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef) 1200aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef)
1067 PPCODE: 1201 PPCODE:
1068{ 1202{
1069 dREQ; 1203 dREQ;
1524 if (!SvOK (length) || len + offset > svlen) 1658 if (!SvOK (length) || len + offset > svlen)
1525 len = svlen - offset; 1659 len = svlen - offset;
1526 1660
1527 addr = (void *)(((intptr_t)addr) + offset); 1661 addr = (void *)(((intptr_t)addr) + offset);
1528 eio_page_align (&addr, &len); 1662 eio_page_align (&addr, &len);
1529#if _POSIX_MEMLOCK 1663#if _POSIX_MEMLOCK_RANGE
1530 RETVAL = munlock (addr, len); 1664 RETVAL = munlock (addr, len);
1531#else 1665#else
1532 RETVAL = ((errno = ENOSYS), -1); 1666 RETVAL = ((errno = ENOSYS), -1);
1533#endif 1667#endif
1534} 1668}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines