ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/README
Revision: 1.11
Committed: Tue Nov 6 16:42:05 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
Changes since 1.10: +7 -4 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.2 NAME
2     AnyEvent - provide framework for multiple event loops
3    
4 root 1.6 Event, Coro, Glib, Tk, Perl - various supported event loops
5 root 1.2
6     SYNOPSIS
7 root 1.4 use AnyEvent;
8 root 1.2
9 root 1.6 my $w = AnyEvent->io (fh => $fh, poll => "r|w", cb => sub {
10 root 1.2 ...
11     });
12 root 1.3
13     my $w = AnyEvent->timer (after => $seconds, cb => sub {
14 root 1.2 ...
15     });
16    
17 root 1.6 my $w = AnyEvent->condvar; # stores wether a condition was flagged
18     $w->wait; # enters "main loop" till $condvar gets ->broadcast
19 root 1.3 $w->broadcast; # wake up current and all future wait's
20    
21 root 1.2 DESCRIPTION
22     AnyEvent provides an identical interface to multiple event loops. This
23 root 1.6 allows module authors to utilise an event loop without forcing module
24 root 1.2 users to use the same event loop (as only a single event loop can
25     coexist peacefully at any one time).
26    
27     The interface itself is vaguely similar but not identical to the Event
28     module.
29    
30     On the first call of any method, the module tries to detect the
31     currently loaded event loop by probing wether any of the following
32     modules is loaded: Coro::Event, Event, Glib, Tk. The first one found is
33     used. If none is found, the module tries to load these modules in the
34     order given. The first one that could be successfully loaded will be
35 root 1.6 used. If still none could be found, AnyEvent will fall back to a
36     pure-perl event loop, which is also not very efficient.
37    
38     Because AnyEvent first checks for modules that are already loaded,
39     loading an Event model explicitly before first using AnyEvent will
40     likely make that model the default. For example:
41    
42     use Tk;
43     use AnyEvent;
44    
45     # .. AnyEvent will likely default to Tk
46    
47     The pure-perl implementation of AnyEvent is called
48     "AnyEvent::Impl::Perl". Like other event modules you can load it
49     explicitly.
50    
51     WATCHERS
52     AnyEvent has the central concept of a *watcher*, which is an object that
53     stores relevant data for each kind of event you are waiting for, such as
54     the callback to call, the filehandle to watch, etc.
55    
56     These watchers are normal Perl objects with normal Perl lifetime. After
57     creating a watcher it will immediately "watch" for events and invoke the
58     callback. To disable the watcher you have to destroy it (e.g. by setting
59     the variable that stores it to "undef" or otherwise deleting all
60     references to it).
61    
62     All watchers are created by calling a method on the "AnyEvent" class.
63    
64     IO WATCHERS
65     You can create I/O watcher by calling the "AnyEvent->io" method with the
66     following mandatory arguments:
67    
68     "fh" the Perl *filehandle* (not filedescriptor) to watch for events.
69     "poll" must be a string that is either "r" or "w", that creates a
70     watcher waiting for "r"eadable or "w"ritable events. "cb" teh callback
71     to invoke everytime the filehandle becomes ready.
72    
73     Only one io watcher per "fh" and "poll" combination is allowed (i.e. on
74     a socket you can have one r + one w, not any more (limitation comes from
75     Tk - if you are sure you are not using Tk this limitation is gone).
76    
77     Filehandles will be kept alive, so as long as the watcher exists, the
78     filehandle exists, too.
79    
80     Example:
81    
82     # wait for readability of STDIN, then read a line and disable the watcher
83     my $w; $w = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub {
84     chomp (my $input = <STDIN>);
85     warn "read: $input\n";
86     undef $w;
87     });
88    
89 root 1.8 TIME WATCHERS
90     You can create a time watcher by calling the "AnyEvent->timer" method
91 root 1.6 with the following mandatory arguments:
92    
93     "after" after how many seconds (fractions are supported) should the
94     timer activate. "cb" the callback to invoke.
95    
96     The timer callback will be invoked at most once: if you want a repeating
97     timer you have to create a new watcher (this is a limitation by both Tk
98     and Glib).
99    
100     Example:
101    
102     # fire an event after 7.7 seconds
103     my $w = AnyEvent->timer (after => 7.7, cb => sub {
104     warn "timeout\n";
105     });
106    
107     # to cancel the timer:
108     undef $w
109    
110     CONDITION WATCHERS
111     Condition watchers can be created by calling the "AnyEvent->condvar"
112     method without any arguments.
113    
114     A condition watcher watches for a condition - precisely that the
115     "->broadcast" method has been called.
116    
117     The watcher has only two methods:
118    
119     $cv->wait
120     Wait (blocking if necessary) until the "->broadcast" method has been
121     called on c<$cv>, while servicing other watchers normally.
122    
123     Not all event models support a blocking wait - some die in that
124     case, so if you are using this from a module, never require a
125     blocking wait, but let the caller decide wether the call will block
126     or not (for example, by coupling condition variables with some kind
127     of request results and supporting callbacks so the caller knows that
128     getting the result will not block, while still suppporting blockign
129     waits if the caller so desires).
130    
131     You can only wait once on a condition - additional calls will return
132     immediately.
133    
134     $cv->broadcast
135     Flag the condition as ready - a running "->wait" and all further
136     calls to "wait" will return after this method has been called. If
137     nobody is waiting the broadcast will be remembered..
138    
139     Example:
140    
141     # wait till the result is ready
142     my $result_ready = AnyEvent->condvar;
143    
144     # do something such as adding a timer
145     # or socket watcher the calls $result_ready->broadcast
146     # when the "result" is ready.
147    
148     $result_ready->wait;
149    
150 root 1.8 SIGNAL WATCHERS
151     You can listen for signals using a signal watcher, "signal" is the
152     signal *name* without any "SIG" prefix. Multiple signals events can be
153 root 1.9 clumped together into one callback invocation, and callback invocation
154 root 1.8 might or might not be asynchronous.
155    
156     These watchers might use %SIG, so programs overwriting those signals
157     directly will likely not work correctly.
158    
159     Example: exit on SIGINT
160    
161     my $w = AnyEvent->signal (signal => "INT", cb => sub { exit 1 });
162    
163     CHILD PROCESS WATCHERS
164     You can also listen for the status of a child process specified by the
165 root 1.11 "pid" argument (or any child if the pid argument is 0). The watcher will
166     trigger as often as status change for the child are received. This works
167     by installing a signal handler for "SIGCHLD". The callback will be
168     called with the pid and exit status (as returned by waitpid).
169 root 1.8
170     Example: wait for pid 1333
171    
172     my $w = AnyEvent->child (pid => 1333, cb => sub { warn "exit status $?" });
173    
174 root 1.7 GLOBALS
175     $AnyEvent::MODEL
176     Contains "undef" until the first watcher is being created. Then it
177     contains the event model that is being used, which is the name of
178     the Perl class implementing the model. This class is usually one of
179     the "AnyEvent::Impl:xxx" modules, but can be any other class in the
180     case AnyEvent has been extended at runtime (e.g. in *rxvt-unicode*).
181    
182     The known classes so far are:
183    
184 root 1.11 EV::AnyEvent based on EV (an interface to libev, best choice)
185     AnyEvent::Impl::Coro based on Coro::Event, second best choice.
186     AnyEvent::Impl::Event based on Event, also second best choice :)
187 root 1.7 AnyEvent::Impl::Glib based on Glib, second-best choice.
188     AnyEvent::Impl::Tk based on Tk, very bad choice.
189     AnyEvent::Impl::Perl pure-perl implementation, inefficient.
190    
191 root 1.8 AnyEvent::detect
192     Returns $AnyEvent::MODEL, forcing autodetection of the event model
193     if necessary. You should only call this function right before you
194     would have created an AnyEvent watcher anyway, that is, very late at
195     runtime.
196    
197 root 1.6 WHAT TO DO IN A MODULE
198     As a module author, you should "use AnyEvent" and call AnyEvent methods
199     freely, but you should not load a specific event module or rely on it.
200    
201     Be careful when you create watchers in the module body - Anyevent will
202     decide which event module to use as soon as the first method is called,
203     so by calling AnyEvent in your module body you force the user of your
204     module to load the event module first.
205    
206     WHAT TO DO IN THE MAIN PROGRAM
207     There will always be a single main program - the only place that should
208     dictate which event model to use.
209    
210     If it doesn't care, it can just "use AnyEvent" and use it itself, or not
211     do anything special and let AnyEvent decide which implementation to
212     chose.
213    
214     If the main program relies on a specific event model (for example, in
215     Gtk2 programs you have to rely on either Glib or Glib::Event), you
216     should load it before loading AnyEvent or any module that uses it,
217     generally, as early as possible. The reason is that modules might create
218     watchers when they are loaded, and AnyEvent will decide on the event
219     model to use as soon as it creates watchers, and it might chose the
220     wrong one unless you load the correct one yourself.
221    
222     You can chose to use a rather inefficient pure-perl implementation by
223     loading the "AnyEvent::Impl::Perl" module, but letting AnyEvent chose is
224     generally better.
225 root 1.2
226 root 1.5 SUPPLYING YOUR OWN EVENT MODEL INTERFACE
227     If you need to support another event library which isn't directly
228     supported by AnyEvent, you can supply your own interface to it by
229 root 1.6 pushing, before the first watcher gets created, the package name of the
230 root 1.5 event module and the package name of the interface to use onto
231     @AnyEvent::REGISTRY. You can do that before and even without loading
232     AnyEvent.
233    
234     Example:
235    
236     push @AnyEvent::REGISTRY, [urxvt => urxvt::anyevent::];
237    
238 root 1.6 This tells AnyEvent to (literally) use the "urxvt::anyevent::"
239     package/class when it finds the "urxvt" package/module is loaded. When
240     AnyEvent is loaded and asked to find a suitable event model, it will
241     first check for the presence of urxvt.
242    
243 root 1.8 The class should provide implementations for all watcher types (see
244 root 1.6 AnyEvent::Impl::Event (source code), AnyEvent::Impl::Glib (Source code)
245     and so on for actual examples, use "perldoc -m AnyEvent::Impl::Glib" to
246     see the sources).
247 root 1.5
248     The above isn't fictitious, the *rxvt-unicode* (a.k.a. urxvt) uses the
249 root 1.6 above line as-is. An interface isn't included in AnyEvent because it
250 root 1.5 doesn't make sense outside the embedded interpreter inside
251     *rxvt-unicode*, and it is updated and maintained as part of the
252     *rxvt-unicode* distribution.
253    
254 root 1.6 *rxvt-unicode* also cheats a bit by not providing blocking access to
255     condition variables: code blocking while waiting for a condition will
256     "die". This still works with most modules/usages, and blocking calls
257 root 1.10 must not be in an interactive application, so it makes sense.
258 root 1.6
259 root 1.4 ENVIRONMENT VARIABLES
260     The following environment variables are used by this module:
261    
262     "PERL_ANYEVENT_VERBOSE" when set to 2 or higher, reports which event
263     model gets used.
264    
265 root 1.2 EXAMPLE
266     The following program uses an io watcher to read data from stdin, a
267     timer to display a message once per second, and a condvar to exit the
268     program when the user enters quit:
269    
270     use AnyEvent;
271    
272     my $cv = AnyEvent->condvar;
273    
274     my $io_watcher = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub {
275     warn "io event <$_[0]>\n"; # will always output <r>
276     chomp (my $input = <STDIN>); # read a line
277     warn "read: $input\n"; # output what has been read
278     $cv->broadcast if $input =~ /^q/i; # quit program if /^q/i
279     });
280    
281     my $time_watcher; # can only be used once
282    
283     sub new_timer {
284     $timer = AnyEvent->timer (after => 1, cb => sub {
285     warn "timeout\n"; # print 'timeout' about every second
286     &new_timer; # and restart the time
287     });
288     }
289    
290     new_timer; # create first timer
291    
292     $cv->wait; # wait until user enters /^q/i
293    
294 root 1.3 REAL-WORLD EXAMPLE
295     Consider the Net::FCP module. It features (among others) the following
296     API calls, which are to freenet what HTTP GET requests are to http:
297    
298     my $data = $fcp->client_get ($url); # blocks
299    
300     my $transaction = $fcp->txn_client_get ($url); # does not block
301     $transaction->cb ( sub { ... } ); # set optional result callback
302     my $data = $transaction->result; # possibly blocks
303    
304     The "client_get" method works like "LWP::Simple::get": it requests the
305     given URL and waits till the data has arrived. It is defined to be:
306    
307     sub client_get { $_[0]->txn_client_get ($_[1])->result }
308    
309     And in fact is automatically generated. This is the blocking API of
310     Net::FCP, and it works as simple as in any other, similar, module.
311    
312     More complicated is "txn_client_get": It only creates a transaction
313     (completion, result, ...) object and initiates the transaction.
314    
315     my $txn = bless { }, Net::FCP::Txn::;
316    
317     It also creates a condition variable that is used to signal the
318     completion of the request:
319    
320     $txn->{finished} = AnyAvent->condvar;
321    
322     It then creates a socket in non-blocking mode.
323    
324     socket $txn->{fh}, ...;
325     fcntl $txn->{fh}, F_SETFL, O_NONBLOCK;
326     connect $txn->{fh}, ...
327     and !$!{EWOULDBLOCK}
328     and !$!{EINPROGRESS}
329     and Carp::croak "unable to connect: $!\n";
330    
331 root 1.4 Then it creates a write-watcher which gets called whenever an error
332 root 1.3 occurs or the connection succeeds:
333    
334     $txn->{w} = AnyEvent->io (fh => $txn->{fh}, poll => 'w', cb => sub { $txn->fh_ready_w });
335    
336     And returns this transaction object. The "fh_ready_w" callback gets
337     called as soon as the event loop detects that the socket is ready for
338     writing.
339    
340     The "fh_ready_w" method makes the socket blocking again, writes the
341     request data and replaces the watcher by a read watcher (waiting for
342     reply data). The actual code is more complicated, but that doesn't
343     matter for this example:
344    
345     fcntl $txn->{fh}, F_SETFL, 0;
346     syswrite $txn->{fh}, $txn->{request}
347     or die "connection or write error";
348     $txn->{w} = AnyEvent->io (fh => $txn->{fh}, poll => 'r', cb => sub { $txn->fh_ready_r });
349    
350     Again, "fh_ready_r" waits till all data has arrived, and then stores the
351     result and signals any possible waiters that the request ahs finished:
352    
353     sysread $txn->{fh}, $txn->{buf}, length $txn->{$buf};
354    
355     if (end-of-file or data complete) {
356     $txn->{result} = $txn->{buf};
357     $txn->{finished}->broadcast;
358 root 1.4 $txb->{cb}->($txn) of $txn->{cb}; # also call callback
359 root 1.3 }
360    
361     The "result" method, finally, just waits for the finished signal (if the
362     request was already finished, it doesn't wait, of course, and returns
363     the data:
364    
365     $txn->{finished}->wait;
366 root 1.4 return $txn->{result};
367 root 1.3
368     The actual code goes further and collects all errors ("die"s,
369     exceptions) that occured during request processing. The "result" method
370     detects wether an exception as thrown (it is stored inside the $txn
371     object) and just throws the exception, which means connection errors and
372     other problems get reported tot he code that tries to use the result,
373     not in a random callback.
374    
375     All of this enables the following usage styles:
376    
377     1. Blocking:
378    
379     my $data = $fcp->client_get ($url);
380    
381     2. Blocking, but parallelizing:
382    
383     my @datas = map $_->result,
384     map $fcp->txn_client_get ($_),
385     @urls;
386    
387     Both blocking examples work without the module user having to know
388     anything about events.
389    
390     3a. Event-based in a main program, using any support Event module:
391    
392     use Event;
393    
394     $fcp->txn_client_get ($url)->cb (sub {
395     my $txn = shift;
396     my $data = $txn->result;
397     ...
398     });
399    
400     Event::loop;
401    
402     3b. The module user could use AnyEvent, too:
403    
404     use AnyEvent;
405    
406     my $quit = AnyEvent->condvar;
407    
408     $fcp->txn_client_get ($url)->cb (sub {
409     ...
410     $quit->broadcast;
411     });
412    
413     $quit->wait;
414    
415 root 1.2 SEE ALSO
416 root 1.3 Event modules: Coro::Event, Coro, Event, Glib::Event, Glib.
417    
418     Implementations: AnyEvent::Impl::Coro, AnyEvent::Impl::Event,
419     AnyEvent::Impl::Glib, AnyEvent::Impl::Tk.
420    
421     Nontrivial usage example: Net::FCP.
422 root 1.2
423