-
Notifications
You must be signed in to change notification settings - Fork 1
/
epoll.cpp
245 lines (194 loc) · 3.08 KB
/
epoll.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/epoll.h>
#include "ifconfig.h"
#include "epoll.h"
#ifdef __cplusplus
Lib_Epoll::Lib_Epoll(void)
: m_fd(-1)
, m_events(NULL)
, m_count(0)
, m_nums(0)
, m_listen(-1)
, m_ptr(NULL)
{
}
Lib_Epoll::~Lib_Epoll(void)
{
if(0 <= m_fd)
{
close(m_fd);
m_fd = -1;
}
if(NULL != m_events)
{
free(m_events);
m_events = NULL;
}
m_count = 0;
m_nums = 0;
m_listen = -1;
m_ptr = NULL;
}
bool Lib_Epoll::checkListen(int fd)
{
return m_listen == fd;
}
void Lib_Epoll::setPtr(void *ptr)
{
m_ptr = ptr;
}
void *Lib_Epoll::getPtr(void)
{
return m_ptr;
}
unsigned int Lib_Epoll::size(void)
{
return m_nums;
}
bool Lib_Epoll::ctl(int fd, bool is_add)
{
struct epoll_event ev;
if(0 > fd)
{
return false;
}
if(true == is_add)
{
if(0 != Lib_IfConfig::setSocketNonBlock(fd))
{
return false;
}
}
ev.data.fd = fd;
ev.events = EPOLLIN;
if(0 == epoll_ctl(m_fd, true == is_add ? EPOLL_CTL_ADD : EPOLL_CTL_DEL, fd, &ev))
{
if(true == is_add)
{
m_nums++;
}
else
{
m_nums--;
}
return true;
}
return false;
}
bool Lib_Epoll::add(int fd, bool is_listen)
{
bool ret = false;
ret = ctl(fd, true);
if(true == ret)
{
if(true == is_listen)
{
m_listen = fd;
}
}
return ret;
}
bool Lib_Epoll::del(int fd, bool is_close)
{
bool ret = false;
ret = ctl(fd, false);
if(true == ret)
{
if(m_listen == fd)
{
m_listen = -1;
}
if(true == is_close)
{
close(fd);
fd = -1;
}
}
return ret;
}
void Lib_Epoll::quit(void)
{
m_nums = 0;
}
bool Lib_Epoll::loop(void)
{
return 0 < m_nums;
}
void Lib_Epoll::wait(int timeout, void (*handle_call)(void *arg, int fd), void *arg)
{
int i = 0, epoll_events_count = 0;
epoll_events_count = epoll_wait(m_fd, m_events, m_count, timeout);
if(0 < epoll_events_count)
{
for(i = 0; epoll_events_count > i; i++)
{
handle_call(this, m_events[i].data.fd);
}
}
}
void Lib_Epoll::wait(int timeout, void (*handle_call)(Lib_Epoll *epoll, int fd, void *arg), void *arg)
{
int i = 0, epoll_events_count = 0;
epoll_events_count = epoll_wait(m_fd, m_events, m_count, timeout);
if(0 < epoll_events_count)
{
for(i = 0; epoll_events_count > i; i++)
{
handle_call(this, m_events[i].data.fd, arg);
}
}
}
int Lib_Epoll::waitSingle(int timeout)
{
if(0 < epoll_wait(m_fd, m_events, 1, timeout))
{
return m_events[0].data.fd;
}
return -1;
}
Lib_Epoll *Lib_Epoll::getObject(int count)
{
Lib_Epoll *obj = NULL;
// TODO: 检查参数
// TODO: 如果参数不合法,直接返回NULL到调用处
if(0 >= count || 1024 < count)
{
goto out;
}
obj = new Lib_Epoll();
if(NULL == obj)
{
goto out;
}
obj->m_fd = epoll_create1(0);
if(0 > obj->m_fd)
{
goto out1;
}
obj->m_events = (struct epoll_event *)malloc(sizeof(*obj->m_events) * count);
if(NULL == obj->m_events)
{
goto out2;
}
obj->m_count = count;
goto out;
out2:
if(0 <= obj->m_fd)
{
close(obj->m_fd);
obj->m_fd = -1;
}
out1:
if(NULL != obj)
{
delete obj;
obj = NULL;
}
out:
return obj;
}
#endif