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

Comparing EV/EV.xs (file contents):
Revision 1.35 by root, Thu Nov 1 13:33:12 2007 UTC vs.
Revision 1.59 by root, Thu Nov 8 00:44:17 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
9#define EV_PROTOTYPES 1 7#define EV_PROTOTYPES 1
10#include "EV/EVAPI.h" 8#include "EV/EVAPI.h"
11 9
10/* fix perl api breakage */
11#undef signal
12#undef sigaction
13
14#define EV_SELECT_USE_WIN32_HANDLES 0
15#define EV_SELECT_USE_FD_SET 0
16/* due to bugs in OS X we have to use libev/ explicitly here */
12#include "libev/ev.c" 17#include "libev/ev.c"
18#include "event.c"
19
20#ifndef WIN32
21#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
22#if !defined (WIN32) && !defined(__CYGWIN__)
23# define HAVE_STRUCT_IN6_ADDR 1
24#endif
25#undef HAVE_STRTOK_R
26#undef strtok_r
27#define strtok_r fake_strtok_r
28#include "evdns.c"
29#endif
30
31#ifndef WIN32
32# include <pthread.h>
33#endif
13 34
14typedef int Signal; 35typedef int Signal;
15 36
16static struct EVAPI evapi; 37static struct EVAPI evapi;
17 38
24 *stash_idle, 45 *stash_idle,
25 *stash_prepare, 46 *stash_prepare,
26 *stash_check, 47 *stash_check,
27 *stash_child; 48 *stash_child;
28 49
50#ifndef SIG_SIZE
51/* kudos to Slaven Rezic for the idea */
52static char sig_size [] = { SIG_NUM };
53# define SIG_SIZE (sizeof (sig_size) + 1)
54#endif
55
29static int 56static int
30sv_signum (SV *sig) 57sv_signum (SV *sig)
31{ 58{
32 int signum; 59 int signum;
33 60
82 w->self = self; 109 w->self = self;
83 110
84 return (void *)w; 111 return (void *)w;
85} 112}
86 113
87static void * 114static void
88e_destroy (void *w_) 115e_destroy (void *w_)
89{ 116{
90 struct ev_watcher *w = w_; 117 struct ev_watcher *w = (struct ev_watcher *)w_;
91 118
92 SvREFCNT_dec (w->fh ); w->fh = 0; 119 SvREFCNT_dec (w->fh ); w->fh = 0;
93 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0; 120 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
94} 121}
95 122
131 PUSHMARK (SP); 158 PUSHMARK (SP);
132 EXTEND (SP, 2); 159 EXTEND (SP, 2);
133 PUSHs (sv_self); 160 PUSHs (sv_self);
134 PUSHs (sv_events); 161 PUSHs (sv_events);
135 162
136 if (revents & EV_CHILD)
137 XPUSHs (sv_status = newSViv (((struct ev_child *)w)->status));
138
139 PUTBACK; 163 PUTBACK;
140 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL); 164 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL);
141 SP = PL_stack_base + mark; PUTBACK; 165 SP = PL_stack_base + mark; PUTBACK;
142 166
143 SvREFCNT_dec (sv_self); 167 SvREFCNT_dec (sv_self);
155 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 179 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
156 SP = PL_stack_base + mark; PUTBACK; 180 SP = PL_stack_base + mark; PUTBACK;
157 } 181 }
158} 182}
159 183
160#if 0 184static ev_tstamp
185e_periodic_cb (struct ev_periodic *w, ev_tstamp now)
186{
187 ev_tstamp retval;
188 int count;
189 dSP;
190
191 ENTER;
192 SAVETMPS;
193
194 PUSHMARK (SP);
195 EXTEND (SP, 2);
196 PUSHs (newRV_inc (w->self)); /* w->self MUST be blessed by now */
197 PUSHs (newSVnv (now));
198
199 PUTBACK;
200 count = call_sv (w->fh, G_SCALAR | G_EVAL);
201 SPAGAIN;
202
203 if (SvTRUE (ERRSV))
204 {
205 PUSHMARK (SP);
206 PUTBACK;
207 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
208 SPAGAIN;
209 }
210
211 if (count > 0)
212 {
213 retval = SvNV (TOPs);
214
215 if (retval < now)
216 retval = now;
217 }
218 else
219 retval = now;
220
221 FREETMPS;
222 LEAVE;
223
224 return retval;
225}
226
161///////////////////////////////////////////////////////////////////////////// 227/////////////////////////////////////////////////////////////////////////////
162// DNS 228// DNS
163 229
230#ifndef WIN32
164static void 231static void
165dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 232dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
166{ 233{
167 dSP; 234 dSP;
168 SV *cb = (SV *)arg; 235 SV *cb = (SV *)arg;
224 291
225PROTOTYPES: ENABLE 292PROTOTYPES: ENABLE
226 293
227BOOT: 294BOOT:
228{ 295{
229 int i;
230 HV *stash = gv_stashpv ("EV", 1); 296 HV *stash = gv_stashpv ("EV", 1);
231 297
232 static const struct { 298 static const struct {
233 const char *name; 299 const char *name;
234 IV iv; 300 IV iv;
235 } *civ, const_iv[] = { 301 } *civ, const_iv[] = {
236# define const_iv(pfx, name) { # name, (IV) pfx ## name }, 302# define const_iv(pfx, name) { # name, (IV) pfx ## name },
303 const_iv (EV_, MINPRI)
304 const_iv (EV_, MAXPRI)
305
237 const_iv (EV_, UNDEF) 306 const_iv (EV_, UNDEF)
238 const_iv (EV_, NONE) 307 const_iv (EV_, NONE)
239 const_iv (EV_, TIMEOUT) 308 const_iv (EV_, TIMEOUT)
240 const_iv (EV_, READ) 309 const_iv (EV_, READ)
241 const_iv (EV_, WRITE) 310 const_iv (EV_, WRITE)
245 const_iv (EV_, ERROR) 314 const_iv (EV_, ERROR)
246 315
247 const_iv (EV, LOOP_ONESHOT) 316 const_iv (EV, LOOP_ONESHOT)
248 const_iv (EV, LOOP_NONBLOCK) 317 const_iv (EV, LOOP_NONBLOCK)
249 318
250 const_iv (EV, METHOD_NONE) 319 const_iv (EV, METHOD_AUTO)
251 const_iv (EV, METHOD_SELECT) 320 const_iv (EV, METHOD_SELECT)
321 const_iv (EV, METHOD_POLL)
252 const_iv (EV, METHOD_EPOLL) 322 const_iv (EV, METHOD_EPOLL)
323 const_iv (EV, METHOD_KQUEUE)
324 const_iv (EV, METHOD_DEVPOLL)
325 const_iv (EV, METHOD_PORT)
326 const_iv (EV, METHOD_ANY)
253 }; 327 };
254 328
255 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 329 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
256 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 330 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
257 331
272 /* the poor man's shared library emulator */ 346 /* the poor man's shared library emulator */
273 evapi.ver = EV_API_VERSION; 347 evapi.ver = EV_API_VERSION;
274 evapi.rev = EV_API_REVISION; 348 evapi.rev = EV_API_REVISION;
275 evapi.sv_fileno = sv_fileno; 349 evapi.sv_fileno = sv_fileno;
276 evapi.sv_signum = sv_signum; 350 evapi.sv_signum = sv_signum;
277 evapi.now = &ev_now; 351 evapi.now = ev_now;
278 evapi.method = &ev_method; 352 evapi.method = ev_method;
279 evapi.loop_done = &ev_loop_done; 353 evapi.unloop = ev_unloop;
280 evapi.time = ev_time; 354 evapi.time = ev_time;
281 evapi.loop = ev_loop; 355 evapi.loop = ev_loop;
282 evapi.once = ev_once; 356 evapi.once = ev_once;
283 evapi.io_start = ev_io_start; 357 evapi.io_start = ev_io_start;
284 evapi.io_stop = ev_io_stop; 358 evapi.io_stop = ev_io_stop;
299 evapi.child_stop = ev_child_stop; 373 evapi.child_stop = ev_child_stop;
300 374
301 sv_setiv (sv, (IV)&evapi); 375 sv_setiv (sv, (IV)&evapi);
302 SvREADONLY_on (sv); 376 SvREADONLY_on (sv);
303 } 377 }
304 378#ifndef WIN32
305 pthread_atfork (ev_fork_prepare, ev_fork_parent, ev_fork_child); 379 pthread_atfork (0, 0, ev_default_fork);
380#endif
306} 381}
307 382
308NV ev_now () 383NV ev_now ()
309 CODE:
310 RETVAL = ev_now;
311 OUTPUT:
312 RETVAL
313 384
314int ev_method () 385int ev_method ()
315 CODE:
316 RETVAL = ev_method;
317 OUTPUT:
318 RETVAL
319 386
320NV ev_time () 387NV ev_time ()
321 388
322void ev_init (int flags = 0) 389int ev_default_loop (int methods = EVMETHOD_AUTO)
323 390
324void ev_loop (int flags = 0) 391void ev_loop (int flags = 0)
325 392
326void ev_loop_done (int value = 1) 393void ev_unloop (int how = 1)
327 CODE:
328 ev_loop_done = value;
329 394
330struct ev_io *io (SV *fh, int events, SV *cb) 395struct ev_io *io (SV *fh, int events, SV *cb)
331 ALIAS: 396 ALIAS:
332 io_ns = 1 397 io_ns = 1
333 CODE: 398 CODE:
353 ev_timer_set (RETVAL, after, repeat); 418 ev_timer_set (RETVAL, after, repeat);
354 if (!ix) ev_timer_start (RETVAL); 419 if (!ix) ev_timer_start (RETVAL);
355 OUTPUT: 420 OUTPUT:
356 RETVAL 421 RETVAL
357 422
358struct ev_periodic *periodic (NV at, NV interval, SV *cb) 423SV *periodic (NV at, NV interval, SV *reschedule_cb, SV *cb)
359 ALIAS: 424 ALIAS:
360 periodic_ns = 1 425 periodic_ns = 1
361 INIT: 426 INIT:
362 CHECK_REPEAT (interval); 427 CHECK_REPEAT (interval);
363 CODE: 428 CODE:
429{
430 struct ev_periodic *w;
364 RETVAL = e_new (sizeof (struct ev_periodic), cb); 431 w = e_new (sizeof (struct ev_periodic), cb);
365 ev_periodic_set (RETVAL, at, interval); 432 w->fh = SvOK (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
433 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
434 RETVAL = e_bless ((struct ev_watcher *)w, stash_periodic);
366 if (!ix) ev_periodic_start (RETVAL); 435 if (!ix) ev_periodic_start (w);
436}
367 OUTPUT: 437 OUTPUT:
368 RETVAL 438 RETVAL
369 439
370struct ev_signal *signal (Signal signum, SV *cb) 440struct ev_signal *signal (Signal signum, SV *cb)
371 ALIAS: 441 ALIAS:
409 479
410struct ev_child *child (int pid, SV *cb) 480struct ev_child *child (int pid, SV *cb)
411 ALIAS: 481 ALIAS:
412 check_ns = 1 482 check_ns = 1
413 CODE: 483 CODE:
414 RETVAL = e_new (sizeof (struct ev_check), cb); 484 RETVAL = e_new (sizeof (struct ev_child), cb);
415 ev_child_set (RETVAL, pid); 485 ev_child_set (RETVAL, pid);
416 if (!ix) ev_child_start (RETVAL); 486 if (!ix) ev_child_start (RETVAL);
417 OUTPUT: 487 OUTPUT:
418 RETVAL 488 RETVAL
419 489
437 507
438void trigger (struct ev_watcher *w, int revents = EV_NONE) 508void trigger (struct ev_watcher *w, int revents = EV_NONE)
439 CODE: 509 CODE:
440 w->cb (w, revents); 510 w->cb (w, revents);
441 511
512int priority (struct ev_watcher *w, int new_priority = 0)
513 CODE:
514{
515 RETVAL = w->priority;
516
517 if (items > 1)
518 {
519 int active = ev_is_active (w);
520
521 if (new_priority < EV_MINPRI || new_priority > EV_MAXPRI)
522 croak ("watcher priority out of range, value must be between %d and %d, inclusive", EV_MINPRI, EV_MAXPRI);
523
524 if (active)
525 {
526 /* grrr. */
527 PUSHMARK (SP);
528 XPUSHs (ST (0));
529 call_method ("stop", G_DISCARD | G_VOID);
530 }
531
532 ev_set_priority (w, new_priority);
533
534 if (active)
535 {
536 PUSHMARK (SP);
537 XPUSHs (ST (0));
538 call_method ("start", G_DISCARD | G_VOID);
539 }
540 }
541}
542 OUTPUT:
543 RETVAL
544
442MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_ 545MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
443 546
444void ev_io_start (struct ev_io *w) 547void ev_io_start (struct ev_io *w)
445 548
446void ev_io_stop (struct ev_io *w) 549void ev_io_stop (struct ev_io *w)
451 e_destroy (w); 554 e_destroy (w);
452 555
453void set (struct ev_io *w, SV *fh, int events) 556void set (struct ev_io *w, SV *fh, int events)
454 CODE: 557 CODE:
455{ 558{
456 int active = w->active; 559 int active = ev_is_active (w);
457 int fd = sv_fileno (fh); 560 int fd = sv_fileno (fh);
458 CHECK_FD (fh, fd); 561 CHECK_FD (fh, fd);
459 562
460 if (active) ev_io_stop (w); 563 if (active) ev_io_stop (w);
461 564
470{ 573{
471 RETVAL = newSVsv (w->fh); 574 RETVAL = newSVsv (w->fh);
472 575
473 if (items > 1) 576 if (items > 1)
474 { 577 {
475 int active = w->active; 578 int active = ev_is_active (w);
476 if (active) ev_io_stop (w); 579 if (active) ev_io_stop (w);
477 580
478 sv_setsv (w->fh, new_fh); 581 sv_setsv (w->fh, new_fh);
479 ev_io_set (w, sv_fileno (w->fh), w->events); 582 ev_io_set (w, sv_fileno (w->fh), w->events);
480 583
482 } 585 }
483} 586}
484 OUTPUT: 587 OUTPUT:
485 RETVAL 588 RETVAL
486 589
487short events (struct ev_io *w, short new_events = EV_UNDEF) 590int events (struct ev_io *w, int new_events = EV_UNDEF)
488 CODE: 591 CODE:
489{ 592{
490 RETVAL = w->events; 593 RETVAL = w->events;
491 594
492 if (items > 1) 595 if (items > 1)
493 { 596 {
494 int active = w->active; 597 int active = ev_is_active (w);
495 if (active) ev_io_stop (w); 598 if (active) ev_io_stop (w);
496 599
497 ev_io_set (w, w->fd, new_events); 600 ev_io_set (w, w->fd, new_events);
498 601
499 if (active) ev_io_start (w); 602 if (active) ev_io_start (w);
511void DESTROY (struct ev_signal *w) 614void DESTROY (struct ev_signal *w)
512 CODE: 615 CODE:
513 ev_signal_stop (w); 616 ev_signal_stop (w);
514 e_destroy (w); 617 e_destroy (w);
515 618
516void set (struct ev_signal *w, SV *signal = 0) 619void set (struct ev_signal *w, SV *signal)
517 CODE: 620 CODE:
518{ 621{
519 Signal signum = sv_signum (signal); /* may croak here */ 622 Signal signum = sv_signum (signal); /* may croak here */
520 int active = w->active; 623 int active = ev_is_active (w);
521 624
522 if (active) ev_signal_stop (w); 625 if (active) ev_signal_stop (w);
626
523 ev_signal_set (w, signum); 627 ev_signal_set (w, signum);
628
524 if (active) ev_signal_start (w); 629 if (active) ev_signal_start (w);
525} 630}
526 631
527MODULE = EV PACKAGE = EV::Time 632int signal (struct ev_signal *w, SV *new_signal = 0)
633 CODE:
634{
635 RETVAL = w->signum;
636
637 if (items > 1)
638 {
639 Signal signum = sv_signum (new_signal); /* may croak here */
640 int active = ev_is_active (w);
641 if (active) ev_signal_stop (w);
642
643 ev_signal_set (w, signum);
644
645 if (active) ev_signal_start (w);
646 }
647}
648 OUTPUT:
649 RETVAL
528 650
529MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_ 651MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
530 652
531void ev_timer_start (struct ev_timer *w) 653void ev_timer_start (struct ev_timer *w)
532 INIT: 654 INIT:
546void set (struct ev_timer *w, NV after, NV repeat = 0.) 668void set (struct ev_timer *w, NV after, NV repeat = 0.)
547 INIT: 669 INIT:
548 CHECK_REPEAT (repeat); 670 CHECK_REPEAT (repeat);
549 CODE: 671 CODE:
550{ 672{
551 int active = w->active; 673 int active = ev_is_active (w);
552 if (active) ev_timer_stop (w); 674 if (active) ev_timer_stop (w);
553 ev_timer_set (w, after, repeat); 675 ev_timer_set (w, after, repeat);
554 if (active) ev_timer_start (w); 676 if (active) ev_timer_start (w);
555} 677}
556 678
560 INIT: 682 INIT:
561 CHECK_REPEAT (w->interval); 683 CHECK_REPEAT (w->interval);
562 684
563void ev_periodic_stop (struct ev_periodic *w) 685void ev_periodic_stop (struct ev_periodic *w)
564 686
687void ev_periodic_again (struct ev_periodic *w)
688
565void DESTROY (struct ev_periodic *w) 689void DESTROY (struct ev_periodic *w)
566 CODE: 690 CODE:
567 ev_periodic_stop (w); 691 ev_periodic_stop (w);
568 e_destroy (w); 692 e_destroy (w);
569 693
570void set (struct ev_periodic *w, NV at, NV interval = 0.) 694void set (struct ev_periodic *w, NV at, NV interval = 0., SV *reschedule_cb = &PL_sv_undef)
571 INIT: 695 INIT:
572 CHECK_REPEAT (interval); 696 CHECK_REPEAT (interval);
573 CODE: 697 CODE:
574{ 698{
575 int active = w->active; 699 int active = ev_is_active (w);
576 if (active) ev_periodic_stop (w); 700 if (active) ev_periodic_stop (w);
701
702 SvREFCNT_dec (w->fh);
703 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
577 ev_periodic_set (w, at, interval); 704 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
705
578 if (active) ev_periodic_start (w); 706 if (active) ev_periodic_start (w);
579} 707}
580 708
581MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 709MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
582 710
623 e_destroy (w); 751 e_destroy (w);
624 752
625void set (struct ev_child *w, int pid) 753void set (struct ev_child *w, int pid)
626 CODE: 754 CODE:
627{ 755{
628 int active = w->active; 756 int active = ev_is_active (w);
629 if (active) ev_child_stop (w); 757 if (active) ev_child_stop (w);
758
630 ev_child_set (w, pid); 759 ev_child_set (w, pid);
760
631 if (active) ev_child_start (w); 761 if (active) ev_child_start (w);
632} 762}
633 763
764int pid (struct ev_child *w, int new_pid = 0)
765 CODE:
766{
767 RETVAL = w->pid;
768
769 if (items > 1)
770 {
771 int active = ev_is_active (w);
772 if (active) ev_child_stop (w);
773
774 ev_child_set (w, new_pid);
775
776 if (active) ev_child_start (w);
777 }
778}
779 OUTPUT:
780 RETVAL
781
782
634int status (struct ev_child *w) 783int rstatus (struct ev_child *w)
784 ALIAS:
785 rpid = 1
635 CODE: 786 CODE:
636 RETVAL = w->status; 787 RETVAL = ix ? w->rpid : w->rstatus;
637 OUTPUT: 788 OUTPUT:
638 RETVAL 789 RETVAL
639 790
640#if 0 791#ifndef WIN32
641 792
642MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 793MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
643 794
644BOOT: 795BOOT:
645{ 796{
728 879
729void evdns_search_add (char *domain) 880void evdns_search_add (char *domain)
730 881
731void evdns_search_ndots_set (int ndots) 882void evdns_search_ndots_set (int ndots)
732 883
884#if 0
733 885
734MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_ 886MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_
735 887
736BOOT: 888BOOT:
737{ 889{
769 921
770#void DESTROY (struct evhttp_request *req); 922#void DESTROY (struct evhttp_request *req);
771 923
772#endif 924#endif
773 925
926#endif
774 927
775 928
776 929
777 930
778 931

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines