This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/blenlib/intern/BLI_ghash.c

678 lines
16 KiB
C
Raw Normal View History

/*
* ***** BEGIN GPL LICENSE BLOCK *****
2002-10-12 11:37:38 +00:00
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
2002-10-12 11:37:38 +00:00
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
2010-02-12 13:34:04 +00:00
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2002-10-12 11:37:38 +00:00
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
*
* The Original Code is: all of this file.
*
* Contributor(s): none yet.
*
* ***** END GPL LICENSE BLOCK *****
2002-10-12 11:37:38 +00:00
*/
2011-02-27 20:37:56 +00:00
/** \file blender/blenlib/intern/BLI_ghash.c
* \ingroup bli
*
* A general (pointer -> pointer) hash table ADT
*
* \note edgehash.c is based on this, make sure they stay in sync.
2011-02-27 20:37:56 +00:00
*/
#include <string.h>
#include <stdlib.h>
#include <limits.h>
#include "MEM_guardedalloc.h"
2002-10-12 11:37:38 +00:00
#include "BLI_sys_types.h" /* for intptr_t support */
#include "BLI_utildefines.h"
2011-10-24 08:18:20 +00:00
#include "BLI_mempool.h"
2002-10-12 11:37:38 +00:00
#include "BLI_ghash.h"
2002-10-12 11:37:38 +00:00
/***/
#ifdef __GNUC__
# pragma GCC diagnostic error "-Wsign-conversion"
# if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 /* gcc4.6+ only */
# pragma GCC diagnostic error "-Wsign-compare"
# pragma GCC diagnostic error "-Wconversion"
# endif
#endif
const unsigned int hashsizes[] = {
5, 11, 17, 37, 67, 131, 257, 521, 1031, 2053, 4099, 8209,
2002-10-12 11:37:38 +00:00
16411, 32771, 65537, 131101, 262147, 524309, 1048583, 2097169,
4194319, 8388617, 16777259, 33554467, 67108879, 134217757,
268435459
};
/***/
typedef struct Entry {
struct Entry *next;
void *key, *val;
} Entry;
struct GHash {
GHashHashFP hashfp;
GHashCmpFP cmpfp;
Entry **buckets;
struct BLI_mempool *entrypool;
unsigned int nbuckets;
unsigned int nentries;
unsigned int cursize, flag;
};
/* -------------------------------------------------------------------- */
/* GHash API */
2013-08-25 12:17:46 +00:00
/** \name Internal Utility API
* \{ */
2013-08-25 12:17:46 +00:00
/**
* Check if the number of items in the GHash is large enough to require more buckets.
*/
BLI_INLINE bool ghash_test_expand_buckets(const unsigned int nentries, const unsigned int nbuckets)
{
return (nentries > nbuckets * 3);
}
2013-08-25 12:17:46 +00:00
/**
* Get the hash for a key.
*/
BLI_INLINE unsigned int ghash_keyhash(GHash *gh, const void *key)
{
return gh->hashfp(key) % gh->nbuckets;
}
2012-03-11 23:47:41 +00:00
2013-08-25 12:17:46 +00:00
/**
* Internal lookup function.
* Takes a hash argument to avoid calling #ghash_keyhash multiple times.
*/
BLI_INLINE Entry *ghash_lookup_entry_ex(GHash *gh, const void *key,
const unsigned int hash)
{
Entry *e;
2012-03-11 23:47:41 +00:00
for (e = gh->buckets[hash]; e; e = e->next) {
if (gh->cmpfp(key, e->key) == 0) {
return e;
}
}
return NULL;
2002-10-12 11:37:38 +00:00
}
2013-08-25 12:17:46 +00:00
/**
* Internal lookup function. Only wraps #ghash_lookup_entry_ex
*/
BLI_INLINE Entry *ghash_lookup_entry(GHash *gh, const void *key)
{
const unsigned int hash = ghash_keyhash(gh, key);
return ghash_lookup_entry_ex(gh, key, hash);
}
2013-08-25 12:17:46 +00:00
/**
* Internal insert function.
* Takes a hash argument to avoid calling #ghash_keyhash multiple times.
*/
static void ghash_insert_ex(GHash *gh, void *key, void *val,
unsigned int hash)
{
Entry *e = (Entry *)BLI_mempool_alloc(gh->entrypool);
BLI_assert((gh->flag & GHASH_FLAG_ALLOW_DUPES) || (BLI_ghash_haskey(gh, key) == 0));
e->next = gh->buckets[hash];
2012-03-11 23:47:41 +00:00
e->key = key;
e->val = val;
gh->buckets[hash] = e;
if (UNLIKELY(ghash_test_expand_buckets(++gh->nentries, gh->nbuckets))) {
2012-03-11 23:47:41 +00:00
Entry **old = gh->buckets;
const unsigned nold = gh->nbuckets;
unsigned int i;
2012-03-11 23:47:41 +00:00
gh->nbuckets = hashsizes[++gh->cursize];
Merge of the PyNodes branch (aka "custom nodes") into trunk. PyNodes opens up the node system in Blender to scripters and adds a number of UI-level improvements. === Dynamic node type registration === Node types can now be added at runtime, using the RNA registration mechanism from python. This enables addons such as render engines to create a complete user interface with nodes. Examples of how such nodes can be defined can be found in my personal wiki docs atm [1] and as a script template in release/scripts/templates_py/custom_nodes.py [2]. === Node group improvements === Each node editor now has a tree history of edited node groups, which allows opening and editing nested node groups. The node editor also supports pinning now, so that different spaces can be used to edit different node groups simultaneously. For more ramblings and rationale see (really old) blog post on code.blender.org [3]. The interface of node groups has been overhauled. Sockets of a node group are no longer displayed in columns on either side, but instead special input/output nodes are used to mirror group sockets inside a node tree. This solves the problem of long node lines in groups and allows more adaptable node layout. Internal sockets can be exposed from a group by either connecting to the extension sockets in input/output nodes (shown as empty circle) or by adding sockets from the node property bar in the "Interface" panel. Further details such as the socket name can also be changed there. [1] http://wiki.blender.org/index.php/User:Phonybone/Python_Nodes [2] http://projects.blender.org/scm/viewvc.php/trunk/blender/release/scripts/templates_py/custom_nodes.py?view=markup&root=bf-blender [3] http://code.blender.org/index.php/2012/01/improving-node-group-interface-editing/
2013-03-18 16:34:57 +00:00
gh->buckets = (Entry **)MEM_callocN(gh->nbuckets * sizeof(*gh->buckets), "buckets");
2012-03-11 23:47:41 +00:00
for (i = 0; i < nold; i++) {
Entry *e_next;
for (e = old[i]; e; e = e_next) {
e_next = e->next;
hash = ghash_keyhash(gh, e->key);
2012-03-11 23:47:41 +00:00
e->next = gh->buckets[hash];
gh->buckets[hash] = e;
}
}
MEM_freeN(old);
}
}
2013-08-25 12:17:46 +00:00
/** \} */
2013-08-25 12:17:46 +00:00
/** \name Public API
* \{ */
2013-08-25 12:17:46 +00:00
/**
* Creates a new, empty GHash.
*
* \param hashfp Hash callback.
* \param cmpfp Comparison callback.
* \param info Identifier string for the GHash.
* \param nentries_reserve Optionally reserve the number of members that the hash will hold.
* Use this to avoid resizing buckets if the size is known or can be closely approximated.
* \return An empty GHash.
*/
GHash *BLI_ghash_new_ex(GHashHashFP hashfp, GHashCmpFP cmpfp, const char *info,
const unsigned int nentries_reserve)
{
GHash *gh = MEM_mallocN(sizeof(*gh), info);
gh->hashfp = hashfp;
gh->cmpfp = cmpfp;
gh->nbuckets = hashsizes[0]; /* gh->cursize */
gh->nentries = 0;
gh->cursize = 0;
gh->flag = 0;
/* if we have reserved the number of elements that this hash will contain */
if (nentries_reserve) {
while (ghash_test_expand_buckets(nentries_reserve, gh->nbuckets)) {
gh->nbuckets = hashsizes[++gh->cursize];
}
}
gh->buckets = MEM_callocN(gh->nbuckets * sizeof(*gh->buckets), "buckets");
gh->entrypool = BLI_mempool_create(sizeof(Entry), 64, 64, 0);
return gh;
}
2013-08-25 12:17:46 +00:00
/**
* Wraps #BLI_ghash_new_ex with zero entries reserved.
*/
GHash *BLI_ghash_new(GHashHashFP hashfp, GHashCmpFP cmpfp, const char *info)
{
return BLI_ghash_new_ex(hashfp, cmpfp, info, 0);
}
2013-08-25 12:17:46 +00:00
/**
* \return size of the GHash.
*/
int BLI_ghash_size(GHash *gh)
{
return (int)gh->nentries;
}
2013-08-25 12:17:46 +00:00
/**
* Insert a key/value pair into the \a gh.
*
* \note Duplicates are not checked,
* the caller is expected to ensure elements are unique unless
* GHASH_FLAG_ALLOW_DUPES flag is set.
*/
void BLI_ghash_insert(GHash *gh, void *key, void *val)
{
const unsigned int hash = ghash_keyhash(gh, key);
ghash_insert_ex(gh, key, val, hash);
}
/**
2013-08-25 12:17:46 +00:00
* Inserts a new value to a key that may already be in ghash.
*
* Avoids #BLI_ghash_remove, #BLI_ghash_insert calls (double lookups)
*/
void BLI_ghash_reinsert(GHash *gh, void *key, void *val, GHashKeyFreeFP keyfreefp, GHashValFreeFP valfreefp)
{
const unsigned int hash = ghash_keyhash(gh, key);
Entry *e = ghash_lookup_entry_ex(gh, key, hash);
if (e) {
if (keyfreefp) keyfreefp(e->key);
if (valfreefp) valfreefp(e->val);
e->key = key;
e->val = val;
}
else {
ghash_insert_ex(gh, key, val, hash);
}
}
2013-08-25 12:17:46 +00:00
/**
* Lookup the value of \a key in \a gh.
*
* \param key The key to lookup.
* \returns the value for \a key or NULL.
*
* \note When NULL is a valid value, use #BLI_ghash_lookup_p to differentiate a missing key
* from a key with a NULL value. (Avoids calling #BLI_ghash_haskey before #BLI_ghash_lookup)
*/
void *BLI_ghash_lookup(GHash *gh, const void *key)
{
Entry *e = ghash_lookup_entry(gh, key);
return e ? e->val : NULL;
}
2013-08-25 12:17:46 +00:00
/**
* Lookup a pointer to the value of \a key in \a gh.
*
* \param key The key to lookup.
* \returns the pointer to value for \a key or NULL.
*
* \note This has 2 main benifits over #BLI_ghash_lookup.
* - A NULL return always means that \a key isn't in \a gh.
* - The value can be modified in-place without further function calls (faster).
*/
void **BLI_ghash_lookup_p(GHash *gh, const void *key)
{
Entry *e = ghash_lookup_entry(gh, key);
return e ? &e->val : NULL;
}
2013-08-25 12:17:46 +00:00
/**
* Remove \a key from \a gh, or return false if the key wasn't found.
*
* \param key The key to remove.
* \param keyfreefp Optional callback to free the key.
* \param valfreefp Optional callback to free the value.
* \return true if \a key was removed from \a gh.
*/
bool BLI_ghash_remove(GHash *gh, void *key, GHashKeyFreeFP keyfreefp, GHashValFreeFP valfreefp)
{
const unsigned int hash = ghash_keyhash(gh, key);
Entry *e;
Entry *p = NULL;
2012-03-11 23:47:41 +00:00
for (e = gh->buckets[hash]; e; e = e->next) {
if (gh->cmpfp(key, e->key) == 0) {
Entry *n = e->next;
if (keyfreefp) keyfreefp(e->key);
if (valfreefp) valfreefp(e->val);
BLI_mempool_free(gh->entrypool, e);
2012-03-18 07:38:51 +00:00
/* correct but 'e' isn't used before return */
/* e = n; *//*UNUSED*/
if (p) p->next = n;
else gh->buckets[hash] = n;
2012-05-09 09:24:15 +00:00
gh->nentries--;
return true;
}
p = e;
}
return false;
}
/* same as above but return the value,
* no free value argument since it will be returned */
2013-08-25 12:17:46 +00:00
/**
* Remove \a key from \a gh, returning the value or NULL if the key wasn't found.
*
* \param key The key to remove.
* \param keyfreefp Optional callback to free the key.
* \return the value of \a key int \a gh or NULL.
*/
void *BLI_ghash_pop(GHash *gh, void *key, GHashKeyFreeFP keyfreefp)
{
const unsigned int hash = ghash_keyhash(gh, key);
Entry *e;
Entry *p = NULL;
for (e = gh->buckets[hash]; e; e = e->next) {
if (gh->cmpfp(key, e->key) == 0) {
Entry *n = e->next;
void *value = e->val;
if (keyfreefp) keyfreefp(e->key);
BLI_mempool_free(gh->entrypool, e);
/* correct but 'e' isn't used before return */
/* e = n; *//*UNUSED*/
if (p) p->next = n;
else gh->buckets[hash] = n;
gh->nentries--;
return value;
}
p = e;
}
return NULL;
}
2013-08-25 12:17:46 +00:00
/**
* \return true if the \a key is in \a gh.
*/
bool BLI_ghash_haskey(GHash *gh, const void *key)
{
return (ghash_lookup_entry(gh, key) != NULL);
}
2013-08-25 12:17:46 +00:00
/**
* Reset \a gh clearing all entries.
*
* \param keyfreefp Optional callback to free the key.
* \param valfreefp Optional callback to free the value.
*/
void BLI_ghash_clear(GHash *gh, GHashKeyFreeFP keyfreefp, GHashValFreeFP valfreefp)
{
unsigned int i;
if (keyfreefp || valfreefp) {
for (i = 0; i < gh->nbuckets; i++) {
Entry *e;
for (e = gh->buckets[i]; e; ) {
Entry *n = e->next;
if (keyfreefp) keyfreefp(e->key);
if (valfreefp) valfreefp(e->val);
e = n;
}
}
}
gh->cursize = 0;
gh->nentries = 0;
gh->nbuckets = hashsizes[gh->cursize];
MEM_freeN(gh->buckets);
gh->buckets = MEM_callocN(gh->nbuckets * sizeof(*gh->buckets), "buckets");
BLI_mempool_clear(gh->entrypool);
}
2013-08-25 12:17:46 +00:00
/**
* Frees the GHash and its members.
*
* \param gh The GHash to free.
* \param keyfreefp Optional callback to free the key.
* \param valfreefp Optional callback to free the value.
*/
void BLI_ghash_free(GHash *gh, GHashKeyFreeFP keyfreefp, GHashValFreeFP valfreefp)
{
unsigned int i;
2012-03-11 23:47:41 +00:00
if (keyfreefp || valfreefp) {
2012-03-11 23:47:41 +00:00
for (i = 0; i < gh->nbuckets; i++) {
Entry *e;
2012-03-11 23:47:41 +00:00
for (e = gh->buckets[i]; e; ) {
2012-03-11 23:47:41 +00:00
Entry *n = e->next;
if (keyfreefp) keyfreefp(e->key);
if (valfreefp) valfreefp(e->val);
2009-02-13 03:27:03 +00:00
2012-03-11 23:47:41 +00:00
e = n;
}
2002-10-12 11:37:38 +00:00
}
}
2012-03-11 23:47:41 +00:00
MEM_freeN(gh->buckets);
BLI_mempool_destroy(gh->entrypool);
gh->buckets = NULL;
gh->nentries = 0;
gh->nbuckets = 0;
2002-10-12 11:37:38 +00:00
MEM_freeN(gh);
}
2013-08-25 12:17:46 +00:00
/**
* Sets a GHash flag.
*/
void BLI_ghash_flag_set(GHash *gh, unsigned int flag)
{
gh->flag |= flag;
}
2013-08-25 12:17:46 +00:00
/**
* Clear a GHash flag.
*/
void BLI_ghash_flag_clear(GHash *gh, unsigned int flag)
{
gh->flag &= ~flag;
}
2013-08-25 12:17:46 +00:00
/** \} */
/* -------------------------------------------------------------------- */
/* GHash Iterator API */
2002-10-12 11:37:38 +00:00
2013-08-25 12:17:46 +00:00
/** \name Iterator API
* \{ */
GHashIterator *BLI_ghashIterator_new(GHash *gh)
{
2012-03-11 23:47:41 +00:00
GHashIterator *ghi = MEM_mallocN(sizeof(*ghi), "ghash iterator");
BLI_ghashIterator_init(ghi, gh);
return ghi;
}
void BLI_ghashIterator_init(GHashIterator *ghi, GHash *gh)
{
2012-03-11 23:47:41 +00:00
ghi->gh = gh;
ghi->curEntry = NULL;
ghi->curBucket = UINT_MAX; /* wraps to zero */
while (!ghi->curEntry) {
ghi->curBucket++;
2012-03-11 23:47:41 +00:00
if (ghi->curBucket == ghi->gh->nbuckets)
break;
2012-03-11 23:47:41 +00:00
ghi->curEntry = ghi->gh->buckets[ghi->curBucket];
}
}
void BLI_ghashIterator_free(GHashIterator *ghi)
{
MEM_freeN(ghi);
}
void *BLI_ghashIterator_getKey(GHashIterator *ghi)
{
2012-03-11 23:47:41 +00:00
return ghi->curEntry ? ghi->curEntry->key : NULL;
}
void *BLI_ghashIterator_getValue(GHashIterator *ghi)
{
2012-03-11 23:47:41 +00:00
return ghi->curEntry ? ghi->curEntry->val : NULL;
}
void BLI_ghashIterator_step(GHashIterator *ghi)
{
if (ghi->curEntry) {
2012-03-11 23:47:41 +00:00
ghi->curEntry = ghi->curEntry->next;
while (!ghi->curEntry) {
ghi->curBucket++;
2012-03-11 23:47:41 +00:00
if (ghi->curBucket == ghi->gh->nbuckets)
break;
2012-03-11 23:47:41 +00:00
ghi->curEntry = ghi->gh->buckets[ghi->curBucket];
}
}
}
bool BLI_ghashIterator_done(GHashIterator *ghi)
{
return ghi->curEntry == NULL;
}
2013-08-25 12:17:46 +00:00
/** \} */
/** \name Generic Key Hash & Comparison Functions
* \{ */
/***/
#if 0
/* works but slower */
unsigned int BLI_ghashutil_ptrhash(const void *key)
{
2009-01-17 00:51:42 +00:00
return (unsigned int)(intptr_t)key;
2002-10-12 11:37:38 +00:00
}
#else
/* based python3.3's pointer hashing function */
unsigned int BLI_ghashutil_ptrhash(const void *key)
{
size_t y = (size_t)key;
/* bottom 3 or 4 bits are likely to be 0; rotate y by 4 to avoid
* excessive hash collisions for dicts and sets */
y = (y >> 4) | (y << (8 * sizeof(void *) - 4));
return (unsigned int)y;
}
#endif
int BLI_ghashutil_ptrcmp(const void *a, const void *b)
{
2012-03-11 23:47:41 +00:00
if (a == b)
2002-10-12 11:37:38 +00:00
return 0;
else
2012-03-11 23:47:41 +00:00
return (a < b) ? -1 : 1;
2002-10-12 11:37:38 +00:00
}
unsigned int BLI_ghashutil_inthash(const void *ptr)
{
uintptr_t key = (uintptr_t)ptr;
key += ~(key << 16);
key ^= (key >> 5);
key += (key << 3);
key ^= (key >> 13);
key += ~(key << 9);
key ^= (key >> 17);
return (unsigned int)(key & 0xffffffff);
}
int BLI_ghashutil_intcmp(const void *a, const void *b)
{
2012-03-11 23:47:41 +00:00
if (a == b)
return 0;
else
2012-03-11 23:47:41 +00:00
return (a < b) ? -1 : 1;
}
/**
* This function implements the widely used "djb" hash apparently posted
* by Daniel Bernstein to comp.lang.c some time ago. The 32 bit
* unsigned hash value starts at 5381 and for each byte 'c' in the
* string, is updated: <literal>hash = hash * 33 + c</literal>. This
* function uses the signed value of each byte.
*
* note: this is the same hash method that glib 2.34.0 uses.
*/
unsigned int BLI_ghashutil_strhash(const void *ptr)
{
const signed char *p;
unsigned int h = 5381;
2012-03-11 23:47:41 +00:00
for (p = ptr; *p != '\0'; p++) {
h = (h << 5) + h + (unsigned int)*p;
2012-03-11 23:47:41 +00:00
}
return h;
2002-10-12 11:37:38 +00:00
}
int BLI_ghashutil_strcmp(const void *a, const void *b)
{
2002-10-12 11:37:38 +00:00
return strcmp(a, b);
}
2013-08-25 12:17:46 +00:00
GHashPair *BLI_ghashutil_pairalloc(const void *first, const void *second)
{
GHashPair *pair = MEM_mallocN(sizeof(GHashPair), "GHashPair");
pair->first = first;
pair->second = second;
return pair;
}
unsigned int BLI_ghashutil_pairhash(const void *ptr)
{
const GHashPair *pair = ptr;
unsigned int hash = BLI_ghashutil_ptrhash(pair->first);
return hash ^ BLI_ghashutil_ptrhash(pair->second);
}
int BLI_ghashutil_paircmp(const void *a, const void *b)
{
const GHashPair *A = a;
const GHashPair *B = b;
int cmp = BLI_ghashutil_ptrcmp(A->first, B->first);
if (cmp == 0)
return BLI_ghashutil_ptrcmp(A->second, B->second);
return cmp;
}
void BLI_ghashutil_pairfree(void *ptr)
{
MEM_freeN(ptr);
}
/** \} */
/** \name Convenience Creation Functions
* \{ */
GHash *BLI_ghash_ptr_new_ex(const char *info,
const unsigned int nentries_reserve)
{
return BLI_ghash_new_ex(BLI_ghashutil_ptrhash, BLI_ghashutil_ptrcmp, info,
nentries_reserve);
}
GHash *BLI_ghash_ptr_new(const char *info)
{
return BLI_ghash_ptr_new_ex(info, 0);
}
GHash *BLI_ghash_str_new_ex(const char *info,
const unsigned int nentries_reserve)
{
return BLI_ghash_new_ex(BLI_ghashutil_strhash, BLI_ghashutil_strcmp, info,
nentries_reserve);
}
GHash *BLI_ghash_str_new(const char *info)
{
return BLI_ghash_str_new_ex(info, 0);
}
GHash *BLI_ghash_int_new_ex(const char *info,
const unsigned int nentries_reserve)
{
return BLI_ghash_new_ex(BLI_ghashutil_inthash, BLI_ghashutil_intcmp, info,
nentries_reserve);
}
GHash *BLI_ghash_int_new(const char *info)
{
return BLI_ghash_int_new_ex(info, 0);
}
GHash *BLI_ghash_pair_new_ex(const char *info,
const unsigned int nentries_reserve)
{
return BLI_ghash_new_ex(BLI_ghashutil_pairhash, BLI_ghashutil_paircmp, info,
nentries_reserve);
}
GHash *BLI_ghash_pair_new(const char *info)
{
return BLI_ghash_pair_new_ex(info, 0);
}
2013-08-25 12:17:46 +00:00
/** \} */