From 9cd3ccffd5372dfde3af478e3f832f18db4be3f1 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 6 Apr 2013 13:14:41 +0200 Subject: tagging tags --- yhttpd-0.7.2/src/maps/hashmap.h | 53 ++++++++++++ yhttpd-0.7.2/src/maps/hashmap.tmpl | 126 +++++++++++++++++++++++++++++ yhttpd-0.7.2/src/maps/mtools.h | 11 +++ yhttpd-0.7.2/src/maps/mtools.tmpl | 12 +++ yhttpd-0.7.2/src/maps/nhashmap.h | 21 +++++ yhttpd-0.7.2/src/maps/nhashmap.tmpl | 11 +++ yhttpd-0.7.2/src/maps/shashmap.h | 49 ++++++++++++ yhttpd-0.7.2/src/maps/shashmap.tmpl | 155 ++++++++++++++++++++++++++++++++++++ 8 files changed, 438 insertions(+) create mode 100644 yhttpd-0.7.2/src/maps/hashmap.h create mode 100644 yhttpd-0.7.2/src/maps/hashmap.tmpl create mode 100644 yhttpd-0.7.2/src/maps/mtools.h create mode 100644 yhttpd-0.7.2/src/maps/mtools.tmpl create mode 100644 yhttpd-0.7.2/src/maps/nhashmap.h create mode 100644 yhttpd-0.7.2/src/maps/nhashmap.tmpl create mode 100644 yhttpd-0.7.2/src/maps/shashmap.h create mode 100644 yhttpd-0.7.2/src/maps/shashmap.tmpl (limited to 'yhttpd-0.7.2/src/maps') diff --git a/yhttpd-0.7.2/src/maps/hashmap.h b/yhttpd-0.7.2/src/maps/hashmap.h new file mode 100644 index 0000000..1bdc515 --- /dev/null +++ b/yhttpd-0.7.2/src/maps/hashmap.h @@ -0,0 +1,53 @@ +#ifndef HASHMAP_H +#define HASHMAP_H + +#include + +using namespace std; + +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 +< + 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, 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" +#endif diff --git a/yhttpd-0.7.2/src/maps/hashmap.tmpl b/yhttpd-0.7.2/src/maps/hashmap.tmpl new file mode 100644 index 0000000..9ee2f36 --- /dev/null +++ b/yhttpd-0.7.2/src/maps/hashmap.tmpl @@ -0,0 +1,126 @@ +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, key_type_ t_key) +{ + typename hashmap::iterator iter = this->find(t_key); + + if ( iter == this->end() ) + { + set_elem(t_obj, t_key); + return obj_type(); + } + + 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 +void +hashmap::set_elem(obj_type t_obj, key_type_ t_key) +{ + (*this)[t_key] = t_obj; +} + +template +obj_type +hashmap::get_elem(key_type_ t_key) +{ + typename hashmap::iterator iter = this->find(t_key); + + if ( iter != this->end() ) + return iter->second; + + return obj_type(); +} + +template +vector* +hashmap::get_key_vector() +{ + 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; +} + +template +bool +hashmap::exists(key_type_ t_key) +{ + return this->find(t_key) != this->end(); +} + +template +void +hashmap::run_func( void (*func)(obj_type) ) +{ + typename hashmap::iterator iter; + for ( iter = this->begin(); iter != this->end(); ++iter ) + ( *func ) ( iter->second ); +} + +template +void +hashmap::run_func( void (*func)(obj_type, void*), void* v_arg ) +{ + typename hashmap::iterator iter; + for ( iter = this->begin(); iter != this->end(); ++iter ) + ( *func ) ( iter->second, v_arg ); +} diff --git a/yhttpd-0.7.2/src/maps/mtools.h b/yhttpd-0.7.2/src/maps/mtools.h new file mode 100644 index 0000000..4ee45b8 --- /dev/null +++ b/yhttpd-0.7.2/src/maps/mtools.h @@ -0,0 +1,11 @@ +#ifndef MTOOLS_H +#define MTOOLS_H + +template +struct mtools +{ + static void delete_obj(type_ type_obj); +}; + +#include "mtools.tmpl" +#endif diff --git a/yhttpd-0.7.2/src/maps/mtools.tmpl b/yhttpd-0.7.2/src/maps/mtools.tmpl new file mode 100644 index 0000000..6917131 --- /dev/null +++ b/yhttpd-0.7.2/src/maps/mtools.tmpl @@ -0,0 +1,12 @@ +#ifndef MTOOLS_TMPL +#define MTOOLS_TMPL + +template +void +mtools::delete_obj( type_ type_obj ) +{ + if ( type_obj ) + delete type_obj; +} + +#endif diff --git a/yhttpd-0.7.2/src/maps/nhashmap.h b/yhttpd-0.7.2/src/maps/nhashmap.h new file mode 100644 index 0000000..7f17a55 --- /dev/null +++ b/yhttpd-0.7.2/src/maps/nhashmap.h @@ -0,0 +1,21 @@ +#ifndef NHASHMAP_H +#define NHASHMAP_H + +#include "shashmap.h" + +using namespace std; + +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(key_type_ t_key); +}; + +#include "nhashmap.tmpl" +#endif diff --git a/yhttpd-0.7.2/src/maps/nhashmap.tmpl b/yhttpd-0.7.2/src/maps/nhashmap.tmpl new file mode 100644 index 0000000..3ea1934 --- /dev/null +++ b/yhttpd-0.7.2/src/maps/nhashmap.tmpl @@ -0,0 +1,11 @@ +template +obj_type +nhashmap::get_elem(key_type_ t_key) +{ + typename hashmap::iterator iter = this->find(t_key); + + if ( iter != this->end() ) + return iter->second; + + return NULL; +} diff --git a/yhttpd-0.7.2/src/maps/shashmap.h b/yhttpd-0.7.2/src/maps/shashmap.h new file mode 100644 index 0000000..99dd7c8 --- /dev/null +++ b/yhttpd-0.7.2/src/maps/shashmap.h @@ -0,0 +1,49 @@ +#ifndef SHASHMAP_H +#define SHASHMAP_H + +#include +#include "hashmap.h" + +#include "../monitor/dump.h" + +using namespace std; + +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; + +protected: + virtual void dumpit(); + +public: + 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" +#endif diff --git a/yhttpd-0.7.2/src/maps/shashmap.tmpl b/yhttpd-0.7.2/src/maps/shashmap.tmpl new file mode 100644 index 0000000..c864d28 --- /dev/null +++ b/yhttpd-0.7.2/src/maps/shashmap.tmpl @@ -0,0 +1,155 @@ +template +shashmap::shashmap() +{ + pthread_mutex_init( &mut_shashmap, NULL ); +} + +template +shashmap::~shashmap() +{ + pthread_mutex_destroy( &mut_shashmap ); +} + +template +void +shashmap::add_elem(obj_type t_obj, key_type_ t_key) +{ + pthread_mutex_lock( &mut_shashmap ); + (*this)[t_key] = t_obj; + pthread_mutex_unlock( &mut_shashmap ); +} + +template +void +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) +{ + 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 +obj_type +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_or_callback_set + (func, p_void, t_key); + pthread_mutex_unlock( &mut_shashmap ); + return t_ret; +} + +template +void +shashmap::set_elem(obj_type t_obj, key_type_ t_key) +{ + pthread_mutex_lock( &mut_shashmap ); + (*this)[t_key] = t_obj; + pthread_mutex_unlock( &mut_shashmap ); +} + +template +obj_type +shashmap::get_elem(key_type_ t_key) +{ + pthread_mutex_lock( &mut_shashmap ); + obj_type t_ret = hashmap::get_elem(t_key); + pthread_mutex_unlock( &mut_shashmap ); + return t_ret; +} + +template +void +shashmap::del_elem(key_type_ t_key) +{ + pthread_mutex_lock( &mut_shashmap ); + hashmap::erase(t_key); + pthread_mutex_unlock( &mut_shashmap ); +} + +template +void +shashmap::del_elem_insecure(key_type_ t_key) +{ + hashmap::erase(t_key); +} + +template +vector* +shashmap::get_key_vector() +{ + pthread_mutex_lock( &mut_shashmap ); + vector* p_vec = hashmap::get_key_vector(); + pthread_mutex_unlock( &mut_shashmap ); + return p_vec; +} + +template +void +shashmap::clear() +{ + pthread_mutex_lock( &mut_shashmap ); + hashmap::clear(); + pthread_mutex_unlock( &mut_shashmap ); +} + +template +int +shashmap::size() +{ + pthread_mutex_lock( &mut_shashmap ); + int i_size = hashmap::size(); + pthread_mutex_unlock( &mut_shashmap ); + return i_size; +} + +template +bool +shashmap::exists(key_type_ t_key) +{ + pthread_mutex_lock( &mut_shashmap ); + bool b_ret = hashmap::exists(t_key); + pthread_mutex_unlock( &mut_shashmap ); + return b_ret; +} + +template +void +shashmap::run_func( void (*func)(obj_type) ) +{ + pthread_mutex_lock( &mut_shashmap ); + hashmap::run_func(func); + pthread_mutex_unlock( &mut_shashmap ); +} + +template +void +shashmap::run_func( void (*func)(obj_type, void*), void* v_arg ) +{ + pthread_mutex_lock( &mut_shashmap ); + 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