aboutsummaryrefslogtreecommitdiffstats
path: root/libopkg/hash_table.c
blob: 81f023b306eb940ed8b08802ff98be3845205712 (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
/* vi: set expandtab sw=4 sts=4: */
/* hash.c - hash tables for opkg

   Steven M. Ayer, Jamey Hicks

   Copyright (C) 2002 Compaq Computer Corporation

   SPDX-License-Identifier: GPL-2.0-or-later

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public License as
   published by the Free Software Foundation; either version 2, or (at
   your option) any later version.

   This program is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.
*/

#include "config.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "hash_table.h"
#include "opkg_message.h"
#include "xfuncs.h"

static unsigned long djb2_hash(const unsigned char *str)
{
    unsigned long hash = 5381;
    int c;
    while ((c = *str++))
        hash = ((hash << 5) + hash) + c;        /* hash * 33 + c */
    return hash;
}

static int hash_index(hash_table_t * hash, const char *key)
{
    return djb2_hash((const unsigned char *)key) % hash->n_buckets;
}

/*
 * this is an open table keyed by strings
 */
void hash_table_init(const char *name, hash_table_t * hash, int len)
{
    if (hash->entries != NULL) {
        opkg_msg(ERROR, "Internal error: non empty hash table.\n");
        return;
    }

    memset(hash, 0, sizeof(hash_table_t));

    hash->name = name;
    hash->n_buckets = len;
    hash->entries = xcalloc(hash->n_buckets, sizeof(hash_entry_t));
}

void hash_print_stats(hash_table_t * hash)
{
    printf("hash_table: %s, %d bytes\n"
           "\tn_buckets=%d, n_elements=%d, n_collisions=%d\n"
           "\tmax_bucket_len=%d, n_used_buckets=%d, ave_bucket_len=%.2f\n"
           "\tn_hits=%d, n_misses=%d\n", hash->name,
           hash->n_buckets * (int)sizeof(hash_entry_t), hash->n_buckets,
           hash->n_elements, hash->n_collisions, hash->max_bucket_len,
           hash->n_used_buckets,
           (hash->n_used_buckets ? ((float)hash->n_elements) / hash->n_used_buckets : 0.0f),
           hash->n_hits, hash->n_misses);
}

void hash_table_deinit(hash_table_t * hash)
{
    unsigned int i;
    if (!hash)
        return;

    /* free the reminaing entries */
    for (i = 0; i < hash->n_buckets; i++) {
        hash_entry_t *hash_entry = (hash->entries + i);
        free(hash_entry->key);
        /* skip the first entry as this is part of the array */
        hash_entry = hash_entry->next;
        while (hash_entry) {
            hash_entry_t *old = hash_entry;
            hash_entry = hash_entry->next;
            free(old->key);
            free(old);
        }
    }

    free(hash->entries);

    hash->entries = NULL;
    hash->n_buckets = 0;
}

void *hash_table_get(hash_table_t * hash, const char *key)
{
    int ndx = hash_index(hash, key);
    hash_entry_t *hash_entry = hash->entries + ndx;
    while (hash_entry) {
        if (hash_entry->key) {
            if (strcmp(key, hash_entry->key) == 0) {
                hash->n_hits++;
                return hash_entry->data;
            }
        }
        hash_entry = hash_entry->next;
    }
    hash->n_misses++;
    return NULL;
}

int hash_table_insert(hash_table_t * hash, const char *key, void *value)
{
    unsigned int bucket_len = 0;
    int ndx = hash_index(hash, key);
    hash_entry_t *hash_entry = hash->entries + ndx;
    if (hash_entry->key) {
        if (strcmp(hash_entry->key, key) == 0) {
            /* alread in table, update the value */
            hash_entry->data = value;
            return 0;
        } else {
            /*
             * if this is a collision, we have to go to the end of the ll,
             * then add a new entry
             * before we can hook up the value
             */
            while (hash_entry->next) {
                hash_entry = hash_entry->next;
                if (strcmp(hash_entry->key, key) == 0) {
                    hash_entry->data = value;
                    return 0;
                }
                bucket_len++;
            }
            hash_entry->next = xcalloc(1, sizeof(hash_entry_t));
            hash_entry = hash_entry->next;
            hash_entry->next = NULL;

            hash->n_collisions++;
            if (++bucket_len > hash->max_bucket_len)
                hash->max_bucket_len = bucket_len;
        }
    } else
        hash->n_used_buckets++;

    hash->n_elements++;
    hash_entry->key = xstrdup(key);
    hash_entry->data = value;

    return 0;
}

int hash_table_remove(hash_table_t * hash, const char *key)
{
    int ndx = hash_index(hash, key);
    hash_entry_t *hash_entry = hash->entries + ndx;
    hash_entry_t *next_entry = NULL, *last_entry = NULL;
    while (hash_entry) {
        if (hash_entry->key) {
            if (strcmp(key, hash_entry->key) == 0) {
                free(hash_entry->key);
                if (last_entry) {
                    last_entry->next = hash_entry->next;
                    free(hash_entry);
                } else {
                    next_entry = hash_entry->next;
                    if (next_entry) {
                        memmove(hash_entry, next_entry, sizeof(hash_entry_t));
                        free(next_entry);
                    } else {
                        memset(hash_entry, 0, sizeof(hash_entry_t));
                    }
                }
                return 1;
            }
        }
        last_entry = hash_entry;
        hash_entry = hash_entry->next;
    }
    return 0;
}

void hash_table_foreach(hash_table_t * hash,
                        void (*f) (const char *key, void *entry, void *data),
                        void *data)
{
    unsigned int i;
    if (!hash || !f)
        return;

    for (i = 0; i < hash->n_buckets; i++) {
        hash_entry_t *hash_entry = (hash->entries + i);
        do {
            if (hash_entry->key) {
                f(hash_entry->key, hash_entry->data, data);
            }
        } while ((hash_entry = hash_entry->next));
    }
}