Coverage Report

Created: 2025-08-29 06:59

/src/libucl/klib/khash.h
Line
Count
Source (jump to first uncovered line)
1
/* The MIT License
2
3
   Copyright (c) 2008, 2009, 2011 by Attractive Chaos <attractor@live.co.uk>
4
5
   Permission is hereby granted, free of charge, to any person obtaining
6
   a copy of this software and associated documentation files (the
7
   "Software"), to deal in the Software without restriction, including
8
   without limitation the rights to use, copy, modify, merge, publish,
9
   distribute, sublicense, and/or sell copies of the Software, and to
10
   permit persons to whom the Software is furnished to do so, subject to
11
   the following conditions:
12
13
   The above copyright notice and this permission notice shall be
14
   included in all copies or substantial portions of the Software.
15
16
   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20
   BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21
   ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22
   CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
   SOFTWARE.
24
*/
25
26
/*
27
  An example:
28
29
#include "khash.h"
30
KHASH_MAP_INIT_INT(32, char)
31
int main() {
32
  int ret, is_missing;
33
  khiter_t k;
34
  khash_t(32) *h = kh_init(32);
35
  k = kh_put(32, h, 5, &ret);
36
  kh_value(h, k) = 10;
37
  k = kh_get(32, h, 10);
38
  is_missing = (k == kh_end(h));
39
  k = kh_get(32, h, 5);
40
  kh_del(32, h, k);
41
  for (k = kh_begin(h); k != kh_end(h); ++k)
42
    if (kh_exist(h, k)) kh_value(h, k) = 1;
43
  kh_destroy(32, h);
44
  return 0;
45
}
46
*/
47
48
/*
49
  2013-05-02 (0.2.8):
50
51
  * Use quadratic probing. When the capacity is power of 2, stepping function
52
    i*(i+1)/2 guarantees to traverse each bucket. It is better than double
53
    hashing on cache performance and is more robust than linear probing.
54
55
    In theory, double hashing should be more robust than quadratic probing.
56
    However, my implementation is probably not for large hash tables, because
57
    the second hash function is closely tied to the first hash function,
58
    which reduce the effectiveness of double hashing.
59
60
  Reference: http://research.cs.vt.edu/AVresearch/hashing/quadratic.php
61
62
  2011-12-29 (0.2.7):
63
64
    * Minor code clean up; no actual effect.
65
66
  2011-09-16 (0.2.6):
67
68
  * The capacity is a power of 2. This seems to dramatically improve the
69
    speed for simple keys. Thank Zilong Tan for the suggestion. Reference:
70
71
     - http://code.google.com/p/ulib/
72
     - http://nothings.org/computer/judy/
73
74
  * Allow to optionally use linear probing which usually has better
75
    performance for random input. Double hashing is still the default as it
76
    is more robust to certain non-random input.
77
78
  * Added Wang's integer hash function (not used by default). This hash
79
    function is more robust to certain non-random input.
80
81
  2011-02-14 (0.2.5):
82
83
    * Allow to declare global functions.
84
85
  2009-09-26 (0.2.4):
86
87
    * Improve portability
88
89
  2008-09-19 (0.2.3):
90
91
  * Corrected the example
92
  * Improved interfaces
93
94
  2008-09-11 (0.2.2):
95
96
  * Improved speed a little in kh_put()
97
98
  2008-09-10 (0.2.1):
99
100
  * Added kh_clear()
101
  * Fixed a compiling error
102
103
  2008-09-02 (0.2.0):
104
105
  * Changed to token concatenation which increases flexibility.
106
107
  2008-08-31 (0.1.2):
108
109
  * Fixed a bug in kh_get(), which has not been tested previously.
110
111
  2008-08-31 (0.1.1):
112
113
  * Added destructor
114
*/
115
116
117
#ifndef __AC_KHASH_H
118
#define __AC_KHASH_H
119
120
/*!
121
  @header
122
123
  Generic hash table library.
124
 */
125
126
#define AC_VERSION_KHASH_H "0.2.8"
127
128
#include <stdlib.h>
129
#include <string.h>
130
#include <limits.h>
131
132
/* compiler specific configuration */
133
134
#if UINT_MAX == 0xffffffffu
135
typedef unsigned int khint32_t;
136
#elif ULONG_MAX == 0xffffffffu
137
typedef unsigned long khint32_t;
138
#endif
139
140
#if ULONG_MAX == ULLONG_MAX
141
typedef unsigned long khint64_t;
142
#else
143
typedef unsigned long long khint64_t;
144
#endif
145
146
#ifndef kh_inline
147
#ifdef _MSC_VER
148
#define kh_inline __inline
149
#else
150
#define kh_inline inline
151
#endif
152
#endif /* kh_inline */
153
154
#ifndef kh_unused
155
# ifdef __GNUC__
156
#   define kh_unused(x) __attribute__((__unused__)) x
157
# else
158
#   define kh_unused(x) x
159
# endif
160
#endif
161
162
typedef khint32_t khint_t;
163
typedef khint_t khiter_t;
164
165
151k
#define __ac_isempty(flag, i) ((flag[i>>4]>>((i&0xfU)<<1))&2)
166
16.9k
#define __ac_isdel(flag, i) ((flag[i>>4]>>((i&0xfU)<<1))&1)
167
230k
#define __ac_iseither(flag, i) ((flag[i>>4]>>((i&0xfU)<<1))&3)
168
#define __ac_set_isdel_false(flag, i) (flag[i>>4]&=~(1ul<<((i&0xfU)<<1)))
169
2.77k
#define __ac_set_isempty_false(flag, i) (flag[i>>4]&=~(2ul<<((i&0xfU)<<1)))
170
59.2k
#define __ac_set_isboth_false(flag, i) (flag[i>>4]&=~(3ul<<((i&0xfU)<<1)))
171
2.79k
#define __ac_set_isdel_true(flag, i) (flag[i>>4]|=1ul<<((i&0xfU)<<1))
172
173
54.5k
#define __ac_fsize(m) ((m) < 16? 1 : (m)>>4)
174
175
#ifndef kroundup32
176
54.5k
#define kroundup32(x) (--(x), (x)|=(x)>>1, (x)|=(x)>>2, (x)|=(x)>>4, (x)|=(x)>>8, (x)|=(x)>>16, ++(x))
177
#endif
178
179
#ifndef kcalloc
180
54.3k
#define kcalloc(N,Z) calloc(N,Z)
181
#endif
182
#ifndef kmalloc
183
109k
#define kmalloc(Z) malloc(Z)
184
#endif
185
#ifndef krealloc
186
109k
#define krealloc(P,Z) realloc(P,Z)
187
#endif
188
#ifndef kfree
189
271k
#define kfree(P) free(P)
190
#endif
191
192
static const double __ac_HASH_UPPER = 0.77;
193
194
#define __KHASH_TYPE(name, khkey_t, khval_t) \
195
  typedef struct kh_##name##_s { \
196
    khint_t n_buckets, size, n_occupied, upper_bound; \
197
    khint32_t *flags; \
198
    khkey_t *keys; \
199
    khval_t *vals; \
200
  } kh_##name##_t;
201
202
#define __KHASH_PROTOTYPES(name, khkey_t, khval_t)              \
203
  extern kh_##name##_t * kh_init_##name(void);              \
204
  extern void kh_destroy_##name(kh_##name##_t *h);            \
205
  extern void kh_clear_##name(kh_##name##_t *h);              \
206
  extern khint_t kh_get_##name(const kh_##name##_t *h, khkey_t key);    \
207
  extern int kh_resize_##name(kh_##name##_t *h, khint_t new_n_buckets);   \
208
  extern khint_t kh_put_##name(kh_##name##_t *h, khkey_t key, int *ret);  \
209
  extern void kh_del_##name(kh_##name##_t *h, khint_t x);
210
211
#define __KHASH_IMPL(name, SCOPE, khkey_t, khval_t, kh_is_map, __hash_func, __hash_equal) \
212
54.3k
  SCOPE kh_##name##_t *kh_init_##name(void) {             \
213
54.3k
    return (kh_##name##_t*)kcalloc(1, sizeof(kh_##name##_t));   \
214
54.3k
  }                                  \
Unexecuted instantiation: ucl_hash.c:kh_init_ucl_hash_caseless_node
ucl_hash.c:kh_init_ucl_hash_node
Line
Count
Source
212
54.3k
  SCOPE kh_##name##_t *kh_init_##name(void) {             \
213
54.3k
    return (kh_##name##_t*)kcalloc(1, sizeof(kh_##name##_t));   \
214
54.3k
  }                                  \
215
  SCOPE void kh_destroy_##name(kh_##name##_t *h)            \
216
54.2k
  {                                 \
217
54.2k
    if (h) {                           \
218
54.2k
      kfree((void *)h->keys); kfree(h->flags);         \
219
54.2k
      kfree((void *)h->vals);                    \
220
54.2k
      kfree(h);                          \
221
54.2k
    }                               \
222
54.2k
  }                                  \
Unexecuted instantiation: ucl_hash.c:kh_destroy_ucl_hash_caseless_node
ucl_hash.c:kh_destroy_ucl_hash_node
Line
Count
Source
216
54.2k
  {                                 \
217
54.2k
    if (h) {                           \
218
54.2k
      kfree((void *)h->keys); kfree(h->flags);         \
219
54.2k
      kfree((void *)h->vals);                    \
220
54.2k
      kfree(h);                          \
221
54.2k
    }                               \
222
54.2k
  }                                  \
223
  SCOPE void kh_unused(kh_clear_##name)(kh_##name##_t *h)       \
224
0
  {                                 \
225
0
    if (h && h->flags) {                      \
226
0
      memset(h->flags, 0xaa, __ac_fsize(h->n_buckets) * sizeof(khint32_t)); \
227
0
      h->size = h->n_occupied = 0;                \
228
0
    }                               \
229
0
  }                                  \
Unexecuted instantiation: ucl_hash.c:kh_clear_ucl_hash_node
Unexecuted instantiation: ucl_hash.c:kh_clear_ucl_hash_caseless_node
230
  SCOPE khint_t kh_get_##name(const kh_##name##_t *h, khkey_t key)  \
231
60.4k
  {                                 \
232
60.4k
    if (h->n_buckets) {                       \
233
6.58k
      khint_t k, i, last, mask, step = 0; \
234
6.58k
      mask = h->n_buckets - 1;                  \
235
6.58k
      k = __hash_func(key); i = k & mask;             \
236
6.58k
      last = i; \
237
10.8k
      while (!__ac_isempty(h->flags, i) && (__ac_isdel(h->flags, i) || !__hash_equal(h->keys[i], key))) { \
238
4.27k
        i = (i + (++step)) & mask; \
239
4.27k
        if (i == last) return h->n_buckets;           \
240
4.27k
      }                              \
241
6.58k
      return __ac_iseither(h->flags, i)? h->n_buckets : i;   \
242
53.8k
    } else return 0;                       \
243
60.4k
  }                                  \
Unexecuted instantiation: ucl_hash.c:kh_get_ucl_hash_caseless_node
ucl_hash.c:kh_get_ucl_hash_node
Line
Count
Source
231
60.4k
  {                                 \
232
60.4k
    if (h->n_buckets) {                       \
233
6.58k
      khint_t k, i, last, mask, step = 0; \
234
6.58k
      mask = h->n_buckets - 1;                  \
235
6.58k
      k = __hash_func(key); i = k & mask;             \
236
6.58k
      last = i; \
237
10.8k
      while (!__ac_isempty(h->flags, i) && (__ac_isdel(h->flags, i) || !__hash_equal(h->keys[i], key))) { \
238
4.27k
        i = (i + (++step)) & mask; \
239
4.27k
        if (i == last) return h->n_buckets;           \
240
4.27k
      }                              \
241
6.58k
      return __ac_iseither(h->flags, i)? h->n_buckets : i;   \
242
53.8k
    } else return 0;                       \
243
60.4k
  }                                  \
244
  SCOPE int kh_resize_##name(kh_##name##_t *h, khint_t new_n_buckets) \
245
54.5k
  { /* This function uses 0.25*n_buckets bytes of working space instead of [sizeof(key_t+val_t)+.25]*n_buckets. */ \
246
54.5k
    khint32_t *new_flags = 0;                   \
247
54.5k
    khint_t j = 1;                          \
248
54.5k
    {                               \
249
54.5k
      kroundup32(new_n_buckets);                  \
250
54.5k
      if (new_n_buckets < 4) new_n_buckets = 4;         \
251
54.5k
      if (h->size >= (khint_t)(new_n_buckets * __ac_HASH_UPPER + 0.5)) j = 0; /* requested size is too small */ \
252
54.5k
      else { /* hash table size to be changed (shrink or expand); rehash */ \
253
54.5k
        new_flags = (khint32_t*)kmalloc(__ac_fsize(new_n_buckets) * sizeof(khint32_t));  \
254
54.5k
        if (!new_flags) return -1;               \
255
54.5k
        memset(new_flags, 0xaa, __ac_fsize(new_n_buckets) * sizeof(khint32_t)); \
256
54.5k
        if (h->n_buckets < new_n_buckets) { /* expand */    \
257
54.5k
          khkey_t *new_keys = (khkey_t*)krealloc((void *)h->keys, new_n_buckets * sizeof(khkey_t)); \
258
54.5k
          if (!new_keys) { kfree(new_flags); return -1; }    \
259
54.5k
          h->keys = new_keys;                 \
260
54.5k
          if (kh_is_map) {                 \
261
54.5k
            khval_t *new_vals = (khval_t*)krealloc((void *)h->vals, new_n_buckets * sizeof(khval_t)); \
262
54.5k
            if (!new_vals) { kfree(new_flags); return -1; }  \
263
54.5k
            h->vals = new_vals;               \
264
54.5k
          }                          \
265
54.5k
        } /* otherwise shrink */                \
266
54.5k
      }                             \
267
54.5k
    }                               \
268
54.5k
    if (j) { /* rehashing is needed */               \
269
58.2k
      for (j = 0; j != h->n_buckets; ++j) {           \
270
3.69k
        if (__ac_iseither(h->flags, j) == 0) {         \
271
2.74k
          khkey_t key = h->keys[j];             \
272
2.74k
          khval_t val;                    \
273
2.74k
          khint_t new_mask;                 \
274
2.74k
          new_mask = new_n_buckets - 1;             \
275
2.74k
          if (kh_is_map) val = h->vals[j];         \
276
2.74k
          __ac_set_isdel_true(h->flags, j);          \
277
2.77k
          while (1) { /* kick-out process; sort of like in Cuckoo hashing */ \
278
2.77k
            khint_t k, i, step = 0; \
279
2.77k
            k = __hash_func(key);             \
280
2.77k
            i = k & new_mask;               \
281
3.13k
            while (!__ac_isempty(new_flags, i)) i = (i + (++step)) & new_mask; \
282
2.77k
            __ac_set_isempty_false(new_flags, i);     \
283
2.77k
            if (i < h->n_buckets && __ac_iseither(h->flags, i) == 0) { /* kick out the existing element */ \
284
25
              { khkey_t tmp = h->keys[i]; h->keys[i] = key; key = tmp; } \
285
25
              if (kh_is_map) { khval_t tmp = h->vals[i]; h->vals[i] = val; val = tmp; } \
286
25
              __ac_set_isdel_true(h->flags, i); /* mark it as deleted in the old hash table */ \
287
2.74k
            } else { /* write the element and jump out of the loop */ \
288
2.74k
              h->keys[i] = key;             \
289
2.74k
              if (kh_is_map) h->vals[i] = val;     \
290
2.74k
              break;                    \
291
2.74k
            }                        \
292
2.77k
          }                          \
293
2.74k
        }                            \
294
3.69k
      }                              \
295
54.5k
      if (h->n_buckets > new_n_buckets) { /* shrink the hash table */ \
296
0
        h->keys = (khkey_t*)krealloc((void *)h->keys, new_n_buckets * sizeof(khkey_t)); \
297
0
        if (kh_is_map) h->vals = (khval_t*)krealloc((void *)h->vals, new_n_buckets * sizeof(khval_t)); \
298
0
      }                              \
299
54.5k
      kfree(h->flags); /* free the working space */        \
300
54.5k
      h->flags = new_flags;                   \
301
54.5k
      h->n_buckets = new_n_buckets;               \
302
54.5k
      h->n_occupied = h->size;                  \
303
54.5k
      h->upper_bound = (khint_t)(h->n_buckets * __ac_HASH_UPPER + 0.5); \
304
54.5k
    }                               \
305
54.5k
    return 0;                           \
306
54.5k
  }                                  \
Unexecuted instantiation: ucl_hash.c:kh_resize_ucl_hash_caseless_node
ucl_hash.c:kh_resize_ucl_hash_node
Line
Count
Source
245
54.5k
  { /* This function uses 0.25*n_buckets bytes of working space instead of [sizeof(key_t+val_t)+.25]*n_buckets. */ \
246
54.5k
    khint32_t *new_flags = 0;                   \
247
54.5k
    khint_t j = 1;                          \
248
54.5k
    {                               \
249
54.5k
      kroundup32(new_n_buckets);                  \
250
54.5k
      if (new_n_buckets < 4) new_n_buckets = 4;         \
251
54.5k
      if (h->size >= (khint_t)(new_n_buckets * __ac_HASH_UPPER + 0.5)) j = 0; /* requested size is too small */ \
252
54.5k
      else { /* hash table size to be changed (shrink or expand); rehash */ \
253
54.5k
        new_flags = (khint32_t*)kmalloc(__ac_fsize(new_n_buckets) * sizeof(khint32_t));  \
254
54.5k
        if (!new_flags) return -1;               \
255
54.5k
        memset(new_flags, 0xaa, __ac_fsize(new_n_buckets) * sizeof(khint32_t)); \
256
54.5k
        if (h->n_buckets < new_n_buckets) { /* expand */    \
257
54.5k
          khkey_t *new_keys = (khkey_t*)krealloc((void *)h->keys, new_n_buckets * sizeof(khkey_t)); \
258
54.5k
          if (!new_keys) { kfree(new_flags); return -1; }    \
259
54.5k
          h->keys = new_keys;                 \
260
54.5k
          if (kh_is_map) {                 \
261
54.5k
            khval_t *new_vals = (khval_t*)krealloc((void *)h->vals, new_n_buckets * sizeof(khval_t)); \
262
54.5k
            if (!new_vals) { kfree(new_flags); return -1; }  \
263
54.5k
            h->vals = new_vals;               \
264
54.5k
          }                          \
265
54.5k
        } /* otherwise shrink */                \
266
54.5k
      }                             \
267
54.5k
    }                               \
268
54.5k
    if (j) { /* rehashing is needed */               \
269
58.2k
      for (j = 0; j != h->n_buckets; ++j) {           \
270
3.69k
        if (__ac_iseither(h->flags, j) == 0) {         \
271
2.74k
          khkey_t key = h->keys[j];             \
272
2.74k
          khval_t val;                    \
273
2.74k
          khint_t new_mask;                 \
274
2.74k
          new_mask = new_n_buckets - 1;             \
275
2.74k
          if (kh_is_map) val = h->vals[j];         \
276
2.74k
          __ac_set_isdel_true(h->flags, j);          \
277
2.77k
          while (1) { /* kick-out process; sort of like in Cuckoo hashing */ \
278
2.77k
            khint_t k, i, step = 0; \
279
2.77k
            k = __hash_func(key);             \
280
2.77k
            i = k & new_mask;               \
281
3.13k
            while (!__ac_isempty(new_flags, i)) i = (i + (++step)) & new_mask; \
282
2.77k
            __ac_set_isempty_false(new_flags, i);     \
283
2.77k
            if (i < h->n_buckets && __ac_iseither(h->flags, i) == 0) { /* kick out the existing element */ \
284
25
              { khkey_t tmp = h->keys[i]; h->keys[i] = key; key = tmp; } \
285
25
              if (kh_is_map) { khval_t tmp = h->vals[i]; h->vals[i] = val; val = tmp; } \
286
25
              __ac_set_isdel_true(h->flags, i); /* mark it as deleted in the old hash table */ \
287
2.74k
            } else { /* write the element and jump out of the loop */ \
288
2.74k
              h->keys[i] = key;             \
289
2.74k
              if (kh_is_map) h->vals[i] = val;     \
290
2.74k
              break;                    \
291
2.74k
            }                        \
292
2.77k
          }                          \
293
2.74k
        }                            \
294
3.69k
      }                              \
295
54.5k
      if (h->n_buckets > new_n_buckets) { /* shrink the hash table */ \
296
0
        h->keys = (khkey_t*)krealloc((void *)h->keys, new_n_buckets * sizeof(khkey_t)); \
297
0
        if (kh_is_map) h->vals = (khval_t*)krealloc((void *)h->vals, new_n_buckets * sizeof(khval_t)); \
298
0
      }                              \
299
54.5k
      kfree(h->flags); /* free the working space */        \
300
54.5k
      h->flags = new_flags;                   \
301
54.5k
      h->n_buckets = new_n_buckets;               \
302
54.5k
      h->n_occupied = h->size;                  \
303
54.5k
      h->upper_bound = (khint_t)(h->n_buckets * __ac_HASH_UPPER + 0.5); \
304
54.5k
    }                               \
305
54.5k
    return 0;                           \
306
54.5k
  }                                  \
307
  SCOPE khint_t kh_put_##name(kh_##name##_t *h, khkey_t key, int *ret) \
308
59.2k
  {                                 \
309
59.2k
    khint_t x;                            \
310
59.2k
    if (h->n_occupied >= h->upper_bound) { /* update the hash table */ \
311
54.5k
      if (h->n_buckets > (h->size<<1)) {             \
312
0
        if (kh_resize_##name(h, h->n_buckets - 1) < 0) { /* clear "deleted" elements */ \
313
0
          *ret = -1; return h->n_buckets;           \
314
0
        }                            \
315
54.5k
      } else if (kh_resize_##name(h, h->n_buckets + 1) < 0) { /* expand the hash table */ \
316
0
        *ret = -1; return h->n_buckets;             \
317
0
      }                              \
318
54.5k
    } /* TODO: to implement automatically shrinking; resize() already support shrinking */ \
319
59.2k
    {                               \
320
59.2k
      khint_t k, i, site, last, mask = h->n_buckets - 1, step = 0; \
321
59.2k
      x = site = h->n_buckets; k = __hash_func(key); i = k & mask; \
322
59.2k
      if (__ac_isempty(h->flags, i)) x = i; /* for speed up */  \
323
59.2k
      else {                           \
324
1.17k
        last = i; \
325
3.16k
        while (!__ac_isempty(h->flags, i) && (__ac_isdel(h->flags, i) || !__hash_equal(h->keys[i], key))) { \
326
1.99k
          if (__ac_isdel(h->flags, i)) site = i;       \
327
1.99k
          i = (i + (++step)) & mask; \
328
1.99k
          if (i == last) { x = site; break; }          \
329
1.99k
        }                            \
330
1.17k
        if (x == h->n_buckets) {               \
331
1.17k
          if (__ac_isempty(h->flags, i) && site != h->n_buckets) x = site; \
332
1.17k
          else x = i;                     \
333
1.17k
        }                           \
334
1.17k
      }                              \
335
59.2k
    }                               \
336
59.2k
    if (__ac_isempty(h->flags, x)) { /* not present at all */    \
337
59.1k
      h->keys[x] = key;                     \
338
59.1k
      __ac_set_isboth_false(h->flags, x);              \
339
59.1k
      ++h->size; ++h->n_occupied;                 \
340
59.1k
      *ret = 1;                         \
341
59.1k
    } else if (__ac_isdel(h->flags, x)) { /* deleted */       \
342
22
      h->keys[x] = key;                     \
343
22
      __ac_set_isboth_false(h->flags, x);              \
344
22
      ++h->size;                          \
345
22
      *ret = 2;                         \
346
22
    } else *ret = 0; /* Don't touch h->keys[x] if present and not deleted */ \
347
59.2k
    return x;                           \
348
59.2k
  }                                  \
Unexecuted instantiation: ucl_hash.c:kh_put_ucl_hash_caseless_node
ucl_hash.c:kh_put_ucl_hash_node
Line
Count
Source
308
59.2k
  {                                 \
309
59.2k
    khint_t x;                            \
310
59.2k
    if (h->n_occupied >= h->upper_bound) { /* update the hash table */ \
311
54.5k
      if (h->n_buckets > (h->size<<1)) {             \
312
0
        if (kh_resize_##name(h, h->n_buckets - 1) < 0) { /* clear "deleted" elements */ \
313
0
          *ret = -1; return h->n_buckets;           \
314
0
        }                            \
315
54.5k
      } else if (kh_resize_##name(h, h->n_buckets + 1) < 0) { /* expand the hash table */ \
316
0
        *ret = -1; return h->n_buckets;             \
317
0
      }                              \
318
54.5k
    } /* TODO: to implement automatically shrinking; resize() already support shrinking */ \
319
59.2k
    {                               \
320
59.2k
      khint_t k, i, site, last, mask = h->n_buckets - 1, step = 0; \
321
59.2k
      x = site = h->n_buckets; k = __hash_func(key); i = k & mask; \
322
59.2k
      if (__ac_isempty(h->flags, i)) x = i; /* for speed up */  \
323
59.2k
      else {                           \
324
1.17k
        last = i; \
325
3.16k
        while (!__ac_isempty(h->flags, i) && (__ac_isdel(h->flags, i) || !__hash_equal(h->keys[i], key))) { \
326
1.99k
          if (__ac_isdel(h->flags, i)) site = i;       \
327
1.99k
          i = (i + (++step)) & mask; \
328
1.99k
          if (i == last) { x = site; break; }          \
329
1.99k
        }                            \
330
1.17k
        if (x == h->n_buckets) {               \
331
1.17k
          if (__ac_isempty(h->flags, i) && site != h->n_buckets) x = site; \
332
1.17k
          else x = i;                     \
333
1.17k
        }                           \
334
1.17k
      }                              \
335
59.2k
    }                               \
336
59.2k
    if (__ac_isempty(h->flags, x)) { /* not present at all */    \
337
59.1k
      h->keys[x] = key;                     \
338
59.1k
      __ac_set_isboth_false(h->flags, x);              \
339
59.1k
      ++h->size; ++h->n_occupied;                 \
340
59.1k
      *ret = 1;                         \
341
59.1k
    } else if (__ac_isdel(h->flags, x)) { /* deleted */       \
342
22
      h->keys[x] = key;                     \
343
22
      __ac_set_isboth_false(h->flags, x);              \
344
22
      ++h->size;                          \
345
22
      *ret = 2;                         \
346
22
    } else *ret = 0; /* Don't touch h->keys[x] if present and not deleted */ \
347
59.2k
    return x;                           \
348
59.2k
  }                                  \
349
  SCOPE void kh_del_##name(kh_##name##_t *h, khint_t x)       \
350
22
  {                                 \
351
22
    if (x != h->n_buckets && !__ac_iseither(h->flags, x)) {     \
352
22
      __ac_set_isdel_true(h->flags, x);              \
353
22
      --h->size;                          \
354
22
    }                               \
355
22
  }
Unexecuted instantiation: ucl_hash.c:kh_del_ucl_hash_caseless_node
ucl_hash.c:kh_del_ucl_hash_node
Line
Count
Source
350
22
  {                                 \
351
22
    if (x != h->n_buckets && !__ac_iseither(h->flags, x)) {     \
352
22
      __ac_set_isdel_true(h->flags, x);              \
353
22
      --h->size;                          \
354
22
    }                               \
355
22
  }
356
357
#define KHASH_DECLARE(name, khkey_t, khval_t)             \
358
  __KHASH_TYPE(name, khkey_t, khval_t)                \
359
  __KHASH_PROTOTYPES(name, khkey_t, khval_t)
360
361
#define KHASH_INIT2(name, SCOPE, khkey_t, khval_t, kh_is_map, __hash_func, __hash_equal) \
362
  __KHASH_TYPE(name, khkey_t, khval_t)                \
363
  __KHASH_IMPL(name, SCOPE, khkey_t, khval_t, kh_is_map, __hash_func, __hash_equal)
364
365
#define KHASH_INIT(name, khkey_t, khval_t, kh_is_map, __hash_func, __hash_equal) \
366
  KHASH_INIT2(name, static kh_inline, khkey_t, khval_t, kh_is_map, __hash_func, __hash_equal)
367
368
/* --- BEGIN OF HASH FUNCTIONS --- */
369
370
/*! @function
371
  @abstract     Integer hash function
372
  @param  key   The integer [khint32_t]
373
  @return       The hash value [khint_t]
374
 */
375
#define kh_int_hash_func(key) (khint32_t)(key)
376
/*! @function
377
  @abstract     Integer comparison function
378
 */
379
#define kh_int_hash_equal(a, b) ((a) == (b))
380
/*! @function
381
  @abstract     64-bit integer hash function
382
  @param  key   The integer [khint64_t]
383
  @return       The hash value [khint_t]
384
 */
385
#define kh_int64_hash_func(key) (khint32_t)((key)>>33^(key)^(key)<<11)
386
/*! @function
387
  @abstract     64-bit integer comparison function
388
 */
389
#define kh_int64_hash_equal(a, b) ((a) == (b))
390
/*! @function
391
  @abstract     const char* hash function
392
  @param  s     Pointer to a null terminated string
393
  @return       The hash value
394
 */
395
static kh_inline khint_t __ac_X31_hash_string(const char *s)
396
0
{
397
0
  khint_t h = (khint_t)*s;
398
0
  if (h) for (++s ; *s; ++s) h = (h << 5) - h + (khint_t)*s;
399
0
  return h;
400
0
}
401
/*! @function
402
  @abstract     Another interface to const char* hash function
403
  @param  key   Pointer to a null terminated string [const char*]
404
  @return       The hash value [khint_t]
405
 */
406
#define kh_str_hash_func(key) __ac_X31_hash_string(key)
407
/*! @function
408
  @abstract     Const char* comparison function
409
 */
410
#define kh_str_hash_equal(a, b) (strcmp(a, b) == 0)
411
412
static kh_inline khint_t __ac_Wang_hash(khint_t key)
413
0
{
414
0
    key += ~(key << 15);
415
0
    key ^=  (key >> 10);
416
0
    key +=  (key << 3);
417
0
    key ^=  (key >> 6);
418
0
    key += ~(key << 11);
419
0
    key ^=  (key >> 16);
420
0
    return key;
421
0
}
422
#define kh_int_hash_func2(k) __ac_Wang_hash((khint_t)key)
423
424
/* --- END OF HASH FUNCTIONS --- */
425
426
/* Other convenient macros... */
427
428
/*!
429
  @abstract Type of the hash table.
430
  @param  name  Name of the hash table [symbol]
431
 */
432
228k
#define khash_t(name) kh_##name##_t
433
434
/*! @function
435
  @abstract     Initiate a hash table.
436
  @param  name  Name of the hash table [symbol]
437
  @return       Pointer to the hash table [khash_t(name)*]
438
 */
439
54.3k
#define kh_init(name) kh_init_##name()
440
441
/*! @function
442
  @abstract     Destroy a hash table.
443
  @param  name  Name of the hash table [symbol]
444
  @param  h     Pointer to the hash table [khash_t(name)*]
445
 */
446
54.2k
#define kh_destroy(name, h) kh_destroy_##name(h)
447
448
/*! @function
449
  @abstract     Reset a hash table without deallocating memory.
450
  @param  name  Name of the hash table [symbol]
451
  @param  h     Pointer to the hash table [khash_t(name)*]
452
 */
453
#define kh_clear(name, h) kh_clear_##name(h)
454
455
/*! @function
456
  @abstract     Resize a hash table.
457
  @param  name  Name of the hash table [symbol]
458
  @param  h     Pointer to the hash table [khash_t(name)*]
459
  @param  s     New size [khint_t]
460
 */
461
0
#define kh_resize(name, h, s) kh_resize_##name(h, s)
462
463
/*! @function
464
  @abstract     Insert a key to the hash table.
465
  @param  name  Name of the hash table [symbol]
466
  @param  h     Pointer to the hash table [khash_t(name)*]
467
  @param  k     Key [type of keys]
468
  @param  r     Extra return code: -1 if the operation failed;
469
                0 if the key is present in the hash table;
470
                1 if the bucket is empty (never used); 2 if the element in
471
        the bucket has been deleted [int*]
472
  @return       Iterator to the inserted element [khint_t]
473
 */
474
59.2k
#define kh_put(name, h, k, r) kh_put_##name(h, k, r)
475
476
/*! @function
477
  @abstract     Retrieve a key from the hash table.
478
  @param  name  Name of the hash table [symbol]
479
  @param  h     Pointer to the hash table [khash_t(name)*]
480
  @param  k     Key [type of keys]
481
  @return       Iterator to the found element, or kh_end(h) if the element is absent [khint_t]
482
 */
483
60.4k
#define kh_get(name, h, k) kh_get_##name(h, k)
484
485
/*! @function
486
  @abstract     Remove a key from the hash table.
487
  @param  name  Name of the hash table [symbol]
488
  @param  h     Pointer to the hash table [khash_t(name)*]
489
  @param  k     Iterator to the element to be deleted [khint_t]
490
 */
491
22
#define kh_del(name, h, k) kh_del_##name(h, k)
492
493
/*! @function
494
  @abstract     Test whether a bucket contains data.
495
  @param  h     Pointer to the hash table [khash_t(name)*]
496
  @param  x     Iterator to the bucket [khint_t]
497
  @return       1 if containing data; 0 otherwise [int]
498
 */
499
218k
#define kh_exist(h, x) (!__ac_iseither((h)->flags, (x)))
500
501
/*! @function
502
  @abstract     Get key given an iterator
503
  @param  h     Pointer to the hash table [khash_t(name)*]
504
  @param  x     Iterator to the bucket [khint_t]
505
  @return       Key [type of keys]
506
 */
507
#define kh_key(h, x) ((h)->keys[x])
508
509
/*! @function
510
  @abstract     Get value given an iterator
511
  @param  h     Pointer to the hash table [khash_t(name)*]
512
  @param  x     Iterator to the bucket [khint_t]
513
  @return       Value [type of values]
514
  @discussion   For hash sets, calling this results in segfault.
515
 */
516
#define kh_val(h, x) ((h)->vals[x])
517
518
/*! @function
519
  @abstract     Alias of kh_val()
520
 */
521
119k
#define kh_value(h, x) ((h)->vals[x])
522
523
/*! @function
524
  @abstract     Get the start iterator
525
  @param  h     Pointer to the hash table [khash_t(name)*]
526
  @return       The start iterator [khint_t]
527
 */
528
54.2k
#define kh_begin(h) (khint_t)(0)
529
530
/*! @function
531
  @abstract     Get the end iterator
532
  @param  h     Pointer to the hash table [khash_t(name)*]
533
  @return       The end iterator [khint_t]
534
 */
535
333k
#define kh_end(h) ((h)->n_buckets)
536
537
/*! @function
538
  @abstract     Get the number of elements in the hash table
539
  @param  h     Pointer to the hash table [khash_t(name)*]
540
  @return       Number of elements in the hash table [khint_t]
541
 */
542
0
#define kh_size(h) ((h)->size)
543
544
/*! @function
545
  @abstract     Get the number of buckets in the hash table
546
  @param  h     Pointer to the hash table [khash_t(name)*]
547
  @return       Number of buckets in the hash table [khint_t]
548
 */
549
#define kh_n_buckets(h) ((h)->n_buckets)
550
551
/*! @function
552
  @abstract     Iterate over the entries in the hash table
553
  @param  h     Pointer to the hash table [khash_t(name)*]
554
  @param  kvar  Variable to which key will be assigned
555
  @param  vvar  Variable to which value will be assigned
556
  @param  code  Block of code to execute
557
 */
558
#define kh_foreach(h, kvar, vvar, code) { khint_t __i;    \
559
  for (__i = kh_begin(h); __i != kh_end(h); ++__i) {    \
560
    if (!kh_exist(h,__i)) continue;           \
561
    (kvar) = kh_key(h,__i);               \
562
    (vvar) = kh_val(h,__i);               \
563
    code;                       \
564
  } }
565
566
/*! @function
567
  @abstract     Iterate over the values in the hash table
568
  @param  h     Pointer to the hash table [khash_t(name)*]
569
  @param  vvar  Variable to which value will be assigned
570
  @param  code  Block of code to execute
571
 */
572
#define kh_foreach_value(h, vvar, code) { khint_t __i;    \
573
  for (__i = kh_begin(h); __i != kh_end(h); ++__i) {    \
574
    if (!kh_exist(h,__i)) continue;           \
575
    (vvar) = kh_val(h,__i);               \
576
    code;                       \
577
  } }
578
579
/* More conenient interfaces */
580
581
/*! @function
582
  @abstract     Instantiate a hash set containing integer keys
583
  @param  name  Name of the hash table [symbol]
584
 */
585
#define KHASH_SET_INIT_INT(name)                    \
586
  KHASH_INIT(name, khint32_t, char, 0, kh_int_hash_func, kh_int_hash_equal)
587
588
/*! @function
589
  @abstract     Instantiate a hash map containing integer keys
590
  @param  name  Name of the hash table [symbol]
591
  @param  khval_t  Type of values [type]
592
 */
593
#define KHASH_MAP_INIT_INT(name, khval_t)               \
594
  KHASH_INIT(name, khint32_t, khval_t, 1, kh_int_hash_func, kh_int_hash_equal)
595
596
/*! @function
597
  @abstract     Instantiate a hash map containing 64-bit integer keys
598
  @param  name  Name of the hash table [symbol]
599
 */
600
#define KHASH_SET_INIT_INT64(name)                    \
601
  KHASH_INIT(name, khint64_t, char, 0, kh_int64_hash_func, kh_int64_hash_equal)
602
603
/*! @function
604
  @abstract     Instantiate a hash map containing 64-bit integer keys
605
  @param  name  Name of the hash table [symbol]
606
  @param  khval_t  Type of values [type]
607
 */
608
#define KHASH_MAP_INIT_INT64(name, khval_t)               \
609
  KHASH_INIT(name, khint64_t, khval_t, 1, kh_int64_hash_func, kh_int64_hash_equal)
610
611
typedef const char *kh_cstr_t;
612
/*! @function
613
  @abstract     Instantiate a hash map containing const char* keys
614
  @param  name  Name of the hash table [symbol]
615
 */
616
#define KHASH_SET_INIT_STR(name)                    \
617
  KHASH_INIT(name, kh_cstr_t, char, 0, kh_str_hash_func, kh_str_hash_equal)
618
619
/*! @function
620
  @abstract     Instantiate a hash map containing const char* keys
621
  @param  name  Name of the hash table [symbol]
622
  @param  khval_t  Type of values [type]
623
 */
624
#define KHASH_MAP_INIT_STR(name, khval_t)               \
625
  KHASH_INIT(name, kh_cstr_t, khval_t, 1, kh_str_hash_func, kh_str_hash_equal)
626
627
#endif /* __AC_KHASH_H */