libds/include/ht.h

117 lines
3.6 KiB
C
Raw Normal View History

2016-12-21 01:07:47 -08:00
#ifndef LIBDS_HT_HEADER
#define LIBDS_HT_HEADER
#define LIBDS_HT_SIZE 32
#include "libds.h"
/**
* A linked list node used for hash table buckets.
* Contains a copy of the key that was used to store the
* data as to avoid conflicting hash functions.
*/
2016-12-21 01:07:47 -08:00
struct ht_node_s {
2016-12-21 14:50:32 -08:00
void* key;
void* data;
struct ht_node_s* next;
2016-12-21 01:07:47 -08:00
};
/**
* A hash table struct.
* The struct contains function pointers to all necessary
* internal functions so that it can be customized to work with
* any kind of data. By default, it works with strings.
*
* The copy function, which is intended to use malloc(), should return
* NULL if the allocation failed - otherwise, there is no way for the
* hash table to know something went wrong.
*/
2016-12-21 01:07:47 -08:00
struct ht_s {
2016-12-21 14:50:32 -08:00
struct ht_node_s* data[LIBDS_HT_SIZE];
unsigned int (*hash_func)(void*);
int (*cmp_func)(void*, void*);
void* (*copy_func)(void*);
void (*free_func)(void*);
2016-12-21 01:07:47 -08:00
};
typedef struct ht_node_s ht_node;
typedef struct ht_s ht;
/**
* The default hash function.
* Uses FNV-1 hash, and assumes data is a string.
* @param key the data to hash.
* @return the produced hashed integer.
*/
unsigned int ht_default_hash_func(void* key);
/**
* The default key comparison function.
* Assumes both keys are strings and uses strcmp.
* @param a the key to compare
* @param b the key compared against
* @return true if the keys represent the same string.
*/
int ht_default_cmp_func(void* a, void* b);
/**
* The default key copy function.
* @param key the key being copied
* @return a pointer to the copy of the key.
*/
void* ht_default_copy_func(void* key);
/**
* The default key free function. Simply calls free()
* @param key the key to free.
*/
void ht_default_free_func(void* key);
2016-12-21 01:07:47 -08:00
/**
* Initializes the hash table with default values.
* @param ht the hash table to initialize.
*/
void ht_init(ht* ht);
/**
* Frees the hash table and its internally allocated nodes.
* The data itself is left intact - use ht_foreach to free it
* if it is no longer used.
* @param ht the hash table to free.
*/
void ht_free(ht* ht);
2016-12-21 01:07:47 -08:00
/**
* Stores data into the hash table. Uses malloc for node allocation.
* @param ht the hash table to store data into.
* @param key the key to use to store the data.
* @param value the value to store.
* @return LIBDS_SUCCESS if all goes well, LIBDS_MALLOC if an allocation fails.
*/
libds_result ht_put(ht* ht, void* key, void* value);
/**
* Retrieves a value from the hash table.
* @param ht the hash table to retrieve a value from.
* @param key the key to use to find the data.
* @return the data, or NULL if it is not found.
*/
void* ht_get(ht* ht, void* key);
/**
* Removes a value from the hash table.
* @param ht the hash table to remove a value from.
* @param key the key to use to find the data.
*/
void ht_remove(ht* ht, void* key);
2016-12-21 01:07:47 -08:00
/**
* Runs through every element in the hash table, and compares it against the
* given data using the given comparison function. If the comparison function returns
* true, calls the foreach function, passing it the element and the variable argument list.
* Stops if any foreach function returns a nonzero code.
* @param ht the hash table to perform the operation on.
* @param data the data passed to the comparison function.
* @param compare the comparison function operating on the data and each element in the list.
* @param foreach the foreach function called on every element that is matched by the comparison function.
* @param ... variable arguments to be passed to the foreach function.
* @return the code returned by the foreach functions.
*/
int ht_foreach(ht* ht, void* data, compare_func compare, foreach_func foreach, ...);
2016-12-21 01:07:47 -08:00
#endif