/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #include "Swiften/Network/BoostTimer.h" #include #include #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)); } } }