]>
git.saurik.com Git - redis.git/blob - src/ae.c
1 /* A simple event-driven programming library. Originally I wrote this code
2 * for the Jim's event-loop (Jim is a Tcl interpreter) but later translated
3 * it in form of a library for easy reuse.
5 * Copyright (c) 2006-2010, Salvatore Sanfilippo <antirez at gmail dot com>
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
11 * * Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * * Neither the name of Redis nor the names of its contributors may be used
17 * to endorse or promote products derived from this software without
18 * specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
35 #include <sys/types.h>
46 /* Include the best multiplexing layer supported by this system.
47 * The following should be ordered by performances, descending. */
49 #include "ae_evport.c"
55 #include "ae_kqueue.c"
57 #include "ae_select.c"
62 aeEventLoop
*aeCreateEventLoop(int setsize
) {
63 aeEventLoop
*eventLoop
;
66 if ((eventLoop
= zmalloc(sizeof(*eventLoop
))) == NULL
) goto err
;
67 eventLoop
->events
= zmalloc(sizeof(aeFileEvent
)*setsize
);
68 eventLoop
->fired
= zmalloc(sizeof(aeFiredEvent
)*setsize
);
69 if (eventLoop
->events
== NULL
|| eventLoop
->fired
== NULL
) goto err
;
70 eventLoop
->setsize
= setsize
;
71 eventLoop
->lastTime
= time(NULL
);
72 eventLoop
->timeEventHead
= NULL
;
73 eventLoop
->timeEventNextId
= 0;
75 eventLoop
->maxfd
= -1;
76 eventLoop
->beforesleep
= NULL
;
77 if (aeApiCreate(eventLoop
) == -1) goto err
;
78 /* Events with mask == AE_NONE are not set. So let's initialize the
80 for (i
= 0; i
< setsize
; i
++)
81 eventLoop
->events
[i
].mask
= AE_NONE
;
86 zfree(eventLoop
->events
);
87 zfree(eventLoop
->fired
);
93 void aeDeleteEventLoop(aeEventLoop
*eventLoop
) {
95 zfree(eventLoop
->events
);
96 zfree(eventLoop
->fired
);
100 void aeStop(aeEventLoop
*eventLoop
) {
104 int aeCreateFileEvent(aeEventLoop
*eventLoop
, int fd
, int mask
,
105 aeFileProc
*proc
, void *clientData
)
107 if (fd
>= eventLoop
->setsize
) return AE_ERR
;
108 aeFileEvent
*fe
= &eventLoop
->events
[fd
];
110 if (aeApiAddEvent(eventLoop
, fd
, mask
) == -1)
113 if (mask
& AE_READABLE
) fe
->rfileProc
= proc
;
114 if (mask
& AE_WRITABLE
) fe
->wfileProc
= proc
;
115 fe
->clientData
= clientData
;
116 if (fd
> eventLoop
->maxfd
)
117 eventLoop
->maxfd
= fd
;
121 void aeDeleteFileEvent(aeEventLoop
*eventLoop
, int fd
, int mask
)
123 if (fd
>= eventLoop
->setsize
) return;
124 aeFileEvent
*fe
= &eventLoop
->events
[fd
];
126 if (fe
->mask
== AE_NONE
) return;
127 fe
->mask
= fe
->mask
& (~mask
);
128 if (fd
== eventLoop
->maxfd
&& fe
->mask
== AE_NONE
) {
129 /* Update the max fd */
132 for (j
= eventLoop
->maxfd
-1; j
>= 0; j
--)
133 if (eventLoop
->events
[j
].mask
!= AE_NONE
) break;
134 eventLoop
->maxfd
= j
;
136 aeApiDelEvent(eventLoop
, fd
, mask
);
139 int aeGetFileEvents(aeEventLoop
*eventLoop
, int fd
) {
140 if (fd
>= eventLoop
->setsize
) return 0;
141 aeFileEvent
*fe
= &eventLoop
->events
[fd
];
146 static void aeGetTime(long *seconds
, long *milliseconds
)
150 gettimeofday(&tv
, NULL
);
151 *seconds
= tv
.tv_sec
;
152 *milliseconds
= tv
.tv_usec
/1000;
155 static void aeAddMillisecondsToNow(long long milliseconds
, long *sec
, long *ms
) {
156 long cur_sec
, cur_ms
, when_sec
, when_ms
;
158 aeGetTime(&cur_sec
, &cur_ms
);
159 when_sec
= cur_sec
+ milliseconds
/1000;
160 when_ms
= cur_ms
+ milliseconds%1000
;
161 if (when_ms
>= 1000) {
169 long long aeCreateTimeEvent(aeEventLoop
*eventLoop
, long long milliseconds
,
170 aeTimeProc
*proc
, void *clientData
,
171 aeEventFinalizerProc
*finalizerProc
)
173 long long id
= eventLoop
->timeEventNextId
++;
176 te
= zmalloc(sizeof(*te
));
177 if (te
== NULL
) return AE_ERR
;
179 aeAddMillisecondsToNow(milliseconds
,&te
->when_sec
,&te
->when_ms
);
181 te
->finalizerProc
= finalizerProc
;
182 te
->clientData
= clientData
;
183 te
->next
= eventLoop
->timeEventHead
;
184 eventLoop
->timeEventHead
= te
;
188 int aeDeleteTimeEvent(aeEventLoop
*eventLoop
, long long id
)
190 aeTimeEvent
*te
, *prev
= NULL
;
192 te
= eventLoop
->timeEventHead
;
196 eventLoop
->timeEventHead
= te
->next
;
198 prev
->next
= te
->next
;
199 if (te
->finalizerProc
)
200 te
->finalizerProc(eventLoop
, te
->clientData
);
207 return AE_ERR
; /* NO event with the specified ID found */
210 /* Search the first timer to fire.
211 * This operation is useful to know how many time the select can be
212 * put in sleep without to delay any event.
213 * If there are no timers NULL is returned.
215 * Note that's O(N) since time events are unsorted.
216 * Possible optimizations (not needed by Redis so far, but...):
217 * 1) Insert the event in order, so that the nearest is just the head.
218 * Much better but still insertion or deletion of timers is O(N).
219 * 2) Use a skiplist to have this operation as O(1) and insertion as O(log(N)).
221 static aeTimeEvent
*aeSearchNearestTimer(aeEventLoop
*eventLoop
)
223 aeTimeEvent
*te
= eventLoop
->timeEventHead
;
224 aeTimeEvent
*nearest
= NULL
;
227 if (!nearest
|| te
->when_sec
< nearest
->when_sec
||
228 (te
->when_sec
== nearest
->when_sec
&&
229 te
->when_ms
< nearest
->when_ms
))
236 /* Process time events */
237 static int processTimeEvents(aeEventLoop
*eventLoop
) {
241 time_t now
= time(NULL
);
243 /* If the system clock is moved to the future, and then set back to the
244 * right value, time events may be delayed in a random way. Often this
245 * means that scheduled operations will not be performed soon enough.
247 * Here we try to detect system clock skews, and force all the time
248 * events to be processed ASAP when this happens: the idea is that
249 * processing events earlier is less dangerous than delaying them
250 * indefinitely, and practice suggests it is. */
251 if (now
< eventLoop
->lastTime
) {
252 te
= eventLoop
->timeEventHead
;
258 eventLoop
->lastTime
= now
;
260 te
= eventLoop
->timeEventHead
;
261 maxId
= eventLoop
->timeEventNextId
-1;
263 long now_sec
, now_ms
;
266 if (te
->id
> maxId
) {
270 aeGetTime(&now_sec
, &now_ms
);
271 if (now_sec
> te
->when_sec
||
272 (now_sec
== te
->when_sec
&& now_ms
>= te
->when_ms
))
277 retval
= te
->timeProc(eventLoop
, id
, te
->clientData
);
279 /* After an event is processed our time event list may
280 * no longer be the same, so we restart from head.
281 * Still we make sure to don't process events registered
282 * by event handlers itself in order to don't loop forever.
283 * To do so we saved the max ID we want to handle.
285 * FUTURE OPTIMIZATIONS:
286 * Note that this is NOT great algorithmically. Redis uses
287 * a single time event so it's not a problem but the right
288 * way to do this is to add the new elements on head, and
289 * to flag deleted elements in a special way for later
290 * deletion (putting references to the nodes to delete into
291 * another linked list). */
292 if (retval
!= AE_NOMORE
) {
293 aeAddMillisecondsToNow(retval
,&te
->when_sec
,&te
->when_ms
);
295 aeDeleteTimeEvent(eventLoop
, id
);
297 te
= eventLoop
->timeEventHead
;
305 /* Process every pending time event, then every pending file event
306 * (that may be registered by time event callbacks just processed).
307 * Without special flags the function sleeps until some file event
308 * fires, or when the next time event occurrs (if any).
310 * If flags is 0, the function does nothing and returns.
311 * if flags has AE_ALL_EVENTS set, all the kind of events are processed.
312 * if flags has AE_FILE_EVENTS set, file events are processed.
313 * if flags has AE_TIME_EVENTS set, time events are processed.
314 * if flags has AE_DONT_WAIT set the function returns ASAP until all
315 * the events that's possible to process without to wait are processed.
317 * The function returns the number of events processed. */
318 int aeProcessEvents(aeEventLoop
*eventLoop
, int flags
)
320 int processed
= 0, numevents
;
322 /* Nothing to do? return ASAP */
323 if (!(flags
& AE_TIME_EVENTS
) && !(flags
& AE_FILE_EVENTS
)) return 0;
325 /* Note that we want call select() even if there are no
326 * file events to process as long as we want to process time
327 * events, in order to sleep until the next time event is ready
329 if (eventLoop
->maxfd
!= -1 ||
330 ((flags
& AE_TIME_EVENTS
) && !(flags
& AE_DONT_WAIT
))) {
332 aeTimeEvent
*shortest
= NULL
;
333 struct timeval tv
, *tvp
;
335 if (flags
& AE_TIME_EVENTS
&& !(flags
& AE_DONT_WAIT
))
336 shortest
= aeSearchNearestTimer(eventLoop
);
338 long now_sec
, now_ms
;
340 /* Calculate the time missing for the nearest
342 aeGetTime(&now_sec
, &now_ms
);
344 tvp
->tv_sec
= shortest
->when_sec
- now_sec
;
345 if (shortest
->when_ms
< now_ms
) {
346 tvp
->tv_usec
= ((shortest
->when_ms
+1000) - now_ms
)*1000;
349 tvp
->tv_usec
= (shortest
->when_ms
- now_ms
)*1000;
351 if (tvp
->tv_sec
< 0) tvp
->tv_sec
= 0;
352 if (tvp
->tv_usec
< 0) tvp
->tv_usec
= 0;
354 /* If we have to check for events but need to return
355 * ASAP because of AE_DONT_WAIT we need to se the timeout
357 if (flags
& AE_DONT_WAIT
) {
358 tv
.tv_sec
= tv
.tv_usec
= 0;
361 /* Otherwise we can block */
362 tvp
= NULL
; /* wait forever */
366 numevents
= aeApiPoll(eventLoop
, tvp
);
367 for (j
= 0; j
< numevents
; j
++) {
368 aeFileEvent
*fe
= &eventLoop
->events
[eventLoop
->fired
[j
].fd
];
369 int mask
= eventLoop
->fired
[j
].mask
;
370 int fd
= eventLoop
->fired
[j
].fd
;
373 /* note the fe->mask & mask & ... code: maybe an already processed
374 * event removed an element that fired and we still didn't
375 * processed, so we check if the event is still valid. */
376 if (fe
->mask
& mask
& AE_READABLE
) {
378 fe
->rfileProc(eventLoop
,fd
,fe
->clientData
,mask
);
380 if (fe
->mask
& mask
& AE_WRITABLE
) {
381 if (!rfired
|| fe
->wfileProc
!= fe
->rfileProc
)
382 fe
->wfileProc(eventLoop
,fd
,fe
->clientData
,mask
);
387 /* Check time events */
388 if (flags
& AE_TIME_EVENTS
)
389 processed
+= processTimeEvents(eventLoop
);
391 return processed
; /* return the number of processed file/time events */
394 /* Wait for millseconds until the given file descriptor becomes
395 * writable/readable/exception */
396 int aeWait(int fd
, int mask
, long long milliseconds
) {
398 int retmask
= 0, retval
;
400 memset(&pfd
, 0, sizeof(pfd
));
402 if (mask
& AE_READABLE
) pfd
.events
|= POLLIN
;
403 if (mask
& AE_WRITABLE
) pfd
.events
|= POLLOUT
;
405 if ((retval
= poll(&pfd
, 1, milliseconds
))== 1) {
406 if (pfd
.revents
& POLLIN
) retmask
|= AE_READABLE
;
407 if (pfd
.revents
& POLLOUT
) retmask
|= AE_WRITABLE
;
408 if (pfd
.revents
& POLLERR
) retmask
|= AE_WRITABLE
;
409 if (pfd
.revents
& POLLHUP
) retmask
|= AE_WRITABLE
;
416 void aeMain(aeEventLoop
*eventLoop
) {
418 while (!eventLoop
->stop
) {
419 if (eventLoop
->beforesleep
!= NULL
)
420 eventLoop
->beforesleep(eventLoop
);
421 aeProcessEvents(eventLoop
, AE_ALL_EVENTS
);
425 char *aeGetApiName(void) {
429 void aeSetBeforeSleepProc(aeEventLoop
*eventLoop
, aeBeforeSleepProc
*beforesleep
) {
430 eventLoop
->beforesleep
= beforesleep
;