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

Comparing Coro/Event/Event.pm (file contents):
Revision 1.23 by pcg, Fri May 14 13:25:09 2004 UTC vs.
Revision 1.40 by root, Fri Nov 24 15:34:33 2006 UTC

32function - it will be managed by this module. 32function - it will be managed by this module.
33 33
34Your application should just create all necessary coroutines and then call 34Your application should just create all necessary coroutines and then call
35Coro::Event::loop. 35Coro::Event::loop.
36 36
37Please note that even programs or modules (such as
38L<Coro::Handle|Coro::Handle>) that use "traditional"
39event-based/continuation style will run more efficient with this module
40then when using only Event.
41
37=over 4 42=over 4
38 43
39=cut 44=cut
40 45
41package Coro::Event; 46package Coro::Event;
42 47
43BEGIN { eval { require warnings } && warnings->unimport ("uninitialized") } 48BEGIN { eval { require warnings } && warnings->unimport ("uninitialized") }
44 49
45use Carp; 50use Carp;
51no warnings;
46 52
47use Coro; 53use Coro;
54use Coro::Timer;
48use Event qw(loop unloop); # we are re-exporting this, cooool! 55use Event qw(loop unloop); # we are re-exporting this, cooool!
49 56
50use base 'Exporter'; 57use XSLoader;
51 58
59use base Exporter::;
60
52@EXPORT = qw(loop unloop sweep reschedule); 61our @EXPORT = qw(loop unloop sweep reschedule);
53 62
54BEGIN { 63BEGIN {
55 $VERSION = 0.97; 64 our $VERSION = 1.9;
56 65
57 local $^W = 0; # avoid redefine warning for Coro::ready; 66 local $^W = 0; # avoid redefine warning for Coro::ready;
58 67 XSLoader::load __PACKAGE__, $VERSION;
59 require DynaLoader;
60 push @ISA, 'DynaLoader';
61 bootstrap Coro::Event $VERSION;
62} 68}
63 69
64=item $w = Coro::Event->flavour(args...) 70=item $w = Coro::Event->flavour(args...)
65 71
66Create and return a watcher of the given type. 72Create and return a watcher of the given type.
148 154
149This is the version of C<loop> you should use instead of C<Event::loop> 155This is the version of C<loop> you should use instead of C<Event::loop>
150when using this module - it will ensure correct scheduling in the presence 156when using this module - it will ensure correct scheduling in the presence
151of events. 157of events.
152 158
153=begin comment
154
155Unlike loop's counterpart it is not an error when no watchers are active -
156loop silently returns in this case, as if unloop(undef) were called.
157
158=end comment
159
160=cut
161
162# no longer do something special - it's done internally now
163
164#sub loop(;$) {
165# #local $Coro::idle = $Coro::current;
166# #Coro::schedule; # become idle task, which is implicitly ready
167# &Event::loop;
168#}
169
170=item unloop([$result]) 159=item unloop([$result])
171 160
172Same as Event::unloop (provided here for your convinience only). 161Same as Event::unloop (provided here for your convinience only).
173 162
174=cut 163=cut
175 164
176$Coro::idle = new Coro sub { 165$Coro::idle = \&Event::one_event; # inefficient
177 while () {
178 Event::one_event; # inefficient
179 Coro::schedule;
180 }
181};
182
183# provide hooks for Coro::Timer
184
185package Coro::Timer;
186
187unless ($override) {
188 $override = 1;
189 *_new_timer = sub {
190 Event->timer(at => $_[0], cb => $_[1]);
191 };
192}
193 166
1941; 1671;
195 168
169=back
170
196=head1 AUTHOR 171=head1 AUTHOR
197 172
198 Marc Lehmann <pcg@goof.com> 173 Marc Lehmann <schmorp@schmorp.de>
199 http://www.goof.com/pcg/marc/ 174 http://home.schmorp.de/
200 175
201=cut 176=cut
202 177

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines