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
|
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 );
}
|