]> git.ozlabs.org Git - ccan/commitdiff
ccan/io: make io functions more generic.
authorRusty Russell <rusty@rustcorp.com.au>
Mon, 14 Oct 2013 10:58:36 +0000 (21:28 +1030)
committerRusty Russell <rusty@rustcorp.com.au>
Mon, 14 Oct 2013 10:58:36 +0000 (21:28 +1030)
Pass fd and plan explicitly, so they don't need to know the definition
of struct io_conn, and return a bool instead of an enum.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ccan/io/io.c
ccan/io/io.h

index 34886147f3f6c51c16fc64db32dfc36098918ec8..c19b25efe8d12acbe6c5ecc669d01ff54c4801c2 100644 (file)
@@ -109,18 +109,19 @@ bool io_timeout_(struct io_conn *conn, struct timespec ts,
        return true;
 }
 
-static enum io_result do_write(struct io_conn *conn)
+/* Returns true if we're finished. */
+static bool do_write(int fd, struct io_plan *plan)
 {
-       ssize_t ret = write(conn->fd.fd, conn->plan.u.write.buf, conn->plan.u.write.len);
-       if (ret < 0)
-               return RESULT_CLOSE;
-
-       conn->plan.u.write.buf += ret;
-       conn->plan.u.write.len -= ret;
-       if (conn->plan.u.write.len == 0)
-               return RESULT_FINISHED;
-       else
-               return RESULT_AGAIN;
+       ssize_t ret = write(fd, plan->u.write.buf, plan->u.write.len);
+       if (ret < 0) {
+               /* Override next function to close us. */
+               plan->next = io_close;
+               return true;
+       }
+
+       plan->u.write.buf += ret;
+       plan->u.write.len -= ret;
+       return (plan->u.write.len == 0);
 }
 
 /* Queue some data to be written. */
@@ -140,18 +141,18 @@ struct io_plan io_write_(const void *data, size_t len,
        return plan;
 }
 
-static enum io_result do_read(struct io_conn *conn)
+static bool do_read(int fd, struct io_plan *plan)
 {
-       ssize_t ret = read(conn->fd.fd, conn->plan.u.read.buf,
-                          conn->plan.u.read.len);
-       if (ret <= 0)
-               return RESULT_CLOSE;
-       conn->plan.u.read.buf += ret;
-       conn->plan.u.read.len -= ret;
-       if (conn->plan.u.read.len == 0)
-               return RESULT_FINISHED;
-       else
-               return RESULT_AGAIN;
+       ssize_t ret = read(fd, plan->u.read.buf, plan->u.read.len);
+       if (ret <= 0) {
+               /* Override next function to close us. */
+               plan->next = io_close;
+               return true;
+       }
+
+       plan->u.read.buf += ret;
+       plan->u.read.len -= ret;
+       return (plan->u.read.len == 0);
 }
 
 /* Queue a request to read into a buffer. */
@@ -171,14 +172,17 @@ struct io_plan io_read_(void *data, size_t len,
        return plan;
 }
 
-static enum io_result do_read_partial(struct io_conn *conn)
+static bool do_read_partial(int fd, struct io_plan *plan)
 {
-       ssize_t ret = read(conn->fd.fd, conn->plan.u.readpart.buf,
-                          *conn->plan.u.readpart.lenp);
-       if (ret <= 0)
-               return RESULT_CLOSE;
-       *conn->plan.u.readpart.lenp = ret;
-       return RESULT_FINISHED;
+       ssize_t ret = read(fd, plan->u.readpart.buf, *plan->u.readpart.lenp);
+       if (ret <= 0) {
+               /* Override next function to close us. */
+               plan->next = io_close;
+               return true;
+       }
+
+       *plan->u.readpart.lenp = ret;
+       return true;
 }
 
 /* Queue a partial request to read into a buffer. */
@@ -199,14 +203,17 @@ struct io_plan io_read_partial_(void *data, size_t *len,
        return plan;
 }
 
-static enum io_result do_write_partial(struct io_conn *conn)
+static bool do_write_partial(int fd, struct io_plan *plan)
 {
-       ssize_t ret = write(conn->fd.fd, conn->plan.u.writepart.buf,
-                           *conn->plan.u.writepart.lenp);
-       if (ret < 0)
-               return RESULT_CLOSE;
-       *conn->plan.u.writepart.lenp = ret;
-       return RESULT_FINISHED;
+       ssize_t ret = write(fd, plan->u.writepart.buf, *plan->u.writepart.lenp);
+       if (ret < 0) {
+               /* Override next function to close us. */
+               plan->next = io_close;
+               return true;
+       }
+
+       *plan->u.writepart.lenp = ret;
+       return true;
 }
 
 /* Queue a partial write request. */
@@ -260,16 +267,10 @@ static struct io_plan do_next(struct io_conn *conn)
 
 struct io_plan do_ready(struct io_conn *conn)
 {
-       switch (conn->plan.io(conn)) {
-       case RESULT_CLOSE:
-               return io_close(conn, NULL);
-       case RESULT_FINISHED:
+       if (conn->plan.io(conn->fd.fd, &conn->plan))
                return do_next(conn);
-       case RESULT_AGAIN:
-               return conn->plan;
-       default:
-               abort();
-       }
+
+       return conn->plan;
 }
 
 /* Useful next functions. */
index cbd2b9be248b803daec99586001892e6e4e716c9..b7249e3a6b916a4ac966b77d81d00e244fd64319 100644 (file)
@@ -28,12 +28,6 @@ struct io_state_writepart {
        size_t *lenp;
 };
 
-enum io_result {
-       RESULT_AGAIN,
-       RESULT_FINISHED,
-       RESULT_CLOSE
-};
-
 /**
  * struct io_plan - returned from a setup function.
  *
@@ -42,7 +36,7 @@ enum io_result {
 struct io_plan {
        int pollflag;
        /* Only NULL if idle. */
-       enum io_result (*io)(struct io_conn *conn);
+       bool (*io)(int fd, struct io_plan *plan);
        /* Only NULL if closing. */
        struct io_plan (*next)(struct io_conn *, void *arg);
        void *next_arg;