GM6000 Digital Heater Controller
Branch: main
SDX-1330
Main Page
Namespaces
Components
Files
File List
File Members
Cpl
System
Cpp11
Thread.h
Go to the documentation of this file.
1
#ifndef Cpl_System_Cpp11_Thread_h_
2
#define Cpl_System_Cpp11_Thread_h_
3
/*-----------------------------------------------------------------------------
4
* This file is part of the Colony.Core Project. The Colony.Core Project is an
5
* open source project with a BSD type of licensing agreement. See the license
6
* agreement (license.txt) in the top/ directory or on the Internet at
7
* http://integerfox.com/colony.core/license.txt
8
*
9
* Copyright (c) 2014-2022 John T. Taylor
10
*
11
* Redistributions of the source code must retain the above copyright notice.
12
*----------------------------------------------------------------------------*/
13
/** @file */
14
15
#include "
Cpl/System/Thread.h
"
16
#include "
Cpl/System/Semaphore.h
"
17
#include "
Cpl/Text/FString.h
"
18
#include <thread>
19
20
21
///
22
namespace
Cpl
{
23
///
24
namespace
System {
25
///
26
namespace
Cpp11 {
27
28
/** This concrete class implements a Thread object using C++11 threads
29
*/
30
class
Thread
:
public
Cpl::System::Thread
31
{
32
protected
:
33
/// Reference to the runnable object for the thread
34
Cpl::System::Runnable
&
m_runnable
;
35
36
/// ASCII name of the task
37
Cpl::Text::FString<64>
m_name
;
38
39
/// Thread ID
40
size_t
m_threadID
;
41
42
/// Option to allow simulate ticks
43
bool
m_allowSimTicks
;
44
45
/// The thread synchronized message semaphore.
46
Cpl::System::Semaphore
m_syncSema
;
47
48
/// C++11 thread object
49
std::thread
m_thread
;
50
51
52
public
:
53
/** Constructor.
54
NOTE: Does NOT support the following:
55
56
o Assigning a thread priority
57
o Specifying the size of the thread stack
58
o Providing the stack memory
59
*/
60
Thread
(
Runnable
& runnable,
61
const
char
* name,
62
bool
allowSimTicks =
true
63
);
64
65
/// Destructor
66
~Thread
();
67
68
public
:
69
/// See Cpl::System::Thread
70
const
char
*
getName
() noexcept;
71
72
/// See Cpl::System::Thread
73
size_t
getId
() noexcept;
74
75
/// See Cpl::System::Thread
76
bool
isRunning
(
void
) noexcept;
77
78
/// See Cpl::System::Thread
79
Cpl_System_Thread_NativeHdl_T
getNativeHandle
(
void
) noexcept;
80
81
/// See Cpl::System::Thread
82
Runnable
&
getRunnable
(
void
) noexcept;
83
84
public:
85
/// See Cpl::System::Signable
86
int
signal
(
void
) noexcept;
87
88
/// See Cpl::System::Signable
89
int
su_signal
(
void
) noexcept;
90
91
92
93
private:
94
/// Entry point for all newly created threads
95
static
void
entryPoint(
Thread
* myThreadPtr );
96
97
98
public:
99
/** Private constructor to convert the native C++11 thread to a Cpl Thread.
100
THIS CONSTRUCTOR SHOULD NEVER BE USED BY THE APPLICATION!
101
*/
102
Thread
(
Cpl
::System::
Runnable
& dummyRunnable );
103
104
105
public:
106
/// Housekeeping
107
friend class
Cpl
::System::
Thread
;
108
};
109
110
111
};
// end namespaces
112
};
113
};
114
#endif
// end header latch
FString.h
Semaphore.h
Thread.h
Cpl_System_Thread_NativeHdl_T
#define Cpl_System_Thread_NativeHdl_T
Defer the definition of the native thread handle to the application's 'platform'.
Definition
Thread.h:23
Cpl::System::Cpp11::Thread
This concrete class implements a Thread object using C++11 threads.
Definition
Thread.h:31
Cpl::System::Cpp11::Thread::m_threadID
size_t m_threadID
Thread ID.
Definition
Thread.h:40
Cpl::System::Cpp11::Thread::getName
const char * getName() noexcept
See Cpl::System::Thread.
Cpl::System::Cpp11::Thread::m_syncSema
Cpl::System::Semaphore m_syncSema
The thread synchronized message semaphore.
Definition
Thread.h:46
Cpl::System::Cpp11::Thread::getNativeHandle
Cpl_System_Thread_NativeHdl_T getNativeHandle(void) noexcept
See Cpl::System::Thread.
Cpl::System::Cpp11::Thread::isRunning
bool isRunning(void) noexcept
See Cpl::System::Thread.
Cpl::System::Cpp11::Thread::getRunnable
Runnable & getRunnable(void) noexcept
See Cpl::System::Thread.
Cpl::System::Cpp11::Thread::m_allowSimTicks
bool m_allowSimTicks
Option to allow simulate ticks.
Definition
Thread.h:43
Cpl::System::Cpp11::Thread::signal
int signal(void) noexcept
See Cpl::System::Signable.
Cpl::System::Cpp11::Thread::~Thread
~Thread()
Destructor.
Cpl::System::Cpp11::Thread::Thread
Thread(Runnable &runnable, const char *name, bool allowSimTicks=true)
Constructor.
Cpl::System::Cpp11::Thread::getId
size_t getId() noexcept
See Cpl::System::Thread.
Cpl::System::Cpp11::Thread::m_thread
std::thread m_thread
C++11 thread object.
Definition
Thread.h:49
Cpl::System::Cpp11::Thread::m_name
Cpl::Text::FString< 64 > m_name
ASCII name of the task.
Definition
Thread.h:37
Cpl::System::Cpp11::Thread::su_signal
int su_signal(void) noexcept
See Cpl::System::Signable.
Cpl::System::Cpp11::Thread::m_runnable
Cpl::System::Runnable & m_runnable
Reference to the runnable object for the thread.
Definition
Thread.h:34
Cpl::System::Runnable
This is an abstract class defines the interface for an object that is "executed" when a Thread object...
Definition
Runnable.h:29
Cpl::System::Semaphore
This semaphore class defines the interface for a Counting Semaphore.
Definition
Semaphore.h:37
Cpl::System::Thread
This abstract class defines the operations that can be performed on a thread.
Definition
Thread.h:62
Cpl::Text::FString
This template class represents a NULL terminated string of a specific length.
Definition
FString.h:38
Cpl
The 'Cpl' namespace is the root name space for the Colony.
Definition
Api16.h:20
Generated on Sat Jan 18 2025 22:23:55 for GM6000 Digital Heater Controller by
1.9.8