-
Notifications
You must be signed in to change notification settings - Fork 2
/
utl_hash_map.c
411 lines (336 loc) · 8.16 KB
/
utl_hash_map.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
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <errno.h>
#include <string.h>
#include <assert.h>
#include "utl_config.h"
#include "utl_builtin.h"
#include "utl_list.h"
#include "utl_hash_map.h"
#include "utl_wrapper.h"
#define HT_INIT_SIZE 1024
#define N_LOCK 64
#define HT_INIT_KEY_LEN 10
struct map_member {
uint64_t key;
void *val;
struct list_head crash;
struct list_head p;
};
struct hmap_entry {
int n;
struct list_head entry;
};
struct hash_map {
struct hmap_entry *map;
utl_spinlock_t lock[N_LOCK];
int size;
int fill;
int key_len;
unsigned long key_mask;
struct list_head members;
};
static __thread struct list_head free_member
ATTR_INITIAL_EXEC
= {NULL, NULL};
#define get_lock_idx(key) ((key) % N_LOCK)
#define get_key_mask(key_len) \
(~((((unsigned long)1 << key_len) - 1) << ((64 - key_len) >> 1)));
static inline unsigned long
get_map_slot(unsigned long key, unsigned long mask, int key_len)
{
unsigned long h, slot;
h = key + (key >> key_len) + (key >> (key_len << 1))
+ (key >> (key_len << 2));
h *= h;
slot = (h & ~mask) >> ((64 - key_len) >> 1);
return slot;
}
static inline struct map_member*
map_member_alloc()
{
struct map_member *member;
if (list_need_init(&free_member))
list_init(&free_member);
if (unlikely(list_empty(&free_member))) {
member = (struct map_member*)
utl_malloc(sizeof(struct map_member));
#ifdef UTL_USE_ASSERT
assert(member);
#endif /* UTL_USE_ASSERT */
} else {
member = next_entry(&free_member, struct map_member, p);
list_del(&member->p);
}
return member;
}
static inline void
map_member_free(struct map_member *member)
{
if (list_need_init(&free_member))
list_init(&free_member);
list_del(&member->p);
list_add(&member->p, &free_member);
}
struct hash_map*
new_hash_map()
{
struct hash_map *hmap;
int i, size;
hmap = (struct hash_map*)utl_malloc(sizeof(struct hash_map));
#ifdef UTL_USE_ASSERT
assert(!!hmap);
#endif /* UTL_USE_ASSERT */
size = HT_INIT_SIZE * sizeof(struct hmap_entry);
hmap->map = (struct hmap_entry*)utl_malloc(size);
#ifdef UTL_USE_ASSERT
assert(!!hmap->map);
#endif /* UTL_USE_ASSERT */
memset(hmap->map, 0, size);
hmap->size = HT_INIT_SIZE;
hmap->fill = 0;
hmap->key_len = HT_INIT_KEY_LEN;
hmap->key_mask = get_key_mask(HT_INIT_KEY_LEN);
list_init(&hmap->members);
for (i = 0; i < HT_INIT_SIZE; i++) {
list_init(&hmap->map[i].entry);
}
for (i = 0; i < N_LOCK; i++) {
utl_spinlock_init(&hmap->lock[i], UTL_PROCESS_SHARED);
}
return hmap;
}
void
delete_hash_map(struct hash_map* hmap)
{
int i;
struct map_member *member;
while (!list_empty(&hmap->members)) {
member = next_entry(&hmap->members, struct map_member, p);
map_member_free(member);
}
for (i = 0; i < N_LOCK; i++) {
utl_spinlock_destroy(&hmap->lock[i]);
}
utl_free(hmap->map);
utl_free(hmap);
}
static inline struct hmap_entry*
get_map_entry(struct hash_map *hmap, unsigned long slot)
{
return &hmap->map[slot];
}
static inline int
map_member_exist(struct hmap_entry *map_entry, uint64_t key)
{
struct list_head *entry;
struct map_member *member_iter;
if (map_entry->n == 0)
return 0;
entry = &map_entry->entry;
list_for_each_entry(member_iter, entry, crash) {
if (member_iter->key == key)
return 1;
}
return 0;
}
static inline struct map_member*
get_map_member(struct hmap_entry *map_entry, uint64_t key)
{
struct list_head *entry;
struct map_member *member_iter;
if (map_entry->n == 0)
return NULL;
entry = &map_entry->entry;
list_for_each_entry(member_iter, entry, crash) {
if (member_iter->key == key)
break;
}
if (&member_iter->crash == entry && member_iter->key != key)
return NULL;
return member_iter;
}
static inline int
hash_map_full(struct hash_map *hmap)
{
return (hmap->size >> 1) < hmap->fill;
}
static int
hash_map_rebuild(struct hash_map *hmap)
{
struct hmap_entry *map, *map_entry;
struct list_head *members;
struct map_member *member_iter;
int i, size;
unsigned long slot;
utl_spin_lock(&hmap->lock[0]);
if (!hash_map_full(hmap)) {
/* The hash map has been rebuilt by other thread. */
utl_spin_unlock(&hmap->lock[0]);
return 0;
}
for (i = 1; i < N_LOCK; i++) {
utl_spin_lock(&hmap->lock[i]);
}
members = &hmap->members;
if (unlikely(list_empty(members)))
goto done;
map = hmap->map;
hmap->size <<= 1;
size = hmap->size * sizeof(struct hmap_entry);
hmap->map = (struct hmap_entry*)utl_malloc(size);
assert(!!hmap->map);
memset(hmap->map, 0, size);
hmap->key_len++;
hmap->key_mask = get_key_mask(hmap->key_len);
size = hmap->size;
for (i = 0; i < size; i++) {
list_init(&hmap->map[i].entry);
}
list_for_each_entry(member_iter, members, p) {
slot = get_map_slot(member_iter->key, hmap->key_mask, hmap->key_len);
map_entry = get_map_entry(hmap, slot);
map_entry->n++;
list_del(&member_iter->crash);
list_add(&member_iter->crash, &map_entry->entry);
}
utl_free(map);
done:
for (i = 0; i < N_LOCK; i++) {
utl_spin_unlock(&hmap->lock[i]);
}
return 0;
}
int
hash_map_add_member(struct hash_map *hmap, uint64_t key, void *val)
{
struct hmap_entry *map_entry;
struct map_member *member;
int ret, lock_idx;
int key_len;
unsigned long slot;
ret = 0;
if (unlikely(hash_map_full(hmap))) {
ret = hash_map_rebuild(hmap);
#ifdef UTL_USE_ASSERT
assert(ret == 0);
#endif /* UTL_USE_ASSERT */
}
while(1) {
key_len = hmap->key_len;
slot = get_map_slot(key, hmap->key_mask, key_len);
lock_idx = get_lock_idx(slot);
utl_spin_lock(&hmap->lock[lock_idx]);
if (key_len == hmap->key_len)
break;
utl_spin_unlock(&hmap->lock[lock_idx]);
}
map_entry = get_map_entry(hmap, slot);
#ifdef UTL_USE_ASSERT
if ((map_member_exist(map_entry, key)))
printf("key=0x%lx exist\n", key);
assert(!(map_member_exist(map_entry, key)));
#endif /* UTL_USE_ASSERT */
member = map_member_alloc();
member->key = key;
member->val = val;
list_add(&member->crash, &map_entry->entry);
list_add(&member->p, &hmap->members);
map_entry->n++;
fetch_and_add(&hmap->fill, 1);
utl_spin_unlock(&hmap->lock[lock_idx]);
return ret;
}
void
hash_map_delete_member(struct hash_map *hmap, uint64_t key)
{
struct hmap_entry *map_entry;
struct map_member *member;
int lock_idx;
int key_len;
unsigned long slot;
while(1) {
key_len = hmap->key_len;
slot = get_map_slot(key, hmap->key_mask, key_len);
lock_idx = get_lock_idx(slot);
utl_spin_lock(&hmap->lock[lock_idx]);
if (key_len == hmap->key_len)
break;
utl_spin_unlock(&hmap->lock[lock_idx]);
}
map_entry = get_map_entry(hmap, slot);
member = get_map_member(map_entry, key);
#ifdef UTL_USE_ASSERT
assert(member != NULL);
#endif /* UTL_USE_ASSERT */
list_del(&member->crash);
map_member_free(member);
map_entry->n--;
fetch_and_sub(&hmap->fill, 1);
utl_spin_unlock(&hmap->lock[lock_idx]);
}
void*
hash_map_find_member(struct hash_map *hmap, uint64_t key)
{
struct hmap_entry *map_entry;
struct map_member *member;
int lock_idx;
int key_len;
unsigned long slot;
while(1) {
key_len = hmap->key_len;
slot = get_map_slot(key, hmap->key_mask, key_len);
lock_idx = get_lock_idx(slot);
utl_spin_lock(&hmap->lock[lock_idx]);
if (key_len == hmap->key_len)
break;
utl_spin_unlock(&hmap->lock[lock_idx]);
}
map_entry = get_map_entry(hmap, slot);
member = get_map_member(map_entry, key);
if (member == NULL) {
utl_spin_unlock(&hmap->lock[lock_idx]);
return NULL;
}
utl_spin_unlock(&hmap->lock[lock_idx]);
return member->val;
}
int
key_crash_in_hash_map(struct hash_map *hmap, uint64_t key)
{
struct hmap_entry *map_entry;
int ret, lock_idx;
int key_len;
unsigned long slot;
while(1) {
key_len = hmap->key_len;
slot = get_map_slot(key, hmap->key_mask, key_len);
lock_idx = get_lock_idx(slot);
utl_spin_lock(&hmap->lock[lock_idx]);
if (key_len == hmap->key_len)
break;
utl_spin_unlock(&hmap->lock[lock_idx]);
}
map_entry = get_map_entry(hmap, slot);
ret = map_entry->n <= 1 ? 0 : 1;
utl_spin_unlock(&hmap->lock[lock_idx]);
return ret;
}
int
hash_map_init()
{
return 0;
}
void
hash_map_destroy()
{
struct map_member *member;
if (list_need_init(&free_member))
list_init(&free_member);
while (!list_empty(&free_member)) {
member = next_entry(&free_member, struct map_member, p);
list_del(&member->p);
utl_free(member);
}
}