-
Notifications
You must be signed in to change notification settings - Fork 9
/
radix.c
419 lines (367 loc) · 10.7 KB
/
radix.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
/*
* a proper radix tree implementation.
* works on strings of bytes.
*/
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "radix.h"
#ifndef LSB_FIRST
static inline int count_bits(char *k1, char *k2, int count)
{
int mask = 128;
while (~(*k1 ^ *k2) & mask && --count) {
mask >>= 1;
if (0 == mask) {
mask = 128;
k1 += 1;
k2 += 1;
}
}
return count;
}
#else
static inline int count_bits(char *k1, char *k2, int count)
{
int mask = 1;
while (~(*k1 ^ *k2) & mask && --count) {
mask <<= 1;
if (256 == mask) {
mask = 1;
k1 += 1;
k2 += 1;
}
}
return count;
}
#endif
static int count_common_bits(char *k1, char *k2, int max)
{
int count = max;
// XXX SIMD-ify?
while (*k1 == *k2 && count >= sizeof(int) * 8) {
int *i1 = (int*)k1, *i2 = (int*)k2;
if (*i1 == *i2) {
k1 += sizeof(int);
k2 += sizeof(int);
count -= sizeof(int) * 8;
} else break;
}
while (*k1 == *k2 && count >= 8) {
k1++;
k2++;
count -= 8;
}
return max - count_bits(k1, k2, count);
}
#ifndef LSB_FIRST
static inline int shift(int i)
{
return 128 >> (i & 7);
}
#else
static inline int shift(int i)
{
return 1 << (i & 7);
}
#endif
static inline int get_bit_at(char *k, int i)
{
int bytes = i >> 3;
int mask = shift(i);
k += bytes;
return *k & mask;
}
static inline int rdx_min(int a, int b)
{
return a > b ? b : a;
}
static int insert_leaf(rxt_node *newleaf, rxt_node *sibling, rxt_node *parent)
{
int idx, bit, max_len;
rxt_node *inner;
max_len = rdx_min(newleaf->pos, sibling->pos);
idx = count_common_bits(newleaf->key, sibling->key, max_len);
bit = get_bit_at(newleaf->key, idx);
if (!parent) {
// insert at the root, so rotate things like so:
/*
/\ to /\
1 2 /\ 3
1 2 */
parent = sibling;
inner = malloc(sizeof(rxt_node));
if (!inner) return -1;
inner->color = 0;
inner->value = NULL;
inner->parent = parent;
inner->left = parent->left;
inner->right = parent->right;
inner->key = parent->key;
inner->pos = parent->pos;
parent->pos = idx;
parent->left->parent = inner;
parent->right->parent = inner;
newleaf->parent = parent;
if (bit) {
parent->right = newleaf;
parent->left = inner;
} else {
parent->right = inner;
parent->left = newleaf;
}
return 0;
}
if (idx < parent->pos) {
// use the parent as a sibling
return insert_leaf(newleaf, parent, parent->parent);
} else {
// otherwise, add newleaf as a child of inner
// Check for duplicates.
// FIXME feels hackish; do this properly.
if (newleaf->pos == sibling->pos &&
!strncmp(newleaf->key, sibling->key, newleaf->pos)) {
free(newleaf);
return -1;
}
inner = malloc(sizeof(rxt_node));
if (!inner) free(inner);
inner->color = 0;
inner->value = NULL;
inner->parent = parent;
inner->pos = idx;
inner->key = sibling->key;
newleaf->parent = inner;
sibling->parent = inner;
if (bit) {
inner->right = newleaf;
inner->left = sibling;
} else {
inner->right = sibling;
inner->left = newleaf;
}
// now find out which branch of parent to assign inner
if (parent->left == sibling)
parent->left = inner;
else if (parent->right == sibling)
parent->right = inner;
else {
fprintf(stderr, "inappropriate child %s/%s found in parent when inserting leaf %s (expected %s)\n", parent->left->key, parent->right->key, newleaf->key, sibling->key);
return -1;
}
}
return 0;
}
// color: 1 for leaf, 0 for inner
static int insert_internal(rxt_node *newleaf, rxt_node *n)
{
// FIRST: check for common bits
rxt_node *left = n->left, *right = n->right;
int bits = count_common_bits(newleaf->key, left->key,
rdx_min(newleaf->pos, left->pos));
int bits2 = count_common_bits(newleaf->key, right->key,
rdx_min(newleaf->pos, right->pos));
if (rdx_min(bits, bits2) < n->pos) {
if (bits >= bits2)
return insert_leaf(newleaf, n->left, n);
return insert_leaf(newleaf, n->right, n);
}
if (bits >= bits2) {
if (left->color)
return insert_leaf(newleaf, n->left, n);
return insert_internal(newleaf, left);
} else {
if (right->color)
return insert_leaf(newleaf, n->right, n);
return insert_internal(newleaf, right);
}
return -1; // this should never happen
}
static inline int keylen(char *str)
{
int len = strlen(str);
if (len < 0 || len >= RADIXTREE_KEYSIZE)
fprintf(stderr, "Warning: rxt key (%d) exceeds limit (%d)\n",
len, RADIXTREE_KEYSIZE);
return 8 * (len + 1) - 1;
}
int rxt_put(char *key, void *value, rxt_node *n)
{
#define NEWLEAF(nl, k, v) \
nl = malloc(sizeof(rxt_node)); \
if (!nl) return -1; \
strncpy(nl->keycache, k, RADIXTREE_KEYSIZE); \
nl->keycache[RADIXTREE_KEYSIZE-1] = '\0'; \
nl->key = nl->keycache; \
nl->pos = keylen(k); \
nl->value = v; \
nl->color = 1; \
nl->parent = n; \
nl->left = NULL; \
nl->right = NULL
rxt_node *newleaf;
NEWLEAF(newleaf, key, value);
// this special case takes care of the first two entries
if (!(n->left || n->right)) {
rxt_node *sib;
int bits;
// create root
if (!n->value) {
// attach root
n->color = 2;
n->value = newleaf;
return 0;
}
// else convert root to inner and attach leaves
sib = n->value;
// count bits in common
bits = count_common_bits(key, sib->key,
rdx_min(newleaf->pos, sib->pos));
if (get_bit_at(key, bits)) {
n->right = newleaf;
n->left = sib;
} else {
n->right = sib;
n->left = newleaf;
}
n->value = NULL;
n->key = sib->key;
n->pos = bits;
n->color = 0;
return 0;
}
newleaf->parent = NULL; // null for now
return insert_internal(newleaf, n);
#undef NEWLEAF
}
static rxt_node* get_internal(char *key, rxt_node *root)
{
if (!root) return NULL;
if (root->color) {
if (2 == root->color) root = root->value;
if (!strncmp(key, root->key, root->pos))
return root;
return NULL;
}
if (get_bit_at(key, root->pos))
return get_internal(key, root->right);
return get_internal(key, root->left);
}
static void reset_key(char *key, char *newkey, rxt_node *n)
{
// This should only be propagated up inner nodes.
// Right now the algorithm guarantees this, but it is unchecked.
if (key == n->key) {
n->key = newkey;
if (n->left && n->right)
n->pos = count_common_bits(n->left->key, n->right->key,
rdx_min(n->left->pos, n->right->pos));
if (n->parent)
reset_key(key, newkey, n->parent);
}
}
static void *delete_internal(rxt_node *n, rxt_node *sibling)
{
rxt_node *parent = n->parent;
void *v = n->value;
// TODO ascii art
if (sibling->color) {
parent->value = sibling;
parent->left = NULL;
parent->right = NULL;
parent->color = 2;
parent->pos = 0;
} else {
parent->left = sibling->left;
parent->right = sibling->right;
parent->pos = sibling->pos;
sibling->left->parent = parent;
sibling->right->parent = parent;
free(sibling);
}
reset_key(n->key, sibling->key, parent);
free(n);
return v;
}
void* rxt_delete(char *key, rxt_node *root)
{
rxt_node *parent, *grandparent;
rxt_node *n = get_internal(key, root);
void *v;
char *newkey;
if (!n) return NULL; // nonexistent
v = n->value;
// remove both the node and the parent inner node
// XXX TODO FIXME Still somewhat broken. Figure out.
parent = n->parent;
grandparent = parent->parent;
if (!grandparent) {
if (parent->left == n) {
return delete_internal(n, parent->right);
} else if (parent->right == n) {
return delete_internal(n, parent->left);
} else if (parent->value == n) {
parent->value = NULL;
parent->color = 0;
parent->pos = 0;
} else
printf("something very wrong when removing w/o gp!\n");
free(n);
return v;
}
// properly move around pointers and shit
// TODO ascii art
if (grandparent->left == n->parent) {
newkey = grandparent->right->key; // not sure if this is correct
if (parent->left == n) {
grandparent->left = parent->right;
parent->right->parent = grandparent;
} else if (parent->right == n) {
grandparent->left = parent->left;
parent->left->parent = grandparent;
} else
printf("something very wrong: removing grandparent->left\n");
} else if (grandparent->right == n->parent) {
newkey = grandparent->left->key;
if (parent->left == n ) {
grandparent->right = parent->right;
parent->right->parent = grandparent;
} else if (parent->right == n) {
grandparent->right = parent->left;
parent->left->parent = grandparent;
} else
printf("something very wrong: removing grandparent->right\n");
} else
printf("something very wrong: grandparent does not possess child\n");
reset_key(n->key, newkey, grandparent);
parent->left = NULL;
parent->right = NULL;
free(parent);
free(n); // we don't dynamically allocate node
return v;
}
void rxt_free(rxt_node *root)
{
if (!root) return;
rxt_free(root->left);
rxt_free(root->right);
if (root->value) free(root->value);
root->left = NULL;
root->right = NULL;
root->value = NULL;
free(root);
}
void* rxt_get(char *key, rxt_node *root)
{
rxt_node *n = get_internal(key, root);
if (!n) return NULL;
return n->value;
}
rxt_node *rxt_init()
{
rxt_node *root = malloc(sizeof(rxt_node));
if (!root) return NULL;
memset(root, 0, sizeof(rxt_node));
return root;
}