138 lines
3.3 KiB
C
138 lines
3.3 KiB
C
/*
|
|
* Copyright (c) 1998 James Clark
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "xmldef.h"
|
|
#include "hashtable.h"
|
|
|
|
#ifdef XML_UNICODE
|
|
#define keycmp wcscmp
|
|
#else
|
|
#define keycmp strcmp
|
|
#endif
|
|
|
|
#define INIT_SIZE 64
|
|
|
|
static
|
|
unsigned long hash(KEY s)
|
|
{
|
|
unsigned long h = 0;
|
|
while (*s)
|
|
h = (h << 5) + h + (unsigned char)*s++;
|
|
return h;
|
|
}
|
|
|
|
NAMED *lookup(HASH_TABLE *table, KEY name, size_t createSize)
|
|
{
|
|
size_t i;
|
|
if (table->size == 0) {
|
|
if (!createSize)
|
|
return 0;
|
|
table->v = calloc(INIT_SIZE, sizeof(NAMED *));
|
|
if (!table->v)
|
|
return 0;
|
|
table->size = INIT_SIZE;
|
|
table->usedLim = INIT_SIZE / 2;
|
|
i = hash(name) & (table->size - 1);
|
|
}
|
|
else {
|
|
unsigned long h = hash(name);
|
|
for (i = h & (table->size - 1);
|
|
table->v[i];
|
|
i == 0 ? i = table->size - 1 : --i) {
|
|
if (keycmp(name, table->v[i]->name) == 0)
|
|
return table->v[i];
|
|
}
|
|
if (!createSize)
|
|
return 0;
|
|
if (table->used == table->usedLim) {
|
|
/* check for overflow */
|
|
size_t newSize = table->size * 2;
|
|
NAMED **newV = calloc(newSize, sizeof(NAMED *));
|
|
if (!newV)
|
|
return 0;
|
|
for (i = 0; i < table->size; i++)
|
|
if (table->v[i]) {
|
|
size_t j;
|
|
for (j = hash(table->v[i]->name) & (newSize - 1);
|
|
newV[j];
|
|
j == 0 ? j = newSize - 1 : --j)
|
|
;
|
|
newV[j] = table->v[i];
|
|
}
|
|
free(table->v);
|
|
table->v = newV;
|
|
table->size = newSize;
|
|
table->usedLim = newSize/2;
|
|
for (i = h & (table->size - 1);
|
|
table->v[i];
|
|
i == 0 ? i = table->size - 1 : --i)
|
|
;
|
|
}
|
|
}
|
|
table->v[i] = calloc(1, createSize);
|
|
if (!table->v[i])
|
|
return 0;
|
|
table->v[i]->name = name;
|
|
(table->used)++;
|
|
return table->v[i];
|
|
}
|
|
|
|
void hashTableDestroy(HASH_TABLE *table)
|
|
{
|
|
size_t i;
|
|
for (i = 0; i < table->size; i++) {
|
|
NAMED *p = table->v[i];
|
|
if (p)
|
|
free(p);
|
|
}
|
|
free(table->v);
|
|
}
|
|
|
|
void hashTableInit(HASH_TABLE *p)
|
|
{
|
|
p->size = 0;
|
|
p->usedLim = 0;
|
|
p->used = 0;
|
|
p->v = 0;
|
|
}
|
|
|
|
void hashTableIterInit(HASH_TABLE_ITER *iter, const HASH_TABLE *table)
|
|
{
|
|
iter->p = table->v;
|
|
iter->end = iter->p + table->size;
|
|
}
|
|
|
|
NAMED *hashTableIterNext(HASH_TABLE_ITER *iter)
|
|
{
|
|
while (iter->p != iter->end) {
|
|
NAMED *tem = *(iter->p)++;
|
|
if (tem)
|
|
return tem;
|
|
}
|
|
return 0;
|
|
}
|
|
|