1#ifndef Cpl_System_Thread_h_
2#define Cpl_System_Thread_h_
15#include "colony_map.h"
23#define Cpl_System_Thread_NativeHdl_T Cpl_System_Thread_NativeHdl_T_MAP
27#define CPL_SYSTEM_THREAD_PRIORITY_HIGHEST CPL_SYSTEM_THREAD_PRIORITY_HIGHEST_MAP
30#define CPL_SYSTEM_THREAD_PRIORITY_NORMAL CPL_SYSTEM_THREAD_PRIORITY_NORMAL_MAP
33#define CPL_SYSTEM_THREAD_PRIORITY_LOWEST CPL_SYSTEM_THREAD_PRIORITY_LOWEST_MAP
39#define CPL_SYSTEM_THREAD_PRIORITY_RAISE CPL_SYSTEM_THREAD_PRIORITY_RAISE_MAP
45#define CPL_SYSTEM_THREAD_PRIORITY_LOWER CPL_SYSTEM_THREAD_PRIORITY_LOWER_MAP
68 virtual const char*
getName() noexcept = 0;
71 virtual
size_t getId() noexcept = 0;
117 static
bool timedWait(
unsigned long timeoutInMsec ) noexcept;
212 bool allowSimTicks =
true
#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 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 interface by which a client can cause an object that is waiting-on-a-...
Definition Signable.h:28
This abstract class defines the client interface for walking the list of threads, i....
Definition Thread.h:139
virtual Cpl::Type::Traverser::Status_T item(Thread &nextThread)=0
This method is called once for ever item in the "traversee's" list.
virtual ~Traverser()
Virtual Destructor.
Definition Thread.h:142
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
static const char * myName() noexcept
Returns the name for the current thread (i.e.
static void destroy(Thread &threadToDestroy)
This method is used to destroy a thread that was created by the Thread Factory.
static bool timedWait(unsigned long timeoutInMsec) noexcept
Same as wait(), except the call will return after 'timeoutInMsec' has expired without the thread bein...
virtual Cpl_System_Thread_NativeHdl_T getNativeHandle(void) noexcept=0
Returns the native thread handle.
virtual size_t getId() noexcept=0
This method returns the task's unique identifier.
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 Runnable & myRunnable() noexcept
This method returns a reference to the current thread' runnable instance.
Definition Thread.h:130
static Thread * tryGetCurrent() noexcept
Special version of getCurrent().
static bool tryWait() noexcept
This method is similar to Semaphore::tryWait(), except that it operates on the thread semaphore.
virtual Runnable & getRunnable(void) noexcept=0
This method returns a reference to the thread's Runnable object.
static void wait() noexcept
This method causes the CURRENT thread to wait until its 'thread semaphore' is signal/set.
static Thread & getCurrent() noexcept
This method returns a reference to the currently executing thread.
static size_t myId() noexcept
Returns the ID for the current thread (i.e.
virtual bool isRunning(void) noexcept=0
This method returns the 'running' state of the thread.
virtual const char * getName() noexcept=0
This method returns the name (null terminated string) of the current thread.
virtual ~Thread()
Virtual destructor.
Definition Thread.h:65
static void traverse(Thread::Traverser &client) noexcept
Internal Iterator that allows the Client to traverse the list active threads.
Status_T
Return codes (for the callback method) that determine if the traversal should continue.
Definition Traverser.h:32
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20