start hashtable

master
Ringo Watanabe 5 years ago
parent 6bf1252a0c
commit cf84b9fa46
No known key found for this signature in database
GPG Key ID: C1C1CD34CF2907B2

@ -0,0 +1,15 @@
#ifndef _HASHTABLE_H
#define H_DEFAULT_BLOCKSIZE 255
struct _h_kvpair_t {
unsigned int crc32;
unsigned char data[];
};
typedef struct {
list_t* back;
size_t keysize;
} hashtable_t;
#endif /* _HASHTABLE_H */

@ -0,0 +1,11 @@
#ifndef _CRC_H
#define _CRC_H
#include <stdint.h>
#include <stdatomic.h>
#define _H_CRC_TABLE_SIZE 256
#define _H_CRC_ITERATIONS 8
unsigned long _h_crc32(unsigned long seed, const unsigned char* buffer,unsigned int len);
#endif /* _CRC_H */

@ -0,0 +1,52 @@
#include <internal/crc.h>
static const uint32_t __h_crc_poly = 0xedb88320u;
static uint32_t __h_crc_table[_H_CRC_TABLE_SIZE];
static _Atomic volatile int __h_crc_initialised=0;
static _Atomic volatile int __initialising=0;
static uint32_t* __h_crc_create_table(uint32_t* table, uint32_t poly)
{
register int i=0;
for(;i<_H_CRC_TABLE_SIZE;i++)
{
register int j=0;
uint32_t e = (uint32_t)i;
for(;j<_H_CRC_ITERATIONS;j++)
{
if( (e&1) == 1)
e = (e>>1) ^ poly;
else e = e>>1;
}
table[i] = e;
}
return table;
}
static uint32_t __h_crc_calc(uint32_t* table, uint32_t seed, const unsigned char* buffer, int len)
{
uint32_t crc= seed;
register int i=0;
for(;i<len;i++)
{
crc = (crc>>8) ^ table[(buffer[i] ^ crc) & 0xff];
}
return crc;
}
unsigned long _h_crc32(unsigned long seed, const unsigned char* buffer,unsigned int len)
{
while(__initialising) (void)0;
if(!__h_crc_initialised)
{
__initialising=1;
__h_crc_create_table(__h_crc_table,__h_crc_poly);
__h_crc_initialised=1;
__initialising=0;
}
return ~__h_crc_calc(__h_crc_table, (uint32_t) seed, buffer, (int)len);
}

@ -0,0 +1,33 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <list.h>
#include <unistd.h>
#include <internal/crc.h>
#include <hashtable.h>
int32_t _h_getid(void* key, unsigned long* sum, size_t keysize, size_t blocksize)
{
return (int32_t)((*sum = _h_crc32(0xffffffffu, key, keysize)) % blocksize);
}
hashtable_t* h_create(size_t keytype, size_t valuetype, size_t blocksize)
{
hashtable_t* proto = (hashtable_t*)malloc(sizeof(hashtable_t));
proto->back = l_create(sizeof(struct _h_kvpair_t)+keytype+valuetype, blocksize);
proto->keysize = keytype;
return proto;
}
void h_add(hashtable_t* hash, void* key, void* value)
{
unsigned long crc32;
int32_t id = _h_getid(key, &crc32, hash->keysize, hash->back->blocksize);
//TODO: search through blocks as pages for empty id match
}
Loading…
Cancel
Save