GM6000 Digital Heater Controller Branch: main
SDX-1330
Thread.h
Go to the documentation of this file.
1#ifndef Cpl_System_FreeRTOS_Thread_h_
2#define Cpl_System_FreeRTOS_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 "colony_config.h"
16#include "Cpl/System/Thread.h"
17#include "Cpl/System/Tls.h"
18#include "Cpl/Text/FString.h"
19#include "task.h"
20
21
22/** Provides the default stack size (since FreeRTOS does not provide one)
23 */
24#ifndef OPTION_CPL_SYSTEM_FREERTOS_DEFAULT_STACK_SIZE
25#define OPTION_CPL_SYSTEM_FREERTOS_DEFAULT_STACK_SIZE (1024*3)
26#endif
27
28
29// Forward declaration for making the Tls class a friend
30namespace Cpl {
31namespace System {
32class Tls;
33};
34};
35
36
37///
38namespace Cpl {
39namespace System {
40namespace FreeRTOS {
41
42/** This concrete class implements a Thread object using FreeRTOS threads
43 */
45{
46protected:
47 /// Reference to the runnable object for the thread
49
50 /// ASCII name of the task
52
53 /// internal handle
54 TaskHandle_t m_threadHandle;
55
56 /// Thread Local storage
58
59
60public:
61 /** Constructor.
62 o Does NOT support the application supplying the stack
63 memory. Stack memory is allocated from the HEAP
64
65 o If zero is passed as the stack size, then the default stack size
66 is set based on the OPTION_CPL_SYSTEM_FREERTOS_DEFAULT_STACK_SIZE
67 parameter.
68 */
69 Thread( Runnable& runnable,
70 const char* name,
72 unsigned stackSize = 0
73 );
74
75 /// Destructor
77
78public:
79 /// See Cpl::System::Thread
80 const char* getName() noexcept;
81
82 /// See Cpl::System::Thread
83 size_t getId() noexcept;
84
85 /// See Cpl::System::Thread
86 bool isRunning( void ) noexcept;
87
88 /// See Cpl::System::Thread
90
91 /// See Cpl::System::Thread
92 Runnable& getRunnable( void ) noexcept;
93
94
95public:
96 /// See Cpl::System::Signable
97 int signal( void ) noexcept;
98
99 /// See Cpl::System::Signable
100 int su_signal( void ) noexcept;
101
102
103
104private:
105 /// Entry point for all newly created threads
106 static void entryPoint( void* data );
107
108protected:
109 /// Returns access to the TLS key array
110 static void** getTlsArray() noexcept;
111
112
113public:
114 /** COMPONENT Scoped constructor to convert the native FreeRTOS thread to a
115 Cpl Thread. THIS CONSTRUCTOR SHOULD NEVER BE USED BY THE APPLICATION!
116 */
117 Thread( const char* threadName, Cpl::System::Runnable& dummyRunnable );
118
119 /** This is helper method to 'convert' the first/main FreeRTOS thread
120 to a CPL thread. The method can be called many times - but it
121 does the 'conversation' once. The motivation for this method was
122 working with the Arduino platform/framework where it creates
123 the first/main FreeRTOS thread.
124 */
126
127public:
128 /// Housekeeping
129 friend class Cpl::System::Thread;
130 friend class Cpl::System::Tls;
131};
132
133/** This is a helper class that can be used to make the current thread
134 a CPL thread. This class should only be used when the 'application'
135 contains active threads there were not created through the CPL
136 libraries APIs. For example: On the Arduino Feather52 platform,
137 the Arduino framework creates the 'main' thread.
138
139 ** ONLY USE THIS CLASS IF YOU KNOW WHAT YOU ARE DOING **
140 */
142{
143protected:
144 // Empty run function
145 // Note: Leave my 'running state' set to false -->this is so I don't
146 // terminate the native thread prematurely when/if the Thread instance
147 // is deleted. In theory this can't happen since the Thread and Runnable
148 // instance pointers for the native thread are never exposed to the
149 // application and/or explicitly deleted.
150 void appRun() {}
151
152
153public:
154 /// Converts the native thread to a CPL thread
155 MakeCurrentThreadACplThread( const char* threadName="main" )
156 {
157 // Create a thread object for the native thread
158 m_running = true;
159 new Cpl::System::FreeRTOS::Thread( threadName, *this );
160 }
161};
162
163
164}; // end namespaces
165};
166};
167#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
#define OPTION_CPL_SYSTEM_TLS_DESIRED_MIN_INDEXES
This constant defines the DESIRED minimum of number of TLS instances/index.
Definition Tls.h:30
This is a helper class that can be used to make the current thread a CPL thread.
Definition Thread.h:142
void appRun()
This method is called from the run() method.
Definition Thread.h:150
MakeCurrentThreadACplThread(const char *threadName="main")
Converts the native thread to a CPL thread.
Definition Thread.h:155
This concrete class implements a Thread object using FreeRTOS threads.
Definition Thread.h:45
Thread(Runnable &runnable, const char *name, int priority=CPL_SYSTEM_THREAD_PRIORITY_NORMAL, unsigned stackSize=0)
Constructor.
const char * getName() noexcept
See Cpl::System::Thread.
bool isRunning(void) noexcept
See Cpl::System::Thread.
static void makeNativeMainThreadACplThread(void)
This is helper method to 'convert' the first/main FreeRTOS thread to a CPL thread.
size_t getId() noexcept
See Cpl::System::Thread.
Runnable & getRunnable(void) noexcept
See Cpl::System::Thread.
void * m_tlsArray[OPTION_CPL_SYSTEM_TLS_DESIRED_MIN_INDEXES]
Thread Local storage.
Definition Thread.h:57
static void ** getTlsArray() noexcept
Returns access to the TLS key array.
int su_signal(void) noexcept
See Cpl::System::Signable.
Cpl_System_Thread_NativeHdl_T getNativeHandle(void) noexcept
See Cpl::System::Thread.
Cpl::Text::FString< configMAX_TASK_NAME_LEN > m_name
ASCII name of the task.
Definition Thread.h:51
TaskHandle_t m_threadHandle
internal handle
Definition Thread.h:54
int signal(void) noexcept
See Cpl::System::Signable.
Cpl::System::Runnable & m_runnable
Reference to the runnable object for the thread.
Definition Thread.h:48
This is an abstract class defines the interface for an object that is "executed" when a Thread object...
Definition Runnable.h:29
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
This concrete class defines the interface for Thread Local Storage (TLS).
Definition Tls.h:58
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