libubox
C utility functions for OpenWrt.
vlist.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16 #include "vlist.h"
17 
18 void
20 {
21  tree->update = update;
22  tree->version = 1;
23 
24  avl_init(&tree->avl, cmp, 0, tree);
25 }
26 
27 void
28 vlist_delete(struct vlist_tree *tree, struct vlist_node *node)
29 {
30  if (!tree->no_delete)
31  avl_delete(&tree->avl, &node->avl);
32  tree->update(tree, NULL, node);
33 }
34 
35 void
36 vlist_add(struct vlist_tree *tree, struct vlist_node *node, const void *key)
37 {
38  struct vlist_node *old_node = NULL;
39  struct avl_node *anode;
40 
41  node->avl.key = key;
42  node->version = tree->version;
43 
44  anode = avl_find(&tree->avl, key);
45  if (anode) {
46  old_node = container_of(anode, struct vlist_node, avl);
47  if (tree->keep_old || tree->no_delete) {
48  old_node->version = tree->version;
49  goto update_only;
50  }
51 
52  avl_delete(&tree->avl, anode);
53  }
54 
55  avl_insert(&tree->avl, &node->avl);
56 
57 update_only:
58  tree->update(tree, node, old_node);
59 }
60 
61 void
62 vlist_flush(struct vlist_tree *tree)
63 {
64  struct vlist_node *node, *tmp;
65 
66  avl_for_each_element_safe(&tree->avl, node, avl, tmp) {
67  if ((node->version == tree->version || node->version == -1) &&
68  tree->version != -1)
69  continue;
70 
71  vlist_delete(tree, node);
72  }
73 }
74 
75 void
77 {
78  tree->version = -1;
79  vlist_flush(tree);
80 }
81 
82 
struct avl_node * avl_find(const struct avl_tree *tree, const void *key)
Definition: avl.c:115
int avl_insert(struct avl_tree *tree, struct avl_node *new)
Definition: avl.c:220
void avl_init(struct avl_tree *tree, avl_tree_comp comp, bool allow_dups, void *ptr)
Definition: avl.c:92
void avl_delete(struct avl_tree *tree, struct avl_node *node)
Definition: avl.c:307
#define avl_for_each_element_safe(tree, element, node_member, ptr)
Definition: avl.h:503
int(* avl_tree_comp)(const void *k1, const void *k2, void *ptr)
Definition: avl.h:104
#define container_of(ptr, type, member)
Definition: list.h:38
Definition: avl.h:56
const void * key
Definition: avl.h:84
Definition: test-avl.c:13
struct avl_node avl
Definition: test-avl.c:14
int version
Definition: vlist.h:41
struct avl_node avl
Definition: vlist.h:40
vlist_update_cb update
Definition: vlist.h:32
int version
Definition: vlist.h:36
bool keep_old
Definition: vlist.h:33
struct avl_tree avl
Definition: vlist.h:30
bool no_delete
Definition: vlist.h:34
void vlist_flush_all(struct vlist_tree *tree)
Definition: vlist.c:76
void vlist_flush(struct vlist_tree *tree)
Definition: vlist.c:62
void vlist_init(struct vlist_tree *tree, avl_tree_comp cmp, vlist_update_cb update)
Definition: vlist.c:19
void vlist_add(struct vlist_tree *tree, struct vlist_node *node, const void *key)
Definition: vlist.c:36
void vlist_delete(struct vlist_tree *tree, struct vlist_node *node)
Definition: vlist.c:28
void(* vlist_update_cb)(struct vlist_tree *tree, struct vlist_node *node_new, struct vlist_node *node_old)
Definition: vlist.h:25