diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2014-12-16 21:21:46 +0100 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2014-12-16 21:21:46 +0100 |
commit | ab35e5fac02f11f0bd742020b112a09e5b1f2de5 (patch) | |
tree | c7b401662f8dabc1f9976cbd387a2b1abc32ac56 /kernel/include | |
parent | bafc8298c68dc1a631ef818710311c01eccec137 (diff) | |
download | macroscope-ab35e5fac02f11f0bd742020b112a09e5b1f2de5.tar.gz macroscope-ab35e5fac02f11f0bd742020b112a09e5b1f2de5.zip |
Add simple hash table implementation.
Diffstat (limited to 'kernel/include')
-rw-r--r-- | kernel/include/hashtbl.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/kernel/include/hashtbl.h b/kernel/include/hashtbl.h new file mode 100644 index 0000000..984aa70 --- /dev/null +++ b/kernel/include/hashtbl.h @@ -0,0 +1,31 @@ +#pragma once + +#include <stdint.h> +#include <stddef.h> +#include <stdbool.h> + +// Simple hashtable structure (key -> void*) +// Supports adding, seeking, removing +// When adding a binding to the table, the previous binding for same key (if exists) is removed + +struct hashtbl; +typedef struct hashtbl hashtbl_t; + +typedef size_t hash_t; +typedef hash_t (*hash_fun_t)(const void*); +typedef bool (*key_eq_fun_t)(const void*, const void*); + +hashtbl_t* create_hashtbl(key_eq_fun_t ef, hash_fun_t hf, size_t initial_size); // 0 -> default size +void delete_hashtbl(hashtbl_t* ht); + +int hashtbl_add(hashtbl_t* ht, void* key, void* v); // non-null on error (OOM for instance) +void* hashtbl_find(hashtbl_t* ht, void* key); // null when not found +void hashtbl_remove(hashtbl_t* ht, void* key); +size_t hashtbl_count(hashtbl_t* ht); + +hash_t id_hash_fun(const void* v); +hash_t str_hash_fun(const void* v); +bool id_key_eq_fun(const void* a, const void* b); +bool str_key_eq_fun(const void* a, const void* b); + +/* vim: set ts=4 sw=4 tw=0 noet :*/ |