]> git.ozlabs.org Git - ccan/commitdiff
ccan/io: timer support.
authorRusty Russell <rusty@rustcorp.com.au>
Mon, 14 Oct 2013 10:58:35 +0000 (21:28 +1030)
committerRusty Russell <rusty@rustcorp.com.au>
Mon, 14 Oct 2013 10:58:35 +0000 (21:28 +1030)
Upgrade license, since timer is LGPL.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ccan/io/LICENSE
ccan/io/_info
ccan/io/backend.h
ccan/io/benchmarks/Makefile
ccan/io/io.c
ccan/io/io.h
ccan/io/poll.c
ccan/io/test/run-15-timeout.c [new file with mode: 0644]

index 2354d12945d3221df57d9a44c26a24770a133109..dc314ecac02a0fb3117e54b1271ca135aaada572 120000 (symlink)
@@ -1 +1 @@
-../../licenses/BSD-MIT
\ No newline at end of file
+../../licenses/LGPL-2.1
\ No newline at end of file
index f494c124ead964cff335f446123fe879ad19ec4c..d596b4deb11d401b40b3d2210eab80c8ceedff69 100644 (file)
  *     return WIFEXITED(status) ? WEXITSTATUS(status) : 2;
  * }
  *
  *     return WIFEXITED(status) ? WEXITSTATUS(status) : 2;
  * }
  *
- * License: BSD-MIT
+ * License: LGPL (v2.1 or any later version)
+ * Author: Rusty Russell <rusty@rustcorp.com.au>
  */
 int main(int argc, char *argv[])
 {
  */
 int main(int argc, char *argv[])
 {
@@ -167,6 +168,8 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
+               printf("ccan/time\n");
+               printf("ccan/timer\n");
                return 0;
        }
 
                return 0;
        }
 
index 2b41fa72864ca1df0ac16b2afa023e2cfcd1856c..a36dee9b1a727c5dc0658fd7d418884b4eccb29d 100644 (file)
@@ -1,7 +1,8 @@
-/* Licensed under BSD-MIT - see LICENSE file for details */
+/* Licensed under LGPLv2.1+ - see LICENSE file for details */
 #ifndef CCAN_IO_BACKEND_H
 #define CCAN_IO_BACKEND_H
 #include <stdbool.h>
 #ifndef CCAN_IO_BACKEND_H
 #define CCAN_IO_BACKEND_H
 #include <stdbool.h>
