borg/darc/_hashindex.c

284 lines
7.8 KiB
C
Raw Normal View History

2010-12-16 19:23:22 +00:00
#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__ == __ORDER_BIG_ENDIAN__)
#error This code is not big endian safe yet
#endif
2010-12-16 19:23:22 +00:00
typedef struct {
char magic[8];
int32_t num_entries;
int32_t num_buckets;
int8_t key_size;
int8_t value_size;
} __attribute__((__packed__)) HashHeader;
2013-05-28 12:35:55 +00:00
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 limit;
} HashIndex;
2010-12-16 19:23:22 +00:00
#define MAGIC "DARCHASH"
#define EMPTY ((int32_t)-1)
#define DELETED ((int32_t)-2)
2011-08-14 18:06:30 +00:00
#define BUCKET_ADDR_READ(index, idx) (index->buckets + (idx * index->bucket_size))
#define BUCKET_ADDR_WRITE(index, idx) (index->buckets + (idx * index->bucket_size))
2010-12-16 19:23:22 +00:00
2011-08-14 18:06:30 +00:00
#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)
2010-12-16 19:23:22 +00:00
2011-08-14 18:06:30 +00:00
#define BUCKET_MATCHES_KEY(index, idx, key) (memcmp(key, BUCKET_ADDR_READ(index, idx), index->key_size) == 0)
2010-12-16 19:23:22 +00:00
2011-08-14 18:06:30 +00:00
#define BUCKET_MARK_DELETED(index, idx) (*((int32_t *)(BUCKET_ADDR_WRITE(index, idx) + index->key_size)) = DELETED)
2010-12-16 19:23:22 +00:00
2013-05-28 12:35:55 +00:00
static HashIndex *hashindex_open(const char *path);
static void hashindex_close(HashIndex *index);
static void hashindex_clear(HashIndex *index);
static void 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 void hashindex_set(HashIndex *index, const void *key, const void *value);
static void hashindex_delete(HashIndex *index, const void *key);
static void *hashindex_next_key(HashIndex *index, const void *key);
2010-12-16 19:23:22 +00:00
/* Private API */
static int
hashindex_index(HashIndex *index, const void *key)
{
return *((uint32_t *)key) % index->num_buckets;
}
static int
hashindex_lookup(HashIndex *index, const void *key)
{
int didx = -1;
int start = hashindex_index(index, key);
int idx = start;
2010-12-16 19:23:22 +00:00
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)) {
2010-12-16 19:23:22 +00:00
if (didx != -1) {
2011-08-14 18:06:30 +00:00
memcpy(BUCKET_ADDR_WRITE(index, didx), BUCKET_ADDR_READ(index, idx), index->bucket_size);
2010-12-16 19:23:22 +00:00
BUCKET_MARK_DELETED(index, idx);
idx = didx;
}
return idx;
}
idx = (idx + 1) % index->num_buckets;
if(idx == start) {
return -1;
}
2010-12-16 19:23:22 +00:00
}
}
static void
hashindex_resize(HashIndex *index, int capacity)
{
char *new_path = malloc(strlen(index->path) + 5);
strcpy(new_path, index->path);
strcat(new_path, ".tmp");
HashIndex *new = hashindex_create(new_path, capacity, index->key_size, index->value_size);
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->limit = new->limit;
index->buckets = new->buckets;
unlink(index->path);
rename(new_path, index->path);
free(new_path);
free(new->path);
free(new);
}
/* Public API */
2013-05-28 12:35:55 +00:00
static HashIndex *
2010-12-16 19:23:22 +00:00
hashindex_open(const char *path)
{
int fd = open(path, O_RDWR);
if(fd < 0) {
2010-12-17 21:14:36 +00:00
fprintf(stderr, "Failed to open %s\n", path);
2010-12-16 19:23:22 +00:00
return NULL;
}
off_t length = lseek(fd, 0, SEEK_END);
void *addr = mmap(0, length, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
close(fd);
if(addr == MAP_FAILED) {
2010-12-17 21:14:36 +00:00
fprintf(stderr, "Failed to mmap %s", path);
2010-12-16 19:23:22 +00:00
}
HashHeader *header = (HashHeader *)addr;
HashIndex *index = malloc(sizeof(HashIndex));
index->path = malloc(strlen(path) + 1);
strcpy(index->path, path);
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->limit = (int)(index->num_buckets * .75);
return index;
}
2013-05-28 12:35:55 +00:00
static HashIndex *
2010-12-16 19:23:22 +00:00
hashindex_create(const char *path, int capacity, int key_size, int value_size)
{
FILE *fd;
int i;
if(!(fd = fopen(path, "w"))) {
2010-12-17 21:14:36 +00:00
fprintf(stderr, "Failed to create %s\n", path);
2010-12-16 19:23:22 +00:00
return NULL;
}
HashHeader header;
memcpy(header.magic, MAGIC, sizeof(MAGIC) - 1);
header.num_entries = 0;
header.num_buckets = capacity;
header.key_size = key_size;
header.value_size = value_size;
int bucket_size = key_size + value_size;
char *bucket = calloc(bucket_size, 1);
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;
}
free(bucket);
fclose(fd);
return hashindex_open(path);
error:
fclose(fd);
free(bucket);
return NULL;
}
2013-05-28 12:35:55 +00:00
static void
hashindex_clear(HashIndex *index)
{
int i;
for(i = 0; i < index->num_buckets; i++) {
BUCKET_MARK_DELETED(index, i);
}
index->num_entries = 0;
hashindex_resize(index, 16);
}
2013-05-28 12:35:55 +00:00
static void
2010-12-16 19:23:22 +00:00
hashindex_flush(HashIndex *index)
{
*((int32_t *)(index->map_addr + 8)) = index->num_entries;
*((int32_t *)(index->map_addr + 12)) = index->num_buckets;
msync(index->map_addr, index->map_length, MS_SYNC);
}
2013-05-28 12:35:55 +00:00
static void
2010-12-16 19:23:22 +00:00
hashindex_close(HashIndex *index)
{
hashindex_flush(index);
munmap(index->map_addr, index->map_length);
free(index->path);
free(index);
}
2013-05-28 12:35:55 +00:00
static const void *
2010-12-16 19:23:22 +00:00
hashindex_get(HashIndex *index, const void *key)
{
int idx = hashindex_lookup(index, key);
if(idx < 0) {
return NULL;
}
2011-08-14 18:06:30 +00:00
return BUCKET_ADDR_READ(index, idx) + index->key_size;
2010-12-16 19:23:22 +00:00
}
2013-05-28 12:35:55 +00:00
static void
2010-12-16 19:23:22 +00:00
hashindex_set(HashIndex *index, const void *key, const void *value)
{
int idx = hashindex_lookup(index, key);
2011-08-14 18:06:30 +00:00
uint8_t *ptr;
2010-12-16 19:23:22 +00:00
if(idx < 0)
{
if(index->num_entries > index->limit) {
hashindex_resize(index, index->num_buckets * 2);
}
idx = hashindex_index(index, key);
while(!BUCKET_IS_EMPTY(index, idx) && !BUCKET_IS_DELETED(index, idx)) {
idx = (idx + 1) % index->num_buckets;
}
2011-08-14 18:06:30 +00:00
ptr = BUCKET_ADDR_WRITE(index, idx);
memcpy(ptr, key, index->key_size);
memcpy(ptr + index->key_size, value, index->value_size);
2010-12-16 19:23:22 +00:00
index->num_entries += 1;
}
else
{
2011-08-14 18:06:30 +00:00
memcpy(BUCKET_ADDR_WRITE(index, idx) + index->key_size, value, index->value_size);
2010-12-16 19:23:22 +00:00
}
}
2013-05-28 12:35:55 +00:00
static void
2010-12-16 19:23:22 +00:00
hashindex_delete(HashIndex *index, const void *key)
{
int idx = hashindex_lookup(index, key);
if (idx < 0) {
return;
}
BUCKET_MARK_DELETED(index, idx);
index->num_entries -= 1;
}
2013-05-28 12:35:55 +00:00
static void *
2010-12-16 19:23:22 +00:00
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;
}
2011-08-14 18:06:30 +00:00
return BUCKET_ADDR_READ(index, idx);
2010-12-16 19:23:22 +00:00
}
2013-05-28 12:35:55 +00:00
static int
2010-12-16 19:23:22 +00:00
hashindex_get_size(HashIndex *index)
{
return index->num_entries;
}