![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the operations that can be performed on a thread. More...
This abstract class defines the operations that can be performed on a thread.
NOTE: The thread contains a built in counting semaphore that is usable by the developer. This semaphore can be used to assist in implementing inter-thread-communications and/or ISR-to-thread communications.
#include <Thread.h>
Classes | |
class | Traverser |
This abstract class defines the client interface for walking the list of threads, i.e. More... | |
Public Member Functions | |
virtual | ~Thread () |
Virtual destructor. | |
virtual const char * | getName () noexcept=0 |
This method returns the name (null terminated string) of the current thread. | |
virtual size_t | getId () noexcept=0 |
This method returns the task's unique identifier. | |
virtual bool | isRunning (void) noexcept=0 |
This method returns the 'running' state of the thread. | |
virtual Cpl_System_Thread_NativeHdl_T | getNativeHandle (void) noexcept=0 |
Returns the native thread handle. | |
virtual Runnable & | getRunnable (void) noexcept=0 |
This method returns a reference to the thread's Runnable object. | |
![]() | |
virtual | ~Signable () |
Virtual destructor. | |
virtual int | signal (void) noexcept=0 |
This method is called by client to cause the server to become unblock and ready to run. | |
virtual int | su_signal (void) noexcept=0 |
Same as signal(), EXCEPT this method can ONLY be called from supervisor mode and/or ISR contexts. | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
Static Public Member Functions | |
static Thread & | getCurrent () noexcept |
This method returns a reference to the currently executing thread. | |
static Thread * | tryGetCurrent () noexcept |
Special version of getCurrent(). | |
static void | wait () noexcept |
This method causes the CURRENT thread to wait until its 'thread semaphore' is signal/set. | |
static bool | tryWait () noexcept |
This method is similar to Semaphore::tryWait(), except that it operates on the thread semaphore. | |
static bool | timedWait (unsigned long timeoutInMsec) noexcept |
Same as wait(), except the call will return after 'timeoutInMsec' has expired without the thread being signaled. | |
static const char * | myName () noexcept |
Returns the name for the current thread (i.e. | |
static size_t | myId () noexcept |
Returns the ID for the current thread (i.e. | |
static Runnable & | myRunnable () noexcept |
This method returns a reference to the current thread' runnable instance. | |
static void | traverse (Thread::Traverser &client) noexcept |
Internal Iterator that allows the Client to traverse the list active threads. | |
static Thread * | create (Runnable &runnable, const char *name, int priority=CPL_SYSTEM_THREAD_PRIORITY_NORMAL, int stackSize=0, void *stackPtr=0, bool allowSimTicks=true) |
This method creates a thread according to the specified parameters. | |
static void | destroy (Thread &threadToDestroy) |
This method is used to destroy a thread that was created by the Thread Factory. | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
Additional Inherited Members | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
|
inlinevirtual |
Virtual destructor.
Reimplemented in Cpl::System::BareMetal::Thread, Cpl::System::Cpp11::Thread, Cpl::System::FreeRTOS::Thread, Cpl::System::Posix::Thread, and Cpl::System::Win32::Thread.
|
static |
This method creates a thread according to the specified parameters.
The thread/task begins execution immediately upon its creation.
NOTE: Not all platform support all options, e.g. The C++11 multi threading support does not directly support thread priorities.
runnable | a runnable object which is started when the task is created |
name | a null terminated string that represent that thread's name |
priority | a priority ranging from highest priority (CPL_SYSTEM_THREAD_PRIORITY_HIGHEST) to lowest priority (CPL_SYSTEM_THREAD_PRIORITY_LOWEST). Priorities are defined in relative 'levels' to the max/normal/min settings because there is no standardized priority settings across Operating Systems. If the priority value exceeds the upper/lower bounds the platform's priority range, the thread's priority will be clamped to the upper/lower bound of the priority range. |
stackSize | Requested size, in bytes, of the stack for the thread. A value of of zero will size the thread's stack per the platform's default stack size setting. |
stackPtr | Pointer to the stack memory to be used for the thread's stack. If zero is passed, then the underlying platform/OS will allocate the stack memory. |
allowSimTicks | With this argument is true the thread will be created to use/support simulated time when 'Simulate ticks' are enabled. A value false will force the thread to always be a 'real time' thread. See Cpl::System::SimTicks for more details about simulated time. |
|
static |
This method is used to destroy a thread that was created by the Thread Factory.
If you are going to delete a thread that was created by the Thread Factory, you MUST use the Factory's destroy method to delete it to properly insure that the memory used to create the task is released correctly.
NOTES:
o The application should only delete/destroy a thread AFTER the thread's Runnable object.run() method has ended/terminated. If the thread is destroy/delete before run() has completed, there is NO GUARANTEE with respect to whether or not the thread has released all acquired resources! o NOT ALL Platforms support brute-force termination of threads, e.g. in C++11 there is no method/interface to forcibly terminate a thread. Once again -->it is a HIGHLY DISCOURAGED to design your application where you need to forcibly terminate threads. o This method only deletes/destroys the Thread instance -- it does NOT delete/destroy the associated Runnable instance.
|
staticnoexcept |
This method returns a reference to the currently executing thread.
|
pure virtualnoexcept |
This method returns the task's unique identifier.
Implemented in Cpl::System::BareMetal::Thread, Cpl::System::Cpp11::Thread, Cpl::System::FreeRTOS::Thread, Cpl::System::Posix::Thread, and Cpl::System::Win32::Thread.
|
pure virtualnoexcept |
This method returns the name (null terminated string) of the current thread.
Implemented in Cpl::System::BareMetal::Thread, Cpl::System::Cpp11::Thread, Cpl::System::FreeRTOS::Thread, Cpl::System::Posix::Thread, and Cpl::System::Win32::Thread.
|
pure virtualnoexcept |
Returns the native thread handle.
Note: This handle can NOT be used a handle/reference/pointer to a Thread object instance.
Implemented in Cpl::System::BareMetal::Thread, Cpl::System::Cpp11::Thread, Cpl::System::FreeRTOS::Thread, Cpl::System::Posix::Thread, and Cpl::System::Win32::Thread.
|
pure virtualnoexcept |
This method returns a reference to the thread's Runnable object.
Implemented in Cpl::System::BareMetal::Thread, Cpl::System::Cpp11::Thread, Cpl::System::FreeRTOS::Thread, Cpl::System::Posix::Thread, and Cpl::System::Win32::Thread.
|
pure virtualnoexcept |
This method returns the 'running' state of the thread.
If the method returns false, the underlying thread has terminated (i.e. the run() method has completed) and then the Thread object/instance can be safely deleted using the destroy() method below.
Implemented in Cpl::System::BareMetal::Thread, Cpl::System::Cpp11::Thread, Cpl::System::FreeRTOS::Thread, Cpl::System::Posix::Thread, and Cpl::System::Win32::Thread.
|
staticnoexcept |
Returns the ID for the current thread (i.e.
short-hand for threadPtr->getCurrent().getId()
|
staticnoexcept |
Returns the name for the current thread (i.e.
short-hand for threadPtr->getCurrent().getName()
|
inlinestaticnoexcept |
This method returns a reference to the current thread' runnable instance.
|
staticnoexcept |
|
staticnoexcept |
Internal Iterator that allows the Client to traverse the list active threads.
NOTES: o There is difference between an "active" thread and a Thread object instance. The underlying platform/OS determines if the a thread is "active", i.e. the thread is created and running. The Thread object gets created BEFORE the thread is active and exists AFTER thread terminates/end. Why the explanation, this method only includes "active" threads. Threads that have terminated, but that their associated Thread object instance has not been delete/destroyed will NOT show up in the active list. o This call is mutex protected. It will prevent new threads from being created/deleted until it has completed.
|
staticnoexcept |
Special version of getCurrent().
getCurrent() will trigger a FATAL error when called from a NON CPL thread. tryGetCurrent() will return a nullptr when it detects that the current thread is NOT a CPL thread.
This method should ONLY be used when your application has mix of CPL and non-CPL threads, i.e. the default should be to use getCurrent().
|
staticnoexcept |
This method is similar to Semaphore::tryWait(), except that it operates on the thread semaphore.
|
staticnoexcept |
This method causes the CURRENT thread to wait until its 'thread semaphore' is signal/set.