ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.c
(Generate patch)

Comparing libev/ev.c (file contents):
Revision 1.208 by root, Fri Feb 1 13:22:48 2008 UTC vs.
Revision 1.224 by root, Wed Apr 9 22:07:50 2008 UTC

39 39
40#ifdef __cplusplus 40#ifdef __cplusplus
41extern "C" { 41extern "C" {
42#endif 42#endif
43 43
44/* this big block deduces configuration from config.h */
44#ifndef EV_STANDALONE 45#ifndef EV_STANDALONE
45# ifdef EV_CONFIG_H 46# ifdef EV_CONFIG_H
46# include EV_CONFIG_H 47# include EV_CONFIG_H
47# else 48# else
48# include "config.h" 49# include "config.h"
118# else 119# else
119# define EV_USE_INOTIFY 0 120# define EV_USE_INOTIFY 0
120# endif 121# endif
121# endif 122# endif
122 123
124# ifndef EV_USE_EVENTFD
125# if HAVE_EVENTFD
126# define EV_USE_EVENTFD 1
127# else
128# define EV_USE_EVENTFD 0
129# endif
130# endif
131
123#endif 132#endif
124 133
125#include <math.h> 134#include <math.h>
126#include <stdlib.h> 135#include <stdlib.h>
127#include <fcntl.h> 136#include <fcntl.h>
152# ifndef EV_SELECT_IS_WINSOCKET 161# ifndef EV_SELECT_IS_WINSOCKET
153# define EV_SELECT_IS_WINSOCKET 1 162# define EV_SELECT_IS_WINSOCKET 1
154# endif 163# endif
155#endif 164#endif
156 165
157/**/ 166/* this block tries to deduce configuration from header-defined symbols and defaults */
158 167
159#ifndef EV_USE_MONOTONIC 168#ifndef EV_USE_MONOTONIC
160# define EV_USE_MONOTONIC 0 169# define EV_USE_MONOTONIC 0
161#endif 170#endif
162 171
179# define EV_USE_POLL 1 188# define EV_USE_POLL 1
180# endif 189# endif
181#endif 190#endif
182 191
183#ifndef EV_USE_EPOLL 192#ifndef EV_USE_EPOLL
193# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 4))
194# define EV_USE_EPOLL 1
195# else
184# define EV_USE_EPOLL 0 196# define EV_USE_EPOLL 0
197# endif
185#endif 198#endif
186 199
187#ifndef EV_USE_KQUEUE 200#ifndef EV_USE_KQUEUE
188# define EV_USE_KQUEUE 0 201# define EV_USE_KQUEUE 0
189#endif 202#endif
191#ifndef EV_USE_PORT 204#ifndef EV_USE_PORT
192# define EV_USE_PORT 0 205# define EV_USE_PORT 0
193#endif 206#endif
194 207
195#ifndef EV_USE_INOTIFY 208#ifndef EV_USE_INOTIFY
209# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 4))
210# define EV_USE_INOTIFY 1
211# else
196# define EV_USE_INOTIFY 0 212# define EV_USE_INOTIFY 0
213# endif
197#endif 214#endif
198 215
199#ifndef EV_PID_HASHSIZE 216#ifndef EV_PID_HASHSIZE
200# if EV_MINIMAL 217# if EV_MINIMAL
201# define EV_PID_HASHSIZE 1 218# define EV_PID_HASHSIZE 1
210# else 227# else
211# define EV_INOTIFY_HASHSIZE 16 228# define EV_INOTIFY_HASHSIZE 16
212# endif 229# endif
213#endif 230#endif
214 231
215/**/ 232#ifndef EV_USE_EVENTFD
233# if __linux && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 7))
234# define EV_USE_EVENTFD 1
235# else
236# define EV_USE_EVENTFD 0
237# endif
238#endif
239
240/* this block fixes any misconfiguration where we know we run into trouble otherwise */
216 241
217#ifndef CLOCK_MONOTONIC 242#ifndef CLOCK_MONOTONIC
218# undef EV_USE_MONOTONIC 243# undef EV_USE_MONOTONIC
219# define EV_USE_MONOTONIC 0 244# define EV_USE_MONOTONIC 0
220#endif 245#endif
239# include <sys/inotify.h> 264# include <sys/inotify.h>
240#endif 265#endif
241 266
242#if EV_SELECT_IS_WINSOCKET 267#if EV_SELECT_IS_WINSOCKET
243# include <winsock.h> 268# include <winsock.h>
269#endif
270
271#if EV_USE_EVENTFD
272/* our minimum requirement is glibc 2.7 which has the stub, but not the header */
273# include <stdint.h>
274# ifdef __cplusplus
275extern "C" {
276# endif
277int eventfd (unsigned int initval, int flags);
278# ifdef __cplusplus
279}
280# endif
244#endif 281#endif
245 282
246/**/ 283/**/
247 284
248/* 285/*
263# define expect(expr,value) __builtin_expect ((expr),(value)) 300# define expect(expr,value) __builtin_expect ((expr),(value))
264# define noinline __attribute__ ((noinline)) 301# define noinline __attribute__ ((noinline))
265#else 302#else
266# define expect(expr,value) (expr) 303# define expect(expr,value) (expr)
267# define noinline 304# define noinline
268# if __STDC_VERSION__ < 199901L 305# if __STDC_VERSION__ < 199901L && __GNUC__ < 2
269# define inline 306# define inline
270# endif 307# endif
271#endif 308#endif
272 309
273#define expect_false(expr) expect ((expr) != 0, 0) 310#define expect_false(expr) expect ((expr) != 0, 0)
323 perror (msg); 360 perror (msg);
324 abort (); 361 abort ();
325 } 362 }
326} 363}
327 364
365static void *
366ev_realloc_emul (void *ptr, long size)
367{
368 /* some systems, notably openbsd and darwin, fail to properly
369 * implement realloc (x, 0) (as required by both ansi c-98 and
370 * the single unix specification, so work around them here.
371 */
372
373 if (size)
374 return realloc (ptr, size);
375
376 free (ptr);
377 return 0;
378}
379
328static void *(*alloc)(void *ptr, long size); 380static void *(*alloc)(void *ptr, long size) = ev_realloc_emul;
329 381
330void 382void
331ev_set_allocator (void *(*cb)(void *ptr, long size)) 383ev_set_allocator (void *(*cb)(void *ptr, long size))
332{ 384{
333 alloc = cb; 385 alloc = cb;
334} 386}
335 387
336inline_speed void * 388inline_speed void *
337ev_realloc (void *ptr, long size) 389ev_realloc (void *ptr, long size)
338{ 390{
339 ptr = alloc ? alloc (ptr, size) : realloc (ptr, size); 391 ptr = alloc (ptr, size);
340 392
341 if (!ptr && size) 393 if (!ptr && size)
342 { 394 {
343 fprintf (stderr, "libev: cannot allocate %ld bytes, aborting.", size); 395 fprintf (stderr, "libev: cannot allocate %ld bytes, aborting.", size);
344 abort (); 396 abort ();
451 ts.tv_sec = (time_t)delay; 503 ts.tv_sec = (time_t)delay;
452 ts.tv_nsec = (long)((delay - (ev_tstamp)(ts.tv_sec)) * 1e9); 504 ts.tv_nsec = (long)((delay - (ev_tstamp)(ts.tv_sec)) * 1e9);
453 505
454 nanosleep (&ts, 0); 506 nanosleep (&ts, 0);
455#elif defined(_WIN32) 507#elif defined(_WIN32)
456 Sleep (delay * 1e3); 508 Sleep ((unsigned long)(delay * 1e3));
457#else 509#else
458 struct timeval tv; 510 struct timeval tv;
459 511
460 tv.tv_sec = (time_t)delay; 512 tv.tv_sec = (time_t)delay;
461 tv.tv_usec = (long)((delay - (ev_tstamp)(tv.tv_sec)) * 1e6); 513 tv.tv_usec = (long)((delay - (ev_tstamp)(tv.tv_sec)) * 1e6);
802static void noinline 854static void noinline
803evpipe_init (EV_P) 855evpipe_init (EV_P)
804{ 856{
805 if (!ev_is_active (&pipeev)) 857 if (!ev_is_active (&pipeev))
806 { 858 {
859#if EV_USE_EVENTFD
860 if ((evfd = eventfd (0, 0)) >= 0)
861 {
862 evpipe [0] = -1;
863 fd_intern (evfd);
864 ev_io_set (&pipeev, evfd, EV_READ);
865 }
866 else
867#endif
868 {
807 while (pipe (evpipe)) 869 while (pipe (evpipe))
808 syserr ("(libev) error creating signal/async pipe"); 870 syserr ("(libev) error creating signal/async pipe");
809 871
810 fd_intern (evpipe [0]); 872 fd_intern (evpipe [0]);
811 fd_intern (evpipe [1]); 873 fd_intern (evpipe [1]);
812
813 ev_io_set (&pipeev, evpipe [0], EV_READ); 874 ev_io_set (&pipeev, evpipe [0], EV_READ);
875 }
876
814 ev_io_start (EV_A_ &pipeev); 877 ev_io_start (EV_A_ &pipeev);
815 ev_unref (EV_A); /* child watcher should not keep loop alive */ 878 ev_unref (EV_A); /* watcher should not keep loop alive */
816 } 879 }
817} 880}
818 881
819void inline_size 882void inline_size
820evpipe_write (EV_P_ int sig, int async) 883evpipe_write (EV_P_ EV_ATOMIC_T *flag)
821{ 884{
822 if (!(gotasync || gotsig)) 885 if (!*flag)
823 { 886 {
824 int old_errno = errno; 887 int old_errno = errno; /* save errno because write might clobber it */
825 888
826 if (sig) gotsig = 1; 889 *flag = 1;
827 if (async) gotasync = 1;
828 890
891#if EV_USE_EVENTFD
892 if (evfd >= 0)
893 {
894 uint64_t counter = 1;
895 write (evfd, &counter, sizeof (uint64_t));
896 }
897 else
898#endif
829 write (evpipe [1], &old_errno, 1); 899 write (evpipe [1], &old_errno, 1);
900
830 errno = old_errno; 901 errno = old_errno;
831 } 902 }
832} 903}
833 904
834static void 905static void
835pipecb (EV_P_ ev_io *iow, int revents) 906pipecb (EV_P_ ev_io *iow, int revents)
836{ 907{
908#if EV_USE_EVENTFD
909 if (evfd >= 0)
837 { 910 {
838 int dummy; 911 uint64_t counter = 1;
912 read (evfd, &counter, sizeof (uint64_t));
913 }
914 else
915#endif
916 {
917 char dummy;
839 read (evpipe [0], &dummy, 1); 918 read (evpipe [0], &dummy, 1);
840 } 919 }
841 920
842 if (gotsig) 921 if (gotsig && ev_is_default_loop (EV_A))
843 { 922 {
844 int signum; 923 int signum;
845 gotsig = 0; 924 gotsig = 0;
846 925
847 for (signum = signalmax; signum--; ) 926 for (signum = signalmax; signum--; )
848 if (signals [signum].gotsig) 927 if (signals [signum].gotsig)
849 ev_feed_signal_event (EV_A_ signum + 1); 928 ev_feed_signal_event (EV_A_ signum + 1);
850 } 929 }
851 930
931#if EV_ASYNC_ENABLE
852 if (gotasync) 932 if (gotasync)
853 { 933 {
854 int i; 934 int i;
855 gotasync = 0; 935 gotasync = 0;
856 936
859 { 939 {
860 asyncs [i]->sent = 0; 940 asyncs [i]->sent = 0;
861 ev_feed_event (EV_A_ asyncs [i], EV_ASYNC); 941 ev_feed_event (EV_A_ asyncs [i], EV_ASYNC);
862 } 942 }
863 } 943 }
944#endif
864} 945}
865 946
866/*****************************************************************************/ 947/*****************************************************************************/
867 948
868static void 949static void
869sighandler (int signum) 950ev_sighandler (int signum)
870{ 951{
871#if EV_MULTIPLICITY 952#if EV_MULTIPLICITY
872 struct ev_loop *loop = &default_loop_struct; 953 struct ev_loop *loop = &default_loop_struct;
873#endif 954#endif
874 955
875#if _WIN32 956#if _WIN32
876 signal (signum, sighandler); 957 signal (signum, ev_sighandler);
877#endif 958#endif
878 959
879 signals [signum - 1].gotsig = 1; 960 signals [signum - 1].gotsig = 1;
880 evpipe_write (EV_A_ 1, 0); 961 evpipe_write (EV_A_ &gotsig);
881} 962}
882 963
883void noinline 964void noinline
884ev_feed_signal_event (EV_P_ int signum) 965ev_feed_signal_event (EV_P_ int signum)
885{ 966{
911#ifndef WIFCONTINUED 992#ifndef WIFCONTINUED
912# define WIFCONTINUED(status) 0 993# define WIFCONTINUED(status) 0
913#endif 994#endif
914 995
915void inline_speed 996void inline_speed
916child_reap (EV_P_ ev_signal *sw, int chain, int pid, int status) 997child_reap (EV_P_ int chain, int pid, int status)
917{ 998{
918 ev_child *w; 999 ev_child *w;
919 int traced = WIFSTOPPED (status) || WIFCONTINUED (status); 1000 int traced = WIFSTOPPED (status) || WIFCONTINUED (status);
920 1001
921 for (w = (ev_child *)childs [chain & (EV_PID_HASHSIZE - 1)]; w; w = (ev_child *)((WL)w)->next) 1002 for (w = (ev_child *)childs [chain & (EV_PID_HASHSIZE - 1)]; w; w = (ev_child *)((WL)w)->next)
922 { 1003 {
923 if ((w->pid == pid || !w->pid) 1004 if ((w->pid == pid || !w->pid)
924 && (!traced || (w->flags & 1))) 1005 && (!traced || (w->flags & 1)))
925 { 1006 {
926 ev_set_priority (w, ev_priority (sw)); /* need to do it *now* */ 1007 ev_set_priority (w, EV_MAXPRI); /* need to do it *now*, this *must* be the same prio as the signal watcher itself */
927 w->rpid = pid; 1008 w->rpid = pid;
928 w->rstatus = status; 1009 w->rstatus = status;
929 ev_feed_event (EV_A_ (W)w, EV_CHILD); 1010 ev_feed_event (EV_A_ (W)w, EV_CHILD);
930 } 1011 }
931 } 1012 }
945 if (!WCONTINUED 1026 if (!WCONTINUED
946 || errno != EINVAL 1027 || errno != EINVAL
947 || 0 >= (pid = waitpid (-1, &status, WNOHANG | WUNTRACED))) 1028 || 0 >= (pid = waitpid (-1, &status, WNOHANG | WUNTRACED)))
948 return; 1029 return;
949 1030
950 /* make sure we are called again until all childs have been reaped */ 1031 /* make sure we are called again until all children have been reaped */
951 /* we need to do it this way so that the callback gets called before we continue */ 1032 /* we need to do it this way so that the callback gets called before we continue */
952 ev_feed_event (EV_A_ (W)sw, EV_SIGNAL); 1033 ev_feed_event (EV_A_ (W)sw, EV_SIGNAL);
953 1034
954 child_reap (EV_A_ sw, pid, pid, status); 1035 child_reap (EV_A_ pid, pid, status);
955 if (EV_PID_HASHSIZE > 1) 1036 if (EV_PID_HASHSIZE > 1)
956 child_reap (EV_A_ sw, 0, pid, status); /* this might trigger a watcher twice, but feed_event catches that */ 1037 child_reap (EV_A_ 0, pid, status); /* this might trigger a watcher twice, but feed_event catches that */
957} 1038}
958 1039
959#endif 1040#endif
960 1041
961/*****************************************************************************/ 1042/*****************************************************************************/
1079 if (!clock_gettime (CLOCK_MONOTONIC, &ts)) 1160 if (!clock_gettime (CLOCK_MONOTONIC, &ts))
1080 have_monotonic = 1; 1161 have_monotonic = 1;
1081 } 1162 }
1082#endif 1163#endif
1083 1164
1084 ev_rt_now = ev_time (); 1165 ev_rt_now = ev_time ();
1085 mn_now = get_clock (); 1166 mn_now = get_clock ();
1086 now_floor = mn_now; 1167 now_floor = mn_now;
1087 rtmn_diff = ev_rt_now - mn_now; 1168 rtmn_diff = ev_rt_now - mn_now;
1088 1169
1089 io_blocktime = 0.; 1170 io_blocktime = 0.;
1090 timeout_blocktime = 0.; 1171 timeout_blocktime = 0.;
1172 backend = 0;
1173 backend_fd = -1;
1174 gotasync = 0;
1175#if EV_USE_INOTIFY
1176 fs_fd = -2;
1177#endif
1091 1178
1092 /* pid check not overridable via env */ 1179 /* pid check not overridable via env */
1093#ifndef _WIN32 1180#ifndef _WIN32
1094 if (flags & EVFLAG_FORKCHECK) 1181 if (flags & EVFLAG_FORKCHECK)
1095 curpid = getpid (); 1182 curpid = getpid ();
1101 flags = atoi (getenv ("LIBEV_FLAGS")); 1188 flags = atoi (getenv ("LIBEV_FLAGS"));
1102 1189
1103 if (!(flags & 0x0000ffffUL)) 1190 if (!(flags & 0x0000ffffUL))
1104 flags |= ev_recommended_backends (); 1191 flags |= ev_recommended_backends ();
1105 1192
1106 backend = 0;
1107 backend_fd = -1;
1108#if EV_USE_INOTIFY
1109 fs_fd = -2;
1110#endif
1111
1112#if EV_USE_PORT 1193#if EV_USE_PORT
1113 if (!backend && (flags & EVBACKEND_PORT )) backend = port_init (EV_A_ flags); 1194 if (!backend && (flags & EVBACKEND_PORT )) backend = port_init (EV_A_ flags);
1114#endif 1195#endif
1115#if EV_USE_KQUEUE 1196#if EV_USE_KQUEUE
1116 if (!backend && (flags & EVBACKEND_KQUEUE)) backend = kqueue_init (EV_A_ flags); 1197 if (!backend && (flags & EVBACKEND_KQUEUE)) backend = kqueue_init (EV_A_ flags);
1138 if (ev_is_active (&pipeev)) 1219 if (ev_is_active (&pipeev))
1139 { 1220 {
1140 ev_ref (EV_A); /* signal watcher */ 1221 ev_ref (EV_A); /* signal watcher */
1141 ev_io_stop (EV_A_ &pipeev); 1222 ev_io_stop (EV_A_ &pipeev);
1142 1223
1143 close (evpipe [0]); evpipe [0] = 0; 1224#if EV_USE_EVENTFD
1144 close (evpipe [1]); evpipe [1] = 0; 1225 if (evfd >= 0)
1226 close (evfd);
1227#endif
1228
1229 if (evpipe [0] >= 0)
1230 {
1231 close (evpipe [0]);
1232 close (evpipe [1]);
1233 }
1145 } 1234 }
1146 1235
1147#if EV_USE_INOTIFY 1236#if EV_USE_INOTIFY
1148 if (fs_fd >= 0) 1237 if (fs_fd >= 0)
1149 close (fs_fd); 1238 close (fs_fd);
1187#if EV_FORK_ENABLE 1276#if EV_FORK_ENABLE
1188 array_free (fork, EMPTY); 1277 array_free (fork, EMPTY);
1189#endif 1278#endif
1190 array_free (prepare, EMPTY); 1279 array_free (prepare, EMPTY);
1191 array_free (check, EMPTY); 1280 array_free (check, EMPTY);
1281#if EV_ASYNC_ENABLE
1282 array_free (async, EMPTY);
1283#endif
1192 1284
1193 backend = 0; 1285 backend = 0;
1194} 1286}
1195 1287
1196void inline_size infy_fork (EV_P); 1288void inline_size infy_fork (EV_P);
1212#endif 1304#endif
1213 1305
1214 if (ev_is_active (&pipeev)) 1306 if (ev_is_active (&pipeev))
1215 { 1307 {
1216 /* this "locks" the handlers against writing to the pipe */ 1308 /* this "locks" the handlers against writing to the pipe */
1309 /* while we modify the fd vars */
1310 gotsig = 1;
1311#if EV_ASYNC_ENABLE
1217 gotsig = gotasync = 1; 1312 gotasync = 1;
1313#endif
1218 1314
1219 ev_ref (EV_A); 1315 ev_ref (EV_A);
1220 ev_io_stop (EV_A_ &pipeev); 1316 ev_io_stop (EV_A_ &pipeev);
1317
1318#if EV_USE_EVENTFD
1319 if (evfd >= 0)
1320 close (evfd);
1321#endif
1322
1323 if (evpipe [0] >= 0)
1324 {
1221 close (evpipe [0]); 1325 close (evpipe [0]);
1222 close (evpipe [1]); 1326 close (evpipe [1]);
1327 }
1223 1328
1224 evpipe_init (EV_A); 1329 evpipe_init (EV_A);
1225 /* now iterate over everything, in case we missed something */ 1330 /* now iterate over everything, in case we missed something */
1226 pipecb (EV_A_ &pipeev, EV_READ); 1331 pipecb (EV_A_ &pipeev, EV_READ);
1227 } 1332 }
1534static int loop_done; 1639static int loop_done;
1535 1640
1536void 1641void
1537ev_loop (EV_P_ int flags) 1642ev_loop (EV_P_ int flags)
1538{ 1643{
1539 loop_done = flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK) 1644 loop_done = EVUNLOOP_CANCEL;
1540 ? EVUNLOOP_ONE
1541 : EVUNLOOP_CANCEL;
1542 1645
1543 call_pending (EV_A); /* in case we recurse, ensure ordering stays nice and clean */ 1646 call_pending (EV_A); /* in case we recurse, ensure ordering stays nice and clean */
1544 1647
1545 do 1648 do
1546 { 1649 {
1642 /* queue check watchers, to be executed first */ 1745 /* queue check watchers, to be executed first */
1643 if (expect_false (checkcnt)) 1746 if (expect_false (checkcnt))
1644 queue_events (EV_A_ (W *)checks, checkcnt, EV_CHECK); 1747 queue_events (EV_A_ (W *)checks, checkcnt, EV_CHECK);
1645 1748
1646 call_pending (EV_A); 1749 call_pending (EV_A);
1647
1648 } 1750 }
1649 while (expect_true (activecnt && !loop_done)); 1751 while (expect_true (
1752 activecnt
1753 && !loop_done
1754 && !(flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK))
1755 ));
1650 1756
1651 if (loop_done == EVUNLOOP_ONE) 1757 if (loop_done == EVUNLOOP_ONE)
1652 loop_done = EVUNLOOP_CANCEL; 1758 loop_done = EVUNLOOP_CANCEL;
1653} 1759}
1654 1760
1922 wlist_add (&signals [w->signum - 1].head, (WL)w); 2028 wlist_add (&signals [w->signum - 1].head, (WL)w);
1923 2029
1924 if (!((WL)w)->next) 2030 if (!((WL)w)->next)
1925 { 2031 {
1926#if _WIN32 2032#if _WIN32
1927 signal (w->signum, sighandler); 2033 signal (w->signum, ev_sighandler);
1928#else 2034#else
1929 struct sigaction sa; 2035 struct sigaction sa;
1930 sa.sa_handler = sighandler; 2036 sa.sa_handler = ev_sighandler;
1931 sigfillset (&sa.sa_mask); 2037 sigfillset (&sa.sa_mask);
1932 sa.sa_flags = SA_RESTART; /* if restarting works we save one iteration */ 2038 sa.sa_flags = SA_RESTART; /* if restarting works we save one iteration */
1933 sigaction (w->signum, &sa, 0); 2039 sigaction (w->signum, &sa, 0);
1934#endif 2040#endif
1935 } 2041 }
2458 2564
2459void 2565void
2460ev_async_send (EV_P_ ev_async *w) 2566ev_async_send (EV_P_ ev_async *w)
2461{ 2567{
2462 w->sent = 1; 2568 w->sent = 1;
2463 evpipe_write (EV_A_ 0, 1); 2569 evpipe_write (EV_A_ &gotasync);
2464} 2570}
2465#endif 2571#endif
2466 2572
2467/*****************************************************************************/ 2573/*****************************************************************************/
2468 2574

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines