summaryrefslogtreecommitdiff
path: root/src/ht.c
blob: 2fc120673fd166c07007ab2739c893191bff4af3 (plain)
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
#include <stdarg.h>
#include <string.h>
#include <stdio.h>
#include "ht.h"

#define HT_REHASH_THRESHOLD 0.5

P_ATTR
static NUM
num_hft(CCR_MOD(void *) key)
{
  if (key == NULL) {
    fleprintf0("Got NULL key!\n");
    return 0;
  }

  return *((NUM *) key);
}

P_ATTR
static BOOL
num_cft(CCR_MOD(void *) keya, CCR_MOD(void *) keyb)
{
  if ((keya == NULL && keyb != NULL) ||
      (keyb == NULL && keya != NULL))
    return 0;

  if (keya == NULL && keyb == NULL) return 1;

  return *((NUM *) keya) == *((NUM *) keyb);
}

/* SIZE is a hint to the number of elements that might be put in the
   table.  In fact we will allocate more memory than this number, as a
   hash table works better if it is not fully used.

   NARGS is the number of arguments to follow.  It should be between 0
   and 2 (inclusive).  If there are more than one argument, the first
   argument is used as the hashing function; if there are two
   arguments, the second argument is used as the comparison
   function. */
ht *
new_ht(UNUM size, int nargs, ...)
{

  if (nargs < 0 || nargs > 2) {
    fleprintf("NARGS should be between zero and two, but got %d\n",
              nargs);
    return NULL;
  }

  hash_func_t hft = num_hft;
  compare_func_t cft = num_cft;

  va_list args;

  if (nargs) {
    va_start(args, nargs);
    if (nargs >= 1) hft = va_arg(args, hash_func_t);
    if (nargs == 2) cft = va_arg(args, compare_func_t);
    va_end(args);
  }

  ht *htp = NULL;
  SAFE_MALLOC(ht, htp, 1, return NULL;);

  htp->capability = (size<<1)+(size>>1);
  htp->size = 0;
  htp->hf = hft;
  htp->cf = cft;

  /* For safer clean up */
  htp->keys = NULL;
  htp->values = NULL;
  htp->indices = NULL;

  SAFE_MALLOC(NUM, htp->keys, htp->capability, goto cleanup;);

  SAFE_MALLOC(void*, htp->values, htp->capability, goto cleanup;);

  SAFE_MALLOC(NUM, htp->indices, htp->capability, goto cleanup;);

  /* Initialize the keys to be -1 and the values to be NULL */
  memset(htp->keys, 0xff, sizeof (NUM) * htp->capability);
  memset(htp->values, 0, sizeof (void*) * htp->capability);
  /* Initialize indices to be -1 */
  memset(htp->indices, 0xff, sizeof (NUM) * htp->capability);

  return htp;

 cleanup:
  if (htp->keys) free(htp->keys);
  if (htp->values) free(htp->values);
  if (htp->indices) free(htp->indices);
  free(htp);
  return NULL;
}

void
destroy_ht(ht * restrict htp, HT_DESTROY_FLAG flag)
{
  switch (flag) {
  case DESTROY_KEY_SELF:
  case DESTROY_KEY_NO_SELF:
  case DESTROY_EVERY_SELF:
  case DESTROY_EVERY_NO_SELF:
  case DESTROY_KEY_VALUE_FIRST_SELF:
  case DESTROY_KEY_VALUE_FIRST_NO_SELF:
    for (NUM i = 0; i < htp->size;)
      free(*(htp->keys+i++));
    break;
  case DESTROY_KEY_FIRST_SELF:
  case DESTROY_KEY_FIRST_NO_SELF:
  case DESTROY_EVERY_FIRST_SELF:
  case DESTROY_EVERY_FIRST_NO_SELF:
  case DESTROY_KEY_FIRST_VALUE_SELF:
  case DESTROY_KEY_FIRST_VALUE_NO_SELF:
    free(*(htp->keys));
    break;
  default:
    break;
  }

  switch (flag) {
  case DESTROY_VALUE_SELF:
  case DESTROY_VALUE_NO_SELF:
  case DESTROY_EVERY_SELF:
  case DESTROY_EVERY_NO_SELF:
  case DESTROY_KEY_FIRST_VALUE_SELF:
  case DESTROY_KEY_FIRST_VALUE_NO_SELF:
    for (NUM i = 0; i < htp->size;)
      free(*(htp->values+i++));
    break;
  case DESTROY_VALUE_FIRST_SELF:
  case DESTROY_VALUE_FIRST_NO_SELF:
  case DESTROY_EVERY_FIRST_SELF:
  case DESTROY_EVERY_FIRST_NO_SELF:
  case DESTROY_KEY_VALUE_FIRST_SELF:
  case DESTROY_KEY_VALUE_FIRST_NO_SELF:
    free(*(htp->values));
    break;
  default:
    break;
  }

  free(htp->values);

  free(htp->keys);

  free(htp->indices);

  switch (flag) {
  case DESTROY_NONE_SELF:
  case DESTROY_KEY_SELF:
  case DESTROY_KEY_FIRST_SELF:
  case DESTROY_VALUE_SELF:
  case DESTROY_VALUE_FIRST_SELF:
  case DESTROY_EVERY_SELF:
  case DESTROY_EVERY_FIRST_SELF:
  case DESTROY_KEY_FIRST_VALUE_SELF:
  case DESTROY_KEY_VALUE_FIRST_SELF:
    free(htp);
    break;
  default:
    break;
  }
}

static BOOL
ht_expand(ht *htp)
{
  htp->capability <<= 1;

  void **keys = NULL;
  NUM size = htp->size;
  void **values = NULL;

  if (size) {
    SAFE_MALLOC(void*, keys, size, goto cleanup;);
    SAFE_MALLOC(void*, values, size, goto cleanup;);

    memcpy(keys, htp->keys, sizeof(void*) * size);
    memcpy(values, htp->values, sizeof(void*) * size);
  }

  SAFE_REALLOC(void*, htp->keys, htp->capability, goto cleanup;);

  memset(htp->keys, 0, sizeof (void*) * htp->capability);

  SAFE_REALLOC(void*, htp->values, htp->capability, goto cleanup;);

  memset(htp->values, 0, sizeof(void*) * htp->capability);

  SAFE_REALLOC(NUM, htp->indices, htp->capability, goto cleanup;);

  memset(htp->indices, 0xff, sizeof (NUM) * htp->capability);

  htp->size = 0;

  for (NUM i = 0; i < size; i++)
    ht_insert(htp, *(keys+i), *(values+i));

  if (keys) free(keys);
  if (values) free(values);

  return 0;

 cleanup:
  if (keys) free(keys);
  if (values) free(values);
  return 1;
}

#define PERTURBATION_SHIFT 5

/* On error return non-zero. */
static BOOL
ht_probe(CC_MOD(ht *) htp, CC_MOD(void *) key, NUM *result)
{
  NUM hashed = htp->hf(key);
  NUM ikey = hashed % htp->capability;
  unsigned long perturbation = hashed - ikey;

  for (NUM count = 0;
       count < htp->capability * HT_REHASH_THRESHOLD &&
       *(htp->indices+ikey) >= 0 &&
         /* continue if keys don't match */
         !(htp->cf
           (*(htp->keys+*(htp->indices+ikey)), key));
       count++) {
    ikey = 5 * ikey + 1 + perturbation;
    perturbation >>= PERTURBATION_SHIFT;
    ikey %= htp->capability;
  }

  if (*(htp->indices+ikey) >= 0 &&
      !(htp->cf(*(htp->keys+*(htp->indices+ikey)), key))) {
    /* failed for some reason */
    fleprintf("Fail to probe a location for the key, ikey = %ld, "
              "last index = %ld\n", ikey, *(htp->indices+ikey));
    return 1;
  }

  *result = ikey;

  /* if (*((NUM*) key) == 3) {
   *   fleprintf("ikey = %ld, result = %ld\n", ikey, *result);
   * } */
  return 0;
}

BOOL
ht_insert(ht * const restrict htp, void *key, void *value)
{
  if (htp->size+1 >= HT_REHASH_THRESHOLD * htp->capability) {
    if (ht_expand(htp)) {
      fleprintf0("Fail to expand\n");
      return 1;
    }
  }

  NUM ikey = 0;

  /* check errors */
  if (ht_probe(htp, key, &ikey)) return 1;

  if (*(htp->indices+ikey) < 0) {
    /* not inserted before */
    *(htp->indices+ikey) = htp->size;

    /* Store the key and the value in the array. */
    *(htp->keys+htp->size) = key;
    *(htp->values+htp->size) = value;

    (htp->size)++;
  } else {
    /* error check is performed in ht_probe */
    *(htp->values+*(htp->indices+ikey)) = value;
  }

  /* fleprintf("ikey = %ld, size = %d, capability = %llu\n",
   *           ikey, htp->size, htp->capability); */

  return 0;
}

BOOL
ht_delete(ht * const restrict htp, void *key, HT_DELETE_FLAG flag)
{
  NUM ikey = 0;

  /* check errors */
  if (ht_probe(htp, key, &ikey)) return 1;

  if (*(htp->indices+ikey) < 0) {
    /* not inserted before */
  } else {
    (htp->size)--;

    switch (flag) {
    case DELETE_KEY:
    case DELETE_EVERY:
      free(*(htp->keys+*(htp->indices+ikey)));
      break;
    default:
      break;
    }

    switch (flag) {
    case DELETE_VALUE:
    case DELETE_EVERY:
      free(*(htp->values+*(htp->indices+ikey)));
      break;
    default:
      break;
    }

    *(htp->values+*(htp->indices+ikey)) = NULL;
    *(htp->keys+*(htp->indices+ikey)) = NULL;
    *(htp->indices+ikey) = -1;
  }

  return 0;
}

P_ATTR
void *
ht_find(CCR_MOD(ht *) htp, void *key)
{
  NUM ikey = 0;

  /* check errors */
  if (ht_probe(htp, key, &ikey)) return NULL;

  if (*(htp->indices+ikey) < 0) return NULL;

  return *(htp->values+*(htp->indices+ikey));
}

P_ATTR
NUM
ht_size(CCR_MOD(ht *) htp)
{
  return (NUM) htp->size;
}

P_ATTR
void **
ht_values(CCR_MOD(ht *) htp)
{
  return htp->values;
}

P_ATTR
void **
ht_keys(CCR_MOD(ht *) htp)
{
  return htp->keys;
}