tommyhashdyn.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2010, Andrea Mazzoleni. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 *
11 * 2. 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 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 */
27
137#ifndef __TOMMYHASHDYN_H
138#define __TOMMYHASHDYN_H
139
140#include "tommyhash.h"
141
142/******************************************************************************/
143/* hashdyn */
144
149#define TOMMY_HASHDYN_BIT 4
150
156
161typedef struct tommy_hashdyn_struct {
168
172TOMMY_API void tommy_hashdyn_init(tommy_hashdyn* hashdyn);
173
180TOMMY_API void tommy_hashdyn_done(tommy_hashdyn* hashdyn);
181
185TOMMY_API void tommy_hashdyn_insert(tommy_hashdyn* hashdyn, tommy_hashdyn_node* node, void* data, tommy_hash_t hash);
186
198TOMMY_API void* tommy_hashdyn_remove(tommy_hashdyn* hashdyn, tommy_search_func* cmp, const void* cmp_arg, tommy_hash_t hash);
199
209{
210 return hashdyn->bucket[hash & hashdyn->bucket_mask];
211}
212
223tommy_inline void* tommy_hashdyn_search(tommy_hashdyn* hashdyn, tommy_search_func* cmp, const void* cmp_arg, tommy_hash_t hash)
224{
225 tommy_hashdyn_node* i = tommy_hashdyn_bucket(hashdyn, hash);
226
227 while (i) {
228 /* we first check if the hash matches, as in the same bucket we may have multiple hash values */
229 if (i->index == hash && cmp(cmp_arg, i->data) == 0)
230 return i->data;
231 i = i->next;
232 }
233 return 0;
234}
235
242
275
279TOMMY_API void tommy_hashdyn_foreach_arg(tommy_hashdyn* hashdyn, tommy_foreach_arg_func* func, void* arg);
280
285{
286 return hashdyn->count;
287}
288
294
295#endif
Hashtable container type.
Definition: tommyhashdyn.h:161
tommy_size_t count
Number of elements.
Definition: tommyhashdyn.h:165
tommy_uint_t bucket_bit
Bits used in the bit mask.
Definition: tommyhashdyn.h:166
tommy_hashdyn_node ** bucket
Hash buckets.
Definition: tommyhashdyn.h:162
tommy_size_t bucket_mask
Bit mask to access the buckets.
Definition: tommyhashdyn.h:164
tommy_size_t bucket_max
Number of buckets.
Definition: tommyhashdyn.h:163
Data structure node.
Definition: tommytypes.h:211
tommy_size_t index
Index of the node.
Definition: tommytypes.h:236
struct tommy_node_struct * next
Next node.
Definition: tommytypes.h:216
void * data
Pointer to the object containing the node.
Definition: tommytypes.h:228
Hash functions for the use with tommy_hashtable, tommy_hashdyn and tommy_hashlin.
void * tommy_hashdyn_search(tommy_hashdyn *hashdyn, tommy_search_func *cmp, const void *cmp_arg, tommy_hash_t hash)
Searches an element in the hashtable.
Definition: tommyhashdyn.h:223
TOMMY_API void * tommy_hashdyn_remove(tommy_hashdyn *hashdyn, tommy_search_func *cmp, const void *cmp_arg, tommy_hash_t hash)
Searches and removes an element from the hashtable.
TOMMY_API void tommy_hashdyn_foreach_arg(tommy_hashdyn *hashdyn, tommy_foreach_arg_func *func, void *arg)
Calls the specified function with an argument for each element in the hashtable.
TOMMY_API tommy_size_t tommy_hashdyn_memory_usage(tommy_hashdyn *hashdyn)
Gets the size of allocated memory.
tommy_hashdyn_node * tommy_hashdyn_bucket(tommy_hashdyn *hashdyn, tommy_hash_t hash)
Gets the bucket of the specified hash.
Definition: tommyhashdyn.h:208
TOMMY_API void tommy_hashdyn_foreach(tommy_hashdyn *hashdyn, tommy_foreach_func *func)
Calls the specified function for each element in the hashtable.
tommy_size_t tommy_hashdyn_count(tommy_hashdyn *hashdyn)
Gets the number of elements.
Definition: tommyhashdyn.h:284
TOMMY_API void tommy_hashdyn_done(tommy_hashdyn *hashdyn)
Deinitializes the hashtable.
TOMMY_API void * tommy_hashdyn_remove_existing(tommy_hashdyn *hashdyn, tommy_hashdyn_node *node)
Removes an element from the hashtable.
tommy_node tommy_hashdyn_node
Hashtable node.
Definition: tommyhashdyn.h:155
struct tommy_hashdyn_struct tommy_hashdyn
Hashtable container type.
TOMMY_API void tommy_hashdyn_init(tommy_hashdyn *hashdyn)
Initializes the hashtable.
TOMMY_API void tommy_hashdyn_insert(tommy_hashdyn *hashdyn, tommy_hashdyn_node *node, void *data, tommy_hash_t hash)
Inserts an element in the hashtable.
uint64_t tommy_size_t
Generic size_t type.
Definition: tommytypes.h:60
void tommy_foreach_func(void *obj)
Foreach function.
Definition: tommytypes.h:318
int tommy_search_func(const void *arg, const void *obj)
Search function for elements.
Definition: tommytypes.h:307
void tommy_foreach_arg_func(void *arg, void *obj)
Foreach function with an argument.
Definition: tommytypes.h:325
tommy_size_t tommy_hash_t
Type used in hashtables to store the hash of an object.
Definition: tommytypes.h:193
tommy_uint32_t tommy_uint_t
Generic unsigned integer type.
Definition: tommytypes.h:80