add more parsing code
[project/procd.git] / utils.c
1 #include <libubox/avl.h>
2 #include <libubox/avl-cmp.h>
3 #include "utils.h"
4
5 void
6 __blobmsg_list_init(struct blobmsg_list *list, int offset, int len)
7 {
8         avl_init(&list->avl, avl_strcmp, false, NULL);
9         list->node_offset = offset;
10         list->node_len = len;
11 }
12
13 int
14 blobmsg_list_fill(struct blobmsg_list *list, void *data, int len)
15 {
16         struct avl_tree *tree = &list->avl;
17         struct blobmsg_list_node *node;
18         struct blob_attr *cur;
19         void *ptr;
20         int count = 0;
21         int rem = len;
22
23         __blob_for_each_attr(cur, data, rem) {
24                 if (!blobmsg_check_attr(cur, true))
25                         continue;
26
27                 ptr = calloc(1, list->node_len);
28                 if (!ptr)
29                         return -1;
30
31                 node = (void *) ((char *)ptr + list->node_offset);
32                 node->avl.key = blobmsg_name(cur);
33                 node->data = cur;
34                 if (avl_insert(tree, &node->avl)) {
35                         free(ptr);
36                         continue;
37                 }
38
39                 count++;
40         }
41
42         return count;
43 }
44
45 void
46 blobmsg_list_move(struct blobmsg_list *list, struct blobmsg_list *src)
47 {
48         struct blobmsg_list_node *node, *tmp;
49         void *ptr;
50
51         avl_remove_all_elements(&src->avl, node, avl, tmp) {
52                 if (!avl_insert(&list->avl, &node->avl)) {
53                         ptr = ((char *) node - list->node_offset);
54                         free(ptr);
55                 }
56         }
57 }
58
59 void
60 blobmsg_list_free(struct blobmsg_list *list)
61 {
62         struct blobmsg_list_node *node, *tmp;
63         void *ptr;
64
65         avl_remove_all_elements(&list->avl, node, avl, tmp) {
66                 ptr = ((char *) node - list->node_offset);
67                 free(ptr);
68         }
69 }
70
71 bool
72 blobmsg_list_equal(struct blobmsg_list *l1, struct blobmsg_list *l2)
73 {
74         struct blobmsg_list_node *n1, *n2;
75         int count = l1->avl.count;
76
77         if (count != l2->avl.count)
78                 return false;
79
80         n1 = avl_first_element(&l1->avl, n1, avl);
81         n2 = avl_first_element(&l2->avl, n2, avl);
82
83         while (count-- > 0) {
84                 int len;
85
86                 len = blob_len(n1->data);
87                 if (len != blob_len(n2->data))
88                         return false;
89
90                 if (memcmp(n1->data, n2->data, len) != 0)
91                         return false;
92
93                 if (!count)
94                         break;
95
96                 n1 = avl_next_element(n1, avl);
97                 n2 = avl_next_element(n2, avl);
98         }
99
100         return true;
101 }