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

Comparing libev/ev_epoll.c (file contents):
Revision 1.3 by root, Wed Oct 31 00:24:16 2007 UTC vs.
Revision 1.16 by root, Sun Nov 4 18:29:44 2007 UTC

1/*
2 * libev epoll fd activity backend
3 *
4 * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
1#include <sys/epoll.h> 32#include <sys/epoll.h>
2 33
3static int epoll_fd = -1;
4
5static void 34static void
6epoll_modify (int fd, int oev, int nev) 35epoll_modify (EV_P_ int fd, int oev, int nev)
7{ 36{
8 int mode = nev ? oev ? EPOLL_CTL_MOD : EPOLL_CTL_ADD : EPOLL_CTL_DEL; 37 int mode = nev ? oev ? EPOLL_CTL_MOD : EPOLL_CTL_ADD : EPOLL_CTL_DEL;
9 38
10 struct epoll_event ev; 39 struct epoll_event ev;
11 ev.data.fd = fd; 40 ev.data.u64 = fd; /* use u64 to fully initialise the struct, for nicer strace etc. */
12 ev.events = 41 ev.events =
13 (nev & EV_READ ? EPOLLIN : 0) 42 (nev & EV_READ ? EPOLLIN : 0)
14 | (nev & EV_WRITE ? EPOLLOUT : 0); 43 | (nev & EV_WRITE ? EPOLLOUT : 0);
15 44
16 fprintf (stderr, "reify %d,%d,%d m%d (r=%d)\n", fd, oev, nev, mode,//D
17 epoll_ctl (epoll_fd, mode, fd, &ev) 45 epoll_ctl (epoll_fd, mode, fd, &ev);
18 );//D
19} 46}
20 47
21void epoll_postfork_child (void) 48static void
49epoll_poll (EV_P_ ev_tstamp timeout)
22{ 50{
23 int fd;
24
25 epoll_fd = epoll_create (256);
26 fcntl (epoll_fd, F_SETFD, FD_CLOEXEC);
27
28 /* re-register interest in fds */
29 for (fd = 0; fd < anfdmax; ++fd)
30 if (anfds [fd].wev)
31 epoll_modify (fd, EV_NONE, anfds [fd].wev);
32}
33
34static struct epoll_event *events;
35static int eventmax;
36
37static void epoll_poll (ev_tstamp timeout)
38{
39 int eventcnt = epoll_wait (epoll_fd, events, eventmax, ceil (timeout * 1000.)); 51 int eventcnt = epoll_wait (epoll_fd, epoll_events, epoll_eventmax, ceil (timeout * 1000.));
40 int i; 52 int i;
41 53
42 if (eventcnt < 0) 54 if (eventcnt < 0)
43 return; 55 return;
44 56
45 for (i = 0; i < eventcnt; ++i) 57 for (i = 0; i < eventcnt; ++i)
46 fd_event ( 58 fd_event (
59 EV_A_
47 events [i].data.fd, 60 epoll_events [i].data.u64,
48 (events [i].events & (EPOLLOUT | EPOLLERR | EPOLLHUP) ? EV_WRITE : 0) 61 (epoll_events [i].events & (EPOLLOUT | EPOLLERR | EPOLLHUP) ? EV_WRITE : 0)
49 | (events [i].events & (EPOLLIN | EPOLLERR | EPOLLHUP) ? EV_READ : 0) 62 | (epoll_events [i].events & (EPOLLIN | EPOLLERR | EPOLLHUP) ? EV_READ : 0)
50 ); 63 );
51 64
52 /* if the receive array was full, increase its size */ 65 /* if the receive array was full, increase its size */
53 if (eventcnt == eventmax) 66 if (expect_false (eventcnt == epoll_eventmax))
54 { 67 {
55 free (events); 68 free (epoll_events);
56 eventmax += eventmax >> 1; 69 epoll_eventmax = array_roundsize (epoll_events, epoll_eventmax << 1);
57 events = malloc (sizeof (struct epoll_event) * eventmax); 70 epoll_events = malloc (sizeof (struct epoll_event) * epoll_eventmax);
58 } 71 }
59} 72}
60 73
74static int
61void epoll_init (int flags) 75epoll_init (EV_P_ int flags)
62{ 76{
63 epoll_fd = epoll_create (256); 77 epoll_fd = epoll_create (256);
64 78
65 if (epoll_fd < 0) 79 if (epoll_fd < 0)
66 return; 80 return 0;
67 81
68 fcntl (epoll_fd, F_SETFD, FD_CLOEXEC); 82 fcntl (epoll_fd, F_SETFD, FD_CLOEXEC);
69 83
70 ev_method = EVMETHOD_EPOLL;
71 method_fudge = 1e-3; /* needed to compensate for epoll returning early */ 84 method_fudge = 1e-3; /* needed to compensate for epoll returning early */
72 method_modify = epoll_modify; 85 method_modify = epoll_modify;
73 method_poll = epoll_poll; 86 method_poll = epoll_poll;
74 87
75 eventmax = 64; /* intiial number of events receivable per poll */ 88 epoll_eventmax = 64; /* intiial number of events receivable per poll */
76 events = malloc (sizeof (struct epoll_event) * eventmax); 89 epoll_events = malloc (sizeof (struct epoll_event) * epoll_eventmax);
90
91 return EVMETHOD_EPOLL;
77} 92}
93
94static void
95epoll_destroy (EV_P)
96{
97 close (epoll_fd);
98
99 free (epoll_events);
100}
101
102static void
103epoll_fork (EV_P)
104{
105 epoll_fd = epoll_create (256);
106 fcntl (epoll_fd, F_SETFD, FD_CLOEXEC);
107
108 fd_rearm_all (EV_A);
109}
110

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines