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

Comparing EV/EV.xs (file contents):
Revision 1.40 by root, Fri Nov 2 11:09:50 2007 UTC vs.
Revision 1.41 by root, Fri Nov 2 20:21:33 2007 UTC

231 static const struct { 231 static const struct {
232 const char *name; 232 const char *name;
233 IV iv; 233 IV iv;
234 } *civ, const_iv[] = { 234 } *civ, const_iv[] = {
235# define const_iv(pfx, name) { # name, (IV) pfx ## name }, 235# define const_iv(pfx, name) { # name, (IV) pfx ## name },
236 const_iv (EV_, MINPRI)
237 const_iv (EV_, MAXPRI)
238
236 const_iv (EV_, UNDEF) 239 const_iv (EV_, UNDEF)
237 const_iv (EV_, NONE) 240 const_iv (EV_, NONE)
238 const_iv (EV_, TIMEOUT) 241 const_iv (EV_, TIMEOUT)
239 const_iv (EV_, READ) 242 const_iv (EV_, READ)
240 const_iv (EV_, WRITE) 243 const_iv (EV_, WRITE)
244 const_iv (EV_, ERROR) 247 const_iv (EV_, ERROR)
245 248
246 const_iv (EV, LOOP_ONESHOT) 249 const_iv (EV, LOOP_ONESHOT)
247 const_iv (EV, LOOP_NONBLOCK) 250 const_iv (EV, LOOP_NONBLOCK)
248 251
249 const_iv (EV, METHOD_NONE) 252 const_iv (EV, METHOD_AUTO)
250 const_iv (EV, METHOD_SELECT) 253 const_iv (EV, METHOD_SELECT)
254 const_iv (EV, METHOD_POLL)
251 const_iv (EV, METHOD_EPOLL) 255 const_iv (EV, METHOD_EPOLL)
256 const_iv (EV, METHOD_ANY)
252 }; 257 };
253 258
254 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 259 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
255 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 260 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
256 261
316 OUTPUT: 321 OUTPUT:
317 RETVAL 322 RETVAL
318 323
319NV ev_time () 324NV ev_time ()
320 325
321void ev_init (int flags = 0) 326void ev_init (int methods = EVMETHOD_AUTO)
322 327
323void ev_loop (int flags = 0) 328void ev_loop (int flags = 0)
324 329
325void ev_loop_done (int value = 1) 330void ev_loop_done (int value = 1)
326 CODE: 331 CODE:
436 441
437void trigger (struct ev_watcher *w, int revents = EV_NONE) 442void trigger (struct ev_watcher *w, int revents = EV_NONE)
438 CODE: 443 CODE:
439 w->cb (w, revents); 444 w->cb (w, revents);
440 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
441MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_ 479MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
442 480
443void ev_io_start (struct ev_io *w) 481void ev_io_start (struct ev_io *w)
444 482
445void ev_io_stop (struct ev_io *w) 483void ev_io_stop (struct ev_io *w)
450 e_destroy (w); 488 e_destroy (w);
451 489
452void set (struct ev_io *w, SV *fh, int events) 490void set (struct ev_io *w, SV *fh, int events)
453 CODE: 491 CODE:
454{ 492{
455 int active = w->active; 493 int active = ev_is_active (w);
456 int fd = sv_fileno (fh); 494 int fd = sv_fileno (fh);
457 CHECK_FD (fh, fd); 495 CHECK_FD (fh, fd);
458 496
459 if (active) ev_io_stop (w); 497 if (active) ev_io_stop (w);
460 498
469{ 507{
470 RETVAL = newSVsv (w->fh); 508 RETVAL = newSVsv (w->fh);
471 509
472 if (items > 1) 510 if (items > 1)
473 { 511 {
474 int active = w->active; 512 int active = ev_is_active (w);
475 if (active) ev_io_stop (w); 513 if (active) ev_io_stop (w);
476 514
477 sv_setsv (w->fh, new_fh); 515 sv_setsv (w->fh, new_fh);
478 ev_io_set (w, sv_fileno (w->fh), w->events); 516 ev_io_set (w, sv_fileno (w->fh), w->events);
479 517
488{ 526{
489 RETVAL = w->events; 527 RETVAL = w->events;
490 528
491 if (items > 1) 529 if (items > 1)
492 { 530 {
493 int active = w->active; 531 int active = ev_is_active (w);
494 if (active) ev_io_stop (w); 532 if (active) ev_io_stop (w);
495 533
496 ev_io_set (w, w->fd, new_events); 534 ev_io_set (w, w->fd, new_events);
497 535
498 if (active) ev_io_start (w); 536 if (active) ev_io_start (w);
514 552
515void set (struct ev_signal *w, SV *signal) 553void set (struct ev_signal *w, SV *signal)
516 CODE: 554 CODE:
517{ 555{
518 Signal signum = sv_signum (signal); /* may croak here */ 556 Signal signum = sv_signum (signal); /* may croak here */
519 int active = w->active; 557 int active = ev_is_active (w);
520 558
521 if (active) ev_signal_stop (w); 559 if (active) ev_signal_stop (w);
522 560
523 ev_signal_set (w, signum); 561 ev_signal_set (w, signum);
524 562
531 RETVAL = w->signum; 569 RETVAL = w->signum;
532 570
533 if (items > 1) 571 if (items > 1)
534 { 572 {
535 Signal signum = sv_signum (new_signal); /* may croak here */ 573 Signal signum = sv_signum (new_signal); /* may croak here */
536 int active = w->active; 574 int active = ev_is_active (w);
537 if (active) ev_signal_stop (w); 575 if (active) ev_signal_stop (w);
538 576
539 ev_signal_set (w, signum); 577 ev_signal_set (w, signum);
540 578
541 if (active) ev_signal_start (w); 579 if (active) ev_signal_start (w);
566void set (struct ev_timer *w, NV after, NV repeat = 0.) 604void set (struct ev_timer *w, NV after, NV repeat = 0.)
567 INIT: 605 INIT:
568 CHECK_REPEAT (repeat); 606 CHECK_REPEAT (repeat);
569 CODE: 607 CODE:
570{ 608{
571 int active = w->active; 609 int active = ev_is_active (w);
572 if (active) ev_timer_stop (w); 610 if (active) ev_timer_stop (w);
573 ev_timer_set (w, after, repeat); 611 ev_timer_set (w, after, repeat);
574 if (active) ev_timer_start (w); 612 if (active) ev_timer_start (w);
575} 613}
576 614
590void set (struct ev_periodic *w, NV at, NV interval = 0.) 628void set (struct ev_periodic *w, NV at, NV interval = 0.)
591 INIT: 629 INIT:
592 CHECK_REPEAT (interval); 630 CHECK_REPEAT (interval);
593 CODE: 631 CODE:
594{ 632{
595 int active = w->active; 633 int active = ev_is_active (w);
596 if (active) ev_periodic_stop (w); 634 if (active) ev_periodic_stop (w);
597 635
598 ev_periodic_set (w, at, interval); 636 ev_periodic_set (w, at, interval);
599 637
600 if (active) ev_periodic_start (w); 638 if (active) ev_periodic_start (w);
645 e_destroy (w); 683 e_destroy (w);
646 684
647void set (struct ev_child *w, int pid) 685void set (struct ev_child *w, int pid)
648 CODE: 686 CODE:
649{ 687{
650 int active = w->active; 688 int active = ev_is_active (w);
651 if (active) ev_child_stop (w); 689 if (active) ev_child_stop (w);
652 690
653 ev_child_set (w, pid); 691 ev_child_set (w, pid);
654 692
655 if (active) ev_child_start (w); 693 if (active) ev_child_start (w);
660{ 698{
661 RETVAL = w->pid; 699 RETVAL = w->pid;
662 700
663 if (items > 1) 701 if (items > 1)
664 { 702 {
665 int active = w->active; 703 int active = ev_is_active (w);
666 if (active) ev_child_stop (w); 704 if (active) ev_child_stop (w);
667 705
668 ev_child_set (w, new_pid); 706 ev_child_set (w, new_pid);
669 707
670 if (active) ev_child_start (w); 708 if (active) ev_child_start (w);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines