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.10 by root, Sun Jul 12 23:03:36 2009 UTC vs.
Revision 1.17 by root, Tue Jul 28 01:19:44 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 THE Async::Interrupt CLASS
97
93=over 4 98=over 4
94 99
95=cut 100=cut
96 101
97package Async::Interrupt; 102package Async::Interrupt;
98 103
99use common::sense; 104use common::sense;
100 105
101BEGIN { 106BEGIN {
107 # the next line forces initialisation of internal
108 # signal handling # variables
109 $SIG{KILL} = sub { };
110
102 our $VERSION = '0.041'; 111 our $VERSION = '0.6';
103 112
104 require XSLoader; 113 require XSLoader;
105 XSLoader::load Async::Interrupt::, $VERSION; 114 XSLoader::load ("Async::Interrupt", $VERSION);
106} 115}
107 116
108our $DIED = sub { warn "$@" }; 117our $DIED = sub { warn "$@" };
109 118
110=item $async = new Async::Interrupt key => value... 119=item $async = new Async::Interrupt key => value...
153might use (the exception is C<errno>, which is saved and restored by 162might use (the exception is C<errno>, which is saved and restored by
154Async::Interrupt). The callback itself runs as part of the perl context, 163Async::Interrupt). The callback itself runs as part of the perl context,
155so you can call any perl functions and modify any perl data structures (in 164so you can call any perl functions and modify any perl data structures (in
156which case the requirements set out for C<cb> apply as well). 165which case the requirements set out for C<cb> apply as well).
157 166
167=item var => $scalar_ref
168
169When specified, then the given argument must be a reference to a
170scalar. The scalar will be set to C<0> initially. Signalling the interrupt
171object will set it to the passed value, handling the interrupt will reset
172it to C<0> again.
173
174Note that the only thing you are legally allowed to do is to is to check
175the variable in a boolean or integer context (e.g. comparing it with a
176string, or printing it, will I<destroy> it and might cause your program to
177crash or worse).
178
158=item signal => $signame_or_value 179=item signal => $signame_or_value
159 180
160When this parameter is specified, then the Async::Interrupt will hook the 181When this parameter is specified, then the Async::Interrupt will hook the
161given signal, that is, it will effectively call C<< ->signal (0) >> each time 182given signal, that is, it will effectively call C<< ->signal (0) >> each time
162the given signal is caught by the process. 183the given signal is caught by the process.
171be written to it, and before the callback is being invoked, it will be 192be written to it, and before the callback is being invoked, it will be
172read again. Due to races, it is unlikely but possible that multiple octets 193read again. Due to races, it is unlikely but possible that multiple octets
173are written. It is required that the file handles are both in nonblocking 194are written. It is required that the file handles are both in nonblocking
174mode. 195mode.
175 196
176You can get a portable pipe and set non-blocking mode portably by using
177e.g. L<AnyEvent::Util> from the L<AnyEvent> distribution.
178
179It is also possible to pass in a linux eventfd as both read and write
180handle (which is faster than a pipe).
181
182The object will keep a reference to the file handles. 197The object will keep a reference to the file handles.
183 198
184This can be used to ensure that async notifications will interrupt event 199This can be used to ensure that async notifications will interrupt event
185frameworks as well. 200frameworks as well.
186 201
202Note that C<Async::Interrupt> will create a suitable signal fd
203automatically when your program requests one, so you don't have to specify
204this argument when all you want is an extra file descriptor to watch.
205
206If you want to share a single event pipe between multiple Async::Interrupt
207objects, you can use the C<Async::Interrupt::EventPipe> class to manage
208those.
209
187=back 210=back
188 211
189=cut 212=cut
190 213
191sub new { 214sub new {
192 my ($class, %arg) = @_; 215 my ($class, %arg) = @_;
193 216
194 bless \(_alloc $arg{cb}, @{$arg{c_cb}}[0,1], @{$arg{pipe}}[0,1], $arg{signal}), $class 217 bless \(_alloc $arg{cb}, @{$arg{c_cb}}[0,1], @{$arg{pipe}}[0,1], $arg{signal}, $arg{var}), $class
195} 218}
196 219
197=item ($signal_func, $signal_arg) = $async->signal_func 220=item ($signal_func, $signal_arg) = $async->signal_func
198 221
199Returns the address of a function to call asynchronously. The function has 222Returns the address of a function to call asynchronously. The function
200the following prototype and needs to be passed the specified C<$c_arg>, 223has the following prototype and needs to be passed the specified
201which is a C<void *> cast to C<IV>: 224C<$signal_arg>, which is a C<void *> cast to C<IV>:
202 225
203 void (*signal_func) (void *signal_arg, int value) 226 void (*signal_func) (void *signal_arg, int value)
204 227
205An example call would look like: 228An example call would look like:
206 229
207 signal_func (signal_arg, 0); 230 signal_func (signal_arg, 0);
208 231
209The function is safe to call from within signal and thread contexts, at 232The function is safe to call from within signal and thread contexts, at
210any time. The specified C<value> is passed to both C and Perl callback. 233any time. The specified C<value> is passed to both C and Perl callback.
211 234
212C<$value> must be in the valid range for a C<sig_atomic_t> (0..127 is 235C<$value> must be in the valid range for a C<sig_atomic_t>, except C<0>
213portable). 236(1..127 is portable).
214 237
215If the function is called while the Async::Interrupt object is already 238If the function is called while the Async::Interrupt object is already
216signaled but before the callbacks are being executed, then the stored 239signaled but before the callbacks are being executed, then the stored
217C<value> is either the old or the new one. Due to the asynchronous 240C<value> is either the old or the new one. Due to the asynchronous
218nature of the code, the C<value> can even be passed to two consecutive 241nature of the code, the C<value> can even be passed to two consecutive
219invocations of the callback. 242invocations of the callback.
220 243
244=item $address = $async->c_var
245
246Returns the address (cast to IV) of an C<IV> variable. The variable is set
247to C<0> initially and gets set to the passed value whenever the object
248gets signalled, and reset to C<0> once the interrupt has been handled.
249
250Note that it is often beneficial to just call C<PERL_ASYNC_CHECK ()> to
251handle any interrupts.
252
253Example: call some XS function to store the address, then show C code
254waiting for it.
255
256 my_xs_func $async->c_var;
257
258 static IV *valuep;
259
260 void
261 my_xs_func (void *addr)
262 CODE:
263 valuep = (IV *)addr;
264
265 // code in a loop, waiting
266 while (!*valuep)
267 ; // do something
268
221=item $async->signal ($value=0) 269=item $async->signal ($value=1)
222 270
223This signals the given async object from Perl code. Semi-obviously, this 271This signals the given async object from Perl code. Semi-obviously, this
224will instantly trigger the callback invocation. 272will instantly trigger the callback invocation (it does not, as the name
273might imply, do anything with POSIX signals).
225 274
226C<$value> must be in the valid range for a C<sig_atomic_t> (0..127 is 275C<$value> must be in the valid range for a C<sig_atomic_t>, except C<0>
227portable). 276(1..127 is portable).
277
278=item $async->signal_hysteresis ($enable)
279
280Enables or disables signal hysteresis (default: disabled). If a POSIX
281signal is used as a signal source for the interrupt object, then enabling
282signal hysteresis causes Async::Interrupt to reset the signal action to
283C<SIG_IGN> in the signal handler and restore it just before handling the
284interruption.
285
286When you expect a lot of signals (e.g. when using SIGIO), then enabling
287signal hysteresis can reduce the number of handler invocations
288considerably, at the cost of two extra syscalls.
289
290Note that setting the signal to C<SIG_IGN> can have unintended side
291effects when you fork and exec other programs, as often they do nto expect
292signals to be ignored by default.
228 293
229=item $async->block 294=item $async->block
230 295
231=item $async->unblock 296=item $async->unblock
232 297
247This call C<< $async->block >> and installs a handler that is called when 312This call C<< $async->block >> and installs a handler that is called when
248the current scope is exited (via an exception, by canceling the Coro 313the current scope is exited (via an exception, by canceling the Coro
249thread, by calling last/goto etc.). 314thread, by calling last/goto etc.).
250 315
251This is the recommended (and fastest) way to implement critical sections. 316This is the recommended (and fastest) way to implement critical sections.
317
318=item ($block_func, $block_arg) = $async->scope_block_func
319
320Returns the address of a function that implements the C<scope_block>
321functionality.
322
323It has the following prototype and needs to be passed the specified
324C<$block_arg>, which is a C<void *> cast to C<IV>:
325
326 void (*block_func) (void *block_arg)
327
328An example call would look like:
329
330 block_func (block_arg);
331
332The function is safe to call only from within the toplevel of a perl XS
333function and will call C<LEAVE> and C<ENTER> (in this order!).
252 334
253=item $async->pipe_enable 335=item $async->pipe_enable
254 336
255=item $async->pipe_disable 337=item $async->pipe_disable
256 338
258enabled). Writing to a pipe is relatively expensive, so it can be disabled 340enabled). Writing to a pipe is relatively expensive, so it can be disabled
259when you know you are not waiting for it (for example, with L<EV> you 341when you know you are not waiting for it (for example, with L<EV> you
260could disable the pipe in a check watcher, and enable it in a prepare 342could disable the pipe in a check watcher, and enable it in a prepare
261watcher). 343watcher).
262 344
263Note that when C<fd_disable> is in effect, no attempt to read from the 345Note that currently, while C<pipe_disable> is in effect, no attempt to
264pipe will be done. 346read from the pipe will be done when handling events. This might change as
347soon as I realize why this is a mistake.
348
349=item $fileno = $async->pipe_fileno
350
351Returns the reading side of the signalling pipe. If no signalling pipe is
352currently attached to the object, it will dynamically create one.
353
354Note that the only valid oepration on this file descriptor is to wait
355until it is readable. The fd might belong currently to a pipe, a tcp
356socket, or an eventfd, depending on the platform, and is guaranteed to be
357C<select>able.
358
359=item $async->pipe_autodrain ($enable)
360
361Enables (C<1>) or disables (C<0>) automatic draining of the pipe (default:
362enabled). When automatic draining is enabled, then Async::Interrupt will
363automatically clear the pipe. Otherwise the user is responsible for this
364draining.
365
366This is useful when you want to share one pipe among many Async::Interrupt
367objects.
368
369=item $async->post_fork
370
371The object will not normally be usable after a fork (as the pipe fd is
372shared between processes). Calling this method after a fork in the child
373ensures that the object will work as expected again. It only needs to be
374called when the async object is used in the child.
375
376This only works when the pipe was created by Async::Interrupt.
377
378Async::Interrupt ensures that the reading file descriptor does not change
379it's value.
380
381=back
382
383=head1 THE Async::Interrupt::EventPipe CLASS
384
385Pipes are the predominent utility to make asynchronous signals
386synchronous. However, pipes are hard to come by: they don't exist on the
387broken windows platform, and on GNU/Linux systems, you might want to use
388an C<eventfd> instead.
389
390This class creates selectable event pipes in a portable fashion: on
391windows, it will try to create a tcp socket pair, on GNU/Linux, it will
392try to create an eventfd and everywhere else it will try to use a normal
393pipe.
394
395=over 4
396
397=item $epipe = new Async::Interrupt::EventPipe
398
399This creates and returns an eventpipe object. This object is simply a
400blessed array reference:
401
402=item ($r_fd, $w_fd) = $epipe->filenos
403
404Returns the read-side file descriptor and the write-side file descriptor.
405
406Example: pass an eventpipe object as pipe to the Async::Interrupt
407constructor, and create an AnyEvent watcher for the read side.
408
409 my $epipe = new Async::Interrupt::EventPipe;
410 my $asy = new Async::Interrupt pipe => [$epipe->filenos];
411 my $iow = AnyEvent->io (fh => $epipe->fileno, poll => 'r', cb => sub { });
412
413=item $r_fd = $epipe->fileno
414
415Return only the reading/listening side.
416
417=item $epipe->signal
418
419Write something to the pipe, in a portable fashion.
420
421=item $epipe->drain
422
423Drain (empty) the pipe.
424
425=item $epipe->renew
426
427Recreates the pipe (useful after a fork). The reading side will not change
428it's file descriptor number, but the writing side might.
429
430=back
265 431
266=cut 432=cut
267 433
2681; 4341;
269
270=back
271 435
272=head1 EXAMPLE 436=head1 EXAMPLE
273 437
274There really should be a complete C/XS example. Bug me about it. Better 438There really should be a complete C/XS example. Bug me about it. Better
275yet, create one. 439yet, create one.
283then intercepts the interpreter handling it. This makes normal signal 447then intercepts the interpreter handling it. This makes normal signal
284handling slower (probably unmeasurably, though), but has the advantage 448handling slower (probably unmeasurably, though), but has the advantage
285of not requiring a special runops function, nor slowing down normal perl 449of not requiring a special runops function, nor slowing down normal perl
286execution a bit. 450execution a bit.
287 451
288It assumes that C<sig_atomic_t> and C<int> are both async-safe to modify 452It assumes that C<sig_atomic_t>, C<int> and C<IV> are all async-safe to
289(C<sig_atomic_> is used by this module, and perl itself uses C<int>, so we 453modify.
290can assume that this is quite portable, at least w.r.t. signals).
291 454
292=head1 AUTHOR 455=head1 AUTHOR
293 456
294 Marc Lehmann <schmorp@schmorp.de> 457 Marc Lehmann <schmorp@schmorp.de>
295 http://home.schmorp.de/ 458 http://home.schmorp.de/

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines