| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 | #include <assert.h>#include <stdio.h>#include <stdlib.h>#include <stdint.h>#include <string.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>#include <sys/mman.h>#if defined(__BYTE_ORDER)&&(__BYTE_ORDER == __BIG_ENDIAN)#error This code is not big endian safe yet#endiftypedef struct {    char magic[8];    int32_t num_entries;    int32_t num_buckets;    int8_t  key_size;    int8_t  value_size;} __attribute__((__packed__)) HashHeader;typedef struct {    char *path;    void *map_addr;    off_t map_length;    void *buckets;    int num_entries;    int num_buckets;    int key_size;    int value_size;    int bucket_size;    int lower_limit;    int upper_limit;} HashIndex;#define MAGIC "ATTICIDX"#define EMPTY ((int32_t)-1)#define DELETED ((int32_t)-2)#define MAX_BUCKET_SIZE 512#define BUCKET_LOWER_LIMIT .25#define BUCKET_UPPER_LIMIT .90#define MIN_BUCKETS 1024#define MAX(x, y) ((x) > (y) ? (x): (y))#define BUCKET_ADDR_READ(index, idx) (index->buckets + (idx * index->bucket_size))#define BUCKET_ADDR_WRITE(index, idx) (index->buckets + (idx * index->bucket_size))#define BUCKET_IS_DELETED(index, idx) (*((int32_t *)(BUCKET_ADDR_READ(index, idx) + index->key_size)) == DELETED)#define BUCKET_IS_EMPTY(index, idx) (*((int32_t *)(BUCKET_ADDR_READ(index, idx) + index->key_size)) == EMPTY)#define BUCKET_MATCHES_KEY(index, idx, key) (memcmp(key, BUCKET_ADDR_READ(index, idx), index->key_size) == 0)#define BUCKET_MARK_DELETED(index, idx) (*((int32_t *)(BUCKET_ADDR_WRITE(index, idx) + index->key_size)) = DELETED)#define EPRINTF(msg, ...) EPRINTF_PATH(index->path, msg, ##__VA_ARGS__)#define EPRINTF_PATH(path, msg, ...) fprintf(stderr, "hashindex: %s: " msg "\n", path, ##__VA_ARGS__)static HashIndex *hashindex_open(const char *path);static int hashindex_close(HashIndex *index);static int hashindex_clear(HashIndex *index);static int hashindex_flush(HashIndex *index);static HashIndex *hashindex_create(const char *path, int capacity, int key_size, int value_size);static const void *hashindex_get(HashIndex *index, const void *key);static int hashindex_set(HashIndex *index, const void *key, const void *value);static int hashindex_delete(HashIndex *index, const void *key);static void *hashindex_next_key(HashIndex *index, const void *key);/* Private API */static inthashindex_index(HashIndex *index, const void *key){    return *((uint32_t *)key) % index->num_buckets;}static inthashindex_lookup(HashIndex *index, const void *key){    int didx = -1;    int start = hashindex_index(index, key);    int idx = start;    for(;;) {        if(BUCKET_IS_EMPTY(index, idx))        {            return -1;        }        if(BUCKET_IS_DELETED(index, idx)) {            if(didx == -1) {                didx = idx;            }        }        else if(BUCKET_MATCHES_KEY(index, idx, key)) {            if (didx != -1) {                memcpy(BUCKET_ADDR_WRITE(index, didx), BUCKET_ADDR_READ(index, idx), index->bucket_size);                BUCKET_MARK_DELETED(index, idx);                idx = didx;            }            return idx;        }        idx = (idx + 1) % index->num_buckets;        if(idx == start) {            return -1;        }    }}static inthashindex_resize(HashIndex *index, int capacity){    char *new_path = malloc(strlen(index->path) + 5);    strcpy(new_path, index->path);    strcat(new_path, ".tmp");    HashIndex *new;    if(!(new = hashindex_create(new_path, capacity, index->key_size, index->value_size))) {        free(new_path);        return 0;    }    void *key = NULL;    while((key = hashindex_next_key(index, key))) {        hashindex_set(new, key, hashindex_get(index, key));    }    munmap(index->map_addr, index->map_length);    index->map_addr = new->map_addr;    index->map_length = new->map_length;    index->num_buckets = new->num_buckets;    index->lower_limit = new->lower_limit;    index->upper_limit = new->upper_limit;    index->buckets = new->buckets;    unlink(index->path);    rename(new_path, index->path);    free(new_path);    free(new->path);    free(new);    return 1;}/* Public API */static HashIndex *hashindex_open(const char *path){    void *addr;    int fd;    off_t length;    HashHeader *header;    HashIndex *index;    if((fd = open(path, O_RDWR)) < 0) {        EPRINTF_PATH(path, "open failed");        fprintf(stderr, "Failed to open %s\n", path);        return NULL;    }    if((length = lseek(fd, 0, SEEK_END)) < 0) {        EPRINTF_PATH(path, "lseek failed");        if(close(fd) < 0) {            EPRINTF_PATH(path, "close failed");        }        return NULL;    }    addr = mmap(0, length, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);    if(close(fd) < 0) {        EPRINTF_PATH(path, "close failed");        return NULL;    }    if(addr == MAP_FAILED) {        EPRINTF_PATH(path, "mmap failed");        return NULL;    }    header = (HashHeader *)addr;    if(memcmp(header->magic, MAGIC, 8)) {        EPRINTF_PATH(path, "Unknown file header");        return NULL;    }    if(length != sizeof(HashHeader) + header->num_buckets * (header->key_size + header->value_size)) {        EPRINTF_PATH(path, "Incorrect file length");        return NULL;    }    if(!(index = malloc(sizeof(HashIndex)))) {        EPRINTF_PATH(path, "malloc failed");        return NULL;    }    index->map_addr = addr;    index->map_length = length;    index->num_entries = header->num_entries;    index->num_buckets = header->num_buckets;    index->key_size = header->key_size;    index->value_size = header->value_size;    index->bucket_size = index->key_size + index->value_size;    index->buckets = (addr + sizeof(HashHeader));    index->lower_limit = index->num_buckets > MIN_BUCKETS ? ((int)(index->num_buckets * BUCKET_LOWER_LIMIT)) : 0;    index->upper_limit = (int)(index->num_buckets * BUCKET_UPPER_LIMIT);    if(!(index->path = strdup(path))) {        EPRINTF_PATH(path, "strdup failed");        free(index);        return NULL;    }    return index;}static HashIndex *hashindex_create(const char *path, int capacity, int key_size, int value_size){    FILE *fd;    char bucket[MAX_BUCKET_SIZE] = {};    int i, bucket_size;    HashHeader header = {        .magic = MAGIC, .num_entries = 0, .key_size = key_size, .value_size = value_size    };    capacity = MAX(MIN_BUCKETS, capacity);    header.num_buckets = capacity;    if(!(fd = fopen(path, "w"))) {        EPRINTF_PATH(path, "fopen failed");        return NULL;    }    bucket_size = key_size + value_size;    if(fwrite(&header, 1, sizeof(header), fd) != sizeof(header)) {        goto error;    }    *((int32_t *)(bucket + key_size)) = EMPTY;    for(i = 0; i < capacity; i++) {        if(fwrite(bucket, 1, bucket_size, fd) != bucket_size) {            goto error;        }    }    if(fclose(fd) < 0) {        EPRINTF_PATH(path, "fclose failed");        return NULL;    }    return hashindex_open(path);error:    EPRINTF_PATH(path, "fwrite failed");    if(fclose(fd) < 0) {        EPRINTF_PATH(path, "fclose failed");    }    return NULL;}static inthashindex_clear(HashIndex *index){    int i;    for(i = 0; i < index->num_buckets; i++) {        BUCKET_MARK_DELETED(index, i);    }    index->num_entries = 0;    return hashindex_resize(index, MIN_BUCKETS);}static inthashindex_flush(HashIndex *index){    *((int32_t *)(index->map_addr + 8)) = index->num_entries;    *((int32_t *)(index->map_addr + 12)) = index->num_buckets;    if(msync(index->map_addr, index->map_length, MS_SYNC) < 0) {        EPRINTF("msync failed");        return 0;    }    return 1;}static inthashindex_close(HashIndex *index){    int rv = 1;    if(hashindex_flush(index) < 0) {        rv = 0;    }    if(munmap(index->map_addr, index->map_length) < 0) {        EPRINTF("munmap failed");        rv = 0;    }    free(index->path);    free(index);    return rv;}static const void *hashindex_get(HashIndex *index, const void *key){    int idx = hashindex_lookup(index, key);    if(idx < 0) {        return NULL;    }    return BUCKET_ADDR_READ(index, idx) + index->key_size;}static inthashindex_set(HashIndex *index, const void *key, const void *value){    int idx = hashindex_lookup(index, key);    uint8_t *ptr;    if(idx < 0)    {        if(index->num_entries > index->upper_limit) {            if(!hashindex_resize(index, index->num_buckets * 2)) {                return 0;            }        }        idx = hashindex_index(index, key);        while(!BUCKET_IS_EMPTY(index, idx) && !BUCKET_IS_DELETED(index, idx)) {            idx = (idx + 1) % index->num_buckets;        }        ptr = BUCKET_ADDR_WRITE(index, idx);        memcpy(ptr, key, index->key_size);        memcpy(ptr + index->key_size, value, index->value_size);        index->num_entries += 1;    }    else    {        memcpy(BUCKET_ADDR_WRITE(index, idx) + index->key_size, value, index->value_size);    }    return 1;}static inthashindex_delete(HashIndex *index, const void *key){    int idx = hashindex_lookup(index, key);    if (idx < 0) {        return 1;    }    BUCKET_MARK_DELETED(index, idx);    index->num_entries -= 1;    if(index->num_entries < index->lower_limit) {        if(!hashindex_resize(index, index->num_buckets * 2)) {            return 0;        }    }    return 1;}static void *hashindex_next_key(HashIndex *index, const void *key){    int idx = 0;    if(key) {        idx = 1 + (key - index->buckets) / index->bucket_size;    }    if (idx == index->num_buckets) {        return NULL;    }    while(BUCKET_IS_EMPTY(index, idx) || BUCKET_IS_DELETED(index, idx)) {        idx ++;        if (idx == index->num_buckets) {            return NULL;        }    }    return BUCKET_ADDR_READ(index, idx);}static inthashindex_get_size(HashIndex *index){    return index->num_entries;}
 |