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

Comparing EV/EV.xs (file contents):
Revision 1.31 by root, Thu Nov 1 11:11:21 2007 UTC vs.
Revision 1.52 by root, Mon Nov 5 18:03:52 2007 UTC

2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5/*#include <netinet/in.h>*/ 5/*#include <netinet/in.h>*/
6 6
7#define TIMEOUT_NONE HUGE_VAL
8#define EV_USE_EPOLL 1
9
10#define EV_PROTOTYPES 1 7#define EV_PROTOTYPES 1
11#include "EV/EVAPI.h" 8#include "EV/EVAPI.h"
12 9
13#include "libev/ev.c" 10#include "ev.c"
11#include "event.c"
12#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
13#define HAVE_STRUCT_IN6_ADDR 1
14#undef HAVE_STRTOK_R
15#undef strtok_r
16#define strtok_r fake_strtok_r
17#include "evdns.c"
14 18
15typedef int Signal; 19typedef int Signal;
16 20
17static struct EVAPI evapi; 21static struct EVAPI evapi;
18 22
25 *stash_idle, 29 *stash_idle,
26 *stash_prepare, 30 *stash_prepare,
27 *stash_check, 31 *stash_check,
28 *stash_child; 32 *stash_child;
29 33
34#ifndef SIG_SIZE
35/* kudos to Slaven Rezic for the idea */
36static char sig_size [] = { SIG_NUM };
37# define SIG_SIZE (sizeof (sig_size) + 1)
38#endif
39
30static int 40static int
31sv_signum (SV *sig) 41sv_signum (SV *sig)
32{ 42{
33 int signum; 43 int signum;
34 44
81 w->fh = 0; 91 w->fh = 0;
82 w->cb_sv = newSVsv (cb_sv); 92 w->cb_sv = newSVsv (cb_sv);
83 w->self = self; 93 w->self = self;
84 94
85 return (void *)w; 95 return (void *)w;
96}
97
98static void *
99e_destroy (void *w_)
100{
101 struct ev_watcher *w = w_;
102
103 SvREFCNT_dec (w->fh ); w->fh = 0;
104 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
86} 105}
87 106
88static SV * 107static SV *
89e_bless (struct ev_watcher *w, HV *stash) 108e_bless (struct ev_watcher *w, HV *stash)
90{ 109{
108 dSP; 127 dSP;
109 I32 mark = SP - PL_stack_base; 128 I32 mark = SP - PL_stack_base;
110 SV *sv_self, *sv_events, *sv_status = 0; 129 SV *sv_self, *sv_events, *sv_status = 0;
111 static SV *sv_events_cache; 130 static SV *sv_events_cache;
112 131
113 fprintf (stderr, "e_cb %p,%x\n", w, revents);//D
114
115 sv_self = newRV_inc (w->self); /* w->self MUST be blessed by now */ 132 sv_self = newRV_inc (w->self); /* w->self MUST be blessed by now */
116 133
117 if (sv_events_cache) 134 if (sv_events_cache)
118 { 135 {
119 sv_events = sv_events_cache; sv_events_cache = 0; 136 sv_events = sv_events_cache; sv_events_cache = 0;
125 PUSHMARK (SP); 142 PUSHMARK (SP);
126 EXTEND (SP, 2); 143 EXTEND (SP, 2);
127 PUSHs (sv_self); 144 PUSHs (sv_self);
128 PUSHs (sv_events); 145 PUSHs (sv_events);
129 146
130 if (revents & EV_CHILD)
131 XPUSHs (sv_status = newSViv (((struct ev_child *)w)->status));
132
133 PUTBACK; 147 PUTBACK;
134 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL); 148 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL);
135 SP = PL_stack_base + mark; PUTBACK; 149 SP = PL_stack_base + mark; PUTBACK;
136 150
137 SvREFCNT_dec (sv_self); 151 SvREFCNT_dec (sv_self);
149 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 163 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
150 SP = PL_stack_base + mark; PUTBACK; 164 SP = PL_stack_base + mark; PUTBACK;
151 } 165 }
152} 166}
153 167
154#if 0
155///////////////////////////////////////////////////////////////////////////// 168/////////////////////////////////////////////////////////////////////////////
156// DNS 169// DNS
157 170
158static void 171static void
159dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 172dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
201 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 214 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
202 } 215 }
203 216
204 LEAVE; 217 LEAVE;
205} 218}
206#endif
207 219
208#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 220#define CHECK_REPEAT(repeat) if (repeat < 0.) \
209 croak (# repeat " value must be >= 0"); 221 croak (# repeat " value must be >= 0");
210 222
211#define CHECK_FD(fh,fd) if ((fd) < 0) \ 223#define CHECK_FD(fh,fd) if ((fd) < 0) \
226 static const struct { 238 static const struct {
227 const char *name; 239 const char *name;
228 IV iv; 240 IV iv;
229 } *civ, const_iv[] = { 241 } *civ, const_iv[] = {
230# define const_iv(pfx, name) { # name, (IV) pfx ## name }, 242# define const_iv(pfx, name) { # name, (IV) pfx ## name },
243 const_iv (EV_, MINPRI)
244 const_iv (EV_, MAXPRI)
245
231 const_iv (EV_, UNDEF) 246 const_iv (EV_, UNDEF)
232 const_iv (EV_, NONE) 247 const_iv (EV_, NONE)
233 const_iv (EV_, TIMEOUT) 248 const_iv (EV_, TIMEOUT)
234 const_iv (EV_, READ) 249 const_iv (EV_, READ)
235 const_iv (EV_, WRITE) 250 const_iv (EV_, WRITE)
239 const_iv (EV_, ERROR) 254 const_iv (EV_, ERROR)
240 255
241 const_iv (EV, LOOP_ONESHOT) 256 const_iv (EV, LOOP_ONESHOT)
242 const_iv (EV, LOOP_NONBLOCK) 257 const_iv (EV, LOOP_NONBLOCK)
243 258
244 const_iv (EV, METHOD_NONE) 259 const_iv (EV, METHOD_AUTO)
245 const_iv (EV, METHOD_SELECT) 260 const_iv (EV, METHOD_SELECT)
261 const_iv (EV, METHOD_POLL)
246 const_iv (EV, METHOD_EPOLL) 262 const_iv (EV, METHOD_EPOLL)
263 const_iv (EV, METHOD_KQUEUE)
264 const_iv (EV, METHOD_DEVPOLL)
265 const_iv (EV, METHOD_PORT)
266 const_iv (EV, METHOD_ANY)
247 }; 267 };
248 268
249 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 269 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
250 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 270 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
251 271
266 /* the poor man's shared library emulator */ 286 /* the poor man's shared library emulator */
267 evapi.ver = EV_API_VERSION; 287 evapi.ver = EV_API_VERSION;
268 evapi.rev = EV_API_REVISION; 288 evapi.rev = EV_API_REVISION;
269 evapi.sv_fileno = sv_fileno; 289 evapi.sv_fileno = sv_fileno;
270 evapi.sv_signum = sv_signum; 290 evapi.sv_signum = sv_signum;
271 evapi.now = &ev_now; 291 evapi.now = ev_now;
272 evapi.method = &ev_method; 292 evapi.method = ev_method;
273 evapi.loop_done = &ev_loop_done; 293 evapi.unloop = ev_unloop;
274 evapi.time = ev_time; 294 evapi.time = ev_time;
275 evapi.loop = ev_loop; 295 evapi.loop = ev_loop;
276 evapi.once = ev_once; 296 evapi.once = ev_once;
277 evapi.io_start = ev_io_start; 297 evapi.io_start = ev_io_start;
278 evapi.io_stop = ev_io_stop; 298 evapi.io_stop = ev_io_stop;
293 evapi.child_stop = ev_child_stop; 313 evapi.child_stop = ev_child_stop;
294 314
295 sv_setiv (sv, (IV)&evapi); 315 sv_setiv (sv, (IV)&evapi);
296 SvREADONLY_on (sv); 316 SvREADONLY_on (sv);
297 } 317 }
318
319 pthread_atfork (0, 0, ev_default_fork);
298} 320}
299 321
300NV ev_now () 322NV ev_now ()
301 CODE:
302 RETVAL = ev_now;
303 OUTPUT:
304 RETVAL
305 323
306int ev_method () 324int ev_method ()
307 CODE:
308 RETVAL = ev_method;
309 OUTPUT:
310 RETVAL
311 325
312NV ev_time () 326NV ev_time ()
313 327
314void ev_init (int flags = 0) 328int ev_default_loop (int methods = EVMETHOD_AUTO)
315 329
316void ev_loop (int flags = 0) 330void ev_loop (int flags = 0)
317 331
318void ev_loop_done (int value = 1) 332void ev_unloop (int how = 1)
319 CODE:
320 ev_loop_done = value;
321 333
322struct ev_io *io (SV *fh, int events, SV *cb) 334struct ev_io *io (SV *fh, int events, SV *cb)
323 ALIAS: 335 ALIAS:
324 io_ns = 1 336 io_ns = 1
325 CODE: 337 CODE:
401 413
402struct ev_child *child (int pid, SV *cb) 414struct ev_child *child (int pid, SV *cb)
403 ALIAS: 415 ALIAS:
404 check_ns = 1 416 check_ns = 1
405 CODE: 417 CODE:
406 RETVAL = e_new (sizeof (struct ev_check), cb); 418 RETVAL = e_new (sizeof (struct ev_child), cb);
407 ev_child_set (RETVAL, pid); 419 ev_child_set (RETVAL, pid);
408 if (!ix) ev_child_start (RETVAL); 420 if (!ix) ev_child_start (RETVAL);
409 OUTPUT: 421 OUTPUT:
410 RETVAL 422 RETVAL
411 423
429 441
430void trigger (struct ev_watcher *w, int revents = EV_NONE) 442void trigger (struct ev_watcher *w, int revents = EV_NONE)
431 CODE: 443 CODE:
432 w->cb (w, revents); 444 w->cb (w, revents);
433 445
446int priority (struct ev_watcher *w, int new_priority = 0)
447 CODE:
448{
449 RETVAL = w->priority;
450
451 if (items > 1)
452 {
453 int active = ev_is_active (w);
454
455 if (new_priority < EV_MINPRI || new_priority > EV_MAXPRI)
456 croak ("watcher priority out of range, value must be between %d and %d, inclusive", EV_MINPRI, EV_MAXPRI);
457
458 if (active)
459 {
460 /* grrr. */
461 PUSHMARK (SP);
462 XPUSHs (ST (0));
463 call_method ("stop", G_DISCARD | G_VOID);
464 }
465
466 ev_set_priority (w, new_priority);
467
468 if (active)
469 {
470 PUSHMARK (SP);
471 XPUSHs (ST (0));
472 call_method ("start", G_DISCARD | G_VOID);
473 }
474 }
475}
476 OUTPUT:
477 RETVAL
478
434MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_ 479MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
435 480
436void ev_io_start (struct ev_io *w) 481void ev_io_start (struct ev_io *w)
437 482
438void ev_io_stop (struct ev_io *w) 483void ev_io_stop (struct ev_io *w)
439 484
440void DESTROY (struct ev_io *w) 485void DESTROY (struct ev_io *w)
441 CODE: 486 CODE:
442 ev_io_stop (w); 487 ev_io_stop (w);
488 e_destroy (w);
443 489
444void set (struct ev_io *w, SV *fh, int events) 490void set (struct ev_io *w, SV *fh, int events)
445 CODE: 491 CODE:
446{ 492{
447 int active = w->active; 493 int active = ev_is_active (w);
448 int fd = sv_fileno (fh); 494 int fd = sv_fileno (fh);
449 CHECK_FD (fh, fd); 495 CHECK_FD (fh, fd);
450 496
451 if (active) ev_io_stop (w); 497 if (active) ev_io_stop (w);
452 498
461{ 507{
462 RETVAL = newSVsv (w->fh); 508 RETVAL = newSVsv (w->fh);
463 509
464 if (items > 1) 510 if (items > 1)
465 { 511 {
466 int active = w->active; 512 int active = ev_is_active (w);
467 if (active) ev_io_stop (w); 513 if (active) ev_io_stop (w);
468 514
469 sv_setsv (w->fh, new_fh); 515 sv_setsv (w->fh, new_fh);
470 ev_io_set (w, sv_fileno (w->fh), w->events); 516 ev_io_set (w, sv_fileno (w->fh), w->events);
471 517
473 } 519 }
474} 520}
475 OUTPUT: 521 OUTPUT:
476 RETVAL 522 RETVAL
477 523
478short events (struct ev_io *w, short new_events = EV_UNDEF) 524int events (struct ev_io *w, int new_events = EV_UNDEF)
479 CODE: 525 CODE:
480{ 526{
481 RETVAL = w->events; 527 RETVAL = w->events;
482 528
483 if (items > 1) 529 if (items > 1)
484 { 530 {
485 int active = w->active; 531 int active = ev_is_active (w);
486 if (active) ev_io_stop (w); 532 if (active) ev_io_stop (w);
487 533
488 ev_io_set (w, w->fd, new_events); 534 ev_io_set (w, w->fd, new_events);
489 535
490 if (active) ev_io_start (w); 536 if (active) ev_io_start (w);
500void ev_signal_stop (struct ev_signal *w) 546void ev_signal_stop (struct ev_signal *w)
501 547
502void DESTROY (struct ev_signal *w) 548void DESTROY (struct ev_signal *w)
503 CODE: 549 CODE:
504 ev_signal_stop (w); 550 ev_signal_stop (w);
551 e_destroy (w);
505 552
506void set (struct ev_signal *w, SV *signal = 0) 553void set (struct ev_signal *w, SV *signal)
507 CODE: 554 CODE:
508{ 555{
509 Signal signum = sv_signum (signal); /* may croak here */ 556 Signal signum = sv_signum (signal); /* may croak here */
510 int active = w->active; 557 int active = ev_is_active (w);
511 558
512 if (active) ev_signal_stop (w); 559 if (active) ev_signal_stop (w);
560
513 ev_signal_set (w, signum); 561 ev_signal_set (w, signum);
562
514 if (active) ev_signal_start (w); 563 if (active) ev_signal_start (w);
515} 564}
516 565
517MODULE = EV PACKAGE = EV::Time 566int signal (struct ev_signal *w, SV *new_signal = 0)
567 CODE:
568{
569 RETVAL = w->signum;
570
571 if (items > 1)
572 {
573 Signal signum = sv_signum (new_signal); /* may croak here */
574 int active = ev_is_active (w);
575 if (active) ev_signal_stop (w);
576
577 ev_signal_set (w, signum);
578
579 if (active) ev_signal_start (w);
580 }
581}
582 OUTPUT:
583 RETVAL
518 584
519MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_ 585MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
520 586
521void ev_timer_start (struct ev_timer *w) 587void ev_timer_start (struct ev_timer *w)
522 INIT: 588 INIT:
529 CHECK_REPEAT (w->repeat); 595 CHECK_REPEAT (w->repeat);
530 596
531void DESTROY (struct ev_timer *w) 597void DESTROY (struct ev_timer *w)
532 CODE: 598 CODE:
533 ev_timer_stop (w); 599 ev_timer_stop (w);
600 e_destroy (w);
534 601
535void set (struct ev_timer *w, NV after, NV repeat = 0.) 602void set (struct ev_timer *w, NV after, NV repeat = 0.)
536 INIT: 603 INIT:
537 CHECK_REPEAT (repeat); 604 CHECK_REPEAT (repeat);
538 CODE: 605 CODE:
539{ 606{
540 int active = w->active; 607 int active = ev_is_active (w);
541 if (active) ev_timer_stop (w); 608 if (active) ev_timer_stop (w);
542 ev_timer_set (w, after, repeat); 609 ev_timer_set (w, after, repeat);
543 if (active) ev_timer_start (w); 610 if (active) ev_timer_start (w);
544} 611}
545 612
552void ev_periodic_stop (struct ev_periodic *w) 619void ev_periodic_stop (struct ev_periodic *w)
553 620
554void DESTROY (struct ev_periodic *w) 621void DESTROY (struct ev_periodic *w)
555 CODE: 622 CODE:
556 ev_periodic_stop (w); 623 ev_periodic_stop (w);
624 e_destroy (w);
557 625
558void set (struct ev_periodic *w, NV at, NV interval = 0.) 626void set (struct ev_periodic *w, NV at, NV interval = 0.)
559 INIT: 627 INIT:
560 CHECK_REPEAT (interval); 628 CHECK_REPEAT (interval);
561 CODE: 629 CODE:
562{ 630{
563 int active = w->active; 631 int active = ev_is_active (w);
564 if (active) ev_periodic_stop (w); 632 if (active) ev_periodic_stop (w);
633
565 ev_periodic_set (w, at, interval); 634 ev_periodic_set (w, at, interval);
635
566 if (active) ev_periodic_start (w); 636 if (active) ev_periodic_start (w);
567} 637}
568 638
569MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 639MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
570 640
573void ev_idle_stop (struct ev_idle *w) 643void ev_idle_stop (struct ev_idle *w)
574 644
575void DESTROY (struct ev_idle *w) 645void DESTROY (struct ev_idle *w)
576 CODE: 646 CODE:
577 ev_idle_stop (w); 647 ev_idle_stop (w);
648 e_destroy (w);
578 649
579MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_ 650MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_
580 651
581void ev_prepare_start (struct ev_prepare *w) 652void ev_prepare_start (struct ev_prepare *w)
582 653
583void ev_prepare_stop (struct ev_prepare *w) 654void ev_prepare_stop (struct ev_prepare *w)
584 655
585void DESTROY (struct ev_prepare *w) 656void DESTROY (struct ev_prepare *w)
586 CODE: 657 CODE:
587 ev_prepare_stop (w); 658 ev_prepare_stop (w);
659 e_destroy (w);
588 660
589MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_ 661MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
590 662
591void ev_check_start (struct ev_check *w) 663void ev_check_start (struct ev_check *w)
592 664
593void ev_check_stop (struct ev_check *w) 665void ev_check_stop (struct ev_check *w)
594 666
595void DESTROY (struct ev_check *w) 667void DESTROY (struct ev_check *w)
596 CODE: 668 CODE:
597 ev_check_stop (w); 669 ev_check_stop (w);
670 e_destroy (w);
598 671
599MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_ 672MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
600 673
601void ev_child_start (struct ev_child *w) 674void ev_child_start (struct ev_child *w)
602 675
603void ev_child_stop (struct ev_child *w) 676void ev_child_stop (struct ev_child *w)
604 677
605void DESTROY (struct ev_child *w) 678void DESTROY (struct ev_child *w)
606 CODE: 679 CODE:
607 ev_child_stop (w); 680 ev_child_stop (w);
681 e_destroy (w);
608 682
609void set (struct ev_child *w, int pid) 683void set (struct ev_child *w, int pid)
610 CODE: 684 CODE:
611{ 685{
612 int active = w->active; 686 int active = ev_is_active (w);
613 if (active) ev_child_stop (w); 687 if (active) ev_child_stop (w);
688
614 ev_child_set (w, pid); 689 ev_child_set (w, pid);
690
615 if (active) ev_child_start (w); 691 if (active) ev_child_start (w);
616} 692}
617 693
694int pid (struct ev_child *w, int new_pid = 0)
695 CODE:
696{
697 RETVAL = w->pid;
698
699 if (items > 1)
700 {
701 int active = ev_is_active (w);
702 if (active) ev_child_stop (w);
703
704 ev_child_set (w, new_pid);
705
706 if (active) ev_child_start (w);
707 }
708}
709 OUTPUT:
710 RETVAL
711
712
618int status (struct ev_child *w) 713int rstatus (struct ev_child *w)
714 ALIAS:
715 rpid = 1
619 CODE: 716 CODE:
620 RETVAL = w->status; 717 RETVAL = ix ? w->rpid : w->rstatus;
621 OUTPUT: 718 OUTPUT:
622 RETVAL 719 RETVAL
623
624#if 0
625 720
626MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 721MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
627 722
628BOOT: 723BOOT:
629{ 724{
712 807
713void evdns_search_add (char *domain) 808void evdns_search_add (char *domain)
714 809
715void evdns_search_ndots_set (int ndots) 810void evdns_search_ndots_set (int ndots)
716 811
812#if 0
717 813
718MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_ 814MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_
719 815
720BOOT: 816BOOT:
721{ 817{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines