-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDelegate.h
234 lines (195 loc) · 6.17 KB
/
Delegate.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
#pragma once
#include <boost/function.hpp>
#include <boost/bind.hpp>
#include <boost/scoped_ptr.hpp>
#include "Preprocessor.h"
#include "Types.h"
namespace Scan
{
/**
@brief 不含形参的委托类
将boost::function和boost::bind绑定到了一起
*/
template<typename ResultType = void>
class Delegate0
{
public:
ResultType operator () () const
{
return m_func();
}
Delegate0(){}
template<typename FuncType>
explicit Delegate0(FuncType f): m_func(f){}
template<typename FuncType>
Delegate0& bind(FuncType f)
{
m_func = f;
return *this;
}
#define _SCAN_DELEGATE0_CONSTRUCT_PARAM_N(n) \
template<typename FuncType, SCAN_PP_REPEAT_TYPENAME_TYPE_COMMA(n)> \
Delegate0(FuncType f, SCAN_PP_REPEAT_TYPE_PARAM_COMMA(n)): \
m_func(boost::bind(f, SCAN_PP_REPEAT_PARAM_COMMA(n))){}
#define _SCAN_DELEGATE0_BIND_PARAM_N(n) \
template<typename FuncType, SCAN_PP_REPEAT_TYPENAME_TYPE_COMMA(n)> \
Delegate0& bind(FuncType f, SCAN_PP_REPEAT_TYPE_PARAM_COMMA(n)) \
{ \
m_func = boost::bind(f, SCAN_PP_REPEAT_PARAM_COMMA(n)); \
return *this; \
}
// boost::bind实现了最多9个参数的绑定
SCAN_PP_REPEAT_LIMITED_DATA_EMPTY(1, 9, _SCAN_DELEGATE0_CONSTRUCT_PARAM_N);
SCAN_PP_REPEAT_LIMITED_DATA_EMPTY(1, 9, _SCAN_DELEGATE0_BIND_PARAM_N);
#undef _SCAN_DELEGATE0_CONSTRUCT_PARAM_N
#undef _SCAN_DELEGATE0_BIND_PARAM_N
private:
boost::function<ResultType()> m_func;
};
/**
@brief 含多个形参的委托
具体形参的个数通过boost::function<void(int, int, ...)>来指定
*/
template<typename FunctionType = boost::function<void()>>
class DelegateN
{
private:
typedef typename FunctionType::result_type ResultType;
public:
ResultType operator () () const
{
return m_func();
}
DelegateN(){}
template<typename FuncType>
explicit DelegateN(FuncType f): m_func(f){}
template<typename FuncType>
DelegateN& bind(FuncType f)
{
m_func = f;
return *this;
}
#define SCAN_DELEGATEN_CONSTRUCT_PARAM_N(n) \
template<typename FuncType, SCAN_PP_REPEAT_TYPENAME_TYPE_COMMA(n)> \
DelegateN(FuncType f, SCAN_PP_REPEAT_TYPE_PARAM_COMMA(n)): \
m_func(boost::bind(f, SCAN_PP_REPEAT_PARAM_COMMA(n))){}
#define SCAN_DELEGATEN_BIND_PARAM_N(n) \
template<typename FuncType, SCAN_PP_REPEAT_TYPENAME_TYPE_COMMA(n)> \
DelegateN& bind(FuncType f, SCAN_PP_REPEAT_TYPE_PARAM_COMMA(n)) \
{ \
m_func = boost::bind(f, SCAN_PP_REPEAT_PARAM_COMMA(n)); \
return *this; \
}
#define SCAN_DELEGATEN_OPERATOR_PARAM_N(n) \
template<SCAN_PP_REPEAT_TYPENAME_TYPE_COMMA(n)> \
ResultType operator () (SCAN_PP_REPEAT_TYPE_PARAM_COMMA(n)) const \
{ \
return m_func(SCAN_PP_REPEAT_PARAM_COMMA(n)); \
}
// boost::bind实现了最多9个参数的绑定
SCAN_PP_REPEAT_LIMITED_DATA_EMPTY(1, 9, SCAN_DELEGATEN_CONSTRUCT_PARAM_N);
SCAN_PP_REPEAT_LIMITED_DATA_EMPTY(1, 9, SCAN_DELEGATEN_BIND_PARAM_N);
SCAN_PP_REPEAT_LIMITED_DATA_EMPTY(1, 9, SCAN_DELEGATEN_OPERATOR_PARAM_N);
#undef SCAN_DELEGATEN_CONSTRUCT_PARAM_N
#undef SCAN_DELEGATEN_BIND_PARAM_N
#undef SCAN_DELEGATEN_OPERATOR_PARAM_N
private:
FunctionType m_func;
};
class DelegateThreadImpl;
class DelegateThread;
/**
@brief 委托线程观察者
*/
struct IDelegateThreadListener
{
/**
@brief 委托线程开始执行一个委托
@param delegateId 委托事件的标志
*/
virtual void onBeginCall(DelegateThread* td, void* delegateId){}
/**
@brief 委托线程结束一个委托的执行
*/
virtual void onEndCall(DelegateThread* td, void* delegateId){}
/**
@brief 委托线程进入休眠
*/
virtual void onThreadSleep(DelegateThread *) {};
/**
@brief 委托线程醒来
*/
virtual void onThreadWakeup(DelegateThread *) {};
virtual ~IDelegateThreadListener() = 0 {}
};
/**
@brief 委托线程
*/
class DelegateThread
{
public:
typedef Delegate0<> Delegate;
public:
DelegateThread();
~DelegateThread();
/**
@brief 让委托线程执行一个委托事件
@param id 这个委托事件的标记
@param priority 事件的优先级, 0最小
*/
void addCall(const Delegate& d, void* id, uint32 priority = 0);
void addListener(IDelegateThreadListener *p);
void removeListener(IDelegateThreadListener *p);
private:
/**
@brief 禁止拷贝
*/
DelegateThread(const DelegateThread&);
DelegateThread& operator = (const DelegateThread&);
private:
boost::scoped_ptr<DelegateThreadImpl> m_impl;
};
class DelegateThreadPoolImpl;
class DelegateThreadPool;
/**
@brief 委托线程池观察者
*/
struct IDelegateThreadPoolListener
{
virtual ~IDelegateThreadPoolListener() = 0 {}
/**
@brief 一个委托开始执行
*/
virtual void onBeginCall(DelegateThreadPool *p, void* delegateID) {}
/**
@brief 委托执行结束
*/
virtual void onEndCall(DelegateThreadPool *p, void* delegateID) {}
};
/**
@brief 委托线程池
*/
class DelegateThreadPool
{
public:
typedef Delegate0<> Delegate;
public:
/**
@brief 线程池允许自动增加的线程数
初始线程数是处理器核心数的两倍
*/
DelegateThreadPool(uint32 autoExtendCount = 0);
~DelegateThreadPool();
/**
@brief 添加一个要执行的委托
*/
void addCall(const Delegate& d, void* id, uint32 priority = 0);
void addListener(IDelegateThreadPoolListener *p);
void removeListener(IDelegateThreadPoolListener *p);
private:
DelegateThreadPool(const DelegateThreadPool&);
DelegateThreadPool& operator = (const DelegateThreadPool&);
private:
boost::scoped_ptr<DelegateThreadPoolImpl> m_impl;
};
}