From c8b2ef7b899766d04562f7e04a84251cea8fa701 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 6 Apr 2013 13:14:44 +0200 Subject: tagging ychat-0.8.0 --- src/maps/hashmap.h | 51 ++++++++++++++---- src/maps/hashmap.tmpl | 124 +++++++++++++++++++++++++++++------------- src/maps/mtools.h | 2 +- src/maps/mtools.tmpl | 5 +- src/maps/nhashmap.h | 12 +++-- src/maps/nhashmap.tmpl | 12 ++--- src/maps/shashmap.h | 53 +++++++++++------- src/maps/shashmap.tmpl | 142 +++++++++++++++++++++++++++++-------------------- 8 files changed, 266 insertions(+), 135 deletions(-) (limited to 'src/maps') diff --git a/src/maps/hashmap.h b/src/maps/hashmap.h index a748bd8..b3a3212 100644 --- a/src/maps/hashmap.h +++ b/src/maps/hashmap.h @@ -2,22 +2,51 @@ #define HASHMAP_H #include -#include "hash.h" using namespace std; -using __gnu_cxx::hash_map; +template +struct compare_allocator +{ + inline bool operator()(key_type_ t_key_1, key_type_ t_key_2) const; +}; + +template +struct equals_allocator +{ + inline bool operator()(key_type_ t_key_1, key_type_ t_key_2) const; +}; + +template +struct size_hash +{ + inline int operator()(key_type_ t_key) const; +}; + +template +struct self_hash +{ + inline int operator()(key_type_ t_key) const; +}; -template -struct hashmap : public hash_map< string, obj_type, hash, hashmap_allocator> +template +< +class obj_type, +class key_type_ = string, +class hash_type = size_hash, +class alloc_type = compare_allocator +> +struct hashmap : public __gnu_cxx::hash_map { - virtual inline void set_elem(obj_type t_obj, string s_key); - virtual inline obj_type get_elem(string s_key); - virtual inline obj_type get_set_elem(obj_type t_obj, string s_key); - virtual inline vector* get_key_vector(); - virtual inline bool exists(string s_key); - virtual inline void run_func( void (*func)(obj_type) ); - virtual inline void run_func( void (*func)(obj_type, void*), void* v_arg ); + virtual inline void set_elem(obj_type t_obj, key_type_ t_key); + virtual inline obj_type get_elem(key_type_ t_key); + virtual inline obj_type get_set_elem(obj_type t_obj, key_type_ t_key); + virtual inline obj_type get_or_callback_set + (obj_type (*func)(void*), void* p_void, key_type_ t_key); + virtual inline vector* get_key_vector(); + virtual inline bool exists(key_type_ t_key); + virtual inline void run_func( void (*func)(obj_type) ); + virtual inline void run_func( void (*func)(obj_type, void*), void* v_arg ); }; #include "hashmap.tmpl" diff --git a/src/maps/hashmap.tmpl b/src/maps/hashmap.tmpl index e9da338..9ee2f36 100644 --- a/src/maps/hashmap.tmpl +++ b/src/maps/hashmap.tmpl @@ -1,74 +1,126 @@ -template +template +bool +compare_allocator::operator()(key_type_ t_key_1, key_type_ t_key_2) const +{ + return t_key_1.compare(t_key_2) == 0; +} + +template +bool +equals_allocator::operator()(key_type_ t_key_1, key_type_ t_key_2) const +{ + return t_key_1 == t_key_2; +} + +template +int +size_hash::operator()(key_type_ t_key) const +{ + int i_hash = 0; + int i_size = t_key.size(); + + for( size_t i = 0; i < i_size; ++i ) + i_hash = ( i_hash << 5 ) ^ t_key.at(i) ^ i_hash; + + return i_hash; +} + +template +int +self_hash::operator()(key_type_ t_key) const +{ + return t_key; +} + + +template obj_type -hashmap::get_set_elem(obj_type t_obj, string s_key) +hashmap::get_set_elem(obj_type t_obj, key_type_ t_key) { - typename hashmap::iterator iter = this->find(s_key); - + typename hashmap::iterator iter = this->find(t_key); + if ( iter == this->end() ) { - set_elem(t_obj, s_key); + set_elem(t_obj, t_key); return obj_type(); } - obj_type t_ret = iter->second; + obj_type t_ret = iter->second; iter->second = t_obj; return t_ret; -} +} + +template +obj_type +hashmap::get_or_callback_set +(obj_type (*func)(void*), void* p_void, key_type_ t_key) +{ + typename hashmap::iterator iter = this->find(t_key); + + if ( iter == this->end() ) + { + obj_type t_obj = (*func) (p_void); + set_elem(t_obj, t_key); + return t_obj; + } + + return iter->second; +} -template +template void -hashmap::set_elem(obj_type t_obj, string s_key) +hashmap::set_elem(obj_type t_obj, key_type_ t_key) { - (*this)[s_key] = t_obj; -} + (*this)[t_key] = t_obj; +} -template +template obj_type -hashmap::get_elem(string s_key) +hashmap::get_elem(key_type_ t_key) { - typename hashmap::iterator iter = this->find(s_key); + typename hashmap::iterator iter = this->find(t_key); - if ( iter != this->end() ) - return iter->second; + if ( iter != this->end() ) + return iter->second; - return obj_type(); -} + return obj_type(); +} -template -vector* -hashmap::get_key_vector() +template +vector* +hashmap::get_key_vector() { - vector* p_vec = new vector; - typename hashmap::iterator iter; - + vector* p_vec = new vector; + typename hashmap::iterator iter; + for ( iter = this->begin(); iter != this->end(); ++iter ) p_vec->push_back(iter->first); - return p_vec; -} + return p_vec; +} -template +template bool -hashmap::exists(string s_key) +hashmap::exists(key_type_ t_key) { - return this->find(s_key) != this->end(); -} + return this->find(t_key) != this->end(); +} -template +template void -hashmap::run_func( void (*func)(obj_type) ) +hashmap::run_func( void (*func)(obj_type) ) { - typename hashmap::iterator iter; + typename hashmap::iterator iter; for ( iter = this->begin(); iter != this->end(); ++iter ) ( *func ) ( iter->second ); } -template +template void -hashmap::run_func( void (*func)(obj_type, void*), void* v_arg ) +hashmap::run_func( void (*func)(obj_type, void*), void* v_arg ) { - typename hashmap::iterator iter; + typename hashmap::iterator iter; for ( iter = this->begin(); iter != this->end(); ++iter ) ( *func ) ( iter->second, v_arg ); } diff --git a/src/maps/mtools.h b/src/maps/mtools.h index 6062191..4ee45b8 100644 --- a/src/maps/mtools.h +++ b/src/maps/mtools.h @@ -8,4 +8,4 @@ struct mtools }; #include "mtools.tmpl" -#endif +#endif diff --git a/src/maps/mtools.tmpl b/src/maps/mtools.tmpl index dd3f89e..6917131 100644 --- a/src/maps/mtools.tmpl +++ b/src/maps/mtools.tmpl @@ -3,9 +3,10 @@ template void -mtools::delete_obj( type_ type_obj ) { +mtools::delete_obj( type_ type_obj ) +{ if ( type_obj ) - delete type_obj; + delete type_obj; } #endif diff --git a/src/maps/nhashmap.h b/src/maps/nhashmap.h index 75984b5..f440230 100644 --- a/src/maps/nhashmap.h +++ b/src/maps/nhashmap.h @@ -5,10 +5,16 @@ using namespace std; -template -struct nhashmap : public shashmap +template +< +class obj_type, +class key_type_ = string, +class hash_type = size_hash, +class alloc_type = compare_allocator +> +struct nhashmap : public shashmap { - inline obj_type get_elem(string s_key); + inline obj_type get_elem(key_type_ t_key); }; #include "nhashmap.tmpl" diff --git a/src/maps/nhashmap.tmpl b/src/maps/nhashmap.tmpl index 0cba2fd..3ea1934 100644 --- a/src/maps/nhashmap.tmpl +++ b/src/maps/nhashmap.tmpl @@ -1,11 +1,11 @@ -template +template obj_type -nhashmap::get_elem(string s_key) +nhashmap::get_elem(key_type_ t_key) { - typename hashmap::iterator iter = this->find(s_key); + typename hashmap::iterator iter = this->find(t_key); if ( iter != this->end() ) - return iter->second; + return iter->second; - return NULL; -} + return NULL; +} diff --git a/src/maps/shashmap.h b/src/maps/shashmap.h index a87ed9d..f692e32 100644 --- a/src/maps/shashmap.h +++ b/src/maps/shashmap.h @@ -4,30 +4,45 @@ #include #include "hashmap.h" +#include "../monitor/dump.h" + using namespace std; -using __gnu_cxx::hash_map; -template -class shashmap : public hashmap +template +< +class obj_type, +class key_type_ = string, +class hash_type = size_hash, +class alloc_type = compare_allocator +> +class shashmap : protected hashmap, + public dumpable { private: - pthread_mutex_t mut_shashmap; + pthread_mutex_t mut_shashmap; + +protected: + virtual void dumpit(); + public: - explicit shashmap(); - ~shashmap(); - virtual inline void set_elem(obj_type t_obj, string s_key); - virtual inline obj_type get_set_elem(obj_type t_obj, string s_key); - virtual inline void add_elem(obj_type t_obj, string s_key); - virtual inline void add_elem_insecure(obj_type t_obj, string s_key); - virtual inline obj_type get_elem(string s_key); - virtual inline void del_elem(string s_key); - virtual inline void del_elem_insecure(string s_key); - virtual inline void clear(); - virtual inline int size(); - virtual inline bool exists(string s_key); - virtual inline vector* get_key_vector(); - virtual inline void run_func( void (*func)(obj_type) ); - virtual inline void run_func( void (*func)(obj_type, void*), void* v_arg ); + explicit shashmap(); + ~shashmap(); + virtual inline void set_elem(obj_type t_obj, key_type_ t_key); + virtual inline obj_type get_set_elem(obj_type t_obj, key_type_ t_key); + virtual inline obj_type get_or_callback_set + (obj_type (*func)(void*), void* p_void, key_type_ t_key); + virtual inline void add_elem(obj_type t_obj, key_type_ t_key); + virtual inline void add_elem_insecure(obj_type t_obj, key_type_ t_key); + virtual inline obj_type get_elem(key_type_ t_key); + virtual inline void del_elem(key_type_ t_key); + virtual inline void del_elem_insecure(key_type_ t_key); + virtual inline void clear(); + virtual inline int size(); + virtual inline bool exists(key_type_ t_key); + virtual inline vector* get_key_vector(); + virtual inline void run_func( void (*func)(obj_type) ); + virtual inline void run_func( void (*func)(obj_type, void*), void* v_arg ); + }; #include "shashmap.tmpl" diff --git a/src/maps/shashmap.tmpl b/src/maps/shashmap.tmpl index 6a70f61..0bd5796 100644 --- a/src/maps/shashmap.tmpl +++ b/src/maps/shashmap.tmpl @@ -1,129 +1,157 @@ -template -shashmap::shashmap() +template +shashmap::shashmap() { - pthread_mutex_init( &mut_shashmap, NULL ); + pthread_mutex_init( &mut_shashmap, NULL ); } -template -shashmap::~shashmap() +template +shashmap::~shashmap() { - pthread_mutex_destroy( &mut_shashmap ); + pthread_mutex_destroy( &mut_shashmap ); } -template +template void -shashmap::add_elem(obj_type t_obj, string s_key) +shashmap::add_elem(obj_type t_obj, key_type_ t_key) { pthread_mutex_lock( &mut_shashmap ); - (*this)[s_key] = t_obj; + (*this)[t_key] = t_obj; pthread_mutex_unlock( &mut_shashmap ); -} +} -template +template void -shashmap::add_elem_insecure(obj_type t_obj, string s_key) +shashmap::add_elem_insecure(obj_type t_obj, key_type_ t_key) +{ + (*this)[t_key] = t_obj; +} + +template +obj_type +shashmap::get_set_elem(obj_type t_obj, key_type_ t_key) { - (*this)[s_key] = t_obj; -} + pthread_mutex_lock( &mut_shashmap ); + obj_type t_ret = hashmap::get_set_elem(t_obj, t_key); + pthread_mutex_unlock( &mut_shashmap ); + return t_ret; +} -template +template obj_type -shashmap::get_set_elem(obj_type t_obj, string s_key) +shashmap::get_or_callback_set +(obj_type (*func)(void*), void* p_void, key_type_ t_key) { pthread_mutex_lock( &mut_shashmap ); - obj_type t_ret = hashmap::get_set_elem(t_obj, s_key); + obj_type t_ret = hashmap::get_or_callback_set + (func, p_void, t_key); pthread_mutex_unlock( &mut_shashmap ); return t_ret; -} +} -template +template void -shashmap::set_elem(obj_type t_obj, string s_key) +shashmap::set_elem(obj_type t_obj, key_type_ t_key) { pthread_mutex_lock( &mut_shashmap ); - (*this)[s_key] = t_obj; + (*this)[t_key] = t_obj; pthread_mutex_unlock( &mut_shashmap ); -} +} -template +template obj_type -shashmap::get_elem(string s_key) +shashmap::get_elem(key_type_ t_key) { pthread_mutex_lock( &mut_shashmap ); - obj_type t_ret = hashmap::get_elem(s_key); + obj_type t_ret = hashmap::get_elem(t_key); pthread_mutex_unlock( &mut_shashmap ); return t_ret; -} +} -template +template void -shashmap::del_elem(string s_key) +shashmap::del_elem(key_type_ t_key) { pthread_mutex_lock( &mut_shashmap ); - hashmap::erase(s_key); + hashmap::erase(t_key); pthread_mutex_unlock( &mut_shashmap ); -} +} -template +template void -shashmap::del_elem_insecure(string s_key) +shashmap::del_elem_insecure(key_type_ t_key) { - hashmap::erase(s_key); -} + hashmap::erase(t_key); +} -template -vector* -shashmap::get_key_vector() +template +vector* +shashmap::get_key_vector() { pthread_mutex_lock( &mut_shashmap ); - vector* p_vec = hashmap::get_key_vector(); + vector* p_vec = hashmap::get_key_vector(); pthread_mutex_unlock( &mut_shashmap ); return p_vec; -} +} -template +template void -shashmap::clear() +shashmap::clear() { pthread_mutex_lock( &mut_shashmap ); - hashmap::clear(); + hashmap::clear(); pthread_mutex_unlock( &mut_shashmap ); -} +} -template +template int -shashmap::size() +shashmap::size() { pthread_mutex_lock( &mut_shashmap ); - int i_size = hashmap::size(); + int i_size = hashmap::size(); pthread_mutex_unlock( &mut_shashmap ); return i_size; -} +} -template +template bool -shashmap::exists(string s_key) +shashmap::exists(key_type_ t_key) { pthread_mutex_lock( &mut_shashmap ); - bool b_ret = hashmap::exists(s_key); + bool b_ret = hashmap::exists(t_key); pthread_mutex_unlock( &mut_shashmap ); return b_ret; -} +} -template +template void -shashmap::run_func( void (*func)(obj_type) ) +shashmap::run_func( void (*func)(obj_type) ) { pthread_mutex_lock( &mut_shashmap ); - hashmap::run_func(func); + hashmap::run_func(func); pthread_mutex_unlock( &mut_shashmap ); } -template +template void -shashmap::run_func( void (*func)(obj_type, void*), void* v_arg ) +shashmap::run_func( void (*func)(obj_type, void*), void* v_arg ) { pthread_mutex_lock( &mut_shashmap ); - hashmap::run_func(func, v_arg); + hashmap::run_func(func, v_arg); pthread_mutex_unlock( &mut_shashmap ); } + +template +void +shashmap::dumpit() +{ + dumpable::add + ("[shashmap]"); + vector* p_vec = get_key_vector(); + + typename vector::iterator iter; + for (iter = p_vec->begin(); iter != p_vec->end(); ++iter) + dumpable::add + (*iter); + + delete p_vec; +} -- cgit v1.2.3