ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev_epoll.c
Revision: 1.10
Committed: Fri Nov 2 11:02:23 2007 UTC (16 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.9: +2 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.5 /*
2 root 1.9 * libev epoll fd activity backend
3     *
4 root 1.5 * 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    
32 root 1.1 #include <sys/epoll.h>
33    
34     static int epoll_fd = -1;
35    
36     static void
37 root 1.2 epoll_modify (int fd, int oev, int nev)
38 root 1.1 {
39 root 1.2 int mode = nev ? oev ? EPOLL_CTL_MOD : EPOLL_CTL_ADD : EPOLL_CTL_DEL;
40 root 1.1
41 root 1.2 struct epoll_event ev;
42     ev.data.fd = fd;
43     ev.events =
44     (nev & EV_READ ? EPOLLIN : 0)
45     | (nev & EV_WRITE ? EPOLLOUT : 0);
46    
47 root 1.4 epoll_ctl (epoll_fd, mode, fd, &ev);
48 root 1.1 }
49    
50 root 1.6 static void
51     epoll_postfork_child (void)
52 root 1.1 {
53 root 1.2 int fd;
54 root 1.1
55     epoll_fd = epoll_create (256);
56 root 1.3 fcntl (epoll_fd, F_SETFD, FD_CLOEXEC);
57 root 1.1
58 root 1.2 /* re-register interest in fds */
59     for (fd = 0; fd < anfdmax; ++fd)
60 root 1.8 if (anfds [fd].events)//D
61 root 1.7 epoll_modify (fd, EV_NONE, anfds [fd].events);
62 root 1.1 }
63    
64     static struct epoll_event *events;
65     static int eventmax;
66    
67 root 1.6 static void
68     epoll_poll (ev_tstamp timeout)
69 root 1.1 {
70     int eventcnt = epoll_wait (epoll_fd, events, eventmax, ceil (timeout * 1000.));
71     int i;
72    
73     if (eventcnt < 0)
74     return;
75    
76     for (i = 0; i < eventcnt; ++i)
77     fd_event (
78     events [i].data.fd,
79 root 1.2 (events [i].events & (EPOLLOUT | EPOLLERR | EPOLLHUP) ? EV_WRITE : 0)
80     | (events [i].events & (EPOLLIN | EPOLLERR | EPOLLHUP) ? EV_READ : 0)
81 root 1.1 );
82    
83     /* if the receive array was full, increase its size */
84 root 1.10 if (expect_false (eventcnt == eventmax))
85 root 1.1 {
86     free (events);
87 root 1.10 eventmax = array_roundsize (events, eventmax << 1);
88 root 1.1 events = malloc (sizeof (struct epoll_event) * eventmax);
89     }
90     }
91    
92 root 1.6 static void
93     epoll_init (int flags)
94 root 1.1 {
95     epoll_fd = epoll_create (256);
96    
97     if (epoll_fd < 0)
98 root 1.3 return;
99    
100     fcntl (epoll_fd, F_SETFD, FD_CLOEXEC);
101 root 1.1
102 root 1.3 ev_method = EVMETHOD_EPOLL;
103 root 1.2 method_fudge = 1e-3; /* needed to compensate for epoll returning early */
104     method_modify = epoll_modify;
105     method_poll = epoll_poll;
106 root 1.1
107     eventmax = 64; /* intiial number of events receivable per poll */
108     events = malloc (sizeof (struct epoll_event) * eventmax);
109     }
110 root 1.6