blob: dd6bd0d4d372a0b672398cdad19d9e9eaec6a076 (
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
38
39
40
|
/*
* Copyright (c) 2010 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Swiften/Network/BoostTimer.h>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/asio.hpp>
#include <boost/bind.hpp>
#include <Swiften/EventLoop/EventLoop.h>
namespace Swift {
BoostTimer::BoostTimer(int milliseconds, boost::shared_ptr<boost::asio::io_service> service, EventLoop* eventLoop) :
timeout(milliseconds), ioService(service), timer(*service), eventLoop(eventLoop) {
}
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();
eventLoop->removeEventsFromOwner(shared_from_this());
}
void BoostTimer::handleTimerTick(const boost::system::error_code& error) {
if (error) {
assert(error == boost::asio::error::operation_aborted);
}
else {
eventLoop->postEvent(boost::bind(boost::ref(onTick)), shared_from_this());
}
}
}
|