ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV/EV.xs
Revision: 1.53
Committed: Mon Nov 5 21:43:17 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
Changes since 1.52: +2 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #include "EXTERN.h"
2     #include "perl.h"
3     #include "XSUB.h"
4    
5 root 1.20 /*#include <netinet/in.h>*/
6 root 1.1
7 root 1.20 #define EV_PROTOTYPES 1
8 root 1.11 #include "EV/EVAPI.h"
9    
10 root 1.53 /* due to bugs in OS X we have to use libev/ explicitly here */
11     #include "libev/ev.c"
12 root 1.51 #include "event.c"
13 root 1.47 #define DNS_USE_GETTIMEOFDAY_FOR_ID 1
14     #define HAVE_STRUCT_IN6_ADDR 1
15     #undef HAVE_STRTOK_R
16     #undef strtok_r
17     #define strtok_r fake_strtok_r
18 root 1.51 #include "evdns.c"
19 root 1.16
20 root 1.10 typedef int Signal;
21 root 1.1
22 root 1.11 static struct EVAPI evapi;
23    
24 root 1.15 static HV
25     *stash_watcher,
26     *stash_io,
27     *stash_timer,
28     *stash_periodic,
29     *stash_signal,
30     *stash_idle,
31 root 1.22 *stash_prepare,
32 root 1.23 *stash_check,
33     *stash_child;
34 root 1.1
35 root 1.43 #ifndef SIG_SIZE
36     /* kudos to Slaven Rezic for the idea */
37     static char sig_size [] = { SIG_NUM };
38     # define SIG_SIZE (sizeof (sig_size) + 1)
39     #endif
40    
41 root 1.10 static int
42     sv_signum (SV *sig)
43     {
44     int signum;
45    
46 root 1.31 SvGETMAGIC (sig);
47 root 1.10
48     for (signum = 1; signum < SIG_SIZE; ++signum)
49     if (strEQ (SvPV_nolen (sig), PL_sig_name [signum]))
50     return signum;
51    
52 root 1.31 if (SvIV (sig) > 0)
53     return SvIV (sig);
54    
55 root 1.10 return -1;
56     }
57    
58 root 1.1 /////////////////////////////////////////////////////////////////////////////
59     // Event
60    
61 root 1.15 static void e_cb (struct ev_watcher *w, int revents);
62 root 1.1
63 root 1.15 static int
64     sv_fileno (SV *fh)
65 root 1.1 {
66 root 1.3 SvGETMAGIC (fh);
67 root 1.1
68 root 1.3 if (SvROK (fh))
69     fh = SvRV (fh);
70 root 1.1
71 root 1.3 if (SvTYPE (fh) == SVt_PVGV)
72     return PerlIO_fileno (IoIFP (sv_2io (fh)));
73 root 1.1
74 root 1.31 if ((SvIV (fh) >= 0) && (SvIV (fh) < 0x7ffffff))
75 root 1.3 return SvIV (fh);
76 root 1.1
77     return -1;
78     }
79    
80 root 1.15 static void *
81     e_new (int size, SV *cb_sv)
82 root 1.1 {
83 root 1.15 struct ev_watcher *w;
84     SV *self = NEWSV (0, size);
85 root 1.1 SvPOK_only (self);
86 root 1.15 SvCUR_set (self, size);
87 root 1.1
88 root 1.15 w = (struct ev_watcher *)SvPVX (self);
89 root 1.1
90 root 1.29 ev_watcher_init (w, e_cb);
91 root 1.1
92 root 1.15 w->fh = 0;
93     w->cb_sv = newSVsv (cb_sv);
94     w->self = self;
95 root 1.1
96 root 1.15 return (void *)w;
97 root 1.1 }
98    
99 root 1.34 static void *
100     e_destroy (void *w_)
101     {
102     struct ev_watcher *w = w_;
103    
104     SvREFCNT_dec (w->fh ); w->fh = 0;
105     SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
106     }
107    
108 root 1.15 static SV *
109     e_bless (struct ev_watcher *w, HV *stash)
110 root 1.1 {
111     SV *rv;
112    
113 root 1.15 if (SvOBJECT (w->self))
114     rv = newRV_inc (w->self);
115 root 1.1 else
116     {
117 root 1.15 rv = newRV_noinc (w->self);
118     sv_bless (rv, stash);
119     SvREADONLY_on (w->self);
120 root 1.1 }
121    
122     return rv;
123     }
124    
125     static void
126 root 1.15 e_cb (struct ev_watcher *w, int revents)
127 root 1.1 {
128     dSP;
129 root 1.14 I32 mark = SP - PL_stack_base;
130 root 1.24 SV *sv_self, *sv_events, *sv_status = 0;
131 root 1.14 static SV *sv_events_cache;
132 root 1.1
133 root 1.15 sv_self = newRV_inc (w->self); /* w->self MUST be blessed by now */
134 root 1.14
135     if (sv_events_cache)
136     {
137     sv_events = sv_events_cache; sv_events_cache = 0;
138 root 1.15 SvIV_set (sv_events, revents);
139 root 1.14 }
140     else
141 root 1.15 sv_events = newSViv (revents);
142 root 1.14
143 root 1.1 PUSHMARK (SP);
144     EXTEND (SP, 2);
145 root 1.14 PUSHs (sv_self);
146     PUSHs (sv_events);
147 root 1.24
148 root 1.1 PUTBACK;
149 root 1.15 call_sv (w->cb_sv, G_DISCARD | G_VOID | G_EVAL);
150 root 1.14 SP = PL_stack_base + mark; PUTBACK;
151    
152     SvREFCNT_dec (sv_self);
153 root 1.24 SvREFCNT_dec (sv_status);
154 root 1.14
155     if (sv_events_cache)
156     SvREFCNT_dec (sv_events);
157     else
158     sv_events_cache = sv_events;
159 root 1.1
160 root 1.8 if (SvTRUE (ERRSV))
161     {
162     PUSHMARK (SP);
163     PUTBACK;
164     call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
165 root 1.14 SP = PL_stack_base + mark; PUTBACK;
166 root 1.8 }
167 root 1.1 }
168    
169     /////////////////////////////////////////////////////////////////////////////
170     // DNS
171    
172     static void
173     dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
174     {
175     dSP;
176     SV *cb = (SV *)arg;
177    
178     ENTER;
179     SAVETMPS;
180     PUSHMARK (SP);
181     EXTEND (SP, count + 3);
182     PUSHs (sv_2mortal (newSViv (result)));
183    
184     if (result == DNS_ERR_NONE && ttl >= 0)
185     {
186     int i;
187    
188     PUSHs (sv_2mortal (newSViv (type)));
189     PUSHs (sv_2mortal (newSViv (ttl)));
190    
191     for (i = 0; i < count; ++i)
192     switch (type)
193     {
194     case DNS_IPv6_AAAA:
195     PUSHs (sv_2mortal (newSVpvn (i * 16 + (char *)addresses, 16)));
196     break;
197     case DNS_IPv4_A:
198     PUSHs (sv_2mortal (newSVpvn (i * 4 + (char *)addresses, 4)));
199     break;
200     case DNS_PTR:
201     PUSHs (sv_2mortal (newSVpv (*(char **)addresses, 0)));
202     break;
203     }
204     }
205    
206     PUTBACK;
207     call_sv (sv_2mortal (cb), G_DISCARD | G_VOID | G_EVAL);
208    
209     FREETMPS;
210 root 1.8
211     if (SvTRUE (ERRSV))
212     {
213     PUSHMARK (SP);
214     PUTBACK;
215     call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
216     }
217    
218 root 1.1 LEAVE;
219     }
220    
221 root 1.18 #define CHECK_REPEAT(repeat) if (repeat < 0.) \
222     croak (# repeat " value must be >= 0");
223    
224 root 1.31 #define CHECK_FD(fh,fd) if ((fd) < 0) \
225     croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh));
226    
227 root 1.1 /////////////////////////////////////////////////////////////////////////////
228     // XS interface functions
229    
230 root 1.15 MODULE = EV PACKAGE = EV PREFIX = ev_
231 root 1.1
232 root 1.21 PROTOTYPES: ENABLE
233    
234 root 1.1 BOOT:
235     {
236 root 1.10 int i;
237 root 1.1 HV *stash = gv_stashpv ("EV", 1);
238    
239     static const struct {
240     const char *name;
241     IV iv;
242     } *civ, const_iv[] = {
243     # define const_iv(pfx, name) { # name, (IV) pfx ## name },
244 root 1.41 const_iv (EV_, MINPRI)
245     const_iv (EV_, MAXPRI)
246    
247 root 1.20 const_iv (EV_, UNDEF)
248 root 1.1 const_iv (EV_, NONE)
249     const_iv (EV_, TIMEOUT)
250     const_iv (EV_, READ)
251     const_iv (EV_, WRITE)
252     const_iv (EV_, SIGNAL)
253 root 1.15 const_iv (EV_, IDLE)
254     const_iv (EV_, CHECK)
255 root 1.20 const_iv (EV_, ERROR)
256 root 1.15
257     const_iv (EV, LOOP_ONESHOT)
258 root 1.1 const_iv (EV, LOOP_NONBLOCK)
259 root 1.15
260 root 1.41 const_iv (EV, METHOD_AUTO)
261 root 1.15 const_iv (EV, METHOD_SELECT)
262 root 1.41 const_iv (EV, METHOD_POLL)
263 root 1.15 const_iv (EV, METHOD_EPOLL)
264 root 1.42 const_iv (EV, METHOD_KQUEUE)
265     const_iv (EV, METHOD_DEVPOLL)
266     const_iv (EV, METHOD_PORT)
267 root 1.41 const_iv (EV, METHOD_ANY)
268 root 1.1 };
269    
270     for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
271     newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
272    
273 root 1.15 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
274 root 1.28 stash_io = gv_stashpv ("EV::Io" , 1);
275 root 1.15 stash_timer = gv_stashpv ("EV::Timer" , 1);
276     stash_periodic = gv_stashpv ("EV::Periodic", 1);
277     stash_signal = gv_stashpv ("EV::Signal" , 1);
278     stash_idle = gv_stashpv ("EV::Idle" , 1);
279 root 1.22 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
280 root 1.15 stash_check = gv_stashpv ("EV::Check" , 1);
281 root 1.23 stash_child = gv_stashpv ("EV::Child" , 1);
282 root 1.11
283     {
284     SV *sv = perl_get_sv ("EV::API", TRUE);
285     perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */
286    
287 root 1.15 /* the poor man's shared library emulator */
288     evapi.ver = EV_API_VERSION;
289     evapi.rev = EV_API_REVISION;
290     evapi.sv_fileno = sv_fileno;
291     evapi.sv_signum = sv_signum;
292 root 1.47 evapi.now = ev_now;
293     evapi.method = ev_method;
294     evapi.unloop = ev_unloop;
295 root 1.15 evapi.time = ev_time;
296     evapi.loop = ev_loop;
297 root 1.20 evapi.once = ev_once;
298 root 1.29 evapi.io_start = ev_io_start;
299     evapi.io_stop = ev_io_stop;
300     evapi.timer_start = ev_timer_start;
301     evapi.timer_stop = ev_timer_stop;
302     evapi.timer_again = ev_timer_again;
303     evapi.periodic_start = ev_periodic_start;
304     evapi.periodic_stop = ev_periodic_stop;
305     evapi.signal_start = ev_signal_start;
306     evapi.signal_stop = ev_signal_stop;
307     evapi.idle_start = ev_idle_start;
308     evapi.idle_stop = ev_idle_stop;
309     evapi.prepare_start = ev_prepare_start;
310     evapi.prepare_stop = ev_prepare_stop;
311     evapi.check_start = ev_check_start;
312     evapi.check_stop = ev_check_stop;
313     evapi.child_start = ev_child_start;
314     evapi.child_stop = ev_child_stop;
315 root 1.11
316     sv_setiv (sv, (IV)&evapi);
317     SvREADONLY_on (sv);
318     }
319 root 1.33
320 root 1.49 pthread_atfork (0, 0, ev_default_fork);
321 root 1.1 }
322    
323 root 1.15 NV ev_now ()
324 root 1.1
325 root 1.15 int ev_method ()
326 root 1.1
327 root 1.15 NV ev_time ()
328 root 1.1
329 root 1.50 int ev_default_loop (int methods = EVMETHOD_AUTO)
330 root 1.1
331 root 1.15 void ev_loop (int flags = 0)
332 root 1.1
333 root 1.47 void ev_unloop (int how = 1)
334 root 1.1
335 root 1.15 struct ev_io *io (SV *fh, int events, SV *cb)
336     ALIAS:
337     io_ns = 1
338 root 1.1 CODE:
339 root 1.31 {
340     int fd = sv_fileno (fh);
341     CHECK_FD (fh, fd);
342    
343 root 1.15 RETVAL = e_new (sizeof (struct ev_io), cb);
344     RETVAL->fh = newSVsv (fh);
345 root 1.31 ev_io_set (RETVAL, fd, events);
346 root 1.29 if (!ix) ev_io_start (RETVAL);
347 root 1.31 }
348 root 1.1 OUTPUT:
349     RETVAL
350    
351 root 1.15 struct ev_timer *timer (NV after, NV repeat, SV *cb)
352 root 1.1 ALIAS:
353 root 1.15 timer_ns = 1
354 root 1.18 INIT:
355     CHECK_REPEAT (repeat);
356 root 1.1 CODE:
357 root 1.15 RETVAL = e_new (sizeof (struct ev_timer), cb);
358 root 1.29 ev_timer_set (RETVAL, after, repeat);
359     if (!ix) ev_timer_start (RETVAL);
360 root 1.1 OUTPUT:
361     RETVAL
362    
363 root 1.15 struct ev_periodic *periodic (NV at, NV interval, SV *cb)
364 root 1.9 ALIAS:
365 root 1.15 periodic_ns = 1
366 root 1.18 INIT:
367     CHECK_REPEAT (interval);
368 root 1.9 CODE:
369 root 1.15 RETVAL = e_new (sizeof (struct ev_periodic), cb);
370 root 1.29 ev_periodic_set (RETVAL, at, interval);
371     if (!ix) ev_periodic_start (RETVAL);
372 root 1.9 OUTPUT:
373     RETVAL
374    
375 root 1.15 struct ev_signal *signal (Signal signum, SV *cb)
376 root 1.1 ALIAS:
377 root 1.15 signal_ns = 1
378 root 1.1 CODE:
379 root 1.15 RETVAL = e_new (sizeof (struct ev_signal), cb);
380 root 1.29 ev_signal_set (RETVAL, signum);
381     if (!ix) ev_signal_start (RETVAL);
382 root 1.1 OUTPUT:
383     RETVAL
384    
385 root 1.15 struct ev_idle *idle (SV *cb)
386 root 1.1 ALIAS:
387 root 1.15 idle_ns = 1
388 root 1.1 CODE:
389 root 1.15 RETVAL = e_new (sizeof (struct ev_idle), cb);
390 root 1.29 ev_idle_set (RETVAL);
391     if (!ix) ev_idle_start (RETVAL);
392 root 1.1 OUTPUT:
393     RETVAL
394    
395 root 1.22 struct ev_prepare *prepare (SV *cb)
396     ALIAS:
397     prepare_ns = 1
398     CODE:
399     RETVAL = e_new (sizeof (struct ev_prepare), cb);
400 root 1.29 ev_prepare_set (RETVAL);
401     if (!ix) ev_prepare_start (RETVAL);
402 root 1.22 OUTPUT:
403     RETVAL
404    
405 root 1.15 struct ev_check *check (SV *cb)
406 root 1.1 ALIAS:
407 root 1.15 check_ns = 1
408 root 1.1 CODE:
409 root 1.15 RETVAL = e_new (sizeof (struct ev_check), cb);
410 root 1.29 ev_check_set (RETVAL);
411     if (!ix) ev_check_start (RETVAL);
412 root 1.1 OUTPUT:
413     RETVAL
414    
415 root 1.25 struct ev_child *child (int pid, SV *cb)
416 root 1.23 ALIAS:
417     check_ns = 1
418     CODE:
419 root 1.46 RETVAL = e_new (sizeof (struct ev_child), cb);
420 root 1.29 ev_child_set (RETVAL, pid);
421     if (!ix) ev_child_start (RETVAL);
422 root 1.23 OUTPUT:
423     RETVAL
424    
425 root 1.15
426 root 1.1 PROTOTYPES: DISABLE
427    
428 root 1.15 MODULE = EV PACKAGE = EV::Watcher PREFIX = ev_
429 root 1.1
430 root 1.15 int ev_is_active (struct ev_watcher *w)
431 root 1.1
432 root 1.15 SV *cb (struct ev_watcher *w, SV *new_cb = 0)
433 root 1.1 CODE:
434 root 1.15 {
435     RETVAL = newSVsv (w->cb_sv);
436    
437     if (items > 1)
438     sv_setsv (w->cb_sv, new_cb);
439     }
440 root 1.1 OUTPUT:
441     RETVAL
442    
443 root 1.28 void trigger (struct ev_watcher *w, int revents = EV_NONE)
444     CODE:
445     w->cb (w, revents);
446    
447 root 1.41 int priority (struct ev_watcher *w, int new_priority = 0)
448     CODE:
449     {
450     RETVAL = w->priority;
451    
452     if (items > 1)
453     {
454     int active = ev_is_active (w);
455    
456     if (new_priority < EV_MINPRI || new_priority > EV_MAXPRI)
457     croak ("watcher priority out of range, value must be between %d and %d, inclusive", EV_MINPRI, EV_MAXPRI);
458    
459     if (active)
460     {
461     /* grrr. */
462     PUSHMARK (SP);
463     XPUSHs (ST (0));
464     call_method ("stop", G_DISCARD | G_VOID);
465     }
466    
467     ev_set_priority (w, new_priority);
468    
469     if (active)
470     {
471     PUSHMARK (SP);
472     XPUSHs (ST (0));
473     call_method ("start", G_DISCARD | G_VOID);
474     }
475     }
476     }
477     OUTPUT:
478     RETVAL
479    
480 root 1.29 MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
481 root 1.1
482 root 1.29 void ev_io_start (struct ev_io *w)
483 root 1.1
484 root 1.29 void ev_io_stop (struct ev_io *w)
485 root 1.15
486 root 1.26 void DESTROY (struct ev_io *w)
487     CODE:
488 root 1.29 ev_io_stop (w);
489 root 1.34 e_destroy (w);
490 root 1.26
491 root 1.15 void set (struct ev_io *w, SV *fh, int events)
492 root 1.1 CODE:
493     {
494 root 1.41 int active = ev_is_active (w);
495 root 1.31 int fd = sv_fileno (fh);
496     CHECK_FD (fh, fd);
497    
498 root 1.29 if (active) ev_io_stop (w);
499 root 1.1
500 root 1.15 sv_setsv (w->fh, fh);
501 root 1.31 ev_io_set (w, fd, events);
502 root 1.1
503 root 1.29 if (active) ev_io_start (w);
504 root 1.15 }
505 root 1.1
506 root 1.15 SV *fh (struct ev_io *w, SV *new_fh = 0)
507 root 1.1 CODE:
508 root 1.15 {
509     RETVAL = newSVsv (w->fh);
510 root 1.1
511 root 1.15 if (items > 1)
512     {
513 root 1.41 int active = ev_is_active (w);
514 root 1.29 if (active) ev_io_stop (w);
515 root 1.1
516 root 1.15 sv_setsv (w->fh, new_fh);
517 root 1.29 ev_io_set (w, sv_fileno (w->fh), w->events);
518 root 1.1
519 root 1.29 if (active) ev_io_start (w);
520 root 1.15 }
521     }
522 root 1.1 OUTPUT:
523     RETVAL
524    
525 root 1.37 int events (struct ev_io *w, int new_events = EV_UNDEF)
526 root 1.1 CODE:
527 root 1.15 {
528     RETVAL = w->events;
529    
530     if (items > 1)
531     {
532 root 1.41 int active = ev_is_active (w);
533 root 1.29 if (active) ev_io_stop (w);
534 root 1.15
535 root 1.29 ev_io_set (w, w->fd, new_events);
536 root 1.15
537 root 1.29 if (active) ev_io_start (w);
538 root 1.15 }
539     }
540 root 1.1 OUTPUT:
541     RETVAL
542    
543 root 1.29 MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_
544 root 1.15
545 root 1.29 void ev_signal_start (struct ev_signal *w)
546 root 1.15
547 root 1.29 void ev_signal_stop (struct ev_signal *w)
548 root 1.15
549 root 1.26 void DESTROY (struct ev_signal *w)
550     CODE:
551 root 1.29 ev_signal_stop (w);
552 root 1.34 e_destroy (w);
553 root 1.26
554 root 1.40 void set (struct ev_signal *w, SV *signal)
555 root 1.1 CODE:
556 root 1.15 {
557     Signal signum = sv_signum (signal); /* may croak here */
558 root 1.41 int active = ev_is_active (w);
559 root 1.15
560 root 1.29 if (active) ev_signal_stop (w);
561 root 1.39
562 root 1.29 ev_signal_set (w, signum);
563 root 1.39
564 root 1.29 if (active) ev_signal_start (w);
565 root 1.15 }
566    
567 root 1.39 int signal (struct ev_signal *w, SV *new_signal = 0)
568     CODE:
569     {
570     RETVAL = w->signum;
571    
572     if (items > 1)
573     {
574 root 1.40 Signal signum = sv_signum (new_signal); /* may croak here */
575 root 1.41 int active = ev_is_active (w);
576 root 1.39 if (active) ev_signal_stop (w);
577    
578     ev_signal_set (w, signum);
579    
580     if (active) ev_signal_start (w);
581     }
582     }
583     OUTPUT:
584     RETVAL
585    
586 root 1.29 MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
587 root 1.15
588 root 1.29 void ev_timer_start (struct ev_timer *w)
589 root 1.18 INIT:
590     CHECK_REPEAT (w->repeat);
591 root 1.15
592 root 1.29 void ev_timer_stop (struct ev_timer *w)
593 root 1.1
594 root 1.29 void ev_timer_again (struct ev_timer *w)
595 root 1.18 INIT:
596     CHECK_REPEAT (w->repeat);
597 root 1.17
598 root 1.26 void DESTROY (struct ev_timer *w)
599     CODE:
600 root 1.29 ev_timer_stop (w);
601 root 1.34 e_destroy (w);
602 root 1.26
603 root 1.15 void set (struct ev_timer *w, NV after, NV repeat = 0.)
604 root 1.18 INIT:
605     CHECK_REPEAT (repeat);
606 root 1.1 CODE:
607 root 1.15 {
608 root 1.41 int active = ev_is_active (w);
609 root 1.29 if (active) ev_timer_stop (w);
610     ev_timer_set (w, after, repeat);
611     if (active) ev_timer_start (w);
612 root 1.15 }
613 root 1.1
614 root 1.29 MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_
615 root 1.15
616 root 1.29 void ev_periodic_start (struct ev_periodic *w)
617 root 1.18 INIT:
618     CHECK_REPEAT (w->interval);
619 root 1.1
620 root 1.29 void ev_periodic_stop (struct ev_periodic *w)
621 root 1.1
622 root 1.26 void DESTROY (struct ev_periodic *w)
623     CODE:
624 root 1.29 ev_periodic_stop (w);
625 root 1.34 e_destroy (w);
626 root 1.26
627 root 1.15 void set (struct ev_periodic *w, NV at, NV interval = 0.)
628 root 1.18 INIT:
629     CHECK_REPEAT (interval);
630 root 1.10 CODE:
631     {
632 root 1.41 int active = ev_is_active (w);
633 root 1.29 if (active) ev_periodic_stop (w);
634 root 1.39
635 root 1.29 ev_periodic_set (w, at, interval);
636 root 1.39
637 root 1.29 if (active) ev_periodic_start (w);
638 root 1.15 }
639 root 1.10
640 root 1.29 MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
641 root 1.10
642 root 1.29 void ev_idle_start (struct ev_idle *w)
643 root 1.10
644 root 1.29 void ev_idle_stop (struct ev_idle *w)
645 root 1.10
646 root 1.26 void DESTROY (struct ev_idle *w)
647     CODE:
648 root 1.29 ev_idle_stop (w);
649 root 1.34 e_destroy (w);
650 root 1.26
651 root 1.29 MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_
652 root 1.22
653 root 1.29 void ev_prepare_start (struct ev_prepare *w)
654 root 1.22
655 root 1.29 void ev_prepare_stop (struct ev_prepare *w)
656 root 1.22
657 root 1.26 void DESTROY (struct ev_prepare *w)
658     CODE:
659 root 1.29 ev_prepare_stop (w);
660 root 1.34 e_destroy (w);
661 root 1.26
662 root 1.29 MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
663 root 1.1
664 root 1.29 void ev_check_start (struct ev_check *w)
665 root 1.1
666 root 1.29 void ev_check_stop (struct ev_check *w)
667 root 1.1
668 root 1.26 void DESTROY (struct ev_check *w)
669     CODE:
670 root 1.29 ev_check_stop (w);
671 root 1.34 e_destroy (w);
672 root 1.26
673 root 1.29 MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
674 root 1.23
675 root 1.29 void ev_child_start (struct ev_child *w)
676 root 1.23
677 root 1.29 void ev_child_stop (struct ev_child *w)
678 root 1.23
679 root 1.26 void DESTROY (struct ev_child *w)
680     CODE:
681 root 1.29 ev_child_stop (w);
682 root 1.34 e_destroy (w);
683 root 1.26
684 root 1.23 void set (struct ev_child *w, int pid)
685     CODE:
686     {
687 root 1.41 int active = ev_is_active (w);
688 root 1.29 if (active) ev_child_stop (w);
689 root 1.39
690 root 1.29 ev_child_set (w, pid);
691 root 1.39
692 root 1.29 if (active) ev_child_start (w);
693 root 1.23 }
694    
695 root 1.39 int pid (struct ev_child *w, int new_pid = 0)
696     CODE:
697     {
698 root 1.40 RETVAL = w->pid;
699 root 1.39
700     if (items > 1)
701     {
702 root 1.41 int active = ev_is_active (w);
703 root 1.39 if (active) ev_child_stop (w);
704    
705     ev_child_set (w, new_pid);
706    
707     if (active) ev_child_start (w);
708     }
709     }
710     OUTPUT:
711     RETVAL
712    
713    
714 root 1.45 int rstatus (struct ev_child *w)
715     ALIAS:
716     rpid = 1
717 root 1.24 CODE:
718 root 1.45 RETVAL = ix ? w->rpid : w->rstatus;
719 root 1.24 OUTPUT:
720     RETVAL
721    
722 root 1.1 MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
723    
724     BOOT:
725     {
726     HV *stash = gv_stashpv ("EV::DNS", 1);
727    
728     static const struct {
729     const char *name;
730     IV iv;
731     } *civ, const_iv[] = {
732     # define const_iv(pfx, name) { # name, (IV) pfx ## name },
733     const_iv (DNS_, ERR_NONE)
734     const_iv (DNS_, ERR_FORMAT)
735     const_iv (DNS_, ERR_SERVERFAILED)
736     const_iv (DNS_, ERR_NOTEXIST)
737     const_iv (DNS_, ERR_NOTIMPL)
738     const_iv (DNS_, ERR_REFUSED)
739     const_iv (DNS_, ERR_TRUNCATED)
740     const_iv (DNS_, ERR_UNKNOWN)
741     const_iv (DNS_, ERR_TIMEOUT)
742     const_iv (DNS_, ERR_SHUTDOWN)
743     const_iv (DNS_, IPv4_A)
744     const_iv (DNS_, PTR)
745     const_iv (DNS_, IPv6_AAAA)
746     const_iv (DNS_, QUERY_NO_SEARCH)
747     const_iv (DNS_, OPTION_SEARCH)
748     const_iv (DNS_, OPTION_NAMESERVERS)
749     const_iv (DNS_, OPTION_MISC)
750     const_iv (DNS_, OPTIONS_ALL)
751     const_iv (DNS_, NO_SEARCH)
752     };
753    
754     for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
755     newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
756     }
757    
758     int evdns_init ()
759    
760     void evdns_shutdown (int fail_requests = 1)
761    
762     const char *evdns_err_to_string (int err)
763    
764     int evdns_nameserver_add (U32 address)
765    
766     int evdns_count_nameservers ()
767    
768     int evdns_clear_nameservers_and_suspend ()
769    
770     int evdns_resume ()
771    
772     int evdns_nameserver_ip_add (char *ip_as_string)
773    
774     int evdns_resolve_ipv4 (const char *name, int flags, SV *cb)
775     C_ARGS: name, flags, dns_cb, (void *)SvREFCNT_inc (cb)
776    
777     int evdns_resolve_ipv6 (const char *name, int flags, SV *cb)
778     C_ARGS: name, flags, dns_cb, (void *)SvREFCNT_inc (cb)
779    
780     int evdns_resolve_reverse (SV *addr, int flags, SV *cb)
781     ALIAS:
782     evdns_resolve_reverse_ipv6 = 1
783     CODE:
784     {
785     STRLEN len;
786     char *data = SvPVbyte (addr, len);
787     if (len != (ix ? 16 : 4))
788 root 1.8 croak ("ipv4/ipv6 address to be resolved must be given as 4/16 byte octet string");
789 root 1.1
790     RETVAL = ix
791     ? evdns_resolve_reverse_ipv6 ((struct in6_addr *)data, flags, dns_cb, (void *)SvREFCNT_inc (cb))
792     : evdns_resolve_reverse ((struct in_addr *)data, flags, dns_cb, (void *)SvREFCNT_inc (cb));
793     }
794     OUTPUT:
795     RETVAL
796    
797     int evdns_set_option (char *option, char *val, int flags)
798    
799     int evdns_resolv_conf_parse (int flags, const char *filename)
800    
801     #ifdef MS_WINDOWS
802    
803     int evdns_config_windows_nameservers ()
804    
805     #endif
806    
807     void evdns_search_clear ()
808    
809     void evdns_search_add (char *domain)
810    
811     void evdns_search_ndots_set (int ndots)
812    
813 root 1.36 #if 0
814 root 1.5
815     MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_
816    
817     BOOT:
818     {
819     HV *stash = gv_stashpv ("EV::HTTP", 1);
820    
821     static const struct {
822     const char *name;
823     IV iv;
824     } *civ, const_iv[] = {
825     # define const_iv(pfx, name) { # name, (IV) pfx ## name },
826     const_iv (HTTP_, OK)
827     const_iv (HTTP_, NOCONTENT)
828     const_iv (HTTP_, MOVEPERM)
829     const_iv (HTTP_, MOVETEMP)
830     const_iv (HTTP_, NOTMODIFIED)
831     const_iv (HTTP_, BADREQUEST)
832     const_iv (HTTP_, NOTFOUND)
833     const_iv (HTTP_, SERVUNAVAIL)
834     const_iv (EVHTTP_, REQ_OWN_CONNECTION)
835     const_iv (EVHTTP_, PROXY_REQUEST)
836     const_iv (EVHTTP_, REQ_GET)
837     const_iv (EVHTTP_, REQ_POST)
838     const_iv (EVHTTP_, REQ_HEAD)
839     const_iv (EVHTTP_, REQUEST)
840     const_iv (EVHTTP_, RESPONSE)
841     };
842    
843     for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
844     newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
845     }
846    
847     MODULE = EV PACKAGE = EV::HTTP::Request PREFIX = evhttp_request_
848    
849     #HttpRequest new (SV *klass, SV *cb)
850    
851     #void DESTROY (struct evhttp_request *req);
852    
853 root 1.15 #endif
854    
855 root 1.5
856    
857    
858    
859    
860    
861