2022-07-28 15:15:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022 Jordan Bancino <@jordan:bancino.net>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation files
|
|
|
|
* (the "Software"), to deal in the Software without restriction,
|
|
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
2022-07-23 00:19:12 +00:00
|
|
|
/*
|
|
|
|
* HashMap.h: The public interface for Telodendria's hash map
|
|
|
|
* implementation. This hash map is designed to be simple, well
|
|
|
|
* documented, and generally readable and understandable, yet also
|
|
|
|
* performant enough to be useful, because it is used extensively in
|
|
|
|
* Telodendria.
|
2022-07-25 19:25:06 +00:00
|
|
|
*
|
2022-07-23 00:19:12 +00:00
|
|
|
* Fundamentally, this is an entirely generic map implementation. It
|
|
|
|
* can be used for many general purposes, but it is designed to only
|
|
|
|
* implement the features that Telodendria needs to function well.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2022 Jordan Bancino <@jordan:bancino.net>
|
|
|
|
*/
|
|
|
|
#ifndef TELODENDRIA_HASHMAP_H
|
|
|
|
#define TELODENDRIA_HASHMAP_H
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* HashMap: The primary data structure used by this hash map algorithm.
|
|
|
|
* All data necessary for the algorithm to function is stored inside
|
|
|
|
* it. This is an opaque structure; use the methods defined by this
|
|
|
|
* interface to manipulate it.
|
|
|
|
*/
|
|
|
|
typedef struct HashMap HashMap;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* HashMapCreate: Create a new HashMap object.
|
2022-07-25 19:25:06 +00:00
|
|
|
*
|
2022-07-23 00:19:12 +00:00
|
|
|
* Returns: A HashMap object that is ready to be used by the rest of
|
|
|
|
* the HashMap functions, or NULL if memory could not be allocated on
|
|
|
|
* the heap.
|
|
|
|
*/
|
|
|
|
extern HashMap *
|
2022-07-25 19:25:06 +00:00
|
|
|
HashMapCreate(void);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
extern void
|
2022-07-25 19:25:06 +00:00
|
|
|
HashMapMaxLoadSet(HashMap * map, float load);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* HashMapSet: Set the given key in the HashMap to the given value. Note
|
|
|
|
* that the value is not copied into the HashMap's own memory space;
|
|
|
|
* only the pointer is stored. It is the caller's job to ensure that the
|
|
|
|
* value's memory remains valid for the life of the HashMap.
|
2022-07-25 19:25:06 +00:00
|
|
|
*
|
2022-07-23 00:19:12 +00:00
|
|
|
* Returns: The previous value at the given key, or NULL if the key did
|
|
|
|
* not previously exist or any of the parameters provided are NULL. All
|
|
|
|
* keys must have values; you can't set a key to NULL. To delete a key,
|
2022-07-25 19:25:06 +00:00
|
|
|
* use HashMapDelete.
|
2022-07-23 00:19:12 +00:00
|
|
|
*/
|
|
|
|
extern void *
|
2022-07-25 20:26:30 +00:00
|
|
|
HashMapSet(HashMap * map, char *key, void *value);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* HashMapGet: Get the value for the given key.
|
2022-07-25 19:25:06 +00:00
|
|
|
*
|
2022-07-23 00:19:12 +00:00
|
|
|
* Returns: The value at the given key, or NULL if the key does not
|
|
|
|
* exist, no map was provided, or no key was provided.
|
|
|
|
*/
|
|
|
|
extern void *
|
2022-07-25 19:25:06 +00:00
|
|
|
HashMapGet(HashMap * map, const char *key);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* HashMapDelete: Delete the value for the given key.
|
2022-07-25 19:25:06 +00:00
|
|
|
*
|
2022-07-23 00:19:12 +00:00
|
|
|
* Returns: The value at the given key, or NULL if the key does not
|
|
|
|
* exist or the map or key was not provided.
|
|
|
|
*/
|
|
|
|
extern void *
|
2022-07-25 19:25:06 +00:00
|
|
|
HashMapDelete(HashMap * map, const char *key);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
2022-07-26 01:31:09 +00:00
|
|
|
extern int
|
|
|
|
HashMapIterate(HashMap * map, char **key, void **value);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* HashMapFree: Free the hash map, returning its memory to the operating
|
2022-07-25 19:25:06 +00:00
|
|
|
* system. Note that this function does not free the values stored in
|
2022-07-23 00:19:12 +00:00
|
|
|
* the map since this hash map implementation has no way of knowing
|
|
|
|
* what actually is stored in it. You should use HashMapIterate to
|
|
|
|
* free the values using your own algorithm.
|
|
|
|
*/
|
|
|
|
extern void
|
2022-07-26 01:31:09 +00:00
|
|
|
HashMapFree(HashMap *);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
2022-07-25 19:25:06 +00:00
|
|
|
#endif /* TELODENDRIA_HASHMAP_H */
|