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

Comparing EV/EV.xs (file contents):
Revision 1.25 by root, Wed Oct 31 20:19:20 2007 UTC vs.
Revision 1.29 by root, Thu Nov 1 06:48:49 2007 UTC

73 SvPOK_only (self); 73 SvPOK_only (self);
74 SvCUR_set (self, size); 74 SvCUR_set (self, size);
75 75
76 w = (struct ev_watcher *)SvPVX (self); 76 w = (struct ev_watcher *)SvPVX (self);
77 77
78 evw_init (w, e_cb); 78 ev_watcher_init (w, e_cb);
79 79
80 w->fh = 0; 80 w->fh = 0;
81 w->cb_sv = newSVsv (cb_sv); 81 w->cb_sv = newSVsv (cb_sv);
82 w->self = self; 82 w->self = self;
83 83
242 242
243 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 243 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
244 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 244 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
245 245
246 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 246 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
247 stash_io = gv_stashpv ("EV::IO" , 1); 247 stash_io = gv_stashpv ("EV::Io" , 1);
248 stash_time = gv_stashpv ("EV::Time" , 1); 248 stash_time = gv_stashpv ("EV::Time" , 1);
249 stash_timer = gv_stashpv ("EV::Timer" , 1); 249 stash_timer = gv_stashpv ("EV::Timer" , 1);
250 stash_periodic = gv_stashpv ("EV::Periodic", 1); 250 stash_periodic = gv_stashpv ("EV::Periodic", 1);
251 stash_signal = gv_stashpv ("EV::Signal" , 1); 251 stash_signal = gv_stashpv ("EV::Signal" , 1);
252 stash_idle = gv_stashpv ("EV::Idle" , 1); 252 stash_idle = gv_stashpv ("EV::Idle" , 1);
267 evapi.method = &ev_method; 267 evapi.method = &ev_method;
268 evapi.loop_done = &ev_loop_done; 268 evapi.loop_done = &ev_loop_done;
269 evapi.time = ev_time; 269 evapi.time = ev_time;
270 evapi.loop = ev_loop; 270 evapi.loop = ev_loop;
271 evapi.once = ev_once; 271 evapi.once = ev_once;
272 evapi.io_start = evio_start; 272 evapi.io_start = ev_io_start;
273 evapi.io_stop = evio_stop; 273 evapi.io_stop = ev_io_stop;
274 evapi.timer_start = evtimer_start; 274 evapi.timer_start = ev_timer_start;
275 evapi.timer_stop = evtimer_stop; 275 evapi.timer_stop = ev_timer_stop;
276 evapi.timer_again = evtimer_again; 276 evapi.timer_again = ev_timer_again;
277 evapi.periodic_start = evperiodic_start; 277 evapi.periodic_start = ev_periodic_start;
278 evapi.periodic_stop = evperiodic_stop; 278 evapi.periodic_stop = ev_periodic_stop;
279 evapi.signal_start = evsignal_start; 279 evapi.signal_start = ev_signal_start;
280 evapi.signal_stop = evsignal_stop; 280 evapi.signal_stop = ev_signal_stop;
281 evapi.idle_start = evidle_start; 281 evapi.idle_start = ev_idle_start;
282 evapi.idle_stop = evidle_stop; 282 evapi.idle_stop = ev_idle_stop;
283 evapi.prepare_start = evprepare_start; 283 evapi.prepare_start = ev_prepare_start;
284 evapi.prepare_stop = evprepare_stop; 284 evapi.prepare_stop = ev_prepare_stop;
285 evapi.check_start = evcheck_start; 285 evapi.check_start = ev_check_start;
286 evapi.check_stop = evcheck_stop; 286 evapi.check_stop = ev_check_stop;
287 evapi.child_start = evchild_start; 287 evapi.child_start = ev_child_start;
288 evapi.child_stop = evchild_stop; 288 evapi.child_stop = ev_child_stop;
289 289
290 sv_setiv (sv, (IV)&evapi); 290 sv_setiv (sv, (IV)&evapi);
291 SvREADONLY_on (sv); 291 SvREADONLY_on (sv);
292 } 292 }
293} 293}
318 ALIAS: 318 ALIAS:
319 io_ns = 1 319 io_ns = 1
320 CODE: 320 CODE:
321 RETVAL = e_new (sizeof (struct ev_io), cb); 321 RETVAL = e_new (sizeof (struct ev_io), cb);
322 RETVAL->fh = newSVsv (fh); 322 RETVAL->fh = newSVsv (fh);
323 evio_set (RETVAL, sv_fileno (RETVAL->fh), events); 323 ev_io_set (RETVAL, sv_fileno (RETVAL->fh), events);
324 if (!ix) evio_start (RETVAL); 324 if (!ix) ev_io_start (RETVAL);
325 OUTPUT: 325 OUTPUT:
326 RETVAL 326 RETVAL
327 327
328struct ev_timer *timer (NV after, NV repeat, SV *cb) 328struct ev_timer *timer (NV after, NV repeat, SV *cb)
329 ALIAS: 329 ALIAS:
330 timer_ns = 1 330 timer_ns = 1
331 INIT: 331 INIT:
332 CHECK_REPEAT (repeat); 332 CHECK_REPEAT (repeat);
333 CODE: 333 CODE:
334 RETVAL = e_new (sizeof (struct ev_timer), cb); 334 RETVAL = e_new (sizeof (struct ev_timer), cb);
335 evtimer_set (RETVAL, after, repeat); 335 ev_timer_set (RETVAL, after, repeat);
336 if (!ix) evtimer_start (RETVAL); 336 if (!ix) ev_timer_start (RETVAL);
337 OUTPUT: 337 OUTPUT:
338 RETVAL 338 RETVAL
339 339
340struct ev_periodic *periodic (NV at, NV interval, SV *cb) 340struct ev_periodic *periodic (NV at, NV interval, SV *cb)
341 ALIAS: 341 ALIAS:
342 periodic_ns = 1 342 periodic_ns = 1
343 INIT: 343 INIT:
344 CHECK_REPEAT (interval); 344 CHECK_REPEAT (interval);
345 CODE: 345 CODE:
346 RETVAL = e_new (sizeof (struct ev_periodic), cb); 346 RETVAL = e_new (sizeof (struct ev_periodic), cb);
347 evperiodic_set (RETVAL, at, interval); 347 ev_periodic_set (RETVAL, at, interval);
348 if (!ix) evperiodic_start (RETVAL); 348 if (!ix) ev_periodic_start (RETVAL);
349 OUTPUT: 349 OUTPUT:
350 RETVAL 350 RETVAL
351 351
352struct ev_signal *signal (Signal signum, SV *cb) 352struct ev_signal *signal (Signal signum, SV *cb)
353 ALIAS: 353 ALIAS:
354 signal_ns = 1 354 signal_ns = 1
355 CODE: 355 CODE:
356 RETVAL = e_new (sizeof (struct ev_signal), cb); 356 RETVAL = e_new (sizeof (struct ev_signal), cb);
357 evsignal_set (RETVAL, signum); 357 ev_signal_set (RETVAL, signum);
358 if (!ix) evsignal_start (RETVAL); 358 if (!ix) ev_signal_start (RETVAL);
359 OUTPUT: 359 OUTPUT:
360 RETVAL 360 RETVAL
361 361
362struct ev_idle *idle (SV *cb) 362struct ev_idle *idle (SV *cb)
363 ALIAS: 363 ALIAS:
364 idle_ns = 1 364 idle_ns = 1
365 CODE: 365 CODE:
366 RETVAL = e_new (sizeof (struct ev_idle), cb); 366 RETVAL = e_new (sizeof (struct ev_idle), cb);
367 evidle_set (RETVAL); 367 ev_idle_set (RETVAL);
368 if (!ix) evidle_start (RETVAL); 368 if (!ix) ev_idle_start (RETVAL);
369 OUTPUT: 369 OUTPUT:
370 RETVAL 370 RETVAL
371 371
372struct ev_prepare *prepare (SV *cb) 372struct ev_prepare *prepare (SV *cb)
373 ALIAS: 373 ALIAS:
374 prepare_ns = 1 374 prepare_ns = 1
375 CODE: 375 CODE:
376 RETVAL = e_new (sizeof (struct ev_prepare), cb); 376 RETVAL = e_new (sizeof (struct ev_prepare), cb);
377 evprepare_set (RETVAL); 377 ev_prepare_set (RETVAL);
378 if (!ix) evprepare_start (RETVAL); 378 if (!ix) ev_prepare_start (RETVAL);
379 OUTPUT: 379 OUTPUT:
380 RETVAL 380 RETVAL
381 381
382struct ev_check *check (SV *cb) 382struct ev_check *check (SV *cb)
383 ALIAS: 383 ALIAS:
384 check_ns = 1 384 check_ns = 1
385 CODE: 385 CODE:
386 RETVAL = e_new (sizeof (struct ev_check), cb); 386 RETVAL = e_new (sizeof (struct ev_check), cb);
387 evcheck_set (RETVAL); 387 ev_check_set (RETVAL);
388 if (!ix) evcheck_start (RETVAL); 388 if (!ix) ev_check_start (RETVAL);
389 OUTPUT: 389 OUTPUT:
390 RETVAL 390 RETVAL
391 391
392struct ev_child *child (int pid, SV *cb) 392struct ev_child *child (int pid, SV *cb)
393 ALIAS: 393 ALIAS:
394 check_ns = 1 394 check_ns = 1
395 CODE: 395 CODE:
396 RETVAL = e_new (sizeof (struct ev_check), cb); 396 RETVAL = e_new (sizeof (struct ev_check), cb);
397 evchild_set (RETVAL, pid); 397 ev_child_set (RETVAL, pid);
398 if (!ix) evchild_start (RETVAL); 398 if (!ix) ev_child_start (RETVAL);
399 OUTPUT: 399 OUTPUT:
400 RETVAL 400 RETVAL
401 401
402 402
403PROTOTYPES: DISABLE 403PROTOTYPES: DISABLE
415 sv_setsv (w->cb_sv, new_cb); 415 sv_setsv (w->cb_sv, new_cb);
416} 416}
417 OUTPUT: 417 OUTPUT:
418 RETVAL 418 RETVAL
419 419
420void trigger (struct ev_watcher *w, int revents = EV_NONE)
421 CODE:
422 w->cb (w, revents);
423
420MODULE = EV PACKAGE = EV::IO PREFIX = evio_ 424MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
421 425
422void evio_start (struct ev_io *w) 426void ev_io_start (struct ev_io *w)
423 427
424void evio_stop (struct ev_io *w) 428void ev_io_stop (struct ev_io *w)
429
430void DESTROY (struct ev_io *w)
431 CODE:
432 ev_io_stop (w);
425 433
426void set (struct ev_io *w, SV *fh, int events) 434void set (struct ev_io *w, SV *fh, int events)
427 CODE: 435 CODE:
428{ 436{
429 int active = w->active; 437 int active = w->active;
430 if (active) evio_stop (w); 438 if (active) ev_io_stop (w);
431 439
432 sv_setsv (w->fh, fh); 440 sv_setsv (w->fh, fh);
433 evio_set (w, sv_fileno (w->fh), events); 441 ev_io_set (w, sv_fileno (w->fh), events);
434 442
435 if (active) evio_start (w); 443 if (active) ev_io_start (w);
436} 444}
437 445
438SV *fh (struct ev_io *w, SV *new_fh = 0) 446SV *fh (struct ev_io *w, SV *new_fh = 0)
439 CODE: 447 CODE:
440{ 448{
441 RETVAL = newSVsv (w->fh); 449 RETVAL = newSVsv (w->fh);
442 450
443 if (items > 1) 451 if (items > 1)
444 { 452 {
445 int active = w->active; 453 int active = w->active;
446 if (active) evio_stop (w); 454 if (active) ev_io_stop (w);
447 455
448 sv_setsv (w->fh, new_fh); 456 sv_setsv (w->fh, new_fh);
449 evio_set (w, sv_fileno (w->fh), w->events); 457 ev_io_set (w, sv_fileno (w->fh), w->events);
450 458
451 if (active) evio_start (w); 459 if (active) ev_io_start (w);
452 } 460 }
453} 461}
454 OUTPUT: 462 OUTPUT:
455 RETVAL 463 RETVAL
456 464
460 RETVAL = w->events; 468 RETVAL = w->events;
461 469
462 if (items > 1) 470 if (items > 1)
463 { 471 {
464 int active = w->active; 472 int active = w->active;
465 if (active) evio_stop (w); 473 if (active) ev_io_stop (w);
466 474
467 evio_set (w, w->fd, new_events); 475 ev_io_set (w, w->fd, new_events);
468 476
469 if (active) evio_start (w); 477 if (active) ev_io_start (w);
470 } 478 }
471} 479}
472 OUTPUT: 480 OUTPUT:
473 RETVAL 481 RETVAL
474 482
475MODULE = EV PACKAGE = EV::Signal PREFIX = evsignal_ 483MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_
476 484
477void evsignal_start (struct ev_signal *w) 485void ev_signal_start (struct ev_signal *w)
478 486
479void evsignal_stop (struct ev_signal *w) 487void ev_signal_stop (struct ev_signal *w)
488
489void DESTROY (struct ev_signal *w)
490 CODE:
491 ev_signal_stop (w);
480 492
481void set (struct ev_signal *w, SV *signal = 0) 493void set (struct ev_signal *w, SV *signal = 0)
482 CODE: 494 CODE:
483{ 495{
484 Signal signum = sv_signum (signal); /* may croak here */ 496 Signal signum = sv_signum (signal); /* may croak here */
485 int active = w->active; 497 int active = w->active;
486 498
487 if (active) evsignal_stop (w); 499 if (active) ev_signal_stop (w);
488 evsignal_set (w, signum); 500 ev_signal_set (w, signum);
489 if (active) evsignal_start (w); 501 if (active) ev_signal_start (w);
490} 502}
491 503
492MODULE = EV PACKAGE = EV::Time 504MODULE = EV PACKAGE = EV::Time
493 505
494MODULE = EV PACKAGE = EV::Timer PREFIX = evtimer_ 506MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
495 507
496void evtimer_start (struct ev_timer *w) 508void ev_timer_start (struct ev_timer *w)
497 INIT: 509 INIT:
498 CHECK_REPEAT (w->repeat); 510 CHECK_REPEAT (w->repeat);
499 511
500void evtimer_stop (struct ev_timer *w) 512void ev_timer_stop (struct ev_timer *w)
501 513
502void evtimer_again (struct ev_timer *w) 514void ev_timer_again (struct ev_timer *w)
503 INIT: 515 INIT:
504 CHECK_REPEAT (w->repeat); 516 CHECK_REPEAT (w->repeat);
517
518void DESTROY (struct ev_timer *w)
519 CODE:
520 ev_timer_stop (w);
505 521
506void set (struct ev_timer *w, NV after, NV repeat = 0.) 522void set (struct ev_timer *w, NV after, NV repeat = 0.)
507 INIT: 523 INIT:
508 CHECK_REPEAT (repeat); 524 CHECK_REPEAT (repeat);
509 CODE: 525 CODE:
510{ 526{
511 int active = w->active; 527 int active = w->active;
512 if (active) evtimer_stop (w); 528 if (active) ev_timer_stop (w);
513 evtimer_set (w, after, repeat); 529 ev_timer_set (w, after, repeat);
514 if (active) evtimer_start (w); 530 if (active) ev_timer_start (w);
515} 531}
516 532
517MODULE = EV PACKAGE = EV::Periodic PREFIX = evperiodic_ 533MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_
518 534
519void evperiodic_start (struct ev_periodic *w) 535void ev_periodic_start (struct ev_periodic *w)
520 INIT: 536 INIT:
521 CHECK_REPEAT (w->interval); 537 CHECK_REPEAT (w->interval);
522 538
523void evperiodic_stop (struct ev_periodic *w) 539void ev_periodic_stop (struct ev_periodic *w)
540
541void DESTROY (struct ev_periodic *w)
542 CODE:
543 ev_periodic_stop (w);
524 544
525void set (struct ev_periodic *w, NV at, NV interval = 0.) 545void set (struct ev_periodic *w, NV at, NV interval = 0.)
526 INIT: 546 INIT:
527 CHECK_REPEAT (interval); 547 CHECK_REPEAT (interval);
528 CODE: 548 CODE:
529{ 549{
530 int active = w->active; 550 int active = w->active;
531 if (active) evperiodic_stop (w); 551 if (active) ev_periodic_stop (w);
532 evperiodic_set (w, at, interval); 552 ev_periodic_set (w, at, interval);
533 if (active) evperiodic_start (w); 553 if (active) ev_periodic_start (w);
534} 554}
535 555
536MODULE = EV PACKAGE = EV::Idle PREFIX = evidle_ 556MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
537 557
538void evidle_start (struct ev_idle *w) 558void ev_idle_start (struct ev_idle *w)
539 559
540void evidle_stop (struct ev_idle *w) 560void ev_idle_stop (struct ev_idle *w)
541 561
562void DESTROY (struct ev_idle *w)
563 CODE:
564 ev_idle_stop (w);
565
542MODULE = EV PACKAGE = EV::Prepare PREFIX = evcheck_ 566MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_
543 567
544void evprepare_start (struct ev_prepare *w) 568void ev_prepare_start (struct ev_prepare *w)
545 569
546void evprepare_stop (struct ev_prepare *w) 570void ev_prepare_stop (struct ev_prepare *w)
547 571
572void DESTROY (struct ev_prepare *w)
573 CODE:
574 ev_prepare_stop (w);
575
548MODULE = EV PACKAGE = EV::Check PREFIX = evcheck_ 576MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
549 577
550void evcheck_start (struct ev_check *w) 578void ev_check_start (struct ev_check *w)
551 579
552void evcheck_stop (struct ev_check *w) 580void ev_check_stop (struct ev_check *w)
553 581
582void DESTROY (struct ev_check *w)
583 CODE:
584 ev_check_stop (w);
585
554MODULE = EV PACKAGE = EV::Child PREFIX = evchild_ 586MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
555 587
556void evchild_start (struct ev_child *w) 588void ev_child_start (struct ev_child *w)
557 589
558void evchild_stop (struct ev_child *w) 590void ev_child_stop (struct ev_child *w)
591
592void DESTROY (struct ev_child *w)
593 CODE:
594 ev_child_stop (w);
559 595
560void set (struct ev_child *w, int pid) 596void set (struct ev_child *w, int pid)
561 CODE: 597 CODE:
562{ 598{
563 int active = w->active; 599 int active = w->active;
564 if (active) evchild_stop (w); 600 if (active) ev_child_stop (w);
565 evchild_set (w, pid); 601 ev_child_set (w, pid);
566 if (active) evchild_start (w); 602 if (active) ev_child_start (w);
567} 603}
568 604
569int status (struct ev_child *w) 605int status (struct ev_child *w)
570 CODE: 606 CODE:
571 RETVAL = w->status; 607 RETVAL = w->status;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines