-
Notifications
You must be signed in to change notification settings - Fork 25
/
jlog_hash.c
329 lines (305 loc) · 9.59 KB
/
jlog_hash.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
/*
* Copyright (c) 2005-2008, Message Systems, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name Message Systems, Inc. nor the names
* of its contributors may be used to endorse or promote products
* derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "jlog_config.h"
#include "jlog_hash.h"
/* This is from http://burtleburtle.net/bob/hash/doobs.html */
#define JLogHASH_INITIAL_SIZE (1<<7)
#define mix(a,b,c) \
{ \
a -= b; a -= c; a ^= (c>>13); \
b -= c; b -= a; b ^= (a<<8); \
c -= a; c -= b; c ^= (b>>13); \
a -= b; a -= c; a ^= (c>>12); \
b -= c; b -= a; b ^= (a<<16); \
c -= a; c -= b; c ^= (b>>5); \
a -= b; a -= c; a ^= (c>>3); \
b -= c; b -= a; b ^= (a<<10); \
c -= a; c -= b; c ^= (b>>15); \
}
static inline
u_int32_t __hash(const char *k, u_int32_t length, u_int32_t initval)
{
register u_int32_t a,b,c,len;
/* Set up the internal state */
len = length;
a = b = 0x9e3779b9; /* the golden ratio; an arbitrary value */
c = initval; /* the previous hash value */
/*---------------------------------------- handle most of the key */
while (len >= 12)
{
a += (k[0] +((u_int32_t)k[1]<<8) +((u_int32_t)k[2]<<16) +((u_int32_t)k[3]<<24));
b += (k[4] +((u_int32_t)k[5]<<8) +((u_int32_t)k[6]<<16) +((u_int32_t)k[7]<<24));
c += (k[8] +((u_int32_t)k[9]<<8) +((u_int32_t)k[10]<<16)+((u_int32_t)k[11]<<24));
mix(a,b,c);
k += 12; len -= 12;
}
/*------------------------------------- handle the last 11 bytes */
c += length;
switch(len) /* all the case statements fall through */
{
case 11: c+=((u_int32_t)k[10]<<24);
case 10: c+=((u_int32_t)k[9]<<16);
case 9 : c+=((u_int32_t)k[8]<<8);
/* the first byte of c is reserved for the length */
case 8 : b+=((u_int32_t)k[7]<<24);
case 7 : b+=((u_int32_t)k[6]<<16);
case 6 : b+=((u_int32_t)k[5]<<8);
case 5 : b+=k[4];
case 4 : a+=((u_int32_t)k[3]<<24);
case 3 : a+=((u_int32_t)k[2]<<16);
case 2 : a+=((u_int32_t)k[1]<<8);
case 1 : a+=k[0];
/* case 0: nothing left to add */
}
mix(a,b,c);
/*-------------------------------------------- report the result */
return c;
}
u_int32_t jlog_hash__hash(const char *k, u_int32_t length, u_int32_t initval) {
return __hash(k,length,initval);
}
void jlog_hash_init(jlog_hash_table *h) {
memset(h, 0, sizeof(jlog_hash_table));
h->initval = lrand48();
h->table_size = JLogHASH_INITIAL_SIZE;
h->buckets = calloc(h->table_size, sizeof(jlog_hash_bucket *));
}
jlog_hash_bucket *jlog_hash__new_bucket(const char *k, int klen, void *data) {
jlog_hash_bucket *b;
b = calloc(1, sizeof(jlog_hash_bucket));
b->k = k;
b->klen = klen;
b->data = data;
return b;
}
void jlog_hash__rebucket(jlog_hash_table *h, int newsize) {
int i, newoff;
jlog_hash_bucket **newbuckets, *b, *n;
if (h->dont_rebucket) return;
i = newsize;
while(i) {
if(i & 1) break;
i >>= 1;
}
if(i & ~1) {
return;
}
newbuckets = calloc(newsize, sizeof(jlog_hash_bucket *));
h->num_used_buckets = 0;
for(i = 0; i < h->table_size; i++) {
b = h->buckets[i];
while(b) {
n = b->next;
newoff = __hash(b->k, b->klen, h->initval) & (newsize-1);
if(newbuckets[newoff] == NULL) h->num_used_buckets++;
b->next = newbuckets[newoff];
newbuckets[newoff] = b;
b = n;
}
}
free(h->buckets);
h->table_size = newsize;
h->buckets = newbuckets;
}
int jlog_hash_replace(jlog_hash_table *h, const char *k, int klen, void *data,
JLogHashFreeFunc keyfree, JLogHashFreeFunc datafree) {
int off;
int replaced = 0;
jlog_hash_bucket __b, *tr, *b = &__b;
if(h->table_size == 0) jlog_hash_init(h);
off = __hash(k, klen, h->initval) & (h->table_size-1);
__b.next = h->buckets[off];
if(!b->next) h->num_used_buckets++;
while(b->next) {
if(b->next->klen == klen && !memcmp(b->next->k, k, klen)) {
tr = b->next;
if(keyfree) keyfree((void *)tr->k);
if(datafree && tr->data) datafree((void *)tr->data);
b->next = tr->next;
if(tr == h->buckets[off]) h->buckets[off] = tr->next;
free(tr);
replaced = 1;
break;
} else {
b = b->next;
}
}
b = jlog_hash__new_bucket(k, klen, data);
b->next = h->buckets[off];
h->buckets[off] = b;
if(!replaced) h->size++;
if(h->size > h->table_size - (h->table_size >> 3)) {
jlog_hash__rebucket(h, h->table_size << 1);
}
return 1;
}
int jlog_hash_store(jlog_hash_table *h, const char *k, int klen, void *data) {
int off;
jlog_hash_bucket *b;
if(h->table_size == 0) jlog_hash_init(h);
off = __hash(k, klen, h->initval) & (h->table_size-1);
b = h->buckets[off];
if(!b) h->num_used_buckets++;
while(b) {
if(b->klen == klen && !memcmp(b->k, k, klen)) return 0;
b = b->next;
}
b = jlog_hash__new_bucket(k, klen, data);
b->next = h->buckets[off];
h->buckets[off] = b;
h->size++;
if(h->size > h->table_size - (h->table_size >> 3)) {
jlog_hash__rebucket(h, h->table_size << 1);
}
return 1;
}
int jlog_hash_retrieve(jlog_hash_table *h, const char *k, int klen, void **data) {
int off;
jlog_hash_bucket *b;
if(h->table_size == 0) jlog_hash_init(h);
off = __hash(k, klen, h->initval) & (h->table_size-1);
b = h->buckets[off];
while(b) {
if(b->klen == klen && !memcmp(b->k, k, klen)) break;
b = b->next;
}
if(b) {
if(data) *data = b->data;
return 1;
}
return 0;
}
int jlog_hash_delete(jlog_hash_table *h, const char *k, int klen,
JLogHashFreeFunc keyfree, JLogHashFreeFunc datafree) {
int off;
jlog_hash_bucket *b, *prev = NULL;
if(h->table_size == 0) jlog_hash_init(h);
off = __hash(k, klen, h->initval) & (h->table_size-1);
b = h->buckets[off];
while(b) {
if(b->klen == klen && !memcmp(b->k, k, klen)) break;
prev = b;
b = b->next;
}
if(!b) return 0; /* No match */
if(!prev) h->buckets[off] = h->buckets[off]->next;
else prev->next = b->next;
if(keyfree) keyfree((void *)b->k);
if(datafree && b->data) datafree(b->data);
free(b);
h->size--;
if(h->buckets[off] == NULL) h->num_used_buckets--;
if(h->table_size > JLogHASH_INITIAL_SIZE &&
h->size < h->table_size >> 2)
jlog_hash__rebucket(h, h->table_size >> 1);
return 1;
}
void jlog_hash_delete_all(jlog_hash_table *h, JLogHashFreeFunc keyfree, JLogHashFreeFunc datafree) {
int i;
jlog_hash_bucket *b, *tofree;
for(i=0; i<h->table_size; i++) {
b = h->buckets[i];
while(b) {
tofree = b;
b = b->next;
if(keyfree) keyfree((void *)tofree->k);
if(datafree && tofree->data) datafree(tofree->data);
free(tofree);
}
h->buckets[i] = NULL;
}
h->num_used_buckets = 0;
h->size = 0;
jlog_hash__rebucket(h, JLogHASH_INITIAL_SIZE);
}
void jlog_hash_destroy(jlog_hash_table *h, JLogHashFreeFunc keyfree, JLogHashFreeFunc datafree) {
jlog_hash_delete_all(h, keyfree, datafree);
if(h->buckets) free(h->buckets);
}
int jlog_hash_next(jlog_hash_table *h, jlog_hash_iter *iter,
const char **k, int *klen, void **data) {
jlog_hash_bucket *b;
next_row:
if(iter->p1 < 0 || iter->p1 >= h->table_size) return 0;
if(iter->p2 == NULL) iter->p2 = (void *)h->buckets[iter->p1];
if(iter->p2 == NULL) {
iter->p1++;
goto next_row;
}
b = (jlog_hash_bucket *)(iter->p2);
*k = b->k; *klen = b->klen;
if(data) *data = b->data;
b = b->next;
if(!b) iter->p1++;
iter->p2 = b;
return 1;
}
int jlog_hash_firstkey(jlog_hash_table *h, const char **k, int *klen) {
int i;
for(i=0;i<h->table_size;i++) {
if(h->buckets[i]) {
*k = h->buckets[i]->k;
*klen = h->buckets[i]->klen;
return 1;
}
}
return 0;
}
int jlog_hash_nextkey(jlog_hash_table *h, const char **k, int *klen, const char *lk, int lklen) {
int off;
jlog_hash_bucket *b;
if(h->table_size == 0) return 0;
off = __hash(lk, lklen, h->initval) & (h->table_size-1);
b = h->buckets[off];
while(b) {
if(b->klen == lklen && !memcmp(b->k, lk, lklen)) break;
b = b->next;
}
if(b) {
if(b->next) {
*k = b->next->k;
*klen = b->next->klen;
return 1;
} else {
off++;
for(;off < h->table_size; off++) {
if(h->buckets[off]) {
*k = h->buckets[off]->k;
*klen = h->buckets[off]->klen;
return 1;
}
}
}
}
return 0;
}
/* vim: se sw=2 ts=2 et: */