/* * Copyright (c) 2010 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #include #include #include #include #include namespace Swift { BoostTimer::BoostTimer(int milliseconds, boost::shared_ptr 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()); } } }