]> git.ozlabs.org Git - ccan/blob - ccan/io/backend.h
ccan/io: have io_plan mappable back to io_conn.
[ccan] / ccan / io / backend.h
1 /* Licensed under LGPLv2.1+ - see LICENSE file for details */
2 #ifndef CCAN_IO_BACKEND_H
3 #define CCAN_IO_BACKEND_H
4 #include <stdbool.h>
5 #include "io_plan.h"
6 #include <ccan/list/list.h>
7
8 struct fd {
9         int fd;
10         bool listener;
11         size_t backend_info;
12 };
13
14 /* Listeners create connections. */
15 struct io_listener {
16         struct fd fd;
17
18         const tal_t *ctx;
19
20         /* These are for connections we create. */
21         struct io_plan *(*init)(struct io_conn *conn, void *arg);
22         void *arg;
23 };
24
25 enum io_plan_status {
26         /* As before calling next function. */
27         IO_UNSET,
28         /* Normal, but haven't started yet. */
29         IO_POLLING_NOTSTARTED,
30         IO_POLLING_STARTED,
31         /* Waiting for io_wake */
32         IO_WAITING,
33         /* Always do this. */
34         IO_ALWAYS
35 };
36
37 /**
38  * struct io_plan - one half of I/O to do
39  * @status: the status of this plan.
40  * @dir: are we plan[0] or plan[1] inside io_conn?
41  * @io: function to call when fd becomes read/writable, returns 0 to be
42  *      called again, 1 if it's finished, and -1 on error (fd will be closed)
43  * @next: the next function which is called if io returns 1.
44  * @next_arg: the argument to @next
45  * @u1, @u2: scratch space for @io.
46  */
47 struct io_plan {
48         enum io_plan_status status;
49         enum io_direction dir;
50
51         int (*io)(int fd, struct io_plan_arg *arg);
52
53         struct io_plan *(*next)(struct io_conn *, void *next_arg);
54         void *next_arg;
55
56         struct io_plan_arg arg;
57 };
58
59 /* One connection per client. */
60 struct io_conn {
61         struct fd fd;
62
63         /* always list. */
64         struct list_node always;
65
66         void (*finish)(struct io_conn *, void *arg);
67         void *finish_arg;
68
69         struct io_plan plan[2];
70 };
71
72 extern void *io_loop_return;
73
74 bool add_listener(struct io_listener *l);
75 bool add_conn(struct io_conn *c);
76 bool add_duplex(struct io_conn *c);
77 void del_listener(struct io_listener *l);
78 void cleanup_conn_without_close(struct io_conn *c);
79 void backend_new_always(struct io_conn *conn);
80 void backend_new_plan(struct io_conn *conn);
81 void remove_from_always(struct io_conn *conn);
82 void backend_plan_done(struct io_conn *conn);
83
84 void backend_wake(const void *wait);
85
86 void io_ready(struct io_conn *conn, int pollflags);
87 void io_do_always(struct io_conn *conn);
88 void io_do_wakeup(struct io_conn *conn, enum io_direction dir);
89 void *do_io_loop(struct io_conn **ready);
90 #endif /* CCAN_IO_BACKEND_H */