summaryrefslogtreecommitdiffstats
blob: d6120e3c41b42049f3f0bb15a8d66146930284e1 (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
35
36
37
#include "Swiften/Network/Timer.h"

#include <boost/date_time/posix_time/posix_time.hpp>

#include "Swiften/EventLoop/MainEventLoop.h"

namespace Swift {

Timer::Timer(int milliseconds, boost::asio::io_service* service) :
		timeout(milliseconds), timer(*service) {
}

Timer::~Timer() {
	stop();
}

void Timer::start() {
	timer.expires_from_now(boost::posix_time::milliseconds(timeout));
	timer.async_wait(boost::bind(&Timer::handleTimerTick, shared_from_this(), boost::asio::placeholders::error));
}

void Timer::stop() {
	timer.cancel();
}

void Timer::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(&Timer::handleTimerTick, shared_from_this(), boost::asio::placeholders::error));
	}
}

}