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
|
#include <string.h>
#include <stdlib.h>
#include <lyn/lookup.h>
struct lookup lookup_create(size_t s)
{
return (struct lookup){.ns = s, .root = NULL};
}
unsigned long djb2(const unsigned char *str)
{
unsigned long hash = 5381;
int c;
while ((c = *str++))
hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
return hash;
}
static size_t lookup_size(struct lookup *l, size_t key_len)
{
return sizeof(struct lookup_node) + l->ns + key_len + 1;
}
static struct lookup_node *create_node(struct lookup *l, unsigned long hash, const char *key, const void *n)
{
size_t key_len = strlen(key);
struct lookup_node *new = malloc(lookup_size(l, key_len));
if (!new)
return NULL;
memcpy(new->data, n, l->ns);
strcpy(new->data + l->ns, key);
new->hash = hash;
new->left = NULL;
new->right = NULL;
return new;
}
void *lookup_insert(struct lookup *l, const char *key, const void *n)
{
enum {INSERT_LEFT, INSERT_RIGHT} side = INSERT_LEFT;
unsigned long hash = djb2((const unsigned char *)key);
if (!l->root) {
struct lookup_node *new = create_node(l, hash, key, n);
if (!new)
return NULL;
l->root = new;
return &new->data;
}
struct lookup_node *cmp = l->root;
while (cmp) {
if (cmp->hash == hash) {
if (strcmp(cmp->data + l->ns, key) == 0)
return NULL;
if (cmp->left) {
cmp = cmp->left;
continue;
}
side = INSERT_LEFT;
break;
}
else if (cmp->hash < hash) {
if (cmp->left) {
cmp = cmp->left;
continue;
}
side = INSERT_LEFT;
break;
}
else if (cmp->hash > hash) {
if (cmp->right) {
cmp = cmp->right;
continue;
}
side = INSERT_RIGHT;
break;
}
}
struct lookup_node *new = create_node(l, hash, key, n);
if (!new)
return NULL;
if (side == INSERT_LEFT)
cmp->left = new;
else if (side == INSERT_RIGHT)
cmp->right = new;
else
abort();
return &new->data;
}
void *lookup_at(struct lookup *l, const char *key)
{
unsigned long hash = djb2((const unsigned char *)key);
struct lookup_node *n = l->root;
while (n) {
if (n->hash == hash) {
if (strcmp(n->data + l->ns, key) == 0)
return &n->data;
n = n->left;
}
else if (n->hash < hash) {
n = n->left;
}
else if (n->hash > hash) {
n = n->right;
}
}
return NULL;
}
|