2 event.c -- I/O and timeout event handling
3 Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include "splay_tree.h"
29 static int io_compare(const io_t *a, const io_t *b) {
33 static int timeout_compare(const timeout_t *a, const timeout_t *b) {
35 timersub(&a->tv, &b->tv, &diff);
51 void io_add(event_loop_t *loop, io_t *io, io_cb_t cb, void *data, int fd, int flags) {
60 io_set(loop, io, flags);
62 if(!splay_insert_node(&loop->ios, &io->node))
66 void io_set(event_loop_t *loop, io_t *io, int flags) {
70 FD_SET(io->fd, &loop->readfds);
72 FD_CLR(io->fd, &loop->readfds);
75 FD_SET(io->fd, &loop->writefds);
77 FD_CLR(io->fd, &loop->writefds);
80 void io_del(event_loop_t *loop, io_t *io) {
86 splay_unlink_node(&loop->ios, &io->node);
90 void timeout_add(event_loop_t *loop, timeout_t *timeout, timeout_cb_t cb, void *data, struct timeval *tv) {
93 timeout->node.data = timeout;
95 timeout_set(loop, timeout, tv);
98 void timeout_set(event_loop_t *loop, timeout_t *timeout, struct timeval *tv) {
99 if(timerisset(&timeout->tv))
100 splay_unlink_node(&loop->timeouts, &timeout->node);
102 if(!loop->now.tv_sec)
103 gettimeofday(&loop->now, NULL);
105 timeradd(&loop->now, tv, &timeout->tv);
107 if(!splay_insert_node(&loop->timeouts, &timeout->node))
111 void timeout_del(event_loop_t *loop, timeout_t *timeout) {
115 splay_unlink_node(&loop->timeouts, &timeout->node);
117 timeout->tv = (struct timeval){0, 0};
120 bool event_loop_run(event_loop_t *loop) {
121 loop->running = true;
126 while(loop->running) {
127 gettimeofday(&loop->now, NULL);
128 struct timeval diff, *tv = NULL;
130 while(loop->timeouts.head) {
131 timeout_t *timeout = loop->timeouts.head->data;
132 timersub(&timeout->tv, &loop->now, &diff);
134 if(diff.tv_sec < 0) {
135 timeout->cb(loop, timeout->data);
136 if(timercmp(&timeout->tv, &loop->now, <))
137 timeout_del(loop, timeout);
144 memcpy(&readable, &loop->readfds, sizeof readable);
145 memcpy(&writable, &loop->writefds, sizeof writable);
150 io_t *last = loop->ios.tail->data;
154 int n = select(fds, &readable, &writable, NULL, tv);
157 if(sockwouldblock(errno))
166 for splay_each(io_t, io, &loop->ios) {
167 if(FD_ISSET(io->fd, &writable))
168 io->cb(loop, io->data, IO_WRITE);
169 else if(FD_ISSET(io->fd, &readable))
170 io->cb(loop, io->data, IO_READ);
177 void event_flush_output(event_loop_t *loop) {
178 for splay_each(io_t, io, &loop->ios)
179 if(FD_ISSET(io->fd, &loop->writefds))
180 io->cb(loop, io->data, IO_WRITE);
183 void event_loop_stop(event_loop_t *loop) {
184 loop->running = false;
187 void event_loop_init(event_loop_t *loop) {
188 loop->ios.compare = (splay_compare_t)io_compare;
189 loop->timeouts.compare = (splay_compare_t)timeout_compare;
190 gettimeofday(&loop->now, NULL);
193 void event_loop_exit(event_loop_t *loop) {
194 for splay_each(io_t, io, &loop->ios)
195 splay_free_node(&loop->ios, node);
196 for splay_each(timeout_t, timeout, &loop->timeouts)
197 splay_free_node(&loop->timeouts, node);