GM6000 Digital Heater Controller Branch: main
SDX-1330
Thread.h
Go to the documentation of this file.
1#ifndef Cpl_System_Posix_Thread_h_
2#define Cpl_System_Posix_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 <pthread.h>
19
20///
21namespace Cpl {
22namespace System {
23namespace Posix {
24
25/** This concrete class implements a Thread object using Posix threads
26 */
28{
29protected:
30 /// Reference to the runnable object for the thread
32
33 /// ASCII name of the task
35
36 /// Thread ID
37 size_t m_threadID;
38
39 /// Option to allow simulated ticks
41
42 /// internal handle
43 pthread_t m_threadHandle;
44
45 /// The thread synchronized message semaphore.
47
48
49public:
50 /** Constructor.
51
52 o POSIX does not define/require specific Priority values, however
53 it does define that the priority range must be at 32 and the
54 a higher numerical value has higher priority... So the priority
55 values support ONLY a range of 32, with N+1 having a higher
56 priority than N. At run time, the HIGHEST/LOWEST bounds will be
57 mapped the actual range defined by the functions:
58 sched_get_priority_max(), sched_get_priority_min()
59
60 o The preferred schedType is SCHED_RR or SCHED_FIFO - BUT these
61 type require superuser privileges to work. All of us mere
62 mortals must use SCHED_OTHER. SCHED_OTHER is defined as
63 "normal scheduling" - what ever that means. The biggest problem
64 with SCHED_OTHER is that only ONE priority is supported -->BUMMER!
65 You can still pass different priority values with SCHED_OTHER -
66 but they will have no effect. The priority values WILL work if
67 SCHED_RR or SCHED_FIFO is specified.
68
69 o Does NOT support the application supplying the stack
70 memory.
71 */
72 Thread( Runnable& runnable,
73 const char* name,
75 unsigned stackSize = 0,
76 int schedType = SCHED_OTHER,
77 bool allowSimTicks = true
78 );
79
80 /// Destructor
82
83public:
84 /// See Cpl::System::Thread
85 const char* getName() noexcept;
86
87 /// See Cpl::System::Thread
88 size_t getId() noexcept;
89
90 /// See Cpl::System::Thread
91 bool isRunning( void ) noexcept;
92
93 /// See Cpl::System::Thread
95
96 /// See Cpl::System::Thread
97 Runnable& getRunnable( void ) noexcept;
98
99public:
100 /// See Cpl::System::Signable
101 int signal( void ) noexcept;
102
103 /// See Cpl::System::Signable
104 int su_signal( void ) noexcept;
105
106
107
108private:
109 /// Entry point for all newly created threads
110 static void* entryPoint( void* data );
111
112
113public:
114 /** Private constructor to convert the native Posix thread to a Cpl Thread.
115 THIS CONSTRUCTOR SHOULD NEVER BE USED BY THE APPLICATION!
116 */
117 Thread( Cpl::System::Runnable& dummyRunnable );
118
119
120public:
121 /// Housekeeping
122 friend class Cpl::System::Thread;
123};
124
125
126}; // end namespaces
127};
128};
129#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
#define CPL_SYSTEM_THREAD_PRIORITY_NORMAL
The recommended/default priority for a thread.
Definition Thread.h:30
This concrete class implements a Thread object using Posix threads.
Definition Thread.h:28
bool isRunning(void) noexcept
See Cpl::System::Thread.
Cpl::Text::FString< 64 > m_name
ASCII name of the task.
Definition Thread.h:34
pthread_t m_threadHandle
internal handle
Definition Thread.h:43
Cpl::System::Semaphore m_syncSema
The thread synchronized message semaphore.
Definition Thread.h:46
int signal(void) noexcept
See Cpl::System::Signable.
Cpl::System::Runnable & m_runnable
Reference to the runnable object for the thread.
Definition Thread.h:31
Thread(Runnable &runnable, const char *name, int priority=CPL_SYSTEM_THREAD_PRIORITY_NORMAL, unsigned stackSize=0, int schedType=SCHED_OTHER, bool allowSimTicks=true)
Constructor.
size_t m_threadID
Thread ID.
Definition Thread.h:37
Cpl_System_Thread_NativeHdl_T getNativeHandle(void) noexcept
See Cpl::System::Thread.
int su_signal(void) noexcept
See Cpl::System::Signable.
Runnable & getRunnable(void) noexcept
See Cpl::System::Thread.
bool m_allowSimTicks
Option to allow simulated ticks.
Definition Thread.h:40
size_t getId() noexcept
See Cpl::System::Thread.
const char * getName() noexcept
See Cpl::System::Thread.
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