GM6000 Digital Heater Controller Branch: main
SDX-1330
Timer.h
Go to the documentation of this file.
1#ifndef Cpl_System_Timer_h_
2#define Cpl_System_Timer_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
16#include "Cpl/System/Counter_.h"
17
18
19///
20namespace Cpl {
21///
22namespace System {
23
24/** This mostly concrete interface defines the operations that can be performed
25 on a software timer. Software timers execute 'in-thread' in that all
26 operations (start, timer expired callbacks, etc.) are performed in a single
27 thread.
28
29 Because the timer context (i.e. the timer owner), timer methods and
30 callbacks all occur in the same thread, the timer context will never
31 receive a timer expired callback AFTER the timer's stop() method has been
32 called.
33
34 NOTES:
35 o The timer context must implement the following method:
36 virtual void expired( void ) noexcept;
37
38 o Because the timing source of an individual thread may NOT be a
39 clean divider of the timer duration, the timer duration is taken
40 as the minimum. For example: if the timing source has a resolution
41 of 20msec per count, and the timer duration on the start() timer
42 call is 5 msec, then the timer will expire after the next full count,
43 i.e. after 20msec, not 5msec. IT IS THE APPLICATION'S RESPONSIBILITY
44 TO MANAGE THE RESOLUTION OF THE TIMING SOURCES.
45 */
46class Timer : public CounterCallback_
47{
48protected:
49 /// The timer's tick source
51
52 /// Current count
53 unsigned long m_count;
54
55public:
56 /// Constructor
57 Timer( TimerManager& timingSource );
58
59 /// Constructor. Alternate constructor - that defers the assignment of the timing source
61
62public:
63 /** Starts the timer with an initial count down count duration of
64 'timerDurationInMilliseconds'. If the timer is currently running, the
65 timer is first stopped, and then restarted.
66 */
67 virtual void start( unsigned long timerDurationInMilliseconds ) noexcept;
68
69 /** Stops the timer. It is okay to call stop() even after the timer has
70 previously expired or explicitly stopped.
71 */
72 virtual void stop() noexcept;
73
74 /// Returns the current count (in milliseconds)
75 unsigned long count() const noexcept;
76
77public:
78 /** Sets the timing source. This method CAN ONLY BE CALLED when the
79 timer is has never been started or it has been stopped
80 */
81 virtual void setTimingSource( TimerManager& timingSource ) noexcept;
82
83protected: // CounterCallback_ API
84 /// See Cpl::System::CounterCallback_
85 void decrement( unsigned long milliseconds=1 ) noexcept;
86
87 /// See Cpl::System::CounterCallback_
88 void increment( unsigned long milliseconds ) noexcept;
89
90};
91
92
93/** This template class implements a Software Timer that is context
94 independent and allows for a single context to contain many Timers.
95
96 Template args:
97 CONTEXT Type of the Class that implements the context for the timer
98 */
99
100template <class CONTEXT>
101class TimerComposer : public Timer
102{
103public:
104 /** Definition of the call-back method that notifies the
105 context/client when the timer expires.
106 */
107 typedef void (CONTEXT::* TimerExpiredFunction_T)();
108
109private:
110 ///
111 CONTEXT & m_context;
112 ///
113 TimerExpiredFunction_T m_expiredFuncPtr;
114
115
116public:
117 /// Constructor
119 CONTEXT& timerContextInstance,
120 TimerExpiredFunction_T expiredCallbackFunc
121 );
122
123 /** Alternate Constructor that is used to defer the assignment of the time source.
124 When using this constructor - the Application logic is REQUIRED to use
125 the setTimingSource() method to set the timing source BEFORE the timer
126 is used.
127 */
128 TimerComposer( CONTEXT& timerContextInstance,
129 TimerExpiredFunction_T expiredCallbackFunc
130 );
131
132protected:
133 /// See Cpl::System::CounterCallback_
134 void expired() noexcept;
135};
136
137
138//==========================================================================
139// IMPLEMENTATION
140//==========================================================================
141
142/////////////////////
143template <class CONTEXT>
145(
146 TimerManager& timingSource,
147 CONTEXT& context,
148 TimerExpiredFunction_T expiredCallback
149)
150 :Timer( timingSource )
151 , m_context( context )
152 , m_expiredFuncPtr( expiredCallback )
153{
154}
155
156template <class CONTEXT>
158(
159 CONTEXT& context,
160 TimerExpiredFunction_T expiredCallback
161)
162 : Timer()
163 , m_context( context )
164 , m_expiredFuncPtr( expiredCallback )
165{
166}
167template <class CONTEXT>
169{
170 (m_context.*m_expiredFuncPtr)();
171}
172
173
174}; // end namespaces
175};
176#endif // end header latch
This abstract class defines the call-back interface for a Counter object.
Definition Counter_.h:31
This template class implements a Software Timer that is context independent and allows for a single c...
Definition Timer.h:102
TimerComposer(CONTEXT &timerContextInstance, TimerExpiredFunction_T expiredCallbackFunc)
Alternate Constructor that is used to defer the assignment of the time source.
Definition Timer.h:158
TimerComposer(TimerManager &timingSource, CONTEXT &timerContextInstance, TimerExpiredFunction_T expiredCallbackFunc)
Constructor.
Definition Timer.h:145
void expired() noexcept
See Cpl::System::CounterCallback_.
Definition Timer.h:168
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
Timer()
Constructor. Alternate constructor - that defers the assignment of the timing source
virtual void stop() noexcept
Stops the timer.
Timer(TimerManager &timingSource)
Constructor
virtual void setTimingSource(TimerManager &timingSource) noexcept
Sets the timing source.
TimerManager * m_timingSource
The timer's tick source.
Definition Timer.h:50
unsigned long m_count
Current count.
Definition Timer.h:53
unsigned long count() const noexcept
Returns the current count (in milliseconds)
void increment(unsigned long milliseconds) noexcept
See Cpl::System::CounterCallback_.
virtual void start(unsigned long timerDurationInMilliseconds) noexcept
Starts the timer with an initial count down count duration of 'timerDurationInMilliseconds'.
void decrement(unsigned long milliseconds=1) noexcept
See Cpl::System::CounterCallback_.
This mostly concrete class implements manages a list of Software Timers.
Definition TimerManager.h:36
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20