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.7 by root, Sat Jul 11 22:24:30 2009 UTC vs.
Revision 1.14 by root, Fri Jul 17 01:53:41 2009 UTC

10 10
11This module implements a single feature only of interest to advanced perl 11This module implements a single feature only of interest to advanced perl
12modules, namely asynchronous interruptions (think "UNIX signals", which 12modules, namely asynchronous interruptions (think "UNIX signals", which
13are very similar). 13are very similar).
14 14
15Sometimes, modules wish to run code asynchronously (in another thread), 15Sometimes, modules wish to run code asynchronously (in another thread,
16and then signal the perl interpreter on certain events. One common way is 16or from a signal handler), and then signal the perl interpreter on
17to write some data to a pipe and use an event handling toolkit to watch 17certain events. One common way is to write some data to a pipe and use an
18for I/O events. Another way is to send a signal. Those methods are slow, 18event handling toolkit to watch for I/O events. Another way is to send
19and in the case of a pipe, also not asynchronous - it won't interrupt a 19a signal. Those methods are slow, and in the case of a pipe, also not
20running perl interpreter. 20asynchronous - it won't interrupt a running perl interpreter.
21 21
22This module implements asynchronous notifications that enable you to 22This module implements asynchronous notifications that enable you to
23signal running perl code form another thread, asynchronously, without 23signal running perl code from another thread, asynchronously, and
24issuing syscalls. 24sometimes even without using a single syscall.
25 25
26It works by creating an C<Async::Interrupt> object for each such use. This 26=head2 USAGE SCENARIOS
27object stores a perl and/or a C-level callback that is invoked when the 27
28C<Async::Interrupt> object gets signalled. It is executed at the next time 28=over 4
29the perl interpreter is running (i.e. it will interrupt a computation, but 29
30not an XS function or a syscall). 30=item Race-free signal handling
31
32There seems to be no way to do race-free signal handling in perl: to
33catch a signal, you have to execute Perl code, and between entering the
34interpreter C<select> function (or other blocking functions) and executing
35the select syscall is a small but relevant timespan during which signals
36will be queued, but perl signal handlers will not be executed and the
37blocking syscall will not be interrupted.
38
39You can use this module to bind a signal to a callback while at the same
40time activating an event pipe that you can C<select> on, fixing the race
41completely.
42
43This can be used to implement the signal hadling in event loops,
44e.g. L<AnyEvent>, L<POE>, L<IO::Async::Loop> and so on.
45
46=item Background threads want speedy reporting
47
48Assume you want very exact timing, and you can spare an extra cpu core
49for that. Then you can run an extra thread that signals your perl
50interpreter. This means you can get a very exact timing source while your
51perl code is number crunching, without even using a syscall to communicate
52between your threads.
53
54For example the deliantra game server uses a variant of this technique
55to interrupt background processes regularly to send map updates to game
56clients.
57
58L<IO::AIO> and L<BDB> could also use this to speed up result reporting.
59
60=item Speedy event loop invocation
61
62One could use this module e.g. in L<Coro> to interrupt a running coro-thread
63and cause it to enter the event loop.
64
65Or one could bind to C<SIGIO> and tell some important sockets to send this
66signal, causing the event loop to be entered to reduce network latency.
67
68=back
69
70=head2 HOW TO USE
71
72You can use this module by creating an C<Async::Interrupt> object for each
73such event source. This object stores a perl and/or a C-level callback
74that is invoked when the C<Async::Interrupt> object gets signalled. It is
75executed at the next time the perl interpreter is running (i.e. it will
76interrupt a computation, but not an XS function or a syscall).
31 77
32You can signal the C<Async::Interrupt> object either by calling it's C<< 78You can signal the C<Async::Interrupt> object either by calling it's C<<
33->signal >> method, or, more commonly, by calling a C function. 79->signal >> method, or, more commonly, by calling a C function. There is
80also the built-in (POSIX) signal source.
34 81
35The C<< ->signal_func >> returns the address of the C function that is to 82The C<< ->signal_func >> returns the address of the C function that is to
36be called (plus an argument to be used during the call). The signalling 83be called (plus an argument to be used during the call). The signalling
37function also takes an integer argument in the range SIG_ATOMIC_MIN to 84function also takes an integer argument in the range SIG_ATOMIC_MIN to
38SIG_ATOMIC_MAX (guaranteed to allow at least 0..127). 85SIG_ATOMIC_MAX (guaranteed to allow at least 0..127).
39 86
40Since this kind of interruption is fast, but can only interrupt a 87Since this kind of interruption is fast, but can only interrupt a
41I<running> interpreter, there is optional support for also signalling a 88I<running> interpreter, there is optional support for signalling a pipe
42pipe - that means you can also wait for the pipe to become readable (e.g. 89- that means you can also wait for the pipe to become readable (e.g. via
43via L<EV> or L<AnyEvent>). This, of course, incurs the overhead of a 90L<EV> or L<AnyEvent>). This, of course, incurs the overhead of a C<read>
44C<read> and C<write> syscall. 91and C<write> syscall.
45 92
46=over 4 93=over 4
47 94
48=cut 95=cut
49 96
50package Async::Interrupt; 97package Async::Interrupt;
51 98
52no warnings; 99use common::sense;
53 100
54BEGIN { 101BEGIN {
102 # the next line forces initialisation of internal
103 # signal handling # variables
104 $SIG{KILL} = sub { };
105
55 $VERSION = '0.04'; 106 our $VERSION = '0.5';
56 107
57 require XSLoader; 108 require XSLoader;
58 XSLoader::load Async::Interrupt::, $VERSION; 109 XSLoader::load ("Async::Interrupt", $VERSION);
59} 110}
60 111
61our $DIED = sub { warn "$@" }; 112our $DIED = sub { warn "$@" };
62 113
63=item $async = new Async::Interrupt key => value... 114=item $async = new Async::Interrupt key => value...
106might use (the exception is C<errno>, which is saved and restored by 157might use (the exception is C<errno>, which is saved and restored by
107Async::Interrupt). The callback itself runs as part of the perl context, 158Async::Interrupt). The callback itself runs as part of the perl context,
108so you can call any perl functions and modify any perl data structures (in 159so you can call any perl functions and modify any perl data structures (in
109which case the requirements set out for C<cb> apply as well). 160which case the requirements set out for C<cb> apply as well).
110 161
162=item var => $scalar_ref
163
164When specified, then the given argument must be a reference to a
165scalar. The scalar will be set to C<0> intiially. Signalling the interrupt
166object will set it to the passed value, handling the interrupt will reset
167it to C<0> again.
168
169Note 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
171string, or printing it, will I<destroy> it and might cause your program to
172crash or worse).
173
111=item signal => $signame_or_value 174=item signal => $signame_or_value
112 175
113When this parameter is specified, then the Async::Interrupt will hook the 176When this parameter is specified, then the Async::Interrupt will hook the
114given signal, that is, it will effectively call C<< ->signal (0) >> each time 177given signal, that is, it will effectively call C<< ->signal (0) >> each time
115the given signal is caught by the process. 178the given signal is caught by the process.
124be written to it, and before the callback is being invoked, it will be 187be written to it, and before the callback is being invoked, it will be
125read again. Due to races, it is unlikely but possible that multiple octets 188read again. Due to races, it is unlikely but possible that multiple octets
126are written. It is required that the file handles are both in nonblocking 189are written. It is required that the file handles are both in nonblocking
127mode. 190mode.
128 191
129You can get a portable pipe and set non-blocking mode portably by using
130e.g. L<AnyEvent::Util> from the L<AnyEvent> distribution.
131
132It is also possible to pass in a linux eventfd as both read and write
133handle (which is faster than a pipe).
134
135The object will keep a reference to the file handles. 192The object will keep a reference to the file handles.
136 193
137This can be used to ensure that async notifications will interrupt event 194This can be used to ensure that async notifications will interrupt event
138frameworks as well. 195frameworks as well.
139 196
197Note that C<Async::Interrupt> will create a suitable signal fd
198automatically 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.
200
140=back 201=back
141 202
142=cut 203=cut
143 204
144sub new { 205sub new {
145 my ($class, %arg) = @_; 206 my ($class, %arg) = @_;
146 207
147 bless \(_alloc $arg{cb}, @{$arg{c_cb}}[0,1], @{$arg{pipe}}[0,1], $arg{signal}), $class 208 bless \(_alloc $arg{cb}, @{$arg{c_cb}}[0,1], @{$arg{pipe}}[0,1], $arg{signal}, $arg{var}), $class
148} 209}
149 210
150=item ($signal_func, $signal_arg) = $async->signal_func 211=item ($signal_func, $signal_arg) = $async->signal_func
151 212
152Returns the address of a function to call asynchronously. The function has 213Returns the address of a function to call asynchronously. The function has
160 signal_func (signal_arg, 0); 221 signal_func (signal_arg, 0);
161 222
162The function is safe to call from within signal and thread contexts, at 223The function is safe to call from within signal and thread contexts, at
163any time. The specified C<value> is passed to both C and Perl callback. 224any time. The specified C<value> is passed to both C and Perl callback.
164 225
165C<$value> must be in the valid range for a C<sig_atomic_t> (0..127 is 226C<$value> must be in the valid range for a C<sig_atomic_t>, except C<0>
166portable). 227(1..127 is portable).
167 228
168If the function is called while the Async::Interrupt object is already 229If the function is called while the Async::Interrupt object is already
169signaled but before the callbacks are being executed, then the stored 230signaled but before the callbacks are being executed, then the stored
170C<value> is either the old or the new one. Due to the asynchronous 231C<value> is either the old or the new one. Due to the asynchronous
171nature of the code, the C<value> can even be passed to two consecutive 232nature of the code, the C<value> can even be passed to two consecutive
172invocations of the callback. 233invocations of the callback.
173 234
235=item $address = $async->c_var
236
237Returns the address (cast to IV) of an C<IV> variable. The variable is set
238to C<0> initially and gets set to the passed value whenever the object
239gets signalled, and reset to C<0> once the interrupt has been handled.
240
241Note that it is often beneficial to just call C<PERL_ASYNC_CHECK ()> to
242handle any interrupts.
243
244Example: call some XS function to store the address, then show C code
245waiting for it.
246
247 my_xs_func $async->c_var;
248
249 static IV *valuep;
250
251 void
252 my_xs_func (void *addr)
253 CODE:
254 valuep = (IV *)addr;
255
256 // code in a loop, waiting
257 while (!*valuep)
258 ; // do soemthing
259
174=item $async->signal ($value=0) 260=item $async->signal ($value=1)
175 261
176This signals the given async object from Perl code. Semi-obviously, this 262This signals the given async object from Perl code. Semi-obviously, this
177will instantly trigger the callback invocation. 263will instantly trigger the callback invocation.
178 264
179C<$value> must be in the valid range for a C<sig_atomic_t> (0..127 is 265C<$value> must be in the valid range for a C<sig_atomic_t>, except C<0>
180portable). 266(1..127 is portable).
181 267
182=item $async->block 268=item $async->block
183 269
184=item $async->unblock 270=item $async->unblock
185 271
211enabled). Writing to a pipe is relatively expensive, so it can be disabled 297enabled). Writing to a pipe is relatively expensive, so it can be disabled
212when you know you are not waiting for it (for example, with L<EV> you 298when you know you are not waiting for it (for example, with L<EV> you
213could disable the pipe in a check watcher, and enable it in a prepare 299could disable the pipe in a check watcher, and enable it in a prepare
214watcher). 300watcher).
215 301
216Note that when C<fd_disable> is in effect, no attempt to read from the 302Note that currently, while C<pipe_disable> is in effect, no attempt to
217pipe will be done. 303read from the pipe will be done when handling events. This might change as
304soon as I realize why this is a mistake.
305
306=item $fileno = $async->pipe_fileno
307
308Returns the reading side of the signalling pipe. If no signalling pipe is
309currently attached to the object, it will dynamically create one.
310
311Note 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
313socket, or an eventfd, depending on the platform, and is guaranteed to be
314C<select>able.
315
316=item $async->post_fork
317
318The 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
320ensures that the object will work as expected again. It only needs to be
321called when the async object is used in the child.
322
323This only works when the pipe was created by Async::Interrupt.
324
325Async::Interrupt ensures that the reading file descriptor does not change
326it's value.
218 327
219=cut 328=cut
220 329
2211; 3301;
222 331
223=back 332=back
224 333
225=head1 EXAMPLE 334=head1 EXAMPLE
226 335
227There really should be a complete C/XS example. Bug me about it. 336There really should be a complete C/XS example. Bug me about it. Better
337yet, create one.
228 338
229=head1 IMPLEMENTATION DETAILS AND LIMITATIONS 339=head1 IMPLEMENTATION DETAILS AND LIMITATIONS
230 340
231This module works by "hijacking" SIGKILL, which is guaranteed to be always 341This module works by "hijacking" SIGKILL, which is guaranteed to always
232available in perl, but also cannot be caught, so is always available. 342exist, but also cannot be caught, so is always available.
233 343
234Basically, this module fakes the receive of a SIGKILL signal and 344Basically, this module fakes the occurance of a SIGKILL signal and
235then catches it. This makes normal signal handling slower (probably 345then intercepts the interpreter handling it. This makes normal signal
236unmeasurably), but has the advantage of not requiring a special runops nor 346handling slower (probably unmeasurably, though), but has the advantage
237slowing down normal perl execution a bit. 347of not requiring a special runops function, nor slowing down normal perl
348execution a bit.
238 349
239It assumes that C<sig_atomic_t> and C<int> are both exception-safe to 350It assumes that C<sig_atomic_t>, C<int> and C<IV> are all async-safe to
240modify (C<sig_atomic_> is used by this module, and perl itself uses 351modify.
241C<int>, so we can assume that this is quite portable, at least w.r.t.
242signals).
243 352
244=head1 AUTHOR 353=head1 AUTHOR
245 354
246 Marc Lehmann <schmorp@schmorp.de> 355 Marc Lehmann <schmorp@schmorp.de>
247 http://home.schmorp.de/ 356 http://home.schmorp.de/

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines