forked from utsaslab/RECIPE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
woart.h
462 lines (402 loc) · 10.2 KB
/
woart.h
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
#ifndef STRING_TYPE
#ifndef WOART_H
#define WOART_H
#include <stdint.h>
#include <stdbool.h>
#include <byteswap.h>
#ifdef __cplusplus
extern "C" {
#endif
#define MAX_PREFIX_LEN 6
#if defined(__GNUC__) && !defined(__clang__)
# if __STDC_VERSION__ >= 199901L && 402 == (__GNUC__ * 100 + __GNUC_MINOR__)
/*
* GCC 4.2.2's C99 inline keyword support is pretty broken; avoid. Introduced in
* GCC 4.2.something, fixed in 4.3.0. So checking for specific major.minor of
* 4.2 is fine.
*/
# define BROKEN_GCC_C99_INLINE
# endif
#endif
typedef int(*woart_callback)(void *data, const unsigned char *key, uint32_t key_len, void *value);
/**
* path compression
* partial_len: Optimistic
* partial: Pessimistic
*/
typedef struct {
unsigned char depth;
unsigned char partial_len;
unsigned char partial[MAX_PREFIX_LEN];
} path_comp;
/**
* This struct is included as part
* of all the various node sizes
*/
typedef struct {
uint8_t type;
path_comp path;
} woart_node;
typedef struct {
unsigned char key;
char i_ptr;
} slot_array;
typedef struct {
unsigned long k_bits : 16;
unsigned long p_bits : 48;
} node48_bitmap;
/**
* Small node with only 4 children, but
* 8byte slot array field.
*/
typedef struct {
woart_node n;
slot_array slot[4];
woart_node *children[4];
} woart_node4;
/**
* Node with 16 keys and 16 children, and
* a 8byte bitmap field
*/
typedef struct {
woart_node n;
unsigned long bitmap;
unsigned char keys[16];
woart_node *children[16];
} woart_node16;
/**
* Node with 48 children and a full 256 byte field,
*/
typedef struct {
woart_node n;
unsigned char keys[256];
woart_node *children[48];
} woart_node48;
/**
* Full node with 256 children
*/
typedef struct {
woart_node n;
woart_node *children[256];
} woart_node256;
/**
* Represents a leaf. These are
* of arbitrary size, as they include the key.
*/
typedef struct {
void *value;
uint32_t key_len;
unsigned long key;
} woart_leaf;
/**
* Main struct, points to root.
*/
typedef struct {
woart_node *root;
uint64_t size;
} woart_tree;
/*
* For range lookup in NODE16
*/
typedef struct {
unsigned char key;
woart_node *child;
} key_pos;
/**
* Initializes an ART tree
* @return 0 on success.
*/
int woart_tree_init(woart_tree *t);
/**
* DEPRECATED
* Initializes an ART tree
* @return 0 on success.
*/
#define init_woart_tree(...) woart_tree_init(__VA_ARGS__)
/**
* Destroys an ART tree
* @return 0 on success.
*/
int woart_tree_destroy(woart_tree *t);
/**
* DEPRECATED
* Initializes an ART tree
* @return 0 on success.
*/
#define destroy_woart_tree(...) woart_tree_destroy(__VA_ARGS__)
/**
* Returns the size of the ART tree.
#ifdef BROKEN_GCC_C99_INLINE
# define woart_size(t) ((t)->size)
#else
inline uint64_t woart_size(woart_tree *t) {
return t->size;
}
#endif
*/
/**
* Inserts a new value into the ART tree
* @arg t The tree
* @arg key The key
* @arg key_len The length of the key
* @arg value Opaque value.
* @return NULL if the item was newly inserted, otherwise
* the old value pointer is returned.
*/
void* woart_insert(woart_tree *t, const unsigned long key, int key_len, void *value);
/**
* Deletes a value from the ART tree
* @arg t The tree
* @arg key The key
* @arg key_len The length of the key
* @return NULL if the item was not found, otherwise
* the value pointer is returned.
*/
void* woart_delete(woart_tree *t, const unsigned char *key, int key_len);
/**
* Searches for a value in the ART tree
* @arg t The tree
* @arg key The key
* @arg key_len The length of the key
* @return NULL if the item was not found, otherwise
* the value pointer is returned.
*/
void* woart_search(const woart_tree *t, const unsigned long key, int key_len);
/**
* Returns the minimum valued leaf
* @return The minimum leaf or NULL
*/
woart_leaf* woart_minimum(woart_tree *t);
/**
* Returns the maximum valued leaf
* @return The maximum leaf or NULL
*/
woart_leaf* woart_maximum(woart_tree *t);
/**
* Iterates through the entries pairs in the map,
* invoking a callback for each. The call back gets a
* key, value for each and returns an integer stop value.
* If the callback returns non-zero, then the iteration stops.
* @arg t The tree to iterate over
* @arg cb The callback function to invoke
* @arg data Opaque handle passed to the callback
* @return 0 on success, or the return of the callback.
*/
int woart_iter(woart_tree *t, woart_callback cb, void *data);
/**
* Iterates through the entries pairs in the map,
* invoking a callback for each that matches a given prefix.
* The call back gets a key, value for each and returns an integer stop value.
* If the callback returns non-zero, then the iteration stops.
* @arg t The tree to iterate over
* @arg prefix The prefix of keys to read
* @arg prefix_len The length of the prefix
* @arg cb The callback function to invoke
* @arg data Opaque handle passed to the callback
* @return 0 on success, or the return of the callback.
*/
int woart_iter_prefix(woart_tree *t, const unsigned char *prefix, int prefix_len, woart_callback cb, void *data);
void woart_range_lookup(woart_tree *t, unsigned long num, unsigned long buf[]);
#ifdef __cplusplus
}
#endif
#endif
#else
#ifndef WOART_H
#define WOART_H
#include <stdint.h>
#include <stdbool.h>
#include <byteswap.h>
#ifdef __cplusplus
extern "C" {
#endif
#define MAX_PREFIX_LEN 6
#if defined(__GNUC__) && !defined(__clang__)
# if __STDC_VERSION__ >= 199901L && 402 == (__GNUC__ * 100 + __GNUC_MINOR__)
/*
* GCC 4.2.2's C99 inline keyword support is pretty broken; avoid. Introduced in
* GCC 4.2.something, fixed in 4.3.0. So checking for specific major.minor of
* 4.2 is fine.
*/
# define BROKEN_GCC_C99_INLINE
# endif
#endif
typedef int(*woart_callback)(void *data, const unsigned char *key, uint32_t key_len, void *value);
/**
* path compression
* partial_len: Optimistic
* partial: Pessimistic
*/
typedef struct {
unsigned char depth;
unsigned char partial_len;
unsigned char partial[MAX_PREFIX_LEN];
} path_comp;
/**
* This struct is included as part
* of all the various node sizes
*/
typedef struct {
uint8_t type;
path_comp path;
} woart_node;
typedef struct {
unsigned char key;
char i_ptr;
} slot_array;
typedef struct {
unsigned long k_bits : 16;
unsigned long p_bits : 48;
} node48_bitmap;
/**
* Small node with only 4 children, but
* 8byte slot array field.
*/
typedef struct {
woart_node n;
slot_array slot[4];
woart_node *children[4];
} woart_node4;
/**
* Node with 16 keys and 16 children, and
* a 8byte bitmap field
*/
typedef struct {
woart_node n;
unsigned long bitmap;
unsigned char keys[16];
woart_node *children[16];
} woart_node16;
/**
* Node with 48 children and a full 256 byte field,
* but a 128 byte bitmap field
* (4 bitmap group of 16 keys, 48 children bitmap)
*/
typedef struct {
woart_node n;
node48_bitmap bits_arr[16];
unsigned char keys[256];
woart_node *children[48];
} woart_node48;
/**
* Full node with 256 children
*/
typedef struct {
woart_node n;
woart_node *children[256];
} woart_node256;
/**
* Represents a leaf. These are
* of arbitrary size, as they include the key.
*/
typedef struct {
void *value;
uint32_t key_len;
unsigned char key[];
} woart_leaf;
/**
* Main struct, points to root.
*/
typedef struct {
woart_node *root;
uint64_t size;
} woart_tree;
/**
* Initializes an ART tree
* @return 0 on success.
*/
int woart_tree_init(woart_tree *t);
/**
* DEPRECATED
* Initializes an ART tree
* @return 0 on success.
*/
#define init_woart_tree(...) woart_tree_init(__VA_ARGS__)
/**
* Destroys an ART tree
* @return 0 on success.
*/
int woart_tree_destroy(woart_tree *t);
/**
* DEPRECATED
* Initializes an ART tree
* @return 0 on success.
*/
#define destroy_woart_tree(...) woart_tree_destroy(__VA_ARGS__)
/**
* Returns the size of the ART tree.
#ifdef BROKEN_GCC_C99_INLINE
# define woart_size(t) ((t)->size)
#else
inline uint64_t woart_size(woart_tree *t) {
return t->size;
}
#endif
*/
/**
* Inserts a new value into the ART tree
* @arg t The tree
* @arg key The key
* @arg key_len The length of the key
* @arg value Opaque value.
* @return NULL if the item was newly inserted, otherwise
* the old value pointer is returned.
*/
void* woart_insert(woart_tree *t, const unsigned char *key, int key_len, void *value);
/**
* Deletes a value from the ART tree
* @arg t The tree
* @arg key The key
* @arg key_len The length of the key
* @return NULL if the item was not found, otherwise
* the value pointer is returned.
*/
void* woart_delete(woart_tree *t, const unsigned char *key, int key_len);
/**
* Searches for a value in the ART tree
* @arg t The tree
* @arg key The key
* @arg key_len The length of the key
* @return NULL if the item was not found, otherwise
* the value pointer is returned.
*/
void* woart_search(const woart_tree *t, const unsigned char *key, int key_len);
/**
* Returns the minimum valued leaf
* @return The minimum leaf or NULL
*/
woart_leaf* woart_minimum(woart_tree *t);
/**
* Returns the maximum valued leaf
* @return The maximum leaf or NULL
*/
woart_leaf* woart_maximum(woart_tree *t);
/**
* Iterates through the entries pairs in the map,
* invoking a callback for each. The call back gets a
* key, value for each and returns an integer stop value.
* If the callback returns non-zero, then the iteration stops.
* @arg t The tree to iterate over
* @arg cb The callback function to invoke
* @arg data Opaque handle passed to the callback
* @return 0 on success, or the return of the callback.
*/
int woart_iter(woart_tree *t, woart_callback cb, void *data);
/**
* Iterates through the entries pairs in the map,
* invoking a callback for each that matches a given prefix.
* The call back gets a key, value for each and returns an integer stop value.
* If the callback returns non-zero, then the iteration stops.
* @arg t The tree to iterate over
* @arg prefix The prefix of keys to read
* @arg prefix_len The length of the prefix
* @arg cb The callback function to invoke
* @arg data Opaque handle passed to the callback
* @return 0 on success, or the return of the callback.
*/
int woart_iter_prefix(woart_tree *t, const unsigned char *prefix, int prefix_len, woart_callback cb, void *data);
#ifdef __cplusplus
}
#endif
#endif
#endif