--- parser3/src/include/pa_hash.h 2001/03/18 12:10:55 1.26 +++ parser3/src/include/pa_hash.h 2001/04/05 16:30:41 1.35 @@ -1,9 +1,11 @@ -/* - Parser +/** @file + Parser: hash class decl. + Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexander Petrosyan (http://design.ru/paf) - $Id: pa_hash.h,v 1.26 2001/03/18 12:10:55 paf Exp $ + $Id: pa_hash.h,v 1.35 2001/04/05 16:30:41 paf Exp $ */ #ifndef PA_HASH_H @@ -15,51 +17,71 @@ #include "pa_types.h" #include "pa_string.h" + +/** + Pooled hash. + + Automatically rehashed when almost full. +*/ class Hash : public Pooled { public: - typedef String Key; - typedef void Value; + typedef String Key; ///< hash Key type. longing for templates + typedef void Val; ///< hash Val type. longing for templates - typedef void (*Foreach_func)(const Key& key, Value *value, void *info); + /// for_each iterator function type + typedef void (*For_each_func)(const Key& key, Val *value, void *info); public: - Hash(Pool& apool,bool athread_safe=false) : Pooled(apool) { - construct(apool, athread_safe); + Hash(Pool& apool) : Pooled(apool) { + construct(apool); } - // useful generic hash function + /// useful generic hash function static uint generic_code(uint aresult, const char *start, uint allocated); - // put a [value] under the [key], return existed or not - /*SYNCHRONIZED*/ bool put(const Key& key, Value *value); - - // get associated [value] by the [key] - /*SYNCHRONIZED*/ Value *get(const Key& key) const; + /// put a [value] under the [key], return existed or not + /*SYNCHRONIZED*/ bool put(const Key& key, Val *value); +/* + /// dirty hack to allow constant items storage. I long for Hash + /*SYNCHRONIZED* / bool put(const Key& key, const Val *value) { + return put(key, const_cast(value)); + } +*/ + /// get associated [value] by the [key] + /*SYNCHRONIZED*/ Val *get(const Key& key) const; - // put a [value] under the [key] if that [key] existed, return existed or not - /*SYNCHRONIZED*/ bool put_replace(const Key& key, Value *value); + /// put a [value] under the [key] if that [key] existed, return existed or not + /*SYNCHRONIZED*/ bool put_replace(const Key& key, Val *value); - // put a [value] under the [key] if that [key] NOT existed, return existed or not - /*SYNCHRONIZED*/ bool put_dont_replace(const Key& key, Value *value); + /// put a [value] under the [key] if that [key] NOT existed, return existed or not + /*SYNCHRONIZED*/ bool put_dont_replace(const Key& key, Val *value); - // put all 'src' values if NO with same key existed + /// put all 'src' values if NO with same key existed /*SYNCHRONIZED*/ void merge_dont_replace(const Hash& src); - void put(const Key& key, int value) { put(key, reinterpret_cast(value)); } - void put(const Key& key, String *value) { put(key, static_cast(value)); } + void put(const Key& key, int value) { put(key, reinterpret_cast(value)); } + void put(const Key& key, String *value) { put(key, static_cast(value)); } - int get_int(const Key& key) { return reinterpret_cast(get(key)); } - const String *get_string(const Key& key) { return static_cast(get(key)); } + //@{ + /// handy get, longing for Hash, Hash + int get_int(const Key& key) const { return reinterpret_cast(get(key)); } + const String *get_string(const Key& key) const { return static_cast(get(key)); } + //@} + /// number of elements in hash int size() { return used; } - void foreach(Foreach_func func, void *info=0); + /// iterate over all not zero elements + void for_each(For_each_func func, void *info=0); + + /// remove all elements + void clear(); protected: - void construct(Pool& apool, bool athread_safe); + void construct(Pool& apool); private: @@ -68,9 +90,6 @@ private: THRESHOLD_PERCENT=75 }; - // am I thread-safe? - bool thread_safe; - // the index of [allocated] in [allocates] int allocates_index; @@ -93,12 +112,12 @@ private: uint code; const Key key; - Value *value; + Val *value; Pair *link; void *operator new(size_t allocated, Pool& apool); - Pair(uint acode, const Key& akey, Value *avalue, Pair *alink) : + Pair(uint acode, const Key& akey, Val *avalue, Pair *alink) : code(acode), key(akey), value(avalue),