-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path_test_boost_asio_timer.cpp
294 lines (248 loc) · 5.94 KB
/
_test_boost_asio_timer.cpp
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
/**
* @file _test_boost_asio_timer.cpp
* @brief This class implements steady timer object.
*
* @author Yonhgwhan, Roh ([email protected])
* @date 2014/12/27 17:44 created.
* @copyright All rights reserved by Yonghwan, Roh.
**/
#include "stdafx.h"
#include "_MyLib/src/log.h"
#include "_MyLib/src/Win32Utils.h"
#include <boost/asio.hpp>
#include <boost/asio/steady_timer.hpp>
#include <ppl.h>
#include <ppltasks.h>
void asio_on_timer(const boost::system::error_code& error);
bool test_boost_asio_timer_1();
bool test_boost_asio_timer_2();
bool test_boost_asio_timer_3();
bool test_boost_asio_timer_4();
/**
* @brief
* @param
* @see
* @remarks
* @code
* @endcode
* @return
**/
bool test_boost_asio_timer()
{
test_boost_asio_timer_1();
test_boost_asio_timer_2();
test_boost_asio_timer_3();
test_boost_asio_timer_4();
return true;
}
/**
* @brief
**/
void asio_on_timer( const boost::system::error_code& error )
{
if (!error) // true if no error
{
log_info "timer called." log_end
}
else
{
log_err "error code = %d, msg = %s", error.value(), error.message().c_str() log_end
}
}
/**
* @brief version 1 - 콜백 함수 이용
**/
bool test_boost_asio_timer_1()
{
boost::asio::io_service io_service;
boost::asio::steady_timer timer(io_service);
timer.expires_from_now(std::chrono::steady_clock::duration(1));
timer.async_wait( asio_on_timer );
io_service.run();
return true;
}
/**
* @brief v2 - lambda 를 이용한 타이머
**/
bool test_boost_asio_timer_2()
{
boost::asio::io_service io_service;
boost::asio::steady_timer timer(io_service);
timer.expires_from_now(std::chrono::steady_clock::duration(1));
timer.async_wait(
[](const boost::system::error_code& error)
{
if (!error) // true if no error
{
log_info "timer called. " log_end
}
else
{
log_err "error code = %d, msg = %s", error.value(), error.message().c_str() log_end
}
});
io_service.run();
return true;
}
/**
* @brief v3 - callback + 타이머이벤트 계속 발생하기, 취소
**/
void
print(
const boost::system::error_code& error,
boost::asio::steady_timer& timer,
int& count
)
{
if (!error)
{
if (count < 5)
{
log_info "timer called, %d th call", count log_end;
++(count);
timer.expires_from_now(std::chrono::steady_clock::duration(1));
timer.async_wait(boost::bind(print, boost::asio::placeholders::error,
boost::ref(timer),
boost::ref(count)));
}
else
{
// cancel timer
log_info "time canceled, %d th call", count log_end;
timer.cancel();
}
}
else if (boost::asio::error::operation_aborted == error.value())
{
std::cout << "timer canceled." << std::endl;
}
}
bool test_boost_asio_timer_3()
{
boost::asio::io_service io_service;
int count = 0;
boost::asio::steady_timer timer(io_service);
timer.async_wait(boost::bind(print,
boost::asio::placeholders::error,
boost::ref(timer),
boost::ref(count)));
io_service.run();
log_info "done. final count=%d. ", count log_end
return true;
}
/**
* @brief v3 - method binding + 타이머이벤트 계속 발생, 취소 ==> 클래스 버전
**/
class TimerClass
{
public:
TimerClass() : count(0)
{}
~TimerClass()
{}
public:
volatile int count;
void print(const boost::system::error_code& error,
boost::asio::steady_timer& timer)
{
if (!error)
{
if (count < 5)
{
log_info "timer called, %d th call", count log_end;
++(count);
timer.expires_from_now(std::chrono::steady_clock::duration(1));
timer.async_wait(boost::bind(&TimerClass::print,
this,
boost::asio::placeholders::error,
boost::ref(timer)));
}
else
{
// cancel timer
log_info "time canceled, %d th call", count log_end;
timer.cancel();
}
}
else if (boost::asio::error::operation_aborted == error.value())
{
std::cout << "timer canceled." << std::endl;
}
}
bool start_timer()
{
boost::asio::io_service io_service;
boost::asio::steady_timer timer(io_service);
timer.async_wait(boost::bind(&TimerClass::print,
this,
boost::asio::placeholders::error,
boost::ref(timer)));
io_service.run();
log_info "done. final count=%d. ", count log_end;
return true;
}
public :
boost::asio::steady_timer* _forever_timer;
void print_forever(const boost::system::error_code& error,
boost::asio::steady_timer* timer)
{
if (!error)
{
log_info "timer called, %d th call", count log_end;
++(count);
timer->expires_from_now(std::chrono::seconds(1));
timer->async_wait(boost::bind(&TimerClass::print_forever,
this,
boost::asio::placeholders::error,
timer));
}
else if (boost::asio::error::operation_aborted == error.value())
{
std::cout << "timer canceled." << std::endl;
}
}
bool start_forever_timer()
{
boost::asio::io_service _io_service;
count = 0;
_forever_timer = new boost::asio::steady_timer(_io_service);
_forever_timer->async_wait(boost::bind(&TimerClass::print_forever,
this,
boost::asio::placeholders::error,
_forever_timer));
_io_service.run();
//
// _forever_timer 취소되면 _io_service.run() 메소드가 리턴함
//
log_info "start_forever_timer() returned" log_end;
delete _forever_timer; _forever_timer = nullptr;
return true;
}
void stop_formever_timer()
{
if (nullptr == _forever_timer) return;
_forever_timer->cancel();
log_info "_forever_timer->cancel() called" log_end;
}
};
bool test_boost_asio_timer_4()
{
TimerClass tc;
//==============
// 유한 타이머
//==============
tc.start_timer();
//==============
// 무한 타이머를 실행하고,
// 3 초간 기다리다가
// 외부에서 타이머를 중지
//==============
auto timer_task = Concurrency::create_task([&]()->void
{
tc.start_forever_timer();
});
Sleep(1000 * 3);
tc.stop_formever_timer();
timer_task.wait();
return true;
}