Add built-in debug malloc wrapper.
[srvx.git] / src / dict-splay.c
1 /* dict-splay.c - Abstract dictionary type
2  * Copyright 2000-2004 srvx Development Team
3  *
4  * This file is part of srvx.
5  *
6  * srvx is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16
17 #include "common.h"
18 #include "dict.h"
19
20 /*
21  *    Create new dictionary.
22  */
23 dict_t
24 dict_new(void)
25 {
26     dict_t dict = calloc(1, sizeof(*dict));
27     return dict;
28 }
29
30 /*
31  *    Return number of entries in the dictionary.
32  */
33 unsigned int
34 dict_size(dict_t dict)
35 {
36     return dict->count;
37 }
38
39 /*
40  *    Set the function to be called when freeing a key structure.
41  *    If the function is NULL, just forget about the pointer.
42  */
43 void
44 dict_set_free_keys(dict_t dict, free_f free_keys)
45 {
46     dict->free_keys = free_keys;
47 }
48
49 /*
50  *    Set the function to free data.
51  * If the function is NULL, just forget about the pointer.
52  */
53 void
54 dict_set_free_data(dict_t dict, free_f free_data)
55 {
56     dict->free_data = free_data;
57 }
58
59 const char *
60 dict_foreach(dict_t dict, dict_iterator_f it_f, void *extra)
61 {
62     dict_iterator_t it;
63
64     for (it=dict_first(dict); it; it=iter_next(it)) {
65         if (it_f(iter_key(it), iter_data(it), extra)) return iter_key(it);
66     }
67     return NULL;
68 }
69
70 /*
71  *   This function finds a node and pulls it to the top of the tree.
72  *   This helps balance the tree and auto-cache things you search for.
73  */
74 static struct dict_node*
75 dict_splay(struct dict_node *node, const char *key)
76 {
77     struct dict_node N, *l, *r, *y;
78     if (!node) return NULL;
79     N.l = N.r = NULL;
80     l = r = &N;
81
82     while (1) {
83         int res = irccasecmp(key, node->key);
84         if (!res) break;
85         if (res < 0) {
86             if (!node->l) break;
87             res = irccasecmp(key, node->l->key);
88             if (res < 0) {
89                 y = node->l;
90                 node->l = y->r;
91                 y->r = node;
92                 node = y;
93                 if (!node->l) break;
94             }
95             r->l = node;
96             r = node;
97             node = node->l;
98         } else { /* res > 0 */
99             if (!node->r) break;
100             res = irccasecmp(key, node->r->key);
101             if (res > 0) {
102                 y = node->r;
103                 node->r = y->l;
104                 y->l = node;
105                 node = y;
106                 if (!node->r) break;
107             }
108             l->r = node;
109             l = node;
110             node = node->r;
111         }
112     }
113     l->r = node->l;
114     r->l = node->r;
115     node->l = N.r;
116     node->r = N.l;
117     return node;
118 }
119
120 /*
121  *    Free node.  Free data/key using free_f functions.
122  */
123 static void
124 dict_dispose_node(struct dict_node *node, free_f free_keys, free_f free_data)
125 {
126     if (free_keys && node->key) {
127         if (free_keys == free)
128             free((void*)node->key);
129         else
130             free_keys((void*)node->key);
131     }
132     if (free_data && node->data) {
133         if (free_data == free)
134             free(node->data);
135         else
136             free_data(node->data);
137     }
138     free(node);
139 }
140
141 /*
142  *    Insert an entry into the dictionary.
143  *    Key ordering (and uniqueness) is determined by case-insensitive
144  *    string comparison.
145  */
146 void
147 dict_insert(dict_t dict, const char *key, void *data)
148 {
149     struct dict_node *new_node;
150     if (!key)
151         return;
152     new_node = malloc(sizeof(struct dict_node));
153     new_node->key = key;
154     new_node->data = data;
155     if (dict->root) {
156         int res;
157         dict->root = dict_splay(dict->root, key);
158         res = irccasecmp(key, dict->root->key);
159         if (res < 0) {
160             /* insert just "before" current root */
161             new_node->l = dict->root->l;
162             new_node->r = dict->root;
163             dict->root->l = NULL;
164             if (dict->root->prev) {
165                 dict->root->prev->next = new_node;
166             } else {
167                 dict->first = new_node;
168             }
169             new_node->prev = dict->root->prev;
170             new_node->next = dict->root;
171             dict->root->prev = new_node;
172             dict->root = new_node;
173         } else if (res > 0) {
174             /* insert just "after" current root */
175             new_node->r = dict->root->r;
176             new_node->l = dict->root;
177             dict->root->r = NULL;
178             if (dict->root->next) {
179                 dict->root->next->prev = new_node;
180             } else {
181                 dict->last = new_node;
182             }
183             new_node->next = dict->root->next;
184             new_node->prev = dict->root;
185             dict->root->next = new_node;
186             dict->root = new_node;
187         } else {
188             /* maybe we don't want to overwrite it .. oh well */
189             if (dict->free_data) dict->free_data(dict->root->data);
190             if (dict->free_keys) dict->free_keys((void*)dict->root->key);
191             free(new_node);
192             dict->root->key = key;
193             dict->root->data = data;
194             /* decrement the count since we dropped the node */
195             dict->count--;
196         }
197     } else {
198         new_node->l = new_node->r = NULL;
199         new_node->next = new_node->prev = NULL;
200         dict->root = dict->first = dict->last = new_node;
201     }
202     dict->count++;
203 }
204
205 /*
206  *    Remove an entry from the dictionary.
207  *    Return non-zero if it was found, or zero if the key was not in the
208  *    dictionary.
209  */
210 int
211 dict_remove2(dict_t dict, const char *key, int no_dispose)
212 {
213     struct dict_node *new_root, *old_root;
214
215     if (!dict->root)
216         return 0;
217     dict->root = dict_splay(dict->root, key);
218     if (irccasecmp(key, dict->root->key))
219         return 0;
220
221     if (!dict->root->l) {
222         new_root = dict->root->r;
223     } else {
224         new_root = dict_splay(dict->root->l, key);
225         new_root->r = dict->root->r;
226     }
227     if (dict->root->prev) dict->root->prev->next = dict->root->next;
228     if (dict->first == dict->root) dict->first = dict->first->next;
229     if (dict->root->next) dict->root->next->prev = dict->root->prev;
230     if (dict->last == dict->root) dict->last = dict->last->prev;
231     old_root = dict->root;
232     dict->root = new_root;
233     dict->count--;
234     if (no_dispose) {
235         free(old_root);
236     } else {
237         dict_dispose_node(old_root, dict->free_keys, dict->free_data);
238     }
239     return 1;
240 }
241
242 /*
243  *    Find an entry in the dictionary.
244  *    If "found" is non-NULL, set it to non-zero if the key was found.
245  *    Return the data associated with the key (or NULL if the key was
246  *    not found).
247  */
248 void*
249 dict_find(dict_t dict, const char *key, int *found)
250 {
251     int was_found;
252     if (!dict || !dict->root || !key) {
253         if (found)
254             *found = 0;
255         return NULL;
256     }
257     dict->root = dict_splay(dict->root, key);
258     was_found = !irccasecmp(key, dict->root->key);
259     if (found)
260         *found = was_found;
261     return was_found ? dict->root->data : NULL;
262 }
263
264 /*
265  *    Delete an entire dictionary.
266  */
267 void
268 dict_delete(dict_t dict)
269 {
270     dict_iterator_t it, next;
271     if (!dict)
272         return;
273     for (it=dict_first(dict); it; it=next) {
274         next = iter_next(it);
275         dict_dispose_node(it, dict->free_keys, dict->free_data);
276     }
277     free(dict);
278 }
279
280 struct dict_sanity_struct {
281     unsigned int node_count;
282     struct dict_node *bad_node;
283     char error[128];
284 };
285
286 static int
287 dict_sanity_check_node(struct dict_node *node, struct dict_sanity_struct *dss)
288 {
289     if (!node->key) {
290         snprintf(dss->error, sizeof(dss->error), "Node %p had null key", node);
291         return 1;
292     }
293     if (node->l) {
294         if (dict_sanity_check_node(node->l, dss)) return 1;
295         if (irccasecmp(node->l->key, node->key) >= 0) {
296             snprintf(dss->error, sizeof(dss->error), "Node %p's left child's key '%s' >= its key '%s'", node, node->l->key, node->key);
297             return 1;
298         }
299     }
300     if (node->r) {
301         if (dict_sanity_check_node(node->r, dss)) return 1;
302         if (irccasecmp(node->key, node->r->key) >= 0) {
303             snprintf(dss->error, sizeof(dss->error), "Node %p's right child's key '%s' <= its key '%s'", node, node->r->key, node->key);
304             return 1;
305         }
306     }
307     dss->node_count++;
308     return 0;
309 }
310
311 /*
312  *    Perform sanity checks on the dict's internal structure.
313  */
314 char *
315 dict_sanity_check(dict_t dict)
316 {
317     struct dict_sanity_struct dss;
318     dss.node_count = 0;
319     dss.bad_node = 0;
320     dss.error[0] = 0;
321     if (dict->root && dict_sanity_check_node(dict->root, &dss)) {
322         return strdup(dss.error);
323     } else if (dss.node_count != dict->count) {
324         snprintf(dss.error, sizeof(dss.error), "Counted %d nodes but expected %d.", dss.node_count, dict->count);
325         return strdup(dss.error);
326     } else {
327         return 0;
328     }
329 }