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.176 by root, Thu Dec 2 10:04:47 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
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
353 /* do not recreate the result IV from scratch each time */ 434 /* do not recreate the result IV from scratch each time */
354 if (expect_true (sv_result_cache)) 435 if (expect_true (sv_result_cache))
355 { 436 {
356 sv_result = sv_result_cache; sv_result_cache = 0; 437 sv_result = sv_result_cache; sv_result_cache = 0;
357 SvIV_set (sv_result, req->result); 438 SvIV_set (sv_result, req->result);
439 SvIOK_only (sv_result);
358 } 440 }
359 else 441 else
360 { 442 {
361 sv_result = newSViv (req->result); 443 sv_result = newSViv (req->result);
362 SvREADONLY_on (sv_result); 444 SvREADONLY_on (sv_result);
503 case EIO_NOP: 585 case EIO_NOP:
504 case EIO_BUSY: 586 case EIO_BUSY:
505 break; 587 break;
506 588
507 case EIO_READLINK: 589 case EIO_READLINK:
590 case EIO_REALPATH:
508 if (req->result > 0) 591 if (req->result > 0)
509 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result))); 592 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result)));
510 break; 593 break;
511 594
512 case EIO_STAT: 595 case EIO_STAT:
526 SvSETMAGIC (req->sv2); 609 SvSETMAGIC (req->sv2);
527 PUSHs (sv_result); 610 PUSHs (sv_result);
528 } 611 }
529 break; 612 break;
530 613
531 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 */
532 if (req->result > 0) 615 if (req->result > 0)
533 SvIV_set (sv_result, 0); 616 SvIV_set (sv_result, 0);
534 /* FALLTHROUGH */ 617 /* FALLTHROUGH */
535 618
536 default: 619 default:
584 grp->sv2 = 0; 667 grp->sv2 = 0;
585 668
586 eio_grp_cancel (grp); 669 eio_grp_cancel (grp);
587} 670}
588 671
589static void
590create_respipe (void) 672static void create_respipe (void)
591{ 673{
592 if (s_epipe_renew (&respipe)) 674 if (s_epipe_renew (&respipe))
593 croak ("IO::AIO: unable to initialize result pipe"); 675 croak ("IO::AIO: unable to initialize result pipe");
594} 676}
595 677
636/*****************************************************************************/ 718/*****************************************************************************/
637 719
638#if !_POSIX_MAPPED_FILES 720#if !_POSIX_MAPPED_FILES
639# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1) 721# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
640# define munmap(addr,length) (errno = ENOSYS, -1) 722# define munmap(addr,length) (errno = ENOSYS, -1)
723#endif
724
725#if !_POSIX_MEMORY_PROTECTION
641# define mprotect(addr,len,prot) (errno = ENOSYS, -1) 726# define mprotect(addr,len,prot) (errno = ENOSYS, -1)
642# define PROT_NONE 0 727# define PROT_NONE 0
643# define PROT_WRITE 0 728# define PROT_WRITE 0
644# define MAP_PRIVATE 0 729# define MAP_PRIVATE 0
645# define MAP_SHARED 0 730# define MAP_SHARED 0
646# define MAP_FIXED 0 731# define MAP_FIXED 0
647#endif 732#endif
648 733
649#define MMAP_MAGIC PERL_MAGIC_ext 734#define MMAP_MAGIC PERL_MAGIC_ext
650 735
651static int
652mmap_free (pTHX_ SV *sv, MAGIC *mg) 736static int mmap_free (pTHX_ SV *sv, MAGIC *mg)
653{ 737{
654 int old_errno = errno; 738 int old_errno = errno;
655 munmap (mg->mg_ptr, (size_t)mg->mg_obj); 739 munmap (mg->mg_ptr, (size_t)mg->mg_obj);
656 errno = old_errno; 740 errno = old_errno;
657 741
673 0, 0, 0, 0, mmap_free 757 0, 0, 0, 0, mmap_free
674}; 758};
675 759
676/*****************************************************************************/ 760/*****************************************************************************/
677 761
678static SV *
679get_cb (SV *cb_sv) 762static SV * get_cb (SV *cb_sv)
680{ 763{
681 SvGETMAGIC (cb_sv); 764 SvGETMAGIC (cb_sv);
682 return SvOK (cb_sv) ? s_get_cv_croak (cb_sv) : 0; 765 return SvOK (cb_sv) ? s_get_cv_croak (cb_sv) : 0;
683} 766}
684 767
725 const_iv (O_RDWR) 808 const_iv (O_RDWR)
726 const_iv (O_CREAT) 809 const_iv (O_CREAT)
727 const_iv (O_TRUNC) 810 const_iv (O_TRUNC)
728 const_iv (O_EXCL) 811 const_iv (O_EXCL)
729 const_iv (O_APPEND) 812 const_iv (O_APPEND)
730#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
731 const_iv (S_IFIFO) 830 const_iv (S_IFIFO)
732#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
733 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL) 840 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
734 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL) 841 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
735 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM) 842 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
736 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE) 843 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
737 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED) 844 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
784 891
785 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE) 892 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE)
786 const_eio (SYNC_FILE_RANGE_WRITE) 893 const_eio (SYNC_FILE_RANGE_WRITE)
787 const_eio (SYNC_FILE_RANGE_WAIT_AFTER) 894 const_eio (SYNC_FILE_RANGE_WAIT_AFTER)
788 895
896 const_eio (FALLOC_FL_KEEP_SIZE)
897
789 const_eio (READDIR_DENTS) 898 const_eio (READDIR_DENTS)
790 const_eio (READDIR_DIRS_FIRST) 899 const_eio (READDIR_DIRS_FIRST)
791 const_eio (READDIR_STAT_ORDER) 900 const_eio (READDIR_STAT_ORDER)
792 const_eio (READDIR_FOUND_UNKNOWN) 901 const_eio (READDIR_FOUND_UNKNOWN)
793 902
819 /* atfork child called in fifo order, so before eio's handler */ 928 /* atfork child called in fifo order, so before eio's handler */
820 X_THREAD_ATFORK (0, 0, atfork_child); 929 X_THREAD_ATFORK (0, 0, atfork_child);
821} 930}
822 931
823void 932void
824max_poll_reqs (int nreqs) 933max_poll_reqs (unsigned int nreqs)
825 PROTOTYPE: $ 934 PROTOTYPE: $
826 CODE: 935 CODE:
827 eio_set_max_poll_reqs (nreqs); 936 eio_set_max_poll_reqs (nreqs);
828 937
829void 938void
831 PROTOTYPE: $ 940 PROTOTYPE: $
832 CODE: 941 CODE:
833 eio_set_max_poll_time (nseconds); 942 eio_set_max_poll_time (nseconds);
834 943
835void 944void
836min_parallel (int nthreads) 945min_parallel (unsigned int nthreads)
837 PROTOTYPE: $ 946 PROTOTYPE: $
838 CODE: 947 CODE:
839 eio_set_min_parallel (nthreads); 948 eio_set_min_parallel (nthreads);
840 949
841void 950void
842max_parallel (int nthreads) 951max_parallel (unsigned int nthreads)
843 PROTOTYPE: $ 952 PROTOTYPE: $
844 CODE: 953 CODE:
845 eio_set_max_parallel (nthreads); 954 eio_set_max_parallel (nthreads);
846 955
847void 956void
848max_idle (int nthreads) 957max_idle (unsigned int nthreads)
849 PROTOTYPE: $ 958 PROTOTYPE: $
850 CODE: 959 CODE:
851 eio_set_max_idle (nthreads); 960 eio_set_max_idle (nthreads);
852 961
853void 962void
963idle_timeout (unsigned int seconds)
964 PROTOTYPE: $
965 CODE:
966 eio_set_idle_timeout (seconds);
967
968void
854max_outstanding (int maxreqs) 969max_outstanding (unsigned int maxreqs)
855 PROTOTYPE: $ 970 PROTOTYPE: $
856 CODE: 971 CODE:
857 max_outstanding = maxreqs; 972 max_outstanding = maxreqs;
858 973
859void 974void
899 req->sv1 = newSVsv (fh); 1014 req->sv1 = newSVsv (fh);
900 req->int1 = fd; 1015 req->int1 = fd;
901 req->offs = offset; 1016 req->offs = offset;
902 req->size = nbytes; 1017 req->size = nbytes;
903 req->int2 = flags; 1018 req->int2 = flags;
1019
1020 REQ_SEND (req);
1021}
1022
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;
904 1036
905 REQ_SEND (req); 1037 REQ_SEND (req);
906} 1038}
907 1039
908void 1040void
986 } 1118 }
987} 1119}
988 1120
989void 1121void
990aio_readlink (SV8 *path, SV *callback=&PL_sv_undef) 1122aio_readlink (SV8 *path, SV *callback=&PL_sv_undef)
1123 ALIAS:
1124 aio_readlink = EIO_READLINK
1125 aio_realpath = EIO_REALPATH
991 PPCODE: 1126 PPCODE:
992{ 1127{
993 SV *data; 1128 SV *data;
994 dREQ; 1129 dREQ;
995 1130
996 req->type = EIO_READLINK; 1131 req->type = ix;
997 req->sv1 = newSVsv (path); 1132 req->sv1 = newSVsv (path);
998 req->ptr1 = SvPVbyte_nolen (req->sv1); 1133 req->ptr1 = SvPVbyte_nolen (req->sv1);
999 1134
1000 REQ_SEND; 1135 REQ_SEND;
1001} 1136}
1058 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path))); 1193 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1059 } 1194 }
1060 1195
1061 REQ_SEND; 1196 REQ_SEND;
1062} 1197}
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
1063 1214
1064void 1215void
1065aio_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)
1066 PPCODE: 1217 PPCODE:
1067{ 1218{
1523 if (!SvOK (length) || len + offset > svlen) 1674 if (!SvOK (length) || len + offset > svlen)
1524 len = svlen - offset; 1675 len = svlen - offset;
1525 1676
1526 addr = (void *)(((intptr_t)addr) + offset); 1677 addr = (void *)(((intptr_t)addr) + offset);
1527 eio_page_align (&addr, &len); 1678 eio_page_align (&addr, &len);
1528#if _POSIX_MEMLOCK 1679#if _POSIX_MEMLOCK_RANGE
1529 RETVAL = munlock (addr, len); 1680 RETVAL = munlock (addr, len);
1530#else 1681#else
1531 RETVAL = ((errno = ENOSYS), -1); 1682 RETVAL = ((errno = ENOSYS), -1);
1532#endif 1683#endif
1533} 1684}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines