1 |
/* |
2 |
* libev select 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 |
|
32 |
/* for broken bsd's */ |
33 |
#include <sys/time.h> |
34 |
#include <sys/types.h> |
35 |
#include <unistd.h> |
36 |
|
37 |
/* for unix systems */ |
38 |
#ifndef WIN32 |
39 |
# include <sys/select.h> |
40 |
#endif |
41 |
|
42 |
#include <string.h> |
43 |
#include <inttypes.h> |
44 |
|
45 |
static unsigned char *vec_ri, *vec_ro, *vec_wi, *vec_wo; |
46 |
static int vec_max; |
47 |
|
48 |
static void |
49 |
select_modify (int fd, int oev, int nev) |
50 |
{ |
51 |
int offs = fd >> 3; |
52 |
int mask = 1 << (fd & 7); |
53 |
|
54 |
if (vec_max < (fd >> 5) + 1) |
55 |
{ |
56 |
int new_max = (fd >> 5) + 1; |
57 |
|
58 |
vec_ri = (unsigned char *)realloc (vec_ri, new_max * 4); |
59 |
vec_ro = (unsigned char *)realloc (vec_ro, new_max * 4); /* could free/malloc */ |
60 |
vec_wi = (unsigned char *)realloc (vec_wi, new_max * 4); |
61 |
vec_wo = (unsigned char *)realloc (vec_wo, new_max * 4); /* could free/malloc */ |
62 |
|
63 |
for (; vec_max < new_max; ++vec_max) |
64 |
((uint32_t *)vec_ri)[vec_max] = |
65 |
((uint32_t *)vec_wi)[vec_max] = 0; |
66 |
} |
67 |
|
68 |
vec_ri [offs] |= mask; |
69 |
if (!(nev & EV_READ)) |
70 |
vec_ri [offs] &= ~mask; |
71 |
|
72 |
vec_wi [offs] |= mask; |
73 |
if (!(nev & EV_WRITE)) |
74 |
vec_wi [offs] &= ~mask; |
75 |
} |
76 |
|
77 |
static void |
78 |
select_poll (ev_tstamp timeout) |
79 |
{ |
80 |
struct timeval tv; |
81 |
int res; |
82 |
|
83 |
memcpy (vec_ro, vec_ri, vec_max * 4); |
84 |
memcpy (vec_wo, vec_wi, vec_max * 4); |
85 |
|
86 |
tv.tv_sec = (long)timeout; |
87 |
tv.tv_usec = (long)((timeout - (ev_tstamp)tv.tv_sec) * 1e6); |
88 |
|
89 |
res = select (vec_max * 32, (fd_set *)vec_ro, (fd_set *)vec_wo, 0, &tv); |
90 |
|
91 |
if (res > 0) |
92 |
{ |
93 |
int word, offs; |
94 |
|
95 |
for (word = vec_max; word--; ) |
96 |
{ |
97 |
if (((uint32_t *)vec_ro) [word] | ((uint32_t *)vec_wo) [word]) |
98 |
for (offs = 4; offs--; ) |
99 |
{ |
100 |
int idx = word * 4 + offs; |
101 |
unsigned char byte_r = vec_ro [idx]; |
102 |
unsigned char byte_w = vec_wo [idx]; |
103 |
int bit; |
104 |
|
105 |
if (byte_r | byte_w) |
106 |
for (bit = 8; bit--; ) |
107 |
{ |
108 |
int events = 0; |
109 |
events |= byte_r & (1 << bit) ? EV_READ : 0; |
110 |
events |= byte_w & (1 << bit) ? EV_WRITE : 0; |
111 |
|
112 |
if (events) |
113 |
fd_event (idx * 8 + bit, events); |
114 |
} |
115 |
} |
116 |
} |
117 |
} |
118 |
else if (res < 0) |
119 |
{ |
120 |
if (errno == EBADF) |
121 |
fd_ebadf (); |
122 |
else if (errno == ENOMEM) |
123 |
fd_enomem (); |
124 |
} |
125 |
} |
126 |
|
127 |
static void |
128 |
select_init (int flags) |
129 |
{ |
130 |
ev_method = EVMETHOD_SELECT; |
131 |
method_fudge = 1e-2; /* needed to compensate for select returning early, very conservative */ |
132 |
method_modify = select_modify; |
133 |
method_poll = select_poll; |
134 |
} |
135 |
|