#include "usg_common.h"
|
#include "hashtable.h"
|
#include "mm.h"
|
|
|
typedef struct tailq_entry_t
|
{
|
void *value;
|
int key;
|
/*
|
* This holds the pointers to the next and previous joint in
|
* the tail queue.
|
*/
|
TAILQ_ENTRY(tailq_entry_t) joint;
|
} tailq_entry_t;
|
|
|
typedef TAILQ_HEAD(tailq_header_t, tailq_entry_t) tailq_header_t;
|
|
static size_t hashcode(int key);
|
|
void hashtable_init(hashtable_t *hashtable )
|
{
|
memset(hashtable, 0, sizeof(hashtable_t));
|
}
|
|
|
void *hashtable_get(hashtable_t *hashtable, int key)
|
{
|
size_t code = hashcode(key);
|
tailq_entry_t *item;
|
tailq_header_t *my_tailq_head = hashtable->array[code] ;
|
if ( my_tailq_head == NULL)
|
{
|
return NULL;
|
}
|
else
|
{
|
|
TAILQ_FOREACH(item, my_tailq_head, joint)
|
{
|
if (key == item->key)
|
return item->value;
|
}
|
}
|
return NULL;
|
|
}
|
|
void* hashtable_put(hashtable_t *hashtable, int key, void *value)
|
{
|
size_t code = hashcode(key);
|
void *oldvalue;
|
tailq_entry_t *item;
|
tailq_header_t *my_tailq_head = hashtable->array[code] ;
|
if ( my_tailq_head == NULL)
|
{
|
my_tailq_head = (tailq_header_t*) mm_malloc(sizeof(tailq_header_t ));
|
TAILQ_INIT(my_tailq_head);
|
hashtable->array[code] = my_tailq_head;
|
goto putnew;
|
}
|
|
TAILQ_FOREACH(item, my_tailq_head, joint)
|
{
|
if (key ==item->key)
|
{
|
oldvalue = item -> value;
|
item->key= key;
|
item -> value = value;
|
return oldvalue;
|
}
|
}
|
putnew:
|
item = (tailq_entry_t *) mm_malloc(sizeof(tailq_entry_t));
|
item->key = key;
|
item -> value = value;
|
TAILQ_INSERT_TAIL(my_tailq_head, item, joint);
|
return NULL;
|
}
|
|
void *hashtable_remove(hashtable_t *hashtable, int key)
|
{
|
size_t code = hashcode(key);
|
tailq_entry_t *item;
|
void *oldvalue;
|
tailq_header_t *my_tailq_head = hashtable->array[code] ;
|
if ( my_tailq_head == NULL)
|
{
|
return NULL;
|
}
|
else
|
{
|
for (item = TAILQ_FIRST(my_tailq_head); item != NULL; item = TAILQ_NEXT(item, joint))
|
{
|
if (key == item->key)
|
{
|
oldvalue = item->value;
|
/* Remove the item from the tail queue. */
|
TAILQ_REMOVE(my_tailq_head, item, joint);
|
|
/* mm_free the item as we don't need it anymore. */
|
mm_free(item);
|
|
return oldvalue;
|
}
|
}
|
}
|
return NULL;
|
|
}
|
|
void hashtable_removeall(hashtable_t *hashtable)
|
{
|
tailq_entry_t *item;
|
for (int i = 0; i < MAPSIZE; i++)
|
{
|
tailq_header_t *my_tailq_head = hashtable->array[i] ;
|
|
if (my_tailq_head == NULL )
|
continue;
|
|
while ((item = TAILQ_FIRST(my_tailq_head)) )
|
{
|
TAILQ_REMOVE(my_tailq_head, item, joint);
|
mm_free(item);
|
}
|
mm_free(my_tailq_head);
|
hashtable->array[i] = NULL;
|
}
|
}
|
|
/**
|
* for debug
|
*/
|
void hashtable_printall(hashtable_t *hashtable)
|
{
|
tailq_entry_t *item;
|
for (int i = 0; i < MAPSIZE; i++)
|
{
|
tailq_header_t *my_tailq_head = hashtable->array[i] ;
|
|
if (my_tailq_head == NULL )
|
continue;
|
|
printf("code=%d\n", i);
|
TAILQ_FOREACH(item, my_tailq_head, joint)
|
{
|
printf("%d:%s\n", item->key, (char *)item->value);
|
}
|
printf("\n");
|
}
|
}
|
|
static size_t hashcode(int key)
|
{
|
|
return key % MAPSIZE;
|
/*printf("hashfun = %ld\n", code);*/
|
}
|