summaryrefslogtreecommitdiffstats
blob: a17750411a0f2cc7e170537fca050ace1368c465 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Network/BoostTimer.h>

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

#include <Swiften/EventLoop/EventLoop.h>

namespace Swift {

BoostTimer::BoostTimer(int milliseconds, std::shared_ptr<boost::asio::io_service> service, EventLoop* eventLoop) :
        timeout(milliseconds), ioService(service), eventLoop(eventLoop), shuttingDown(false) {
        timer.reset(new boost::asio::deadline_timer(*service));
}

BoostTimer::~BoostTimer() {
    {
        std::unique_lock<std::mutex> lockTimer(timerMutex);
        timer.reset();
    }
}

void BoostTimer::start() {
    {
        std::unique_lock<std::mutex> lockTimer(timerMutex);
        shuttingDown = false;
        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() {
    {
        std::unique_lock<std::mutex> lockTimer(timerMutex);
        shuttingDown = true;
        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 {
        {
            std::unique_lock<std::mutex> lockTimer(timerMutex);
            if (shuttingDown) {
                return;
            }
            eventLoop->postEvent(boost::bind(boost::ref(onTick)), shared_from_this());
        }
    }
}

}