-
Notifications
You must be signed in to change notification settings - Fork 9
/
loop.c
397 lines (318 loc) · 7.33 KB
/
loop.c
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
#include "loop.h"
#include "heapq.h"
#include "hashtable.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/time.h>
#define USEC_PER_SEC 1000000
#define NSEC_PER_SEC 1000000000
#define NSEC_PER_USEC 1000
#include "mux.h"
typedef struct event {
int id;
int tag;
int type;
int flag;
void *args;
loop_proc_t *proc;
} event_t;
typedef struct timer {
event_t event;
long seconds;
int nanoseconds;
} timer_t;
struct loop {
int stop;
int event_len;
int event_max;
event_t *event;
int timer_len;
int timer_max;
timer_t *timer;
void **timer_table;
struct mux *mux;
};
static int
timer_hash(const void *a)
{
const timer_t *timer = a;
return (timer->event.id + timer->event.tag + timer->event.type);
}
static int
timer_compare(const void *a, const void *b)
{
const timer_t *timera = a;
const timer_t *timerb = b;
if (timera->event.id == timerb->event.id &&
timera->event.tag == timerb->event.tag &&
timera->event.type == timerb->event.type)
{
return 0;
}
if (timera->seconds == timerb->seconds) {
if (timera->nanoseconds > timerb->nanoseconds) {
return 1;
}
if (timera->nanoseconds < timerb->nanoseconds) {
return -1;
}
return 1;
}
if (timera->seconds > timerb->seconds) {
return 1;
}
if (timera->seconds < timerb->seconds) {
return -1;
}
return 1;
}
int
timer_swap(void *args, void *a, void *b)
{
timer_t timer;
timer_t *timera = a;
timer_t *timerb = b;
loop_t *loop = args;
timer = *timera;
*timera = *timerb;
*timerb = timer;
hashtable_set(loop->timer_table, loop->timer_max * 2, timera,
timer_hash, timer_compare);
hashtable_set(loop->timer_table, loop->timer_max * 2, timerb,
timer_hash, timer_compare);
return 0;
}
int
loop_push_timer(loop_t *loop, timer_t *timer)
{
if (loop->timer_len == loop->timer_max) {
return LOOP_ERR;
}
loop->timer_len += 1;
heapq_push(loop->timer, loop->timer_len, sizeof(*timer), timer,
loop, timer_swap, timer_compare);
hashtable_set(loop->timer_table, loop->timer_max * 2, timer,
timer_hash, timer_compare);
return LOOP_OK;
}
int
loop_pop_timer(loop_t *loop, timer_t *timer)
{
while (loop->timer_len) {
heapq_pop(loop->timer, loop->timer_len--, sizeof(*timer), timer,
loop, timer_swap, timer_compare);
if (!(timer->event.flag & LOOP_FLAGS_INVALID)) {
return LOOP_OK;
}
}
return LOOP_ERR;
}
int
loop_set_timer(loop_t *loop, int id, int tag, int type, int flag,
long sec, int nsec, loop_proc_t *proc, void *args)
{
if (loop->timer_len == loop->timer_max) {
return LOOP_ERR;
}
timer_t *timer;
struct timeval now;
gettimeofday(&now, NULL);
timer = &loop->timer[loop->timer_len];
timer->event.id = id;
timer->event.tag = tag;
timer->event.type = type;
timer->event.flag = flag;
timer->event.proc = proc;
timer->event.args = args;
timer->seconds = now.tv_sec + sec;
timer->nanoseconds = now.tv_usec * NSEC_PER_USEC + nsec;
if (timer->nanoseconds >= NSEC_PER_SEC) {
timer->nanoseconds -= NSEC_PER_SEC;
timer->seconds++;
}
return loop_push_timer(loop, timer);
}
int
loop_del_timer(loop_t *loop, int id, int tag, int type)
{
timer_t timer;
timer_t *p;
timer.event.id = id;
timer.event.tag = tag;
timer.event.type = type;
p = hashtable_get(loop->timer_table, loop->timer_max * 2, &timer,
timer_hash, timer_compare);
if (p == NULL) {
return LOOP_ERR;
}
p->event.flag |= LOOP_FLAGS_INVALID;
return LOOP_OK;
}
int
loop_timer_nearest(loop_t *loop, timer_t *timer)
{
if (loop->timer_len > 0) {
*timer = loop->timer[0];
return LOOP_OK;
}
return LOOP_ERR;
}
int
loop_timer_dispatch(loop_t *loop)
{
int i;
timer_t timer;
struct timeval now;
for (i = 0;;i++) {
if (loop_pop_timer(loop, &timer) != LOOP_OK) {
break;
}
gettimeofday(&now, NULL);
if (now.tv_sec > timer.seconds ||
(now.tv_sec == timer.seconds &&
now.tv_usec >= timer.nanoseconds / NSEC_PER_USEC))
{
timer.event.proc(loop,
timer.event.id,
timer.event.tag,
timer.event.type,
timer.event.flag,
timer.event.args);
} else {
loop_push_timer(loop, &timer);
break;
}
}
return i;
}
loop_t *
loop_open(int event_max, int timer_max)
{
loop_t *loop = NULL;
if (event_max < 0 || timer_max < 0) {
return NULL;
}
loop = malloc(sizeof(loop_t));
if (loop == NULL) {
return NULL;
}
memset(loop, 0, sizeof(loop_t));
loop->event = calloc(event_max, sizeof(event_t));
loop->event_max = event_max;
if (loop->event == NULL) {
goto err;
}
loop->timer = calloc(timer_max, sizeof(timer_t));
loop->timer_max = timer_max;
if (loop->timer == NULL) {
goto err;
}
loop->timer_table = calloc(timer_max * 2, sizeof(void *));
if (loop->timer_table == NULL) {
goto err;
}
if (mux_open(loop, event_max) != LOOP_OK) {
goto err;
}
return loop;
err:
free(loop->event);
free(loop->timer);
free(loop->timer_table);
mux_close(loop);
free(loop);
return NULL;
}
void
loop_close(loop_t *loop)
{
free(loop->event);
free(loop->timer);
free(loop->timer_table);
mux_close(loop);
free(loop);
}
int
loop_set_event(loop_t *loop, int fd, int tag, int type, int flag,
loop_proc_t *proc, void *args)
{
if (fd >= loop->event_max) {
return LOOP_ERR;
}
if ((type & LOOP_WRITE) == 0 && (type & LOOP_READ) == 0) {
return LOOP_ERR;
}
loop->event[fd].id = fd;
loop->event[fd].tag = tag;
loop->event[fd].flag = flag;
loop->event[fd].args = args;
loop->event[fd].proc = proc;
if (mux_set_event(loop, fd, tag, type) != LOOP_OK) {
return LOOP_ERR;
}
loop->event[fd].type |= type;
return LOOP_OK;
}
int
loop_del_event(loop_t *loop, int fd, int type)
{
if ((type & LOOP_WRITE) == 0 && (type & LOOP_READ) == 0) {
return LOOP_ERR;
}
if (mux_del_event(loop, fd, type) != LOOP_OK) {
return LOOP_ERR;
}
loop->event[fd].type &= ~type;
return LOOP_OK;
}
int
loop_start(loop_t *loop)
{
timer_t *timeout;
timer_t timer;
struct timeval now;
loop->stop = 0;
for (;!loop->stop;) {
timeout = NULL;
if (loop_timer_nearest(loop, &timer) == LOOP_OK) {
gettimeofday(&now, NULL);
if (now.tv_sec > timer.seconds ||
(now.tv_sec == timer.seconds &&
now.tv_usec >= timer.nanoseconds / NSEC_PER_USEC))
{
loop_timer_dispatch(loop);
continue;
}
timer.nanoseconds -= now.tv_usec * NSEC_PER_USEC;
if (timer.nanoseconds < 0) {
timer.nanoseconds += NSEC_PER_SEC;
timer.seconds--;
}
if (timer.seconds > now.tv_sec) {
timer.seconds -= now.tv_sec;
} else {
timer.seconds = 0;
}
timeout = &timer;
}
if (mux_polling(loop, timeout) != LOOP_OK) {
return LOOP_ERR;
}
}
/* loop stoped */
return LOOP_OK;
}
int
loop_stop(loop_t *loop)
{
loop->stop = 1;
return LOOP_OK;
}
#if defined(USE_KQUEUE)
#include "mux-kqueue.c"
#elif defined(USE_EPOLL)
#include "mux-epoll.c"
#else
#include "mux-select.c"
#endif