+#include <ccan/timer/timer.h>
 
 struct fd {
        int fd;
 
 struct fd {
        int fd;
@@ -61,11 +62,20 @@ struct io_state_writepart {
        size_t *lenp;
 };
 
        size_t *lenp;
 };
 
+struct io_timeout {
+       struct timer timer;
+       struct io_conn *conn;
+
+       struct io_op *(*next)(struct io_conn *, void *arg);
+       void *next_arg;
+};
+
 /* One connection per client. */
 struct io_conn {
        struct fd fd;
 
        struct io_conn *duplex;
 /* One connection per client. */
 struct io_conn {
        struct fd fd;
 
        struct io_conn *duplex;
+       struct io_timeout *timeout;
 
        enum io_state state;
        union {
 
        enum io_state state;
        union {
@@ -76,6 +86,11 @@ struct io_conn {
        } u;
 };
 
        } u;
 };
 
+static inline bool timeout_active(const struct io_conn *conn)
+{
+       return conn->timeout && conn->timeout->conn;
+}
+
 extern void *io_loop_return;
 
 bool add_listener(struct io_listener *l);
 extern void *io_loop_return;
 
 bool add_listener(struct io_listener *l);
@@ -83,6 +98,8 @@ bool add_conn(struct io_conn *c);
 bool add_duplex(struct io_conn *c);
 void del_listener(struct io_listener *l);
 void backend_set_state(struct io_conn *conn, struct io_op *op);
 bool add_duplex(struct io_conn *c);
 void del_listener(struct io_listener *l);
 void backend_set_state(struct io_conn *conn, struct io_op *op);
+void backend_add_timeout(struct io_conn *conn, struct timespec ts);
+void backend_del_timeout(struct io_conn *conn);
 
 struct io_op *do_ready(struct io_conn *conn);
 #endif /* CCAN_IO_BACKEND_H */
 
 struct io_op *do_ready(struct io_conn *conn);
 #endif /* CCAN_IO_BACKEND_H */
index 21f3441db63b9aa355bb85d0e32a2a52ac2a44b7..0068400de51c047c6cc994a0f71deec5990e3d66 100644 (file)
@@ -4,7 +4,7 @@ CFLAGS:=-Wall -I$(CCANDIR) -O3 -flto
 LDFLAGS:=-O3 -flto
 LDLIBS:=-lrt
 
 LDFLAGS:=-O3 -flto
 LDLIBS:=-lrt
 
-OBJS:=time.o poll.o io.o err.o
+OBJS:=time.o poll.o io.o err.o timer.o list.o
 
 default: $(ALL)
 
 
 default: $(ALL)
 
@@ -14,6 +14,10 @@ run-length-prefix: run-length-prefix.o $(OBJS)
 
 time.o: $(CCANDIR)/ccan/time/time.c
        $(CC) $(CFLAGS) -c -o $@ $<
 
 time.o: $(CCANDIR)/ccan/time/time.c
        $(CC) $(CFLAGS) -c -o $@ $<
+timer.o: $(CCANDIR)/ccan/timer/timer.c
+       $(CC) $(CFLAGS) -c -o $@ $<
+list.o: $(CCANDIR)/ccan/list/list.c
+       $(CC) $(CFLAGS) -c -o $@ $<
 poll.o: $(CCANDIR)/ccan/io/poll.c
        $(CC) $(CFLAGS) -c -o $@ $<
 io.o: $(CCANDIR)/ccan/io/io.c
 poll.o: $(CCANDIR)/ccan/io/poll.c
        $(CC) $(CFLAGS) -c -o $@ $<
 io.o: $(CCANDIR)/ccan/io/io.c
index 6efc68ee732c15ab99d00104e2f6adb6ef0b5f71..84c2ccad0c2c0ac032201ab6fb8bce44a05f1a23 100644 (file)
@@ -1,4 +1,4 @@
-/* Licensed under BSD-MIT - see LICENSE file for details */
+/* Licensed under LGPLv2.1+ - see LICENSE file for details */
 #include "io.h"
 #include "backend.h"
 #include <sys/types.h>
 #include "io.h"
 #include "backend.h"
 #include <sys/types.h>
@@ -58,6 +58,7 @@ struct io_conn *io_new_conn_(int fd,
        conn->fd.finish_arg = conn->fd.next_arg = arg;
        conn->state = NEXT;
        conn->duplex = NULL;
        conn->fd.finish_arg = conn->fd.next_arg = arg;
        conn->state = NEXT;
        conn->duplex = NULL;
+       conn->timeout = NULL;
        if (!add_conn(conn)) {
                free(conn);
                return NULL;
        if (!add_conn(conn)) {
                free(conn);
                return NULL;
@@ -85,6 +86,7 @@ struct io_conn *io_duplex_(struct io_conn *old,
        conn->fd.finish_arg = conn->fd.next_arg = arg;
        conn->state = NEXT;
        conn->duplex = old;
        conn->fd.finish_arg = conn->fd.next_arg = arg;
        conn->state = NEXT;
        conn->duplex = old;
+       conn->timeout = NULL;
        if (!add_duplex(conn)) {
                free(conn);
                return NULL;
        if (!add_duplex(conn)) {
                free(conn);
                return NULL;
@@ -119,6 +121,22 @@ struct io_next *io_next_(struct io_conn *conn,
        return to_ionext(conn);
 }
 
        return to_ionext(conn);
 }
 
+bool io_timeout_(struct io_conn *conn, struct timespec ts,
+                struct io_op *(*next)(struct io_conn *, void *), void *arg)
+{
+       if (!conn->timeout) {
+               conn->timeout = malloc(sizeof(*conn->timeout));
+               if (!conn->timeout)
+                       return false;
+       } else
+               assert(!timeout_active(conn));
+
+       conn->timeout->next = next;
+       conn->timeout->next_arg = arg;
+       backend_add_timeout(conn, ts);
+       return true;
+}
+
 /* Queue some data to be written. */
 struct io_op *io_write(const void *data, size_t len, struct io_next *next)
 {
 /* Queue some data to be written. */
 struct io_op *io_write(const void *data, size_t len, struct io_next *next)
 {
@@ -175,6 +193,8 @@ void io_wake_(struct io_conn *conn,
 
 static struct io_op *do_next(struct io_conn *conn)
 {
 
 static struct io_op *do_next(struct io_conn *conn)
 {
+       if (timeout_active(conn))
+               backend_del_timeout(conn);
        return conn->fd.next(conn, conn->fd.next_arg);
 }
 
        return conn->fd.next(conn, conn->fd.next_arg);
 }
 
index 5ca9731dc517226fb23a1b2620b23a79d749a809..a481c5f3de67d7f671e0017ca29d035f568f98a0 100644 (file)
@@ -1,7 +1,8 @@
-/* Licensed under BSD-MIT - see LICENSE file for details */
+/* Licensed under LGPLv2.1+ - see LICENSE file for details */
 #ifndef CCAN_IO_H
 #define CCAN_IO_H
 #include <ccan/typesafe_cb/typesafe_cb.h>
 #ifndef CCAN_IO_H
 #define CCAN_IO_H
 #include <ccan/typesafe_cb/typesafe_cb.h>
+#include <ccan/time/time.h>
 #include <stdbool.h>
 #include <unistd.h>
 
 #include <stdbool.h>
 #include <unistd.h>
 
@@ -151,6 +152,30 @@ struct io_op *io_write_partial(const void *data, size_t *len,
  */
 struct io_op *io_idle(struct io_conn *conn);
 
  */
 struct io_op *io_idle(struct io_conn *conn);
 
+/**
+ * io_timeout - set timeout function if the callback doesn't fire.
+ * @conn: the current connection.
+ * @ts: how long until the timeout should be called.
+ * @next: function to call.
+ * @arg: argument to @next.
+ *
+ * If the usual next callback is not called for this connection before @ts,
+ * this function will be called.  If next callback is called, the timeout
+ * is automatically removed.
+ *
+ * Returns false on allocation failure.  A connection can only have one
+ * timeout.
+ */
+#define io_timeout(conn, ts, next, arg) \
+       io_timeout_((conn), (ts),                                       \
+                   typesafe_cb_preargs(struct io_op *, void *,         \
+                                       (next), (arg),                  \
+                                       struct io_conn *),              \
+                   (arg))
+
+bool io_timeout_(struct io_conn *conn, struct timespec ts,
+                struct io_op *(*next)(struct io_conn *, void *), void *arg);
+
 /**
  * io_duplex - split an fd into two connections.
  * @conn: a connection.
 /**
  * io_duplex - split an fd into two connections.
  * @conn: a connection.
index 7ceb8a7eec8bc6fd3f3de65c0c22e27a2e20e43e..94536728d91f48956902b74ab52fa66185e0d57f 100644 (file)
@@ -1,4 +1,4 @@
-/* Licensed under BSD-MIT - see LICENSE file for details */
+/* Licensed under LGPLv2.1+ - see LICENSE file for details */
 #include "io.h"
 #include "backend.h"
 #include <assert.h>
 #include "io.h"
 #include "backend.h"
 #include <assert.h>
@@ -6,10 +6,12 @@
 #include <stdlib.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <stdlib.h>
 #include <sys/types.h>
 #include <sys/socket.h>
+#include <limits.h>
 
 static size_t num_fds = 0, max_fds = 0, num_next = 0, num_finished = 0, num_waiting = 0;
 static struct pollfd *pollfds = NULL;
 static struct fd **fds = NULL;
 
 static size_t num_fds = 0, max_fds = 0, num_next = 0, num_finished = 0, num_waiting = 0;
 static struct pollfd *pollfds = NULL;
 static struct fd **fds = NULL;
+static struct timers timeouts;
 
 static bool add_fd(struct fd *fd, short events)
 {
 
 static bool add_fd(struct fd *fd, short events)
 {
@@ -90,6 +92,9 @@ static void del_conn(struct io_conn *conn)
 {
        if (conn->fd.finish)
                conn->fd.finish(conn, conn->fd.finish_arg);
 {
        if (conn->fd.finish)
                conn->fd.finish(conn, conn->fd.finish_arg);
+       if (timeout_active(conn))
+               backend_del_timeout(conn);
+       free(conn->timeout);
        if (conn->duplex) {
                /* In case fds[] pointed to the other one. */
                fds[conn->fd.backend_info] = &conn->duplex->fd;
        if (conn->duplex) {
                /* In case fds[] pointed to the other one. */
                fds[conn->fd.backend_info] = &conn->duplex->fd;
@@ -197,13 +202,54 @@ static void ready(struct io_conn *c)
        backend_set_state(c, do_ready(c));
 }
 
        backend_set_state(c, do_ready(c));
 }
 
+void backend_add_timeout(struct io_conn *conn, struct timespec duration)
+{
+       if (!timeouts.base)
+               timers_init(&timeouts, time_now());
+       timer_add(&timeouts, &conn->timeout->timer,
+                 time_add(time_now(), duration));
+       conn->timeout->conn = conn;
+}
+
+void backend_del_timeout(struct io_conn *conn)
+{
+       assert(conn->timeout->conn == conn);
+       timer_del(&timeouts, &conn->timeout->timer);
+       conn->timeout->conn = NULL;
+}
+
 /* This is the main loop. */
 void *io_loop(void)
 {
        void *ret;
 
        while (!io_loop_return) {
 /* This is the main loop. */
 void *io_loop(void)
 {
        void *ret;
 
        while (!io_loop_return) {
-               int i, r;
+               int i, r, timeout = INT_MAX;
+               struct timespec now;
+
+               if (timeouts.base) {
+                       struct timespec first;
+                       struct list_head expired;
+                       struct io_timeout *t;
+
+                       now = time_now();
+
+                       /* Call functions for expired timers. */
+                       timers_expire(&timeouts, now, &expired);
+                       while ((t = list_pop(&expired, struct io_timeout, timer.list))) {
+                               struct io_conn *conn = t->conn;
+                               /* Clear, in case timer re-adds */
+                               t->conn = NULL;
+                               backend_set_state(conn, t->next(conn, t->next_arg));
+                       }
+
+                       /* Now figure out how long to wait for the next one. */
+                       if (timer_earliest(&timeouts, &first)) {
+                               uint64_t f = time_to_msec(time_sub(first, now));
+                               if (f < INT_MAX)
+                                       timeout = f;
+                       }
+               }
 
                if (num_finished || num_next) {
                        finish_and_next(false);
 
                if (num_finished || num_next) {
                        finish_and_next(false);
@@ -217,7 +263,7 @@ void *io_loop(void)
                /* You can't tell them all to go to sleep! */
                assert(num_waiting);
 
                /* You can't tell them all to go to sleep! */
                assert(num_waiting);
 
-               r = poll(pollfds, num_fds, -1);
+               r = poll(pollfds, num_fds, timeout);
                if (r < 0)
                        break;
 
                if (r < 0)
                        break;
 
@@ -225,10 +271,16 @@ void *io_loop(void)
                        struct io_conn *c = (void *)fds[i];
                        int events = pollfds[i].revents;
 
                        struct io_conn *c = (void *)fds[i];
                        int events = pollfds[i].revents;
 
+                       if (r == 0)
+                               break;
+
                        if (fds[i]->listener) {
                        if (fds[i]->listener) {
-                               if (events & POLLIN)
+                               if (events & POLLIN) {
                                        accept_conn((void *)c);
                                        accept_conn((void *)c);
+                                       r--;
+                               }
                        } else if (events & (POLLIN|POLLOUT)) {
                        } else if (events & (POLLIN|POLLOUT)) {
+                               r--;
                                if (c->duplex) {
                                        int mask = pollmask(c->duplex->state);
                                        if (events & mask) {
                                if (c->duplex) {
                                        int mask = pollmask(c->duplex->state);
                                        if (events & mask) {
@@ -240,13 +292,13 @@ void *io_loop(void)
                                }
                                ready(c);
                        } else if (events & POLLHUP) {
                                }
                                ready(c);
                        } else if (events & POLLHUP) {
+                               r--;
                                backend_set_state(c, io_close(c, NULL));
                                if (c->duplex)
                                        backend_set_state(c->duplex,
                                                          io_close(c->duplex,
                                                                   NULL));
                        }
                                backend_set_state(c, io_close(c, NULL));
                                if (c->duplex)
                                        backend_set_state(c->duplex,
                                                          io_close(c->duplex,
                                                                   NULL));
                        }
-
                }
        }
 
                }
        }
 
diff --git a/ccan/io/test/run-15-timeout.c b/ccan/io/test/run-15-timeout.c
new file mode 100644 (file)
index 0000000..b5e0dc3
--- /dev/null
@@ -0,0 +1,166 @@
+#include <ccan/io/io.h>
+/* Include the C files directly. */
+#include <ccan/io/poll.c>
+#include <ccan/io/io.c>
+#include <ccan/tap/tap.h>
+#include <sys/wait.h>
+#include <stdio.h>
+#include <unistd.h>
+
+struct data {
+       int state;
+       int timeout_usec;
+       bool timed_out;
+       char buf[4];
+};
+
+
+static struct io_op *no_timeout(struct io_conn *conn, struct data *d)
+{
+       ok1(d->state == 1);
+       d->state++;
+       return io_close(conn, d);
+}
+
+static struct io_op *timeout(struct io_conn *conn, struct data *d)
+{
+       ok1(d->state == 1);
+       d->state++;
+       d->timed_out = true;
+       return io_close(conn, d);
+}
+
+static struct io_op *start_ok(struct io_conn *conn, struct data *d)
+{
+       ok1(d->state == 0);
+       d->state++;
+       io_timeout(conn, time_from_usec(d->timeout_usec), timeout, d);
+       return io_read(d->buf, sizeof(d->buf), io_next(conn, no_timeout, d));
+}
+
+static void finish_ok(struct io_conn *conn, struct data *d)
+{
+       ok1(d->state == 2);
+       d->state++;
+       io_break(d, NULL);
+}
+
+static int make_listen_fd(const char *port, struct addrinfo **info)
+{
+       int fd, on = 1;
+       struct addrinfo *addrinfo, hints;
+
+       memset(&hints, 0, sizeof(hints));
+       hints.ai_family = AF_UNSPEC;
+       hints.ai_socktype = SOCK_STREAM;
+       hints.ai_flags = AI_PASSIVE;
+       hints.ai_protocol = 0;
+
+       if (getaddrinfo(NULL, port, &hints, &addrinfo) != 0)
+               return -1;
+
+       fd = socket(addrinfo->ai_family, addrinfo->ai_socktype,
+                   addrinfo->ai_protocol);
+       if (fd < 0)
+               return -1;
+
+       setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
+       if (bind(fd, addrinfo->ai_addr, addrinfo->ai_addrlen) != 0) {
+               close(fd);
+               return -1;
+       }
+       if (listen(fd, 1) != 0) {
+               close(fd);
+               return -1;
+       }
+       *info = addrinfo;
+       return fd;
+}
+
+int main(void)
+{
+       struct data *d = malloc(sizeof(*d));
+       struct addrinfo *addrinfo;
+       struct io_listener *l;
+       int fd, status;
+
+       /* This is how many tests you plan to run */
+       plan_tests(20);
+       d->state = 0;
+       d->timed_out = false;
+       d->timeout_usec = 100000;
+       fd = make_listen_fd("65002", &addrinfo);
+       ok1(fd >= 0);
+       l = io_new_listener(fd, start_ok, finish_ok, d);
+       ok1(l);
+       fflush(stdout);
+
+       if (!fork()) {
+               int i;
+
+               io_close_listener(l);
+               fd = socket(addrinfo->ai_family, addrinfo->ai_socktype,
+                           addrinfo->ai_protocol);
+               if (fd < 0)
+                       exit(1);
+               if (connect(fd, addrinfo->ai_addr, addrinfo->ai_addrlen) != 0)
+                       exit(2);
+               signal(SIGPIPE, SIG_IGN);
+               usleep(500000);
+               for (i = 0; i < strlen("hellothere"); i++) {
+                       if (write(fd, "hellothere" + i, 1) != 1)
+                               break;
+               }
+               close(fd);
+               freeaddrinfo(addrinfo);
+               free(d);
+               exit(i);
+       }
+       ok1(io_loop() == d);
+       ok1(d->state == 3);
+       ok1(d->timed_out == true);
+       ok1(wait(&status));
+       ok1(WIFEXITED(status));
+       ok1(WEXITSTATUS(status) < sizeof(d->buf));
+
+       /* This one shouldn't time out. */
+       d->state = 0;
+       d->timed_out = false;
+       d->timeout_usec = 500000;
+       fflush(stdout);
+
+       if (!fork()) {
+               int i;
+
+               io_close_listener(l);
+               fd = socket(addrinfo->ai_family, addrinfo->ai_socktype,
+                           addrinfo->ai_protocol);
+               if (fd < 0)
+                       exit(1);
+               if (connect(fd, addrinfo->ai_addr, addrinfo->ai_addrlen) != 0)
+                       exit(2);
+               signal(SIGPIPE, SIG_IGN);
+               usleep(100000);
+               for (i = 0; i < strlen("hellothere"); i++) {
+                       if (write(fd, "hellothere" + i, 1) != 1)
+                               break;
+               }
+               close(fd);
+               freeaddrinfo(addrinfo);
+               free(d);
+               exit(i);
+       }
+       ok1(io_loop() == d);
+       ok1(d->state == 3);
+       ok1(d->timed_out == false);
+       ok1(wait(&status));
+       ok1(WIFEXITED(status));
+       ok1(WEXITSTATUS(status) >= sizeof(d->buf));
+
+       io_close_listener(l);
+       freeaddrinfo(addrinfo);
+       free(d);
+
+       /* This exits depending on whether all tests passed */
+       return exit_status();
+}