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

Comparing EV/EV.xs (file contents):
Revision 1.23 by root, Wed Oct 31 19:07:43 2007 UTC vs.
Revision 1.30 by root, Thu Nov 1 08:10:03 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 TIMEOUT_NONE HUGE_VAL 7#define TIMEOUT_NONE HUGE_VAL
8#define HAVE_EPOLL 1 8#define EV_USE_EPOLL 1
9 9
10#define EV_PROTOTYPES 1 10#define EV_PROTOTYPES 1
11#include "EV/EVAPI.h" 11#include "EV/EVAPI.h"
12 12
13#include "libev/ev.c" 13#include "libev/ev.c"
17static struct EVAPI evapi; 17static struct EVAPI evapi;
18 18
19static HV 19static HV
20 *stash_watcher, 20 *stash_watcher,
21 *stash_io, 21 *stash_io,
22 *stash_time,
23 *stash_timer, 22 *stash_timer,
24 *stash_periodic, 23 *stash_periodic,
25 *stash_signal, 24 *stash_signal,
26 *stash_idle, 25 *stash_idle,
27 *stash_prepare, 26 *stash_prepare,
73 SvPOK_only (self); 72 SvPOK_only (self);
74 SvCUR_set (self, size); 73 SvCUR_set (self, size);
75 74
76 w = (struct ev_watcher *)SvPVX (self); 75 w = (struct ev_watcher *)SvPVX (self);
77 76
78 evw_init (w, e_cb); 77 ev_watcher_init (w, e_cb);
79 78
80 w->fh = 0; 79 w->fh = 0;
81 w->cb_sv = newSVsv (cb_sv); 80 w->cb_sv = newSVsv (cb_sv);
82 w->self = self; 81 w->self = self;
83 82
104static void 103static void
105e_cb (struct ev_watcher *w, int revents) 104e_cb (struct ev_watcher *w, int revents)
106{ 105{
107 dSP; 106 dSP;
108 I32 mark = SP - PL_stack_base; 107 I32 mark = SP - PL_stack_base;
109 SV *sv_self, *sv_events; 108 SV *sv_self, *sv_events, *sv_status = 0;
110 static SV *sv_events_cache; 109 static SV *sv_events_cache;
111 110
112 sv_self = newRV_inc (w->self); /* w->self MUST be blessed by now */ 111 sv_self = newRV_inc (w->self); /* w->self MUST be blessed by now */
113 112
114 if (sv_events_cache) 113 if (sv_events_cache)
121 120
122 PUSHMARK (SP); 121 PUSHMARK (SP);
123 EXTEND (SP, 2); 122 EXTEND (SP, 2);
124 PUSHs (sv_self); 123 PUSHs (sv_self);
125 PUSHs (sv_events); 124 PUSHs (sv_events);
125
126 if (revents & EV_CHILD)
127 XPUSHs (sv_status = newSViv (((struct ev_child *)w)->status));
128
126 PUTBACK; 129 PUTBACK;
127 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL); 130 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL);
128 SP = PL_stack_base + mark; PUTBACK; 131 SP = PL_stack_base + mark; PUTBACK;
129 132
130 SvREFCNT_dec (sv_self); 133 SvREFCNT_dec (sv_self);
134 SvREFCNT_dec (sv_status);
131 135
132 if (sv_events_cache) 136 if (sv_events_cache)
133 SvREFCNT_dec (sv_events); 137 SvREFCNT_dec (sv_events);
134 else 138 else
135 sv_events_cache = sv_events; 139 sv_events_cache = sv_events;
237 241
238 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 242 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
239 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 243 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
240 244
241 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 245 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
242 stash_io = gv_stashpv ("EV::IO" , 1); 246 stash_io = gv_stashpv ("EV::Io" , 1);
243 stash_time = gv_stashpv ("EV::Time" , 1);
244 stash_timer = gv_stashpv ("EV::Timer" , 1); 247 stash_timer = gv_stashpv ("EV::Timer" , 1);
245 stash_periodic = gv_stashpv ("EV::Periodic", 1); 248 stash_periodic = gv_stashpv ("EV::Periodic", 1);
246 stash_signal = gv_stashpv ("EV::Signal" , 1); 249 stash_signal = gv_stashpv ("EV::Signal" , 1);
247 stash_idle = gv_stashpv ("EV::Idle" , 1); 250 stash_idle = gv_stashpv ("EV::Idle" , 1);
248 stash_prepare = gv_stashpv ("EV::Prepare" , 1); 251 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
262 evapi.method = &ev_method; 265 evapi.method = &ev_method;
263 evapi.loop_done = &ev_loop_done; 266 evapi.loop_done = &ev_loop_done;
264 evapi.time = ev_time; 267 evapi.time = ev_time;
265 evapi.loop = ev_loop; 268 evapi.loop = ev_loop;
266 evapi.once = ev_once; 269 evapi.once = ev_once;
267 evapi.io_start = evio_start; 270 evapi.io_start = ev_io_start;
268 evapi.io_stop = evio_stop; 271 evapi.io_stop = ev_io_stop;
269 evapi.timer_start = evtimer_start; 272 evapi.timer_start = ev_timer_start;
270 evapi.timer_stop = evtimer_stop; 273 evapi.timer_stop = ev_timer_stop;
271 evapi.timer_again = evtimer_again; 274 evapi.timer_again = ev_timer_again;
272 evapi.periodic_start = evperiodic_start; 275 evapi.periodic_start = ev_periodic_start;
273 evapi.periodic_stop = evperiodic_stop; 276 evapi.periodic_stop = ev_periodic_stop;
274 evapi.signal_start = evsignal_start; 277 evapi.signal_start = ev_signal_start;
275 evapi.signal_stop = evsignal_stop; 278 evapi.signal_stop = ev_signal_stop;
276 evapi.idle_start = evidle_start; 279 evapi.idle_start = ev_idle_start;
277 evapi.idle_stop = evidle_stop; 280 evapi.idle_stop = ev_idle_stop;
278 evapi.prepare_start = evprepare_start; 281 evapi.prepare_start = ev_prepare_start;
279 evapi.prepare_stop = evprepare_stop; 282 evapi.prepare_stop = ev_prepare_stop;
280 evapi.check_start = evcheck_start; 283 evapi.check_start = ev_check_start;
281 evapi.check_stop = evcheck_stop; 284 evapi.check_stop = ev_check_stop;
285 evapi.child_start = ev_child_start;
286 evapi.child_stop = ev_child_stop;
282 287
283 sv_setiv (sv, (IV)&evapi); 288 sv_setiv (sv, (IV)&evapi);
284 SvREADONLY_on (sv); 289 SvREADONLY_on (sv);
285 } 290 }
286} 291}
311 ALIAS: 316 ALIAS:
312 io_ns = 1 317 io_ns = 1
313 CODE: 318 CODE:
314 RETVAL = e_new (sizeof (struct ev_io), cb); 319 RETVAL = e_new (sizeof (struct ev_io), cb);
315 RETVAL->fh = newSVsv (fh); 320 RETVAL->fh = newSVsv (fh);
316 evio_set (RETVAL, sv_fileno (RETVAL->fh), events); 321 ev_io_set (RETVAL, sv_fileno (RETVAL->fh), events);
317 if (!ix) evio_start (RETVAL); 322 if (!ix) ev_io_start (RETVAL);
318 OUTPUT: 323 OUTPUT:
319 RETVAL 324 RETVAL
320 325
321struct ev_timer *timer (NV after, NV repeat, SV *cb) 326struct ev_timer *timer (NV after, NV repeat, SV *cb)
322 ALIAS: 327 ALIAS:
323 timer_ns = 1 328 timer_ns = 1
324 INIT: 329 INIT:
325 CHECK_REPEAT (repeat); 330 CHECK_REPEAT (repeat);
326 CODE: 331 CODE:
327 RETVAL = e_new (sizeof (struct ev_timer), cb); 332 RETVAL = e_new (sizeof (struct ev_timer), cb);
328 evtimer_set (RETVAL, after, repeat); 333 ev_timer_set (RETVAL, after, repeat);
329 if (!ix) evtimer_start (RETVAL); 334 if (!ix) ev_timer_start (RETVAL);
330 OUTPUT: 335 OUTPUT:
331 RETVAL 336 RETVAL
332 337
333struct ev_periodic *periodic (NV at, NV interval, SV *cb) 338struct ev_periodic *periodic (NV at, NV interval, SV *cb)
334 ALIAS: 339 ALIAS:
335 periodic_ns = 1 340 periodic_ns = 1
336 INIT: 341 INIT:
337 CHECK_REPEAT (interval); 342 CHECK_REPEAT (interval);
338 CODE: 343 CODE:
339 RETVAL = e_new (sizeof (struct ev_periodic), cb); 344 RETVAL = e_new (sizeof (struct ev_periodic), cb);
340 evperiodic_set (RETVAL, at, interval); 345 ev_periodic_set (RETVAL, at, interval);
341 if (!ix) evperiodic_start (RETVAL); 346 if (!ix) ev_periodic_start (RETVAL);
342 OUTPUT: 347 OUTPUT:
343 RETVAL 348 RETVAL
344 349
345struct ev_signal *signal (Signal signum, SV *cb) 350struct ev_signal *signal (Signal signum, SV *cb)
346 ALIAS: 351 ALIAS:
347 signal_ns = 1 352 signal_ns = 1
348 CODE: 353 CODE:
349 RETVAL = e_new (sizeof (struct ev_signal), cb); 354 RETVAL = e_new (sizeof (struct ev_signal), cb);
350 evsignal_set (RETVAL, signum); 355 ev_signal_set (RETVAL, signum);
351 if (!ix) evsignal_start (RETVAL); 356 if (!ix) ev_signal_start (RETVAL);
352 OUTPUT: 357 OUTPUT:
353 RETVAL 358 RETVAL
354 359
355struct ev_idle *idle (SV *cb) 360struct ev_idle *idle (SV *cb)
356 ALIAS: 361 ALIAS:
357 idle_ns = 1 362 idle_ns = 1
358 CODE: 363 CODE:
359 RETVAL = e_new (sizeof (struct ev_idle), cb); 364 RETVAL = e_new (sizeof (struct ev_idle), cb);
360 evidle_set (RETVAL); 365 ev_idle_set (RETVAL);
361 if (!ix) evidle_start (RETVAL); 366 if (!ix) ev_idle_start (RETVAL);
362 OUTPUT: 367 OUTPUT:
363 RETVAL 368 RETVAL
364 369
365struct ev_prepare *prepare (SV *cb) 370struct ev_prepare *prepare (SV *cb)
366 ALIAS: 371 ALIAS:
367 prepare_ns = 1 372 prepare_ns = 1
368 CODE: 373 CODE:
369 RETVAL = e_new (sizeof (struct ev_prepare), cb); 374 RETVAL = e_new (sizeof (struct ev_prepare), cb);
370 evprepare_set (RETVAL); 375 ev_prepare_set (RETVAL);
371 if (!ix) evprepare_start (RETVAL); 376 if (!ix) ev_prepare_start (RETVAL);
372 OUTPUT: 377 OUTPUT:
373 RETVAL 378 RETVAL
374 379
375struct ev_check *check (SV *cb) 380struct ev_check *check (SV *cb)
376 ALIAS: 381 ALIAS:
377 check_ns = 1 382 check_ns = 1
378 CODE: 383 CODE:
379 RETVAL = e_new (sizeof (struct ev_check), cb); 384 RETVAL = e_new (sizeof (struct ev_check), cb);
380 evcheck_set (RETVAL); 385 ev_check_set (RETVAL);
381 if (!ix) evcheck_start (RETVAL); 386 if (!ix) ev_check_start (RETVAL);
382 OUTPUT: 387 OUTPUT:
383 RETVAL 388 RETVAL
384 389
385struct ev_child *child (SV *cb, int pid) 390struct ev_child *child (int pid, SV *cb)
386 ALIAS: 391 ALIAS:
387 check_ns = 1 392 check_ns = 1
388 CODE: 393 CODE:
389 RETVAL = e_new (sizeof (struct ev_check), cb); 394 RETVAL = e_new (sizeof (struct ev_check), cb);
390 evchild (RETVAL, pid); 395 ev_child_set (RETVAL, pid);
391 if (!ix) evchild_start (RETVAL); 396 if (!ix) ev_child_start (RETVAL);
392 OUTPUT: 397 OUTPUT:
393 RETVAL 398 RETVAL
394 399
395 400
396PROTOTYPES: DISABLE 401PROTOTYPES: DISABLE
408 sv_setsv (w->cb_sv, new_cb); 413 sv_setsv (w->cb_sv, new_cb);
409} 414}
410 OUTPUT: 415 OUTPUT:
411 RETVAL 416 RETVAL
412 417
418void trigger (struct ev_watcher *w, int revents = EV_NONE)
419 CODE:
420 w->cb (w, revents);
421
413MODULE = EV PACKAGE = EV::IO PREFIX = evio_ 422MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
414 423
415void evio_start (struct ev_io *w) 424void ev_io_start (struct ev_io *w)
416 425
417void evio_stop (struct ev_io *w) 426void ev_io_stop (struct ev_io *w)
427
428void DESTROY (struct ev_io *w)
429 CODE:
430 ev_io_stop (w);
418 431
419void set (struct ev_io *w, SV *fh, int events) 432void set (struct ev_io *w, SV *fh, int events)
420 CODE: 433 CODE:
421{ 434{
422 int active = w->active; 435 int active = w->active;
423 if (active) evio_stop (w); 436 if (active) ev_io_stop (w);
424 437
425 sv_setsv (w->fh, fh); 438 sv_setsv (w->fh, fh);
426 evio_set (w, sv_fileno (w->fh), events); 439 ev_io_set (w, sv_fileno (w->fh), events);
427 440
428 if (active) evio_start (w); 441 if (active) ev_io_start (w);
429} 442}
430 443
431SV *fh (struct ev_io *w, SV *new_fh = 0) 444SV *fh (struct ev_io *w, SV *new_fh = 0)
432 CODE: 445 CODE:
433{ 446{
434 RETVAL = newSVsv (w->fh); 447 RETVAL = newSVsv (w->fh);
435 448
436 if (items > 1) 449 if (items > 1)
437 { 450 {
438 int active = w->active; 451 int active = w->active;
439 if (active) evio_stop (w); 452 if (active) ev_io_stop (w);
440 453
441 sv_setsv (w->fh, new_fh); 454 sv_setsv (w->fh, new_fh);
442 evio_set (w, sv_fileno (w->fh), w->events); 455 ev_io_set (w, sv_fileno (w->fh), w->events);
443 456
444 if (active) evio_start (w); 457 if (active) ev_io_start (w);
445 } 458 }
446} 459}
447 OUTPUT: 460 OUTPUT:
448 RETVAL 461 RETVAL
449 462
453 RETVAL = w->events; 466 RETVAL = w->events;
454 467
455 if (items > 1) 468 if (items > 1)
456 { 469 {
457 int active = w->active; 470 int active = w->active;
458 if (active) evio_stop (w); 471 if (active) ev_io_stop (w);
459 472
460 evio_set (w, w->fd, new_events); 473 ev_io_set (w, w->fd, new_events);
461 474
462 if (active) evio_start (w); 475 if (active) ev_io_start (w);
463 } 476 }
464} 477}
465 OUTPUT: 478 OUTPUT:
466 RETVAL 479 RETVAL
467 480
468MODULE = EV PACKAGE = EV::Signal PREFIX = evsignal_ 481MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_
469 482
470void evsignal_start (struct ev_signal *w) 483void ev_signal_start (struct ev_signal *w)
471 484
472void evsignal_stop (struct ev_signal *w) 485void ev_signal_stop (struct ev_signal *w)
486
487void DESTROY (struct ev_signal *w)
488 CODE:
489 ev_signal_stop (w);
473 490
474void set (struct ev_signal *w, SV *signal = 0) 491void set (struct ev_signal *w, SV *signal = 0)
475 CODE: 492 CODE:
476{ 493{
477 Signal signum = sv_signum (signal); /* may croak here */ 494 Signal signum = sv_signum (signal); /* may croak here */
478 int active = w->active; 495 int active = w->active;
479 496
480 if (active) evsignal_stop (w); 497 if (active) ev_signal_stop (w);
481 evsignal_set (w, signum); 498 ev_signal_set (w, signum);
482 if (active) evsignal_start (w); 499 if (active) ev_signal_start (w);
483} 500}
484 501
485MODULE = EV PACKAGE = EV::Time 502MODULE = EV PACKAGE = EV::Time
486 503
487MODULE = EV PACKAGE = EV::Timer PREFIX = evtimer_ 504MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
488 505
489void evtimer_start (struct ev_timer *w) 506void ev_timer_start (struct ev_timer *w)
490 INIT: 507 INIT:
491 CHECK_REPEAT (w->repeat); 508 CHECK_REPEAT (w->repeat);
492 509
493void evtimer_stop (struct ev_timer *w) 510void ev_timer_stop (struct ev_timer *w)
494 511
495void evtimer_again (struct ev_timer *w) 512void ev_timer_again (struct ev_timer *w)
496 INIT: 513 INIT:
497 CHECK_REPEAT (w->repeat); 514 CHECK_REPEAT (w->repeat);
515
516void DESTROY (struct ev_timer *w)
517 CODE:
518 ev_timer_stop (w);
498 519
499void set (struct ev_timer *w, NV after, NV repeat = 0.) 520void set (struct ev_timer *w, NV after, NV repeat = 0.)
500 INIT: 521 INIT:
501 CHECK_REPEAT (repeat); 522 CHECK_REPEAT (repeat);
502 CODE: 523 CODE:
503{ 524{
504 int active = w->active; 525 int active = w->active;
505 if (active) evtimer_stop (w); 526 if (active) ev_timer_stop (w);
506 evtimer_set (w, after, repeat); 527 ev_timer_set (w, after, repeat);
507 if (active) evtimer_start (w); 528 if (active) ev_timer_start (w);
508} 529}
509 530
510MODULE = EV PACKAGE = EV::Periodic PREFIX = evperiodic_ 531MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_
511 532
512void evperiodic_start (struct ev_periodic *w) 533void ev_periodic_start (struct ev_periodic *w)
513 INIT: 534 INIT:
514 CHECK_REPEAT (w->interval); 535 CHECK_REPEAT (w->interval);
515 536
516void evperiodic_stop (struct ev_periodic *w) 537void ev_periodic_stop (struct ev_periodic *w)
538
539void DESTROY (struct ev_periodic *w)
540 CODE:
541 ev_periodic_stop (w);
517 542
518void set (struct ev_periodic *w, NV at, NV interval = 0.) 543void set (struct ev_periodic *w, NV at, NV interval = 0.)
519 INIT: 544 INIT:
520 CHECK_REPEAT (interval); 545 CHECK_REPEAT (interval);
521 CODE: 546 CODE:
522{ 547{
523 int active = w->active; 548 int active = w->active;
524 if (active) evperiodic_stop (w); 549 if (active) ev_periodic_stop (w);
525 evperiodic_set (w, at, interval); 550 ev_periodic_set (w, at, interval);
526 if (active) evperiodic_start (w); 551 if (active) ev_periodic_start (w);
527} 552}
528 553
529MODULE = EV PACKAGE = EV::Idle PREFIX = evidle_ 554MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
530 555
531void evidle_start (struct ev_idle *w) 556void ev_idle_start (struct ev_idle *w)
532 557
533void evidle_stop (struct ev_idle *w) 558void ev_idle_stop (struct ev_idle *w)
534 559
560void DESTROY (struct ev_idle *w)
561 CODE:
562 ev_idle_stop (w);
563
535MODULE = EV PACKAGE = EV::Prepare PREFIX = evcheck_ 564MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_
536 565
537void evprepare_start (struct ev_prepare *w) 566void ev_prepare_start (struct ev_prepare *w)
538 567
539void evprepare_stop (struct ev_prepare *w) 568void ev_prepare_stop (struct ev_prepare *w)
540 569
570void DESTROY (struct ev_prepare *w)
571 CODE:
572 ev_prepare_stop (w);
573
541MODULE = EV PACKAGE = EV::Check PREFIX = evcheck_ 574MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
542 575
543void evcheck_start (struct ev_check *w) 576void ev_check_start (struct ev_check *w)
544 577
545void evcheck_stop (struct ev_check *w) 578void ev_check_stop (struct ev_check *w)
546 579
580void DESTROY (struct ev_check *w)
581 CODE:
582 ev_check_stop (w);
583
547MODULE = EV PACKAGE = EV::Child PREFIX = evchild_ 584MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
548 585
549void evchild_start (struct ev_child *w) 586void ev_child_start (struct ev_child *w)
550 587
551void evchild_stop (struct ev_child *w) 588void ev_child_stop (struct ev_child *w)
589
590void DESTROY (struct ev_child *w)
591 CODE:
592 ev_child_stop (w);
552 593
553void set (struct ev_child *w, int pid) 594void set (struct ev_child *w, int pid)
554 CODE: 595 CODE:
555{ 596{
556 int active = w->active; 597 int active = w->active;
557 if (active) evchild_stop (w); 598 if (active) ev_child_stop (w);
558 evchild_set (w, pid); 599 ev_child_set (w, pid);
559 if (active) evchild_start (w); 600 if (active) ev_child_start (w);
560} 601}
602
603int status (struct ev_child *w)
604 CODE:
605 RETVAL = w->status;
606 OUTPUT:
607 RETVAL
561 608
562#if 0 609#if 0
563 610
564MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 611MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
565 612

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines