GM6000 Digital Heater Controller Branch: main
SDX-1330
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"
17#include "Cpl/Text/FString.h"
18#include <thread>
19
20
21///
22namespace Cpl {
23///
24namespace System {
25///
26namespace Cpp11 {
27
28/** This concrete class implements a Thread object using C++11 threads
29 */
31{
32protected:
33 /// Reference to the runnable object for the thread
35
36 /// ASCII name of the task
38
39 /// Thread ID
40 size_t m_threadID;
41
42 /// Option to allow simulate ticks
44
45 /// The thread synchronized message semaphore.
47
48 /// C++11 thread object
49 std::thread m_thread;
50
51
52public:
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
67
68public:
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
80
81 /// See Cpl::System::Thread
82 Runnable& getRunnable( void ) noexcept;
83
84public:
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
93private:
94 /// Entry point for all newly created threads
95 static void entryPoint( Thread* myThreadPtr );
96
97
98public:
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
105public:
106 /// Housekeeping
107 friend class Cpl::System::Thread;
108};
109
110
111}; // end namespaces
112};
113};
114#endif // end header latch
#define Cpl_System_Thread_NativeHdl_T
Defer the definition of the native thread handle to the application's 'platform'.
Definition Thread.h:23
This concrete class implements a Thread object using C++11 threads.
Definition Thread.h:31
size_t m_threadID
Thread ID.
Definition Thread.h:40
const char * getName() noexcept
See Cpl::System::Thread.
Cpl::System::Semaphore m_syncSema
The thread synchronized message semaphore.
Definition Thread.h:46
Cpl_System_Thread_NativeHdl_T getNativeHandle(void) noexcept
See Cpl::System::Thread.
bool isRunning(void) noexcept
See Cpl::System::Thread.
Runnable & getRunnable(void) noexcept
See Cpl::System::Thread.
bool m_allowSimTicks
Option to allow simulate ticks.
Definition Thread.h:43
int signal(void) noexcept
See Cpl::System::Signable.
Thread(Runnable &runnable, const char *name, bool allowSimTicks=true)
Constructor.
size_t getId() noexcept
See Cpl::System::Thread.
std::thread m_thread
C++11 thread object.
Definition Thread.h:49
Cpl::Text::FString< 64 > m_name
ASCII name of the task.
Definition Thread.h:37
int su_signal(void) noexcept
See Cpl::System::Signable.
Cpl::System::Runnable & m_runnable
Reference to the runnable object for the thread.
Definition Thread.h:34
This is an abstract class defines the interface for an object that is "executed" when a Thread object...
Definition Runnable.h:29
This semaphore class defines the interface for a Counting Semaphore.
Definition Semaphore.h:37
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
This template class represents a NULL terminated string of a specific length.
Definition FString.h:38
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20