udevtrigger: rename variables in scan_subdir
[project/procd.git] / utils.h
1 /*
2  * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3  * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU Lesser General Public License version 2.1
7  * as published by the Free Software Foundation
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #ifndef __PROCD_UTILS_H
16 #define __PROCD_UTILS_H
17
18 #include <libubox/avl.h>
19 #include <libubox/blob.h>
20 #include <libubox/blobmsg.h>
21
22 struct blobmsg_list_node {
23         struct avl_node avl;
24         struct blob_attr *data;
25 };
26
27 typedef bool (*blobmsg_list_cmp)(struct blobmsg_list_node *l1, struct blobmsg_list_node *l2);
28 typedef void (*blobmsg_update_cb)(struct blobmsg_list_node *n);
29
30 struct blobmsg_list {
31         struct avl_tree avl;
32         int node_offset;
33         int node_len;
34
35         blobmsg_list_cmp cmp;
36 };
37
38 #define blobmsg_list_simple_init(list) \
39         __blobmsg_list_init(list, 0, sizeof(struct blobmsg_list_node), NULL)
40
41 #define blobmsg_list_init(list, type, field, cmp) \
42         __blobmsg_list_init(list, offsetof(type, field), sizeof(type), cmp)
43
44 #define blobmsg_list_for_each(list, element) \
45         avl_for_each_element(&(list)->avl, element, avl)
46
47 void __blobmsg_list_init(struct blobmsg_list *list, int offset, int len, blobmsg_list_cmp cmp);
48 int blobmsg_list_fill(struct blobmsg_list *list, void *data, int len, bool array);
49 void blobmsg_list_free(struct blobmsg_list *list);
50 bool blobmsg_list_equal(struct blobmsg_list *l1, struct blobmsg_list *l2);
51 void blobmsg_list_move(struct blobmsg_list *list, struct blobmsg_list *src);
52
53 #endif