2005-11-30 13:36:58 +00:00
|
|
|
/*
|
|
|
|
* hash.c: chained hash tables
|
|
|
|
*
|
|
|
|
* Reference: Your favorite introductory book on algorithms
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 Bjorn Reese and Daniel Veillard.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
|
|
|
|
* CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
|
|
|
|
*
|
|
|
|
* Author: breese@users.sourceforge.net
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define IN_LIBXML
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include "hash.h"
|
|
|
|
|
|
|
|
#define MAX_HASH_LEN 8
|
|
|
|
|
|
|
|
/* #define DEBUG_GROW */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A single entry in the hash table
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
typedef struct _virHashEntry virHashEntry;
|
|
|
|
typedef virHashEntry *virHashEntryPtr;
|
|
|
|
struct _virHashEntry {
|
|
|
|
struct _virHashEntry *next;
|
2005-11-30 13:36:58 +00:00
|
|
|
char *name;
|
|
|
|
void *payload;
|
|
|
|
int valid;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The entire hash table
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
struct _virHashTable {
|
|
|
|
struct _virHashEntry *table;
|
2005-11-30 13:36:58 +00:00
|
|
|
int size;
|
|
|
|
int nbElems;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2005-12-05 11:16:07 +00:00
|
|
|
* virHashComputeKey:
|
2005-11-30 13:36:58 +00:00
|
|
|
* Calculate the hash key
|
|
|
|
*/
|
|
|
|
static unsigned long
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashComputeKey(virHashTablePtr table, const char *name) {
|
2005-11-30 13:36:58 +00:00
|
|
|
unsigned long value = 0L;
|
|
|
|
char ch;
|
|
|
|
|
|
|
|
if (name != NULL) {
|
|
|
|
value += 30 * (*name);
|
|
|
|
while ((ch = *name++) != 0) {
|
|
|
|
value = value ^ ((value << 5) + (value >> 3) + (unsigned long)ch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (value % table->size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virHashCreate:
|
2005-11-30 13:36:58 +00:00
|
|
|
* @size: the size of the hash table
|
|
|
|
*
|
2005-12-05 11:16:07 +00:00
|
|
|
* Create a new virHashTablePtr.
|
2005-11-30 13:36:58 +00:00
|
|
|
*
|
|
|
|
* Returns the newly created object, or NULL if an error occured.
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashTablePtr
|
|
|
|
virHashCreate(int size) {
|
|
|
|
virHashTablePtr table;
|
2005-11-30 13:36:58 +00:00
|
|
|
|
|
|
|
if (size <= 0)
|
|
|
|
size = 256;
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
table = malloc(sizeof(virHashTable));
|
2005-11-30 13:36:58 +00:00
|
|
|
if (table) {
|
|
|
|
table->size = size;
|
|
|
|
table->nbElems = 0;
|
2005-12-05 11:16:07 +00:00
|
|
|
table->table = malloc(size * sizeof(virHashEntry));
|
2005-11-30 13:36:58 +00:00
|
|
|
if (table->table) {
|
2005-12-05 11:16:07 +00:00
|
|
|
memset(table->table, 0, size * sizeof(virHashEntry));
|
2005-11-30 13:36:58 +00:00
|
|
|
return(table);
|
|
|
|
}
|
|
|
|
free(table);
|
|
|
|
}
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virHashGrow:
|
2005-11-30 13:36:58 +00:00
|
|
|
* @table: the hash table
|
|
|
|
* @size: the new size of the hash table
|
|
|
|
*
|
|
|
|
* resize the hash table
|
|
|
|
*
|
|
|
|
* Returns 0 in case of success, -1 in case of failure
|
|
|
|
*/
|
|
|
|
static int
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashGrow(virHashTablePtr table, int size) {
|
2005-11-30 13:36:58 +00:00
|
|
|
unsigned long key;
|
|
|
|
int oldsize, i;
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashEntryPtr iter, next;
|
|
|
|
struct _virHashEntry *oldtable;
|
2005-11-30 13:36:58 +00:00
|
|
|
#ifdef DEBUG_GROW
|
|
|
|
unsigned long nbElem = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (table == NULL)
|
|
|
|
return(-1);
|
|
|
|
if (size < 8)
|
|
|
|
return(-1);
|
|
|
|
if (size > 8 * 2048)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
oldsize = table->size;
|
|
|
|
oldtable = table->table;
|
|
|
|
if (oldtable == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
table->table = malloc(size * sizeof(virHashEntry));
|
2005-11-30 13:36:58 +00:00
|
|
|
if (table->table == NULL) {
|
|
|
|
table->table = oldtable;
|
|
|
|
return(-1);
|
|
|
|
}
|
2005-12-05 11:16:07 +00:00
|
|
|
memset(table->table, 0, size * sizeof(virHashEntry));
|
2005-11-30 13:36:58 +00:00
|
|
|
table->size = size;
|
|
|
|
|
|
|
|
/* If the two loops are merged, there would be situations where
|
|
|
|
a new entry needs to allocated and data copied into it from
|
|
|
|
the main table. So instead, we run through the array twice, first
|
|
|
|
copying all the elements in the main array (where we can't get
|
|
|
|
conflicts) and then the rest, so we only free (and don't allocate)
|
|
|
|
*/
|
|
|
|
for (i = 0; i < oldsize; i++) {
|
|
|
|
if (oldtable[i].valid == 0)
|
|
|
|
continue;
|
2005-12-05 11:16:07 +00:00
|
|
|
key = virHashComputeKey(table, oldtable[i].name);
|
|
|
|
memcpy(&(table->table[key]), &(oldtable[i]), sizeof(virHashEntry));
|
2005-11-30 13:36:58 +00:00
|
|
|
table->table[key].next = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < oldsize; i++) {
|
|
|
|
iter = oldtable[i].next;
|
|
|
|
while (iter) {
|
|
|
|
next = iter->next;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* put back the entry in the new table
|
|
|
|
*/
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
key = virHashComputeKey(table, iter->name);
|
2005-11-30 13:36:58 +00:00
|
|
|
if (table->table[key].valid == 0) {
|
2005-12-05 11:16:07 +00:00
|
|
|
memcpy(&(table->table[key]), iter, sizeof(virHashEntry));
|
2005-11-30 13:36:58 +00:00
|
|
|
table->table[key].next = NULL;
|
|
|
|
free(iter);
|
|
|
|
} else {
|
|
|
|
iter->next = table->table[key].next;
|
|
|
|
table->table[key].next = iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_GROW
|
|
|
|
nbElem++;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
iter = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(oldtable);
|
|
|
|
|
|
|
|
#ifdef DEBUG_GROW
|
|
|
|
xmlGenericError(xmlGenericErrorContext,
|
2005-12-05 11:16:07 +00:00
|
|
|
"virHashGrow : from %d to %d, %d elems\n", oldsize, size, nbElem);
|
2005-11-30 13:36:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virHashFree:
|
2005-11-30 13:36:58 +00:00
|
|
|
* @table: the hash table
|
|
|
|
* @f: the deallocator function for items in the hash
|
|
|
|
*
|
|
|
|
* Free the hash @table and its contents. The userdata is
|
|
|
|
* deallocated with @f if provided.
|
|
|
|
*/
|
|
|
|
void
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashFree(virHashTablePtr table, virHashDeallocator f) {
|
2005-11-30 13:36:58 +00:00
|
|
|
int i;
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashEntryPtr iter;
|
|
|
|
virHashEntryPtr next;
|
2005-11-30 13:36:58 +00:00
|
|
|
int inside_table = 0;
|
|
|
|
int nbElems;
|
|
|
|
|
|
|
|
if (table == NULL)
|
|
|
|
return;
|
|
|
|
if (table->table) {
|
|
|
|
nbElems = table->nbElems;
|
|
|
|
for(i = 0; (i < table->size) && (nbElems > 0); i++) {
|
|
|
|
iter = &(table->table[i]);
|
|
|
|
if (iter->valid == 0)
|
|
|
|
continue;
|
|
|
|
inside_table = 1;
|
|
|
|
while (iter) {
|
|
|
|
next = iter->next;
|
|
|
|
if ((f != NULL) && (iter->payload != NULL))
|
|
|
|
f(iter->payload, iter->name);
|
|
|
|
if (iter->name)
|
|
|
|
free(iter->name);
|
|
|
|
iter->payload = NULL;
|
|
|
|
if (!inside_table)
|
|
|
|
free(iter);
|
|
|
|
nbElems--;
|
|
|
|
inside_table = 0;
|
|
|
|
iter = next;
|
|
|
|
}
|
|
|
|
inside_table = 0;
|
|
|
|
}
|
|
|
|
free(table->table);
|
|
|
|
}
|
|
|
|
free(table);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virHashAddEntry3:
|
2005-11-30 13:36:58 +00:00
|
|
|
* @table: the hash table
|
|
|
|
* @name: the name of the userdata
|
|
|
|
* @userdata: a pointer to the userdata
|
|
|
|
*
|
|
|
|
* Add the @userdata to the hash @table. This can later be retrieved
|
|
|
|
* by using @name. Duplicate entries generate errors.
|
|
|
|
*
|
|
|
|
* Returns 0 the addition succeeded and -1 in case of error.
|
|
|
|
*/
|
|
|
|
int
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashAddEntry(virHashTablePtr table, const char *name,
|
2005-11-30 13:36:58 +00:00
|
|
|
void *userdata) {
|
|
|
|
unsigned long key, len = 0;
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashEntryPtr entry;
|
|
|
|
virHashEntryPtr insert;
|
2005-11-30 13:36:58 +00:00
|
|
|
|
|
|
|
if ((table == NULL) || (name == NULL))
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for duplicate and insertion location.
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
key = virHashComputeKey(table, name);
|
2005-11-30 13:36:58 +00:00
|
|
|
if (table->table[key].valid == 0) {
|
|
|
|
insert = NULL;
|
|
|
|
} else {
|
|
|
|
for (insert = &(table->table[key]); insert->next != NULL;
|
|
|
|
insert = insert->next) {
|
|
|
|
if (!strcmp(insert->name, name))
|
|
|
|
return(-1);
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
if (!strcmp(insert->name, name))
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (insert == NULL) {
|
|
|
|
entry = &(table->table[key]);
|
|
|
|
} else {
|
2005-12-05 11:16:07 +00:00
|
|
|
entry = malloc(sizeof(virHashEntry));
|
2005-11-30 13:36:58 +00:00
|
|
|
if (entry == NULL)
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry->name = strdup(name);
|
|
|
|
entry->payload = userdata;
|
|
|
|
entry->next = NULL;
|
|
|
|
entry->valid = 1;
|
|
|
|
|
|
|
|
|
|
|
|
if (insert != NULL)
|
|
|
|
insert->next = entry;
|
|
|
|
|
|
|
|
table->nbElems++;
|
|
|
|
|
|
|
|
if (len > MAX_HASH_LEN)
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashGrow(table, MAX_HASH_LEN * table->size);
|
2005-11-30 13:36:58 +00:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virHashUpdateEntry:
|
2005-11-30 13:36:58 +00:00
|
|
|
* @table: the hash table
|
|
|
|
* @name: the name of the userdata
|
|
|
|
* @userdata: a pointer to the userdata
|
|
|
|
* @f: the deallocator function for replaced item (if any)
|
|
|
|
*
|
|
|
|
* Add the @userdata to the hash @table. This can later be retrieved
|
|
|
|
* by using @name. Existing entry for this tuple
|
|
|
|
* will be removed and freed with @f if found.
|
|
|
|
*
|
|
|
|
* Returns 0 the addition succeeded and -1 in case of error.
|
|
|
|
*/
|
|
|
|
int
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashUpdateEntry(virHashTablePtr table, const char *name,
|
|
|
|
void *userdata, virHashDeallocator f) {
|
2005-11-30 13:36:58 +00:00
|
|
|
unsigned long key;
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashEntryPtr entry;
|
|
|
|
virHashEntryPtr insert;
|
2005-11-30 13:36:58 +00:00
|
|
|
|
|
|
|
if ((table == NULL) || name == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for duplicate and insertion location.
|
|
|
|
*/
|
2005-12-05 11:16:07 +00:00
|
|
|
key = virHashComputeKey(table, name);
|
2005-11-30 13:36:58 +00:00
|
|
|
if (table->table[key].valid == 0) {
|
|
|
|
insert = NULL;
|
|
|
|
} else {
|
|
|
|
for (insert = &(table->table[key]); insert->next != NULL;
|
|
|
|
insert = insert->next) {
|
|
|
|
if (!strcmp(insert->name, name)) {
|
|
|
|
if (f)
|
|
|
|
f(insert->payload, insert->name);
|
|
|
|
insert->payload = userdata;
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!strcmp(insert->name, name)) {
|
|
|
|
if (f)
|
|
|
|
f(insert->payload, insert->name);
|
|
|
|
insert->payload = userdata;
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (insert == NULL) {
|
|
|
|
entry = &(table->table[key]);
|
|
|
|
} else {
|
2005-12-05 11:16:07 +00:00
|
|
|
entry = malloc(sizeof(virHashEntry));
|
2005-11-30 13:36:58 +00:00
|
|
|
if (entry == NULL)
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry->name = strdup(name);
|
|
|
|
entry->payload = userdata;
|
|
|
|
entry->next = NULL;
|
|
|
|
entry->valid = 1;
|
|
|
|
table->nbElems++;
|
|
|
|
|
|
|
|
|
|
|
|
if (insert != NULL) {
|
|
|
|
insert->next = entry;
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virHashLookup:
|
2005-11-30 13:36:58 +00:00
|
|
|
* @table: the hash table
|
|
|
|
* @name: the name of the userdata
|
|
|
|
*
|
|
|
|
* Find the userdata specified by the (@name, @name2, @name3) tuple.
|
|
|
|
*
|
|
|
|
* Returns the a pointer to the userdata
|
|
|
|
*/
|
|
|
|
void *
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashLookup(virHashTablePtr table, const char *name) {
|
2005-11-30 13:36:58 +00:00
|
|
|
unsigned long key;
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashEntryPtr entry;
|
2005-11-30 13:36:58 +00:00
|
|
|
|
|
|
|
if (table == NULL)
|
|
|
|
return(NULL);
|
|
|
|
if (name == NULL)
|
|
|
|
return(NULL);
|
2005-12-05 11:16:07 +00:00
|
|
|
key = virHashComputeKey(table, name);
|
2005-11-30 13:36:58 +00:00
|
|
|
if (table->table[key].valid == 0)
|
|
|
|
return(NULL);
|
|
|
|
for (entry = &(table->table[key]); entry != NULL; entry = entry->next) {
|
|
|
|
if (!strcmp(entry->name, name))
|
|
|
|
return(entry->payload);
|
|
|
|
}
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virHashSize:
|
2005-11-30 13:36:58 +00:00
|
|
|
* @table: the hash table
|
|
|
|
*
|
|
|
|
* Query the number of elements installed in the hash @table.
|
|
|
|
*
|
|
|
|
* Returns the number of elements in the hash table or
|
|
|
|
* -1 in case of error
|
|
|
|
*/
|
|
|
|
int
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashSize(virHashTablePtr table) {
|
2005-11-30 13:36:58 +00:00
|
|
|
if (table == NULL)
|
|
|
|
return(-1);
|
|
|
|
return(table->nbElems);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-12-05 11:16:07 +00:00
|
|
|
* virHashRemoveEntry:
|
2005-11-30 13:36:58 +00:00
|
|
|
* @table: the hash table
|
|
|
|
* @name: the name of the userdata
|
|
|
|
* @f: the deallocator function for removed item (if any)
|
|
|
|
*
|
|
|
|
* Find the userdata specified by the @name and remove
|
|
|
|
* it from the hash @table. Existing userdata for this tuple will be removed
|
|
|
|
* and freed with @f.
|
|
|
|
*
|
|
|
|
* Returns 0 if the removal succeeded and -1 in case of error or not found.
|
|
|
|
*/
|
|
|
|
int
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashRemoveEntry(virHashTablePtr table, const char *name,
|
|
|
|
virHashDeallocator f) {
|
2005-11-30 13:36:58 +00:00
|
|
|
unsigned long key;
|
2005-12-05 11:16:07 +00:00
|
|
|
virHashEntryPtr entry;
|
|
|
|
virHashEntryPtr prev = NULL;
|
2005-11-30 13:36:58 +00:00
|
|
|
|
|
|
|
if (table == NULL || name == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
key = virHashComputeKey(table, name);
|
2005-11-30 13:36:58 +00:00
|
|
|
if (table->table[key].valid == 0) {
|
|
|
|
return(-1);
|
|
|
|
} else {
|
|
|
|
for (entry = &(table->table[key]); entry != NULL; entry = entry->next) {
|
|
|
|
if (!strcmp(entry->name, name)) {
|
|
|
|
if ((f != NULL) && (entry->payload != NULL))
|
|
|
|
f(entry->payload, entry->name);
|
|
|
|
entry->payload = NULL;
|
|
|
|
if(entry->name)
|
|
|
|
free(entry->name);
|
|
|
|
if(prev) {
|
|
|
|
prev->next = entry->next;
|
|
|
|
free(entry);
|
|
|
|
} else {
|
|
|
|
if (entry->next == NULL) {
|
|
|
|
entry->valid = 0;
|
|
|
|
} else {
|
|
|
|
entry = entry->next;
|
2005-12-05 11:16:07 +00:00
|
|
|
memcpy(&(table->table[key]), entry, sizeof(virHashEntry));
|
2005-11-30 13:36:58 +00:00
|
|
|
free(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
table->nbElems--;
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
prev = entry;
|
|
|
|
}
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|