blob: fdbd45dcd5ca1f5dfe4d275cc31d20f86744e760 (
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
|
#include "Swiften/Network/BoostTimer.h"
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/asio.hpp>
#include "Swiften/EventLoop/MainEventLoop.h"
namespace Swift {
BoostTimer::BoostTimer(int milliseconds, boost::asio::io_service* service) :
timeout(milliseconds), timer(*service) {
}
void BoostTimer::start() {
timer.expires_from_now(boost::posix_time::milliseconds(timeout));
timer.async_wait(boost::bind(&BoostTimer::handleTimerTick, shared_from_this(), boost::asio::placeholders::error));
}
void BoostTimer::stop() {
timer.cancel();
}
void BoostTimer::handleTimerTick(const boost::system::error_code& error) {
if (error) {
assert(error == boost::asio::error::operation_aborted);
}
else {
MainEventLoop::postEvent(boost::bind(boost::ref(onTick)), shared_from_this());
timer.expires_from_now(boost::posix_time::milliseconds(timeout));
timer.async_wait(boost::bind(&BoostTimer::handleTimerTick, shared_from_this(), boost::asio::placeholders::error));
}
}
}
|