]> jfr.im git - solanum.git/blame - librb/include/rb_radixtree.h
Rename RATBOX_PROFILE to RB_PROFILE.
[solanum.git] / librb / include / rb_radixtree.h
CommitLineData
a4bf26dd
EM
1/*
2 * charybdis: an advanced ircd.
3 * rb_radixtree.h: Dictionary-based storage.
4 *
5 * Copyright (c) 2007-2016 William Pitcock <nenolod -at- dereferenced.org>
6 * Copyright (c) 2007-2016 Jilles Tjoelker <jilles -at- stack.nl>
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * 1. Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * 3. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
26 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
30 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
31 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 */
34
35#ifndef __rb_radixtree_H__
36#define __rb_radixtree_H__
37
38struct rb_radixtree; /* defined in src/rb_radixtree.c */
39
40struct rb_radixtree_leaf; /* defined in src/rb_radixtree.c */
41
42/*
43 * struct rb_radixtree_iteration_state, private.
44 */
45struct rb_radixtree_iteration_state
46{
47 struct rb_radixtree_leaf *cur, *next;
48 void *pspare[4];
49 int ispare[4];
50};
51
52/*
53 * this is a convenience macro for inlining iteration of dictionaries.
54 */
55#define RB_RADIXTREE_FOREACH(element, state, dict) \
56 for (rb_radixtree_foreach_start((dict), (state)); (element = rb_radixtree_foreach_cur((dict), (state))); rb_radixtree_foreach_next((dict), (state)))
57
58#define RB_RADIXTREE_FOREACH_FROM(element, state, dict, key) \
59 for (rb_radixtree_foreach_start_from((dict), (state), (key)); (element = rb_radixtree_foreach_cur((dict), (state))); rb_radixtree_foreach_next((dict), (state)))
60
61/*
62 * rb_radixtree_create() creates a new patricia tree of the defined resolution.
63 * compare_cb is the canonizing function.
64 */
65
66extern struct rb_radixtree *rb_radixtree_create(const char *name, void (*canonize_cb)(char *key));
67
68/*
69 * rb_radixtree_shutdown() deallocates all heaps used in patricia trees. This is
70 * useful on embedded devices with little memory, and/or when you know you won't need
71 * any more patricia trees.
72 */
73extern void rb_radixtree_shutdown(void);
74
75/*
76 * rb_radixtree_destroy() destroys all entries in a dtree, and also optionally calls
77 * a defined callback function to destroy any data attached to it.
78 */
79extern void rb_radixtree_destroy(struct rb_radixtree *dtree, void (*destroy_cb)(const char *key, void *data, void *privdata), void *privdata);
80
81/*
82 * rb_radixtree_foreach() iterates all entries in a dtree, and also optionally calls
83 * a defined callback function to use any data attached to it.
84 *
85 * To shortcircuit iteration, return non-zero from the callback function.
86 */
87extern void rb_radixtree_foreach(struct rb_radixtree *dtree, int (*foreach_cb)(const char *key, void *data, void *privdata), void *privdata);
88
89/*
90 * rb_radixtree_search() iterates all entries in a dtree, and also optionally calls
91 * a defined callback function to use any data attached to it.
92 *
93 * When the object is found, a non-NULL is returned from the callback, which results
94 * in that object being returned to the user.
95 */
96extern void *rb_radixtree_search(struct rb_radixtree *dtree, void *(*foreach_cb)(const char *key, void *data, void *privdata), void *privdata);
97
98/*
99 * rb_radixtree_foreach_start() begins an iteration over all items
100 * keeping state in the given struct. If there is only one iteration
101 * in progress at a time, it is permitted to remove the current element
102 * of the iteration (but not any other element).
103 */
104extern void rb_radixtree_foreach_start(struct rb_radixtree *dtree, struct rb_radixtree_iteration_state *state);
105
106/*
107 * rb_radixtree_foreach_start_from() begins an iteration over all items,
108 * starting with the item specified by `key`. If there is only one iteration
109 * in progress at a time, it is permitted to remove the current element
110 * of the iteration (but not any other element).
111 * Use NULL as a key to have it start at the beginning.
112 */
113extern void rb_radixtree_foreach_start_from(struct rb_radixtree *dtree, struct rb_radixtree_iteration_state *state, const char *key);
114
115/*
116 * rb_radixtree_foreach_cur() returns the current element of the iteration,
117 * or NULL if there are no more elements.
118 */
119extern void *rb_radixtree_foreach_cur(struct rb_radixtree *dtree, struct rb_radixtree_iteration_state *state);
120
121/*
122 * rb_radixtree_foreach_next() moves to the next element.
123 */
124extern void rb_radixtree_foreach_next(struct rb_radixtree *dtree, struct rb_radixtree_iteration_state *state);
125
126/*
127 * rb_radixtree_add() adds a key->value entry to the patricia tree.
128 */
129extern int rb_radixtree_add(struct rb_radixtree *dtree, const char *key, void *data);
130
131/*
132 * rb_radixtree_find() returns data from a dtree for key 'key'.
133 */
134extern void *rb_radixtree_retrieve(struct rb_radixtree *dtree, const char *key);
135
136/*
137 * rb_radixtree_delete() deletes a key->value entry from the patricia tree.
138 */
139extern void *rb_radixtree_delete(struct rb_radixtree *dtree, const char *key);
140
141/* Low-level functions */
142struct rb_radixtree_leaf *rb_radixtree_elem_add(struct rb_radixtree *dtree, const char *key, void *data);
143struct rb_radixtree_leaf *rb_radixtree_elem_find(struct rb_radixtree *dtree, const char *key, int fuzzy);
144void rb_radixtree_elem_delete(struct rb_radixtree *dtree, struct rb_radixtree_leaf *elem);
145const char *rb_radixtree_elem_get_key(struct rb_radixtree_leaf *elem);
146void rb_radixtree_elem_set_data(struct rb_radixtree_leaf *elem, void *data);
147void *rb_radixtree_elem_get_data(struct rb_radixtree_leaf *elem);
148
149unsigned int rb_radixtree_size(struct rb_radixtree *dict);
150void rb_radixtree_stats(struct rb_radixtree *dict, void (*cb)(const char *line, void *privdata), void *privdata);
151void rb_radixtree_stats_walk(void (*cb)(const char *line, void *privdata), void *privdata);
152
153#endif