]> jfr.im git - solanum.git/blame - librb/include/rb_dictionary.h
Merge pull request #174 from staticfox/morecleanup
[solanum.git] / librb / include / rb_dictionary.h
CommitLineData
a4bf26dd
EM
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
2a9257c6
EM
28#include "librb-config.h"
29
a4bf26dd
EM
30struct Dictionary; /* defined in src/dictionary.c */
31
32typedef int (*DCF)(/* const void *a, const void *b */);
33
34struct DictionaryElement
35{
36 struct DictionaryElement *left, *right, *prev, *next;
37 void *data;
38 const void *key;
39 int position;
40};
41
42struct 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 */
56extern 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 */
62extern 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 */
69extern 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 */
75extern 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 */
81extern 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 */
91extern 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 */
102extern 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 */
112extern 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 */
119extern 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 */
125extern 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 */
131extern 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 */
136extern 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 */
141extern 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 */
146extern 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 */
151extern unsigned int rb_dictionary_size(struct Dictionary *dtree);
152
153void rb_dictionary_stats(struct Dictionary *dict, void (*cb)(const char *line, void *privdata), void *privdata);
154void rb_dictionary_stats_walk(void (*cb)(const char *line, void *privdata), void *privdata);
155
e0dc28c5
AC
156#ifndef _WIN32
157
a4bf26dd
EM
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
e0dc28c5
AC
164#else
165
166#define RB_POINTER_TO_INT(x) ((int32_t) (unsigned long long) (x))
167#define RB_INT_TO_POINTER(x) ((void *) (unsigned long long) (int32_t) (x))
168
169#define RB_POINTER_TO_UINT(x) ((uint32_t) (unsigned long long) (x))
170#define RB_UINT_TO_POINTER(x) ((void *) (unsigned long long) (uint32_t) (x))
171
e0dc28c5
AC
172#endif
173
a4bf26dd
EM
174static inline int rb_int32cmp(const void *a, const void *b)
175{
176 return RB_POINTER_TO_INT(b) - RB_POINTER_TO_INT(a);
177}
178
179static inline int rb_uint32cmp(const void *a, const void *b)
180{
181 return RB_POINTER_TO_UINT(b) - RB_POINTER_TO_UINT(a);
182}
183
184#endif