ref: 3ecd4002c0b2242d71d0af98e773c1ba5b9f97db
dir: /dat.c/
#include <u.h> #include <libc.h> #include <thread.h> #include <draw.h> #include "dat.h" #include "fncs.h" uvlong string2hash(char *s) { int i; uvlong hash; hash = 7; for(;*s;s++) hash = hash*31 + *s; return hash; } Hmap* allocmap(int size) { Hmap *h = emalloc(sizeof(Hmap)); h->size = size; h->nodes = emalloc(sizeof(Hnode)*size); return h; } void mapinsert(Hmap *h, char *key, void *val) { Hnode *n, *end; wlock(h); n = h->nodes+(string2hash(key)%h->size); assert(n != nil); do { if(n->key == nil) goto new; else if(strcmp(key, n->key) == 0) goto found; end = n; n = n->next; } while(n != nil); n = end; /* create new node */ n->next = emalloc(sizeof(Hnode)); n = n->next; new: n->key = strdup(key); found: n->val = val; wunlock(h); } void* mapget(Hmap *h, char *key) { Hnode *n; rlock(h); n = h->nodes+(string2hash(key)%h->size); for(;n!=nil;n=n->next){ if(n->key == nil) continue; if(strcmp(key, n->key) == 0){ runlock(h); return n->val; } } runlock(h); return nil; } int mapdel(Hmap *h, char *key) { Hnode *n; wlock(h); n = h->nodes+(string2hash(key)%h->size); for(;n!=nil;n=n->next){ if(n->key == nil) continue; if(strcmp(key, n->key) == 0){ free(n->key); n->key = nil; wunlock(h); return 1; } } wunlock(h); return 0; } int mapdump(Hmap *h, void **buf, int size) { Hnode *n; int i, c; rlock(h); for(i=c=0;i<h->size;i++) for(n=h->nodes+i;n!=nil && n->key!=nil;n=n->next){ if(c >= size) goto done; buf[c++] = n->val; } done: runlock(h); return c; } int mapdumpkey(Hmap *h, char **buf, int size) { Hnode *n; int i, c; rlock(h); for(i=c=0;i<h->size;i++) for(n=h->nodes+i;n!=nil && n->key!=nil;n=n->next){ if(c >= size) goto done; buf[c++] = n->key; } done: runlock(h); return c; } void mapclear(Hmap *h) { Hnode *n; int i; wlock(h); for(i=0;i<h->size;i++) for(n=h->nodes+i;n!=nil;n=n->next) if(n->key != nil){ free(n->key); n->key=nil; } wunlock(h); } void freemap(Hmap *h) { mapclear(h); free(h->nodes); free(h); }