source: mainline/uspace/lib/c/generic/adt/hash_table.c@ 1c1da4b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 1c1da4b was 892022a1, checked in by Martin Decky <martin@…>, 14 years ago

hash table improvements cherrypicked from lp:~helenos-nicf/helenos/nicf

  • Property mode set to 100644
File size: 5.9 KB
RevLine 
[ee7736e]1/*
[739d00a]2 * Copyright (c) 2008 Jakub Jermar
[ee7736e]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[fadd381]29/** @addtogroup libc
[b2951e2]30 * @{
31 */
32/** @file
33 */
34
[ee7736e]35/*
36 * This is an implementation of generic chained hash table.
37 */
38
[d9c8c81]39#include <adt/hash_table.h>
40#include <adt/list.h>
[ee7736e]41#include <unistd.h>
42#include <malloc.h>
43#include <assert.h>
[19f857a]44#include <str.h>
[ee7736e]45
46/** Create chained hash table.
47 *
[e1da7ec]48 * @param h Hash table structure. Will be initialized by this call.
49 * @param m Number of hash table buckets.
50 * @param max_keys Maximal number of keys needed to identify an item.
51 * @param op Hash table operations structure.
52 *
53 * @return True on success
54 *
[ee7736e]55 */
[857edac]56bool hash_table_create(hash_table_t *h, hash_count_t m, hash_count_t max_keys,
[739d00a]57 hash_table_operations_t *op)
[ee7736e]58{
[4f34b6a]59 assert(h);
60 assert(op && op->hash && op->compare);
61 assert(max_keys > 0);
[ee7736e]62
[b72efe8]63 h->entry = malloc(m * sizeof(list_t));
[e1da7ec]64 if (!h->entry)
[4f34b6a]65 return false;
[e1da7ec]66
[b72efe8]67 memset((void *) h->entry, 0, m * sizeof(list_t));
[ee7736e]68
[e1da7ec]69 hash_count_t i;
[ee7736e]70 for (i = 0; i < m; i++)
71 list_initialize(&h->entry[i]);
72
73 h->entries = m;
74 h->max_keys = max_keys;
75 h->op = op;
[e1da7ec]76
[4f34b6a]77 return true;
[ee7736e]78}
79
[892022a1]80/** Remove all elements from the hash table
81 *
82 * @param h Hash table to be cleared
83 */
84void hash_table_clear(hash_table_t *h)
85{
86 for (hash_count_t chain = 0; chain < h->entries; ++chain) {
87 link_t *cur;
88 link_t *next;
89
90 for (cur = h->entry[chain].head.next;
91 cur != &h->entry[chain].head;
92 cur = next) {
93 next = cur->next;
94 list_remove(cur);
95 h->op->remove_callback(cur);
96 }
97 }
98}
99
[739d00a]100/** Destroy a hash table instance.
[ee7736e]101 *
[e1da7ec]102 * @param h Hash table to be destroyed.
103 *
[739d00a]104 */
105void hash_table_destroy(hash_table_t *h)
106{
107 assert(h);
108 assert(h->entry);
[e1da7ec]109
[739d00a]110 free(h->entry);
111}
112
113/** Insert item into a hash table.
114 *
[e1da7ec]115 * @param h Hash table.
116 * @param key Array of all keys necessary to compute hash index.
117 * @param item Item to be inserted into the hash table.
[ee7736e]118 */
[4f34b6a]119void hash_table_insert(hash_table_t *h, unsigned long key[], link_t *item)
[ee7736e]120{
[4f34b6a]121 assert(item);
122 assert(h && h->op && h->op->hash && h->op->compare);
[e1da7ec]123
124 hash_index_t chain = h->op->hash(key);
[4f34b6a]125 assert(chain < h->entries);
[ee7736e]126
127 list_append(item, &h->entry[chain]);
128}
129
130/** Search hash table for an item matching keys.
131 *
[e1da7ec]132 * @param h Hash table.
133 * @param key Array of all keys needed to compute hash index.
134 *
135 * @return Matching item on success, NULL if there is no such item.
[ee7736e]136 *
137 */
[4f34b6a]138link_t *hash_table_find(hash_table_t *h, unsigned long key[])
[ee7736e]139{
[4f34b6a]140 assert(h && h->op && h->op->hash && h->op->compare);
[e1da7ec]141
142 hash_index_t chain = h->op->hash(key);
[4f34b6a]143 assert(chain < h->entries);
[ee7736e]144
[b72efe8]145 list_foreach(h->entry[chain], cur) {
[ee7736e]146 if (h->op->compare(key, h->max_keys, cur)) {
147 /*
148 * The entry is there.
149 */
150 return cur;
151 }
152 }
153
154 return NULL;
155}
156
157/** Remove all matching items from hash table.
158 *
159 * For each removed item, h->remove_callback() is called.
160 *
[e1da7ec]161 * @param h Hash table.
162 * @param key Array of keys that will be compared against items of
163 * the hash table.
164 * @param keys Number of keys in the 'key' array.
165 *
[ee7736e]166 */
[4f34b6a]167void hash_table_remove(hash_table_t *h, unsigned long key[], hash_count_t keys)
[ee7736e]168{
[739d00a]169 assert(h && h->op && h->op->hash && h->op->compare &&
170 h->op->remove_callback);
[4f34b6a]171 assert(keys <= h->max_keys);
[ee7736e]172
173 if (keys == h->max_keys) {
174 /*
[739d00a]175 * All keys are known, hash_table_find() can be used to find the
176 * entry.
[ee7736e]177 */
[e1da7ec]178
[818fffe]179 link_t *cur = hash_table_find(h, key);
[ee7736e]180 if (cur) {
181 list_remove(cur);
182 h->op->remove_callback(cur);
183 }
[e1da7ec]184
[ee7736e]185 return;
186 }
187
188 /*
189 * Fewer keys were passed.
190 * Any partially matching entries are to be removed.
191 */
[e1da7ec]192 hash_index_t chain;
[ee7736e]193 for (chain = 0; chain < h->entries; chain++) {
[818fffe]194 for (link_t *cur = h->entry[chain].head.next;
195 cur != &h->entry[chain].head;
[739d00a]196 cur = cur->next) {
[ee7736e]197 if (h->op->compare(key, keys, cur)) {
198 link_t *hlp;
199
200 hlp = cur;
201 cur = cur->prev;
202
203 list_remove(hlp);
204 h->op->remove_callback(hlp);
205
206 continue;
207 }
208 }
209 }
210}
[b2951e2]211
[1ab4aca]212/** Apply function to all items in hash table.
[203a090]213 *
[e1da7ec]214 * @param h Hash table.
215 * @param f Function to be applied.
216 * @param arg Argument to be passed to the function.
217 *
[203a090]218 */
[e1da7ec]219void hash_table_apply(hash_table_t *h, void (*f)(link_t *, void *), void *arg)
[892022a1]220{
221 for (hash_index_t bucket = 0; bucket < h->entries; bucket++) {
222 link_t *cur;
223 link_t *next;
224
225 for (cur = h->entry[bucket].head.next; cur != &h->entry[bucket].head;
226 cur = next) {
227 /*
228 * The next pointer must be stored prior to the functor
229 * call to allow using destructor as the functor (the
230 * free function could overwrite the cur->next pointer).
231 */
232 next = cur->next;
[203a090]233 f(cur, arg);
234 }
235 }
236}
237
[fadd381]238/** @}
[b2951e2]239 */
Note: See TracBrowser for help on using the repository browser.