-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathevent_loop-libev.cpp
443 lines (372 loc) · 11.5 KB
/
event_loop-libev.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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
#include <cstdio>
#include <algorithm>
#include <pthread.h>
#include "event_loop.hpp"
#ifdef UTILS_EVENT_LOOP_BACKEND_LIBEV
namespace utils {
//{{{ Structors of xx_impl::entry
namespace xx_impl
{
event_entry::event_entry() {}
#define PERFORM_ON_FUNCS_I9X9CQ21RH(MACRO) \
switch (type) \
{ \
case event_type::io: \
case event_type::signal: \
MACRO(io_); \
break; \
\
case event_type::io_simple: \
case event_type::signal_simple: \
MACRO(io_simple_); \
break; \
\
case event_type::delay: \
case event_type::delay_imm: \
MACRO(delay_); \
break; \
\
case event_type::repeat: \
case event_type::repeat_imm: \
MACRO(repeat_); \
break; \
\
case event_type::delay_simple: \
case event_type::delay_imm_simple: \
case event_type::repeat_simple: \
case event_type::repeat_imm_simple: \
MACRO(timer_simple_); \
break; \
\
default: \
break; \
}
#define DESTROY_FUNC_OREMUDH6SC(Prefix) \
Prefix##callback.~Prefix##func()
#define MOVE_FUNC_LTPS9ZCP03S(Prefix) \
new(&Prefix##callback) Prefix##func(std::move(other.Prefix##callback))
event_entry::~event_entry()
{
PERFORM_ON_FUNCS_I9X9CQ21RH(DESTROY_FUNC_OREMUDH6SC)
}
event_entry::event_entry(event_entry&& other)
: type(other.type)
{
PERFORM_ON_FUNCS_I9X9CQ21RH(MOVE_FUNC_LTPS9ZCP03S)
switch (type)
{
case event_type::io:
case event_type::io_simple:
io_watcher = std::move(other.io_watcher);
break;
case event_type::signal:
case event_type::signal_simple:
signal_watcher = std::move(other.signal_watcher);
break;
case event_type::delay:
case event_type::delay_simple:
case event_type::repeat:
case event_type::repeat_simple:
timer_watcher = std::move(other.timer_watcher);
break;
default:
break;
}
}
}
//}}}
//{{{ Event registration.
namespace xx_impl
{
static constexpr int watcher_type_io = 1;
static constexpr int watcher_type_signal = 2;
static constexpr int watcher_type_timer = 3;
}
#define STORE_EVENT_EEBHGKGNTWN(EntryType, CallbackType) \
auto handle = _event_counter ++; \
\
xx_impl::event_entry entry; \
new(&entry.CallbackType##_callback) xx_impl::CallbackType##_func(std::move(callback)); \
entry.type = xx_impl::event_type::EntryType; \
\
_events.push_front(std::move(entry)); \
_map.emplace(handle, _events.begin())
#define START_LIBEV_EVENT_4LEMEBLRCSS(LibEVType, ...) \
auto watcher = &(_events.front().LibEVType##_watcher); \
ev_##LibEVType##_init(watcher, [](struct ev_loop* loop, ev_##LibEVType* watcher, int) \
{ \
auto this_ = static_cast<event_loop*>(ev_userdata(loop)); \
auto handle = reinterpret_cast<event_handle>(watcher->data); \
this_->call(handle, watcher, xx_impl::watcher_type_##LibEVType); \
}, __VA_ARGS__); \
watcher->data = reinterpret_cast<void*>(handle); \
ev_##LibEVType##_start(_loop, watcher)
event_handle event_loop::listen_impl(int fd, xx_impl::io_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(io, io);
START_LIBEV_EVENT_4LEMEBLRCSS(io, fd, EV_READ);
return handle;
}
event_handle event_loop::listen_impl(int fd, xx_impl::io_simple_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(io_simple, io_simple);
START_LIBEV_EVENT_4LEMEBLRCSS(io, fd, EV_READ);
return handle;
}
event_handle event_loop::signal_impl(int signum, xx_impl::io_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(signal, io);
START_LIBEV_EVENT_4LEMEBLRCSS(signal, signum);
return handle;
}
event_handle event_loop::signal_impl(int signum, xx_impl::io_simple_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(signal_simple, io_simple);
START_LIBEV_EVENT_4LEMEBLRCSS(signal, signum);
return handle;
}
event_handle event_loop::delay_impl(ev_tstamp after, xx_impl::delay_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(delay, delay);
START_LIBEV_EVENT_4LEMEBLRCSS(timer, after, after);
return handle;
}
event_handle event_loop::delay_impl(ev_tstamp after, xx_impl::timer_simple_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(delay_simple, timer_simple);
START_LIBEV_EVENT_4LEMEBLRCSS(timer, after, after);
return handle;
}
event_handle event_loop::repeat_impl(ev_tstamp rep, xx_impl::repeat_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(repeat, repeat);
START_LIBEV_EVENT_4LEMEBLRCSS(timer, rep, rep);
return handle;
}
event_handle event_loop::repeat_impl(ev_tstamp rep, xx_impl::timer_simple_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(repeat_simple, timer_simple);
START_LIBEV_EVENT_4LEMEBLRCSS(timer, rep, rep);
return handle;
}
#undef START_LIBEV_EVENT_4LEMEBLRCSS
event_handle event_loop::delay_imm_impl(xx_impl::delay_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(delay_imm, delay);
start_imm_watcher();
return handle;
}
event_handle event_loop::delay_imm_impl(xx_impl::timer_simple_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(delay_imm_simple, timer_simple);
start_imm_watcher();
return handle;
}
event_handle event_loop::repeat_imm_impl(xx_impl::repeat_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(repeat_imm, repeat);
start_imm_watcher();
return handle;
}
event_handle event_loop::repeat_imm_impl(xx_impl::timer_simple_func&& callback)
{
STORE_EVENT_EEBHGKGNTWN(repeat_imm_simple, timer_simple);
start_imm_watcher();
return handle;
}
#undef STORE_EVENT_EEBHGKGNTWN
//}}}
//{{{ Invocation
void event_loop::call(event_handle handle, void* watcher, int watcher_type)
{
auto map_it = _map.find(handle);
if (map_it != _map.end())
{
call_entry(handle, map_it);
return;
}
switch (watcher_type)
{
case xx_impl::watcher_type_io:
ev_io_stop(_loop, static_cast<ev_io*>(watcher));
break;
case xx_impl::watcher_type_signal:
ev_signal_stop(_loop, static_cast<ev_signal*>(watcher));
break;
case xx_impl::watcher_type_timer:
ev_timer_stop(_loop, static_cast<ev_timer*>(watcher));
break;
default:
break;
}
}
void event_loop::call_entry(event_handle handle, decltype(_map.begin()) map_it)
{
auto& entry = *(map_it->second);
switch (entry.type)
{
case xx_impl::event_type::io:
case xx_impl::event_type::signal:
{
int param;
if (entry.type == xx_impl::event_type::io)
param = entry.io_watcher.fd;
else
param = entry.signal_watcher.signum;
entry.io_callback(param, *this, handle);
break;
}
case xx_impl::event_type::io_simple:
case xx_impl::event_type::signal_simple:
{
int param;
if (entry.type == xx_impl::event_type::io_simple)
param = entry.io_watcher.fd;
else
param = entry.signal_watcher.signum;
entry.io_simple_callback(param);
break;
}
case xx_impl::event_type::delay:
case xx_impl::event_type::delay_imm:
{
bool keep = false;
entry.delay_callback(keep, *this, handle);
if (keep)
break;
else if (entry.type == xx_impl::event_type::delay)
goto erase_delay_handle;
else
goto erase_delay_imm_handle;
}
case xx_impl::event_type::delay_simple:
entry.timer_simple_callback();
erase_delay_handle:
if (_map.find(handle) == map_it)
{
ev_timer_stop(_loop, &(entry.timer_watcher));
_events.erase(map_it->second);
_map.erase(map_it);
}
break;
case xx_impl::event_type::delay_imm_simple:
entry.timer_simple_callback();
erase_delay_imm_handle:
if (_map.find(handle) == map_it)
{
_events.erase(map_it->second);
_map.erase(map_it);
}
break;
case xx_impl::event_type::repeat:
case xx_impl::event_type::repeat_imm:
entry.repeat_callback(*this, handle);
break;
case xx_impl::event_type::repeat_simple:
case xx_impl::event_type::repeat_imm_simple:
entry.timer_simple_callback();
break;
default:
break;
}
}
//}}}
//{{{ Immediate callbacks:
void event_loop::init_imm_watcher()
{
auto& watcher = _imm_watcher;
ev_idle_init(&watcher, [](struct ev_loop* loop, ev_idle* w, int)
{
auto this_ = static_cast<event_loop*>(ev_userdata(loop));
this_->call_imms();
});
}
void event_loop::start_imm_watcher()
{
auto& watcher = _imm_watcher;
if (ev_is_active(&watcher))
return;
ev_idle_start(_loop, &watcher);
}
static inline bool is_imm(const xx_impl::event_entry& entry) noexcept
{
auto type = entry.type;
return type == xx_impl::event_type::delay_imm
|| type == xx_impl::event_type::repeat_imm
|| type == xx_impl::event_type::delay_imm_simple
|| type == xx_impl::event_type::repeat_imm_simple;
}
void event_loop::call_imms()
{
auto cur = _map.begin();
auto end = _map.end();
while (cur != end)
{
auto prev = cur;
++ cur;
if (is_imm(*prev->second))
call_entry(prev->first, prev);
}
try_stop_imm_watcher();
}
void event_loop::try_stop_imm_watcher()
{
if (std::none_of(_events.begin(), _events.end(), is_imm))
{
auto& watcher = _imm_watcher;
ev_idle_stop(_loop, &watcher);
}
}
//}}}
void event_loop::cancel(event_handle handle)
{
bool do_try_stop_imm = false;
auto map_it = _map.find(handle);
if (map_it != _map.end())
{
auto& entry = *(map_it->second);
switch (entry.type)
{
case xx_impl::event_type::io:
case xx_impl::event_type::io_simple:
ev_io_stop(_loop, &(entry.io_watcher));
break;
case xx_impl::event_type::signal:
case xx_impl::event_type::signal_simple:
ev_signal_stop(_loop, &(entry.signal_watcher));
break;
case xx_impl::event_type::delay:
case xx_impl::event_type::delay_simple:
case xx_impl::event_type::repeat:
case xx_impl::event_type::repeat_simple:
ev_timer_stop(_loop, &(entry.timer_watcher));
break;
case xx_impl::event_type::delay_imm:
case xx_impl::event_type::delay_imm_simple:
case xx_impl::event_type::repeat_imm:
case xx_impl::event_type::repeat_imm_simple:
do_try_stop_imm = true;
break;
default:
break;
}
_events.erase(map_it->second);
_map.erase(map_it);
if (do_try_stop_imm)
try_stop_imm_watcher();
}
}
event_loop& get_main_loop()
{
#if defined(__GNUC__) && __GNUC__ <= 4
static __thread event_loop* loop;
static __thread pthread_once_t once;
pthread_once(&once, []{ loop = new event_loop(); });
return *loop;
#else
static thread_local event_loop loop;
return loop;
#endif
}
}
#endif