ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/lib/AnyEvent.pm
(Generate patch)

Comparing AnyEvent/lib/AnyEvent.pm (file contents):
Revision 1.245 by root, Sat Jul 18 05:19:09 2009 UTC vs.
Revision 1.249 by root, Mon Jul 20 06:00:42 2009 UTC

1=head1 NAME 1=head1 NAME
2 2
3AnyEvent - provide framework for multiple event loops 3AnyEvent - events independent of event loop implementation
4 4
5EV, Event, Glib, Tk, Perl, Event::Lib, Qt and POE are various supported 5EV, Event, Glib, Tk, Perl, Event::Lib, Qt and POE are various supported
6event loops. 6event loops.
7 7
8=head1 SYNOPSIS 8=head1 SYNOPSIS
40=head1 INTRODUCTION/TUTORIAL 40=head1 INTRODUCTION/TUTORIAL
41 41
42This manpage is mainly a reference manual. If you are interested 42This manpage is mainly a reference manual. If you are interested
43in a tutorial or some gentle introduction, have a look at the 43in a tutorial or some gentle introduction, have a look at the
44L<AnyEvent::Intro> manpage. 44L<AnyEvent::Intro> manpage.
45
46=head1 SUPPORT
47
48There is a mailinglist for discussing all things AnyEvent, and an IRC
49channel, too.
50
51See the AnyEvent project page at the B<Schmorpforge Ta-Sa Software
52Respository>, at L<http://anyevent.schmorp.de>, for more info.
45 53
46=head1 WHY YOU SHOULD USE THIS MODULE (OR NOT) 54=head1 WHY YOU SHOULD USE THIS MODULE (OR NOT)
47 55
48Glib, POE, IO::Async, Event... CPAN offers event models by the dozen 56Glib, POE, IO::Async, Event... CPAN offers event models by the dozen
49nowadays. So what is different about AnyEvent? 57nowadays. So what is different about AnyEvent?
368 376
369This watcher might use C<%SIG> (depending on the event loop used), 377This watcher might use C<%SIG> (depending on the event loop used),
370so programs overwriting those signals directly will likely not work 378so programs overwriting those signals directly will likely not work
371correctly. 379correctly.
372 380
381Example: exit on SIGINT
382
383 my $w = AnyEvent->signal (signal => "INT", cb => sub { exit 1 });
384
385=head3 Signal Races, Delays and Workarounds
386
373Also note that many event loops (e.g. Glib, Tk, Qt, IO::Async) do not 387Many event loops (e.g. Glib, Tk, Qt, IO::Async) do not support attaching
374support attaching callbacks to signals, which is a pity, as you cannot do 388callbacks to signals in a generic way, which is a pity, as you cannot do
375race-free signal handling in perl. AnyEvent will try to do it's best, but 389race-free signal handling in perl. AnyEvent will try to do it's best, but
376in some cases, signals will be delayed. The maximum time a signal might 390in some cases, signals will be delayed. The maximum time a signal might
377be delayed is specified in C<$AnyEvent::MAX_SIGNAL_LATENCY> (default: 10 391be delayed is specified in C<$AnyEvent::MAX_SIGNAL_LATENCY> (default: 10
378seconds). This variable can be changed only before the first signal 392seconds). This variable can be changed only before the first signal
379watcher is created, and should be left alone otherwise. Higher values 393watcher is created, and should be left alone otherwise. Higher values
380will cause fewer spurious wake-ups, which is better for power and CPU 394will cause fewer spurious wake-ups, which is better for power and CPU
381saving. All these problems can be avoided by installing the optional 395saving. All these problems can be avoided by installing the optional
382L<Async::Interrupt> module. 396L<Async::Interrupt> module. This will not work with inherently broken
383 397event loops such as L<Event> or L<Event::Lib> (and not with L<POE>
384Example: exit on SIGINT 398currently, as POE does it's own workaround with one-second latency). With
385 399those, you just have to suffer the delays.
386 my $w = AnyEvent->signal (signal => "INT", cb => sub { exit 1 });
387 400
388=head2 CHILD PROCESS WATCHERS 401=head2 CHILD PROCESS WATCHERS
389 402
390You can also watch on a child process exit and catch its exit status. 403You can also watch on a child process exit and catch its exit status.
391 404
1270 $_->() for values %{ $SIG_CB{$_} || {} }; 1283 $_->() for values %{ $SIG_CB{$_} || {} };
1271 } 1284 }
1272 } 1285 }
1273} 1286}
1274 1287
1288# install a dumym wakeupw atcher to reduce signal catching latency
1289sub _sig_add() {
1290 unless ($SIG_COUNT++) {
1291 # try to align timer on a full-second boundary, if possible
1292 my $NOW = AnyEvent->now;
1293
1294 $SIG_TW = AnyEvent->timer (
1295 after => $MAX_SIGNAL_LATENCY - ($NOW - int $NOW),
1296 interval => $MAX_SIGNAL_LATENCY,
1297 cb => sub { }, # just for the PERL_ASYNC_CHECK
1298 );
1299 }
1300}
1301
1302sub _sig_del {
1303 undef $SIG_TW
1304 unless --$SIG_COUNT;
1305}
1306
1275sub _signal { 1307sub _signal {
1276 my (undef, %arg) = @_; 1308 my (undef, %arg) = @_;
1277 1309
1278 my $signal = uc $arg{signal} 1310 my $signal = uc $arg{signal}
1279 or Carp::croak "required option 'signal' is missing"; 1311 or Carp::croak "required option 'signal' is missing";
1303 undef $SIG_EV{$signal}; 1335 undef $SIG_EV{$signal};
1304 }; 1336 };
1305 1337
1306 # can't do signal processing without introducing races in pure perl, 1338 # can't do signal processing without introducing races in pure perl,
1307 # so limit the signal latency. 1339 # so limit the signal latency.
1308 ++$SIG_COUNT; 1340 _sig_add;
1309 $SIG_TW ||= AnyEvent->timer (
1310 after => $MAX_SIGNAL_LATENCY,
1311 interval => $MAX_SIGNAL_LATENCY,
1312 cb => sub { }, # just for the PERL_ASYNC_CHECK
1313 );
1314 } 1341 }
1315 1342
1316 bless [$signal, $arg{cb}], "AnyEvent::Base::signal" 1343 bless [$signal, $arg{cb}], "AnyEvent::Base::signal"
1317} 1344}
1318 1345
1357} 1384}
1358 1385
1359sub AnyEvent::Base::signal::DESTROY { 1386sub AnyEvent::Base::signal::DESTROY {
1360 my ($signal, $cb) = @{$_[0]}; 1387 my ($signal, $cb) = @{$_[0]};
1361 1388
1362 undef $SIG_TW 1389 _sig_del;
1363 unless --$SIG_COUNT;
1364 1390
1365 delete $SIG_CB{$signal}{$cb}; 1391 delete $SIG_CB{$signal}{$cb};
1366 1392
1367 $HAVE_ASYNC_INTERRUPT 1393 $HAVE_ASYNC_INTERRUPT
1368 ? delete $SIG_ASY{$signal} 1394 ? delete $SIG_ASY{$signal}
2257 2283
2258This slightly arcane module is used to implement fast signal handling: To 2284This slightly arcane module is used to implement fast signal handling: To
2259my knowledge, there is no way to do completely race-free and quick 2285my knowledge, there is no way to do completely race-free and quick
2260signal handling in pure perl. To ensure that signals still get 2286signal handling in pure perl. To ensure that signals still get
2261delivered, AnyEvent will start an interval timer to wake up perl (and 2287delivered, AnyEvent will start an interval timer to wake up perl (and
2262catch the signals) with soemd elay (default is 10 seconds, look for 2288catch the signals) with some delay (default is 10 seconds, look for
2263C<$AnyEvent::MAX_SIGNAL_LATENCY>). 2289C<$AnyEvent::MAX_SIGNAL_LATENCY>).
2264 2290
2265If this module is available, then it will be used to implement signal 2291If this module is available, then it will be used to implement signal
2266catching, which means that signals will not be delayed, and the event loop 2292catching, which means that signals will not be delayed, and the event loop
2267will not be interrupted regularly, which is more efficient (And good for 2293will not be interrupted regularly, which is more efficient (And good for
2268battery life on laptops). 2294battery life on laptops).
2269 2295
2270This affects not just the pure-perl event loop, but also other event loops 2296This affects not just the pure-perl event loop, but also other event loops
2271that have no signal handling on their own (e.g. Glib, Tk, Qt). 2297that have no signal handling on their own (e.g. Glib, Tk, Qt).
2298
2299Some event loops (POE, Event, Event::Lib) offer signal watchers natively,
2300and either employ their own workarounds (POE) or use AnyEvent's workaround
2301(using C<$AnyEvent::MAX_SIGNAL_LATENCY>). Installing L<Async::Interrupt>
2302does nothing for those backends.
2272 2303
2273=item L<EV> 2304=item L<EV>
2274 2305
2275This module isn't really "optional", as it is simply one of the backend 2306This module isn't really "optional", as it is simply one of the backend
2276event loops that AnyEvent can use. However, it is simply the best event 2307event loops that AnyEvent can use. However, it is simply the best event
2290 2321
2291=item L<JSON> and L<JSON::XS> 2322=item L<JSON> and L<JSON::XS>
2292 2323
2293This module is required when you want to read or write JSON data via 2324This module is required when you want to read or write JSON data via
2294L<AnyEvent::Handle>. It is also written in pure-perl, but can take 2325L<AnyEvent::Handle>. It is also written in pure-perl, but can take
2295advantage of the ulta-high-speed L<JSON::XS> module when it is installed. 2326advantage of the ultra-high-speed L<JSON::XS> module when it is installed.
2296 2327
2297In fact, L<AnyEvent::Handle> will use L<JSON::XS> by default if it is 2328In fact, L<AnyEvent::Handle> will use L<JSON::XS> by default if it is
2298installed. 2329installed.
2299 2330
2300=item L<Net::SSLeay> 2331=item L<Net::SSLeay>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines