add ubus support
[project/uhttpd.git] / ubus.h
1 /*
2 * uhttpd - Tiny single-threaded httpd
3 *
4 * Copyright (C) 2012 Jo-Philipp Wich <xm@subsignal.org>
5 * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19
20 #ifndef __UHTTPD_UBUS_H
21 #define __UHTTPD_UBUS_H
22
23 #include <libubox/avl.h>
24 #include <libubox/blobmsg_json.h>
25
26 #define UBUS_SID_LEN 32
27 #define UH_UBUS_MAX_POST_SIZE 4096
28
29 struct uh_ubus_request_data {
30 const char *sid;
31 const char *object;
32 const char *function;
33 };
34
35 struct uh_ubus_session {
36 struct avl_node avl;
37 char id[UBUS_SID_LEN + 1];
38
39 struct uloop_timeout t;
40 struct avl_tree data;
41 struct avl_tree acls;
42
43 int timeout;
44 };
45
46 struct uh_ubus_session_data {
47 struct avl_node avl;
48 struct blob_attr attr[];
49 };
50
51 struct uh_ubus_session_acl {
52 struct avl_node avl;
53 const char *object;
54 const char *function;
55 int sort_len;
56 };
57
58 #endif