GM6000 Digital Heater Controller Branch: main
SDX-1330
TimerManager.h
Go to the documentation of this file.
1#ifndef Cpl_System_TimerManager_h_
2#define Cpl_System_TimerManager_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
15#include "Cpl/System/Counter_.h"
16#include "Cpl/Container/DList.h"
17
18
19///
20namespace Cpl {
21///
22namespace System {
23
24/** This mostly concrete class implements manages a list of Software Timers.
25 When an individual Timer object's count reaches zero, its callback method
26 is invoked and it is remove from the Active List. The Active List is
27 designed to be very efficient with respect to decrement counts when there
28 are many Timers in the list, i.e. the amount of time to decrement the
29 individual Timers is NOT a function of the number of active Timers.
30
31 The Timer Manager requires that the Timer Manager instances, all Timer
32 instances, add the Timer's Context (i.e. the code that executes the
33 timer expired callbacks) all execute in the SAME thread.
34 */
36{
37public:
38 /// Constructor
40
41
42public:
43 /** This method starts the Timer Manager. This method should be called
44 only once just before the Main/Event loop processing begins.
45
46 This method must be called from the same thread that the Timer Manager
47 executes in.
48 */
49 void startManager( void ) noexcept;
50
51 /** This method processes the current active timer lists. For each timer
52 that has expired, the timer's context callback method is called.
53 */
54 void processTimers( void ) noexcept;
55
56 /// Returns true if there are NO active timers
57 bool areActiveTimers( void ) noexcept;
58
59
60public:
61 /// See Cpl::System::CounterCallback_
62 void attach( CounterCallback_& clientToCallback ) noexcept;
63
64 /// See Cpl::System::CounterCallback_
65 bool detach( CounterCallback_& clientToCallback ) noexcept;
66
67 /// See Cpl::System::CounterCallback_
68 unsigned long msecToCounts( unsigned long milliseconds ) noexcept;
69
70protected:
71 /// Helper method.
72 void addToActiveList( CounterCallback_& clientToCallback ) noexcept;
73
74 /** This method is intended to be call by a the timing source and each
75 call to this method represents that one tick has expired, i.e. decrement
76 the active Counter objects' by one.
77 */
78 virtual void tick( unsigned long milliseconds=1 ) noexcept;
79
80 /** This method is used by the Tick source to information the Timer Manager
81 that there are no more ticks for the timing source's current tick cycle
82 */
83 virtual void tickComplete( void ) noexcept;
84
85protected:
86 /// List of active counters
87 Cpl::Container::DList<CounterCallback_> m_counters;
88
89 /// List of Pending-to-attach counters (this happens when timers attach from the timer-expired-callbacks)
91
92 /// Elapsed time of the previous processing cycle
93 unsigned long m_timeMark;
94
95 /// Elapsed time of the current processing cycle
96 unsigned long m_timeNow;
97
98 /// Flag to tracks when I am actively processing/consuming ticks
100};
101
102
103}; // end namespaces
104};
105#endif // end header latch
This abstract class defines the call-back interface for a Counter object.
Definition Counter_.h:31
This abstract class defines the interface for registering for an Counter object with the Timer Manage...
Definition Counter_.h:57
This mostly concrete class implements manages a list of Software Timers.
Definition TimerManager.h:36
unsigned long m_timeNow
Elapsed time of the current processing cycle.
Definition TimerManager.h:96
void startManager(void) noexcept
This method starts the Timer Manager.
bool detach(CounterCallback_ &clientToCallback) noexcept
See Cpl::System::CounterCallback_.
unsigned long m_timeMark
Elapsed time of the previous processing cycle.
Definition TimerManager.h:93
void attach(CounterCallback_ &clientToCallback) noexcept
See Cpl::System::CounterCallback_.
TimerManager()
Constructor.
virtual void tick(unsigned long milliseconds=1) noexcept
This method is intended to be call by a the timing source and each call to this method represents tha...
Cpl::Container::DList< CounterCallback_ > m_counters
List of active counters.
Definition TimerManager.h:87
void addToActiveList(CounterCallback_ &clientToCallback) noexcept
Helper method.
virtual void tickComplete(void) noexcept
This method is used by the Tick source to information the Timer Manager that there are no more ticks ...
unsigned long msecToCounts(unsigned long milliseconds) noexcept
See Cpl::System::CounterCallback_.
void processTimers(void) noexcept
This method processes the current active timer lists.
bool m_inTickCall
Flag to tracks when I am actively processing/consuming ticks.
Definition TimerManager.h:99
bool areActiveTimers(void) noexcept
Returns true if there are NO active timers.
Cpl::Container::DList< CounterCallback_ > m_pendingAttach
List of Pending-to-attach counters (this happens when timers attach from the timer-expired-callbacks)
Definition TimerManager.h:90
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20