2002-10-12 11:37:38 +00:00
|
|
|
/**
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** 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
|
2008-04-16 22:40:48 +00:00
|
|
|
* 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,
|
|
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
* A general (pointer -> pointer) hash table ADT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
#include "BLI_ghash.h"
|
2010-01-23 11:25:20 +00:00
|
|
|
#include "BLI_mempool.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-08-17 17:16:49 +00:00
|
|
|
#include "BLO_sys_types.h" // for intptr_t support
|
|
|
|
|
2010-01-23 11:25:20 +00:00
|
|
|
#include "BKE_utildefines.h"
|
|
|
|
|
2002-11-25 12:02:15 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/***/
|
|
|
|
|
2010-01-23 11:25:20 +00:00
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
|
|
/***/
|
|
|
|
|
|
|
|
/***/
|
|
|
|
|
|
|
|
GHash *BLI_ghash_new(GHashHashFP hashfp, GHashCmpFP cmpfp) {
|
|
|
|
GHash *gh= MEM_mallocN(sizeof(*gh), "GHash");
|
|
|
|
gh->hashfp= hashfp;
|
|
|
|
gh->cmpfp= cmpfp;
|
2010-02-04 00:17:25 +00:00
|
|
|
gh->entrypool = BLI_mempool_create(sizeof(Entry), 64, 64, 0);
|
2010-01-23 11:25:20 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
gh->cursize= 0;
|
|
|
|
gh->nentries= 0;
|
|
|
|
gh->nbuckets= hashsizes[gh->cursize];
|
|
|
|
|
2010-01-23 11:25:20 +00:00
|
|
|
gh->buckets= MEM_mallocN(gh->nbuckets*sizeof(*gh->buckets), "buckets");
|
2002-10-12 11:37:38 +00:00
|
|
|
memset(gh->buckets, 0, gh->nbuckets*sizeof(*gh->buckets));
|
|
|
|
|
|
|
|
return gh;
|
|
|
|
}
|
|
|
|
|
2010-01-23 11:25:20 +00:00
|
|
|
#ifdef BLI_ghash_insert
|
|
|
|
#undef BLI_ghash_insert
|
|
|
|
#endif
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2004-01-07 06:13:43 +00:00
|
|
|
int BLI_ghash_size(GHash *gh) {
|
|
|
|
return gh->nentries;
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
void BLI_ghash_free(GHash *gh, GHashKeyFreeFP keyfreefp, GHashValFreeFP valfreefp) {
|
|
|
|
int i;
|
|
|
|
|
2010-01-23 11:25:20 +00:00
|
|
|
if (keyfreefp || valfreefp) {
|
|
|
|
for (i=0; i<gh->nbuckets; i++) {
|
|
|
|
Entry *e;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2010-01-23 11:25:20 +00:00
|
|
|
for (e= gh->buckets[i]; e; ) {
|
|
|
|
Entry *n= e->next;
|
|
|
|
|
|
|
|
if (keyfreefp) keyfreefp(e->key);
|
|
|
|
if (valfreefp) valfreefp(e->val);
|
|
|
|
|
|
|
|
e= n;
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-23 11:25:20 +00:00
|
|
|
MEM_freeN(gh->buckets);
|
|
|
|
BLI_mempool_destroy(gh->entrypool);
|
2005-12-21 22:21:43 +00:00
|
|
|
gh->buckets = 0;
|
|
|
|
gh->nentries = 0;
|
|
|
|
gh->nbuckets = 0;
|
2002-10-12 11:37:38 +00:00
|
|
|
MEM_freeN(gh);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***/
|
|
|
|
|
2004-01-07 06:13:43 +00:00
|
|
|
GHashIterator *BLI_ghashIterator_new(GHash *gh) {
|
2010-01-23 11:25:20 +00:00
|
|
|
GHashIterator *ghi= MEM_mallocN(sizeof(*ghi), "ghash iterator");
|
2004-01-07 06:13:43 +00:00
|
|
|
ghi->gh= gh;
|
|
|
|
ghi->curEntry= NULL;
|
|
|
|
ghi->curBucket= -1;
|
|
|
|
while (!ghi->curEntry) {
|
|
|
|
ghi->curBucket++;
|
|
|
|
if (ghi->curBucket==ghi->gh->nbuckets)
|
|
|
|
break;
|
|
|
|
ghi->curEntry= ghi->gh->buckets[ghi->curBucket];
|
|
|
|
}
|
|
|
|
return ghi;
|
|
|
|
}
|
2008-05-27 13:22:17 +00:00
|
|
|
void BLI_ghashIterator_init(GHashIterator *ghi, GHash *gh) {
|
|
|
|
ghi->gh= gh;
|
|
|
|
ghi->curEntry= NULL;
|
|
|
|
ghi->curBucket= -1;
|
|
|
|
while (!ghi->curEntry) {
|
|
|
|
ghi->curBucket++;
|
|
|
|
if (ghi->curBucket==ghi->gh->nbuckets)
|
|
|
|
break;
|
|
|
|
ghi->curEntry= ghi->gh->buckets[ghi->curBucket];
|
|
|
|
}
|
|
|
|
}
|
2004-01-07 06:13:43 +00:00
|
|
|
void BLI_ghashIterator_free(GHashIterator *ghi) {
|
2010-01-23 11:25:20 +00:00
|
|
|
MEM_freeN(ghi);
|
2004-01-07 06:13:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *BLI_ghashIterator_getKey(GHashIterator *ghi) {
|
|
|
|
return ghi->curEntry?ghi->curEntry->key:NULL;
|
|
|
|
}
|
|
|
|
void *BLI_ghashIterator_getValue(GHashIterator *ghi) {
|
|
|
|
return ghi->curEntry?ghi->curEntry->val:NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BLI_ghashIterator_step(GHashIterator *ghi) {
|
|
|
|
if (ghi->curEntry) {
|
|
|
|
ghi->curEntry= ghi->curEntry->next;
|
|
|
|
while (!ghi->curEntry) {
|
|
|
|
ghi->curBucket++;
|
|
|
|
if (ghi->curBucket==ghi->gh->nbuckets)
|
|
|
|
break;
|
|
|
|
ghi->curEntry= ghi->gh->buckets[ghi->curBucket];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int BLI_ghashIterator_isDone(GHashIterator *ghi) {
|
|
|
|
return !ghi->curEntry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***/
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
unsigned int BLI_ghashutil_ptrhash(void *key) {
|
2009-01-17 00:51:42 +00:00
|
|
|
return (unsigned int)(intptr_t)key;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
int BLI_ghashutil_ptrcmp(void *a, void *b) {
|
|
|
|
if (a==b)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return (a<b)?-1:1;
|
|
|
|
}
|
|
|
|
|
2005-12-21 22:21:43 +00:00
|
|
|
unsigned int BLI_ghashutil_inthash(void *ptr) {
|
2008-08-17 17:08:00 +00:00
|
|
|
uintptr_t key = (uintptr_t)ptr;
|
2005-12-21 22:21:43 +00:00
|
|
|
|
|
|
|
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(void *a, void *b) {
|
|
|
|
if (a==b)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return (a<b)?-1:1;
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
unsigned int BLI_ghashutil_strhash(void *ptr) {
|
|
|
|
char *s= ptr;
|
|
|
|
unsigned int i= 0;
|
|
|
|
unsigned char c;
|
|
|
|
|
2005-03-09 19:45:59 +00:00
|
|
|
while ( (c= *s++) )
|
2002-10-12 11:37:38 +00:00
|
|
|
i= i*37 + c;
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
int BLI_ghashutil_strcmp(void *a, void *b) {
|
|
|
|
return strcmp(a, b);
|
|
|
|
}
|