summaryrefslogtreecommitdiff
path: root/implementation/service_discovery/src/fsm_base.cpp
blob: e3c234bd18bc1b0fbfc69c2c34a0224c1309c931 (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
// Copyright (C) 2014-2016 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include "../include/fsm_base.hpp"

namespace vsomeip {
namespace sd {

fsm_base::fsm_base(boost::asio::io_service &_io)
        : timer_(_io), alt_timer_(_io) {
}

fsm_base::~fsm_base() {
}

void fsm_base::start_timer(uint32_t _milliseconds, bool _use_alt_timer) {
    if (_use_alt_timer) {
        alt_timer_.expires_from_now(std::chrono::milliseconds(_milliseconds));
        alt_timer_.async_wait(
                std::bind(&fsm_base::timer_expired, shared_from_this(),
                        std::placeholders::_1, true));
    } else {
        timer_.expires_from_now(std::chrono::milliseconds(_milliseconds));
        timer_.async_wait(
                std::bind(&fsm_base::timer_expired, shared_from_this(),
                        std::placeholders::_1, false));
    }
}

void fsm_base::stop_timer(bool _use_alt_timer) {
    if (_use_alt_timer) {
        alt_timer_.cancel();
    } else {
        timer_.cancel();
    }
}

uint32_t fsm_base::expired_from_now(bool _use_alt_timer) {
    if (_use_alt_timer) {
        return (uint32_t) std::chrono::duration_cast < std::chrono::milliseconds
                > (alt_timer_.expires_from_now()).count();
    } else {
        return (uint32_t) std::chrono::duration_cast < std::chrono::milliseconds
                > (timer_.expires_from_now()).count();
    }
}

} // namespace sd
} // namespace vsomeip