c8101e7323a88bc790f806a2f058d414ed1886f2
[project/netifd.git] / utils.h
1 #ifndef __NETIFD_UTILS_H
2 #define __NETIFD_UTILS_H
3
4 #include <libubox/list.h>
5 #include <libubox/avl.h>
6
7 #ifdef DEBUG
8 #define DPRINTF(format, ...) fprintf(stderr, "%s(%d): " format, __func__, __LINE__, ## __VA_ARGS__)
9 #else
10 #define DPRINTF(format, ...) no_debug(format, ## __VA_ARGS__)
11 #endif
12
13 static inline void no_debug(const char *fmt, ...)
14 {
15 }
16
17 #define __init __attribute__((constructor))
18
19 struct vlist_tree;
20 struct vlist_node;
21
22 typedef void (*vlist_update_cb)(struct vlist_tree *tree,
23                                 struct vlist_node *node_new,
24                                 struct vlist_node *node_old);
25
26 struct vlist_tree {
27         struct avl_tree avl;
28
29         vlist_update_cb update;
30         int node_offset;
31
32         int version;
33 };
34
35 struct vlist_node {
36         struct avl_node avl;
37         int version;
38 };
39
40 void __vlist_init(struct vlist_tree *tree, avl_tree_comp cmp, vlist_update_cb update, int offset);
41
42 #define vlist_init(tree, cmp, update, type, node) \
43         __vlist_init(tree, cmp, update, offsetof(type, node))
44
45 void vlist_add(struct vlist_tree *tree, struct vlist_node *node);
46 void vlist_delete(struct vlist_tree *tree, struct vlist_node *node);
47 void vlist_flush(struct vlist_tree *tree);
48 void vlist_flush_all(struct vlist_tree *tree);
49
50 #ifdef __linux__
51 static inline int fls(int x)
52 {
53     int r = 32;
54
55     if (!x)
56         return 0;
57     if (!(x & 0xffff0000u)) {
58         x <<= 16;
59         r -= 16;
60     }
61     if (!(x & 0xff000000u)) {
62         x <<= 8;
63         r -= 8;
64     }
65     if (!(x & 0xf0000000u)) {
66         x <<= 4;
67         r -= 4;
68     }
69     if (!(x & 0xc0000000u)) {
70         x <<= 2;
71         r -= 2;
72     }
73     if (!(x & 0x80000000u)) {
74         x <<= 1;
75         r -= 1;
76     }
77     return r;
78 }
79 #endif
80
81 int avl_strcmp(const void *k1, const void *k2, void *ptr);
82
83 #endif