aboutsummaryrefslogtreecommitdiff
path: root/hash.inc.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-03 00:00:05 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-03 00:00:05 +0100
commit7c7dd1a8b18b101e093df5eff6247acd94f25422 (patch)
treec13ad29493067cc4244e7bd6b97c7695bacf1389 /hash.inc.h
parentMade code.scm do same stuff as main. (diff)
downloadcalp-7c7dd1a8b18b101e093df5eff6247acd94f25422.tar.gz
calp-7c7dd1a8b18b101e093df5eff6247acd94f25422.tar.xz
Rework makefile, made .inc into .inc.h.
Diffstat (limited to 'hash.inc.h')
-rw-r--r--hash.inc.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/hash.inc.h b/hash.inc.h
new file mode 100644
index 00000000..0b07629f
--- /dev/null
+++ b/hash.inc.h
@@ -0,0 +1,61 @@
+#ifndef TYPE
+#error "Set TYPE to something before including this header"
+#else
+
+#include "err.h"
+
+int HASH_PUT(TYPE) ( TABLE(TYPE)* table, TYPE* value) {
+ // TODO genicify the hash function
+ unsigned long h = hash(value->key.mem) % table->size;
+ TYPE* mem = table->values[h];
+
+ /* TODO conflict resolution */
+ if (mem != NULL) ERR("Hash collision");
+ mem = value;
+
+ ++table->item_count;
+ return 0;
+}
+
+int HASH_INIT(TYPE) ( TABLE(TYPE)* table, int init_size ) {
+ /*
+ * TODO parts of table might not get properly initialized to 0
+ */
+ table->values = calloc(sizeof(table->values), init_size);
+ table->size = init_size;
+ table->item_count = 0;
+ return 0;
+}
+
+TYPE* HASH_GET(TYPE) ( TABLE(TYPE)* table, char* key ) {
+ unsigned long h = hash(key) % table->size;
+ TYPE* mem = table->values[h];
+ if (mem == NULL) {
+ fprintf(stderr, "Trying to access %s\n", key);
+ ERR("Nothing in field");
+ return 0;
+ } else if (strcmp(mem->key.mem, key) == 0) {
+ return mem;
+ } else {
+ /* TODO fix retrival on invalid key */
+ ERR("Other error");
+ return 0;
+ }
+}
+
+int HASH_FREE(TYPE) ( TABLE(TYPE)* table ) {
+ /*
+ * TODO an early return is possible by checking if all items have
+ * been found. table->item_count
+ */
+ for (int i = 0; i < table->size; i++) {
+ TYPE* mem = table->values[i];
+ if (mem == NULL) continue;
+
+ free(mem);
+ }
+ free(table->values);
+ return 0;
+}
+
+#endif /* TYPE */