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

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

coding style changes (no change in functionality)

  • Property mode set to 100644
File size: 5.3 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 */
[739d00a]56int hash_table_create(hash_table_t *h, hash_count_t m, hash_count_t max_keys,
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
[1c7da86]63 h->entry = malloc(m * sizeof(link_t));
[e1da7ec]64 if (!h->entry)
[4f34b6a]65 return false;
[e1da7ec]66
[1c7da86]67 memset((void *) h->entry, 0, m * sizeof(link_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
[739d00a]80/** Destroy a hash table instance.
[ee7736e]81 *
[e1da7ec]82 * @param h Hash table to be destroyed.
83 *
[739d00a]84 */
85void hash_table_destroy(hash_table_t *h)
86{
87 assert(h);
88 assert(h->entry);
[e1da7ec]89
[739d00a]90 free(h->entry);
91}
92
93/** Insert item into a hash table.
94 *
[e1da7ec]95 * @param h Hash table.
96 * @param key Array of all keys necessary to compute hash index.
97 * @param item Item to be inserted into the hash table.
[ee7736e]98 */
[4f34b6a]99void hash_table_insert(hash_table_t *h, unsigned long key[], link_t *item)
[ee7736e]100{
[4f34b6a]101 assert(item);
102 assert(h && h->op && h->op->hash && h->op->compare);
[e1da7ec]103
104 hash_index_t chain = h->op->hash(key);
[4f34b6a]105 assert(chain < h->entries);
[ee7736e]106
107 list_append(item, &h->entry[chain]);
108}
109
110/** Search hash table for an item matching keys.
111 *
[e1da7ec]112 * @param h Hash table.
113 * @param key Array of all keys needed to compute hash index.
114 *
115 * @return Matching item on success, NULL if there is no such item.
[ee7736e]116 *
117 */
[4f34b6a]118link_t *hash_table_find(hash_table_t *h, unsigned long key[])
[ee7736e]119{
[4f34b6a]120 assert(h && h->op && h->op->hash && h->op->compare);
[e1da7ec]121
122 hash_index_t chain = h->op->hash(key);
[4f34b6a]123 assert(chain < h->entries);
[ee7736e]124
[e1da7ec]125 link_t *cur;
[739d00a]126 for (cur = h->entry[chain].next; cur != &h->entry[chain];
127 cur = cur->next) {
[ee7736e]128 if (h->op->compare(key, h->max_keys, cur)) {
129 /*
130 * The entry is there.
131 */
132 return cur;
133 }
134 }
135
136 return NULL;
137}
138
139/** Remove all matching items from hash table.
140 *
141 * For each removed item, h->remove_callback() is called.
142 *
[e1da7ec]143 * @param h Hash table.
144 * @param key Array of keys that will be compared against items of
145 * the hash table.
146 * @param keys Number of keys in the 'key' array.
147 *
[ee7736e]148 */
[4f34b6a]149void hash_table_remove(hash_table_t *h, unsigned long key[], hash_count_t keys)
[ee7736e]150{
[739d00a]151 assert(h && h->op && h->op->hash && h->op->compare &&
152 h->op->remove_callback);
[4f34b6a]153 assert(keys <= h->max_keys);
[ee7736e]154
[e1da7ec]155 link_t *cur;
156
[ee7736e]157 if (keys == h->max_keys) {
158 /*
[739d00a]159 * All keys are known, hash_table_find() can be used to find the
160 * entry.
[ee7736e]161 */
[e1da7ec]162
[ee7736e]163 cur = hash_table_find(h, key);
164 if (cur) {
165 list_remove(cur);
166 h->op->remove_callback(cur);
167 }
[e1da7ec]168
[ee7736e]169 return;
170 }
171
172 /*
173 * Fewer keys were passed.
174 * Any partially matching entries are to be removed.
175 */
[e1da7ec]176 hash_index_t chain;
[ee7736e]177 for (chain = 0; chain < h->entries; chain++) {
[739d00a]178 for (cur = h->entry[chain].next; cur != &h->entry[chain];
179 cur = cur->next) {
[ee7736e]180 if (h->op->compare(key, keys, cur)) {
181 link_t *hlp;
182
183 hlp = cur;
184 cur = cur->prev;
185
186 list_remove(hlp);
187 h->op->remove_callback(hlp);
188
189 continue;
190 }
191 }
192 }
193}
[b2951e2]194
[203a090]195/** Apply fucntion to all items in hash table.
196 *
[e1da7ec]197 * @param h Hash table.
198 * @param f Function to be applied.
199 * @param arg Argument to be passed to the function.
200 *
[203a090]201 */
[e1da7ec]202void hash_table_apply(hash_table_t *h, void (*f)(link_t *, void *), void *arg)
[203a090]203{
204 hash_index_t bucket;
205 link_t *cur;
[e1da7ec]206
[203a090]207 for (bucket = 0; bucket < h->entries; bucket++) {
208 for (cur = h->entry[bucket].next; cur != &h->entry[bucket];
209 cur = cur->next) {
210 f(cur, arg);
211 }
212 }
213}
214
[fadd381]215/** @}
[b2951e2]216 */
Note: See TracBrowser for help on using the repository browser.