GM6000 Digital Heater Controller Branch: main
SDX-1330
PeriodicScheduler.h
Go to the documentation of this file.
1#ifndef Cpl_Its_PeriodicScheduler_h_
2#define Cpl_Its_PeriodicScheduler_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
17
18
19///
20namespace Cpl {
21///
22namespace Itc {
23
24/** This class extends the Cpl::Itc::MailboxServer class to add periodic scheduling
25 to an event based 'thread'. The timing resolution of the periodic scheduling
26 is a determined by the 'timingTickInMsec' argument value in the class's
27 constructor. For example if 'timingTickInMsec' is 10ms then no interval
28 should have a interval duration less than 10ms.
29
30 The order of processing is:
31
32 1. Event Flags are processed. Events are processed in LSb order.
33 2. The timers and their callbacks (if any timers have expired) are
34 processed.
35 3. The Periodic scheduler's executeScheduler() method is called
36 4. A single ITC message (it there is on pending) is dispatched.
37 5. The optional 'Idle' function is called.
38 6. The loop is repeated until there are no expired timers, no event
39 flags, no MP change notifications, and no ITC messages - at which
40 point the thread blocks and wait for any of the above asynchronous
41 actions to wake up the thread.
42
43 */
45{
46public:
47 /** Defines an optional method that is called every time the Runnable's
48 object executes its event/scheduling loop
49 */
50 typedef void (*IdleFunc_T)(Cpl::System::ElapsedTime::Precision_T currentTick, bool atLeastOneIntervalExecuted);
51
52
53public:
54 /** Constructor. The argument 'timingTickInMsec' specifies the timing
55 resolution that will be used for Cpl::Timer::Local Timers AND for the
56 periodic scheduling.
57 */
59 Hook_T beginThreadProcessing = nullptr,
60 Hook_T endThreadProcessing = nullptr,
61 ReportSlippageFunc_T slippageFunc = nullptr,
63 IdleFunc_T idleFunc = nullptr,
64 unsigned long timingTickInMsec = OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD,
65 Cpl::System::SharedEventHandlerApi* eventHandler = 0 ) noexcept;
66
67public:
68 /// See Cpl::System::Runnable
69 void appRun();
70
71
72protected:
73 /// Cache the Idle function pointer
75};
76
77}; // end namespaces
78};
79#endif // end header latch
#define OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD
Specifies the default timeout period for waiting on a event.
Definition EventLoop.h:26
This class collects the common functions of a generic server providing a mailbox and Event loop.
Definition MailboxServer.h:39
This class extends the Cpl::Itc::MailboxServer class to add periodic scheduling to an event based 'th...
Definition PeriodicScheduler.h:45
void appRun()
See Cpl::System::Runnable.
PeriodicScheduler(Interval_T intervals[], Hook_T beginThreadProcessing=nullptr, Hook_T endThreadProcessing=nullptr, ReportSlippageFunc_T slippageFunc=nullptr, NowFunc_T nowFunc=Cpl::System::ElapsedTime::precision, IdleFunc_T idleFunc=nullptr, unsigned long timingTickInMsec=OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD, Cpl::System::SharedEventHandlerApi *eventHandler=0) noexcept
Constructor.
IdleFunc_T m_idleFunc
Cache the Idle function pointer.
Definition PeriodicScheduler.h:74
void(* IdleFunc_T)(Cpl::System::ElapsedTime::Precision_T currentTick, bool atLeastOneIntervalExecuted)
Defines an optional method that is called every time the Runnable's object executes its event/schedul...
Definition PeriodicScheduler.h:50
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
ElapsedTime::Precision_T(* NowFunc_T)()
Defines the function that returns current system.
Definition PeriodicScheduler.h:125
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
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
This abstract class defines the interface for a Shared Event Handler.
Definition SharedEventHandler.h:30
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