1#ifndef Cpl_System_PeriodicScheduler_h_
2#define Cpl_System_PeriodicScheduler_h_
19#define CPL_SYSTEM_PERIODIC_SCHEDULAR_END_INTERVALS {nullptr,{0,0},nullptr}
150 Hook_T beginThreadProcessing =
nullptr,
151 Hook_T endThreadProcessing =
nullptr,
static Precision_T precision() noexcept
This method returns the elapsed time, in seconds with milliseconds precision, since the system was po...
This concrete class is a 'policy' object that is used to add polled based, cooperative monotonic sche...
Definition PeriodicScheduler.h:48
void(* IntervalCallbackFunc_T)(ElapsedTime::Precision_T currentTick, ElapsedTime::Precision_T currentInterval, void *context)
Definition for an interval method.
Definition PeriodicScheduler.h:68
PeriodicScheduler(Interval_T intervals[], Hook_T beginThreadProcessing=nullptr, Hook_T endThreadProcessing=nullptr, ReportSlippageFunc_T slippageFunc=nullptr, NowFunc_T nowFunc=ElapsedTime::precision)
Constructor.
ReportSlippageFunc_T m_reportSlippage
Report slippage method.
Definition PeriodicScheduler.h:194
ElapsedTime::Precision_T(* NowFunc_T)()
Defines the function that returns current system.
Definition PeriodicScheduler.h:125
Hook_T m_endThreadFunc
Application hook during thread shutdown.
Definition PeriodicScheduler.h:203
void setTimeMarker(Interval_T &interval, ElapsedTime::Precision_T currentTick) noexcept
Helper method to Round DOWN to the nearest 'interval' boundary.
void(* ReportSlippageFunc_T)(Interval_T &intervalThatSlipped, ElapsedTime::Precision_T currentTick, ElapsedTime::Precision_T missedInterval)
Defines the method that is used to report to the Application when an Interval does not execute 'on ti...
Definition PeriodicScheduler.h:115
Interval_T * m_intervals
List of Intervals Pointers.
Definition PeriodicScheduler.h:191
void(* Hook_T)(ElapsedTime::Precision_T currentTick)
Defines the optional functions that are used to provide hooks during startup/shutdown of the thread/l...
Definition PeriodicScheduler.h:131
virtual void endLoop()
This method is expected to be called ONCE when the 'thread' has exited its 'forever' loop (but before...
virtual void beginLoop()
This method is expected to be called ONCE when the 'thread' is started and prior to the thread enteri...
virtual bool executeScheduler()
This method is used to invoke the scheduler.
virtual ~PeriodicScheduler()
Virtual destructor.
Definition PeriodicScheduler.h:156
Hook_T m_beginThreadFunc
Application hook during thread start-up.
Definition PeriodicScheduler.h:200
NowFunc_T m_nowFunc
Current system callback.
Definition PeriodicScheduler.h:197
bool m_firstExecution
Flag to managing the 'first' execution.
Definition PeriodicScheduler.h:206
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
Data type for time in seconds with a 'fractional' millisecond precision.
Definition ElapsedTime.h:35
Defines an interval.
Definition PeriodicScheduler.h:76
IntervalCallbackFunc_T callbackFunc
Callback function pointer.
Definition PeriodicScheduler.h:77
IntervalCallbackFunc_T getCallbackFunction()
Data accessor.
Definition PeriodicScheduler.h:94
void * context
Optional Context for the callback.
Definition PeriodicScheduler.h:78
ElapsedTime::Precision_T getDuration()
Data accessor.
Definition PeriodicScheduler.h:97
ElapsedTime::Precision_T timeMarker
Internal Use ONLY: Marks the last time the interval executed
Definition PeriodicScheduler.h:80
ElapsedTime::Precision_T duration
The amount time in the Interval's period.
Definition PeriodicScheduler.h:79
Interval_T(IntervalCallbackFunc_T callbackFunc, ElapsedTime::Precision_T periodTime, void *context=nullptr)
Constructor.
Definition PeriodicScheduler.h:83
void * getContext()
Data accessor.
Definition PeriodicScheduler.h:100