ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV/EV.xs
(Generate patch)

Comparing EV/EV.xs (file contents):
Revision 1.129 by root, Tue Jul 14 20:34:58 2009 UTC vs.
Revision 1.137 by root, Tue Mar 16 20:43:05 2010 UTC

13sv_fileno (SV *fh) 13sv_fileno (SV *fh)
14{ 14{
15 return s_fileno (fh, 0); 15 return s_fileno (fh, 0);
16} 16}
17 17
18#define EV_STANDALONE 1
18#define EV_PROTOTYPES 1 19#define EV_PROTOTYPES 1
19#define EV_USE_NANOSLEEP EV_USE_MONOTONIC 20#define EV_USE_NANOSLEEP EV_USE_MONOTONIC
20#define EV_H <ev.h> 21#define EV_H <ev.h>
22#define EV_CONFIG_H error
21#include "EV/EVAPI.h" 23#include "EV/EVAPI.h"
22 24
23#define EV_SELECT_IS_WINSOCKET 0 25#define EV_SELECT_IS_WINSOCKET 0
24#ifdef _WIN32 26#ifdef _WIN32
25# define EV_SELECT_USE_FD_SET 0 27# define EV_SELECT_USE_FD_SET 0
64 REF (w); \ 66 REF (w); \
65 ev_ ## type ## _stop (e_loop (w), w); \ 67 ev_ ## type ## _stop (e_loop (w), w); \
66 } while (0) 68 } while (0)
67 69
68#define RESET(type,w,seta) \ 70#define RESET(type,w,seta) \
69 do { \ 71 do { \
70 int active = ev_is_active (w); \ 72 int active = ev_is_active (w); \
71 if (active) STOP (type, w); \ 73 if (active) STOP (type, w); \
72 ev_ ## type ## _set seta; \ 74 ev_ ## type ## _set seta; \
73 if (active) START (type, w); \ 75 if (active) START (type, w); \
74 } while (0) 76 } while (0)
75 77
76typedef int Signal; 78typedef int Signal;
79
80/* horrible... */
81#define CHECK_SIGNAL_CAN_START(w) \
82 do { \
83 /* dive into the internals of libev to avoid aborting in libev */ \
84 if (signals [(w)->signum - 1].loop \
85 && signals [(w)->signum - 1].loop != e_loop (w)) \
86 croak ("unable to start signal watcher, signal %d already registered in another loop", w->signum); \
87 } while (0)
88
89#define START_SIGNAL(w) \
90 do { \
91 CHECK_SIGNAL_CAN_START (w); \
92 START (signal, w); \
93 } while (0) \
94
95#define RESET_SIGNAL(w,seta) \
96 do { \
97 int active = ev_is_active (w); \
98 if (active) STOP (signal, w); \
99 ev_ ## signal ## _set seta; \
100 if (active) START_SIGNAL (w); \
101 } while (0)
77 102
78static SV *default_loop_sv; 103static SV *default_loop_sv;
79 104
80static struct EVAPI evapi; 105static struct EVAPI evapi;
81 106
335 const_iv (EV_, UNDEF) 360 const_iv (EV_, UNDEF)
336 const_iv (EV_, NONE) 361 const_iv (EV_, NONE)
337 const_iv (EV_, READ) 362 const_iv (EV_, READ)
338 const_iv (EV_, WRITE) 363 const_iv (EV_, WRITE)
339 const_iv (EV_, IO) 364 const_iv (EV_, IO)
340 const_iv (EV_, TIMEOUT) 365 const_iv (EV_, TIMEOUT) /* deprecated */
341 const_iv (EV_, TIMER) 366 const_iv (EV_, TIMER)
342 const_iv (EV_, PERIODIC) 367 const_iv (EV_, PERIODIC)
343 const_iv (EV_, SIGNAL) 368 const_iv (EV_, SIGNAL)
344 const_iv (EV_, CHILD) 369 const_iv (EV_, CHILD)
345 const_iv (EV_, STAT) 370 const_iv (EV_, STAT)
363 const_iv (EV, BACKEND_POLL) 388 const_iv (EV, BACKEND_POLL)
364 const_iv (EV, BACKEND_EPOLL) 389 const_iv (EV, BACKEND_EPOLL)
365 const_iv (EV, BACKEND_KQUEUE) 390 const_iv (EV, BACKEND_KQUEUE)
366 const_iv (EV, BACKEND_DEVPOLL) 391 const_iv (EV, BACKEND_DEVPOLL)
367 const_iv (EV, BACKEND_PORT) 392 const_iv (EV, BACKEND_PORT)
393 const_iv (EV, BACKEND_ALL)
368 const_iv (EV, FLAG_AUTO) 394 const_iv (EV, FLAG_AUTO)
395 const_iv (EV, FLAG_FORKCHECK)
396 const_iv (EV, FLAG_SIGNALFD)
369 const_iv (EV, FLAG_NOENV) 397 const_iv (EV, FLAG_NOENV)
398 const_iv (EV, FLAG_NOSIGFD) /* compatibility, always 0 */
370 const_iv (EV, FLAG_FORKCHECK) 399 const_iv (EV, FLAG_NOINOTIFY)
371 400
372 const_iv (EV_, VERSION_MAJOR) 401 const_iv (EV_, VERSION_MAJOR)
373 const_iv (EV_, VERSION_MINOR) 402 const_iv (EV_, VERSION_MINOR)
374 }; 403 };
375 404
406 evapi.time_ = ev_time; 435 evapi.time_ = ev_time;
407 evapi.sleep_ = ev_sleep; 436 evapi.sleep_ = ev_sleep;
408 evapi.loop_new = ev_loop_new; 437 evapi.loop_new = ev_loop_new;
409 evapi.loop_destroy = ev_loop_destroy; 438 evapi.loop_destroy = ev_loop_destroy;
410 evapi.loop_fork = ev_loop_fork; 439 evapi.loop_fork = ev_loop_fork;
411 evapi.loop_count = ev_loop_count; 440 evapi.iteration = ev_iteration;
412 evapi.loop_depth = ev_loop_depth; 441 evapi.depth = ev_depth;
413 evapi.set_userdata = ev_set_userdata; 442 evapi.set_userdata = ev_set_userdata;
414 evapi.userdata = ev_userdata; 443 evapi.userdata = ev_userdata;
415 evapi.now = ev_now; 444 evapi.now = ev_now;
416 evapi.now_update = ev_now_update; 445 evapi.now_update = ev_now_update;
417 evapi.suspend = ev_suspend; 446 evapi.suspend = ev_suspend;
418 evapi.resume = ev_resume; 447 evapi.resume = ev_resume;
419 evapi.backend = ev_backend; 448 evapi.backend = ev_backend;
420 evapi.unloop = ev_unloop; 449 evapi.unloop = ev_unloop;
421 evapi.invoke_pending = ev_invoke_pending; 450 evapi.invoke_pending = ev_invoke_pending;
422 evapi.pending_count = ev_pending_count; 451 evapi.pending_count = ev_pending_count;
452 evapi.verify = ev_verify;
423 evapi.set_loop_release_cb = ev_set_loop_release_cb; 453 evapi.set_loop_release_cb = ev_set_loop_release_cb;
424 evapi.set_invoke_pending_cb= ev_set_invoke_pending_cb; 454 evapi.set_invoke_pending_cb= ev_set_invoke_pending_cb;
425 evapi.ref = ev_ref; 455 evapi.ref = ev_ref;
426 evapi.unref = ev_unref; 456 evapi.unref = ev_unref;
427 evapi.loop = ev_loop; 457 evapi.loop = ev_loop;
429 evapi.io_start = ev_io_start; 459 evapi.io_start = ev_io_start;
430 evapi.io_stop = ev_io_stop; 460 evapi.io_stop = ev_io_stop;
431 evapi.timer_start = ev_timer_start; 461 evapi.timer_start = ev_timer_start;
432 evapi.timer_stop = ev_timer_stop; 462 evapi.timer_stop = ev_timer_stop;
433 evapi.timer_again = ev_timer_again; 463 evapi.timer_again = ev_timer_again;
464 evapi.timer_remaining = ev_timer_remaining;
434 evapi.periodic_start = ev_periodic_start; 465 evapi.periodic_start = ev_periodic_start;
435 evapi.periodic_stop = ev_periodic_stop; 466 evapi.periodic_stop = ev_periodic_stop;
436 evapi.signal_start = ev_signal_start; 467 evapi.signal_start = ev_signal_start;
437 evapi.signal_stop = ev_signal_stop; 468 evapi.signal_stop = ev_signal_stop;
438 evapi.idle_start = ev_idle_start; 469 evapi.idle_start = ev_idle_start;
512 C_ARGS: evapi.default_loop 543 C_ARGS: evapi.default_loop
513 544
514unsigned int ev_backend () 545unsigned int ev_backend ()
515 C_ARGS: evapi.default_loop 546 C_ARGS: evapi.default_loop
516 547
517void ev_loop_verify () 548void ev_verify ()
518 C_ARGS: evapi.default_loop 549 C_ARGS: evapi.default_loop
519 550
520unsigned int ev_loop_count () 551unsigned int ev_iteration ()
521 C_ARGS: evapi.default_loop 552 C_ARGS: evapi.default_loop
522 553
523unsigned int ev_loop_depth () 554unsigned int ev_depth ()
524 C_ARGS: evapi.default_loop 555 C_ARGS: evapi.default_loop
525 556
526void ev_set_io_collect_interval (NV interval) 557void ev_set_io_collect_interval (NV interval)
527 C_ARGS: evapi.default_loop, interval 558 C_ARGS: evapi.default_loop, interval
528 559
554 C_ARGS: evapi.default_loop 585 C_ARGS: evapi.default_loop
555 586
556ev_io *io (SV *fh, int events, SV *cb) 587ev_io *io (SV *fh, int events, SV *cb)
557 ALIAS: 588 ALIAS:
558 io_ns = 1 589 io_ns = 1
590 _ae_io = 2
559 CODE: 591 CODE:
560{ 592{
561 int fd = s_fileno (fh, events & EV_WRITE); 593 int fd = s_fileno (fh, events & EV_WRITE);
562 CHECK_FD (fh, fd); 594 CHECK_FD (fh, fd);
595
596 if (ix == 2)
597 {
598 ix = 0;
599 events = events ? EV_WRITE : EV_READ;
600 }
563 601
564 RETVAL = e_new (sizeof (ev_io), cb, default_loop_sv); 602 RETVAL = e_new (sizeof (ev_io), cb, default_loop_sv);
565 RETVAL->fh = newSVsv (fh); 603 RETVAL->fh = newSVsv (fh);
566 ev_io_set (RETVAL, fd, events); 604 ev_io_set (RETVAL, fd, events);
567 if (!ix) START (io, RETVAL); 605 if (!ix) START (io, RETVAL);
606 Signal signum = s_signum (signal); 644 Signal signum = s_signum (signal);
607 CHECK_SIG (signal, signum); 645 CHECK_SIG (signal, signum);
608 646
609 RETVAL = e_new (sizeof (ev_signal), cb, default_loop_sv); 647 RETVAL = e_new (sizeof (ev_signal), cb, default_loop_sv);
610 ev_signal_set (RETVAL, signum); 648 ev_signal_set (RETVAL, signum);
611 if (!ix) START (signal, RETVAL); 649 if (!ix) START_SIGNAL (RETVAL);
612} 650}
613 OUTPUT: 651 OUTPUT:
614 RETVAL 652 RETVAL
615 653
616ev_idle *idle (SV *cb) 654ev_idle *idle (SV *cb)
867 905
868MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_ 906MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_
869 907
870void ev_signal_start (ev_signal *w) 908void ev_signal_start (ev_signal *w)
871 CODE: 909 CODE:
872 START (signal, w); 910 START_SIGNAL (w);
873 911
874void ev_signal_stop (ev_signal *w) 912void ev_signal_stop (ev_signal *w)
875 CODE: 913 CODE:
876 STOP (signal, w); 914 STOP (signal, w);
877 915
884 CODE: 922 CODE:
885{ 923{
886 Signal signum = s_signum (signal); 924 Signal signum = s_signum (signal);
887 CHECK_SIG (signal, signum); 925 CHECK_SIG (signal, signum);
888 926
889 RESET (signal, w, (w, signum)); 927 RESET_SIGNAL (w, (w, signum));
890} 928}
891 929
892int signal (ev_signal *w, SV *new_signal = 0) 930int signal (ev_signal *w, SV *new_signal = 0)
893 CODE: 931 CODE:
894{ 932{
897 if (items > 1) 935 if (items > 1)
898 { 936 {
899 Signal signum = s_signum (new_signal); 937 Signal signum = s_signum (new_signal);
900 CHECK_SIG (new_signal, signum); 938 CHECK_SIG (new_signal, signum);
901 939
902 RESET (signal, w, (w, signum)); 940 RESET_SIGNAL (w, (w, signum));
903 } 941 }
904} 942}
905 OUTPUT: 943 OUTPUT:
906 RETVAL 944 RETVAL
907 945
921 INIT: 959 INIT:
922 CHECK_REPEAT (w->repeat); 960 CHECK_REPEAT (w->repeat);
923 CODE: 961 CODE:
924 ev_timer_again (e_loop (w), w); 962 ev_timer_again (e_loop (w), w);
925 UNREF (w); 963 UNREF (w);
964
965NV ev_timer_remaining (ev_timer *w)
966 C_ARGS: e_loop (w), w
926 967
927void DESTROY (ev_timer *w) 968void DESTROY (ev_timer *w)
928 CODE: 969 CODE:
929 STOP (timer, w); 970 STOP (timer, w);
930 e_destroy (w); 971 e_destroy (w);
1233 if (loop != evapi.default_loop) /* global destruction sucks */ 1274 if (loop != evapi.default_loop) /* global destruction sucks */
1234 ev_loop_destroy (loop); 1275 ev_loop_destroy (loop);
1235 1276
1236void ev_loop_fork (struct ev_loop *loop) 1277void ev_loop_fork (struct ev_loop *loop)
1237 1278
1238void ev_loop_verify (struct ev_loop *loop) 1279void ev_verify (struct ev_loop *loop)
1239 1280
1240NV ev_now (struct ev_loop *loop) 1281NV ev_now (struct ev_loop *loop)
1241 1282
1242void ev_now_update (struct ev_loop *loop) 1283void ev_now_update (struct ev_loop *loop)
1243 1284
1249 1290
1250void ev_set_timeout_collect_interval (struct ev_loop *loop, NV interval) 1291void ev_set_timeout_collect_interval (struct ev_loop *loop, NV interval)
1251 1292
1252unsigned int ev_backend (struct ev_loop *loop) 1293unsigned int ev_backend (struct ev_loop *loop)
1253 1294
1254unsigned int ev_loop_count (struct ev_loop *loop) 1295unsigned int ev_iteration (struct ev_loop *loop)
1255 1296
1256unsigned int ev_loop_depth (struct ev_loop *loop) 1297unsigned int ev_depth (struct ev_loop *loop)
1257 1298
1258void ev_loop (struct ev_loop *loop, int flags = 0) 1299void ev_loop (struct ev_loop *loop, int flags = 0)
1259 1300
1260void ev_unloop (struct ev_loop *loop, int how = 1) 1301void ev_unloop (struct ev_loop *loop, int how = 1)
1261 1302
1321 if (!ix) START (periodic, w); 1362 if (!ix) START (periodic, w);
1322} 1363}
1323 OUTPUT: 1364 OUTPUT:
1324 RETVAL 1365 RETVAL
1325 1366
1326#if 0
1327
1328ev_signal *signal (struct ev_loop *loop, SV *signal, SV *cb) 1367ev_signal *signal (struct ev_loop *loop, SV *signal, SV *cb)
1329 ALIAS: 1368 ALIAS:
1330 signal_ns = 1 1369 signal_ns = 1
1331 CODE: 1370 CODE:
1332{ 1371{
1333 Signal signum = s_signum (signal); 1372 Signal signum = s_signum (signal);
1334 CHECK_SIG (signal, signum); 1373 CHECK_SIG (signal, signum);
1335 1374
1336 RETVAL = e_new (sizeof (ev_signal), cb, ST (0)); 1375 RETVAL = e_new (sizeof (ev_signal), cb, ST (0));
1337 ev_signal_set (RETVAL, signum); 1376 ev_signal_set (RETVAL, signum);
1338 if (!ix) START (signal, RETVAL); 1377 if (!ix) START_SIGNAL (RETVAL);
1339} 1378}
1340 OUTPUT: 1379 OUTPUT:
1341 RETVAL 1380 RETVAL
1342
1343#endif
1344 1381
1345ev_idle *idle (struct ev_loop *loop, SV *cb) 1382ev_idle *idle (struct ev_loop *loop, SV *cb)
1346 ALIAS: 1383 ALIAS:
1347 idle_ns = 1 1384 idle_ns = 1
1348 CODE: 1385 CODE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines