libubus: keep objects in an avl tree
[project/ubus.git] / libubus.h
1 #include <libubox/avl.h>
2 #include <libubox/list.h>
3 #include <libubox/blobmsg.h>
4 #include <libubox/uloop.h>
5 #include <stdint.h>
6 #include "ubusmsg.h"
7 #include "ubus_common.h"
8
9 struct ubus_msg_src;
10 struct ubus_object;
11 struct ubus_request;
12 struct ubus_request_data;
13
14 typedef void (*ubus_handler_t)(struct ubus_object *obj,
15                                struct ubus_request_data *req,
16                                const char *method, struct blob_attr *msg);
17 typedef void (*ubus_data_handler_t)(struct ubus_request *req,
18                                     int type, struct blob_attr *msg);
19 typedef void (*ubus_complete_handler_t)(struct ubus_request *req, int ret);
20
21
22 #define UBUS_SIGNATURE(_type, _name)    { .type = _type, .name = _name }
23
24 #define UBUS_METHOD_START(_name)                UBUS_SIGNATURE(UBUS_SIGNATURE_METHOD, _name)
25 #define UBUS_METHOD_END()                       UBUS_SIGNATURE(UBUS_SIGNATURE_END, NULL)
26
27 #define UBUS_FIELD(_type, _name)                UBUS_SIGNATURE(BLOBMSG_TYPE_ ## _type, _name)
28
29 #define UBUS_ARRAY(_name)                       UBUS_FIELD(ARRAY, _name)
30 #define UBUS_ARRAY_END()                        UBUS_SIGNATURE(UBUS_SIGNATURE_END, NULL)
31
32 #define UBUS_TABLE_START(_name)                 UBUS_FIELD(TABLE, _name)
33 #define UBUS_TABLE_END()                        UBUS_SIGNATURE(UBUS_SIGNATURE_END, NULL)
34
35 #define UBUS_OBJECT_TYPE(_name, _signature)             \
36         {                                               \
37                 .name = _name,                          \
38                 .id = 0,                                \
39                 .n_signature = ARRAY_SIZE(_signature),  \
40                 .signature = _signature                 \
41         }
42
43 struct ubus_signature {
44         enum blobmsg_type type;
45         const char *name;
46 };
47
48 struct ubus_object_type {
49         const char *name;
50         uint32_t id;
51         int n_signature;
52         const struct ubus_signature *signature;
53 };
54
55 struct ubus_object {
56         struct avl_node avl;
57
58         const char *name;
59         uint32_t id;
60
61         const char *path;
62         struct ubus_object_type *type;
63 };
64
65 struct ubus_context {
66         struct list_head requests;
67         struct avl_tree objects;
68
69         struct uloop_fd sock;
70
71         uint32_t local_id;
72         uint32_t request_seq;
73
74         struct {
75                 struct ubus_msghdr hdr;
76                 char data[UBUS_MAX_MSGLEN - sizeof(struct ubus_msghdr)];
77         } msgbuf;
78 };
79
80 struct ubus_request_data {
81         uint32_t object;
82         uint32_t peer;
83         uint32_t seq;
84 };
85
86 struct ubus_request {
87         struct list_head list;
88
89         struct list_head pending;
90         bool status_msg;
91         int status_code;
92         bool blocked;
93         bool cancelled;
94
95         uint32_t peer;
96         uint32_t seq;
97
98         ubus_data_handler_t data_cb;
99         ubus_complete_handler_t complete_cb;
100
101         struct ubus_context *ctx;
102         void *priv;
103 };
104
105 #define BLOBMSG_END_TABLE       BLOBMSG_TYPE_UNSPEC
106
107 struct ubus_context *ubus_connect(const char *path);
108 void ubus_free(struct ubus_context *ctx);
109
110 const char *ubus_strerror(int error);
111
112 /* ----------- helpers for message handling ----------- */
113
114 struct blob_attr **ubus_parse_msg(struct blob_attr *msg);
115
116 /* ----------- raw request handling ----------- */
117
118 /* start a raw request */
119 int ubus_start_request(struct ubus_context *ctx, struct ubus_request *req,
120                        struct blob_attr *msg, int cmd, uint32_t peer);
121
122 /* wait for a request to complete and return its status */
123 int ubus_complete_request(struct ubus_context *ctx, struct ubus_request *req);
124
125 /* complete a request asynchronously */
126 void ubus_complete_request_async(struct ubus_context *ctx,
127                                  struct ubus_request *req);
128
129 /* abort an asynchronous request */
130 void ubus_abort_request(struct ubus_context *ctx, struct ubus_request *req);
131
132 /* ----------- rpc ----------- */
133
134 /* invoke a method on a specific object */
135 int ubus_invoke(struct ubus_context *ctx, uint32_t obj, const char *method,
136                 struct blob_attr *msg, ubus_data_handler_t cb, void *priv);
137
138 /* asynchronous version of ubus_invoke() */
139 void ubus_invoke_async(struct ubus_context *ctx, uint32_t obj, const char *method,
140                        struct blob_attr *msg, struct ubus_request *req);
141
142 /* make an object visible to remote connections */
143 int ubus_publish(struct ubus_context *ctx, struct ubus_object *obj);
144
145