2 event.c -- I/O, timeout and signal event handling
3 Copyright (C) 2014-2017 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);
45 if(diff.tv_usec < 0) {
49 if(diff.tv_usec > 0) {
64 void io_add(event_loop_t *loop, io_t *io, io_cb_t cb, void *data, int fd, int flags) {
74 io_set(loop, io, flags);
76 if(!splay_insert_node(&loop->ios, &io->node)) {
81 void io_set(event_loop_t *loop, io_t *io, int flags) {
85 FD_SET(io->fd, &loop->readfds);
87 FD_CLR(io->fd, &loop->readfds);
90 if(flags & IO_WRITE) {
91 FD_SET(io->fd, &loop->writefds);
93 FD_CLR(io->fd, &loop->writefds);
97 void io_del(event_loop_t *loop, io_t *io) {
102 loop->deletion = true;
106 splay_unlink_node(&loop->ios, &io->node);
110 void timeout_add(event_loop_t *loop, timeout_t *timeout, timeout_cb_t cb, void *data, struct timeval *tv) {
112 timeout->tv = (struct timeval) {
118 timeout->data = data;
120 timeout->node.data = timeout;
122 timeout_set(loop, timeout, tv);
125 void timeout_set(event_loop_t *loop, timeout_t *timeout, struct timeval *tv) {
126 if(timerisset(&timeout->tv)) {
127 splay_unlink_node(&loop->timeouts, &timeout->node);
130 if(!loop->now.tv_sec) {
131 gettimeofday(&loop->now, NULL);
134 timeradd(&loop->now, tv, &timeout->tv);
136 if(!splay_insert_node(&loop->timeouts, &timeout->node)) {
141 void timeout_del(event_loop_t *loop, timeout_t *timeout) {
146 loop->deletion = true;
148 splay_unlink_node(&loop->timeouts, &timeout->node);
150 timeout->tv = (struct timeval) {
155 static int signal_compare(const signal_t *a, const signal_t *b) {
156 return (int)a->signum - (int)b->signum;
159 static void signalio_handler(event_loop_t *loop, void *data, int flags) {
162 unsigned char signum;
164 if(read(loop->pipefd[0], &signum, 1) != 1) {
168 signal_t *sig = splay_search(&loop->signals, &((signal_t) {
173 sig->cb(loop, sig->data);
177 static void pipe_init(event_loop_t *loop) {
178 if(!pipe(loop->pipefd)) {
179 io_add(loop, &loop->signalio, signalio_handler, NULL, loop->pipefd[0], IO_READ);
183 void signal_trigger(event_loop_t *loop, signal_t *sig) {
185 uint8_t signum = sig->signum;
186 write(loop->pipefd[1], &signum, 1);
191 void signal_add(event_loop_t *loop, signal_t *sig, signal_cb_t cb, void *data, uint8_t signum) {
198 sig->signum = signum;
199 sig->node.data = sig;
201 if(loop->pipefd[0] == -1) {
205 if(!splay_insert_node(&loop->signals, &sig->node)) {
210 void signal_del(event_loop_t *loop, signal_t *sig) {
215 loop->deletion = true;
217 splay_unlink_node(&loop->signals, &sig->node);
221 void idle_set(event_loop_t *loop, idle_cb_t cb, void *data) {
223 loop->idle_data = data;
226 bool event_loop_run(event_loop_t *loop, pthread_mutex_t *mutex) {
230 while(loop->running) {
231 gettimeofday(&loop->now, NULL);
232 struct timeval diff, it, *tv = NULL;
234 while(loop->timeouts.head) {
235 timeout_t *timeout = loop->timeouts.head->data;
236 timersub(&timeout->tv, &loop->now, &diff);
238 if(diff.tv_sec < 0) {
239 timeout->cb(loop, timeout->data);
241 if(timercmp(&timeout->tv, &loop->now, <)) {
242 timeout_del(loop, timeout);
251 it = loop->idle_cb(loop, loop->idle_data);
253 if(it.tv_sec >= 0 && (!tv || timercmp(&it, tv, <))) {
258 memcpy(&readable, &loop->readfds, sizeof(readable));
259 memcpy(&writable, &loop->writefds, sizeof(writable));
264 io_t *last = loop->ios.tail->data;
268 // release mesh mutex during select
270 pthread_mutex_unlock(mutex);
273 int n = select(fds, &readable, &writable, NULL, tv);
276 pthread_mutex_lock(mutex);
280 if(sockwouldblock(errno)) {
291 // Normally, splay_each allows the current node to be deleted. However,
292 // it can be that one io callback triggers the deletion of another io,
293 // so we have to detect this and break the loop.
295 loop->deletion = false;
297 for splay_each(io_t, io, &loop->ios) {
298 if(FD_ISSET(io->fd, &writable) && io->cb) {
299 io->cb(loop, io->data, IO_WRITE);
306 if(FD_ISSET(io->fd, &readable) && io->cb) {
307 io->cb(loop, io->data, IO_READ);
319 void event_flush_output(event_loop_t *loop) {
320 for splay_each(io_t, io, &loop->ios)
321 if(FD_ISSET(io->fd, &loop->writefds)) {
322 io->cb(loop, io->data, IO_WRITE);
326 void event_loop_start(event_loop_t *loop) {
327 loop->running = true;
330 void event_loop_stop(event_loop_t *loop) {
331 loop->running = false;
334 void event_loop_init(event_loop_t *loop) {
335 loop->ios.compare = (splay_compare_t)io_compare;
336 loop->timeouts.compare = (splay_compare_t)timeout_compare;
337 loop->signals.compare = (splay_compare_t)signal_compare;
338 loop->pipefd[0] = -1;
339 loop->pipefd[1] = -1;
340 gettimeofday(&loop->now, NULL);
343 void event_loop_exit(event_loop_t *loop) {
344 for splay_each(io_t, io, &loop->ios) {
345 splay_unlink_node(&loop->ios, node);
348 for splay_each(timeout_t, timeout, &loop->timeouts) {
349 splay_unlink_node(&loop->timeouts, node);
352 for splay_each(signal_t, signal, &loop->signals) {
353 splay_unlink_node(&loop->signals, node);