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

Comparing AnyEvent/lib/AnyEvent.pm (file contents):
Revision 1.1 by root, Wed Apr 27 01:26:44 2005 UTC vs.
Revision 1.23 by root, Wed Mar 7 17:37:24 2007 UTC

1=head1 NAME 1=head1 NAME
2 2
3AnyEvent - ??? 3AnyEvent - provide framework for multiple event loops
4
5Event, Coro, Glib, Tk, Perl - various supported event loops
4 6
5=head1 SYNOPSIS 7=head1 SYNOPSIS
6 8
9 use AnyEvent;
10
11 my $w = AnyEvent->io (fh => $fh, poll => "r|w", cb => sub {
12 ...
13 });
14
15 my $w = AnyEvent->timer (after => $seconds, cb => sub {
16 ...
17 });
18
19 my $w = AnyEvent->condvar; # stores wether a condition was flagged
20 $w->wait; # enters "main loop" till $condvar gets ->broadcast
21 $w->broadcast; # wake up current and all future wait's
22
7=head1 DESCRIPTION 23=head1 DESCRIPTION
8 24
25L<AnyEvent> provides an identical interface to multiple event loops. This
26allows module authors to utilise an event loop without forcing module
27users to use the same event loop (as only a single event loop can coexist
28peacefully at any one time).
29
30The interface itself is vaguely similar but not identical to the Event
31module.
32
33On the first call of any method, the module tries to detect the currently
34loaded event loop by probing wether any of the following modules is
35loaded: L<Coro::Event>, L<Event>, L<Glib>, L<Tk>. The first one found is
36used. If none is found, the module tries to load these modules in the
37order given. The first one that could be successfully loaded will be
38used. If still none could be found, AnyEvent will fall back to a pure-perl
39event loop, which is also not very efficient.
40
41Because AnyEvent first checks for modules that are already loaded, loading
42an Event model explicitly before first using AnyEvent will likely make
43that model the default. For example:
44
45 use Tk;
46 use AnyEvent;
47
48 # .. AnyEvent will likely default to Tk
49
50The pure-perl implementation of AnyEvent is called
51C<AnyEvent::Impl::Perl>. Like other event modules you can load it
52explicitly.
53
54=head1 WATCHERS
55
56AnyEvent has the central concept of a I<watcher>, which is an object that
57stores relevant data for each kind of event you are waiting for, such as
58the callback to call, the filehandle to watch, etc.
59
60These watchers are normal Perl objects with normal Perl lifetime. After
61creating a watcher it will immediately "watch" for events and invoke
62the callback. To disable the watcher you have to destroy it (e.g. by
63setting the variable that stores it to C<undef> or otherwise deleting all
64references to it).
65
66All watchers are created by calling a method on the C<AnyEvent> class.
67
68=head2 IO WATCHERS
69
70You can create I/O watcher by calling the C<< AnyEvent->io >> method with
71the following mandatory arguments:
72
73C<fh> the Perl I<filehandle> (not filedescriptor) to watch for
74events. C<poll> must be a string that is either C<r> or C<w>, that creates
75a watcher waiting for "r"eadable or "w"ritable events. C<cb> teh callback
76to invoke everytime the filehandle becomes ready.
77
78Only one io watcher per C<fh> and C<poll> combination is allowed (i.e. on
79a socket you can have one r + one w, not any more (limitation comes from
80Tk - if you are sure you are not using Tk this limitation is gone).
81
82Filehandles will be kept alive, so as long as the watcher exists, the
83filehandle exists, too.
84
85Example:
86
87 # wait for readability of STDIN, then read a line and disable the watcher
88 my $w; $w = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub {
89 chomp (my $input = <STDIN>);
90 warn "read: $input\n";
91 undef $w;
92 });
93
94=head2 TIME WATCHERS
95
96You can create a time watcher by calling the C<< AnyEvent->timer >>
97method with the following mandatory arguments:
98
99C<after> after how many seconds (fractions are supported) should the timer
100activate. C<cb> the callback to invoke.
101
102The timer callback will be invoked at most once: if you want a repeating
103timer you have to create a new watcher (this is a limitation by both Tk
104and Glib).
105
106Example:
107
108 # fire an event after 7.7 seconds
109 my $w = AnyEvent->timer (after => 7.7, cb => sub {
110 warn "timeout\n";
111 });
112
113 # to cancel the timer:
114 undef $w
115
116=head2 CONDITION WATCHERS
117
118Condition watchers can be created by calling the C<< AnyEvent->condvar >>
119method without any arguments.
120
121A condition watcher watches for a condition - precisely that the C<<
122->broadcast >> method has been called.
123
124The watcher has only two methods:
125
9=over 4 126=over 4
10 127
128=item $cv->wait
129
130Wait (blocking if necessary) until the C<< ->broadcast >> method has been
131called on c<$cv>, while servicing other watchers normally.
132
133Not all event models support a blocking wait - some die in that case, so
134if you are using this from a module, never require a blocking wait, but
135let the caller decide wether the call will block or not (for example,
136by coupling condition variables with some kind of request results and
137supporting callbacks so the caller knows that getting the result will not
138block, while still suppporting blockign waits if the caller so desires).
139
140You can only wait once on a condition - additional calls will return
141immediately.
142
143=item $cv->broadcast
144
145Flag the condition as ready - a running C<< ->wait >> and all further
146calls to C<wait> will return after this method has been called. If nobody
147is waiting the broadcast will be remembered..
148
149Example:
150
151 # wait till the result is ready
152 my $result_ready = AnyEvent->condvar;
153
154 # do something such as adding a timer
155 # or socket watcher the calls $result_ready->broadcast
156 # when the "result" is ready.
157
158 $result_ready->wait;
159
160=back
161
162=head2 SIGNAL WATCHERS
163
164You can listen for signals using a signal watcher, C<signal> is the signal
165I<name> without any C<SIG> prefix. Multiple signals events can be clumped
166together into one callback invocation, and callback invocation might or
167might not be asynchronous.
168
169These watchers might use C<%SIG>, so programs overwriting those signals
170directly will likely not work correctly.
171
172Example: exit on SIGINT
173
174 my $w = AnyEvent->signal (signal => "INT", cb => sub { exit 1 });
175
176=head2 CHILD PROCESS WATCHERS
177
178You can also listen for the status of a child process specified by the
179C<pid> argument. The watcher will only trigger once. This works by
180installing a signal handler for C<SIGCHLD>.
181
182Example: wait for pid 1333
183
184 my $w = AnyEvent->child (pid => 1333, cb => sub { warn "exit status $?" });
185
186=head1 GLOBALS
187
188=over 4
189
190=item $AnyEvent::MODEL
191
192Contains C<undef> until the first watcher is being created. Then it
193contains the event model that is being used, which is the name of the
194Perl class implementing the model. This class is usually one of the
195C<AnyEvent::Impl:xxx> modules, but can be any other class in the case
196AnyEvent has been extended at runtime (e.g. in I<rxvt-unicode>).
197
198The known classes so far are:
199
200 AnyEvent::Impl::Coro based on Coro::Event, best choise.
201 AnyEvent::Impl::Event based on Event, also best choice :)
202 AnyEvent::Impl::Glib based on Glib, second-best choice.
203 AnyEvent::Impl::Tk based on Tk, very bad choice.
204 AnyEvent::Impl::Perl pure-perl implementation, inefficient.
205
206=item AnyEvent::detect
207
208Returns C<$AnyEvent::MODEL>, forcing autodetection of the event model if
209necessary. You should only call this function right before you would have
210created an AnyEvent watcher anyway, that is, very late at runtime.
211
212=back
213
214=head1 WHAT TO DO IN A MODULE
215
216As a module author, you should "use AnyEvent" and call AnyEvent methods
217freely, but you should not load a specific event module or rely on it.
218
219Be careful when you create watchers in the module body - Anyevent will
220decide which event module to use as soon as the first method is called, so
221by calling AnyEvent in your module body you force the user of your module
222to load the event module first.
223
224=head1 WHAT TO DO IN THE MAIN PROGRAM
225
226There will always be a single main program - the only place that should
227dictate which event model to use.
228
229If it doesn't care, it can just "use AnyEvent" and use it itself, or not
230do anything special and let AnyEvent decide which implementation to chose.
231
232If the main program relies on a specific event model (for example, in Gtk2
233programs you have to rely on either Glib or Glib::Event), you should load
234it before loading AnyEvent or any module that uses it, generally, as early
235as possible. The reason is that modules might create watchers when they
236are loaded, and AnyEvent will decide on the event model to use as soon as
237it creates watchers, and it might chose the wrong one unless you load the
238correct one yourself.
239
240You can chose to use a rather inefficient pure-perl implementation by
241loading the C<AnyEvent::Impl::Perl> module, but letting AnyEvent chose is
242generally better.
243
11=cut 244=cut
12 245
13package AnyEvent; 246package AnyEvent;
14 247
248no warnings;
249use strict;
15use Carp; 250use Carp;
16 251
17$VERSION = 0.1; 252our $VERSION = '2.52';
253our $MODEL;
18 254
19no warnings; 255our $AUTOLOAD;
256our @ISA;
257
258our $verbose = $ENV{PERL_ANYEVENT_VERBOSE}*1;
259
260our @REGISTRY;
20 261
21my @models = ( 262my @models = (
22 [Coro => Coro::Event::], 263 [Coro::Event:: => AnyEvent::Impl::Coro::],
23 [Event => Event::], 264 [Event:: => AnyEvent::Impl::Event::],
24 [Glib => Glib::], 265 [Glib:: => AnyEvent::Impl::Glib::],
25 [Tk => Tk::], 266 [Tk:: => AnyEvent::Impl::Tk::],
267 [AnyEvent::Impl::Perl:: => AnyEvent::Impl::Perl::],
26); 268);
27 269
270our %method = map +($_ => 1), qw(io timer condvar broadcast wait signal one_event DESTROY);
271
272sub detect() {
273 unless ($MODEL) {
274 no strict 'refs';
275
276 # check for already loaded models
277 for (@REGISTRY, @models) {
278 my ($package, $model) = @$_;
279 if (${"$package\::VERSION"} > 0) {
280 if (eval "require $model") {
281 $MODEL = $model;
282 warn "AnyEvent: found model '$model', using it.\n" if $verbose > 1;
283 last;
284 }
285 }
286 }
287
288 unless ($MODEL) {
289 # try to load a model
290
291 for (@REGISTRY, @models) {
292 my ($package, $model) = @$_;
293 if (eval "require $package"
294 and ${"$package\::VERSION"} > 0
295 and eval "require $model") {
296 $MODEL = $model;
297 warn "AnyEvent: autoprobed and loaded model '$model', using it.\n" if $verbose > 1;
298 last;
299 }
300 }
301
302 $MODEL
303 or die "No event module selected for AnyEvent and autodetect failed. Install any one of these modules: Event (or Coro+Event), Glib or Tk.";
304 }
305
306 unshift @ISA, $MODEL;
307 push @{"$MODEL\::ISA"}, "AnyEvent::Base";
308 }
309
310 $MODEL
311}
312
28sub AUTOLOAD { 313sub AUTOLOAD {
29 $AUTOLOAD =~ s/.*://; 314 (my $func = $AUTOLOAD) =~ s/.*://;
30 315
31 for (@models) { 316 $method{$func}
32 my ($model, $package) = @$_; 317 or croak "$func: not a valid method for AnyEvent objects";
33 if (defined ${"$package\::VERSION"}) { 318
34 $EVENT = "AnyEvent::Impl::$model"; 319 detect unless $MODEL;
35 eval "require $EVENT"; die if $@; 320
36 goto &{"$EVENT\::$AUTOLOAD"}; 321 my $class = shift;
37 } 322 $class->$func (@_);
323}
324
325package AnyEvent::Base;
326
327# default implementation for ->condvar, ->wait, ->broadcast
328
329sub condvar {
330 bless \my $flag, "AnyEvent::Base::CondVar"
331}
332
333sub AnyEvent::Base::CondVar::broadcast {
334 ${$_[0]}++;
335}
336
337sub AnyEvent::Base::CondVar::wait {
338 AnyEvent->one_event while !${$_[0]};
339}
340
341# default implementation for ->signal
342
343our %SIG_CB;
344
345sub signal {
346 my (undef, %arg) = @_;
347
348 my $signal = uc $arg{signal}
349 or Carp::croak "required option 'signal' is missing";
350
351 $SIG_CB{$signal}{$arg{cb}} = $arg{cb};
352 $SIG{$signal} ||= sub {
353 $_->() for values %{ $SIG_CB{$signal} || {} };
354 };
355
356 bless [$signal, $arg{cb}], "AnyEvent::Base::Signal"
357}
358
359sub AnyEvent::Base::Signal::DESTROY {
360 my ($signal, $cb) = @{$_[0]};
361
362 delete $SIG_CB{$signal}{$cb};
363
364 $SIG{$signal} = 'DEFAULT' unless keys %{ $SIG_CB{$signal} };
365}
366
367# default implementation for ->child
368
369our %PID_CB;
370our $CHLD_W;
371our $PID_IDLE;
372our $WNOHANG;
373
374sub _child_wait {
375 while (0 < (my $pid = waitpid -1, $WNOHANG)) {
376 $_->() for values %{ (delete $PID_CB{$pid}) || {} };
38 } 377 }
39 378
40 for (@models) { 379 undef $PID_IDLE;
41 my ($model, $package) = @$_; 380}
42 $EVENT = "AnyEvent::Impl::$model"; 381
43 if (eval "require $EVENT") { 382sub child {
44 goto &{"$EVENT\::$AUTOLOAD"}; 383 my (undef, %arg) = @_;
45 } 384
385 my $pid = uc $arg{pid}
386 or Carp::croak "required option 'pid' is missing";
387
388 $PID_CB{$pid}{$arg{cb}} = $arg{cb};
389
390 unless ($WNOHANG) {
391 $WNOHANG = eval { require POSIX; &POSIX::WNOHANG } || 1;
46 } 392 }
47 393
48 die "No event module selected for AnyEvent and autodetect failed. Install any of these: Coro, Event, Glib or Tk."; 394 unless ($CHLD_W) {
49} 395 $CHLD_W = AnyEvent->signal (signal => 'CHLD', cb => \&_child_wait);
396 # child could be a zombie already
397 $PID_IDLE ||= AnyEvent->timer (after => 0, cb => \&_child_wait);
398 }
50 399
511; 400 bless [$pid, $arg{cb}], "AnyEvent::Base::Child"
401}
52 402
403sub AnyEvent::Base::Child::DESTROY {
404 my ($pid, $cb) = @{$_[0]};
405
406 delete $PID_CB{$pid}{$cb};
407 delete $PID_CB{$pid} unless keys %{ $PID_CB{$pid} };
408
409 undef $CHLD_W unless keys %PID_CB;
410}
411
412=head1 SUPPLYING YOUR OWN EVENT MODEL INTERFACE
413
414If you need to support another event library which isn't directly
415supported by AnyEvent, you can supply your own interface to it by
416pushing, before the first watcher gets created, the package name of
417the event module and the package name of the interface to use onto
418C<@AnyEvent::REGISTRY>. You can do that before and even without loading
419AnyEvent.
420
421Example:
422
423 push @AnyEvent::REGISTRY, [urxvt => urxvt::anyevent::];
424
425This tells AnyEvent to (literally) use the C<urxvt::anyevent::>
426package/class when it finds the C<urxvt> package/module is loaded. When
427AnyEvent is loaded and asked to find a suitable event model, it will
428first check for the presence of urxvt.
429
430The class should provide implementations for all watcher types (see
431L<AnyEvent::Impl::Event> (source code), L<AnyEvent::Impl::Glib>
432(Source code) and so on for actual examples, use C<perldoc -m
433AnyEvent::Impl::Glib> to see the sources).
434
435The above isn't fictitious, the I<rxvt-unicode> (a.k.a. urxvt)
436uses the above line as-is. An interface isn't included in AnyEvent
437because it doesn't make sense outside the embedded interpreter inside
438I<rxvt-unicode>, and it is updated and maintained as part of the
439I<rxvt-unicode> distribution.
440
441I<rxvt-unicode> also cheats a bit by not providing blocking access to
442condition variables: code blocking while waiting for a condition will
443C<die>. This still works with most modules/usages, and blocking calls must
444not be in an interactive appliation, so it makes sense.
445
446=head1 ENVIRONMENT VARIABLES
447
448The following environment variables are used by this module:
449
450C<PERL_ANYEVENT_VERBOSE> when set to C<2> or higher, reports which event
451model gets used.
452
453=head1 EXAMPLE
454
455The following program uses an io watcher to read data from stdin, a timer
456to display a message once per second, and a condvar to exit the program
457when the user enters quit:
458
459 use AnyEvent;
460
461 my $cv = AnyEvent->condvar;
462
463 my $io_watcher = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub {
464 warn "io event <$_[0]>\n"; # will always output <r>
465 chomp (my $input = <STDIN>); # read a line
466 warn "read: $input\n"; # output what has been read
467 $cv->broadcast if $input =~ /^q/i; # quit program if /^q/i
468 });
469
470 my $time_watcher; # can only be used once
471
472 sub new_timer {
473 $timer = AnyEvent->timer (after => 1, cb => sub {
474 warn "timeout\n"; # print 'timeout' about every second
475 &new_timer; # and restart the time
476 });
477 }
478
479 new_timer; # create first timer
480
481 $cv->wait; # wait until user enters /^q/i
482
483=head1 REAL-WORLD EXAMPLE
484
485Consider the L<Net::FCP> module. It features (among others) the following
486API calls, which are to freenet what HTTP GET requests are to http:
487
488 my $data = $fcp->client_get ($url); # blocks
489
490 my $transaction = $fcp->txn_client_get ($url); # does not block
491 $transaction->cb ( sub { ... } ); # set optional result callback
492 my $data = $transaction->result; # possibly blocks
493
494The C<client_get> method works like C<LWP::Simple::get>: it requests the
495given URL and waits till the data has arrived. It is defined to be:
496
497 sub client_get { $_[0]->txn_client_get ($_[1])->result }
498
499And in fact is automatically generated. This is the blocking API of
500L<Net::FCP>, and it works as simple as in any other, similar, module.
501
502More complicated is C<txn_client_get>: It only creates a transaction
503(completion, result, ...) object and initiates the transaction.
504
505 my $txn = bless { }, Net::FCP::Txn::;
506
507It also creates a condition variable that is used to signal the completion
508of the request:
509
510 $txn->{finished} = AnyAvent->condvar;
511
512It then creates a socket in non-blocking mode.
513
514 socket $txn->{fh}, ...;
515 fcntl $txn->{fh}, F_SETFL, O_NONBLOCK;
516 connect $txn->{fh}, ...
517 and !$!{EWOULDBLOCK}
518 and !$!{EINPROGRESS}
519 and Carp::croak "unable to connect: $!\n";
520
521Then it creates a write-watcher which gets called whenever an error occurs
522or the connection succeeds:
523
524 $txn->{w} = AnyEvent->io (fh => $txn->{fh}, poll => 'w', cb => sub { $txn->fh_ready_w });
525
526And returns this transaction object. The C<fh_ready_w> callback gets
527called as soon as the event loop detects that the socket is ready for
528writing.
529
530The C<fh_ready_w> method makes the socket blocking again, writes the
531request data and replaces the watcher by a read watcher (waiting for reply
532data). The actual code is more complicated, but that doesn't matter for
533this example:
534
535 fcntl $txn->{fh}, F_SETFL, 0;
536 syswrite $txn->{fh}, $txn->{request}
537 or die "connection or write error";
538 $txn->{w} = AnyEvent->io (fh => $txn->{fh}, poll => 'r', cb => sub { $txn->fh_ready_r });
539
540Again, C<fh_ready_r> waits till all data has arrived, and then stores the
541result and signals any possible waiters that the request ahs finished:
542
543 sysread $txn->{fh}, $txn->{buf}, length $txn->{$buf};
544
545 if (end-of-file or data complete) {
546 $txn->{result} = $txn->{buf};
547 $txn->{finished}->broadcast;
548 $txb->{cb}->($txn) of $txn->{cb}; # also call callback
549 }
550
551The C<result> method, finally, just waits for the finished signal (if the
552request was already finished, it doesn't wait, of course, and returns the
553data:
554
555 $txn->{finished}->wait;
556 return $txn->{result};
557
558The actual code goes further and collects all errors (C<die>s, exceptions)
559that occured during request processing. The C<result> method detects
560wether an exception as thrown (it is stored inside the $txn object)
561and just throws the exception, which means connection errors and other
562problems get reported tot he code that tries to use the result, not in a
563random callback.
564
565All of this enables the following usage styles:
566
5671. Blocking:
568
569 my $data = $fcp->client_get ($url);
570
5712. Blocking, but parallelizing:
572
573 my @datas = map $_->result,
574 map $fcp->txn_client_get ($_),
575 @urls;
576
577Both blocking examples work without the module user having to know
578anything about events.
579
5803a. Event-based in a main program, using any support Event module:
581
582 use Event;
583
584 $fcp->txn_client_get ($url)->cb (sub {
585 my $txn = shift;
586 my $data = $txn->result;
587 ...
588 });
589
590 Event::loop;
591
5923b. The module user could use AnyEvent, too:
593
594 use AnyEvent;
595
596 my $quit = AnyEvent->condvar;
597
598 $fcp->txn_client_get ($url)->cb (sub {
599 ...
600 $quit->broadcast;
601 });
602
603 $quit->wait;
604
605=head1 SEE ALSO
606
607Event modules: L<Coro::Event>, L<Coro>, L<Event>, L<Glib::Event>, L<Glib>.
608
609Implementations: L<AnyEvent::Impl::Coro>, L<AnyEvent::Impl::Event>, L<AnyEvent::Impl::Glib>, L<AnyEvent::Impl::Tk>.
610
611Nontrivial usage example: L<Net::FCP>.
612
613=head1
614
615=cut
616
6171
618

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines