Add new isc_hashmap API that differs from the current isc_ht API in several aspects: 1. It implements Robin Hood Hashing which is open-addressing hash table algorithm (e.g. no linked-lists) 2. No memory allocations - the array to store the nodes is made of isc_hashmap_node_t structures instead of just pointers, so there's only allocation on resize. 3. The key is not copied into the hashmap node and must be also stored externally, either as part of the stored value or in any other location that's valid as long the value is stored in the hashmap. This makes the isc_hashmap_t a little less universal because of the key storage requirements, but the inserts and deletes are faster because they don't require memory allocation on isc_hashmap_add() and memory deallocation on isc_hashmap_delete().
199 lines
4.7 KiB
C
199 lines
4.7 KiB
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
/* ! \file */
|
|
|
|
#pragma once
|
|
|
|
#include <inttypes.h>
|
|
#include <string.h>
|
|
|
|
#include <isc/result.h>
|
|
#include <isc/types.h>
|
|
|
|
typedef struct isc_hashmap isc_hashmap_t;
|
|
typedef struct isc_hashmap_iter isc_hashmap_iter_t;
|
|
|
|
enum { ISC_HASHMAP_CASE_SENSITIVE = 0x00, ISC_HASHMAP_CASE_INSENSITIVE = 0x01 };
|
|
|
|
/*%
|
|
* Create hashmap at *hashmapp, using memory context and size of (1<<bits)
|
|
*
|
|
* Requires:
|
|
* \li 'hashmapp' is not NULL and '*hashmapp' is NULL.
|
|
* \li 'mctx' is a valid memory context.
|
|
* \li 'bits' >=1 and 'bits' <=32
|
|
*
|
|
*/
|
|
void
|
|
isc_hashmap_create(isc_mem_t *mctx, uint8_t bits, unsigned int options,
|
|
isc_hashmap_t **hashmapp);
|
|
|
|
/*%
|
|
* Destroy hashmap, freeing everything
|
|
*
|
|
* Requires:
|
|
* \li '*hashmapp' is valid hashmap
|
|
*/
|
|
void
|
|
isc_hashmap_destroy(isc_hashmap_t **hashmapp);
|
|
|
|
/*%
|
|
* Return current hashed value for 'key' of size 'keysize';
|
|
*/
|
|
uint32_t
|
|
isc_hashmap_hash(const isc_hashmap_t *hashmap, const void *key,
|
|
uint32_t keysize);
|
|
|
|
/*%
|
|
* Add a node to hashmap, pointed by binary key 'key' of size 'keysize';
|
|
* set its value to 'value'
|
|
*
|
|
* Requires:
|
|
* \li 'hashmap' is a valid hashmap
|
|
* \li 'hashval' is optional precomputed hash value of 'key'
|
|
* \li 'key' is non-null key of size 'keysize'
|
|
*
|
|
* Returns:
|
|
* \li #ISC_R_EXISTS -- node of the same key already exists
|
|
* \li #ISC_R_SUCCESS -- all is well.
|
|
*/
|
|
isc_result_t
|
|
isc_hashmap_add(isc_hashmap_t *hashmap, const uint32_t *hashvalp,
|
|
const void *key, uint32_t keysize, void *value);
|
|
|
|
/*%
|
|
* Find a node matching 'key'/'keysize' in hashmap 'hashmap';
|
|
* if found, set '*valuep' to its value. (If 'valuep' is NULL,
|
|
* then simply return SUCCESS or NOTFOUND to indicate whether the
|
|
* key exists in the hashmap.)
|
|
*
|
|
* Requires:
|
|
* \li 'hashmap' is a valid hashmap
|
|
* \li 'hashval' is optional precomputed hash value of 'key'
|
|
* \li 'key' is non-null key of size 'keysize'
|
|
*
|
|
* Returns:
|
|
* \li #ISC_R_SUCCESS -- success
|
|
* \li #ISC_R_NOTFOUND -- key not found
|
|
*/
|
|
isc_result_t
|
|
isc_hashmap_find(const isc_hashmap_t *hashmap, const uint32_t *hashvalp,
|
|
const void *key, uint32_t keysize, void **valuep);
|
|
|
|
/*%
|
|
* Delete node from hashmap
|
|
*
|
|
* Requires:
|
|
* \li 'hashmap' is a valid hashmap
|
|
* \li 'hashval' is optional precomputed hash value of 'key'
|
|
* \li 'key' is non-null key of size 'keysize'
|
|
*
|
|
* Returns:
|
|
* \li #ISC_R_NOTFOUND -- key not found
|
|
* \li #ISC_R_SUCCESS -- all is well
|
|
*/
|
|
isc_result_t
|
|
isc_hashmap_delete(isc_hashmap_t *hashmap, const uint32_t *hashvalp,
|
|
const void *key, uint32_t keysize);
|
|
|
|
/*%
|
|
* Create an iterator for the hashmap; point '*itp' to it.
|
|
*
|
|
* Requires:
|
|
* \li 'hashmap' is a valid hashmap
|
|
* \li 'itp' is non NULL and '*itp' is NULL.
|
|
*/
|
|
void
|
|
isc_hashmap_iter_create(isc_hashmap_t *hashmap, isc_hashmap_iter_t **itp);
|
|
|
|
/*%
|
|
* Destroy the iterator '*itp', set it to NULL
|
|
*
|
|
* Requires:
|
|
* \li 'itp' is non NULL and '*itp' is non NULL.
|
|
*/
|
|
void
|
|
isc_hashmap_iter_destroy(isc_hashmap_iter_t **itp);
|
|
|
|
/*%
|
|
* Set an iterator to the first entry.
|
|
*
|
|
* Requires:
|
|
* \li 'it' is non NULL.
|
|
*
|
|
* Returns:
|
|
* \li #ISC_R_SUCCESS -- success
|
|
* \li #ISC_R_NOMORE -- no data in the hashmap
|
|
*/
|
|
isc_result_t
|
|
isc_hashmap_iter_first(isc_hashmap_iter_t *it);
|
|
|
|
/*%
|
|
* Set an iterator to the next entry.
|
|
*
|
|
* Requires:
|
|
* \li 'it' is non NULL.
|
|
*
|
|
* Returns:
|
|
* \li #ISC_R_SUCCESS -- success
|
|
* \li #ISC_R_NOMORE -- end of hashmap reached
|
|
*/
|
|
isc_result_t
|
|
isc_hashmap_iter_next(isc_hashmap_iter_t *it);
|
|
|
|
/*%
|
|
* Delete current entry and set an iterator to the next entry.
|
|
*
|
|
* Requires:
|
|
* \li 'it' is non NULL.
|
|
*
|
|
* Returns:
|
|
* \li #ISC_R_SUCCESS -- success
|
|
* \li #ISC_R_NOMORE -- end of hashmap reached
|
|
*/
|
|
isc_result_t
|
|
isc_hashmap_iter_delcurrent_next(isc_hashmap_iter_t *it);
|
|
|
|
/*%
|
|
* Set 'value' to the current value under the iterator
|
|
*
|
|
* Requires:
|
|
* \li 'it' is non NULL.
|
|
* \li 'valuep' is non NULL and '*valuep' is NULL.
|
|
*/
|
|
void
|
|
isc_hashmap_iter_current(isc_hashmap_iter_t *it, void **valuep);
|
|
|
|
/*%
|
|
* Set 'key' and 'keysize to the current key and keysize for the value
|
|
* under the iterator
|
|
*
|
|
* Requires:
|
|
* \li 'it' is non NULL.
|
|
* \li 'key' is non NULL and '*key' is NULL.
|
|
* \li 'keysize' is non NULL.
|
|
*/
|
|
void
|
|
isc_hashmap_iter_currentkey(isc_hashmap_iter_t *it, const unsigned char **key,
|
|
size_t *keysize);
|
|
|
|
/*%
|
|
* Returns the number of items in the hashmap.
|
|
*
|
|
* Requires:
|
|
* \li 'hashmap' is a valid hashmap
|
|
*/
|
|
unsigned int
|
|
isc_hashmap_count(isc_hashmap_t *hashmap);
|