libubus: fix multiple inclusions of libubus.h
[project/ubus.git] / libubus.h
1 /*
2 * Copyright (C) 2011 Felix Fietkau <nbd@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License version 2.1
6 * as published by the Free Software Foundation
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14 #ifndef __LIBUBUS_H
15 #define __LIBUBUS_H
16
17 #include <libubox/avl.h>
18 #include <libubox/list.h>
19 #include <libubox/blobmsg.h>
20 #include <libubox/uloop.h>
21 #include <stdint.h>
22 #include "ubusmsg.h"
23 #include "ubus_common.h"
24
25 struct ubus_context;
26 struct ubus_msg_src;
27 struct ubus_object;
28 struct ubus_request;
29 struct ubus_request_data;
30 struct ubus_object_data;
31 struct ubus_event_handler;
32 struct ubus_watch_object;
33
34 typedef void (*ubus_lookup_handler_t)(struct ubus_context *ctx,
35 struct ubus_object_data *obj,
36 void *priv);
37 typedef int (*ubus_handler_t)(struct ubus_context *ctx, struct ubus_object *obj,
38 struct ubus_request_data *req,
39 const char *method, struct blob_attr *msg);
40 typedef void (*ubus_event_handler_t)(struct ubus_context *ctx, struct ubus_event_handler *ev,
41 const char *type, struct blob_attr *msg);
42 typedef void (*ubus_watch_handler_t)(struct ubus_context *ctx, struct ubus_watch_object *w,
43 uint32_t id);
44 typedef void (*ubus_data_handler_t)(struct ubus_request *req,
45 int type, struct blob_attr *msg);
46 typedef void (*ubus_complete_handler_t)(struct ubus_request *req, int ret);
47
48 #define UBUS_OBJECT_TYPE(_name, _methods) \
49 { \
50 .name = _name, \
51 .id = 0, \
52 .n_methods = ARRAY_SIZE(_methods), \
53 .methods = _methods \
54 }
55
56 #define UBUS_METHOD(_name, _handler, _policy) \
57 { \
58 .name = _name, \
59 .handler = _handler, \
60 .policy = _policy, \
61 .n_policy = ARRAY_SIZE(_policy) \
62 }
63
64 struct ubus_method {
65 const char *name;
66 ubus_handler_t handler;
67
68 const struct blobmsg_policy *policy;
69 int n_policy;
70 };
71
72 struct ubus_object_type {
73 const char *name;
74 uint32_t id;
75
76 const struct ubus_method *methods;
77 int n_methods;
78 };
79
80 struct ubus_object {
81 struct avl_node avl;
82
83 const char *name;
84 uint32_t id;
85
86 const char *path;
87 struct ubus_object_type *type;
88
89 const struct ubus_method *methods;
90 int n_methods;
91 };
92
93 struct ubus_watch_object {
94 struct ubus_object obj;
95
96 ubus_watch_handler_t cb;
97 };
98
99 struct ubus_event_handler {
100 struct ubus_object obj;
101
102 ubus_event_handler_t cb;
103 };
104
105 struct ubus_context {
106 struct list_head requests;
107 struct avl_tree objects;
108 struct list_head pending;
109
110 struct uloop_fd sock;
111
112 uint32_t local_id;
113 uint32_t request_seq;
114 int stack_depth;
115
116 void (*connection_lost)(struct ubus_context *ctx);
117
118 struct {
119 struct ubus_msghdr hdr;
120 char data[UBUS_MAX_MSGLEN];
121 } msgbuf;
122 };
123
124 struct ubus_object_data {
125 uint32_t id;
126 uint32_t type_id;
127 const char *path;
128 struct blob_attr *signature;
129 };
130
131 struct ubus_request_data {
132 uint32_t object;
133 uint32_t peer;
134 uint32_t seq;
135 };
136
137 struct ubus_request {
138 struct list_head list;
139
140 struct list_head pending;
141 bool status_msg;
142 int status_code;
143 bool blocked;
144 bool cancelled;
145
146 uint32_t peer;
147 uint32_t seq;
148
149 ubus_data_handler_t raw_data_cb;
150 ubus_data_handler_t data_cb;
151 ubus_complete_handler_t complete_cb;
152
153 struct ubus_context *ctx;
154 void *priv;
155 };
156
157
158 struct ubus_context *ubus_connect(const char *path);
159 int ubus_reconnect(struct ubus_context *ctx, const char *path);
160 void ubus_free(struct ubus_context *ctx);
161
162 const char *ubus_strerror(int error);
163
164 static inline void ubus_add_uloop(struct ubus_context *ctx)
165 {
166 uloop_fd_add(&ctx->sock, ULOOP_BLOCKING | ULOOP_READ);
167 }
168
169 /* call this for read events on ctx->sock.fd when not using uloop */
170 static inline void ubus_handle_event(struct ubus_context *ctx)
171 {
172 ctx->sock.cb(&ctx->sock, ULOOP_READ);
173 }
174
175 /* ----------- raw request handling ----------- */
176
177 /* wait for a request to complete and return its status */
178 int ubus_complete_request(struct ubus_context *ctx, struct ubus_request *req,
179 int timeout);
180
181 /* complete a request asynchronously */
182 void ubus_complete_request_async(struct ubus_context *ctx,
183 struct ubus_request *req);
184
185 /* abort an asynchronous request */
186 void ubus_abort_request(struct ubus_context *ctx, struct ubus_request *req);
187
188 /* ----------- objects ----------- */
189
190 int ubus_lookup(struct ubus_context *ctx, const char *path,
191 ubus_lookup_handler_t cb, void *priv);
192
193 int ubus_lookup_id(struct ubus_context *ctx, const char *path, uint32_t *id);
194
195 /* make an object visible to remote connections */
196 int ubus_add_object(struct ubus_context *ctx, struct ubus_object *obj);
197
198 /* remove the object from the ubus connection */
199 int ubus_remove_object(struct ubus_context *ctx, struct ubus_object *obj);
200
201 /* add an object for watching other object state changes */
202 int ubus_register_watch_object(struct ubus_context *ctx, struct ubus_watch_object *obj);
203
204 int ubus_watch_object_add(struct ubus_context *ctx, struct ubus_watch_object *obj, uint32_t id);
205
206 int ubus_watch_object_remove(struct ubus_context *ctx, struct ubus_watch_object *obj, uint32_t id);
207
208 /* ----------- rpc ----------- */
209
210 /* invoke a method on a specific object */
211 int ubus_invoke(struct ubus_context *ctx, uint32_t obj, const char *method,
212 struct blob_attr *msg, ubus_data_handler_t cb, void *priv,
213 int timeout);
214
215 /* asynchronous version of ubus_invoke() */
216 int ubus_invoke_async(struct ubus_context *ctx, uint32_t obj, const char *method,
217 struct blob_attr *msg, struct ubus_request *req);
218
219 /* send a reply to an incoming object method call */
220 int ubus_send_reply(struct ubus_context *ctx, struct ubus_request_data *req,
221 struct blob_attr *msg);
222
223 /* ----------- events ----------- */
224
225 int ubus_send_event(struct ubus_context *ctx, const char *id,
226 struct blob_attr *data);
227
228 int ubus_register_event_handler(struct ubus_context *ctx,
229 struct ubus_event_handler *ev,
230 const char *pattern);
231
232 static inline int ubus_unregister_event_handler(struct ubus_context *ctx,
233 struct ubus_event_handler *ev)
234 {
235 return ubus_remove_object(ctx, &ev->obj);
236 }
237
238 #endif