summaryrefslogtreecommitdiff
path: root/src/maps/shashmap.tmpl
blob: 4e91d33232590baeb8e5e01fa99c65dc85a30b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*:*
 *: File: ./src/maps/shashmap.tmpl
 *: 
 *: yChat; Homepage: www.yChat.org; Version 0.8.3-CURRENT
 *: 
 *: Copyright (C) 2003 Paul C. Buetow, Volker Richter
 *: Copyright (C) 2004 Paul C. Buetow
 *: Copyright (C) 2005 EXA Digital Solutions GbR
 *: 
 *: This program is free software; you can redistribute it and/or
 *: modify it under the terms of the GNU General Public License
 *: as published by the Free Software Foundation; either version 2
 *: of the License, or (at your option) any later version.
 *: 
 *: This program is distributed in the hope that it will be useful,
 *: but WITHOUT ANY WARRANTY; without even the implied warranty of
 *: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *: GNU General Public License for more details.
 *: 
 *: You should have received a copy of the GNU General Public License
 *: along with this program; if not, write to the Free Software
 *: Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *:*/

template<class obj_type, class key_type_, class hash_type, class alloc_type>
shashmap<obj_type, key_type_, hash_type, alloc_type>::shashmap()
{
  pthread_mutex_init( &mut_shashmap, NULL );
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
shashmap<obj_type, key_type_, hash_type, alloc_type>::~shashmap()
{
  pthread_mutex_destroy( &mut_shashmap );
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
void
shashmap<obj_type, key_type_, hash_type, alloc_type>::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<class obj_type, class key_type_, class hash_type, class alloc_type>
void
shashmap<obj_type, key_type_, hash_type, alloc_type>::add_elem_insecure(obj_type t_obj, key_type_ t_key)
{
  (*this)[t_key] = t_obj;
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
obj_type
shashmap<obj_type, key_type_, hash_type, alloc_type>::get_set_elem(obj_type t_obj, key_type_ t_key)
{
  pthread_mutex_lock( &mut_shashmap );
  obj_type t_ret = hashmap<obj_type, key_type_, hash_type, alloc_type>::get_set_elem(t_obj, t_key);
  pthread_mutex_unlock( &mut_shashmap );
  return t_ret;
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
obj_type
shashmap<obj_type, key_type_, hash_type, alloc_type>::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<obj_type, key_type_, hash_type, alloc_type>::get_or_callback_set
                   (func, p_void, t_key);
  pthread_mutex_unlock( &mut_shashmap );
  return t_ret;
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
void
shashmap<obj_type, key_type_, hash_type, alloc_type>::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<class obj_type, class key_type_, class hash_type, class alloc_type>
obj_type
shashmap<obj_type, key_type_, hash_type, alloc_type>::get_elem(key_type_ t_key)
{
  pthread_mutex_lock( &mut_shashmap );
  obj_type t_ret = hashmap<obj_type, key_type_, hash_type, alloc_type>::get_elem(t_key);
  pthread_mutex_unlock( &mut_shashmap );
  return t_ret;
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
void
shashmap<obj_type, key_type_, hash_type, alloc_type>::del_elem(key_type_ t_key)
{
  pthread_mutex_lock( &mut_shashmap );
  hashmap<obj_type, key_type_, hash_type, alloc_type>::erase(t_key);
  pthread_mutex_unlock( &mut_shashmap );
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
void
shashmap<obj_type, key_type_, hash_type, alloc_type>::del_elem_insecure(key_type_ t_key)
{
  hashmap<obj_type, key_type_, hash_type, alloc_type>::erase(t_key);
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
vector<key_type_>*
shashmap<obj_type, key_type_, hash_type, alloc_type>::get_key_vector()
{
  pthread_mutex_lock( &mut_shashmap );
  vector<key_type_>* p_vec = hashmap<obj_type, key_type_, hash_type, alloc_type>::get_key_vector();
  pthread_mutex_unlock( &mut_shashmap );
  return p_vec;
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
void
shashmap<obj_type, key_type_, hash_type, alloc_type>::clear()
{
  pthread_mutex_lock( &mut_shashmap );
  hashmap<obj_type, key_type_, hash_type, alloc_type>::clear();
  pthread_mutex_unlock( &mut_shashmap );
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
int
shashmap<obj_type, key_type_, hash_type, alloc_type>::size()
{
  pthread_mutex_lock( &mut_shashmap );
  int i_size = hashmap<obj_type, key_type_, hash_type, alloc_type>::size();
  pthread_mutex_unlock( &mut_shashmap );
  return i_size;
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
bool
shashmap<obj_type, key_type_, hash_type, alloc_type>::exists(key_type_ t_key)
{
  pthread_mutex_lock( &mut_shashmap );
  bool b_ret = hashmap<obj_type, key_type_, hash_type, alloc_type>::exists(t_key);
  pthread_mutex_unlock( &mut_shashmap );
  return b_ret;
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
void
shashmap<obj_type, key_type_, hash_type, alloc_type>::run_func( void (*func)(obj_type) )
{
  pthread_mutex_lock( &mut_shashmap );
  hashmap<obj_type, key_type_, hash_type, alloc_type>::run_func(func);
  pthread_mutex_unlock( &mut_shashmap );
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
void
shashmap<obj_type, key_type_, hash_type, alloc_type>::run_func( void (*func)(obj_type, void*), void* v_arg )
{
  pthread_mutex_lock( &mut_shashmap );
  hashmap<obj_type, key_type_, hash_type, alloc_type>::run_func(func, v_arg);
  pthread_mutex_unlock( &mut_shashmap );
}

template<class obj_type, class key_type_, class hash_type, class alloc_type>
void
shashmap<obj_type, key_type_, hash_type, alloc_type>::dumpit()
{
  dumpable::add("[shashmap]");
  vector<key_type_>* p_vec = get_key_vector();

  typename vector<key_type_>::iterator iter;
  for (iter = p_vec->begin(); iter != p_vec->end(); ++iter)
    dumpable::add(*iter);

  delete p_vec;
}