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.348 by root, Thu Feb 24 12:04:20 2011 UTC vs.
Revision 1.352 by root, Thu Aug 4 09:14:01 2011 UTC

121The interface itself is vaguely similar, but not identical to the L<Event> 121The interface itself is vaguely similar, but not identical to the L<Event>
122module. 122module.
123 123
124During the first call of any watcher-creation method, the module tries 124During the first call of any watcher-creation method, the module tries
125to detect the currently loaded event loop by probing whether one of the 125to detect the currently loaded event loop by probing whether one of the
126following modules is already loaded: L<EV>, L<AnyEvent::Impl::Perl>, 126following modules is already loaded: L<EV>, L<AnyEvent::Loop>,
127L<Event>, L<Glib>, L<Tk>, L<Event::Lib>, L<Qt>, L<POE>. The first one 127L<Event>, L<Glib>, L<Tk>, L<Event::Lib>, L<Qt>, L<POE>. The first one
128found is used. If none are detected, the module tries to load the first 128found is used. If none are detected, the module tries to load the first
129four modules in the order given; but note that if L<EV> is not 129four modules in the order given; but note that if L<EV> is not
130available, the pure-perl L<AnyEvent::Impl::Perl> should always work, so 130available, the pure-perl L<AnyEvent::Loop> should always work, so
131the other two are not normally tried. 131the other two are not normally tried.
132 132
133Because AnyEvent first checks for modules that are already loaded, loading 133Because AnyEvent first checks for modules that are already loaded, loading
134an event model explicitly before first using AnyEvent will likely make 134an event model explicitly before first using AnyEvent will likely make
135that model the default. For example: 135that model the default. For example:
142The I<likely> means that, if any module loads another event model and 142The I<likely> means that, if any module loads another event model and
143starts using it, all bets are off - this case should be very rare though, 143starts using it, all bets are off - this case should be very rare though,
144as very few modules hardcode event loops without announcing this very 144as very few modules hardcode event loops without announcing this very
145loudly. 145loudly.
146 146
147The pure-perl implementation of AnyEvent is called 147The pure-perl implementation of AnyEvent is called C<AnyEvent::Loop>. Like
148C<AnyEvent::Impl::Perl>. Like other event modules you can load it 148other event modules you can load it explicitly and enjoy the high
149explicitly and enjoy the high availability of that event loop :) 149availability of that event loop :)
150 150
151=head1 WATCHERS 151=head1 WATCHERS
152 152
153AnyEvent has the central concept of a I<watcher>, which is an object that 153AnyEvent has the central concept of a I<watcher>, which is an object that
154stores relevant data for each kind of event you are waiting for, such as 154stores relevant data for each kind of event you are waiting for, such as
356difference between C<< AnyEvent->time >> and C<< AnyEvent->now >> into 356difference between C<< AnyEvent->time >> and C<< AnyEvent->now >> into
357account. 357account.
358 358
359=item AnyEvent->now_update 359=item AnyEvent->now_update
360 360
361Some event loops (such as L<EV> or L<AnyEvent::Impl::Perl>) cache 361Some event loops (such as L<EV> or L<AnyEvent::Loop>) cache the current
362the current time for each loop iteration (see the discussion of L<< 362time for each loop iteration (see the discussion of L<< AnyEvent->now >>,
363AnyEvent->now >>, above). 363above).
364 364
365When a callback runs for a long time (or when the process sleeps), then 365When a callback runs for a long time (or when the process sleeps), then
366this "current" time will differ substantially from the real time, which 366this "current" time will differ substantially from the real time, which
367might affect timers and time-outs. 367might affect timers and time-outs.
368 368
482thing in an AnyEvent program, you I<have> to create at least one 482thing in an AnyEvent program, you I<have> to create at least one
483watcher before you C<fork> the child (alternatively, you can call 483watcher before you C<fork> the child (alternatively, you can call
484C<AnyEvent::detect>). 484C<AnyEvent::detect>).
485 485
486As most event loops do not support waiting for child events, they will be 486As most event loops do not support waiting for child events, they will be
487emulated by AnyEvent in most cases, in which the latency and race problems 487emulated by AnyEvent in most cases, in which case the latency and race
488mentioned in the description of signal watchers apply. 488problems mentioned in the description of signal watchers apply.
489 489
490Example: fork a process and wait for it 490Example: fork a process and wait for it
491 491
492 my $done = AnyEvent->condvar; 492 my $done = AnyEvent->condvar;
493 493
860use. If EV is not installed, then AnyEvent will fall back to its own 860use. If EV is not installed, then AnyEvent will fall back to its own
861pure-perl implementation, which is available everywhere as it comes with 861pure-perl implementation, which is available everywhere as it comes with
862AnyEvent itself. 862AnyEvent itself.
863 863
864 AnyEvent::Impl::EV based on EV (interface to libev, best choice). 864 AnyEvent::Impl::EV based on EV (interface to libev, best choice).
865 AnyEvent::Impl::Perl pure-perl implementation, fast and portable. 865 AnyEvent::Impl::Perl pure-perl AnyEvent::Loop, fast and portable.
866 866
867=item Backends that are transparently being picked up when they are used. 867=item Backends that are transparently being picked up when they are used.
868 868
869These will be used if they are already loaded when the first watcher 869These will be used if they are already loaded when the first watcher
870is created, in which case it is assumed that the application is using 870is created, in which case it is assumed that the application is using
878 AnyEvent::Impl::EventLib based on Event::Lib, leaks memory and worse. 878 AnyEvent::Impl::EventLib based on Event::Lib, leaks memory and worse.
879 AnyEvent::Impl::POE based on POE, very slow, some limitations. 879 AnyEvent::Impl::POE based on POE, very slow, some limitations.
880 AnyEvent::Impl::Irssi used when running within irssi. 880 AnyEvent::Impl::Irssi used when running within irssi.
881 AnyEvent::Impl::IOAsync based on IO::Async. 881 AnyEvent::Impl::IOAsync based on IO::Async.
882 AnyEvent::Impl::Cocoa based on Cocoa::EventLoop. 882 AnyEvent::Impl::Cocoa based on Cocoa::EventLoop.
883 AnyEvent::Impl::FLTK based on FLTK.
883 884
884=item Backends with special needs. 885=item Backends with special needs.
885 886
886Qt requires the Qt::Application to be instantiated first, but will 887Qt requires the Qt::Application to be instantiated first, but will
887otherwise be picked up automatically. As long as the main program 888otherwise be picked up automatically. As long as the main program
1046modules might create watchers when they are loaded, and AnyEvent will 1047modules might create watchers when they are loaded, and AnyEvent will
1047decide on the event model to use as soon as it creates watchers, and it 1048decide on the event model to use as soon as it creates watchers, and it
1048might choose the wrong one unless you load the correct one yourself. 1049might choose the wrong one unless you load the correct one yourself.
1049 1050
1050You can chose to use a pure-perl implementation by loading the 1051You can chose to use a pure-perl implementation by loading the
1051C<AnyEvent::Impl::Perl> module, which gives you similar behaviour 1052C<AnyEvent::Loop> module, which gives you similar behaviour
1052everywhere, but letting AnyEvent chose the model is generally better. 1053everywhere, but letting AnyEvent chose the model is generally better.
1053 1054
1054=head2 MAINLOOP EMULATION 1055=head2 MAINLOOP EMULATION
1055 1056
1056Sometimes (often for short test scripts, or even standalone programs who 1057Sometimes (often for short test scripts, or even standalone programs who
1161 1162
1162BEGIN { AnyEvent::common_sense } 1163BEGIN { AnyEvent::common_sense }
1163 1164
1164use Carp (); 1165use Carp ();
1165 1166
1166our $VERSION = '5.33'; 1167our $VERSION = '5.34';
1167our $MODEL; 1168our $MODEL;
1168 1169
1169our $AUTOLOAD; 1170our $AUTOLOAD;
1170our @ISA; 1171our @ISA;
1171 1172
1196 $ENV{PERL_ANYEVENT_PROTOCOLS} || "ipv4,ipv6"; 1197 $ENV{PERL_ANYEVENT_PROTOCOLS} || "ipv4,ipv6";
1197} 1198}
1198 1199
1199my @models = ( 1200my @models = (
1200 [EV:: => AnyEvent::Impl::EV:: , 1], 1201 [EV:: => AnyEvent::Impl::EV:: , 1],
1201 [AnyEvent::Impl::Perl:: => AnyEvent::Impl::Perl:: , 1], 1202 [AnyEvent::Loop:: => AnyEvent::Impl::Perl:: , 1],
1202 # everything below here will not (normally) be autoprobed 1203 # everything below here will not (normally) be autoprobed
1203 # as the pureperl backend should work everywhere 1204 # as the pure perl backend should work everywhere
1204 # and is usually faster 1205 # and is usually faster
1205 [Event:: => AnyEvent::Impl::Event::, 1], 1206 [Event:: => AnyEvent::Impl::Event::, 1],
1206 [Glib:: => AnyEvent::Impl::Glib:: , 1], # becomes extremely slow with many watchers 1207 [Glib:: => AnyEvent::Impl::Glib:: , 1], # becomes extremely slow with many watchers
1207 [Event::Lib:: => AnyEvent::Impl::EventLib::], # too buggy 1208 [Event::Lib:: => AnyEvent::Impl::EventLib::], # too buggy
1208 [Irssi:: => AnyEvent::Impl::Irssi::], # Irssi has a bogus "Event" package 1209 [Irssi:: => AnyEvent::Impl::Irssi::], # Irssi has a bogus "Event" package
1211 [POE::Kernel:: => AnyEvent::Impl::POE::], # lasciate ogni speranza 1212 [POE::Kernel:: => AnyEvent::Impl::POE::], # lasciate ogni speranza
1212 [Wx:: => AnyEvent::Impl::POE::], 1213 [Wx:: => AnyEvent::Impl::POE::],
1213 [Prima:: => AnyEvent::Impl::POE::], 1214 [Prima:: => AnyEvent::Impl::POE::],
1214 [IO::Async::Loop:: => AnyEvent::Impl::IOAsync::], 1215 [IO::Async::Loop:: => AnyEvent::Impl::IOAsync::],
1215 [Cocoa::EventLoop:: => AnyEvent::Impl::Cocoa::], 1216 [Cocoa::EventLoop:: => AnyEvent::Impl::Cocoa::],
1217 [FLTK:: => AnyEvent::Impl::FLTK::],
1216); 1218);
1217 1219
1218our %method = map +($_ => 1), 1220our %method = map +($_ => 1),
1219 qw(io timer time now now_update signal child idle condvar one_event DESTROY); 1221 qw(io timer time now now_update signal child idle condvar DESTROY);
1220 1222
1221our @post_detect; 1223our @post_detect;
1222 1224
1223sub post_detect(&) { 1225sub post_detect(&) {
1224 my ($cb) = @_; 1226 my ($cb) = @_;
1421 1423
1422*now = \&time; 1424*now = \&time;
1423 1425
1424sub now_update { } 1426sub now_update { }
1425 1427
1428sub _poll {
1429 Carp::croak "$AnyEvent::MODEL does not support blocking waits. Caught";
1430}
1431
1426# default implementation for ->condvar 1432# default implementation for ->condvar
1433# in fact,t he default should not be overwritten
1427 1434
1428sub condvar { 1435sub condvar {
1429 eval q{ # poor man's autoloading {} 1436 eval q{ # poor man's autoloading {}
1430 *condvar = sub { 1437 *condvar = sub {
1431 bless { @_ == 3 ? (_ae_cb => $_[2]) : () }, "AnyEvent::CondVar" 1438 bless { @_ == 3 ? (_ae_cb => $_[2]) : () }, "AnyEvent::CondVar"
1638 }; 1645 };
1639 1646
1640 *child = sub { 1647 *child = sub {
1641 my (undef, %arg) = @_; 1648 my (undef, %arg) = @_;
1642 1649
1643 defined (my $pid = $arg{pid} + 0) 1650 my $pid = $arg{pid};
1644 or Carp::croak "required option 'pid' is missing"; 1651 my $cb = $arg{cb};
1645 1652
1646 $PID_CB{$pid}{$arg{cb}} = $arg{cb}; 1653 $PID_CB{$pid}{$cb+0} = $cb;
1647 1654
1648 unless ($CHLD_W) { 1655 unless ($CHLD_W) {
1649 $CHLD_W = AE::signal CHLD => \&_sigchld; 1656 $CHLD_W = AE::signal CHLD => \&_sigchld;
1650 # child could be a zombie already, so make at least one round 1657 # child could be a zombie already, so make at least one round
1651 &_sigchld; 1658 &_sigchld;
1652 } 1659 }
1653 1660
1654 bless [$pid, $arg{cb}], "AnyEvent::Base::child" 1661 bless [$pid, $cb+0], "AnyEvent::Base::child"
1655 }; 1662 };
1656 1663
1657 *AnyEvent::Base::child::DESTROY = sub { 1664 *AnyEvent::Base::child::DESTROY = sub {
1658 my ($pid, $cb) = @{$_[0]}; 1665 my ($pid, $icb) = @{$_[0]};
1659 1666
1660 delete $PID_CB{$pid}{$cb}; 1667 delete $PID_CB{$pid}{$icb};
1661 delete $PID_CB{$pid} unless keys %{ $PID_CB{$pid} }; 1668 delete $PID_CB{$pid} unless keys %{ $PID_CB{$pid} };
1662 1669
1663 undef $CHLD_W unless keys %PID_CB; 1670 undef $CHLD_W unless keys %PID_CB;
1664 }; 1671 };
1665 }; 1672 };
1737 1744
1738sub _send { 1745sub _send {
1739 # nop 1746 # nop
1740} 1747}
1741 1748
1749sub _wait {
1750 AnyEvent->_poll until $_[0]{_ae_sent};
1751}
1752
1742sub send { 1753sub send {
1743 my $cv = shift; 1754 my $cv = shift;
1744 $cv->{_ae_sent} = [@_]; 1755 $cv->{_ae_sent} = [@_];
1745 (delete $cv->{_ae_cb})->($cv) if $cv->{_ae_cb}; 1756 (delete $cv->{_ae_cb})->($cv) if $cv->{_ae_cb};
1746 $cv->_send; 1757 $cv->_send;
1753 1764
1754sub ready { 1765sub ready {
1755 $_[0]{_ae_sent} 1766 $_[0]{_ae_sent}
1756} 1767}
1757 1768
1758sub _wait {
1759 $WAITING
1760 and !$_[0]{_ae_sent}
1761 and Carp::croak "AnyEvent::CondVar: recursive blocking wait detected";
1762
1763 local $WAITING = 1;
1764 AnyEvent->one_event while !$_[0]{_ae_sent};
1765}
1766
1767sub recv { 1769sub recv {
1770 unless ($_[0]{_ae_sent}) {
1771 $WAITING
1772 and Carp::croak "AnyEvent::CondVar: recursive blocking wait attempted";
1773
1774 local $WAITING = 1;
1768 $_[0]->_wait; 1775 $_[0]->_wait;
1776 }
1769 1777
1770 Carp::croak $_[0]{_ae_croak} if $_[0]{_ae_croak}; 1778 $_[0]{_ae_croak}
1771 wantarray ? @{ $_[0]{_ae_sent} } : $_[0]{_ae_sent}[0] 1779 and Carp::croak $_[0]{_ae_croak};
1780
1781 wantarray
1782 ? @{ $_[0]{_ae_sent} }
1783 : $_[0]{_ae_sent}[0]
1772} 1784}
1773 1785
1774sub cb { 1786sub cb {
1775 my $cv = shift; 1787 my $cv = shift;
1776 1788
1792 &{ $_[0]{_ae_end_cb} || sub { $_[0]->send } }; 1804 &{ $_[0]{_ae_end_cb} || sub { $_[0]->send } };
1793} 1805}
1794 1806
1795# undocumented/compatibility with pre-3.4 1807# undocumented/compatibility with pre-3.4
1796*broadcast = \&send; 1808*broadcast = \&send;
1797*wait = \&_wait; 1809*wait = \&recv;
1798 1810
1799=head1 ERROR AND EXCEPTION HANDLING 1811=head1 ERROR AND EXCEPTION HANDLING
1800 1812
1801In general, AnyEvent does not do any error handling - it relies on the 1813In general, AnyEvent does not do any error handling - it relies on the
1802caller to do that if required. The L<AnyEvent::Strict> module (see also 1814caller to do that if required. The L<AnyEvent::Strict> module (see also
1865used as event model. If it fails to load AnyEvent will proceed with 1877used as event model. If it fails to load AnyEvent will proceed with
1866auto detection and -probing. 1878auto detection and -probing.
1867 1879
1868This functionality might change in future versions. 1880This functionality might change in future versions.
1869 1881
1870For example, to force the pure perl model (L<AnyEvent::Impl::Perl>) you 1882For example, to force the pure perl model (L<AnyEvent::Loop::Perl>) you
1871could start your program like this: 1883could start your program like this:
1872 1884
1873 PERL_ANYEVENT_MODEL=Perl perl ... 1885 PERL_ANYEVENT_MODEL=Perl perl ...
1874 1886
1875=item C<PERL_ANYEVENT_PROTOCOLS> 1887=item C<PERL_ANYEVENT_PROTOCOLS>
2574 2586
2575=item L<Time::HiRes> 2587=item L<Time::HiRes>
2576 2588
2577This module is part of perl since release 5.008. It will be used when the 2589This module is part of perl since release 5.008. It will be used when the
2578chosen event library does not come with a timing source of its own. The 2590chosen event library does not come with a timing source of its own. The
2579pure-perl event loop (L<AnyEvent::Impl::Perl>) will additionally use it to 2591pure-perl event loop (L<AnyEvent::Loop>) will additionally load it to
2580try to use a monotonic clock for timing stability. 2592try to use a monotonic clock for timing stability.
2581 2593
2582=back 2594=back
2583 2595
2584 2596
2652 2664
2653FAQ: L<AnyEvent::FAQ>. 2665FAQ: L<AnyEvent::FAQ>.
2654 2666
2655Utility functions: L<AnyEvent::Util>. 2667Utility functions: L<AnyEvent::Util>.
2656 2668
2657Event modules: L<EV>, L<EV::Glib>, L<Glib::EV>, L<Event>, L<Glib::Event>, 2669Event modules: L<AnyEvent::Loop>, L<EV>, L<EV::Glib>, L<Glib::EV>,
2658L<Glib>, L<Tk>, L<Event::Lib>, L<Qt>, L<POE>. 2670L<Event>, L<Glib::Event>, L<Glib>, L<Tk>, L<Event::Lib>, L<Qt>, L<POE>.
2659 2671
2660Implementations: L<AnyEvent::Impl::EV>, L<AnyEvent::Impl::Event>, 2672Implementations: L<AnyEvent::Impl::EV>, L<AnyEvent::Impl::Event>,
2661L<AnyEvent::Impl::Glib>, L<AnyEvent::Impl::Tk>, L<AnyEvent::Impl::Perl>, 2673L<AnyEvent::Impl::Glib>, L<AnyEvent::Impl::Tk>, L<AnyEvent::Impl::Perl>,
2662L<AnyEvent::Impl::EventLib>, L<AnyEvent::Impl::Qt>, 2674L<AnyEvent::Impl::EventLib>, L<AnyEvent::Impl::Qt>,
2663L<AnyEvent::Impl::POE>, L<AnyEvent::Impl::IOAsync>, L<Anyevent::Impl::Irssi>. 2675L<AnyEvent::Impl::POE>, L<AnyEvent::Impl::IOAsync>, L<Anyevent::Impl::Irssi>.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines