Commit cef578da authored by Rusty Russell's avatar Rusty Russell

ccan/io: make io functions more generic.

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: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 109f8003
...@@ -109,18 +109,19 @@ bool io_timeout_(struct io_conn *conn, struct timespec ts, ...@@ -109,18 +109,19 @@ bool io_timeout_(struct io_conn *conn, struct timespec ts,
return true; 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); ssize_t ret = write(fd, plan->u.write.buf, plan->u.write.len);
if (ret < 0) if (ret < 0) {
return RESULT_CLOSE; /* Override next function to close us. */
plan->next = io_close;
conn->plan.u.write.buf += ret; return true;
conn->plan.u.write.len -= ret; }
if (conn->plan.u.write.len == 0)
return RESULT_FINISHED; plan->u.write.buf += ret;
else plan->u.write.len -= ret;
return RESULT_AGAIN; return (plan->u.write.len == 0);
} }
/* Queue some data to be written. */ /* Queue some data to be written. */
...@@ -140,18 +141,18 @@ struct io_plan io_write_(const void *data, size_t len, ...@@ -140,18 +141,18 @@ struct io_plan io_write_(const void *data, size_t len,
return plan; 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, ssize_t ret = read(fd, plan->u.read.buf, plan->u.read.len);
conn->plan.u.read.len); if (ret <= 0) {
if (ret <= 0) /* Override next function to close us. */
return RESULT_CLOSE; plan->next = io_close;
conn->plan.u.read.buf += ret; return true;
conn->plan.u.read.len -= ret; }
if (conn->plan.u.read.len == 0)
return RESULT_FINISHED; plan->u.read.buf += ret;
else plan->u.read.len -= ret;
return RESULT_AGAIN; return (plan->u.read.len == 0);
} }
/* Queue a request to read into a buffer. */ /* Queue a request to read into a buffer. */
...@@ -171,14 +172,17 @@ struct io_plan io_read_(void *data, size_t len, ...@@ -171,14 +172,17 @@ struct io_plan io_read_(void *data, size_t len,
return plan; 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, ssize_t ret = read(fd, plan->u.readpart.buf, *plan->u.readpart.lenp);
*conn->plan.u.readpart.lenp); if (ret <= 0) {
if (ret <= 0) /* Override next function to close us. */
return RESULT_CLOSE; plan->next = io_close;
*conn->plan.u.readpart.lenp = ret; return true;
return RESULT_FINISHED; }
*plan->u.readpart.lenp = ret;
return true;
} }
/* Queue a partial request to read into a buffer. */ /* Queue a partial request to read into a buffer. */
...@@ -199,14 +203,17 @@ struct io_plan io_read_partial_(void *data, size_t *len, ...@@ -199,14 +203,17 @@ struct io_plan io_read_partial_(void *data, size_t *len,
return plan; 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, ssize_t ret = write(fd, plan->u.writepart.buf, *plan->u.writepart.lenp);
*conn->plan.u.writepart.lenp); if (ret < 0) {
if (ret < 0) /* Override next function to close us. */
return RESULT_CLOSE; plan->next = io_close;
*conn->plan.u.writepart.lenp = ret; return true;
return RESULT_FINISHED; }
*plan->u.writepart.lenp = ret;
return true;
} }
/* Queue a partial write request. */ /* Queue a partial write request. */
...@@ -260,16 +267,10 @@ static struct io_plan do_next(struct io_conn *conn) ...@@ -260,16 +267,10 @@ static struct io_plan do_next(struct io_conn *conn)
struct io_plan do_ready(struct io_conn *conn) struct io_plan do_ready(struct io_conn *conn)
{ {
switch (conn->plan.io(conn)) { if (conn->plan.io(conn->fd.fd, &conn->plan))
case RESULT_CLOSE:
return io_close(conn, NULL);
case RESULT_FINISHED:
return do_next(conn); return do_next(conn);
case RESULT_AGAIN:
return conn->plan; return conn->plan;
default:
abort();
}
} }
/* Useful next functions. */ /* Useful next functions. */
......
...@@ -28,12 +28,6 @@ struct io_state_writepart { ...@@ -28,12 +28,6 @@ struct io_state_writepart {
size_t *lenp; size_t *lenp;
}; };
enum io_result {
RESULT_AGAIN,
RESULT_FINISHED,
RESULT_CLOSE
};
/** /**
* struct io_plan - returned from a setup function. * struct io_plan - returned from a setup function.
* *
...@@ -42,7 +36,7 @@ enum io_result { ...@@ -42,7 +36,7 @@ enum io_result {
struct io_plan { struct io_plan {
int pollflag; int pollflag;
/* Only NULL if idle. */ /* Only NULL if idle. */
enum io_result (*io)(struct io_conn *conn); bool (*io)(int fd, struct io_plan *plan);
/* Only NULL if closing. */ /* Only NULL if closing. */
struct io_plan (*next)(struct io_conn *, void *arg); struct io_plan (*next)(struct io_conn *, void *arg);
void *next_arg; void *next_arg;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment