summaryrefslogtreecommitdiff
path: root/map.c
blob: 927fd666e695fb73beb12fbf178ed2db005b235f (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
#include "map.h"
#include "crash.h"
#include <stdlib.h>
#include <assert.h>

#define DEFAULT_CAPACITY 16

void map_init(
    map_t* map,
    hash_func_t hash_func,
    eq_func_t eq_func,
    double load_limit
) {
    map_init_capacity(
        map, hash_func, eq_func, load_limit, DEFAULT_CAPACITY);
}

void map_init_capacity(
    map_t* map,
    hash_func_t hash_func,
    eq_func_t eq_func,
    double load_limit,
    size_t capacity
) {
    map->hash_func = hash_func;
    map->eq_func = eq_func;
    map->load_limit = load_limit;
    map->size = 0;
    map->__num_buckets = capacity / load_limit + 1;
    map->__buckets = calloc(map->__num_buckets, sizeof(struct __map_entry));

    if (map->__buckets == NULL)
        crash("Out of memory allocating %ld hash buckets\n");
}

void map_destroy(map_t* map) {
    for (size_t i = 0; i < map->__num_buckets; i++) {
        struct __map_entry* node = map->__buckets[i].next;
        while (node != NULL) {
            struct __map_entry* next = node->next;
            free(node);
            node = next;
        }
    }

    free(map->__buckets);
}

/* impl detail: next is never null if the value is populated (put will alloc) */
static struct __map_entry* fetch_entry(const map_t* map, const void* key) {
    struct __map_entry* entry =
        &map->__buckets[map->hash_func(key) % map->__num_buckets];

    while (entry->next != NULL && !map->eq_func(key, entry->key)) {
        entry = entry->next;
    }
    return entry;
}

bool map_contains(const map_t* map, const void *key) {
    return fetch_entry(map, key)->next != NULL;
}

void* map_get(const map_t* map, const void* key) {
    return map_get_or_default(map, key, NULL);
}

void* map_get_or_default(const map_t* map, const void* key, void* default_val) {
    struct __map_entry* entry = fetch_entry(map, key);
    return entry->next == NULL ? default_val : entry->value;
}

static void insert_entry(map_t* map, struct __map_entry* entry) {
    struct __map_entry* slot = fetch_entry(map, entry->key);
    assert(slot->next == NULL);
    slot->key = entry->key;
    slot->value = entry->value;
    slot->next = entry;
    entry->next = NULL;
}

static void rehash(map_t* map) {
    size_t old_num_buckets = map->__num_buckets;
    struct __map_entry* old_buckets = map->__buckets;
    map->__num_buckets <<= 1;
    map->__buckets = calloc(map->__num_buckets, sizeof(struct __map_entry));

    for (size_t i = 0; i < old_num_buckets; i++) {
        struct __map_entry* old_entry = &old_buckets[i];
        if (old_entry->next == NULL) continue;

        struct __map_entry* cur = old_entry->next;
        while (cur->next != NULL) {
            struct __map_entry* next = cur->next;
            insert_entry(map, cur);
            cur = next;
        }

        struct __map_entry* new_entry = fetch_entry(map, old_entry->key);
        new_entry->key = old_entry->key;
        new_entry->value = old_entry->value;
        new_entry->next = cur;
    }

    free(old_buckets);
}

static void insert_allocating(
    map_t* map,
    struct __map_entry* entry,
    void* key,
    void* val
) {
    if ((double) ++map->size / map->__num_buckets > map->load_limit) {
        rehash(map);
        entry = fetch_entry(map, key);
    }

    struct __map_entry* next = calloc(1, sizeof(struct __map_entry));
    if (next == NULL)
        crash("Out of memory allocating hash entry\n");

    entry->key = key;
    entry->value = val;
    entry->next = next;
}

void* map_compute_if_absent(map_t* map, void* key, void* default_val) {
    struct __map_entry* entry = fetch_entry(map, key);
    if (entry->next != NULL) return entry->value;

    insert_allocating(map, entry, key, default_val);
    return default_val;
}

void map_put(map_t* map, void* key, void* val) {
    struct __map_entry* entry = fetch_entry(map, key);
    if (entry->next != NULL) {
        entry->value = val;
        return;
    }

    insert_allocating(map, entry, key, val);
}

void* map_remove(map_t* map, const void* key) {
    struct __map_entry* entry = fetch_entry(map, key);
    if (entry->next == NULL) return NULL;

    void* rv = entry->value;
    struct __map_entry* steal = entry->next;
    *entry = *steal;
    free(steal);
    return rv;
}