]> jfr.im git - solanum.git/blob - librb/include/rb_dictionary.h
librb: rb_dictionary: temporary hack to shut up gcc on windows
[solanum.git] / librb / include / rb_dictionary.h
1 /*
2 * charybdis: an advanced ircd.
3 * rb_dictionary.h: Dictionary-based storage.
4 *
5 * Copyright (c) 2007 William Pitcock <nenolod -at- sacredspiral.co.uk>
6 * Copyright (c) 2007 Jilles Tjoelker <jilles -at- stack.nl>
7 *
8 * Permission to use, copy, modify, and/or distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice is present in all copies.
11 *
12 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
13 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
15 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
16 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
17 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
18 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
19 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
20 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
21 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
22 * POSSIBILITY OF SUCH DAMAGE.
23 */
24
25 #ifndef __RB_DICTIONARY_H__
26 #define __RB_DICTIONARY_H__
27
28 #include "librb-config.h"
29
30 struct Dictionary; /* defined in src/dictionary.c */
31
32 typedef int (*DCF)(/* const void *a, const void *b */);
33
34 struct DictionaryElement
35 {
36 struct DictionaryElement *left, *right, *prev, *next;
37 void *data;
38 const void *key;
39 int position;
40 };
41
42 struct DictionaryIter
43 {
44 struct DictionaryElement *cur, *next;
45 };
46
47 /*
48 * this is a convenience macro for inlining iteration of dictionaries.
49 */
50 #define DICTIONARY_FOREACH(element, state, dict) for (rb_dictionary_foreach_start((dict), (state)); (element = rb_dictionary_foreach_cur((dict), (state))); rb_dictionary_foreach_next((dict), (state)))
51
52 /*
53 * rb_dictionary_create_named() creates a new dictionary tree which has a name.
54 * name is the name, compare_cb is the comparator.
55 */
56 extern struct Dictionary *rb_dictionary_create(const char *name, DCF compare_cb);
57
58 /*
59 * rb_dictionary_set_comparator_func() resets the comparator used for lookups and
60 * insertions in the DTree structure.
61 */
62 extern void rb_dictionary_set_comparator_func(struct Dictionary *dict,
63 DCF compare_cb);
64
65 /*
66 * rb_dictionary_get_comparator_func() returns the comparator used for lookups and
67 * insertions in the DTree structure.
68 */
69 extern DCF rb_dictionary_get_comparator_func(struct Dictionary *dict);
70
71 /*
72 * rb_dictionary_get_linear_index() returns the linear index of an object in the
73 * DTree structure.
74 */
75 extern int rb_dictionary_get_linear_index(struct Dictionary *dict, const void *key);
76
77 /*
78 * rb_dictionary_destroy() destroys all entries in a dtree, and also optionally calls
79 * a defined callback function to destroy any data attached to it.
80 */
81 extern void rb_dictionary_destroy(struct Dictionary *dtree,
82 void (*destroy_cb)(struct DictionaryElement *delem, void *privdata),
83 void *privdata);
84
85 /*
86 * rb_dictionary_foreach() iterates all entries in a dtree, and also optionally calls
87 * a defined callback function to use any data attached to it.
88 *
89 * To shortcircuit iteration, return non-zero from the callback function.
90 */
91 extern void rb_dictionary_foreach(struct Dictionary *dtree,
92 int (*foreach_cb)(struct DictionaryElement *delem, void *privdata),
93 void *privdata);
94
95 /*
96 * rb_dictionary_search() iterates all entries in a dtree, and also optionally calls
97 * a defined callback function to use any data attached to it.
98 *
99 * When the object is found, a non-NULL is returned from the callback, which results
100 * in that object being returned to the user.
101 */
102 extern void *rb_dictionary_search(struct Dictionary *dtree,
103 void *(*foreach_cb)(struct DictionaryElement *delem, void *privdata),
104 void *privdata);
105
106 /*
107 * rb_dictionary_foreach_start() begins an iteration over all items
108 * keeping state in the given struct. 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 */
112 extern void rb_dictionary_foreach_start(struct Dictionary *dtree,
113 struct DictionaryIter *state);
114
115 /*
116 * rb_dictionary_foreach_cur() returns the current element of the iteration,
117 * or NULL if there are no more elements.
118 */
119 extern void *rb_dictionary_foreach_cur(struct Dictionary *dtree,
120 struct DictionaryIter *state);
121
122 /*
123 * rb_dictionary_foreach_next() moves to the next element.
124 */
125 extern void rb_dictionary_foreach_next(struct Dictionary *dtree,
126 struct DictionaryIter *state);
127
128 /*
129 * rb_dictionary_add() adds a key->value entry to the dictionary tree.
130 */
131 extern struct DictionaryElement *rb_dictionary_add(struct Dictionary *dtree, const void *key, void *data);
132
133 /*
134 * rb_dictionary_find() returns a struct DictionaryElement container from a dtree for key 'key'.
135 */
136 extern struct DictionaryElement *rb_dictionary_find(struct Dictionary *dtree, const void *key);
137
138 /*
139 * rb_dictionary_find() returns data from a dtree for key 'key'.
140 */
141 extern void *rb_dictionary_retrieve(struct Dictionary *dtree, const void *key);
142
143 /*
144 * rb_dictionary_delete() deletes a key->value entry from the dictionary tree.
145 */
146 extern void *rb_dictionary_delete(struct Dictionary *dtree, const void *key);
147
148 /*
149 * rb_dictionary_size() returns the number of elements in a dictionary tree.
150 */
151 extern unsigned int rb_dictionary_size(struct Dictionary *dtree);
152
153 void rb_dictionary_stats(struct Dictionary *dict, void (*cb)(const char *line, void *privdata), void *privdata);
154 void rb_dictionary_stats_walk(void (*cb)(const char *line, void *privdata), void *privdata);
155
156 #ifndef _WIN32
157
158 #define RB_POINTER_TO_INT(x) ((int32_t) (long) (x))
159 #define RB_INT_TO_POINTER(x) ((void *) (long) (int32_t) (x))
160
161 #define RB_POINTER_TO_UINT(x) ((uint32_t) (unsigned long) (x))
162 #define RB_UINT_TO_POINTER(x) ((void *) (unsigned long) (uint32_t) (x))
163
164 #define RB_POINTER_TO_LONG(x) ((int64_t) (unsigned long long) (x))
165 #define RB_LONG_TO_POINTER(x) ((void *) (unsigned long long) (int64_t) (x))
166
167 #define RB_POINTER_TO_ULONG(x) ((uint64_t) (unsigned long long) (x))
168 #define RB_ULONG_TO_POINTER(x) ((void *) (unsigned long long) (uint64_t) (x))
169
170 #else
171
172 #define RB_POINTER_TO_INT(x) ((int32_t) (unsigned long long) (x))
173 #define RB_INT_TO_POINTER(x) ((void *) (unsigned long long) (int32_t) (x))
174
175 #define RB_POINTER_TO_UINT(x) ((uint32_t) (unsigned long long) (x))
176 #define RB_UINT_TO_POINTER(x) ((void *) (unsigned long long) (uint32_t) (x))
177
178 #define RB_POINTER_TO_LONG(x) ((int64_t) (unsigned long long) (x))
179 #define RB_LONG_TO_POINTER(x) ((void *) (unsigned long long) (int64_t) (x))
180
181 #define RB_POINTER_TO_ULONG(x) ((uint64_t) (unsigned long long) (x))
182 #define RB_ULONG_TO_POINTER(x) ((void *) (unsigned long long) (uint64_t) (x))
183
184 #endif
185
186 static inline int rb_int32cmp(const void *a, const void *b)
187 {
188 return RB_POINTER_TO_INT(b) - RB_POINTER_TO_INT(a);
189 }
190
191 static inline int rb_uint32cmp(const void *a, const void *b)
192 {
193 return RB_POINTER_TO_UINT(b) - RB_POINTER_TO_UINT(a);
194 }
195
196 static inline int rb_int64cmp(const void *a, const void *b)
197 {
198 return RB_POINTER_TO_LONG(b) - RB_POINTER_TO_LONG(a);
199 }
200
201 static inline int rb_uint64cmp(const void *a, const void *b)
202 {
203 return RB_POINTER_TO_ULONG(b) - RB_POINTER_TO_ULONG(a);
204 }
205
206 #endif