2016-05-03 16:15:08 +00:00
|
|
|
/*
|
2017-01-23 06:19:43 +00:00
|
|
|
4coder_table.h - Preversioning
|
|
|
|
no warranty implied; use at your own risk
|
|
|
|
|
|
|
|
This software is in the public domain. Where that dedication is not
|
|
|
|
recognized, you are granted a perpetual, irrevocable license to copy,
|
|
|
|
distribute, and modify this file as you see fit.
|
|
|
|
*/
|
2016-05-03 16:15:08 +00:00
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
#if !defined(FCODER_TABLE_H)
|
|
|
|
#define FCODER_TABLE_H
|
|
|
|
|
2016-05-03 16:15:08 +00:00
|
|
|
#define TableHashEmpty 0
|
|
|
|
#define TableHashDeleted 1
|
|
|
|
#define TableHashMin 0x10000000
|
|
|
|
|
2016-07-10 05:49:11 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
typedef u32 Hash_Function(void *item, void *arg);
|
|
|
|
typedef i32 Compare_Function(void *key, void *item, void *arg);
|
2016-05-03 16:15:08 +00:00
|
|
|
|
|
|
|
struct Table{
|
2019-06-01 23:58:28 +00:00
|
|
|
u32 *hash_array;
|
2016-07-10 05:49:11 +00:00
|
|
|
char *data_array;
|
2019-06-01 23:58:28 +00:00
|
|
|
i32 count, max;
|
|
|
|
i32 item_size;
|
2016-05-03 16:15:08 +00:00
|
|
|
};
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static i32
|
|
|
|
table_required_mem_size(i32 table_size, i32 item_size){
|
|
|
|
i32 hash_size = ((table_size*sizeof(u32)) + 7) & ~7;
|
|
|
|
i32 mem_size = hash_size + table_size*item_size;
|
2016-05-03 16:15:08 +00:00
|
|
|
return(mem_size);
|
|
|
|
}
|
|
|
|
|
2016-07-10 05:49:11 +00:00
|
|
|
static void
|
2019-06-01 23:58:28 +00:00
|
|
|
table_init_memory(Table *table, void *memory, i32 table_size, i32 item_size){
|
|
|
|
i32 hash_size = table_size * sizeof(u32);
|
2016-05-03 16:15:08 +00:00
|
|
|
hash_size = (hash_size + 7) & ~7;
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
table->hash_array = (u32*)memory;
|
2016-07-10 05:49:11 +00:00
|
|
|
table->data_array = (char*)(table->hash_array) + hash_size;
|
2016-05-03 16:15:08 +00:00
|
|
|
|
|
|
|
table->count = 0;
|
|
|
|
table->max = table_size;
|
|
|
|
table->item_size = item_size;
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static i32
|
2016-05-03 16:15:08 +00:00
|
|
|
table_at_capacity(Table *table){
|
2019-06-01 23:58:28 +00:00
|
|
|
i32 result = true;
|
2016-05-03 16:15:08 +00:00
|
|
|
if (table->count * 8 < table->max * 7){
|
2016-07-10 05:49:11 +00:00
|
|
|
result = false;
|
2016-05-03 16:15:08 +00:00
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static i32
|
2016-05-03 16:15:08 +00:00
|
|
|
table_add(Table *table, void *item, void *arg, Hash_Function *hash_func, Compare_Function *comp_func){
|
2017-01-23 06:19:43 +00:00
|
|
|
Assert(table->count * 8 < table->max * 7);
|
2016-06-01 16:03:45 +00:00
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
u32 hash = (hash_func(item, arg) | TableHashMin);
|
|
|
|
i32 i = hash % table->max;
|
|
|
|
i32 start = i;
|
|
|
|
u32 *inspect = table->hash_array + i;
|
2016-05-03 16:15:08 +00:00
|
|
|
|
|
|
|
while (*inspect >= TableHashMin){
|
|
|
|
if (*inspect == hash){
|
|
|
|
if (comp_func(item, table->data_array + i*table->item_size, arg) == 0){
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
++inspect;
|
|
|
|
if (i == table->max){
|
|
|
|
i = 0;
|
|
|
|
inspect = table->hash_array;
|
|
|
|
}
|
2017-01-23 06:19:43 +00:00
|
|
|
Assert(i != start);
|
2016-05-03 16:15:08 +00:00
|
|
|
}
|
|
|
|
*inspect = hash;
|
|
|
|
memcpy(table->data_array + i*table->item_size, item, table->item_size);
|
|
|
|
++table->count;
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static i32
|
|
|
|
table_find_pos(Table *table, void *search_key, void *arg, i32 *pos, i32 *index, Hash_Function *hash_func, Compare_Function *comp_func){
|
2017-03-23 19:14:39 +00:00
|
|
|
Assert((table->count - 1) * 8 < table->max * 7);
|
2016-05-03 16:15:08 +00:00
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
u32 hash = (hash_func(search_key, arg) | TableHashMin);
|
|
|
|
i32 i = hash % table->max;
|
|
|
|
i32 start = i;
|
|
|
|
u32 *inspect = table->hash_array + i;
|
2016-05-03 16:15:08 +00:00
|
|
|
|
|
|
|
while (*inspect != TableHashEmpty){
|
|
|
|
if (*inspect == hash){
|
|
|
|
if (comp_func(search_key, table->data_array + i*table->item_size, arg) == 0){
|
|
|
|
if (pos) *pos = i*table->item_size;
|
|
|
|
if (index) *index = i;
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
++inspect;
|
|
|
|
if (i == table->max){
|
|
|
|
i = 0;
|
|
|
|
inspect = table->hash_array;
|
|
|
|
}
|
2016-06-01 16:03:45 +00:00
|
|
|
if (i == start) break;
|
2016-05-03 16:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void*
|
2016-05-03 16:15:08 +00:00
|
|
|
table_find_item(Table *table, void *search_key, void *arg, Hash_Function *hash_func, Compare_Function *comp_func){
|
|
|
|
void *result = 0;
|
2019-06-01 23:58:28 +00:00
|
|
|
i32 pos;
|
2016-05-03 16:15:08 +00:00
|
|
|
if (table_find_pos(table, search_key, arg, &pos, 0, hash_func, comp_func)){
|
|
|
|
result = table->data_array + pos;
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2019-06-01 23:58:28 +00:00
|
|
|
table_remove_index(Table *table, i32 index){
|
2016-05-03 16:15:08 +00:00
|
|
|
table->hash_array[index] = TableHashDeleted;
|
|
|
|
--table->count;
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static i32
|
2016-05-03 16:15:08 +00:00
|
|
|
table_remove_match(Table *table, void *search_key, void *arg, Hash_Function *hash_func, Compare_Function *comp_func){
|
2019-06-01 23:58:28 +00:00
|
|
|
i32 result = false;
|
|
|
|
i32 index;
|
2016-05-03 16:15:08 +00:00
|
|
|
if (table_find_pos(table, search_key, arg, 0, &index, hash_func, comp_func)){
|
|
|
|
table_remove_index(table, index);
|
2016-07-10 05:49:11 +00:00
|
|
|
result = true;
|
2016-05-03 16:15:08 +00:00
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2016-05-03 16:15:08 +00:00
|
|
|
table_clear(Table *table){
|
|
|
|
table->count = 0;
|
|
|
|
memset(table->hash_array, 0, table->max*sizeof(*table->hash_array));
|
|
|
|
}
|
|
|
|
|
2016-07-10 05:49:11 +00:00
|
|
|
static void
|
2016-05-03 16:15:08 +00:00
|
|
|
table_rehash(Table *src, Table *dst, void *arg, Hash_Function *hash_func, Compare_Function *comp_func){
|
2017-01-23 06:19:43 +00:00
|
|
|
Assert((dst->count + src->count - 1) * 7 < dst->max * 8);
|
|
|
|
Assert(dst->item_size == src->item_size);
|
2016-05-03 16:15:08 +00:00
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
i32 count = src->count;
|
|
|
|
i32 item_size = src->item_size;
|
|
|
|
u32 *hash_item = src->hash_array;
|
2016-07-10 05:49:11 +00:00
|
|
|
char *data_item = src->data_array;
|
2019-06-01 23:58:28 +00:00
|
|
|
for (i32 i = 0, c = 0;
|
2016-07-10 05:49:11 +00:00
|
|
|
c < count;
|
|
|
|
++i, ++hash_item, data_item += item_size){
|
2016-05-03 16:15:08 +00:00
|
|
|
if (*hash_item >= TableHashMin){
|
|
|
|
++c;
|
|
|
|
table_add(dst, data_item, arg, hash_func, comp_func);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static u32
|
2016-05-03 16:15:08 +00:00
|
|
|
tbl_string_hash(void *item, void *arg){
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 *string = (String_Const_u8*)item;
|
|
|
|
u32 x = 5381;
|
2016-05-03 16:15:08 +00:00
|
|
|
(void)arg;
|
2019-06-01 23:58:28 +00:00
|
|
|
u8 *str = string->str;
|
|
|
|
umem len = string->size;
|
|
|
|
for (umem i = 0; i < len; i += 1){
|
|
|
|
u8 c = str[i];
|
2016-05-03 16:15:08 +00:00
|
|
|
x = ((x << 5) + x) + c;
|
|
|
|
}
|
|
|
|
return(x);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static i32
|
2016-05-03 16:15:08 +00:00
|
|
|
tbl_string_compare(void *a, void *b, void *arg){
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 *stra = (String_Const_u8*)a;
|
|
|
|
String_Const_u8 *strb = (String_Const_u8*)b;
|
|
|
|
i32 result = (!string_match(*stra, *strb));
|
2016-05-03 16:15:08 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
struct Offset_String{
|
2019-06-01 23:58:28 +00:00
|
|
|
umem offset;
|
|
|
|
umem size;
|
2017-01-23 06:19:43 +00:00
|
|
|
};
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static u32
|
2016-05-03 16:15:08 +00:00
|
|
|
tbl_offset_string_hash(void *item, void *arg){
|
|
|
|
Offset_String *string = (Offset_String*)item;
|
2019-06-01 23:58:28 +00:00
|
|
|
u32 x = 5381;
|
|
|
|
u8 *str = ((u8*)arg) + string->offset;
|
|
|
|
umem size = string->size;
|
|
|
|
for (umem i = 0; i < size; i += 1){
|
|
|
|
u8 c = str[i];
|
2016-05-03 16:15:08 +00:00
|
|
|
x = ((x << 5) + x) + c;
|
|
|
|
}
|
|
|
|
return(x);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static i32
|
2016-05-03 16:15:08 +00:00
|
|
|
tbl_offset_string_compare(void *a, void *b, void *arg){
|
|
|
|
Offset_String *ostra = (Offset_String*)a;
|
|
|
|
Offset_String *ostrb = (Offset_String*)b;
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 stra = SCu8((u8*)arg + ostra->offset, ostra->size);
|
|
|
|
String_Const_u8 strb = SCu8((u8*)arg + ostrb->offset, ostrb->size);
|
|
|
|
i32 result = (!string_match(stra, strb));
|
2016-05-03 16:15:08 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct String_Space{
|
|
|
|
char *space;
|
2019-06-01 23:58:28 +00:00
|
|
|
i32 pos;
|
|
|
|
i32 new_pos;
|
|
|
|
i32 max;
|
2016-05-03 16:15:08 +00:00
|
|
|
};
|
|
|
|
|
2016-07-10 05:49:11 +00:00
|
|
|
static Offset_String
|
2019-06-01 23:58:28 +00:00
|
|
|
strspace_append(String_Space *space, char *str, i32 len){
|
2016-05-03 16:15:08 +00:00
|
|
|
Offset_String result = {};
|
|
|
|
if (space->new_pos + len <= space->max){
|
|
|
|
result.offset = space->new_pos;
|
|
|
|
result.size = len;
|
2017-03-23 19:15:33 +00:00
|
|
|
|
2016-05-03 16:15:08 +00:00
|
|
|
memcpy(space->space + space->new_pos, str, len);
|
|
|
|
space->new_pos = space->pos + len;
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-10 05:49:11 +00:00
|
|
|
static void
|
2016-05-03 16:15:08 +00:00
|
|
|
strspace_keep_prev(String_Space *space){
|
|
|
|
space->pos = space->new_pos;
|
|
|
|
}
|
|
|
|
|
2016-07-10 05:49:11 +00:00
|
|
|
static void
|
2016-05-03 16:15:08 +00:00
|
|
|
strspace_discard_prev(String_Space *space){
|
|
|
|
space->new_pos = space->pos;
|
|
|
|
}
|
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
#endif
|
|
|
|
|
2016-05-03 16:15:08 +00:00
|
|
|
// BOTTOM
|
|
|
|
|