]> git.ozlabs.org Git - ccan/blob - ccan/io/backend.h
e65c990683669d8cae1ee67a4fa3c540201a1764
[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 <ccan/timer/timer.h>
6
7 struct fd {
8         int fd;
9         bool listener;
10         size_t backend_info;
11 };
12
13 /* Listeners create connections. */
14 struct io_listener {
15         struct fd fd;
16
17         /* These are for connections we create. */
18         void (*init)(int fd, void *arg);
19         void *arg;
20 };
21
22 struct io_timeout {
23         struct timer timer;
24         struct io_conn *conn;
25
26         struct io_plan (*next)(struct io_conn *, void *arg);
27         void *next_arg;
28 };
29
30 /* One connection per client. */
31 struct io_conn {
32         struct fd fd;
33
34         void (*finish)(struct io_conn *, void *arg);
35         void *finish_arg;
36
37         struct io_conn *duplex;
38         struct io_timeout *timeout;
39
40         struct io_plan plan;
41 };
42
43 static inline bool timeout_active(const struct io_conn *conn)
44 {
45         return conn->timeout && conn->timeout->conn;
46 }
47
48 extern void *io_loop_return;
49
50 bool add_listener(struct io_listener *l);
51 bool add_conn(struct io_conn *c);
52 bool add_duplex(struct io_conn *c);
53 void del_listener(struct io_listener *l);
54 void backend_wakeup(struct io_conn *conn);
55 void backend_add_timeout(struct io_conn *conn, struct timespec ts);
56 void backend_del_timeout(struct io_conn *conn);
57
58 struct io_plan do_ready(struct io_conn *conn);
59 #endif /* CCAN_IO_BACKEND_H */