INSTINCT Code Coverage Report


Directory: src/
File: util/CallbackTimer.cpp
Date: 2025-02-07 16:54:41
Exec Total Coverage
Lines: 3 26 11.5%
Functions: 1 6 16.7%
Branches: 1 24 4.2%

Line Branch Exec Source
1 // This file is part of INSTINCT, the INS Toolkit for Integrated
2 // Navigation Concepts and Training by the Institute of Navigation of
3 // the University of Stuttgart, Germany.
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
9 #include "CallbackTimer.hpp"
10
11 #include <chrono>
12
13 336 CallbackTimer::~CallbackTimer()
14 {
15
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 336 times.
336 if (_execute.load(std::memory_order_acquire))
16 {
17 stop();
18 };
19 336 }
20
21 void CallbackTimer::stop()
22 {
23 _execute.store(false, std::memory_order_release);
24 if (_thd.joinable())
25 {
26 _thd.join();
27 }
28 }
29
30 void CallbackTimer::start(int interval, const std::function<void(void*)>& func, void* userData)
31 {
32 if (_execute.load(std::memory_order_acquire))
33 {
34 stop();
35 };
36 _interval.store(interval, std::memory_order_release);
37 _execute.store(true, std::memory_order_release);
38 _thd = std::thread([this, func, userData]() {
39 while (_execute.load(std::memory_order_acquire))
40 {
41 auto start = std::chrono::steady_clock::now();
42 func(userData);
43 // std::this_thread::sleep_for(
44 // std::chrono::milliseconds(_interval));
45
46 std::this_thread::sleep_until(start + std::chrono::milliseconds(_interval.load(std::memory_order_acquire)));
47 }
48 });
49 }
50
51 void CallbackTimer::setInterval(int interval)
52 {
53 _interval.store(interval, std::memory_order_release);
54 }
55
56 bool CallbackTimer::is_running() const noexcept
57 {
58 return (_execute.load(std::memory_order_acquire) && _thd.joinable());
59 }
60