GM6000 Digital Heater Controller Branch: main
SDX-1330
PeriodicScheduler.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_PeriodicScheduler_h_
2#define Cpl_Dm_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 Dm {
23
24/** This class extends the Cpl::Dm::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 Model Point Change notification (if there is one pending) is
37 processed.
38 5. A single ITC message (it there is on pending) is dispatched.
39 6. The optional 'Idle' function is called.
40 7. The loop is repeated until there are no expired timers, no event
41 flags, no MP change notifications, and no ITC messages - at which
42 point the thread blocks and wait for any of the above asynchronous
43 actions to wake up the thread.
44
45 */
47{
48public:
49 /** Defines an optional method that is called every time the Runnable's
50 object executes its event/scheduling loop
51 */
52 typedef void (*IdleFunc_T)(Cpl::System::ElapsedTime::Precision_T currentTick, bool atLeastOneIntervalExecuted);
53
54
55public:
56 /** Constructor. The argument 'timingTickInMsec' specifies the timing
57 resolution that will be used for Cpl::Timer::Local Timers AND for the
58 periodic scheduling.
59 */
61 Hook_T beginThreadProcessing = nullptr,
62 Hook_T endThreadProcessing = nullptr,
63 ReportSlippageFunc_T slippageFunc = nullptr,
65 IdleFunc_T idleFunc = nullptr,
66 unsigned long timingTickInMsec = OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD,
67 Cpl::System::SharedEventHandlerApi* eventHandler = 0 ) noexcept;
68
69public:
70 /// See Cpl::System::Runnable
71 void appRun();
72
73protected:
74 /// Cache the Idle function pointer
76};
77
78}; // end namespaces
79};
80#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 extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This class extends the Cpl::Dm::MailboxServer class to add periodic scheduling to an event based 'thr...
Definition PeriodicScheduler.h:47
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:75
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:52
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