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

Comparing EV/EV.xs (file contents):
Revision 1.56 by root, Tue Nov 6 16:09:37 2007 UTC vs.
Revision 1.59 by root, Thu Nov 8 00:44:17 2007 UTC

9 9
10/* fix perl api breakage */ 10/* fix perl api breakage */
11#undef signal 11#undef signal
12#undef sigaction 12#undef sigaction
13 13
14#define EV_SELECT_USE_WIN32_HANDLES 0
15#define EV_SELECT_USE_FD_SET 0
14/* due to bugs in OS X we have to use libev/ explicitly here */ 16/* due to bugs in OS X we have to use libev/ explicitly here */
15#include "libev/ev.c" 17#include "libev/ev.c"
16#include "event.c" 18#include "event.c"
17 19
18#ifndef WIN32 20#ifndef WIN32
110} 112}
111 113
112static void 114static void
113e_destroy (void *w_) 115e_destroy (void *w_)
114{ 116{
115 struct ev_watcher *w = w_; 117 struct ev_watcher *w = (struct ev_watcher *)w_;
116 118
117 SvREFCNT_dec (w->fh ); w->fh = 0; 119 SvREFCNT_dec (w->fh ); w->fh = 0;
118 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0; 120 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
119} 121}
120 122
175 PUSHMARK (SP); 177 PUSHMARK (SP);
176 PUTBACK; 178 PUTBACK;
177 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);
178 SP = PL_stack_base + mark; PUTBACK; 180 SP = PL_stack_base + mark; PUTBACK;
179 } 181 }
182}
183
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;
180} 225}
181 226
182///////////////////////////////////////////////////////////////////////////// 227/////////////////////////////////////////////////////////////////////////////
183// DNS 228// DNS
184 229
373 ev_timer_set (RETVAL, after, repeat); 418 ev_timer_set (RETVAL, after, repeat);
374 if (!ix) ev_timer_start (RETVAL); 419 if (!ix) ev_timer_start (RETVAL);
375 OUTPUT: 420 OUTPUT:
376 RETVAL 421 RETVAL
377 422
378struct ev_periodic *periodic (NV at, NV interval, SV *cb) 423SV *periodic (NV at, NV interval, SV *reschedule_cb, SV *cb)
379 ALIAS: 424 ALIAS:
380 periodic_ns = 1 425 periodic_ns = 1
381 INIT: 426 INIT:
382 CHECK_REPEAT (interval); 427 CHECK_REPEAT (interval);
383 CODE: 428 CODE:
429{
430 struct ev_periodic *w;
384 RETVAL = e_new (sizeof (struct ev_periodic), cb); 431 w = e_new (sizeof (struct ev_periodic), cb);
385 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);
386 if (!ix) ev_periodic_start (RETVAL); 435 if (!ix) ev_periodic_start (w);
436}
387 OUTPUT: 437 OUTPUT:
388 RETVAL 438 RETVAL
389 439
390struct ev_signal *signal (Signal signum, SV *cb) 440struct ev_signal *signal (Signal signum, SV *cb)
391 ALIAS: 441 ALIAS:
632 INIT: 682 INIT:
633 CHECK_REPEAT (w->interval); 683 CHECK_REPEAT (w->interval);
634 684
635void ev_periodic_stop (struct ev_periodic *w) 685void ev_periodic_stop (struct ev_periodic *w)
636 686
687void ev_periodic_again (struct ev_periodic *w)
688
637void DESTROY (struct ev_periodic *w) 689void DESTROY (struct ev_periodic *w)
638 CODE: 690 CODE:
639 ev_periodic_stop (w); 691 ev_periodic_stop (w);
640 e_destroy (w); 692 e_destroy (w);
641 693
642void 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)
643 INIT: 695 INIT:
644 CHECK_REPEAT (interval); 696 CHECK_REPEAT (interval);
645 CODE: 697 CODE:
646{ 698{
647 int active = ev_is_active (w); 699 int active = ev_is_active (w);
648 if (active) ev_periodic_stop (w); 700 if (active) ev_periodic_stop (w);
649 701
702 SvREFCNT_dec (w->fh);
703 w->fh = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
650 ev_periodic_set (w, at, interval); 704 ev_periodic_set (w, at, interval, w->fh ? e_periodic_cb : 0);
651 705
652 if (active) ev_periodic_start (w); 706 if (active) ev_periodic_start (w);
653} 707}
654 708
655MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_ 709MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines