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

Comparing AnyEvent/README (file contents):
Revision 1.14 by root, Mon Apr 7 19:46:50 2008 UTC vs.
Revision 1.17 by root, Tue Apr 22 05:12:19 2008 UTC

1NAME 1NAME
2 AnyEvent - provide framework for multiple event loops 2 AnyEvent - provide framework for multiple event loops
3 3
4 Event, Coro, Glib, Tk, Perl - various supported event loops 4 EV, Event, Coro::EV, Coro::Event, Glib, Tk, Perl - various supported
5 event loops
5 6
6SYNOPSIS 7SYNOPSIS
7 use AnyEvent; 8 use AnyEvent;
8 9
9 my $w = AnyEvent->io (fh => $fh, poll => "r|w", cb => sub { 10 my $w = AnyEvent->io (fh => $fh, poll => "r|w", cb => sub {
12 13
13 my $w = AnyEvent->timer (after => $seconds, cb => sub { 14 my $w = AnyEvent->timer (after => $seconds, cb => sub {
14 ... 15 ...
15 }); 16 });
16 17
17 my $w = AnyEvent->condvar; # stores wether a condition was flagged 18 my $w = AnyEvent->condvar; # stores whether a condition was flagged
18 $w->wait; # enters "main loop" till $condvar gets ->broadcast 19 $w->wait; # enters "main loop" till $condvar gets ->broadcast
19 $w->broadcast; # wake up current and all future wait's 20 $w->broadcast; # wake up current and all future wait's
20 21
21WHY YOU SHOULD USE THIS MODULE (OR NOT) 22WHY YOU SHOULD USE THIS MODULE (OR NOT)
22 Glib, POE, IO::Async, Event... CPAN offers event models by the dozen 23 Glib, POE, IO::Async, Event... CPAN offers event models by the dozen
26 policy* and AnyEvent is *small and efficient*. 27 policy* and AnyEvent is *small and efficient*.
27 28
28 First and foremost, *AnyEvent is not an event model* itself, it only 29 First and foremost, *AnyEvent is not an event model* itself, it only
29 interfaces to whatever event model the main program happens to use in a 30 interfaces to whatever event model the main program happens to use in a
30 pragmatic way. For event models and certain classes of immortals alike, 31 pragmatic way. For event models and certain classes of immortals alike,
31 the statement "there can only be one" is a bitter reality, and AnyEvent 32 the statement "there can only be one" is a bitter reality: In general,
32 helps hiding the differences. 33 only one event loop can be active at the same time in a process.
34 AnyEvent helps hiding the differences between those event loops.
33 35
34 The goal of AnyEvent is to offer module authors the ability to do event 36 The goal of AnyEvent is to offer module authors the ability to do event
35 programming (waiting for I/O or timer events) without subscribing to a 37 programming (waiting for I/O or timer events) without subscribing to a
36 religion, a way of living, and most importantly: without forcing your 38 religion, a way of living, and most importantly: without forcing your
37 module users into the same thing by forcing them to use the same event 39 module users into the same thing by forcing them to use the same event
38 model you use. 40 model you use.
39 41
40 For modules like POE or IO::Async (which is actually doing all I/O 42 For modules like POE or IO::Async (which is a total misnomer as it is
41 *synchronously*...), using them in your module is like joining a cult: 43 actually doing all I/O *synchronously*...), using them in your module is
42 After you joined, you are dependent on them and you cannot use anything 44 like joining a cult: After you joined, you are dependent on them and you
43 else, as it is simply incompatible to everything that isn't itself. 45 cannot use anything else, as it is simply incompatible to everything
46 that isn't itself. What's worse, all the potential users of your module
47 are *also* forced to use the same event loop you use.
44 48
45 AnyEvent + POE works fine. AnyEvent + Glib works fine. AnyEvent + Tk 49 AnyEvent is different: AnyEvent + POE works fine. AnyEvent + Glib works
46 works fine etc. etc. but none of these work together with the rest: POE 50 fine. AnyEvent + Tk works fine etc. etc. but none of these work together
47 + IO::Async? no go. Tk + Event? no go. If your module uses one of those, 51 with the rest: POE + IO::Async? no go. Tk + Event? no go. Again: if your
48 every user of your module has to use it, too. If your module uses 52 module uses one of those, every user of your module has to use it, too.
49 AnyEvent, it works transparently with all event models it supports 53 But if your module uses AnyEvent, it works transparently with all event
50 (including stuff like POE and IO::Async). 54 models it supports (including stuff like POE and IO::Async, as long as
55 those use one of the supported event loops. It is trivial to add new
56 event loops to AnyEvent, too, so it is future-proof).
51 57
52 In addition of being free of having to use *the one and only true event 58 In addition to being free of having to use *the one and only true event
53 model*, AnyEvent also is free of bloat and policy: with POE or similar 59 model*, AnyEvent also is free of bloat and policy: with POE or similar
54 modules, you get an enourmous amount of code and strict rules you have 60 modules, you get an enourmous amount of code and strict rules you have
55 to follow. AnyEvent, on the other hand, is lean and to the point by only 61 to follow. AnyEvent, on the other hand, is lean and up to the point, by
56 offering the functionality that is useful, in as thin as a wrapper as 62 only offering the functionality that is necessary, in as thin as a
57 technically possible. 63 wrapper as technically possible.
58 64
59 Of course, if you want lots of policy (this can arguably be somewhat 65 Of course, if you want lots of policy (this can arguably be somewhat
60 useful) and you want to force your users to use the one and only event 66 useful) and you want to force your users to use the one and only event
61 model, you should *not* use this module. 67 model, you should *not* use this module.
62 68
64 AnyEvent provides an identical interface to multiple event loops. This 70 AnyEvent provides an identical interface to multiple event loops. This
65 allows module authors to utilise an event loop without forcing module 71 allows module authors to utilise an event loop without forcing module
66 users to use the same event loop (as only a single event loop can 72 users to use the same event loop (as only a single event loop can
67 coexist peacefully at any one time). 73 coexist peacefully at any one time).
68 74
69 The interface itself is vaguely similar but not identical to the Event 75 The interface itself is vaguely similar, but not identical to the Event
70 module. 76 module.
71 77
72 On the first call of any method, the module tries to detect the 78 During the first call of any watcher-creation method, the module tries
73 currently loaded event loop by probing wether any of the following 79 to detect the currently loaded event loop by probing whether one of the
74 modules is loaded: Coro::Event, Event, Glib, Tk. The first one found is 80 following modules is already loaded: Coro::EV, Coro::Event, EV, Event,
75 used. If none is found, the module tries to load these modules in the 81 Glib, Tk. The first one found is used. If none are found, the module
76 order given. The first one that could be successfully loaded will be 82 tries to load these modules in the stated order. The first one that can
77 used. If still none could be found, AnyEvent will fall back to a 83 be successfully loaded will be used. If, after this, still none could be
78 pure-perl event loop, which is also not very efficient. 84 found, AnyEvent will fall back to a pure-perl event loop, which is not
85 very efficient, but should work everywhere.
79 86
80 Because AnyEvent first checks for modules that are already loaded, 87 Because AnyEvent first checks for modules that are already loaded,
81 loading an Event model explicitly before first using AnyEvent will 88 loading an event model explicitly before first using AnyEvent will
82 likely make that model the default. For example: 89 likely make that model the default. For example:
83 90
84 use Tk; 91 use Tk;
85 use AnyEvent; 92 use AnyEvent;
86 93
87 # .. AnyEvent will likely default to Tk 94 # .. AnyEvent will likely default to Tk
95
96 The *likely* means that, if any module loads another event model and
97 starts using it, all bets are off. Maybe you should tell their authors
98 to use AnyEvent so their modules work together with others seamlessly...
88 99
89 The pure-perl implementation of AnyEvent is called 100 The pure-perl implementation of AnyEvent is called
90 "AnyEvent::Impl::Perl". Like other event modules you can load it 101 "AnyEvent::Impl::Perl". Like other event modules you can load it
91 explicitly. 102 explicitly.
92 103
95 stores relevant data for each kind of event you are waiting for, such as 106 stores relevant data for each kind of event you are waiting for, such as
96 the callback to call, the filehandle to watch, etc. 107 the callback to call, the filehandle to watch, etc.
97 108
98 These watchers are normal Perl objects with normal Perl lifetime. After 109 These watchers are normal Perl objects with normal Perl lifetime. After
99 creating a watcher it will immediately "watch" for events and invoke the 110 creating a watcher it will immediately "watch" for events and invoke the
111 callback when the event occurs (of course, only when the event model is
112 in control).
113
100 callback. To disable the watcher you have to destroy it (e.g. by setting 114 To disable the watcher you have to destroy it (e.g. by setting the
101 the variable that stores it to "undef" or otherwise deleting all 115 variable you store it in to "undef" or otherwise deleting all references
102 references to it). 116 to it).
103 117
104 All watchers are created by calling a method on the "AnyEvent" class. 118 All watchers are created by calling a method on the "AnyEvent" class.
105 119
120 Many watchers either are used with "recursion" (repeating timers for
121 example), or need to refer to their watcher object in other ways.
122
123 An any way to achieve that is this pattern:
124
125 my $w; $w = AnyEvent->type (arg => value ..., cb => sub {
126 # you can use $w here, for example to undef it
127 undef $w;
128 });
129
130 Note that "my $w; $w =" combination. This is necessary because in Perl,
131 my variables are only visible after the statement in which they are
132 declared.
133
106 IO WATCHERS 134 IO WATCHERS
107 You can create I/O watcher by calling the "AnyEvent->io" method with the 135 You can create an I/O watcher by calling the "AnyEvent->io" method with
108 following mandatory arguments: 136 the following mandatory key-value pairs as arguments:
109 137
110 "fh" the Perl *filehandle* (not filedescriptor) to watch for events. 138 "fh" the Perl *file handle* (*not* file descriptor) to watch for events.
111 "poll" must be a string that is either "r" or "w", that creates a 139 "poll" must be a string that is either "r" or "w", which creates a
112 watcher waiting for "r"eadable or "w"ritable events. "cb" the callback 140 watcher waiting for "r"eadable or "w"ritable events, respectively. "cb"
113 to invoke everytime the filehandle becomes ready. 141 is the callback to invoke each time the file handle becomes ready.
114 142
115 Only one io watcher per "fh" and "poll" combination is allowed (i.e. on
116 a socket you can have one r + one w, not any more (limitation comes from
117 Tk - if you are sure you are not using Tk this limitation is gone).
118
119 Filehandles will be kept alive, so as long as the watcher exists, the 143 File handles will be kept alive, so as long as the watcher exists, the
120 filehandle exists, too. 144 file handle exists, too.
145
146 It is not allowed to close a file handle as long as any watcher is
147 active on the underlying file descriptor.
148
149 Some event loops issue spurious readyness notifications, so you should
150 always use non-blocking calls when reading/writing from/to your file
151 handles.
121 152
122 Example: 153 Example:
123 154
124 # wait for readability of STDIN, then read a line and disable the watcher 155 # wait for readability of STDIN, then read a line and disable the watcher
125 my $w; $w = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub { 156 my $w; $w = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub {
130 161
131 TIME WATCHERS 162 TIME WATCHERS
132 You can create a time watcher by calling the "AnyEvent->timer" method 163 You can create a time watcher by calling the "AnyEvent->timer" method
133 with the following mandatory arguments: 164 with the following mandatory arguments:
134 165
135 "after" after how many seconds (fractions are supported) should the 166 "after" specifies after how many seconds (fractional values are
136 timer activate. "cb" the callback to invoke. 167 supported) should the timer activate. "cb" the callback to invoke in
168 that case.
137 169
138 The timer callback will be invoked at most once: if you want a repeating 170 The timer callback will be invoked at most once: if you want a repeating
139 timer you have to create a new watcher (this is a limitation by both Tk 171 timer you have to create a new watcher (this is a limitation by both Tk
140 and Glib). 172 and Glib).
141 173
147 }); 179 });
148 180
149 # to cancel the timer: 181 # to cancel the timer:
150 undef $w; 182 undef $w;
151 183
152 CONDITION WATCHERS 184 Example 2:
185
186 # fire an event after 0.5 seconds, then roughly every second
187 my $w;
188
189 my $cb = sub {
190 # cancel the old timer while creating a new one
191 $w = AnyEvent->timer (after => 1, cb => $cb);
192 };
193
194 # start the "loop" by creating the first watcher
195 $w = AnyEvent->timer (after => 0.5, cb => $cb);
196
197 TIMING ISSUES
198 There are two ways to handle timers: based on real time (relative, "fire
199 in 10 seconds") and based on wallclock time (absolute, "fire at 12
200 o'clock").
201
202 While most event loops expect timers to specified in a relative way,
203 they use absolute time internally. This makes a difference when your
204 clock "jumps", for example, when ntp decides to set your clock backwards
205 from the wrong 2014-01-01 to 2008-01-01, a watcher that you created to
206 fire "after" a second might actually take six years to finally fire.
207
208 AnyEvent cannot compensate for this. The only event loop that is
209 conscious about these issues is EV, which offers both relative
210 (ev_timer) and absolute (ev_periodic) timers.
211
212 AnyEvent always prefers relative timers, if available, matching the
213 AnyEvent API.
214
215 SIGNAL WATCHERS
216 You can watch for signals using a signal watcher, "signal" is the signal
217 *name* without any "SIG" prefix, "cb" is the Perl callback to be invoked
218 whenever a signal occurs.
219
220 Multiple signals occurances can be clumped together into one callback
221 invocation, and callback invocation will be synchronous. synchronous
222 means that it might take a while until the signal gets handled by the
223 process, but it is guarenteed not to interrupt any other callbacks.
224
225 The main advantage of using these watchers is that you can share a
226 signal between multiple watchers.
227
228 This watcher might use %SIG, so programs overwriting those signals
229 directly will likely not work correctly.
230
231 Example: exit on SIGINT
232
233 my $w = AnyEvent->signal (signal => "INT", cb => sub { exit 1 });
234
235 CHILD PROCESS WATCHERS
236 You can also watch on a child process exit and catch its exit status.
237
238 The child process is specified by the "pid" argument (if set to 0, it
239 watches for any child process exit). The watcher will trigger as often
240 as status change for the child are received. This works by installing a
241 signal handler for "SIGCHLD". The callback will be called with the pid
242 and exit status (as returned by waitpid).
243
244 Example: wait for pid 1333
245
246 my $w = AnyEvent->child (
247 pid => 1333,
248 cb => sub {
249 my ($pid, $status) = @_;
250 warn "pid $pid exited with status $status";
251 },
252 );
253
254 CONDITION VARIABLES
153 Condition watchers can be created by calling the "AnyEvent->condvar" 255 Condition variables can be created by calling the "AnyEvent->condvar"
154 method without any arguments. 256 method without any arguments.
155 257
156 A condition watcher watches for a condition - precisely that the 258 A condition variable waits for a condition - precisely that the
157 "->broadcast" method has been called. 259 "->broadcast" method has been called.
158 260
261 They are very useful to signal that a condition has been fulfilled, for
262 example, if you write a module that does asynchronous http requests,
263 then a condition variable would be the ideal candidate to signal the
264 availability of results.
265
266 You can also use condition variables to block your main program until an
267 event occurs - for example, you could "->wait" in your main program
268 until the user clicks the Quit button in your app, which would
269 "->broadcast" the "quit" event.
270
159 Note that condition watchers recurse into the event loop - if you have 271 Note that condition variables recurse into the event loop - if you have
160 two watchers that call "->wait" in a round-robbin fashion, you lose. 272 two pirces of code that call "->wait" in a round-robbin fashion, you
161 Therefore, condition watchers are good to export to your caller, but you 273 lose. Therefore, condition variables are good to export to your caller,
162 should avoid making a blocking wait, at least in callbacks, as this 274 but you should avoid making a blocking wait yourself, at least in
163 usually asks for trouble. 275 callbacks, as this asks for trouble.
164 276
165 The watcher has only two methods: 277 This object has two methods:
166 278
167 $cv->wait 279 $cv->wait
168 Wait (blocking if necessary) until the "->broadcast" method has been 280 Wait (blocking if necessary) until the "->broadcast" method has been
169 called on c<$cv>, while servicing other watchers normally. 281 called on c<$cv>, while servicing other watchers normally.
170 282
171 Not all event models support a blocking wait - some die in that
172 case, so if you are using this from a module, never require a
173 blocking wait, but let the caller decide wether the call will block
174 or not (for example, by coupling condition variables with some kind
175 of request results and supporting callbacks so the caller knows that
176 getting the result will not block, while still suppporting blockign
177 waits if the caller so desires).
178
179 You can only wait once on a condition - additional calls will return 283 You can only wait once on a condition - additional calls will return
180 immediately. 284 immediately.
181 285
286 Not all event models support a blocking wait - some die in that case
287 (programs might want to do that to stay interactive), so *if you are
288 using this from a module, never require a blocking wait*, but let
289 the caller decide whether the call will block or not (for example,
290 by coupling condition variables with some kind of request results
291 and supporting callbacks so the caller knows that getting the result
292 will not block, while still suppporting blocking waits if the caller
293 so desires).
294
295 Another reason *never* to "->wait" in a module is that you cannot
296 sensibly have two "->wait"'s in parallel, as that would require
297 multiple interpreters or coroutines/threads, none of which
298 "AnyEvent" can supply (the coroutine-aware backends
299 AnyEvent::Impl::CoroEV and AnyEvent::Impl::CoroEvent explicitly
300 support concurrent "->wait"'s from different coroutines, however).
301
182 $cv->broadcast 302 $cv->broadcast
183 Flag the condition as ready - a running "->wait" and all further 303 Flag the condition as ready - a running "->wait" and all further
184 calls to "wait" will return after this method has been called. If 304 calls to "wait" will (eventually) return after this method has been
185 nobody is waiting the broadcast will be remembered.. 305 called. If nobody is waiting the broadcast will be remembered..
186 306
187 Example: 307 Example:
188 308
189 # wait till the result is ready 309 # wait till the result is ready
190 my $result_ready = AnyEvent->condvar; 310 my $result_ready = AnyEvent->condvar;
191 311
192 # do something such as adding a timer 312 # do something such as adding a timer
193 # or socket watcher the calls $result_ready->broadcast 313 # or socket watcher the calls $result_ready->broadcast
194 # when the "result" is ready. 314 # when the "result" is ready.
315 # in this case, we simply use a timer:
316 my $w = AnyEvent->timer (
317 after => 1,
318 cb => sub { $result_ready->broadcast },
319 );
195 320
321 # this "blocks" (while handling events) till the watcher
322 # calls broadcast
196 $result_ready->wait; 323 $result_ready->wait;
197 324
198 SIGNAL WATCHERS 325GLOBAL VARIABLES AND FUNCTIONS
199 You can listen for signals using a signal watcher, "signal" is the
200 signal *name* without any "SIG" prefix. Multiple signals events can be
201 clumped together into one callback invocation, and callback invocation
202 might or might not be asynchronous.
203
204 These watchers might use %SIG, so programs overwriting those signals
205 directly will likely not work correctly.
206
207 Example: exit on SIGINT
208
209 my $w = AnyEvent->signal (signal => "INT", cb => sub { exit 1 });
210
211 CHILD PROCESS WATCHERS
212 You can also listen for the status of a child process specified by the
213 "pid" argument (or any child if the pid argument is 0). The watcher will
214 trigger as often as status change for the child are received. This works
215 by installing a signal handler for "SIGCHLD". The callback will be
216 called with the pid and exit status (as returned by waitpid).
217
218 Example: wait for pid 1333
219
220 my $w = AnyEvent->child (pid => 1333, cb => sub { warn "exit status $?" });
221
222GLOBALS
223 $AnyEvent::MODEL 326 $AnyEvent::MODEL
224 Contains "undef" until the first watcher is being created. Then it 327 Contains "undef" until the first watcher is being created. Then it
225 contains the event model that is being used, which is the name of 328 contains the event model that is being used, which is the name of
226 the Perl class implementing the model. This class is usually one of 329 the Perl class implementing the model. This class is usually one of
227 the "AnyEvent::Impl:xxx" modules, but can be any other class in the 330 the "AnyEvent::Impl:xxx" modules, but can be any other class in the
228 case AnyEvent has been extended at runtime (e.g. in *rxvt-unicode*). 331 case AnyEvent has been extended at runtime (e.g. in *rxvt-unicode*).
229 332
230 The known classes so far are: 333 The known classes so far are:
231 334
232 AnyEvent::Impl::CoroEV based on Coro::EV, best choice. 335 AnyEvent::Impl::CoroEV based on Coro::EV, best choice.
336 AnyEvent::Impl::CoroEvent based on Coro::Event, second best choice.
233 AnyEvent::Impl::EV based on EV (an interface to libev, also best choice). 337 AnyEvent::Impl::EV based on EV (an interface to libev, also best choice).
234 AnyEvent::Impl::CoroEvent based on Coro::Event, second best choice.
235 AnyEvent::Impl::Event based on Event, also second best choice :) 338 AnyEvent::Impl::Event based on Event, also second best choice :)
236 AnyEvent::Impl::Glib based on Glib, second-best choice. 339 AnyEvent::Impl::Glib based on Glib, third-best choice.
237 AnyEvent::Impl::Tk based on Tk, very bad choice. 340 AnyEvent::Impl::Tk based on Tk, very bad choice.
238 AnyEvent::Impl::Perl pure-perl implementation, inefficient. 341 AnyEvent::Impl::Perl pure-perl implementation, inefficient but portable.
239 342
240 AnyEvent::detect 343 AnyEvent::detect
241 Returns $AnyEvent::MODEL, forcing autodetection of the event model 344 Returns $AnyEvent::MODEL, forcing autodetection of the event model
242 if necessary. You should only call this function right before you 345 if necessary. You should only call this function right before you
243 would have created an AnyEvent watcher anyway, that is, very late at 346 would have created an AnyEvent watcher anyway, that is, as late as
244 runtime. 347 possible at runtime.
245 348
246WHAT TO DO IN A MODULE 349WHAT TO DO IN A MODULE
247 As a module author, you should "use AnyEvent" and call AnyEvent methods 350 As a module author, you should "use AnyEvent" and call AnyEvent methods
248 freely, but you should not load a specific event module or rely on it. 351 freely, but you should not load a specific event module or rely on it.
249 352
250 Be careful when you create watchers in the module body - Anyevent will 353 Be careful when you create watchers in the module body - AnyEvent will
251 decide which event module to use as soon as the first method is called, 354 decide which event module to use as soon as the first method is called,
252 so by calling AnyEvent in your module body you force the user of your 355 so by calling AnyEvent in your module body you force the user of your
253 module to load the event module first. 356 module to load the event module first.
254 357
358 Never call "->wait" on a condition variable unless you *know* that the
359 "->broadcast" method has been called on it already. This is because it
360 will stall the whole program, and the whole point of using events is to
361 stay interactive.
362
363 It is fine, however, to call "->wait" when the user of your module
364 requests it (i.e. if you create a http request object ad have a method
365 called "results" that returns the results, it should call "->wait"
366 freely, as the user of your module knows what she is doing. always).
367
255WHAT TO DO IN THE MAIN PROGRAM 368WHAT TO DO IN THE MAIN PROGRAM
256 There will always be a single main program - the only place that should 369 There will always be a single main program - the only place that should
257 dictate which event model to use. 370 dictate which event model to use.
258 371
259 If it doesn't care, it can just "use AnyEvent" and use it itself, or not 372 If it doesn't care, it can just "use AnyEvent" and use it itself, or not
260 do anything special and let AnyEvent decide which implementation to 373 do anything special (it does not need to be event-based) and let
261 chose. 374 AnyEvent decide which implementation to chose if some module relies on
375 it.
262 376
263 If the main program relies on a specific event model (for example, in 377 If the main program relies on a specific event model. For example, in
264 Gtk2 programs you have to rely on either Glib or Glib::Event), you 378 Gtk2 programs you have to rely on the Glib module. You should load the
265 should load it before loading AnyEvent or any module that uses it, 379 event module before loading AnyEvent or any module that uses it:
266 generally, as early as possible. The reason is that modules might create 380 generally speaking, you should load it as early as possible. The reason
267 watchers when they are loaded, and AnyEvent will decide on the event 381 is that modules might create watchers when they are loaded, and AnyEvent
268 model to use as soon as it creates watchers, and it might chose the 382 will decide on the event model to use as soon as it creates watchers,
269 wrong one unless you load the correct one yourself. 383 and it might chose the wrong one unless you load the correct one
384 yourself.
270 385
271 You can chose to use a rather inefficient pure-perl implementation by 386 You can chose to use a rather inefficient pure-perl implementation by
272 loading the "AnyEvent::Impl::Perl" module, but letting AnyEvent chose is 387 loading the "AnyEvent::Impl::Perl" module, which gives you similar
273 generally better. 388 behaviour everywhere, but letting AnyEvent chose is generally better.
274 389
275SUPPLYING YOUR OWN EVENT MODEL INTERFACE 390SUPPLYING YOUR OWN EVENT MODEL INTERFACE
391 This is an advanced topic that you do not normally need to use AnyEvent
392 in a module. This section is only of use to event loop authors who want
393 to provide AnyEvent compatibility.
394
276 If you need to support another event library which isn't directly 395 If you need to support another event library which isn't directly
277 supported by AnyEvent, you can supply your own interface to it by 396 supported by AnyEvent, you can supply your own interface to it by
278 pushing, before the first watcher gets created, the package name of the 397 pushing, before the first watcher gets created, the package name of the
279 event module and the package name of the interface to use onto 398 event module and the package name of the interface to use onto
280 @AnyEvent::REGISTRY. You can do that before and even without loading 399 @AnyEvent::REGISTRY. You can do that before and even without loading
281 AnyEvent. 400 AnyEvent, so it is reasonably cheap.
282 401
283 Example: 402 Example:
284 403
285 push @AnyEvent::REGISTRY, [urxvt => urxvt::anyevent::]; 404 push @AnyEvent::REGISTRY, [urxvt => urxvt::anyevent::];
286 405
287 This tells AnyEvent to (literally) use the "urxvt::anyevent::" 406 This tells AnyEvent to (literally) use the "urxvt::anyevent::"
288 package/class when it finds the "urxvt" package/module is loaded. When 407 package/class when it finds the "urxvt" package/module is already
408 loaded.
409
289 AnyEvent is loaded and asked to find a suitable event model, it will 410 When AnyEvent is loaded and asked to find a suitable event model, it
290 first check for the presence of urxvt. 411 will first check for the presence of urxvt by trying to "use" the
412 "urxvt::anyevent" module.
291 413
292 The class should provide implementations for all watcher types (see 414 The class should provide implementations for all watcher types. See
293 AnyEvent::Impl::Event (source code), AnyEvent::Impl::Glib (Source code) 415 AnyEvent::Impl::EV (source code), AnyEvent::Impl::Glib (Source code) and
294 and so on for actual examples, use "perldoc -m AnyEvent::Impl::Glib" to 416 so on for actual examples. Use "perldoc -m AnyEvent::Impl::Glib" to see
295 see the sources). 417 the sources.
296 418
419 If you don't provide "signal" and "child" watchers than AnyEvent will
420 provide suitable (hopefully) replacements.
421
297 The above isn't fictitious, the *rxvt-unicode* (a.k.a. urxvt) uses the 422 The above example isn't fictitious, the *rxvt-unicode* (a.k.a. urxvt)
298 above line as-is. An interface isn't included in AnyEvent because it 423 terminal emulator uses the above line as-is. An interface isn't included
299 doesn't make sense outside the embedded interpreter inside 424 in AnyEvent because it doesn't make sense outside the embedded
300 *rxvt-unicode*, and it is updated and maintained as part of the 425 interpreter inside *rxvt-unicode*, and it is updated and maintained as
301 *rxvt-unicode* distribution. 426 part of the *rxvt-unicode* distribution.
302 427
303 *rxvt-unicode* also cheats a bit by not providing blocking access to 428 *rxvt-unicode* also cheats a bit by not providing blocking access to
304 condition variables: code blocking while waiting for a condition will 429 condition variables: code blocking while waiting for a condition will
305 "die". This still works with most modules/usages, and blocking calls 430 "die". This still works with most modules/usages, and blocking calls
306 must not be in an interactive application, so it makes sense. 431 must not be done in an interactive application, so it makes sense.
307 432
308ENVIRONMENT VARIABLES 433ENVIRONMENT VARIABLES
309 The following environment variables are used by this module: 434 The following environment variables are used by this module:
310 435
311 "PERL_ANYEVENT_VERBOSE" when set to 2 or higher, reports which event 436 "PERL_ANYEVENT_VERBOSE" when set to 2 or higher, cause AnyEvent to
312 model gets used. 437 report to STDERR which event model it chooses.
313 438
314EXAMPLE 439EXAMPLE PROGRAM
315 The following program uses an io watcher to read data from stdin, a 440 The following program uses an IO watcher to read data from STDIN, a
316 timer to display a message once per second, and a condvar to exit the 441 timer to display a message once per second, and a condition variable to
317 program when the user enters quit: 442 quit the program when the user enters quit:
318 443
319 use AnyEvent; 444 use AnyEvent;
320 445
321 my $cv = AnyEvent->condvar; 446 my $cv = AnyEvent->condvar;
322 447
323 my $io_watcher = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub { 448 my $io_watcher = AnyEvent->io (
449 fh => \*STDIN,
450 poll => 'r',
451 cb => sub {
324 warn "io event <$_[0]>\n"; # will always output <r> 452 warn "io event <$_[0]>\n"; # will always output <r>
325 chomp (my $input = <STDIN>); # read a line 453 chomp (my $input = <STDIN>); # read a line
326 warn "read: $input\n"; # output what has been read 454 warn "read: $input\n"; # output what has been read
327 $cv->broadcast if $input =~ /^q/i; # quit program if /^q/i 455 $cv->broadcast if $input =~ /^q/i; # quit program if /^q/i
456 },
328 }); 457 );
329 458
330 my $time_watcher; # can only be used once 459 my $time_watcher; # can only be used once
331 460
332 sub new_timer { 461 sub new_timer {
333 $timer = AnyEvent->timer (after => 1, cb => sub { 462 $timer = AnyEvent->timer (after => 1, cb => sub {
414 $txn->{finished}->wait; 543 $txn->{finished}->wait;
415 return $txn->{result}; 544 return $txn->{result};
416 545
417 The actual code goes further and collects all errors ("die"s, 546 The actual code goes further and collects all errors ("die"s,
418 exceptions) that occured during request processing. The "result" method 547 exceptions) that occured during request processing. The "result" method
419 detects wether an exception as thrown (it is stored inside the $txn 548 detects whether an exception as thrown (it is stored inside the $txn
420 object) and just throws the exception, which means connection errors and 549 object) and just throws the exception, which means connection errors and
421 other problems get reported tot he code that tries to use the result, 550 other problems get reported tot he code that tries to use the result,
422 not in a random callback. 551 not in a random callback.
423 552
424 All of this enables the following usage styles: 553 All of this enables the following usage styles:
425 554
426 1. Blocking: 555 1. Blocking:
427 556
428 my $data = $fcp->client_get ($url); 557 my $data = $fcp->client_get ($url);
429 558
430 2. Blocking, but parallelizing: 559 2. Blocking, but running in parallel:
431 560
432 my @datas = map $_->result, 561 my @datas = map $_->result,
433 map $fcp->txn_client_get ($_), 562 map $fcp->txn_client_get ($_),
434 @urls; 563 @urls;
435 564
436 Both blocking examples work without the module user having to know 565 Both blocking examples work without the module user having to know
437 anything about events. 566 anything about events.
438 567
439 3a. Event-based in a main program, using any support Event module: 568 3a. Event-based in a main program, using any supported event module:
440 569
441 use Event; 570 use EV;
442 571
443 $fcp->txn_client_get ($url)->cb (sub { 572 $fcp->txn_client_get ($url)->cb (sub {
444 my $txn = shift; 573 my $txn = shift;
445 my $data = $txn->result; 574 my $data = $txn->result;
446 ... 575 ...
447 }); 576 });
448 577
449 Event::loop; 578 EV::loop;
450 579
451 3b. The module user could use AnyEvent, too: 580 3b. The module user could use AnyEvent, too:
452 581
453 use AnyEvent; 582 use AnyEvent;
454 583
460 }); 589 });
461 590
462 $quit->wait; 591 $quit->wait;
463 592
464SEE ALSO 593SEE ALSO
465 Event modules: Coro::Event, Coro, Event, Glib::Event, Glib. 594 Event modules: Coro::EV, EV, EV::Glib, Glib::EV, Coro::Event, Event,
595 Glib::Event, Glib, Coro, Tk.
466 596
467 Implementations: AnyEvent::Impl::Coro, AnyEvent::Impl::Event, 597 Implementations: AnyEvent::Impl::CoroEV, AnyEvent::Impl::EV,
468 AnyEvent::Impl::Glib, AnyEvent::Impl::Tk. 598 AnyEvent::Impl::CoroEvent, AnyEvent::Impl::Event, AnyEvent::Impl::Glib,
599 AnyEvent::Impl::Tk, AnyEvent::Impl::Perl.
469 600
470 Nontrivial usage example: Net::FCP. 601 Nontrivial usage examples: Net::FCP, Net::XMPP2.
471 602
603AUTHOR
604 Marc Lehmann <schmorp@schmorp.de>
605 http://home.schmorp.de/
472 606

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines