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

Comparing EV/EV.xs (file contents):
Revision 1.87 by root, Fri Dec 7 18:09:38 2007 UTC vs.
Revision 1.96 by root, Thu Dec 20 10:12:22 2007 UTC

3#include "XSUB.h" 3#include "XSUB.h"
4 4
5/*#include <netinet/in.h>*/ 5/*#include <netinet/in.h>*/
6 6
7#define EV_PROTOTYPES 1 7#define EV_PROTOTYPES 1
8#define EV_H <ev.h>
8#include "EV/EVAPI.h" 9#include "EV/EVAPI.h"
9 10
10/* fix perl api breakage */ 11/* fix perl api breakage */
11#undef signal 12#undef signal
12#undef sigaction 13#undef sigaction
17# define NFDBITS PERL_NFDBITS 18# define NFDBITS PERL_NFDBITS
18# define fd_mask Perl_fd_mask 19# define fd_mask Perl_fd_mask
19#endif 20#endif
20/* due to bugs in OS X we have to use libev/ explicitly here */ 21/* due to bugs in OS X we have to use libev/ explicitly here */
21#include "libev/ev.c" 22#include "libev/ev.c"
22#include "event.c"
23 23
24#ifndef _WIN32 24#ifndef _WIN32
25# include <pthread.h> 25# include <pthread.h>
26#endif 26#endif
27 27
28#define e_loop(w) INT2PTR (struct ev_loop *, SvIVX ((w)->loop))
29
28#define WFLAG_KEEPALIVE 1 30#define WFLAG_KEEPALIVE 1
29 31
30#define UNREF(w) \ 32#define UNREF(w) \
31 if (!((w)->flags & WFLAG_KEEPALIVE) \ 33 if (!((w)->flags & WFLAG_KEEPALIVE) \
32 && !ev_is_active (w)) \ 34 && !ev_is_active (w)) \
33 ev_unref (); 35 ev_unref (e_loop (w));
34 36
35#define REF(w) \ 37#define REF(w) \
36 if (!((w)->flags & WFLAG_KEEPALIVE) \ 38 if (!((w)->flags & WFLAG_KEEPALIVE) \
37 && ev_is_active (w)) \ 39 && ev_is_active (w)) \
38 ev_ref (); 40 ev_ref (e_loop (w));
39 41
40#define START(type,w) \ 42#define START(type,w) \
41 do { \ 43 do { \
42 UNREF (w); \ 44 UNREF (w); \
43 ev_ ## type ## _start (w); \ 45 ev_ ## type ## _start (e_loop (w), w); \
44 } while (0) 46 } while (0)
45 47
46#define STOP(type,w) \ 48#define STOP(type,w) \
47 do { \ 49 do { \
48 REF (w); \ 50 REF (w); \
49 ev_ ## type ## _stop (w); \ 51 ev_ ## type ## _stop (e_loop (w), w); \
50 } while (0) 52 } while (0)
51 53
52#define RESET(type,w,seta) \ 54#define RESET(type,w,seta) \
53 do { \ 55 do { \
54 int active = ev_is_active (w); \ 56 int active = ev_is_active (w); \
57 if (active) START (type, w); \ 59 if (active) START (type, w); \
58 } while (0) 60 } while (0)
59 61
60typedef int Signal; 62typedef int Signal;
61 63
64static SV *default_loop_sv;
65
62static struct EVAPI evapi; 66static struct EVAPI evapi;
63 67
64static HV 68static HV
69 *stash_loop,
65 *stash_watcher, 70 *stash_watcher,
66 *stash_io, 71 *stash_io,
67 *stash_timer, 72 *stash_timer,
68 *stash_periodic, 73 *stash_periodic,
69 *stash_signal, 74 *stash_signal,
101} 106}
102 107
103///////////////////////////////////////////////////////////////////////////// 108/////////////////////////////////////////////////////////////////////////////
104// Event 109// Event
105 110
106static void e_cb (ev_watcher *w, int revents); 111static void e_cb (EV_P_ ev_watcher *w, int revents);
107 112
108static int 113static int
109sv_fileno (SV *fh) 114sv_fileno (SV *fh)
110{ 115{
111 SvGETMAGIC (fh); 116 SvGETMAGIC (fh);
121 126
122 return -1; 127 return -1;
123} 128}
124 129
125static void * 130static void *
126e_new (int size, SV *cb_sv) 131e_new (int size, SV *cb_sv, SV *loop)
127{ 132{
128 ev_watcher *w; 133 ev_watcher *w;
129 SV *self = NEWSV (0, size); 134 SV *self = NEWSV (0, size);
130 SvPOK_only (self); 135 SvPOK_only (self);
131 SvCUR_set (self, size); 136 SvCUR_set (self, size);
132 137
133 w = (ev_watcher *)SvPVX (self); 138 w = (ev_watcher *)SvPVX (self);
134 139
135 ev_init (w, e_cb); 140 ev_init (w, e_cb);
136 141
142 w->loop = SvREFCNT_inc (SvRV (loop));
137 w->flags = WFLAG_KEEPALIVE; 143 w->flags = WFLAG_KEEPALIVE;
138 w->data = 0; 144 w->data = 0;
139 w->fh = 0; 145 w->fh = 0;
140 w->cb_sv = newSVsv (cb_sv); 146 w->cb_sv = SvTEMP (cb_sv) && SvREFCNT (cb_sv) == 1 ? SvREFCNT_inc (cb_sv) : newSVsv (cb_sv);
141 w->self = self; 147 w->self = self;
142 148
143 return (void *)w; 149 return (void *)w;
144} 150}
145 151
146static void 152static void
147e_destroy (void *w_) 153e_destroy (void *w_)
148{ 154{
149 ev_watcher *w = (ev_watcher *)w_; 155 ev_watcher *w = (ev_watcher *)w_;
150 156
157 SvREFCNT_dec (w->loop ); w->loop = 0;
151 SvREFCNT_dec (w->fh ); w->fh = 0; 158 SvREFCNT_dec (w->fh ); w->fh = 0;
152 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0; 159 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
153 SvREFCNT_dec (w->data ); w->data = 0; 160 SvREFCNT_dec (w->data ); w->data = 0;
154} 161}
155 162
171} 178}
172 179
173static SV *sv_events_cache; 180static SV *sv_events_cache;
174 181
175static void 182static void
176e_cb (ev_watcher *w, int revents) 183e_cb (EV_P_ ev_watcher *w, int revents)
177{ 184{
178 dSP; 185 dSP;
179 I32 mark = SP - PL_stack_base; 186 I32 mark = SP - PL_stack_base;
180 SV *sv_self, *sv_events; 187 SV *sv_self, *sv_events;
181 188
354 }; 361 };
355 362
356 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 363 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
357 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 364 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
358 365
366 stash_loop = gv_stashpv ("EV::Loop" , 1);
359 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 367 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
360 stash_io = gv_stashpv ("EV::IO" , 1); 368 stash_io = gv_stashpv ("EV::IO" , 1);
361 stash_timer = gv_stashpv ("EV::Timer" , 1); 369 stash_timer = gv_stashpv ("EV::Timer" , 1);
362 stash_periodic = gv_stashpv ("EV::Periodic", 1); 370 stash_periodic = gv_stashpv ("EV::Periodic", 1);
363 stash_signal = gv_stashpv ("EV::Signal" , 1); 371 stash_signal = gv_stashpv ("EV::Signal" , 1);
365 stash_prepare = gv_stashpv ("EV::Prepare" , 1); 373 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
366 stash_check = gv_stashpv ("EV::Check" , 1); 374 stash_check = gv_stashpv ("EV::Check" , 1);
367 stash_child = gv_stashpv ("EV::Child" , 1); 375 stash_child = gv_stashpv ("EV::Child" , 1);
368 stash_embed = gv_stashpv ("EV::Embed" , 1); 376 stash_embed = gv_stashpv ("EV::Embed" , 1);
369 stash_stat = gv_stashpv ("EV::Stat" , 1); 377 stash_stat = gv_stashpv ("EV::Stat" , 1);
378 stash_fork = gv_stashpv ("EV::Fork" , 1);
370 379
371 { 380 {
372 SV *sv = perl_get_sv ("EV::API", TRUE); 381 SV *sv = perl_get_sv ("EV::API", TRUE);
373 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */ 382 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */
374 383
375 /* the poor man's shared library emulator */ 384 /* the poor man's shared library emulator */
376 evapi.ver = EV_API_VERSION; 385 evapi.ver = EV_API_VERSION;
377 evapi.rev = EV_API_REVISION; 386 evapi.rev = EV_API_REVISION;
378 evapi.sv_fileno = sv_fileno; 387 evapi.sv_fileno = sv_fileno;
379 evapi.sv_signum = sv_signum; 388 evapi.sv_signum = sv_signum;
389 evapi.supported_backends = ev_supported_backends ();
390 evapi.recommended_backends = ev_recommended_backends ();
391 evapi.embeddable_backends = ev_embeddable_backends ();
392 evapi.time = ev_time;
393 evapi.loop_new = ev_loop_new;
394 evapi.loop_destroy = ev_loop_destroy;
395 evapi.loop_fork = ev_loop_fork;
396 evapi.loop_count = ev_loop_count;
380 evapi.now = ev_now; 397 evapi.now = ev_now;
381 evapi.backend = ev_backend; 398 evapi.backend = ev_backend;
382 evapi.unloop = ev_unloop; 399 evapi.unloop = ev_unloop;
383 evapi.ref = ev_ref; 400 evapi.ref = ev_ref;
384 evapi.unref = ev_unref; 401 evapi.unref = ev_unref;
385 evapi.time = ev_time;
386 evapi.loop = ev_loop; 402 evapi.loop = ev_loop;
387 evapi.once = ev_once; 403 evapi.once = ev_once;
388 evapi.io_start = ev_io_start; 404 evapi.io_start = ev_io_start;
389 evapi.io_stop = ev_io_stop; 405 evapi.io_stop = ev_io_stop;
390 evapi.timer_start = ev_timer_start; 406 evapi.timer_start = ev_timer_start;
391 evapi.timer_stop = ev_timer_stop; 407 evapi.timer_stop = ev_timer_stop;
392 evapi.timer_again = ev_timer_again; 408 evapi.timer_again = ev_timer_again;
393 evapi.periodic_start = ev_periodic_start; 409 evapi.periodic_start = ev_periodic_start;
394 evapi.periodic_stop = ev_periodic_stop; 410 evapi.periodic_stop = ev_periodic_stop;
395 evapi.signal_start = ev_signal_start; 411 evapi.signal_start = ev_signal_start;
396 evapi.signal_stop = ev_signal_stop; 412 evapi.signal_stop = ev_signal_stop;
397 evapi.idle_start = ev_idle_start; 413 evapi.idle_start = ev_idle_start;
398 evapi.idle_stop = ev_idle_stop; 414 evapi.idle_stop = ev_idle_stop;
399 evapi.prepare_start = ev_prepare_start; 415 evapi.prepare_start = ev_prepare_start;
400 evapi.prepare_stop = ev_prepare_stop; 416 evapi.prepare_stop = ev_prepare_stop;
401 evapi.check_start = ev_check_start; 417 evapi.check_start = ev_check_start;
402 evapi.check_stop = ev_check_stop; 418 evapi.check_stop = ev_check_stop;
403 evapi.child_start = ev_child_start; 419 evapi.child_start = ev_child_start;
404 evapi.child_stop = ev_child_stop; 420 evapi.child_stop = ev_child_stop;
405 evapi.stat_start = ev_stat_start; 421 evapi.stat_start = ev_stat_start;
406 evapi.stat_stop = ev_stat_stop; 422 evapi.stat_stop = ev_stat_stop;
407 evapi.stat_stat = ev_stat_stat; 423 evapi.stat_stat = ev_stat_stat;
424 evapi.embed_start = ev_embed_start;
425 evapi.embed_stop = ev_embed_stop;
426 evapi.embed_sweep = ev_embed_sweep;
427 evapi.fork_start = ev_fork_start;
428 evapi.fork_stop = ev_fork_stop;
429 evapi.clear_pending = ev_clear_pending;
430 evapi.invoke = ev_invoke;
408 431
409 sv_setiv (sv, (IV)&evapi); 432 sv_setiv (sv, (IV)&evapi);
410 SvREADONLY_on (sv); 433 SvREADONLY_on (sv);
411 } 434 }
412#ifndef _WIN32 435#ifndef _WIN32
413 pthread_atfork (0, 0, ev_default_fork); 436 pthread_atfork (0, 0, ev_default_fork);
414#endif 437#endif
415} 438}
416 439
440SV *ev_default_loop (unsigned int flags = ev_supported_backends ())
441 CODE:
442{
443 if (!default_loop_sv)
444 {
445 evapi.default_loop = ev_default_loop (flags);
446
447 if (!evapi.default_loop)
448 XSRETURN_UNDEF;
449
450 default_loop_sv = sv_bless (newRV_noinc (newSViv (PTR2IV (evapi.default_loop))), stash_loop);
451 }
452
453 RETVAL = newSVsv (default_loop_sv);
454}
455 OUTPUT:
456 RETVAL
457
458NV ev_time ()
459
417NV ev_now () 460NV ev_now ()
461 C_ARGS: evapi.default_loop
418 462
419unsigned int ev_backend () 463unsigned int ev_backend ()
420 464 C_ARGS: evapi.default_loop
421NV ev_time ()
422
423unsigned int ev_default_loop (unsigned int flags = ev_supported_backends ())
424 465
425unsigned int ev_loop_count () 466unsigned int ev_loop_count ()
467 C_ARGS: evapi.default_loop
426 468
427void ev_loop (int flags = 0) 469void ev_loop (int flags = 0)
470 C_ARGS: evapi.default_loop, flags
428 471
429void ev_unloop (int how = 1) 472void ev_unloop (int how = 1)
473 C_ARGS: evapi.default_loop, how
474
475void ev_feed_fd_event (int fd, int revents = EV_NONE)
476 C_ARGS: evapi.default_loop, fd, revents
477
478void ev_feed_signal_event (SV *signal)
479 CODE:
480{
481 Signal signum = sv_signum (signal);
482 CHECK_SIG (signal, signum);
483
484 ev_feed_signal_event (evapi.default_loop, signum);
485}
430 486
431ev_io *io (SV *fh, int events, SV *cb) 487ev_io *io (SV *fh, int events, SV *cb)
432 ALIAS: 488 ALIAS:
433 io_ns = 1 489 io_ns = 1
434 CODE: 490 CODE:
435{ 491{
436 int fd = sv_fileno (fh); 492 int fd = sv_fileno (fh);
437 CHECK_FD (fh, fd); 493 CHECK_FD (fh, fd);
438 494
439 RETVAL = e_new (sizeof (ev_io), cb); 495 RETVAL = e_new (sizeof (ev_io), cb, default_loop_sv);
440 RETVAL->fh = newSVsv (fh); 496 RETVAL->fh = newSVsv (fh);
441 ev_io_set (RETVAL, fd, events); 497 ev_io_set (RETVAL, fd, events);
442 if (!ix) START (io, RETVAL); 498 if (!ix) START (io, RETVAL);
443} 499}
444 OUTPUT: 500 OUTPUT:
448 ALIAS: 504 ALIAS:
449 timer_ns = 1 505 timer_ns = 1
450 INIT: 506 INIT:
451 CHECK_REPEAT (repeat); 507 CHECK_REPEAT (repeat);
452 CODE: 508 CODE:
453 RETVAL = e_new (sizeof (ev_timer), cb); 509 RETVAL = e_new (sizeof (ev_timer), cb, default_loop_sv);
454 ev_timer_set (RETVAL, after, repeat); 510 ev_timer_set (RETVAL, after, repeat);
455 if (!ix) START (timer, RETVAL); 511 if (!ix) START (timer, RETVAL);
456 OUTPUT: 512 OUTPUT:
457 RETVAL 513 RETVAL
458 514
462 INIT: 518 INIT:
463 CHECK_REPEAT (interval); 519 CHECK_REPEAT (interval);
464 CODE: 520 CODE:
465{ 521{
466 ev_periodic *w; 522 ev_periodic *w;
467 w = e_new (sizeof (ev_periodic), cb); 523 w = e_new (sizeof (ev_periodic), cb, default_loop_sv);
468 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0; 524 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
469 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0); 525 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
470 RETVAL = e_bless ((ev_watcher *)w, stash_periodic); 526 RETVAL = e_bless ((ev_watcher *)w, stash_periodic);
471 if (!ix) START (periodic, w); 527 if (!ix) START (periodic, w);
472} 528}
479 CODE: 535 CODE:
480{ 536{
481 Signal signum = sv_signum (signal); 537 Signal signum = sv_signum (signal);
482 CHECK_SIG (signal, signum); 538 CHECK_SIG (signal, signum);
483 539
484 RETVAL = e_new (sizeof (ev_signal), cb); 540 RETVAL = e_new (sizeof (ev_signal), cb, default_loop_sv);
485 ev_signal_set (RETVAL, signum); 541 ev_signal_set (RETVAL, signum);
486 if (!ix) START (signal, RETVAL); 542 if (!ix) START (signal, RETVAL);
487} 543}
488 OUTPUT: 544 OUTPUT:
489 RETVAL 545 RETVAL
490 546
491ev_idle *idle (SV *cb) 547ev_idle *idle (SV *cb)
492 ALIAS: 548 ALIAS:
493 idle_ns = 1 549 idle_ns = 1
494 CODE: 550 CODE:
495 RETVAL = e_new (sizeof (ev_idle), cb); 551 RETVAL = e_new (sizeof (ev_idle), cb, default_loop_sv);
496 ev_idle_set (RETVAL); 552 ev_idle_set (RETVAL);
497 if (!ix) START (idle, RETVAL); 553 if (!ix) START (idle, RETVAL);
498 OUTPUT: 554 OUTPUT:
499 RETVAL 555 RETVAL
500 556
501ev_prepare *prepare (SV *cb) 557ev_prepare *prepare (SV *cb)
502 ALIAS: 558 ALIAS:
503 prepare_ns = 1 559 prepare_ns = 1
504 CODE: 560 CODE:
505 RETVAL = e_new (sizeof (ev_prepare), cb); 561 RETVAL = e_new (sizeof (ev_prepare), cb, default_loop_sv);
506 ev_prepare_set (RETVAL); 562 ev_prepare_set (RETVAL);
507 if (!ix) START (prepare, RETVAL); 563 if (!ix) START (prepare, RETVAL);
508 OUTPUT: 564 OUTPUT:
509 RETVAL 565 RETVAL
510 566
511ev_check *check (SV *cb) 567ev_check *check (SV *cb)
512 ALIAS: 568 ALIAS:
513 check_ns = 1 569 check_ns = 1
514 CODE: 570 CODE:
515 RETVAL = e_new (sizeof (ev_check), cb); 571 RETVAL = e_new (sizeof (ev_check), cb, default_loop_sv);
516 ev_check_set (RETVAL); 572 ev_check_set (RETVAL);
517 if (!ix) START (check, RETVAL); 573 if (!ix) START (check, RETVAL);
518 OUTPUT: 574 OUTPUT:
519 RETVAL 575 RETVAL
520 576
577ev_fork *fork (SV *cb)
578 ALIAS:
579 fork_ns = 1
580 CODE:
581 RETVAL = e_new (sizeof (ev_fork), cb, default_loop_sv);
582 ev_fork_set (RETVAL);
583 if (!ix) START (fork, RETVAL);
584 OUTPUT:
585 RETVAL
586
521ev_child *child (int pid, SV *cb) 587ev_child *child (int pid, SV *cb)
522 ALIAS: 588 ALIAS:
523 child_ns = 1 589 child_ns = 1
524 CODE: 590 CODE:
525 RETVAL = e_new (sizeof (ev_child), cb); 591 RETVAL = e_new (sizeof (ev_child), cb, default_loop_sv);
526 ev_child_set (RETVAL, pid); 592 ev_child_set (RETVAL, pid);
527 if (!ix) START (child, RETVAL); 593 if (!ix) START (child, RETVAL);
528 OUTPUT: 594 OUTPUT:
529 RETVAL 595 RETVAL
530 596
531ev_stat *stat (SV *path, NV interval, SV *cb) 597ev_stat *stat (SV *path, NV interval, SV *cb)
532 ALIAS: 598 ALIAS:
533 stat_ns = 1 599 stat_ns = 1
534 CODE: 600 CODE:
535 RETVAL = e_new (sizeof (ev_stat), cb); 601 RETVAL = e_new (sizeof (ev_stat), cb, default_loop_sv);
536 RETVAL->fh = newSVsv (path); 602 RETVAL->fh = newSVsv (path);
537 ev_stat_set (RETVAL, SvPVbyte_nolen (RETVAL->fh), interval); 603 ev_stat_set (RETVAL, SvPVbyte_nolen (RETVAL->fh), interval);
538 if (!ix) START (stat, RETVAL); 604 if (!ix) START (stat, RETVAL);
539 OUTPUT: 605 OUTPUT:
540 RETVAL 606 RETVAL
541 607
608ev_embed *embed (struct ev_loop *loop, SV *cb = &PL_sv_undef)
609 ALIAS:
610 embed_ns = 1
611 CODE:
612{
613 if (!(ev_backend (loop) & ev_embeddable_backends ()))
614 croak ("passed loop is not embeddable via EV::embed,");
615
616 RETVAL = e_new (sizeof (ev_embed), cb, default_loop_sv);
617 RETVAL->fh = newSVsv (ST (0));
618 ev_embed_set (RETVAL, loop);
619
620 if (!SvOK (cb)) ev_set_cb (RETVAL, 0);
621
622 if (!ix) START (embed, RETVAL);
623}
624 OUTPUT:
625 RETVAL
626
542void once (SV *fh, int events, SV *timeout, SV *cb) 627void once (SV *fh, int events, SV *timeout, SV *cb)
543 CODE: 628 CODE:
544 ev_once ( 629 ev_once (
630 evapi.default_loop,
545 sv_fileno (fh), events, 631 sv_fileno (fh), events,
546 SvOK (timeout) ? SvNV (timeout) : -1., 632 SvOK (timeout) ? SvNV (timeout) : -1.,
547 e_once_cb, 633 e_once_cb,
548 newSVsv (cb) 634 newSVsv (cb)
549 ); 635 );
553MODULE = EV PACKAGE = EV::Watcher PREFIX = ev_ 639MODULE = EV PACKAGE = EV::Watcher PREFIX = ev_
554 640
555int ev_is_active (ev_watcher *w) 641int ev_is_active (ev_watcher *w)
556 642
557int ev_is_pending (ev_watcher *w) 643int ev_is_pending (ev_watcher *w)
644
645void ev_invoke (ev_watcher *w, int revents = EV_NONE)
646 C_ARGS: e_loop (w), w, revents
647
648int ev_clear_pending (ev_watcher *w)
649 C_ARGS: e_loop (w), w
650
651void ev_feed_event (ev_watcher *w, int revents = EV_NONE)
652 C_ARGS: e_loop (w), w, revents
558 653
559int keepalive (ev_watcher *w, int new_value = 0) 654int keepalive (ev_watcher *w, int new_value = 0)
560 CODE: 655 CODE:
561{ 656{
562 RETVAL = w->flags & WFLAG_KEEPALIVE; 657 RETVAL = w->flags & WFLAG_KEEPALIVE;
594 w->data = newSVsv (new_data); 689 w->data = newSVsv (new_data);
595 } 690 }
596} 691}
597 OUTPUT: 692 OUTPUT:
598 RETVAL 693 RETVAL
599
600void trigger (ev_watcher *w, int revents = EV_NONE)
601 CODE:
602 w->cb (w, revents);
603 694
604int priority (ev_watcher *w, int new_priority = 0) 695int priority (ev_watcher *w, int new_priority = 0)
605 CODE: 696 CODE:
606{ 697{
607 RETVAL = w->priority; 698 RETVAL = w->priority;
743void ev_timer_again (ev_timer *w) 834void ev_timer_again (ev_timer *w)
744 INIT: 835 INIT:
745 CHECK_REPEAT (w->repeat); 836 CHECK_REPEAT (w->repeat);
746 CODE: 837 CODE:
747 REF (w); 838 REF (w);
748 ev_timer_again (w); 839 ev_timer_again (e_loop (w), w);
749 UNREF (w); 840 UNREF (w);
750 841
751void DESTROY (ev_timer *w) 842void DESTROY (ev_timer *w)
752 CODE: 843 CODE:
753 STOP (timer, w); 844 STOP (timer, w);
757 INIT: 848 INIT:
758 CHECK_REPEAT (repeat); 849 CHECK_REPEAT (repeat);
759 CODE: 850 CODE:
760 RESET (timer, w, (w, after, repeat)); 851 RESET (timer, w, (w, after, repeat));
761 852
853NV at (ev_timer *w)
854 CODE:
855 RETVAL = w->at;
856 OUTPUT:
857 RETVAL
858
762MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_ 859MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_
763 860
764void ev_periodic_start (ev_periodic *w) 861void ev_periodic_start (ev_periodic *w)
765 INIT: 862 INIT:
766 CHECK_REPEAT (w->interval); 863 CHECK_REPEAT (w->interval);
772 STOP (periodic, w); 869 STOP (periodic, w);
773 870
774void ev_periodic_again (ev_periodic *w) 871void ev_periodic_again (ev_periodic *w)
775 CODE: 872 CODE:
776 REF (w); 873 REF (w);
777 ev_periodic_again (w); 874 ev_periodic_again (e_loop (w), w);
778 UNREF (w); 875 UNREF (w);
779 876
780void DESTROY (ev_periodic *w) 877void DESTROY (ev_periodic *w)
781 CODE: 878 CODE:
782 STOP (periodic, w); 879 STOP (periodic, w);
791 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0; 888 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
792 889
793 RESET (periodic, w, (w, at, interval, w->fh ? e_periodic_cb : 0)); 890 RESET (periodic, w, (w, at, interval, w->fh ? e_periodic_cb : 0));
794} 891}
795 892
893NV at (ev_periodic *w)
894 CODE:
895 RETVAL = w->at;
896 OUTPUT:
897 RETVAL
898
796MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 899MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
797 900
798void ev_idle_start (ev_idle *w) 901void ev_idle_start (ev_idle *w)
799 CODE: 902 CODE:
800 START (idle, w); 903 START (idle, w);
834 STOP (check, w); 937 STOP (check, w);
835 938
836void DESTROY (ev_check *w) 939void DESTROY (ev_check *w)
837 CODE: 940 CODE:
838 STOP (check, w); 941 STOP (check, w);
942 e_destroy (w);
943
944MODULE = EV PACKAGE = EV::Fork PREFIX = ev_fork_
945
946void ev_fork_start (ev_fork *w)
947 CODE:
948 START (fork, w);
949
950void ev_fork_stop (ev_fork *w)
951 CODE:
952 STOP (fork, w);
953
954void DESTROY (ev_fork *w)
955 CODE:
956 STOP (fork, w);
839 e_destroy (w); 957 e_destroy (w);
840 958
841MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_ 959MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
842 960
843void ev_child_start (ev_child *w) 961void ev_child_start (ev_child *w)
932 PPCODE: 1050 PPCODE:
933{ 1051{
934 ev_statdata *s = ix ? &w->attr : &w->prev; 1052 ev_statdata *s = ix ? &w->attr : &w->prev;
935 1053
936 if (ix == 1) 1054 if (ix == 1)
937 ev_stat_stat (w); 1055 ev_stat_stat (e_loop (w), w);
938 else if (!s->st_nlink) 1056 else if (!s->st_nlink)
939 errno = ENOENT; 1057 errno = ENOENT;
940 1058
941 PL_statcache.st_dev = s->st_nlink; 1059 PL_statcache.st_dev = s->st_nlink;
942 PL_statcache.st_ino = s->st_ino; 1060 PL_statcache.st_ino = s->st_ino;
969 PUSHs (sv_2mortal (newSVuv (4096))); 1087 PUSHs (sv_2mortal (newSVuv (4096)));
970 PUSHs (sv_2mortal (newSVnv ((NV)((s->st_size + 4095) / 4096)))); 1088 PUSHs (sv_2mortal (newSVnv ((NV)((s->st_size + 4095) / 4096))));
971 } 1089 }
972} 1090}
973 1091
974#if 0 1092MODULE = EV PACKAGE = EV::Embed PREFIX = ev_embed_
975 1093
1094void ev_embed_start (ev_embed *w)
1095 CODE:
1096 START (embed, w);
1097
1098void ev_embed_stop (ev_embed *w)
1099 CODE:
1100 STOP (embed, w);
1101
1102void DESTROY (ev_embed *w)
1103 CODE:
1104 STOP (embed, w);
1105 e_destroy (w);
1106
1107void set (ev_embed *w, struct ev_loop *loop)
1108 CODE:
1109{
1110 sv_setsv (w->fh, ST (1));
1111 RESET (embed, w, (w, loop));
1112}
1113
1114SV *other (ev_embed *w)
1115 CODE:
1116 RETVAL = newSVsv (w->fh);
1117 OUTPUT:
1118 RETVAL
1119
976MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_ 1120MODULE = EV PACKAGE = EV::Loop PREFIX = ev_loop_
977 1121
978BOOT: 1122SV *new (SV *klass, unsigned int flags = ev_supported_backends ())
1123 CODE:
979{ 1124{
980 HV *stash = gv_stashpv ("EV::HTTP", 1); 1125 struct ev_loop *loop = ev_loop_new (flags);
981 1126
982 static const struct { 1127 if (!loop)
983 const char *name; 1128 XSRETURN_UNDEF;
984 IV iv;
985 } *civ, const_iv[] = {
986# define const_iv(pfx, name) { # name, (IV) pfx ## name },
987 const_iv (HTTP_, OK)
988 const_iv (HTTP_, NOCONTENT)
989 const_iv (HTTP_, MOVEPERM)
990 const_iv (HTTP_, MOVETEMP)
991 const_iv (HTTP_, NOTMODIFIED)
992 const_iv (HTTP_, BADREQUEST)
993 const_iv (HTTP_, NOTFOUND)
994 const_iv (HTTP_, SERVUNAVAIL)
995 const_iv (EVHTTP_, REQ_OWN_CONNECTION)
996 const_iv (EVHTTP_, PROXY_REQUEST)
997 const_iv (EVHTTP_, REQ_GET)
998 const_iv (EVHTTP_, REQ_POST)
999 const_iv (EVHTTP_, REQ_HEAD)
1000 const_iv (EVHTTP_, REQUEST)
1001 const_iv (EVHTTP_, RESPONSE)
1002 };
1003 1129
1004 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1130 RETVAL = sv_bless (newRV_noinc (newSViv (PTR2IV (loop))), stash_loop);
1005 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1006} 1131}
1132 OUTPUT:
1133 RETVAL
1007 1134
1008MODULE = EV PACKAGE = EV::HTTP::Request PREFIX = evhttp_request_ 1135void DESTROY (struct ev_loop *loop)
1136 CODE:
1137 if (loop != evapi.default_loop) /* global destruction sucks */
1138 ev_loop_destroy (loop);
1009 1139
1010#HttpRequest new (SV *klass, SV *cb) 1140ev_io *io (struct ev_loop *loop, SV *fh, int events, SV *cb)
1141 ALIAS:
1142 io_ns = 1
1143 CODE:
1144{
1145 int fd = sv_fileno (fh);
1146 CHECK_FD (fh, fd);
1011 1147
1012#void DESTROY (struct evhttp_request *req); 1148 RETVAL = e_new (sizeof (ev_io), cb, ST (0));
1149 RETVAL->fh = newSVsv (fh);
1150 ev_io_set (RETVAL, fd, events);
1151 if (!ix) START (io, RETVAL);
1152}
1153 OUTPUT:
1154 RETVAL
1013 1155
1014#endif
1015
1016
1017
1018
1019
1020
1021
1022

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines