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.329 by root, Sun Jul 11 05:44:22 2010 UTC vs.
Revision 1.332 by root, Tue Aug 31 23:32:40 2010 UTC

15 # file handle or descriptor readable 15 # file handle or descriptor readable
16 my $w = AnyEvent->io (fh => $fh, poll => "r", cb => sub { ... }); 16 my $w = AnyEvent->io (fh => $fh, poll => "r", cb => sub { ... });
17 17
18 # one-shot or repeating timers 18 # one-shot or repeating timers
19 my $w = AnyEvent->timer (after => $seconds, cb => sub { ... }); 19 my $w = AnyEvent->timer (after => $seconds, cb => sub { ... });
20 my $w = AnyEvent->timer (after => $seconds, interval => $seconds, cb => ... 20 my $w = AnyEvent->timer (after => $seconds, interval => $seconds, cb => ...);
21 21
22 print AnyEvent->now; # prints current event loop time 22 print AnyEvent->now; # prints current event loop time
23 print AnyEvent->time; # think Time::HiRes::time or simply CORE::time. 23 print AnyEvent->time; # think Time::HiRes::time or simply CORE::time.
24 24
25 # POSIX signal 25 # POSIX signal
76module users into the same thing by forcing them to use the same event 76module users into the same thing by forcing them to use the same event
77model you use. 77model you use.
78 78
79For modules like POE or IO::Async (which is a total misnomer as it is 79For modules like POE or IO::Async (which is a total misnomer as it is
80actually doing all I/O I<synchronously>...), using them in your module is 80actually doing all I/O I<synchronously>...), using them in your module is
81like joining a cult: After you joined, you are dependent on them and you 81like joining a cult: After you join, you are dependent on them and you
82cannot use anything else, as they are simply incompatible to everything 82cannot use anything else, as they are simply incompatible to everything
83that isn't them. What's worse, all the potential users of your 83that isn't them. What's worse, all the potential users of your
84module are I<also> forced to use the same event loop you use. 84module are I<also> forced to use the same event loop you use.
85 85
86AnyEvent is different: AnyEvent + POE works fine. AnyEvent + Glib works 86AnyEvent is different: AnyEvent + POE works fine. AnyEvent + Glib works
87fine. AnyEvent + Tk works fine etc. etc. but none of these work together 87fine. AnyEvent + Tk works fine etc. etc. but none of these work together
88with the rest: POE + IO::Async? No go. Tk + Event? No go. Again: if 88with the rest: POE + IO::Async? No go. Tk + Event? No go. Again: if
89your module uses one of those, every user of your module has to use it, 89your module uses one of those, every user of your module has to use it,
90too. But if your module uses AnyEvent, it works transparently with all 90too. But if your module uses AnyEvent, it works transparently with all
91event models it supports (including stuff like IO::Async, as long as those 91event models it supports (including stuff like IO::Async, as long as those
92use one of the supported event loops. It is trivial to add new event loops 92use one of the supported event loops. It is easy to add new event loops
93to AnyEvent, too, so it is future-proof). 93to AnyEvent, too, so it is future-proof).
94 94
95In addition to being free of having to use I<the one and only true event 95In addition to being free of having to use I<the one and only true event
96model>, AnyEvent also is free of bloat and policy: with POE or similar 96model>, AnyEvent also is free of bloat and policy: with POE or similar
97modules, you get an enormous amount of code and strict rules you have to 97modules, you get an enormous amount of code and strict rules you have to
98follow. AnyEvent, on the other hand, is lean and up to the point, by only 98follow. AnyEvent, on the other hand, is lean and to the point, by only
99offering the functionality that is necessary, in as thin as a wrapper as 99offering the functionality that is necessary, in as thin as a wrapper as
100technically possible. 100technically possible.
101 101
102Of course, AnyEvent comes with a big (and fully optional!) toolbox 102Of course, AnyEvent comes with a big (and fully optional!) toolbox
103of useful functionality, such as an asynchronous DNS resolver, 100% 103of useful functionality, such as an asynchronous DNS resolver, 100%
109useful) and you want to force your users to use the one and only event 109useful) and you want to force your users to use the one and only event
110model, you should I<not> use this module. 110model, you should I<not> use this module.
111 111
112=head1 DESCRIPTION 112=head1 DESCRIPTION
113 113
114L<AnyEvent> provides an identical interface to multiple event loops. This 114L<AnyEvent> provides a uniform interface to various event loops. This
115allows module authors to utilise an event loop without forcing module 115allows module authors to use event loop functionality without forcing
116users to use the same event loop (as only a single event loop can coexist 116module users to use a specific event loop implementation (since more
117peacefully at any one time). 117than one event loop cannot coexist peacefully).
118 118
119The interface itself is vaguely similar, but not identical to the L<Event> 119The interface itself is vaguely similar, but not identical to the L<Event>
120module. 120module.
121 121
122During the first call of any watcher-creation method, the module tries 122During the first call of any watcher-creation method, the module tries
123to detect the currently loaded event loop by probing whether one of the 123to detect the currently loaded event loop by probing whether one of the
124following modules is already loaded: L<EV>, 124following modules is already loaded: L<EV>, L<AnyEvent::Impl::Perl>,
125L<Event>, L<Glib>, L<AnyEvent::Impl::Perl>, L<Tk>, L<Event::Lib>, L<Qt>, 125L<Event>, L<Glib>, L<Tk>, L<Event::Lib>, L<Qt>, L<POE>. The first one
126L<POE>. The first one found is used. If none are found, the module tries 126found is used. If none are detected, the module tries to load the first
127to load these modules (excluding Tk, Event::Lib, Qt and POE as the pure perl 127four modules in the order given; but note that if L<EV> is not
128adaptor should always succeed) in the order given. The first one that can 128available, the pure-perl L<AnyEvent::Impl::Perl> should always work, so
129be successfully loaded will be used. If, after this, still none could be 129the other two are not normally tried.
130found, AnyEvent will fall back to a pure-perl event loop, which is not
131very efficient, but should work everywhere.
132 130
133Because AnyEvent first checks for modules that are already loaded, loading 131Because AnyEvent first checks for modules that are already loaded, loading
134an event model explicitly before first using AnyEvent will likely make 132an event model explicitly before first using AnyEvent will likely make
135that model the default. For example: 133that model the default. For example:
136 134
159callback when the event occurs (of course, only when the event model 157callback when the event occurs (of course, only when the event model
160is in control). 158is in control).
161 159
162Note that B<callbacks must not permanently change global variables> 160Note that B<callbacks must not permanently change global variables>
163potentially in use by the event loop (such as C<$_> or C<$[>) and that B<< 161potentially in use by the event loop (such as C<$_> or C<$[>) and that B<<
164callbacks must not C<die> >>. The former is good programming practise in 162callbacks must not C<die> >>. The former is good programming practice in
165Perl and the latter stems from the fact that exception handling differs 163Perl and the latter stems from the fact that exception handling differs
166widely between event loops. 164widely between event loops.
167 165
168To disable the watcher you have to destroy it (e.g. by setting the 166To disable a watcher you have to destroy it (e.g. by setting the
169variable you store it in to C<undef> or otherwise deleting all references 167variable you store it in to C<undef> or otherwise deleting all references
170to it). 168to it).
171 169
172All watchers are created by calling a method on the C<AnyEvent> class. 170All watchers are created by calling a method on the C<AnyEvent> class.
173 171
174Many watchers either are used with "recursion" (repeating timers for 172Many watchers either are used with "recursion" (repeating timers for
175example), or need to refer to their watcher object in other ways. 173example), or need to refer to their watcher object in other ways.
176 174
177An any way to achieve that is this pattern: 175One way to achieve that is this pattern:
178 176
179 my $w; $w = AnyEvent->type (arg => value ..., cb => sub { 177 my $w; $w = AnyEvent->type (arg => value ..., cb => sub {
180 # you can use $w here, for example to undef it 178 # you can use $w here, for example to undef it
181 undef $w; 179 undef $w;
182 }); 180 });
214 212
215The I/O watcher might use the underlying file descriptor or a copy of it. 213The I/O watcher might use the underlying file descriptor or a copy of it.
216You must not close a file handle as long as any watcher is active on the 214You must not close a file handle as long as any watcher is active on the
217underlying file descriptor. 215underlying file descriptor.
218 216
219Some event loops issue spurious readyness notifications, so you should 217Some event loops issue spurious readiness notifications, so you should
220always use non-blocking calls when reading/writing from/to your file 218always use non-blocking calls when reading/writing from/to your file
221handles. 219handles.
222 220
223Example: wait for readability of STDIN, then read a line and disable the 221Example: wait for readability of STDIN, then read a line and disable the
224watcher. 222watcher.
248 246
249Although the callback might get passed parameters, their value and 247Although the callback might get passed parameters, their value and
250presence is undefined and you cannot rely on them. Portable AnyEvent 248presence is undefined and you cannot rely on them. Portable AnyEvent
251callbacks cannot use arguments passed to time watcher callbacks. 249callbacks cannot use arguments passed to time watcher callbacks.
252 250
253The callback will normally be invoked once only. If you specify another 251The callback will normally be invoked only once. If you specify another
254parameter, C<interval>, as a strictly positive number (> 0), then the 252parameter, C<interval>, as a strictly positive number (> 0), then the
255callback will be invoked regularly at that interval (in fractional 253callback will be invoked regularly at that interval (in fractional
256seconds) after the first invocation. If C<interval> is specified with a 254seconds) after the first invocation. If C<interval> is specified with a
257false value, then it is treated as if it were missing. 255false value, then it is treated as if it were not specified at all.
258 256
259The callback will be rescheduled before invoking the callback, but no 257The callback will be rescheduled before invoking the callback, but no
260attempt is done to avoid timer drift in most backends, so the interval is 258attempt is made to avoid timer drift in most backends, so the interval is
261only approximate. 259only approximate.
262 260
263Example: fire an event after 7.7 seconds. 261Example: fire an event after 7.7 seconds.
264 262
265 my $w = AnyEvent->timer (after => 7.7, cb => sub { 263 my $w = AnyEvent->timer (after => 7.7, cb => sub {
283 281
284While most event loops expect timers to specified in a relative way, they 282While most event loops expect timers to specified in a relative way, they
285use absolute time internally. This makes a difference when your clock 283use absolute time internally. This makes a difference when your clock
286"jumps", for example, when ntp decides to set your clock backwards from 284"jumps", for example, when ntp decides to set your clock backwards from
287the wrong date of 2014-01-01 to 2008-01-01, a watcher that is supposed to 285the wrong date of 2014-01-01 to 2008-01-01, a watcher that is supposed to
288fire "after" a second might actually take six years to finally fire. 286fire "after a second" might actually take six years to finally fire.
289 287
290AnyEvent cannot compensate for this. The only event loop that is conscious 288AnyEvent cannot compensate for this. The only event loop that is conscious
291about these issues is L<EV>, which offers both relative (ev_timer, based 289of these issues is L<EV>, which offers both relative (ev_timer, based
292on true relative time) and absolute (ev_periodic, based on wallclock time) 290on true relative time) and absolute (ev_periodic, based on wallclock time)
293timers. 291timers.
294 292
295AnyEvent always prefers relative timers, if available, matching the 293AnyEvent always prefers relative timers, if available, matching the
296AnyEvent API. 294AnyEvent API.
318I<In almost all cases (in all cases if you don't care), this is the 316I<In almost all cases (in all cases if you don't care), this is the
319function to call when you want to know the current time.> 317function to call when you want to know the current time.>
320 318
321This function is also often faster then C<< AnyEvent->time >>, and 319This function is also often faster then C<< AnyEvent->time >>, and
322thus the preferred method if you want some timestamp (for example, 320thus the preferred method if you want some timestamp (for example,
323L<AnyEvent::Handle> uses this to update it's activity timeouts). 321L<AnyEvent::Handle> uses this to update its activity timeouts).
324 322
325The rest of this section is only of relevance if you try to be very exact 323The rest of this section is only of relevance if you try to be very exact
326with your timing, you can skip it without bad conscience. 324with your timing; you can skip it without a bad conscience.
327 325
328For a practical example of when these times differ, consider L<Event::Lib> 326For a practical example of when these times differ, consider L<Event::Lib>
329and L<EV> and the following set-up: 327and L<EV> and the following set-up:
330 328
331The event loop is running and has just invoked one of your callback at 329The event loop is running and has just invoked one of your callbacks at
332time=500 (assume no other callbacks delay processing). In your callback, 330time=500 (assume no other callbacks delay processing). In your callback,
333you wait a second by executing C<sleep 1> (blocking the process for a 331you wait a second by executing C<sleep 1> (blocking the process for a
334second) and then (at time=501) you create a relative timer that fires 332second) and then (at time=501) you create a relative timer that fires
335after three seconds. 333after three seconds.
336 334
429=head3 Signal Races, Delays and Workarounds 427=head3 Signal Races, Delays and Workarounds
430 428
431Many event loops (e.g. Glib, Tk, Qt, IO::Async) do not support attaching 429Many event loops (e.g. Glib, Tk, Qt, IO::Async) do not support attaching
432callbacks to signals in a generic way, which is a pity, as you cannot 430callbacks to signals in a generic way, which is a pity, as you cannot
433do race-free signal handling in perl, requiring C libraries for 431do race-free signal handling in perl, requiring C libraries for
434this. AnyEvent will try to do it's best, which means in some cases, 432this. AnyEvent will try to do its best, which means in some cases,
435signals will be delayed. The maximum time a signal might be delayed is 433signals will be delayed. The maximum time a signal might be delayed is
436specified in C<$AnyEvent::MAX_SIGNAL_LATENCY> (default: 10 seconds). This 434specified in C<$AnyEvent::MAX_SIGNAL_LATENCY> (default: 10 seconds). This
437variable can be changed only before the first signal watcher is created, 435variable can be changed only before the first signal watcher is created,
438and should be left alone otherwise. This variable determines how often 436and should be left alone otherwise. This variable determines how often
439AnyEvent polls for signals (in case a wake-up was missed). Higher values 437AnyEvent polls for signals (in case a wake-up was missed). Higher values
441saving. 439saving.
442 440
443All these problems can be avoided by installing the optional 441All these problems can be avoided by installing the optional
444L<Async::Interrupt> module, which works with most event loops. It will not 442L<Async::Interrupt> module, which works with most event loops. It will not
445work with inherently broken event loops such as L<Event> or L<Event::Lib> 443work with inherently broken event loops such as L<Event> or L<Event::Lib>
446(and not with L<POE> currently, as POE does it's own workaround with 444(and not with L<POE> currently, as POE does its own workaround with
447one-second latency). For those, you just have to suffer the delays. 445one-second latency). For those, you just have to suffer the delays.
448 446
449=head2 CHILD PROCESS WATCHERS 447=head2 CHILD PROCESS WATCHERS
450 448
451 $w = AnyEvent->child (pid => <process id>, cb => <callback>); 449 $w = AnyEvent->child (pid => <process id>, cb => <callback>);
452 450
453You can also watch on a child process exit and catch its exit status. 451You can also watch for a child process exit and catch its exit status.
454 452
455The child process is specified by the C<pid> argument (one some backends, 453The child process is specified by the C<pid> argument (on some backends,
456using C<0> watches for any child process exit, on others this will 454using C<0> watches for any child process exit, on others this will
457croak). The watcher will be triggered only when the child process has 455croak). The watcher will be triggered only when the child process has
458finished and an exit status is available, not on any trace events 456finished and an exit status is available, not on any trace events
459(stopped/continued). 457(stopped/continued).
460 458
507 505
508=head2 IDLE WATCHERS 506=head2 IDLE WATCHERS
509 507
510 $w = AnyEvent->idle (cb => <callback>); 508 $w = AnyEvent->idle (cb => <callback>);
511 509
512Repeatedly invoke the callback after the process becomes idle, until 510This will repeatedly invoke the callback after the process becomes idle,
513either the watcher is destroyed or new events have been detected. 511until either the watcher is destroyed or new events have been detected.
514 512
515Idle watchers are useful when there is a need to do something, but it 513Idle watchers are useful when there is a need to do something, but it
516is not so important (or wise) to do it instantly. The callback will be 514is not so important (or wise) to do it instantly. The callback will be
517invoked only when there is "nothing better to do", which is usually 515invoked only when there is "nothing better to do", which is usually
518defined as "all outstanding events have been handled and no new events 516defined as "all outstanding events have been handled and no new events
588the signal fires. 586the signal fires.
589 587
590=item * Condition variables are like "Merge Points" - points in your program 588=item * Condition variables are like "Merge Points" - points in your program
591where you merge multiple independent results/control flows into one. 589where you merge multiple independent results/control flows into one.
592 590
593=item * Condition variables represent a transaction - function that start 591=item * Condition variables represent a transaction - functions that start
594some kind of transaction can return them, leaving the caller the choice 592some kind of transaction can return them, leaving the caller the choice
595between waiting in a blocking fashion, or setting a callback. 593between waiting in a blocking fashion, or setting a callback.
596 594
597=item * Condition variables represent future values, or promises to deliver 595=item * Condition variables represent future values, or promises to deliver
598some result, long before the result is available. 596some result, long before the result is available.
618 616
619Condition variables are represented by hash refs in perl, and the keys 617Condition variables are represented by hash refs in perl, and the keys
620used by AnyEvent itself are all named C<_ae_XXX> to make subclassing 618used by AnyEvent itself are all named C<_ae_XXX> to make subclassing
621easy (it is often useful to build your own transaction class on top of 619easy (it is often useful to build your own transaction class on top of
622AnyEvent). To subclass, use C<AnyEvent::CondVar> as base class and call 620AnyEvent). To subclass, use C<AnyEvent::CondVar> as base class and call
623it's C<new> method in your own C<new> method. 621its C<new> method in your own C<new> method.
624 622
625There are two "sides" to a condition variable - the "producer side" which 623There are two "sides" to a condition variable - the "producer side" which
626eventually calls C<< -> send >>, and the "consumer side", which waits 624eventually calls C<< -> send >>, and the "consumer side", which waits
627for the send to occur. 625for the send to occur.
628 626
693they were a code reference). Calling them directly is the same as calling 691they were a code reference). Calling them directly is the same as calling
694C<send>. 692C<send>.
695 693
696=item $cv->croak ($error) 694=item $cv->croak ($error)
697 695
698Similar to send, but causes all call's to C<< ->recv >> to invoke 696Similar to send, but causes all calls to C<< ->recv >> to invoke
699C<Carp::croak> with the given error message/object/scalar. 697C<Carp::croak> with the given error message/object/scalar.
700 698
701This can be used to signal any errors to the condition variable 699This can be used to signal any errors to the condition variable
702user/consumer. Doing it this way instead of calling C<croak> directly 700user/consumer. Doing it this way instead of calling C<croak> directly
703delays the error detetcion, but has the overwhelmign advantage that it 701delays the error detection, but has the overwhelming advantage that it
704diagnoses the error at the place where the result is expected, and not 702diagnoses the error at the place where the result is expected, and not
705deep in some event clalback without connection to the actual code causing 703deep in some event callback with no connection to the actual code causing
706the problem. 704the problem.
707 705
708=item $cv->begin ([group callback]) 706=item $cv->begin ([group callback])
709 707
710=item $cv->end 708=item $cv->end
748one call to C<begin>, so the condvar waits for all calls to C<end> before 746one call to C<begin>, so the condvar waits for all calls to C<end> before
749sending. 747sending.
750 748
751The ping example mentioned above is slightly more complicated, as the 749The ping example mentioned above is slightly more complicated, as the
752there are results to be passwd back, and the number of tasks that are 750there are results to be passwd back, and the number of tasks that are
753begung can potentially be zero: 751begun can potentially be zero:
754 752
755 my $cv = AnyEvent->condvar; 753 my $cv = AnyEvent->condvar;
756 754
757 my %result; 755 my %result;
758 $cv->begin (sub { shift->send (\%result) }); 756 $cv->begin (sub { shift->send (\%result) });
779to be called once the counter reaches C<0>, and second, it ensures that 777to be called once the counter reaches C<0>, and second, it ensures that
780C<send> is called even when C<no> hosts are being pinged (the loop 778C<send> is called even when C<no> hosts are being pinged (the loop
781doesn't execute once). 779doesn't execute once).
782 780
783This is the general pattern when you "fan out" into multiple (but 781This is the general pattern when you "fan out" into multiple (but
784potentially none) subrequests: use an outer C<begin>/C<end> pair to set 782potentially zero) subrequests: use an outer C<begin>/C<end> pair to set
785the callback and ensure C<end> is called at least once, and then, for each 783the callback and ensure C<end> is called at least once, and then, for each
786subrequest you start, call C<begin> and for each subrequest you finish, 784subrequest you start, call C<begin> and for each subrequest you finish,
787call C<end>. 785call C<end>.
788 786
789=back 787=back
796=over 4 794=over 4
797 795
798=item $cv->recv 796=item $cv->recv
799 797
800Wait (blocking if necessary) until the C<< ->send >> or C<< ->croak 798Wait (blocking if necessary) until the C<< ->send >> or C<< ->croak
801>> methods have been called on c<$cv>, while servicing other watchers 799>> methods have been called on C<$cv>, while servicing other watchers
802normally. 800normally.
803 801
804You can only wait once on a condition - additional calls are valid but 802You can only wait once on a condition - additional calls are valid but
805will return immediately. 803will return immediately.
806 804
823caller decide whether the call will block or not (for example, by coupling 821caller decide whether the call will block or not (for example, by coupling
824condition variables with some kind of request results and supporting 822condition variables with some kind of request results and supporting
825callbacks so the caller knows that getting the result will not block, 823callbacks so the caller knows that getting the result will not block,
826while still supporting blocking waits if the caller so desires). 824while still supporting blocking waits if the caller so desires).
827 825
828You can ensure that C<< -recv >> never blocks by setting a callback and 826You can ensure that C<< ->recv >> never blocks by setting a callback and
829only calling C<< ->recv >> from within that callback (or at a later 827only calling C<< ->recv >> from within that callback (or at a later
830time). This will work even when the event loop does not support blocking 828time). This will work even when the event loop does not support blocking
831waits otherwise. 829waits otherwise.
832 830
833=item $bool = $cv->ready 831=item $bool = $cv->ready
838=item $cb = $cv->cb ($cb->($cv)) 836=item $cb = $cv->cb ($cb->($cv))
839 837
840This is a mutator function that returns the callback set and optionally 838This is a mutator function that returns the callback set and optionally
841replaces it before doing so. 839replaces it before doing so.
842 840
843The callback will be called when the condition becomes (or already was) 841The callback will be called when the condition becomes "true", i.e. when
844"true", i.e. when C<send> or C<croak> are called (or were called), with 842C<send> or C<croak> are called, with the only argument being the
845the only argument being the condition variable itself. Calling C<recv> 843condition variable itself. If the condition is already true, the
844callback is called immediately when it is set. Calling C<recv> inside
846inside the callback or at any later time is guaranteed not to block. 845the callback or at any later time is guaranteed not to block.
847 846
848=back 847=back
849 848
850=head1 SUPPORTED EVENT LOOPS/BACKENDS 849=head1 SUPPORTED EVENT LOOPS/BACKENDS
851 850
863 AnyEvent::Impl::EV based on EV (interface to libev, best choice). 862 AnyEvent::Impl::EV based on EV (interface to libev, best choice).
864 AnyEvent::Impl::Perl pure-perl implementation, fast and portable. 863 AnyEvent::Impl::Perl pure-perl implementation, fast and portable.
865 864
866=item Backends that are transparently being picked up when they are used. 865=item Backends that are transparently being picked up when they are used.
867 866
868These will be used when they are currently loaded when the first watcher 867These will be used if they are already loaded when the first watcher
869is created, in which case it is assumed that the application is using 868is created, in which case it is assumed that the application is using
870them. This means that AnyEvent will automatically pick the right backend 869them. This means that AnyEvent will automatically pick the right backend
871when the main program loads an event module before anything starts to 870when the main program loads an event module before anything starts to
872create watchers. Nothing special needs to be done by the main program. 871create watchers. Nothing special needs to be done by the main program.
873 872
889 888
890Support for IO::Async can only be partial, as it is too broken and 889Support for IO::Async can only be partial, as it is too broken and
891architecturally limited to even support the AnyEvent API. It also 890architecturally limited to even support the AnyEvent API. It also
892is the only event loop that needs the loop to be set explicitly, so 891is the only event loop that needs the loop to be set explicitly, so
893it can only be used by a main program knowing about AnyEvent. See 892it can only be used by a main program knowing about AnyEvent. See
894L<AnyEvent::Impl::Async> for the gory details. 893L<AnyEvent::Impl::IOAsync> for the gory details.
895 894
896 AnyEvent::Impl::IOAsync based on IO::Async, cannot be autoprobed. 895 AnyEvent::Impl::IOAsync based on IO::Async, cannot be autoprobed.
897 896
898=item Event loops that are indirectly supported via other backends. 897=item Event loops that are indirectly supported via other backends.
899 898
927Contains C<undef> until the first watcher is being created, before the 926Contains C<undef> until the first watcher is being created, before the
928backend has been autodetected. 927backend has been autodetected.
929 928
930Afterwards it contains the event model that is being used, which is the 929Afterwards it contains the event model that is being used, which is the
931name of the Perl class implementing the model. This class is usually one 930name of the Perl class implementing the model. This class is usually one
932of the C<AnyEvent::Impl:xxx> modules, but can be any other class in the 931of the C<AnyEvent::Impl::xxx> modules, but can be any other class in the
933case AnyEvent has been extended at runtime (e.g. in I<rxvt-unicode> it 932case AnyEvent has been extended at runtime (e.g. in I<rxvt-unicode> it
934will be C<urxvt::anyevent>). 933will be C<urxvt::anyevent>).
935 934
936=item AnyEvent::detect 935=item AnyEvent::detect
937 936
938Returns C<$AnyEvent::MODEL>, forcing autodetection of the event model 937Returns C<$AnyEvent::MODEL>, forcing autodetection of the event model
939if necessary. You should only call this function right before you would 938if necessary. You should only call this function right before you would
940have created an AnyEvent watcher anyway, that is, as late as possible at 939have created an AnyEvent watcher anyway, that is, as late as possible at
941runtime, and not e.g. while initialising of your module. 940runtime, and not e.g. during initialisation of your module.
942 941
943If you need to do some initialisation before AnyEvent watchers are 942If you need to do some initialisation before AnyEvent watchers are
944created, use C<post_detect>. 943created, use C<post_detect>.
945 944
946=item $guard = AnyEvent::post_detect { BLOCK } 945=item $guard = AnyEvent::post_detect { BLOCK }
947 946
948Arranges for the code block to be executed as soon as the event model is 947Arranges for the code block to be executed as soon as the event model is
949autodetected (or immediately if this has already happened). 948autodetected (or immediately if that has already happened).
950 949
951The block will be executed I<after> the actual backend has been detected 950The block will be executed I<after> the actual backend has been detected
952(C<$AnyEvent::MODEL> is set), but I<before> any watchers have been 951(C<$AnyEvent::MODEL> is set), but I<before> any watchers have been
953created, so it is possible to e.g. patch C<@AnyEvent::ISA> or do 952created, so it is possible to e.g. patch C<@AnyEvent::ISA> or do
954other initialisations - see the sources of L<AnyEvent::Strict> or 953other initialisations - see the sources of L<AnyEvent::Strict> or
963that automatically removes the callback again when it is destroyed (or 962that automatically removes the callback again when it is destroyed (or
964C<undef> when the hook was immediately executed). See L<AnyEvent::AIO> for 963C<undef> when the hook was immediately executed). See L<AnyEvent::AIO> for
965a case where this is useful. 964a case where this is useful.
966 965
967Example: Create a watcher for the IO::AIO module and store it in 966Example: Create a watcher for the IO::AIO module and store it in
968C<$WATCHER>. Only do so after the event loop is initialised, though. 967C<$WATCHER>, but do so only do so after the event loop is initialised.
969 968
970 our WATCHER; 969 our WATCHER;
971 970
972 my $guard = AnyEvent::post_detect { 971 my $guard = AnyEvent::post_detect {
973 $WATCHER = AnyEvent->io (fh => IO::AIO::poll_fileno, poll => 'r', cb => \&IO::AIO::poll_cb); 972 $WATCHER = AnyEvent->io (fh => IO::AIO::poll_fileno, poll => 'r', cb => \&IO::AIO::poll_cb);
981 $WATCHER ||= $guard; 980 $WATCHER ||= $guard;
982 981
983=item @AnyEvent::post_detect 982=item @AnyEvent::post_detect
984 983
985If there are any code references in this array (you can C<push> to it 984If there are any code references in this array (you can C<push> to it
986before or after loading AnyEvent), then they will called directly after 985before or after loading AnyEvent), then they will be called directly
987the event loop has been chosen. 986after the event loop has been chosen.
988 987
989You should check C<$AnyEvent::MODEL> before adding to this array, though: 988You should check C<$AnyEvent::MODEL> before adding to this array, though:
990if it is defined then the event loop has already been detected, and the 989if it is defined then the event loop has already been detected, and the
991array will be ignored. 990array will be ignored.
992 991
1028because it will stall the whole program, and the whole point of using 1027because it will stall the whole program, and the whole point of using
1029events is to stay interactive. 1028events is to stay interactive.
1030 1029
1031It is fine, however, to call C<< ->recv >> when the user of your module 1030It is fine, however, to call C<< ->recv >> when the user of your module
1032requests it (i.e. if you create a http request object ad have a method 1031requests it (i.e. if you create a http request object ad have a method
1033called C<results> that returns the results, it should call C<< ->recv >> 1032called C<results> that returns the results, it may call C<< ->recv >>
1034freely, as the user of your module knows what she is doing. always). 1033freely, as the user of your module knows what she is doing. Always).
1035 1034
1036=head1 WHAT TO DO IN THE MAIN PROGRAM 1035=head1 WHAT TO DO IN THE MAIN PROGRAM
1037 1036
1038There will always be a single main program - the only place that should 1037There will always be a single main program - the only place that should
1039dictate which event model to use. 1038dictate which event model to use.
1040 1039
1041If it doesn't care, it can just "use AnyEvent" and use it itself, or not 1040If the program is not event-based, it need not do anything special, even
1042do anything special (it does not need to be event-based) and let AnyEvent 1041when it depends on a module that uses an AnyEvent. If the program itself
1043decide which implementation to chose if some module relies on it. 1042uses AnyEvent, but does not care which event loop is used, all it needs
1043to do is C<use AnyEvent>. In either case, AnyEvent will choose the best
1044available loop implementation.
1044 1045
1045If the main program relies on a specific event model - for example, in 1046If the main program relies on a specific event model - for example, in
1046Gtk2 programs you have to rely on the Glib module - you should load the 1047Gtk2 programs you have to rely on the Glib module - you should load the
1047event module before loading AnyEvent or any module that uses it: generally 1048event module before loading AnyEvent or any module that uses it: generally
1048speaking, you should load it as early as possible. The reason is that 1049speaking, you should load it as early as possible. The reason is that
1049modules might create watchers when they are loaded, and AnyEvent will 1050modules might create watchers when they are loaded, and AnyEvent will
1050decide on the event model to use as soon as it creates watchers, and it 1051decide on the event model to use as soon as it creates watchers, and it
1051might chose the wrong one unless you load the correct one yourself. 1052might choose the wrong one unless you load the correct one yourself.
1052 1053
1053You can chose to use a pure-perl implementation by loading the 1054You can chose to use a pure-perl implementation by loading the
1054C<AnyEvent::Impl::Perl> module, which gives you similar behaviour 1055C<AnyEvent::Impl::Perl> module, which gives you similar behaviour
1055everywhere, but letting AnyEvent chose the model is generally better. 1056everywhere, but letting AnyEvent chose the model is generally better.
1056 1057
1080 1081
1081=over 4 1082=over 4
1082 1083
1083=item L<AnyEvent::Util> 1084=item L<AnyEvent::Util>
1084 1085
1085Contains various utility functions that replace often-used but blocking 1086Contains various utility functions that replace often-used blocking
1086functions such as C<inet_aton> by event-/callback-based versions. 1087functions such as C<inet_aton> with event/callback-based versions.
1087 1088
1088=item L<AnyEvent::Socket> 1089=item L<AnyEvent::Socket>
1089 1090
1090Provides various utility functions for (internet protocol) sockets, 1091Provides various utility functions for (internet protocol) sockets,
1091addresses and name resolution. Also functions to create non-blocking tcp 1092addresses and name resolution. Also functions to create non-blocking tcp
1093 1094
1094=item L<AnyEvent::Handle> 1095=item L<AnyEvent::Handle>
1095 1096
1096Provide read and write buffers, manages watchers for reads and writes, 1097Provide read and write buffers, manages watchers for reads and writes,
1097supports raw and formatted I/O, I/O queued and fully transparent and 1098supports raw and formatted I/O, I/O queued and fully transparent and
1098non-blocking SSL/TLS (via L<AnyEvent::TLS>. 1099non-blocking SSL/TLS (via L<AnyEvent::TLS>).
1099 1100
1100=item L<AnyEvent::DNS> 1101=item L<AnyEvent::DNS>
1101 1102
1102Provides rich asynchronous DNS resolver capabilities. 1103Provides rich asynchronous DNS resolver capabilities.
1103 1104
1111 1112
1112Here be danger! 1113Here be danger!
1113 1114
1114As Pauli would put it, "Not only is it not right, it's not even wrong!" - 1115As Pauli would put it, "Not only is it not right, it's not even wrong!" -
1115there are so many things wrong with AnyEvent::Handle::UDP, most notably 1116there are so many things wrong with AnyEvent::Handle::UDP, most notably
1116it's use of a stream-based API with a protocol that isn't streamable, that 1117its use of a stream-based API with a protocol that isn't streamable, that
1117the only way to improve it is to delete it. 1118the only way to improve it is to delete it.
1118 1119
1119It features data corruption (but typically only under load) and general 1120It features data corruption (but typically only under load) and general
1120confusion. On top, the author is not only clueless about UDP but also 1121confusion. On top, the author is not only clueless about UDP but also
1121fact-resistant - some gems of his understanding: "connect doesn't work 1122fact-resistant - some gems of his understanding: "connect doesn't work
1125wrong with his module when it is explained to him. 1126wrong with his module when it is explained to him.
1126 1127
1127=item L<AnyEvent::DBI> 1128=item L<AnyEvent::DBI>
1128 1129
1129Executes L<DBI> requests asynchronously in a proxy process for you, 1130Executes L<DBI> requests asynchronously in a proxy process for you,
1130notifying you in an event-bnased way when the operation is finished. 1131notifying you in an event-based way when the operation is finished.
1131 1132
1132=item L<AnyEvent::AIO> 1133=item L<AnyEvent::AIO>
1133 1134
1134Truly asynchronous (as opposed to non-blocking) I/O, should be in the 1135Truly asynchronous (as opposed to non-blocking) I/O, should be in the
1135toolbox of every event programmer. AnyEvent::AIO transparently fuses 1136toolbox of every event programmer. AnyEvent::AIO transparently fuses
1154 1155
1155package AnyEvent; 1156package AnyEvent;
1156 1157
1157# basically a tuned-down version of common::sense 1158# basically a tuned-down version of common::sense
1158sub common_sense { 1159sub common_sense {
1159 # from common:.sense 1.0 1160 # from common:.sense 3.3
1160 ${^WARNING_BITS} = "\xfc\x3f\x33\x00\x0f\xf3\xcf\xc0\xf3\xfc\x33\x00"; 1161 ${^WARNING_BITS} ^= ${^WARNING_BITS} ^ "\x3c\x3f\x33\x00\x0f\xf3\x0f\xc0\xf0\xfc\x33\x00";
1161 # use strict vars subs - NO UTF-8, as Util.pm doesn't like this atm. (uts46data.pl) 1162 # use strict vars subs - NO UTF-8, as Util.pm doesn't like this atm. (uts46data.pl)
1162 $^H |= 0x00000600; 1163 $^H |= 0x00000600;
1163} 1164}
1164 1165
1165BEGIN { AnyEvent::common_sense } 1166BEGIN { AnyEvent::common_sense }
1854check the arguments passed to most method calls. If it finds any problems, 1855check the arguments passed to most method calls. If it finds any problems,
1855it will croak. 1856it will croak.
1856 1857
1857In other words, enables "strict" mode. 1858In other words, enables "strict" mode.
1858 1859
1859Unlike C<use strict> (or it's modern cousin, C<< use L<common::sense> 1860Unlike C<use strict> (or its modern cousin, C<< use L<common::sense>
1860>>, it is definitely recommended to keep it off in production. Keeping 1861>>, it is definitely recommended to keep it off in production. Keeping
1861C<PERL_ANYEVENT_STRICT=1> in your environment while developing programs 1862C<PERL_ANYEVENT_STRICT=1> in your environment while developing programs
1862can be very useful, however. 1863can be very useful, however.
1863 1864
1864=item C<PERL_ANYEVENT_MODEL> 1865=item C<PERL_ANYEVENT_MODEL>
2510 unless defined $SIG{PIPE}; 2511 unless defined $SIG{PIPE};
2511 2512
2512=head1 RECOMMENDED/OPTIONAL MODULES 2513=head1 RECOMMENDED/OPTIONAL MODULES
2513 2514
2514One of AnyEvent's main goals is to be 100% Pure-Perl(tm): only perl (and 2515One of AnyEvent's main goals is to be 100% Pure-Perl(tm): only perl (and
2515it's built-in modules) are required to use it. 2516its built-in modules) are required to use it.
2516 2517
2517That does not mean that AnyEvent won't take advantage of some additional 2518That does not mean that AnyEvent won't take advantage of some additional
2518modules if they are installed. 2519modules if they are installed.
2519 2520
2520This section explains which additional modules will be used, and how they 2521This section explains which additional modules will be used, and how they
2578the help of L<AnyEvent::TLS>), gains the ability to do TLS/SSL. 2579the help of L<AnyEvent::TLS>), gains the ability to do TLS/SSL.
2579 2580
2580=item L<Time::HiRes> 2581=item L<Time::HiRes>
2581 2582
2582This module is part of perl since release 5.008. It will be used when the 2583This module is part of perl since release 5.008. It will be used when the
2583chosen event library does not come with a timing source on it's own. The 2584chosen event library does not come with a timing source of its own. The
2584pure-perl event loop (L<AnyEvent::Impl::Perl>) will additionally use it to 2585pure-perl event loop (L<AnyEvent::Impl::Perl>) will additionally use it to
2585try to use a monotonic clock for timing stability. 2586try to use a monotonic clock for timing stability.
2586 2587
2587=back 2588=back
2588 2589

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines