1#ifndef Cpl_System_SimTick_h_
2#define Cpl_System_SimTick_h_
17#include "colony_config.h"
33#ifndef OPTION_CPL_SYSTEM_SIM_TICK_MIN_TICKS_FOR_ADVANCE
34#define OPTION_CPL_SYSTEM_SIM_TICK_MIN_TICKS_FOR_ADVANCE 10
40#ifndef OPTION_CPL_SYSTEM_SIM_TICK_YEILD_SLEEP_TIME
41#define OPTION_CPL_SYSTEM_SIM_TICK_YEILD_SLEEP_TIME 1
44#ifdef USE_CPL_SYSTEM_SIM_TICK
48#define CPL_SYSTEM_SIM_TICK_TOP_LEVEL_WAIT() Cpl::System::SimTick::topLevelWait()
53#define CPL_SYSTEM_SIM_TICK_APPLICATION_WAIT() Cpl::System::SimTick::applicationWait()
59#define CPL_SYSTEM_SIM_TICK_USING_SIM_TICKS() Cpl::System::SimTick::usingSimTicks()
66#define CPL_SYSTEM_SIM_TICK_THREAD_INIT_(f) Cpl::System::SimTick::threadInit_(f)
73#define CPL_SYSTEM_SIM_TICK_ON_THREAD_EXIT_() Cpl::System::SimTick::onThreadExit_()
79#define CPL_SYSTEM_SIM_TICK_TOP_LEVEL_WAIT()
82#define CPL_SYSTEM_SIM_TICK_APPLICATION_WAIT()
85#define CPL_SYSTEM_SIM_TICK_USING_SIM_TICKS() false
88#define CPL_SYSTEM_SIM_TICK_THREAD_INIT_(f)
91#define CPL_SYSTEM_SIM_TICK_REAL_TIME_THREAD_INIT_()
94#define CPL_SYSTEM_SIM_TICK_ON_THREAD_EXIT_()
285 static bool advance(
size_t numTicks )
noexcept;
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This class defines methods for initializing the Colony.Core class library and other startup/init acti...
Definition Api.h:29
This class defines the interface for accessing the elapsed time since power up and/or reset of the pl...
Definition ElapsedTime.h:31
This semaphore class defines the interface for a Counting Semaphore.
Definition Semaphore.h:37
This class define the interface to provide a simulates system tick (in milliseconds) to the applicati...
Definition SimTick.h:236
static unsigned wakeUpWaiters(void) noexcept
Helper method.
static void applicationWait(void) noexcept
This method is used to support blocking calls (such as wait on semaphore, sleep(),...
bool m_ackPending
Flag that keeps track if I need to signal/ack-back to the tick source for the current tick.
Definition SimTick.h:319
Semaphore m_waiter
Semaphore used to wait on a simulated tick.
Definition SimTick.h:316
static void topLevelWait(void) noexcept
This method will cause the current thread to block UNTIL one simulated system tick has elapsed.
static size_t current(void) noexcept
This method returns the current simulated tick count.
static bool testAndQueue(SimTick *simInfoPtr) noexcept
Helper method. Returns true if the thread was queued for the next simulated tick.
static bool usingSimTicks(void) noexcept
This method returns true if the current thread is using 'simulated time'.
static void onThreadExit_(void) noexcept
This COMPONENT Scoped method is used during thread deletion to insert the necessary hooks (per thread...
size_t m_curTicks
The thread's current simulated time in ticks.
Definition SimTick.h:313
static bool advance(size_t numTicks) noexcept
Calling this method advances the application's time by 'numTicks'.
static unsigned getCurrentWaitersCount(void) noexcept
Helper method.
static void threadInit_(bool useSimTicks=true) noexcept
This COMPONENT Scoped method is used during thread creation to insert the necessary hooks (per thread...
size_t m_threadId
Thread ID of the thread using the simulate tick.
Definition SimTick.h:322
static bool isWaitingOnNextTick(size_t threadID) noexcept
This method returns true if the specified thread (by Thread ID) is blocked waiting on the next simula...
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20