ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Async-Interrupt/Interrupt.pm
(Generate patch)

Comparing cvsroot/Async-Interrupt/Interrupt.pm (file contents):
Revision 1.13 by root, Fri Jul 17 01:51:32 2009 UTC vs.
Revision 1.18 by root, Tue Jul 28 12:50:16 2009 UTC

53 53
54For example the deliantra game server uses a variant of this technique 54For example the deliantra game server uses a variant of this technique
55to interrupt background processes regularly to send map updates to game 55to interrupt background processes regularly to send map updates to game
56clients. 56clients.
57 57
58Or L<EV::Loop::Async> uses an interrupt object to wake up perl when new
59events have arrived.
60
58L<IO::AIO> and L<BDB> could also use this to speed up result reporting. 61L<IO::AIO> and L<BDB> could also use this to speed up result reporting.
59 62
60=item Speedy event loop invocation 63=item Speedy event loop invocation
61 64
62One could use this module e.g. in L<Coro> to interrupt a running coro-thread 65One could use this module e.g. in L<Coro> to interrupt a running coro-thread
88I<running> interpreter, there is optional support for signalling a pipe 91I<running> interpreter, there is optional support for signalling a pipe
89- that means you can also wait for the pipe to become readable (e.g. via 92- that means you can also wait for the pipe to become readable (e.g. via
90L<EV> or L<AnyEvent>). This, of course, incurs the overhead of a C<read> 93L<EV> or L<AnyEvent>). This, of course, incurs the overhead of a C<read>
91and C<write> syscall. 94and C<write> syscall.
92 95
96=head1 USAGE EXAMPLES
97
98=head2 Async::Interrupt to implement race-free signal handling
99
100This example uses a single event pipe for all signals, and one
101Async::Interrupt per signal.
102
103First, create the event pipe and hook it into the event loop (this code is
104actually what L<AnyEvent> uses itself):
105
106 $SIGPIPE = new Async::Interrupt::EventPipe;
107 $SIGPIPE_W = AnyEvent->io (
108 fh => $SIGPIPE->fileno,
109 poll => "r",
110 cb => \&_signal_check,
111 );
112
113Then, for each signal to hook, create an Async::Interrupt object. The
114callback just sets a global variable, as we are only interested in
115synchronous signals (i.e. when the event loop polls), which is why the
116pipe draining is not done automatically.
117
118 my $interrupt = new Async::Interrupt
119 cb => sub { undef $SIGNAL_RECEIVED{$signum} }
120 signal => $signal,
121 pipe => [$SIGPIPE_R->filenos],
122 pipe_autodrain => 0,
123 ;
124
125Finally, the I/O callback for the event pipe handles the signals:
126
127 sub _signal_check {
128 # drain the pipe first
129 $SIGPIPE->drain;
130
131 # two loops, just to be sure
132 while (%SIGNAL_RECEIVED) {
133 for (keys %SIGNAL_RECEIVED) {
134 delete $SIGNAL_RECEIVED{$_};
135 warn "signal $_ received\n";
136 }
137 }
138 }
139
140
141
142=head1 THE Async::Interrupt CLASS
143
93=over 4 144=over 4
94 145
95=cut 146=cut
96 147
97package Async::Interrupt; 148package Async::Interrupt;
101BEGIN { 152BEGIN {
102 # the next line forces initialisation of internal 153 # the next line forces initialisation of internal
103 # signal handling # variables 154 # signal handling # variables
104 $SIG{KILL} = sub { }; 155 $SIG{KILL} = sub { };
105 156
106 our $VERSION = '0.042'; 157 our $VERSION = '0.6';
107 158
108 require XSLoader; 159 require XSLoader;
109 XSLoader::load ("Async::Interrupt", $VERSION); 160 XSLoader::load ("Async::Interrupt", $VERSION);
110} 161}
111 162
160which case the requirements set out for C<cb> apply as well). 211which case the requirements set out for C<cb> apply as well).
161 212
162=item var => $scalar_ref 213=item var => $scalar_ref
163 214
164When specified, then the given argument must be a reference to a 215When specified, then the given argument must be a reference to a
165scalar. The scalar will be set to C<0> intiially. Signalling the interrupt 216scalar. The scalar will be set to C<0> initially. Signalling the interrupt
166object will set it to the passed value, handling the interrupt will reset 217object will set it to the passed value, handling the interrupt will reset
167it to C<0> again. 218it to C<0> again.
168 219
169Note that the only thing you are legally allowed to do is to is to check 220Note that the only thing you are legally allowed to do is to is to check
170the variable in a boolean or integer context (e.g. comparing it with a 221the variable in a boolean or integer context (e.g. comparing it with a
194This can be used to ensure that async notifications will interrupt event 245This can be used to ensure that async notifications will interrupt event
195frameworks as well. 246frameworks as well.
196 247
197Note that C<Async::Interrupt> will create a suitable signal fd 248Note that C<Async::Interrupt> will create a suitable signal fd
198automatically when your program requests one, so you don't have to specify 249automatically when your program requests one, so you don't have to specify
199this agrument when all you want is an extra file descriptor to watch. 250this argument when all you want is an extra file descriptor to watch.
251
252If you want to share a single event pipe between multiple Async::Interrupt
253objects, you can use the C<Async::Interrupt::EventPipe> class to manage
254those.
200 255
201=back 256=back
202 257
203=cut 258=cut
204 259
208 bless \(_alloc $arg{cb}, @{$arg{c_cb}}[0,1], @{$arg{pipe}}[0,1], $arg{signal}, $arg{var}), $class 263 bless \(_alloc $arg{cb}, @{$arg{c_cb}}[0,1], @{$arg{pipe}}[0,1], $arg{signal}, $arg{var}), $class
209} 264}
210 265
211=item ($signal_func, $signal_arg) = $async->signal_func 266=item ($signal_func, $signal_arg) = $async->signal_func
212 267
213Returns the address of a function to call asynchronously. The function has 268Returns the address of a function to call asynchronously. The function
214the following prototype and needs to be passed the specified C<$c_arg>, 269has the following prototype and needs to be passed the specified
215which is a C<void *> cast to C<IV>: 270C<$signal_arg>, which is a C<void *> cast to C<IV>:
216 271
217 void (*signal_func) (void *signal_arg, int value) 272 void (*signal_func) (void *signal_arg, int value)
218 273
219An example call would look like: 274An example call would look like:
220 275
253 CODE: 308 CODE:
254 valuep = (IV *)addr; 309 valuep = (IV *)addr;
255 310
256 // code in a loop, waiting 311 // code in a loop, waiting
257 while (!*valuep) 312 while (!*valuep)
258 ; // do soemthing 313 ; // do something
259 314
260=item $async->signal ($value=1) 315=item $async->signal ($value=1)
261 316
262This signals the given async object from Perl code. Semi-obviously, this 317This signals the given async object from Perl code. Semi-obviously, this
263will instantly trigger the callback invocation. 318will instantly trigger the callback invocation (it does not, as the name
319might imply, do anything with POSIX signals).
264 320
265C<$value> must be in the valid range for a C<sig_atomic_t>, except C<0> 321C<$value> must be in the valid range for a C<sig_atomic_t>, except C<0>
266(1..127 is portable). 322(1..127 is portable).
323
324=item $async->signal_hysteresis ($enable)
325
326Enables or disables signal hysteresis (default: disabled). If a POSIX
327signal is used as a signal source for the interrupt object, then enabling
328signal hysteresis causes Async::Interrupt to reset the signal action to
329C<SIG_IGN> in the signal handler and restore it just before handling the
330interruption.
331
332When you expect a lot of signals (e.g. when using SIGIO), then enabling
333signal hysteresis can reduce the number of handler invocations
334considerably, at the cost of two extra syscalls.
335
336Note that setting the signal to C<SIG_IGN> can have unintended side
337effects when you fork and exec other programs, as often they do nto expect
338signals to be ignored by default.
267 339
268=item $async->block 340=item $async->block
269 341
270=item $async->unblock 342=item $async->unblock
271 343
286This call C<< $async->block >> and installs a handler that is called when 358This call C<< $async->block >> and installs a handler that is called when
287the current scope is exited (via an exception, by canceling the Coro 359the current scope is exited (via an exception, by canceling the Coro
288thread, by calling last/goto etc.). 360thread, by calling last/goto etc.).
289 361
290This is the recommended (and fastest) way to implement critical sections. 362This is the recommended (and fastest) way to implement critical sections.
363
364=item ($block_func, $block_arg) = $async->scope_block_func
365
366Returns the address of a function that implements the C<scope_block>
367functionality.
368
369It has the following prototype and needs to be passed the specified
370C<$block_arg>, which is a C<void *> cast to C<IV>:
371
372 void (*block_func) (void *block_arg)
373
374An example call would look like:
375
376 block_func (block_arg);
377
378The function is safe to call only from within the toplevel of a perl XS
379function and will call C<LEAVE> and C<ENTER> (in this order!).
291 380
292=item $async->pipe_enable 381=item $async->pipe_enable
293 382
294=item $async->pipe_disable 383=item $async->pipe_disable
295 384
311Note that the only valid oepration on this file descriptor is to wait 400Note that the only valid oepration on this file descriptor is to wait
312until it is readable. The fd might belong currently to a pipe, a tcp 401until it is readable. The fd might belong currently to a pipe, a tcp
313socket, or an eventfd, depending on the platform, and is guaranteed to be 402socket, or an eventfd, depending on the platform, and is guaranteed to be
314C<select>able. 403C<select>able.
315 404
405=item $async->pipe_autodrain ($enable)
406
407Enables (C<1>) or disables (C<0>) automatic draining of the pipe (default:
408enabled). When automatic draining is enabled, then Async::Interrupt will
409automatically clear the pipe. Otherwise the user is responsible for this
410draining.
411
412This is useful when you want to share one pipe among many Async::Interrupt
413objects.
414
316=item $async->post_fork 415=item $async->post_fork
317 416
318The object will not normally be usable after a fork (as the pipe fd is 417The object will not normally be usable after a fork (as the pipe fd is
319shared between processes). Calling this method after a fork in the child 418shared between processes). Calling this method after a fork in the child
320ensures that the object will work as expected again. It only needs to be 419ensures that the object will work as expected again. It only needs to be
323This only works when the pipe was created by Async::Interrupt. 422This only works when the pipe was created by Async::Interrupt.
324 423
325Async::Interrupt ensures that the reading file descriptor does not change 424Async::Interrupt ensures that the reading file descriptor does not change
326it's value. 425it's value.
327 426
427=item $signum = Async::Interrupt::sig2num $signame_or_number
428
429=item $signame = Async::Interrupt::sig2name $signame_or_number
430
431These two convenience functions simply convert a signal name or number to
432the corresponding name or number. They are not used by this module and
433exist just because perl doesn't have a nice way to do this on its own.
434
435They will return C<undef> on illegal names or numbers.
436
437=back
438
439=head1 THE Async::Interrupt::EventPipe CLASS
440
441Pipes are the predominent utility to make asynchronous signals
442synchronous. However, pipes are hard to come by: they don't exist on the
443broken windows platform, and on GNU/Linux systems, you might want to use
444an C<eventfd> instead.
445
446This class creates selectable event pipes in a portable fashion: on
447windows, it will try to create a tcp socket pair, on GNU/Linux, it will
448try to create an eventfd and everywhere else it will try to use a normal
449pipe.
450
451=over 4
452
453=item $epipe = new Async::Interrupt::EventPipe
454
455This creates and returns an eventpipe object. This object is simply a
456blessed array reference:
457
458=item ($r_fd, $w_fd) = $epipe->filenos
459
460Returns the read-side file descriptor and the write-side file descriptor.
461
462Example: pass an eventpipe object as pipe to the Async::Interrupt
463constructor, and create an AnyEvent watcher for the read side.
464
465 my $epipe = new Async::Interrupt::EventPipe;
466 my $asy = new Async::Interrupt pipe => [$epipe->filenos];
467 my $iow = AnyEvent->io (fh => $epipe->fileno, poll => 'r', cb => sub { });
468
469=item $r_fd = $epipe->fileno
470
471Return only the reading/listening side.
472
473=item $epipe->signal
474
475Write something to the pipe, in a portable fashion.
476
477=item $epipe->drain
478
479Drain (empty) the pipe.
480
481=item $epipe->renew
482
483Recreates the pipe (useful after a fork). The reading side will not change
484it's file descriptor number, but the writing side might.
485
486=back
487
328=cut 488=cut
329 489
3301; 4901;
331
332=back
333 491
334=head1 EXAMPLE 492=head1 EXAMPLE
335 493
336There really should be a complete C/XS example. Bug me about it. Better 494There really should be a complete C/XS example. Bug me about it. Better
337yet, create one. 495yet, create one.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines