2004-12-23 15:16:30 +02:00
|
|
|
#ifndef __CMPH_STRUCTS_H__
|
|
|
|
#define __CMPH_STRUCTS_H__
|
|
|
|
|
|
|
|
#include "cmph.h"
|
|
|
|
|
|
|
|
/** Hash generation algorithm data
|
|
|
|
*/
|
2005-01-21 22:42:33 +02:00
|
|
|
struct __config_t
|
2004-12-23 15:16:30 +02:00
|
|
|
{
|
2005-01-18 23:06:08 +02:00
|
|
|
CMPH_ALGO algo;
|
2005-01-24 22:25:58 +02:00
|
|
|
cmph_io_adapter_t *key_source;
|
2005-01-18 23:06:08 +02:00
|
|
|
cmph_uint32 verbosity;
|
2005-01-18 14:18:51 +02:00
|
|
|
float c;
|
2004-12-23 15:16:30 +02:00
|
|
|
void *data; //algorithm dependent data
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Hash querying algorithm data
|
|
|
|
*/
|
2005-01-21 22:42:33 +02:00
|
|
|
struct __cmph_t
|
2004-12-23 15:16:30 +02:00
|
|
|
{
|
2005-01-18 23:06:08 +02:00
|
|
|
CMPH_ALGO algo;
|
|
|
|
cmph_uint32 size;
|
2005-01-24 22:25:58 +02:00
|
|
|
cmph_io_adapter_t *key_source;
|
2004-12-23 15:16:30 +02:00
|
|
|
void *data; //algorithm dependent data
|
|
|
|
};
|
|
|
|
|
2005-01-24 22:25:58 +02:00
|
|
|
cmph_config_t *__config_new(cmph_io_adapter_t *key_source);
|
2006-07-25 18:30:46 +03:00
|
|
|
void __config_destroy(cmph_config_t*);
|
2005-01-21 22:42:33 +02:00
|
|
|
void __cmph_dump(cmph_t *mphf, FILE *);
|
|
|
|
cmph_t *__cmph_load(FILE *f);
|
2004-12-23 15:16:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|