-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThread.h
363 lines (314 loc) · 5.06 KB
/
Thread.h
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
#ifndef THREAD_H
#define THREAD_H
#ifdef WIN32
#else
#include <pthread.h>
#include <errno.h>
#endif
#include "Time_Value.h"
/***********************************************************************
使用简单封装
线程锁,对临界区进行了简单的封装
***********************************************************************/
class DDMutex
{
public:
/** Property
* - Summary:\n
*构造函数
*/
DDMutex();
public:
/** Method
* - Summary:\n
*析构函数,退出时删除昨界区
* - Parameters:\n
*
*/
~DDMutex(void);
/** Method
* - Summary:\n
*得到锁
* - Parameters:\n
*
*/
bool acquire(void);
/** Method
* - Summary:\n
*删除锁
* - Parameters:\n
*
*/
bool remove(void);
/** Method
* - Summary:\n
*释放锁
* - Parameters:\n
*
*/
bool release(void);
#ifdef WIN32
#else
pthread_mutex_t& get_handle()
{
return handle;
}
#endif
private:
#ifdef WIN32
CRITICAL_SECTION thr_mutex_;
#else
pthread_mutex_t handle;
#endif
};
////////////////////////////////////////////////////////////////////
/** ClassTtemplate
* - Summary:\n
*
*守卫类
* - TParameters:\n
*锁,传thread_mutex
*
*/
template<class TMUTEX>
class Thread_Guard
{
public:
Thread_Guard(TMUTEX& mutex):mutex_(mutex),owner_(0)
{
this->acquire();
}
~Thread_Guard()
{
this->release();
}
public:
inline int acquire(void)
{
this->owner_ = this->mutex_.acquire()?0:-1;
return this->owner_;
}
inline int locked(void)
{
return this->owner_ != -1;
}
inline int release(void)
{
if (this->owner_ == -1)
{
return -1;
}
else
{
this->owner_ = -1;
return this->mutex_.release();
}
}
TMUTEX& getMutex()
{
return mutex_;
}
protected:
TMUTEX& mutex_;
int owner_;
};
#define GUARD(MUTEX,OBJ,LOCK)\
GUARD_REACTION(MUTEX,OBJ,LOCK,return)
#define GUARD_EXCEPTION(MUTEX,OBJ,LOCK)\
GUARD_REACTION(MUTEX,OBJ,LOCK,throw exception("Lock Error!"))
#define GUARD_REACTION(MUTEX,OBJ,LOCK,REACTION)\
GUARD_ACTION(MUTEX, OBJ, LOCK,;,REACTION)
#define GUARD_RETURN(MUTEX,OBJ,LOCK,RETURN)\
GUARD_REACTION(MUTEX,OBJ,LOCK,return RETURN)
#define GUARD_ACTION(MUTEX,OBJ,LOCK,ACTION,REACTION) \
Thread_Guard<MUTEX> OBJ(LOCK); \
if (OBJ.locked () != 0) { ACTION; } \
else { REACTION; }
// 事件
class DDEvent
{
#ifdef WIN32
#else
struct event_t
{
bool state; // 有无信号状态
bool manual_reset; // 是否手动
pthread_mutex_t mutex;
pthread_cond_t cond;
};
#endif
public:
DDEvent(bool b_manual, bool binit_stat, const char* name);
~DDEvent();
bool signal (void);
/** Method
* - Summary:\n
* 关闭事件
* - Parameters:\n
*
* - return\n
* 0 is sucess,-1 is fails
*/
int remove (void);
/** Method
* - Summary:\n
* 等待事件
* - Parameters:\n
*
* - return\n
* 0 is sucess,-1 is fails
*/
int wait ();
/** Method
* - Summary:\n
* 等待事件
* - Parameters:\n
* Time_Value 对像,等待的时间
* - return\n
* 0 is sucess,-1 is fails 超时返回1
*/
int wait (Time_Value& time_value);
/** Method
* - Summary:\n
* 设轩为激发状态
* - Parameters:\n
*
* - return\n
* true is sucess false is fails
*/
bool reset (void);
private:
#ifdef WIN32
HANDLE event_handle_;
#else
event_t hevent;
#endif
/** Property
* - Summary:\n
*事件名字
*/
const char* name_;
int remove_;
};
#ifdef WIN32
class TF_cond_t
{
public:
TF_cond_t(void){}
~TF_cond_t(void){}
/** Property
* - Summary:\n
*等待个数
*/
long waiters_;
//long waiters(void) const;
/** Property
* - Summary:\n
*等待个数
*/
CRITICAL_SECTION waiters_lock_;
/** Property
* - Summary:\n
*信号量
*/
HANDLE sema_;
/** Property
* - Summary:\n
*在bostcast时的事件
*/
HANDLE waiters_done_;
/** Property
* - Summary:\n
*在bostcast时的标志
*/
size_t was_broadcast_;
};
#endif
/** ClassTtemplate
* - Summary:\n
*
*条件变量
* - TParameters:\n
*锁,传tf_mutex
*/
class DDCondition
{
public:
/** Method
* - Summary:\n
* 构造 创建互斥体,信号量和事件
* - Parameters:\n
* 1 锁,
*
*/
DDCondition(DDMutex& m, const char* name=0);
~DDCondition();
public:
/** Method
* - Summary:\n
*进入一个等待
* - Parameters:\n
*
*- return
*0 is sucess.1 si falid
*/
int wait();
/** Method
* - Summary:\n
*进入一个等待
* - Parameters:\n
* 1 等待的事间,超时返回0。如果传NULL则为无超时
*- return
*0 is sucess.1 si falid
*/
int wait(Time_Value& time_value);
/** Method
* - Summary:\n
*唤醒一个等待
* - Parameters:\n
*
*- return
*0 is sucess.1 si falid
*/
int signal();
/** Method
* - Summary:\n
*唤醒所有的等待
* - Parameters:\n
*
*- return
*0 is sucess.1 si falid
*/
int broadcast();
/** Method
* - Summary:\n
*关闭事件,信号量,锁
* - Parameters:\n
*
*- return
*0 is sucess.1 si falid
*/
int remove();
protected:
#ifdef WIN32
/** Property
* - Summary:\n
*内部cond对象
*/
TF_cond_t cond_;
#else
pthread_cond_t cond;
#endif
/** Property
* - Summary:\n
*锁
*/
DDMutex& mutex_;
private:
/** Property
* - Summary:\n
*名字,指向一个常量
*/
const char* name_;
};
#endif