-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
2146 lines (1663 loc) · 95.7 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
NAME
AnyEvent - the DBI of event loop programming
EV, Event, Glib, Tk, Perl, Event::Lib, Irssi, rxvt-unicode, IO::Async,
Qt, FLTK and POE are various supported event loops/environments.
SYNOPSIS
use AnyEvent;
# if you prefer function calls, look at the AE manpage for
# an alternative API.
# file handle or descriptor readable
my $w = AnyEvent->io (fh => $fh, poll => "r", cb => sub { ... });
# one-shot or repeating timers
my $w = AnyEvent->timer (after => $seconds, cb => sub { ... });
my $w = AnyEvent->timer (after => $seconds, interval => $seconds, cb => ...);
print AnyEvent->now; # prints current event loop time
print AnyEvent->time; # think Time::HiRes::time or simply CORE::time.
# POSIX signal
my $w = AnyEvent->signal (signal => "TERM", cb => sub { ... });
# child process exit
my $w = AnyEvent->child (pid => $pid, cb => sub {
my ($pid, $status) = @_;
...
});
# called when event loop idle (if applicable)
my $w = AnyEvent->idle (cb => sub { ... });
my $w = AnyEvent->condvar; # stores whether a condition was flagged
$w->send; # wake up current and all future recv's
$w->recv; # enters "main loop" till $condvar gets ->send
# use a condvar in callback mode:
$w->cb (sub { $_[0]->recv });
INTRODUCTION/TUTORIAL
This manpage is mainly a reference manual. If you are interested in a
tutorial or some gentle introduction, have a look at the AnyEvent::Intro
manpage.
SUPPORT
An FAQ document is available as AnyEvent::FAQ.
There also is a mailinglist for discussing all things AnyEvent, and an
IRC channel, too.
See the AnyEvent project page at the Schmorpforge Ta-Sa Software
Repository, at <http://anyevent.schmorp.de>, for more info.
WHY YOU SHOULD USE THIS MODULE (OR NOT)
Glib, POE, IO::Async, Event... CPAN offers event models by the dozen
nowadays. So what is different about AnyEvent?
Executive Summary: AnyEvent is *compatible*, AnyEvent is *free of
policy* and AnyEvent is *small and efficient*.
First and foremost, *AnyEvent is not an event model* itself, it only
interfaces to whatever event model the main program happens to use, in a
pragmatic way. For event models and certain classes of immortals alike,
the statement "there can only be one" is a bitter reality: In general,
only one event loop can be active at the same time in a process.
AnyEvent cannot change this, but it can hide the differences between
those event loops.
The goal of AnyEvent is to offer module authors the ability to do event
programming (waiting for I/O or timer events) without subscribing to a
religion, a way of living, and most importantly: without forcing your
module users into the same thing by forcing them to use the same event
model you use.
For modules like POE or IO::Async (which is a total misnomer as it is
actually doing all I/O *synchronously*...), using them in your module is
like joining a cult: After you join, you are dependent on them and you
cannot use anything else, as they are simply incompatible to everything
that isn't them. What's worse, all the potential users of your module
are *also* forced to use the same event loop you use.
AnyEvent is different: AnyEvent + POE works fine. AnyEvent + Glib works
fine. AnyEvent + Tk works fine etc. etc. but none of these work together
with the rest: POE + EV? No go. Tk + Event? No go. Again: if your module
uses one of those, every user of your module has to use it, too. But if
your module uses AnyEvent, it works transparently with all event models
it supports (including stuff like IO::Async, as long as those use one of
the supported event loops. It is easy to add new event loops to
AnyEvent, too, so it is future-proof).
In addition to being free of having to use *the one and only true event
model*, AnyEvent also is free of bloat and policy: with POE or similar
modules, you get an enormous amount of code and strict rules you have to
follow. AnyEvent, on the other hand, is lean and to the point, by only
offering the functionality that is necessary, in as thin as a wrapper as
technically possible.
Of course, AnyEvent comes with a big (and fully optional!) toolbox of
useful functionality, such as an asynchronous DNS resolver, 100%
non-blocking connects (even with TLS/SSL, IPv6 and on broken platforms
such as Windows) and lots of real-world knowledge and workarounds for
platform bugs and differences.
Now, if you *do want* lots of policy (this can arguably be somewhat
useful) and you want to force your users to use the one and only event
model, you should *not* use this module.
DESCRIPTION
AnyEvent provides a uniform interface to various event loops. This
allows module authors to use event loop functionality without forcing
module users to use a specific event loop implementation (since more
than one event loop cannot coexist peacefully).
The interface itself is vaguely similar, but not identical to the Event
module.
During the first call of any watcher-creation method, the module tries
to detect the currently loaded event loop by probing whether one of the
following modules is already loaded: EV, AnyEvent::Loop, Event, Glib,
Tk, Event::Lib, Qt, POE. The first one found is used. If none are
detected, the module tries to load the first four modules in the order
given; but note that if EV is not available, the pure-perl
AnyEvent::Loop should always work, so the other two are not normally
tried.
Because AnyEvent first checks for modules that are already loaded,
loading an event model explicitly before first using AnyEvent will
likely make that model the default. For example:
use Tk;
use AnyEvent;
# .. AnyEvent will likely default to Tk
The *likely* means that, if any module loads another event model and
starts using it, all bets are off - this case should be very rare
though, as very few modules hardcode event loops without announcing this
very loudly.
The pure-perl implementation of AnyEvent is called "AnyEvent::Loop".
Like other event modules you can load it explicitly and enjoy the high
availability of that event loop :)
WATCHERS
AnyEvent has the central concept of a *watcher*, which is an object that
stores relevant data for each kind of event you are waiting for, such as
the callback to call, the file handle to watch, etc.
These watchers are normal Perl objects with normal Perl lifetime. After
creating a watcher it will immediately "watch" for events and invoke the
callback when the event occurs (of course, only when the event model is
in control).
Note that callbacks must not permanently change global variables
potentially in use by the event loop (such as $_ or $[) and that
callbacks must not "die". The former is good programming practice in
Perl and the latter stems from the fact that exception handling differs
widely between event loops.
To disable a watcher you have to destroy it (e.g. by setting the
variable you store it in to "undef" or otherwise deleting all references
to it).
All watchers are created by calling a method on the "AnyEvent" class.
Many watchers either are used with "recursion" (repeating timers for
example), or need to refer to their watcher object in other ways.
One way to achieve that is this pattern:
my $w; $w = AnyEvent->type (arg => value ..., cb => sub {
# you can use $w here, for example to undef it
undef $w;
});
Note that "my $w; $w =" combination. This is necessary because in Perl,
my variables are only visible after the statement in which they are
declared.
I/O WATCHERS
$w = AnyEvent->io (
fh => <filehandle_or_fileno>,
poll => <"r" or "w">,
cb => <callback>,
);
You can create an I/O watcher by calling the "AnyEvent->io" method with
the following mandatory key-value pairs as arguments:
"fh" is the Perl *file handle* (or a naked file descriptor) to watch for
events (AnyEvent might or might not keep a reference to this file
handle). Note that only file handles pointing to things for which
non-blocking operation makes sense are allowed. This includes sockets,
most character devices, pipes, fifos and so on, but not for example
files or block devices.
"poll" must be a string that is either "r" or "w", which creates a
watcher waiting for "r"eadable or "w"ritable events, respectively.
"cb" is the callback to invoke each time the file handle becomes ready.
Although the callback might get passed parameters, their value and
presence is undefined and you cannot rely on them. Portable AnyEvent
callbacks cannot use arguments passed to I/O watcher callbacks.
The I/O watcher might use the underlying file descriptor or a copy of
it. You must not close a file handle as long as any watcher is active on
the underlying file descriptor.
Some event loops issue spurious readiness notifications, so you should
always use non-blocking calls when reading/writing from/to your file
handles.
Example: wait for readability of STDIN, then read a line and disable the
watcher.
my $w; $w = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub {
chomp (my $input = <STDIN>);
warn "read: $input\n";
undef $w;
});
TIME WATCHERS
$w = AnyEvent->timer (after => <seconds>, cb => <callback>);
$w = AnyEvent->timer (
after => <fractional_seconds>,
interval => <fractional_seconds>,
cb => <callback>,
);
You can create a time watcher by calling the "AnyEvent->timer" method
with the following mandatory arguments:
"after" specifies after how many seconds (fractional values are
supported) the callback should be invoked. "cb" is the callback to
invoke in that case.
Although the callback might get passed parameters, their value and
presence is undefined and you cannot rely on them. Portable AnyEvent
callbacks cannot use arguments passed to time watcher callbacks.
The callback will normally be invoked only once. If you specify another
parameter, "interval", as a strictly positive number (> 0), then the
callback will be invoked regularly at that interval (in fractional
seconds) after the first invocation. If "interval" is specified with a
false value, then it is treated as if it were not specified at all.
The callback will be rescheduled before invoking the callback, but no
attempt is made to avoid timer drift in most backends, so the interval
is only approximate.
Example: fire an event after 7.7 seconds.
my $w = AnyEvent->timer (after => 7.7, cb => sub {
warn "timeout\n";
});
# to cancel the timer:
undef $w;
Example 2: fire an event after 0.5 seconds, then roughly every second.
my $w = AnyEvent->timer (after => 0.5, interval => 1, cb => sub {
warn "timeout\n";
});
TIMING ISSUES
There are two ways to handle timers: based on real time (relative, "fire
in 10 seconds") and based on wallclock time (absolute, "fire at 12
o'clock").
While most event loops expect timers to specified in a relative way,
they use absolute time internally. This makes a difference when your
clock "jumps", for example, when ntp decides to set your clock backwards
from the wrong date of 2014-01-01 to 2008-01-01, a watcher that is
supposed to fire "after a second" might actually take six years to
finally fire.
AnyEvent cannot compensate for this. The only event loop that is
conscious of these issues is EV, which offers both relative (ev_timer,
based on true relative time) and absolute (ev_periodic, based on
wallclock time) timers.
AnyEvent always prefers relative timers, if available, matching the
AnyEvent API.
AnyEvent has two additional methods that return the "current time":
AnyEvent->time
This returns the "current wallclock time" as a fractional number of
seconds since the Epoch (the same thing as "time" or
"Time::HiRes::time" return, and the result is guaranteed to be
compatible with those).
It progresses independently of any event loop processing, i.e. each
call will check the system clock, which usually gets updated
frequently.
AnyEvent->now
This also returns the "current wallclock time", but unlike "time",
above, this value might change only once per event loop iteration,
depending on the event loop (most return the same time as "time",
above). This is the time that AnyEvent's timers get scheduled
against.
*In almost all cases (in all cases if you don't care), this is the
function to call when you want to know the current time.*
This function is also often faster then "AnyEvent->time", and thus
the preferred method if you want some timestamp (for example,
AnyEvent::Handle uses this to update its activity timeouts).
The rest of this section is only of relevance if you try to be very
exact with your timing; you can skip it without a bad conscience.
For a practical example of when these times differ, consider
Event::Lib and EV and the following set-up:
The event loop is running and has just invoked one of your callbacks
at time=500 (assume no other callbacks delay processing). In your
callback, you wait a second by executing "sleep 1" (blocking the
process for a second) and then (at time=501) you create a relative
timer that fires after three seconds.
With Event::Lib, "AnyEvent->time" and "AnyEvent->now" will both
return 501, because that is the current time, and the timer will be
scheduled to fire at time=504 (501 + 3).
With EV, "AnyEvent->time" returns 501 (as that is the current time),
but "AnyEvent->now" returns 500, as that is the time the last event
processing phase started. With EV, your timer gets scheduled to run
at time=503 (500 + 3).
In one sense, Event::Lib is more exact, as it uses the current time
regardless of any delays introduced by event processing. However,
most callbacks do not expect large delays in processing, so this
causes a higher drift (and a lot more system calls to get the
current time).
In another sense, EV is more exact, as your timer will be scheduled
at the same time, regardless of how long event processing actually
took.
In either case, if you care (and in most cases, you don't), then you
can get whatever behaviour you want with any event loop, by taking
the difference between "AnyEvent->time" and "AnyEvent->now" into
account.
AnyEvent->now_update
Some event loops (such as EV or AnyEvent::Loop) cache the current
time for each loop iteration (see the discussion of AnyEvent->now,
above).
When a callback runs for a long time (or when the process sleeps),
then this "current" time will differ substantially from the real
time, which might affect timers and time-outs.
When this is the case, you can call this method, which will update
the event loop's idea of "current time".
A typical example would be a script in a web server (e.g.
"mod_perl") - when mod_perl executes the script, then the event loop
will have the wrong idea about the "current time" (being potentially
far in the past, when the script ran the last time). In that case
you should arrange a call to "AnyEvent->now_update" each time the
web server process wakes up again (e.g. at the start of your script,
or in a handler).
Note that updating the time *might* cause some events to be handled.
SIGNAL WATCHERS
$w = AnyEvent->signal (signal => <uppercase_signal_name>, cb => <callback>);
You can watch for signals using a signal watcher, "signal" is the signal
*name* in uppercase and without any "SIG" prefix, "cb" is the Perl
callback to be invoked whenever a signal occurs.
Although the callback might get passed parameters, their value and
presence is undefined and you cannot rely on them. Portable AnyEvent
callbacks cannot use arguments passed to signal watcher callbacks.
Multiple signal occurrences can be clumped together into one callback
invocation, and callback invocation will be synchronous. Synchronous
means that it might take a while until the signal gets handled by the
process, but it is guaranteed not to interrupt any other callbacks.
The main advantage of using these watchers is that you can share a
signal between multiple watchers, and AnyEvent will ensure that signals
will not interrupt your program at bad times.
This watcher might use %SIG (depending on the event loop used), so
programs overwriting those signals directly will likely not work
correctly.
Example: exit on SIGINT
my $w = AnyEvent->signal (signal => "INT", cb => sub { exit 1 });
Restart Behaviour
While restart behaviour is up to the event loop implementation, most
will not restart syscalls (that includes Async::Interrupt and AnyEvent's
pure perl implementation).
Safe/Unsafe Signals
Perl signals can be either "safe" (synchronous to opcode handling) or
"unsafe" (asynchronous) - the former might delay signal delivery
indefinitely, the latter might corrupt your memory.
AnyEvent signal handlers are, in addition, synchronous to the event
loop, i.e. they will not interrupt your running perl program but will
only be called as part of the normal event handling (just like timer,
I/O etc. callbacks, too).
Signal Races, Delays and Workarounds
Many event loops (e.g. Glib, Tk, Qt, IO::Async) do not support attaching
callbacks to signals in a generic way, which is a pity, as you cannot do
race-free signal handling in perl, requiring C libraries for this.
AnyEvent will try to do its best, which means in some cases, signals
will be delayed. The maximum time a signal might be delayed is 10
seconds by default, but can be overriden via
$ENV{PERL_ANYEVENT_MAX_SIGNAL_LATENCY} or $AnyEvent::MAX_SIGNAL_LATENCY
- see the "ENVIRONMENT VARIABLES" section for details.
All these problems can be avoided by installing the optional
Async::Interrupt module, which works with most event loops. It will not
work with inherently broken event loops such as Event or Event::Lib (and
not with POE currently). For those, you just have to suffer the delays.
CHILD PROCESS WATCHERS
$w = AnyEvent->child (pid => <process id>, cb => <callback>);
You can also watch for a child process exit and catch its exit status.
The child process is specified by the "pid" argument (on some backends,
using 0 watches for any child process exit, on others this will croak).
The watcher will be triggered only when the child process has finished
and an exit status is available, not on any trace events
(stopped/continued).
The callback will be called with the pid and exit status (as returned by
waitpid), so unlike other watcher types, you *can* rely on child watcher
callback arguments.
This watcher type works by installing a signal handler for "SIGCHLD",
and since it cannot be shared, nothing else should use SIGCHLD or reap
random child processes (waiting for specific child processes, e.g.
inside "system", is just fine).
There is a slight catch to child watchers, however: you usually start
them *after* the child process was created, and this means the process
could have exited already (and no SIGCHLD will be sent anymore).
Not all event models handle this correctly (neither POE nor IO::Async
do, see their AnyEvent::Impl manpages for details), but even for event
models that *do* handle this correctly, they usually need to be loaded
before the process exits (i.e. before you fork in the first place).
AnyEvent's pure perl event loop handles all cases correctly regardless
of when you start the watcher.
This means you cannot create a child watcher as the very first thing in
an AnyEvent program, you *have* to create at least one watcher before
you "fork" the child (alternatively, you can call "AnyEvent::detect").
As most event loops do not support waiting for child events, they will
be emulated by AnyEvent in most cases, in which case the latency and
race problems mentioned in the description of signal watchers apply.
Example: fork a process and wait for it
my $done = AnyEvent->condvar;
# this forks and immediately calls exit in the child. this
# normally has all sorts of bad consequences for your parent,
# so take this as an example only. always fork and exec,
# or call POSIX::_exit, in real code.
my $pid = fork or exit 5;
my $w = AnyEvent->child (
pid => $pid,
cb => sub {
my ($pid, $status) = @_;
warn "pid $pid exited with status $status";
$done->send;
},
);
# do something else, then wait for process exit
$done->recv;
IDLE WATCHERS
$w = AnyEvent->idle (cb => <callback>);
This will repeatedly invoke the callback after the process becomes idle,
until either the watcher is destroyed or new events have been detected.
Idle watchers are useful when there is a need to do something, but it is
not so important (or wise) to do it instantly. The callback will be
invoked only when there is "nothing better to do", which is usually
defined as "all outstanding events have been handled and no new events
have been detected". That means that idle watchers ideally get invoked
when the event loop has just polled for new events but none have been
detected. Instead of blocking to wait for more events, the idle watchers
will be invoked.
Unfortunately, most event loops do not really support idle watchers
(only EV, Event and Glib do it in a usable fashion) - for the rest,
AnyEvent will simply call the callback "from time to time".
Example: read lines from STDIN, but only process them when the program
is otherwise idle:
my @lines; # read data
my $idle_w;
my $io_w = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub {
push @lines, scalar <STDIN>;
# start an idle watcher, if not already done
$idle_w ||= AnyEvent->idle (cb => sub {
# handle only one line, when there are lines left
if (my $line = shift @lines) {
print "handled when idle: $line";
} else {
# otherwise disable the idle watcher again
undef $idle_w;
}
});
});
CONDITION VARIABLES
$cv = AnyEvent->condvar;
$cv->send (<list>);
my @res = $cv->recv;
If you are familiar with some event loops you will know that all of them
require you to run some blocking "loop", "run" or similar function that
will actively watch for new events and call your callbacks.
AnyEvent is slightly different: it expects somebody else to run the
event loop and will only block when necessary (usually when told by the
user).
The tool to do that is called a "condition variable", so called because
they represent a condition that must become true.
Now is probably a good time to look at the examples further below.
Condition variables can be created by calling the "AnyEvent->condvar"
method, usually without arguments. The only argument pair allowed is
"cb", which specifies a callback to be called when the condition
variable becomes true, with the condition variable as the first argument
(but not the results).
After creation, the condition variable is "false" until it becomes
"true" by calling the "send" method (or calling the condition variable
as if it were a callback, read about the caveats in the description for
the "->send" method).
Since condition variables are the most complex part of the AnyEvent API,
here are some different mental models of what they are - pick the ones
you can connect to:
* Condition variables are like callbacks - you can call them (and pass
them instead of callbacks). Unlike callbacks however, you can also
wait for them to be called.
* Condition variables are signals - one side can emit or send them,
the other side can wait for them, or install a handler that is
called when the signal fires.
* Condition variables are like "Merge Points" - points in your program
where you merge multiple independent results/control flows into one.
* Condition variables represent a transaction - functions that start
some kind of transaction can return them, leaving the caller the
choice between waiting in a blocking fashion, or setting a callback.
* Condition variables represent future values, or promises to deliver
some result, long before the result is available.
Condition variables are very useful to signal that something has
finished, for example, if you write a module that does asynchronous http
requests, then a condition variable would be the ideal candidate to
signal the availability of results. The user can either act when the
callback is called or can synchronously "->recv" for the results.
You can also use them to simulate traditional event loops - for example,
you can block your main program until an event occurs - for example, you
could "->recv" in your main program until the user clicks the Quit
button of your app, which would "->send" the "quit" event.
Note that condition variables recurse into the event loop - if you have
two pieces of code that call "->recv" in a round-robin fashion, you
lose. Therefore, condition variables are good to export to your caller,
but you should avoid making a blocking wait yourself, at least in
callbacks, as this asks for trouble.
Condition variables are represented by hash refs in perl, and the keys
used by AnyEvent itself are all named "_ae_XXX" to make subclassing easy
(it is often useful to build your own transaction class on top of
AnyEvent). To subclass, use "AnyEvent::CondVar" as base class and call
its "new" method in your own "new" method.
There are two "sides" to a condition variable - the "producer side"
which eventually calls "-> send", and the "consumer side", which waits
for the send to occur.
Example: wait for a timer.
# condition: "wait till the timer is fired"
my $timer_fired = AnyEvent->condvar;
# create the timer - we could wait for, say
# a handle becomign ready, or even an
# AnyEvent::HTTP request to finish, but
# in this case, we simply use a timer:
my $w = AnyEvent->timer (
after => 1,
cb => sub { $timer_fired->send },
);
# this "blocks" (while handling events) till the callback
# calls ->send
$timer_fired->recv;
Example: wait for a timer, but take advantage of the fact that condition
variables are also callable directly.
my $done = AnyEvent->condvar;
my $delay = AnyEvent->timer (after => 5, cb => $done);
$done->recv;
Example: Imagine an API that returns a condvar and doesn't support
callbacks. This is how you make a synchronous call, for example from the
main program:
use AnyEvent::CouchDB;
...
my @info = $couchdb->info->recv;
And this is how you would just set a callback to be called whenever the
results are available:
$couchdb->info->cb (sub {
my @info = $_[0]->recv;
});
METHODS FOR PRODUCERS
These methods should only be used by the producing side, i.e. the
code/module that eventually sends the signal. Note that it is also the
producer side which creates the condvar in most cases, but it isn't
uncommon for the consumer to create it as well.
$cv->send (...)
Flag the condition as ready - a running "->recv" and all further
calls to "recv" will (eventually) return after this method has been
called. If nobody is waiting the send will be remembered.
If a callback has been set on the condition variable, it is called
immediately from within send.
Any arguments passed to the "send" call will be returned by all
future "->recv" calls.
Condition variables are overloaded so one can call them directly (as
if they were a code reference). Calling them directly is the same as
calling "send".
$cv->croak ($error)
Similar to send, but causes all calls to "->recv" to invoke
"Carp::croak" with the given error message/object/scalar.
This can be used to signal any errors to the condition variable
user/consumer. Doing it this way instead of calling "croak" directly
delays the error detection, but has the overwhelming advantage that
it diagnoses the error at the place where the result is expected,
and not deep in some event callback with no connection to the actual
code causing the problem.
$cv->begin ([group callback])
$cv->end
These two methods can be used to combine many transactions/events
into one. For example, a function that pings many hosts in parallel
might want to use a condition variable for the whole process.
Every call to "->begin" will increment a counter, and every call to
"->end" will decrement it. If the counter reaches 0 in "->end", the
(last) callback passed to "begin" will be executed, passing the
condvar as first argument. That callback is *supposed* to call
"->send", but that is not required. If no group callback was set,
"send" will be called without any arguments.
You can think of "$cv->send" giving you an OR condition (one call
sends), while "$cv->begin" and "$cv->end" giving you an AND
condition (all "begin" calls must be "end"'ed before the condvar
sends).
Let's start with a simple example: you have two I/O watchers (for
example, STDOUT and STDERR for a program), and you want to wait for
both streams to close before activating a condvar:
my $cv = AnyEvent->condvar;
$cv->begin; # first watcher
my $w1 = AnyEvent->io (fh => $fh1, cb => sub {
defined sysread $fh1, my $buf, 4096
or $cv->end;
});
$cv->begin; # second watcher
my $w2 = AnyEvent->io (fh => $fh2, cb => sub {
defined sysread $fh2, my $buf, 4096
or $cv->end;
});
$cv->recv;
This works because for every event source (EOF on file handle),
there is one call to "begin", so the condvar waits for all calls to
"end" before sending.
The ping example mentioned above is slightly more complicated, as
the there are results to be passed back, and the number of tasks
that are begun can potentially be zero:
my $cv = AnyEvent->condvar;
my %result;
$cv->begin (sub { shift->send (\%result) });
for my $host (@list_of_hosts) {
$cv->begin;
ping_host_then_call_callback $host, sub {
$result{$host} = ...;
$cv->end;
};
}
$cv->end;
...
my $results = $cv->recv;
This code fragment supposedly pings a number of hosts and calls
"send" after results for all then have have been gathered - in any
order. To achieve this, the code issues a call to "begin" when it
starts each ping request and calls "end" when it has received some
result for it. Since "begin" and "end" only maintain a counter, the
order in which results arrive is not relevant.
There is an additional bracketing call to "begin" and "end" outside
the loop, which serves two important purposes: first, it sets the
callback to be called once the counter reaches 0, and second, it
ensures that "send" is called even when "no" hosts are being pinged
(the loop doesn't execute once).
This is the general pattern when you "fan out" into multiple (but
potentially zero) subrequests: use an outer "begin"/"end" pair to
set the callback and ensure "end" is called at least once, and then,
for each subrequest you start, call "begin" and for each subrequest
you finish, call "end".
METHODS FOR CONSUMERS
These methods should only be used by the consuming side, i.e. the code
awaits the condition.
$cv->recv
Wait (blocking if necessary) until the "->send" or "->croak" methods
have been called on $cv, while servicing other watchers normally.
You can only wait once on a condition - additional calls are valid
but will return immediately.
If an error condition has been set by calling "->croak", then this
function will call "croak".
In list context, all parameters passed to "send" will be returned,
in scalar context only the first one will be returned.
Note that doing a blocking wait in a callback is not supported by
any event loop, that is, recursive invocation of a blocking "->recv"
is not allowed and the "recv" call will "croak" if such a condition
is detected. This requirement can be dropped by relying on
Coro::AnyEvent , which allows you to do a blocking "->recv" from any
thread that doesn't run the event loop itself. Coro::AnyEvent is
loaded automatically when Coro is used with AnyEvent, so code does
not need to do anything special to take advantage of that: any code
that would normally block your program because it calls "recv", be
executed in an "async" thread instead without blocking other
threads.
Not all event models support a blocking wait - some die in that case
(programs might want to do that to stay interactive), so *if you are
using this from a module, never require a blocking wait*. Instead,
let the caller decide whether the call will block or not (for
example, by coupling condition variables with some kind of request
results and supporting callbacks so the caller knows that getting
the result will not block, while still supporting blocking waits if
the caller so desires).
You can ensure that "->recv" never blocks by setting a callback and
only calling "->recv" from within that callback (or at a later
time). This will work even when the event loop does not support
blocking waits otherwise.
$bool = $cv->ready
Returns true when the condition is "true", i.e. whether "send" or
"croak" have been called.
$cb = $cv->cb ($cb->($cv))
This is a mutator function that returns the callback set and
optionally replaces it before doing so.
The callback will be called when the condition becomes "true", i.e.
when "send" or "croak" are called, with the only argument being the
condition variable itself. If the condition is already true, the
callback is called immediately when it is set. Calling "recv" inside
the callback or at any later time is guaranteed not to block.
SUPPORTED EVENT LOOPS/BACKENDS
The available backend classes are (every class has its own manpage):
Backends that are autoprobed when no other event loop can be found.
EV is the preferred backend when no other event loop seems to be in
use. If EV is not installed, then AnyEvent will fall back to its own
pure-perl implementation, which is available everywhere as it comes
with AnyEvent itself.
AnyEvent::Impl::EV based on EV (interface to libev, best choice).
AnyEvent::Impl::Perl pure-perl AnyEvent::Loop, fast and portable.
Backends that are transparently being picked up when they are used.
These will be used if they are already loaded when the first watcher
is created, in which case it is assumed that the application is
using them. This means that AnyEvent will automatically pick the
right backend when the main program loads an event module before
anything starts to create watchers. Nothing special needs to be done
by the main program.
AnyEvent::Impl::Event based on Event, very stable, few glitches.
AnyEvent::Impl::Glib based on Glib, slow but very stable.
AnyEvent::Impl::Tk based on Tk, very broken.
AnyEvent::Impl::EventLib based on Event::Lib, leaks memory and worse.
AnyEvent::Impl::POE based on POE, very slow, some limitations.
AnyEvent::Impl::Irssi used when running within irssi.
AnyEvent::Impl::IOAsync based on IO::Async.
AnyEvent::Impl::Cocoa based on Cocoa::EventLoop.
AnyEvent::Impl::FLTK based on FLTK (fltk 2 binding).
Backends with special needs.
Qt requires the Qt::Application to be instantiated first, but will
otherwise be picked up automatically. As long as the main program
instantiates the application before any AnyEvent watchers are
created, everything should just work.
AnyEvent::Impl::Qt based on Qt.
Event loops that are indirectly supported via other backends.
Some event loops can be supported via other modules:
There is no direct support for WxWidgets (Wx) or Prima.
WxWidgets has no support for watching file handles. However, you can
use WxWidgets through the POE adaptor, as POE has a Wx backend that
simply polls 20 times per second, which was considered to be too
horrible to even consider for AnyEvent.
Prima is not supported as nobody seems to be using it, but it has a
POE backend, so it can be supported through POE.
AnyEvent knows about both Prima and Wx, however, and will try to
load POE when detecting them, in the hope that POE will pick them
up, in which case everything will be automatic.
GLOBAL VARIABLES AND FUNCTIONS
These are not normally required to use AnyEvent, but can be useful to
write AnyEvent extension modules.
$AnyEvent::MODEL
Contains "undef" until the first watcher is being created, before
the backend has been autodetected.
Afterwards it contains the event model that is being used, which is
the name of the Perl class implementing the model. This class is
usually one of the "AnyEvent::Impl::xxx" modules, but can be any
other class in the case AnyEvent has been extended at runtime (e.g.
in *rxvt-unicode* it will be "urxvt::anyevent").
AnyEvent::detect
Returns $AnyEvent::MODEL, forcing autodetection of the event model
if necessary. You should only call this function right before you
would have created an AnyEvent watcher anyway, that is, as late as
possible at runtime, and not e.g. during initialisation of your
module.
The effect of calling this function is as if a watcher had been
created (specifically, actions that happen "when the first watcher
is created" happen when calling detetc as well).
If you need to do some initialisation before AnyEvent watchers are
created, use "post_detect".
$guard = AnyEvent::post_detect { BLOCK }
Arranges for the code block to be executed as soon as the event
model is autodetected (or immediately if that has already happened).
The block will be executed *after* the actual backend has been
detected ($AnyEvent::MODEL is set), but *before* any watchers have
been created, so it is possible to e.g. patch @AnyEvent::ISA or do
other initialisations - see the sources of AnyEvent::Strict or
AnyEvent::AIO to see how this is used.
The most common usage is to create some global watchers, without
forcing event module detection too early, for example, AnyEvent::AIO
creates and installs the global IO::AIO watcher in a "post_detect"
block to avoid autodetecting the event module at load time.
If called in scalar or list context, then it creates and returns an
object that automatically removes the callback again when it is
destroyed (or "undef" when the hook was immediately executed). See
AnyEvent::AIO for a case where this is useful.
Example: Create a watcher for the IO::AIO module and store it in
$WATCHER, but do so only do so after the event loop is initialised.
our WATCHER;
my $guard = AnyEvent::post_detect {
$WATCHER = AnyEvent->io (fh => IO::AIO::poll_fileno, poll => 'r', cb => \&IO::AIO::poll_cb);
};
# the ||= is important in case post_detect immediately runs the block,
# as to not clobber the newly-created watcher. assigning both watcher and
# post_detect guard to the same variable has the advantage of users being
# able to just C<undef $WATCHER> if the watcher causes them grief.
$WATCHER ||= $guard;
@AnyEvent::post_detect
If there are any code references in this array (you can "push" to it
before or after loading AnyEvent), then they will be called directly
after the event loop has been chosen.
You should check $AnyEvent::MODEL before adding to this array,
though: if it is defined then the event loop has already been
detected, and the array will be ignored.
Best use "AnyEvent::post_detect { BLOCK }" when your application
allows it, as it takes care of these details.
This variable is mainly useful for modules that can do something
useful when AnyEvent is used and thus want to know when it is
initialised, but do not need to even load it by default. This array
provides the means to hook into AnyEvent passively, without loading
it.
Example: To load Coro::AnyEvent whenever Coro and AnyEvent are used
together, you could put this into Coro (this is the actual code used
by Coro to accomplish this):
if (defined $AnyEvent::MODEL) {
# AnyEvent already initialised, so load Coro::AnyEvent
require Coro::AnyEvent;
} else {
# AnyEvent not yet initialised, so make sure to load Coro::AnyEvent
# as soon as it is
push @AnyEvent::post_detect, sub { require Coro::AnyEvent };
}
AnyEvent::postpone { BLOCK }
Arranges for the block to be executed as soon as possible, but not
before the call itself returns. In practise, the block will be
executed just before the event loop polls for new events, or shortly
afterwards.
This function never returns anything (to make the "return postpone {
... }" idiom more useful.
To understand the usefulness of this function, consider a function
that asynchronously does something for you and returns some
transaction object or guard to let you cancel the operation. For
example, "AnyEvent::Socket::tcp_connect":
# start a conenction attempt unless one is active
$self->{connect_guard} ||= AnyEvent::Socket::tcp_connect "www.example.net", 80, sub {
delete $self->{connect_guard};
...
};
Imagine that this function could instantly call the callback, for
example, because it detects an obvious error such as a negative port
number. Invoking the callback before the function returns causes
problems however: the callback will be called and will try to delete
the guard object. But since the function hasn't returned yet, there
is nothing to delete. When the function eventually returns it will