/*
$Id: pa_hash.h,v 1.5 2001/01/29 10:22:01 paf Exp $
*/
/*
*/
#ifndef PA_HASH_H
#define PA_HASH_H
#include <stddef.h>
#include "pa_types.h"
#include "pa_string.h"
class Pool;
class Hash {
public:
typedef String Key;
typedef void Value;
private:
friend Pool;
// expand when used these %% of size
enum {
THRESHOLD_PERCENT=75
};
// the pool I'm allocated on
Pool *pool;
// the index of [size] in [sizes]
int size_index;
// possible [sizes]. prime numbers
static uint sizes[];
static int sizes_count;
// number of allocated pairs
int size;
// helper: expanding when used == threshold
int threshold;
// used pairs
int used;
// main storage
class Pair {
friend Hash;
uint code;
Key key;
Value *value;
Pair *link;
void *operator new(size_t size, Pool *apool);
Pair(uint acode, Key& akey, Value *avalue, Pair *alink) :
code(acode),
key(akey),
value(avalue),
link(alink) {}
} **refs;
// new&constructors made private to enforce factory manufacturing at pool
void *operator new(size_t size, Pool *apool);
Hash(Pool *apool);
// filled to threshold: needs expanding
bool full() { return used==threshold; }
// allocate larger buffer & rehash
void expand();
public:
// useful generic hash function
static uint generic_code(uint aresult, char *start, uint size);
// put a [value] under the [key]
void put(Key& key, Value *value);
// get associated [value] by the [key]
Value* get(Key& key);
private: //disabled
Hash& operator = (Hash& src) { return *this; }
Hash(Hash& src) {}
};
#endif
E-mail: