ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/EV/EV.pm
Revision: 1.31
Committed: Sat Nov 22 07:30:46 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.30: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 =head1 NAME
2
3 Coro::EV - do events the coro-way, with EV
4
5 =head1 SYNOPSIS
6
7 use Coro;
8 use Coro::EV;
9
10 EV::loop;
11
12 =head1 DESCRIPTION
13
14 This module does two things: First, it offers some utility functions that
15 might be useful for coroutines, and secondly, it integrates Coro into the
16 EV main loop:
17
18 Before the process blocks (in EV::loop) to wait for events, this module
19 will schedule and run all ready (= runnable) coroutines of the same or
20 higher priority. After that, it will cede once to a coroutine of lower
21 priority, then continue in the event loop.
22
23 That means that coroutines with the same or higher pripority as the
24 coroutine running the main loop will inhibit event processing, while
25 coroutines of lower priority will get the CPU, but cannot completeley
26 inhibit event processing.
27
28 =head2 RUNNING WITH OR WITHOUT A MAINLOOP
29
30 In general, you should always run EV::loop, either in your main program,
31 or in a separate coroutine. If you don't do that and all coroutines start
32 waiting for some events, this module will run the event loop once, but
33 this is very inefficient.
34
35 =head1 FUNCTIONS
36
37 =over 4
38
39 =cut
40
41 package Coro::EV;
42
43 no warnings;
44 use strict;
45
46 use Carp;
47 no warnings;
48
49 use Coro;
50
51 use EV ();
52 use XSLoader;
53
54 BEGIN {
55 our $VERSION = "5.0";
56
57 local $^W = 0; # avoid redefine warning for Coro::ready;
58 XSLoader::load __PACKAGE__, $VERSION;
59 }
60
61 our $IDLE = new Coro sub {
62 while () {
63 &_loop_oneshot;
64 &Coro::schedule;
65 }
66 };
67 $IDLE->{desc} = "[EV idle process]";
68
69 $Coro::idle = sub { $IDLE->ready };
70
71 =item $revents = Coro::EV::timed_io_once $fileno_or_fh, $events, $timeout
72
73 Blocks the coroutine until either the given event set has occured on the
74 fd, or the timeout has been reached (if timeout is zero, there is no
75 timeout). Returns the received flags.
76
77 =item Coro::EV::timer_once $after
78
79 Blocks the coroutine for at least C<$after> seconds.
80
81 =cut
82
83 1;
84
85 =back
86
87 =head1 AUTHOR
88
89 Marc Lehmann <schmorp@schmorp.de>
90 http://home.schmorp.de/
91
92 =cut
93