e20169a5cefc328b8c037a0510b07a6acb900f18
[project/procd.git] / utils.h
1 #ifndef __PROCD_UTILS_H
2 #define __PROCD_UTILS_H
3
4 #include <libubox/avl.h>
5 #include <libubox/blob.h>
6 #include <libubox/blobmsg.h>
7
8 struct blobmsg_list {
9         struct avl_tree avl;
10         int node_offset;
11         int node_len;
12 };
13
14 struct blobmsg_list_node {
15         struct avl_node avl;
16         struct blob_attr *data;
17 };
18
19 #define blobmsg_list_simple_init(list) \
20         __blobmsg_list_init(list, 0, sizeof(struct blobmsg_list_node))
21
22 #define blobmsg_list_init(list, type, field) \
23         __blobmsg_list_init(list, offsetof(type, field), sizeof(type))
24
25 #define blobmsg_list_for_each(list, element) \
26         avl_for_each_element(&(list)->avl, element, avl)
27
28 void __blobmsg_list_init(struct blobmsg_list *list, int offset, int len);
29 int blobmsg_list_fill(struct blobmsg_list *list, void *data, int len, bool array);
30 void blobmsg_list_free(struct blobmsg_list *list);
31 bool blobmsg_list_equal(struct blobmsg_list *l1, struct blobmsg_list *l2);
32 void blobmsg_list_move(struct blobmsg_list *list, struct blobmsg_list *src);
33
34 #endif