X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fio%2Fio.c;h=a4489ee8855c5a67fce5d746672342b345c72dc5;hp=1c0af6b97e05f0ac6018c0cc7cba7fa1e0ef08a9;hb=9e02685a6216720d37848a332187e3745b7f981e;hpb=869dc1528e64604e9264c6f12e0f2cb79bf3d79e diff --git a/ccan/io/io.c b/ccan/io/io.c index 1c0af6b9..a4489ee8 100644 --- a/ccan/io/io.c +++ b/ccan/io/io.c @@ -13,42 +13,56 @@ void *io_loop_return; #ifdef DEBUG -bool io_plan_for_other; +/* Set to skip the next plan. */ +bool io_plan_nodebug; +/* The current connection to apply plan to. */ struct io_conn *current; -bool (*io_debug)(struct io_conn *conn); +/* User-defined function to select which connection(s) to debug. */ +bool (*io_debug_conn)(struct io_conn *conn); +/* Set when we wake up an connection we are debugging. */ bool io_debug_wakeup; -void io_plan_debug(struct io_plan *plan) +struct io_plan io_debug(struct io_plan plan) { - if (io_plan_for_other) { - io_plan_for_other = false; - return; + if (io_plan_nodebug) { + io_plan_nodebug = false; + return plan; } - if (!io_debug || !current) - return; + if (!io_debug_conn || !current) + return plan; - if (!io_debug(current) && !io_debug_wakeup) - return; + if (!io_debug_conn(current) && !io_debug_wakeup) + return plan; io_debug_wakeup = false; - current->plan = *plan; + current->plan = plan; backend_plan_changed(current); /* Call back into the loop immediately. */ io_loop_return = io_loop(); + return plan; } static void debug_io_wake(struct io_conn *conn) { /* We want linear if we wake a debugged connection, too. */ - if (io_debug && io_debug(conn)) + if (io_debug_conn && io_debug_conn(conn)) io_debug_wakeup = true; } + +/* Counterpart to io_plan_no_debug(), called in macros in io.h */ +static void io_plan_debug_again(void) +{ + io_plan_nodebug = false; +} #else static void debug_io_wake(struct io_conn *conn) { } +static void io_plan_debug_again(void) +{ +} #endif struct io_listener *io_new_listener_(int fd, @@ -82,6 +96,8 @@ struct io_conn *io_new_conn_(int fd, struct io_plan plan) { struct io_conn *conn = malloc(sizeof(*conn)); + io_plan_debug_again(); + if (!conn) return NULL; @@ -111,6 +127,8 @@ struct io_conn *io_duplex_(struct io_conn *old, struct io_plan plan) { struct io_conn *conn; + io_plan_debug_again(); + assert(!old->duplex); conn = malloc(sizeof(*conn)); @@ -177,7 +195,6 @@ struct io_plan io_write_(const void *data, size_t len, plan.next_arg = arg; plan.pollflag = POLLOUT; - io_plan_debug(&plan); return plan; } @@ -207,7 +224,6 @@ struct io_plan io_read_(void *data, size_t len, plan.next_arg = arg; plan.pollflag = POLLIN; - io_plan_debug(&plan); return plan; } @@ -236,7 +252,6 @@ struct io_plan io_read_partial_(void *data, size_t *len, plan.next_arg = arg; plan.pollflag = POLLIN; - io_plan_debug(&plan); return plan; } @@ -265,26 +280,26 @@ struct io_plan io_write_partial_(const void *data, size_t *len, plan.next_arg = arg; plan.pollflag = POLLOUT; - io_plan_debug(&plan); return plan; } -struct io_plan io_idle(void) +struct io_plan io_idle_(void) { struct io_plan plan; plan.pollflag = 0; plan.io = NULL; - /* Never called (overridded by io_wake), but NULL means closing */ - plan.next = io_close; + /* Never called (overridden by io_wake), but NULL means closing */ + plan.next = (void *)io_idle_; - io_plan_debug(&plan); return plan; } void io_wake_(struct io_conn *conn, struct io_plan plan) { + io_plan_debug_again(); + /* It might be closing, but we haven't called its finish() yet. */ if (!conn->plan.next) return; @@ -301,7 +316,7 @@ void io_ready(struct io_conn *conn) switch (conn->plan.io(conn->fd.fd, &conn->plan)) { case -1: /* Failure means a new plan: close up. */ set_current(conn); - conn->plan = io_close(NULL, NULL); + conn->plan = io_close(); backend_plan_changed(conn); set_current(NULL); break; @@ -317,23 +332,29 @@ void io_ready(struct io_conn *conn) } } -/* Useful next functions. */ /* Close the connection, we're done. */ -struct io_plan io_close(struct io_conn *conn, void *arg) +struct io_plan io_close_(void) { struct io_plan plan; plan.pollflag = 0; /* This means we're closing. */ plan.next = NULL; + plan.u.close.saved_errno = errno; - io_plan_debug(&plan); return plan; } +struct io_plan io_close_cb(struct io_conn *conn, void *arg) +{ + return io_close(); +} + /* Exit the loop, returning this (non-NULL) arg. */ struct io_plan io_break_(void *ret, struct io_plan plan) { + io_plan_debug_again(); + assert(ret); io_loop_return = ret;