ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.pod
(Generate patch)

Comparing libev/ev.pod (file contents):
Revision 1.73 by root, Sat Dec 8 03:53:36 2007 UTC vs.
Revision 1.77 by root, Sat Dec 8 22:11:14 2007 UTC

486libev watchers. However, a pair of C<ev_prepare>/C<ev_check> watchers is 486libev watchers. However, a pair of C<ev_prepare>/C<ev_check> watchers is
487usually a better approach for this kind of thing. 487usually a better approach for this kind of thing.
488 488
489Here are the gory details of what C<ev_loop> does: 489Here are the gory details of what C<ev_loop> does:
490 490
491 - Before the first iteration, call any pending watchers.
491 * If there are no active watchers (reference count is zero), return. 492 * If there are no active watchers (reference count is zero), return.
492 - Queue prepare watchers and then call all outstanding watchers. 493 - Queue all prepare watchers and then call all outstanding watchers.
493 - If we have been forked, recreate the kernel state. 494 - If we have been forked, recreate the kernel state.
494 - Update the kernel state with all outstanding changes. 495 - Update the kernel state with all outstanding changes.
495 - Update the "event loop time". 496 - Update the "event loop time".
496 - Calculate for how long to block. 497 - Calculate for how long to block.
497 - Block the process, waiting for any events. 498 - Block the process, waiting for any events.
777 778
778Setting a priority outside the range of C<EV_MINPRI> to C<EV_MAXPRI> is 779Setting a priority outside the range of C<EV_MINPRI> to C<EV_MAXPRI> is
779fine, as long as you do not mind that the priority value you query might 780fine, as long as you do not mind that the priority value you query might
780or might not have been adjusted to be within valid range. 781or might not have been adjusted to be within valid range.
781 782
783=item ev_invoke (loop, ev_TYPE *watcher, int revents)
784
785Invoke the C<watcher> with the given C<loop> and C<revents>. Neither
786C<loop> nor C<revents> need to be valid as long as the watcher callback
787can deal with that fact.
788
789=item int ev_clear_pending (loop, ev_TYPE *watcher)
790
791If the watcher is pending, this function returns clears its pending status
792and returns its C<revents> bitset (as if its callback was invoked). If the
793watcher isn't pending it does nothing and returns C<0>.
794
782=back 795=back
783 796
784 797
785=head2 ASSOCIATING CUSTOM DATA WITH A WATCHER 798=head2 ASSOCIATING CUSTOM DATA WITH A WATCHER
786 799
1469with priority higher than or equal to the event loop and one coroutine 1482with priority higher than or equal to the event loop and one coroutine
1470of lower priority, but only once, using idle watchers to keep the event 1483of lower priority, but only once, using idle watchers to keep the event
1471loop from blocking if lower-priority coroutines are active, thus mapping 1484loop from blocking if lower-priority coroutines are active, thus mapping
1472low-priority coroutines to idle/background tasks). 1485low-priority coroutines to idle/background tasks).
1473 1486
1487It is recommended to give C<ev_check> watchers highest (C<EV_MAXPRI>)
1488priority, to ensure that they are being run before any other watchers
1489after the poll. Also, C<ev_check> watchers (and C<ev_prepare> watchers,
1490too) should not activate ("feed") events into libev. While libev fully
1491supports this, they will be called before other C<ev_check> watchers did
1492their job. As C<ev_check> watchers are often used to embed other event
1493loops those other event loops might be in an unusable state until their
1494C<ev_check> watcher ran (always remind yourself to coexist peacefully with
1495others).
1496
1474=over 4 1497=over 4
1475 1498
1476=item ev_prepare_init (ev_prepare *, callback) 1499=item ev_prepare_init (ev_prepare *, callback)
1477 1500
1478=item ev_check_init (ev_check *, callback) 1501=item ev_check_init (ev_check *, callback)
1481parameters of any kind. There are C<ev_prepare_set> and C<ev_check_set> 1504parameters of any kind. There are C<ev_prepare_set> and C<ev_check_set>
1482macros, but using them is utterly, utterly and completely pointless. 1505macros, but using them is utterly, utterly and completely pointless.
1483 1506
1484=back 1507=back
1485 1508
1486Example: To include a library such as adns, you would add IO watchers 1509There are a number of principal ways to embed other event loops or modules
1487and a timeout watcher in a prepare handler, as required by libadns, and 1510into libev. Here are some ideas on how to include libadns into libev
1511(there is a Perl module named C<EV::ADNS> that does this, which you could
1512use for an actually working example. Another Perl module named C<EV::Glib>
1513embeds a Glib main context into libev, and finally, C<Glib::EV> embeds EV
1514into the Glib event loop).
1515
1516Method 1: Add IO watchers and a timeout watcher in a prepare handler,
1488in a check watcher, destroy them and call into libadns. What follows is 1517and in a check watcher, destroy them and call into libadns. What follows
1489pseudo-code only of course: 1518is pseudo-code only of course. This requires you to either use a low
1519priority for the check watcher or use C<ev_clear_pending> explicitly, as
1520the callbacks for the IO/timeout watchers might not have been called yet.
1490 1521
1491 static ev_io iow [nfd]; 1522 static ev_io iow [nfd];
1492 static ev_timer tw; 1523 static ev_timer tw;
1493 1524
1494 static void 1525 static void
1495 io_cb (ev_loop *loop, ev_io *w, int revents) 1526 io_cb (ev_loop *loop, ev_io *w, int revents)
1496 { 1527 {
1497 // set the relevant poll flags
1498 // could also call adns_processreadable etc. here
1499 struct pollfd *fd = (struct pollfd *)w->data;
1500 if (revents & EV_READ ) fd->revents |= fd->events & POLLIN;
1501 if (revents & EV_WRITE) fd->revents |= fd->events & POLLOUT;
1502 } 1528 }
1503 1529
1504 // create io watchers for each fd and a timer before blocking 1530 // create io watchers for each fd and a timer before blocking
1505 static void 1531 static void
1506 adns_prepare_cb (ev_loop *loop, ev_prepare *w, int revents) 1532 adns_prepare_cb (ev_loop *loop, ev_prepare *w, int revents)
1512 1538
1513 /* the callback is illegal, but won't be called as we stop during check */ 1539 /* the callback is illegal, but won't be called as we stop during check */
1514 ev_timer_init (&tw, 0, timeout * 1e-3); 1540 ev_timer_init (&tw, 0, timeout * 1e-3);
1515 ev_timer_start (loop, &tw); 1541 ev_timer_start (loop, &tw);
1516 1542
1517 // create on ev_io per pollfd 1543 // create one ev_io per pollfd
1518 for (int i = 0; i < nfd; ++i) 1544 for (int i = 0; i < nfd; ++i)
1519 { 1545 {
1520 ev_io_init (iow + i, io_cb, fds [i].fd, 1546 ev_io_init (iow + i, io_cb, fds [i].fd,
1521 ((fds [i].events & POLLIN ? EV_READ : 0) 1547 ((fds [i].events & POLLIN ? EV_READ : 0)
1522 | (fds [i].events & POLLOUT ? EV_WRITE : 0))); 1548 | (fds [i].events & POLLOUT ? EV_WRITE : 0)));
1523 1549
1524 fds [i].revents = 0; 1550 fds [i].revents = 0;
1525 iow [i].data = fds + i;
1526 ev_io_start (loop, iow + i); 1551 ev_io_start (loop, iow + i);
1527 } 1552 }
1528 } 1553 }
1529 1554
1530 // stop all watchers after blocking 1555 // stop all watchers after blocking
1532 adns_check_cb (ev_loop *loop, ev_check *w, int revents) 1557 adns_check_cb (ev_loop *loop, ev_check *w, int revents)
1533 { 1558 {
1534 ev_timer_stop (loop, &tw); 1559 ev_timer_stop (loop, &tw);
1535 1560
1536 for (int i = 0; i < nfd; ++i) 1561 for (int i = 0; i < nfd; ++i)
1562 {
1563 // set the relevant poll flags
1564 // could also call adns_processreadable etc. here
1565 struct pollfd *fd = fds + i;
1566 int revents = ev_clear_pending (iow + i);
1567 if (revents & EV_READ ) fd->revents |= fd->events & POLLIN;
1568 if (revents & EV_WRITE) fd->revents |= fd->events & POLLOUT;
1569
1570 // now stop the watcher
1537 ev_io_stop (loop, iow + i); 1571 ev_io_stop (loop, iow + i);
1572 }
1538 1573
1539 adns_afterpoll (adns, fds, nfd, timeval_from (ev_now (loop)); 1574 adns_afterpoll (adns, fds, nfd, timeval_from (ev_now (loop));
1575 }
1576
1577Method 2: This would be just like method 1, but you run C<adns_afterpoll>
1578in the prepare watcher and would dispose of the check watcher.
1579
1580Method 3: If the module to be embedded supports explicit event
1581notification (adns does), you can also make use of the actual watcher
1582callbacks, and only destroy/create the watchers in the prepare watcher.
1583
1584 static void
1585 timer_cb (EV_P_ ev_timer *w, int revents)
1586 {
1587 adns_state ads = (adns_state)w->data;
1588 update_now (EV_A);
1589
1590 adns_processtimeouts (ads, &tv_now);
1591 }
1592
1593 static void
1594 io_cb (EV_P_ ev_io *w, int revents)
1595 {
1596 adns_state ads = (adns_state)w->data;
1597 update_now (EV_A);
1598
1599 if (revents & EV_READ ) adns_processreadable (ads, w->fd, &tv_now);
1600 if (revents & EV_WRITE) adns_processwriteable (ads, w->fd, &tv_now);
1601 }
1602
1603 // do not ever call adns_afterpoll
1604
1605Method 4: Do not use a prepare or check watcher because the module you
1606want to embed is too inflexible to support it. Instead, youc na override
1607their poll function. The drawback with this solution is that the main
1608loop is now no longer controllable by EV. The C<Glib::EV> module does
1609this.
1610
1611 static gint
1612 event_poll_func (GPollFD *fds, guint nfds, gint timeout)
1613 {
1614 int got_events = 0;
1615
1616 for (n = 0; n < nfds; ++n)
1617 // create/start io watcher that sets the relevant bits in fds[n] and increment got_events
1618
1619 if (timeout >= 0)
1620 // create/start timer
1621
1622 // poll
1623 ev_loop (EV_A_ 0);
1624
1625 // stop timer again
1626 if (timeout >= 0)
1627 ev_timer_stop (EV_A_ &to);
1628
1629 // stop io watchers again - their callbacks should have set
1630 for (n = 0; n < nfds; ++n)
1631 ev_io_stop (EV_A_ iow [n]);
1632
1633 return got_events;
1540 } 1634 }
1541 1635
1542 1636
1543=head2 C<ev_embed> - when one backend isn't enough... 1637=head2 C<ev_embed> - when one backend isn't enough...
1544 1638
1832 1926
1833 myclass obj; 1927 myclass obj;
1834 ev::io iow; 1928 ev::io iow;
1835 iow.set <myclass, &myclass::io_cb> (&obj); 1929 iow.set <myclass, &myclass::io_cb> (&obj);
1836 1930
1837=item w->set (void (*function)(watcher &w, int), void *data = 0) 1931=item w->set<function> (void *data = 0)
1838 1932
1839Also sets a callback, but uses a static method or plain function as 1933Also sets a callback, but uses a static method or plain function as
1840callback. The optional C<data> argument will be stored in the watcher's 1934callback. The optional C<data> argument will be stored in the watcher's
1841C<data> member and is free for you to use. 1935C<data> member and is free for you to use.
1842 1936
1937The prototype of the C<function> must be C<void (*)(ev::TYPE &w, int)>.
1938
1843See the method-C<set> above for more details. 1939See the method-C<set> above for more details.
1940
1941Example:
1942
1943 static void io_cb (ev::io &w, int revents) { }
1944 iow.set <io_cb> ();
1844 1945
1845=item w->set (struct ev_loop *) 1946=item w->set (struct ev_loop *)
1846 1947
1847Associates a different C<struct ev_loop> with this watcher. You can only 1948Associates a different C<struct ev_loop> with this watcher. You can only
1848do this when the watcher is inactive (and not pending either). 1949do this when the watcher is inactive (and not pending either).

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines