Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
Thread.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_OS_LINUX_THREAD_H
4#define IMT_BASE_OS_LINUX_THREAD_H
5
6#include <atomic>
7#include <chrono>
8#include <condition_variable>
9#include <functional>
11#include <memory>
12#include <mutex>
13#include <string>
14#include <thread>
15
16namespace imt {
17namespace base {
18namespace os {
19namespace linux {
20
32class Thread final {
33
34public:
35
42 Thread(std::string const& threadName, ThreadSchedulingParams schedulingParams, std::function<void()> threadFunction) noexcept;
43
48
52 void start();
53
57 void stop() noexcept;
58
62 bool isStopRequested() const noexcept;
63
68 constexpr std::mutex& getMutex() noexcept {
69 return m_mutex;
70 }
71
76 constexpr std::condition_variable& getConditionVariable() noexcept {
77 return m_condition;
78 }
79
83 constexpr std::string const& getName() const noexcept {
84 return m_threadName;
85 }
86
92 void waitFor(std::chrono::milliseconds const waitTimeMs);
93
94 Thread(Thread const& source) = delete;
95 Thread(Thread&& source) noexcept = delete;
96 Thread& operator=(Thread const& source) = delete;
97 Thread& operator=(Thread&& source) noexcept = delete;
98
99private:
100
101 void runEndless();
102
103 std::string m_threadName;
104 ThreadSchedulingParams m_schedulingParams;
105 std::function<void()> m_threadFunction;
106 std::unique_ptr<std::thread> m_thread;
107 // AXIVION Next Line AutosarC++19_03-A12.1.3: All members initialized in constructor
108 std::atomic<bool> m_isStopRequested;
109 std::mutex m_mutex;
110 std::condition_variable m_condition;
111};
112
113} // namespace linux
114} // namespace os
115} // namespace base
116} // namespace imt
117
118#endif // IMT_BASE_OS_LINUX_THREAD_H
Provides a thread instance toghether with the infrastructure required to stop the thread as well as s...
Definition Thread.h:32
constexpr std::mutex & getMutex() noexcept
Gets the mutex associated with this thread.
Definition Thread.h:68
Thread & operator=(Thread const &source)=delete
constexpr std::string const & getName() const noexcept
Gets the name of this thread.
Definition Thread.h:83
bool isStopRequested() const noexcept
Gets whether a stop of the thread is requested.
Thread(std::string const &threadName, ThreadSchedulingParams schedulingParams, std::function< void()> threadFunction) noexcept
Constructor.
Thread(Thread const &source)=delete
Thread(Thread &&source) noexcept=delete
void start()
Starts execution of the thread.
Thread & operator=(Thread &&source) noexcept=delete
constexpr std::condition_variable & getConditionVariable() noexcept
Gets the condition variable associated with this thread.
Definition Thread.h:76
void waitFor(std::chrono::milliseconds const waitTimeMs)
Lets the current thread wait for the condition variable beeing set or the waitTimeMs to elapse.
void stop() noexcept
Stops execution of the thread.
Provides the parameters required to setup the scheduling of a thread.
This is a application specific file which is used to configure Imt.Base.Core.Math.