2017-12-12 13:06:01 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include "hashtable.h"
|
2017-12-19 21:00:02 +01:00
|
|
|
#include "defines.h"
|
2017-12-12 13:06:01 +01:00
|
|
|
|
|
|
|
static void*
|
|
|
|
ec_malloc(unsigned int size)
|
|
|
|
{
|
|
|
|
void *ptr = malloc(size);
|
|
|
|
if (ptr == NULL) {
|
|
|
|
fprintf(stderr, "[!!] Failed to allocate hashtable\n");
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Hashtable*
|
|
|
|
ht_create(unsigned int size)
|
|
|
|
{
|
|
|
|
Hashtable *table;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (size < 1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
table = ec_malloc(sizeof(Hashtable));
|
|
|
|
table->size = size;
|
|
|
|
table->entries = ec_malloc(sizeof(Entry) * size);
|
|
|
|
|
|
|
|
for (i = 0; i < size; ++i) {
|
|
|
|
table->entries[i] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return table;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int
|
2017-12-13 23:20:54 +01:00
|
|
|
hash(Hashtable *table, const char *key)
|
2017-12-12 13:06:01 +01:00
|
|
|
{
|
|
|
|
unsigned long int hashval = 0;
|
2017-12-19 21:00:02 +01:00
|
|
|
unsigned int i = 0;
|
2017-12-12 13:06:01 +01:00
|
|
|
|
|
|
|
while (hashval < ULONG_MAX && i < strlen(key)) {
|
|
|
|
hashval = hashval << 8;
|
|
|
|
hashval += key[i++];
|
|
|
|
}
|
|
|
|
|
|
|
|
return hashval % table->size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Entry*
|
2017-12-13 23:20:54 +01:00
|
|
|
entry_create(const char *key, void *value)
|
2017-12-12 13:06:01 +01:00
|
|
|
{
|
|
|
|
Entry *entry;
|
|
|
|
|
|
|
|
entry = ec_malloc(sizeof(Entry));
|
2017-12-19 21:00:02 +01:00
|
|
|
entry->key = strdup(key);
|
2017-12-12 13:06:01 +01:00
|
|
|
entry->value = value;
|
|
|
|
entry->next = NULL;
|
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-12-13 23:20:54 +01:00
|
|
|
ht_set(Hashtable *table, const char *key, void *val)
|
2017-12-12 13:06:01 +01:00
|
|
|
{
|
|
|
|
int hashkey = 0;
|
2017-12-19 19:42:05 +01:00
|
|
|
Entry *newEntry = NULL;
|
|
|
|
Entry *next = NULL;
|
|
|
|
Entry *last = NULL;
|
2017-12-12 13:06:01 +01:00
|
|
|
|
|
|
|
hashkey = hash(table, key);
|
|
|
|
|
|
|
|
next = table->entries[hashkey];
|
|
|
|
|
|
|
|
/* Find a position */
|
|
|
|
while (next != NULL
|
|
|
|
&& next->key != NULL
|
|
|
|
&& strcmp(key, next->key) > 0)
|
|
|
|
{
|
|
|
|
last = next;
|
|
|
|
next = next->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (next && next->key && strcmp(key, next->key) == 0) {
|
|
|
|
/* Collision */
|
|
|
|
free(next->value);
|
|
|
|
next->value = val;
|
|
|
|
} else {
|
|
|
|
/* New entry */
|
|
|
|
newEntry = entry_create(key, val);
|
|
|
|
|
2017-12-19 19:42:05 +01:00
|
|
|
if (next == table->entries[hashkey] && last == NULL) {
|
2017-12-12 13:06:01 +01:00
|
|
|
table->entries[hashkey] = newEntry;
|
|
|
|
newEntry->next = next;
|
|
|
|
} else if(next == NULL) {
|
|
|
|
last->next = newEntry;
|
|
|
|
} else {
|
|
|
|
newEntry->next = next;
|
|
|
|
last->next = newEntry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
2017-12-13 23:20:54 +01:00
|
|
|
ht_get(Hashtable *table, const char *key)
|
2017-12-12 13:06:01 +01:00
|
|
|
{
|
|
|
|
int hashkey = 0;
|
|
|
|
Entry *entry;
|
|
|
|
|
|
|
|
hashkey = hash(table, key);
|
|
|
|
|
|
|
|
entry = table->entries[hashkey];
|
|
|
|
|
|
|
|
while (entry && entry->key && strcmp(entry->key, key) > 0) {
|
|
|
|
entry = entry->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!entry || !entry->key || strcmp(entry->key, key) != 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return entry->value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ht_destroy(Hashtable *table)
|
2017-12-13 14:26:30 +01:00
|
|
|
{
|
|
|
|
ht_destroy_custom(table, free);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ht_destroy_custom(Hashtable *table, void (*destroy_value)(void *value))
|
2017-12-12 13:06:01 +01:00
|
|
|
{
|
|
|
|
Entry *entry, *next;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (table == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < table->size; ++i) {
|
|
|
|
entry = table->entries[i];
|
|
|
|
if (entry == NULL)
|
|
|
|
continue;
|
|
|
|
while (entry) {
|
|
|
|
next = entry->next;
|
2017-12-13 14:26:30 +01:00
|
|
|
destroy_value(entry->value);
|
2017-12-12 13:06:01 +01:00
|
|
|
entry->value = NULL;
|
2017-12-13 23:20:54 +01:00
|
|
|
free(entry->key);
|
2017-12-12 13:06:01 +01:00
|
|
|
free(entry);
|
|
|
|
entry = next;
|
|
|
|
}
|
|
|
|
}
|
2017-12-13 14:26:30 +01:00
|
|
|
free(table->entries);
|
2017-12-12 13:06:01 +01:00
|
|
|
free(table);
|
|
|
|
}
|