GM6000 Digital Heater Controller Branch: main
SDX-1330
ElapsedTime.h
Go to the documentation of this file.
1#ifndef Cpl_System_ElaspedTime_h_
2#define Cpl_System_ElaspedTime_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 <stdint.h>
16#include <memory.h>
17
18
19///
20namespace Cpl {
21///
22namespace System {
23
24/** This class defines the interface for accessing the elapsed time since
25 power up and/or reset of the platform. Elapsed time in provided in
26 three different formats:milliseconds, seconds, and seconds with
27 milliseconds precision. All time formats are guaranteed to be
28 synchronized with each other.
29 */
31{
32public:
33 /// Data type for time in seconds with a 'fractional' millisecond precision
35 {
36 unsigned long m_seconds; //!< Total number of elapsed seconds
37 uint16_t m_thousandths; //!< fractional number of milliseconds (i.e. a value between 0 and 999)
38
39 /// Comparison operator (explicitly provided to avoid potential issue with pad bytes in the structure)
40 bool operator == ( Precision_T const other ) const
41 {
42 return m_seconds == other.m_seconds && m_thousandths == other.m_thousandths;
43 }
44
45 /// Not equals operator
46 bool operator != ( Precision_T const other ) const
47 {
48 return m_seconds != other.m_seconds || m_thousandths != other.m_thousandths;
49 }
50
51 /// Increment elapsed time by 'x'
53
54 /// Greater than (i.e. is this instance newer/more-recent then 'other')
55 bool operator > ( Precision_T const other ) const;
56
57 /// Greater than or equal (i.e. is this instance the same as 'other' or is it newer/more-recent then 'other')
58 bool operator >= ( Precision_T const other ) const;
59
60 /// less than (i.e. is this instance older then 'other')
61 bool operator < ( Precision_T const other ) const;
62
63 /// less than or equal (i.e. is this instance the same as 'other' or is it older then 'other')
64 bool operator <= ( Precision_T const other ) const;
65
66 /// Sets the Precision value from a millisecond value
68
69 /// Assign my value based on total milliseconds
71
72 /// Converts the instance's time into as a single 'large' integer value in milliseconds
73 uint64_t asFlatTime() const { return m_seconds * 1000 + m_thousandths; }
74
75 /// Sets the instance's time from a single 'large' integer value in milliseconds
76 void setFlatTime( uint64_t flatTimeInMs )
77 {
78 m_seconds = (unsigned long) (flatTimeInMs / 1000);
79 m_thousandths = (uint16_t) (flatTimeInMs % 1000);
80 }
81
82 /** Converts the instance's time to milliseconds. The result CAN be
83 incorrect if the actual number of milliseconds is greater than what
84 can be stored in an unsigned long (e.g. a 32 bit unsigned integer
85 can only contain ~47 days 'of milliseconds'). USE WITH CAUTION.
86 */
87 unsigned long asMilliseconds() const
88 {
89 return m_seconds * 1000 + m_thousandths;
90 }
91
92 public:
93 /// Constructor (to ensure any pad bytes get zero'd)
95 {
96 memset( (void*) this, 0, sizeof( Precision_T ) );
97 }
98
99 /// Constructor (to ensure any pad bytes get zero'd)
100 Precision_T( unsigned long seconds, uint16_t thousandths )
101 {
102 memset( (void*) this, 0, sizeof( Precision_T ) );
104 m_thousandths = thousandths;
105 }
106
107 /// Constructor (to ensure any pad bytes get zero'd)
108 Precision_T( uint64_t flatTimeInMs )
109 {
110 memset( (void*) this, 0, sizeof( Precision_T ) );
111 setFlatTime( flatTimeInMs );
112 }
113
114 /// Copy Constructor (to ensure any pad bytes get zero'd)
115 Precision_T( const Precision_T& other )
116 {
117 memcpy( (void*) this, (void*) &other, sizeof( Precision_T ) );
118 }
119
120 /// Copy operator
122 {
123 memcpy( (void*) this, (void*) &other, sizeof( Precision_T ) );
124 return *this;
125 }
126 };
127
128
129public:
130 /** This method returns the elapsed time, in seconds, since the system
131 was powered on and/or reset. The elapsed time is free running counter
132 that will roll over once the range of the data type is exceeded.
133 */
134 static unsigned long seconds() noexcept;
135
136
137 /** This method returns the elapsed time, in milliseconds, since the system
138 was powered on and/or reset. The elapsed time is free running counter
139 that will roll over once the range of the data type is exceeded.
140 */
141 static unsigned long milliseconds() noexcept;
142
143
144 /** This method returns the elapsed time, in seconds with milliseconds
145 precision, since the system was powered on and/or reset. The elapsed
146 second time is free running counter that will roll over once the range
147 of the data type is exceeded.
148 */
149 static Precision_T precision() noexcept;
150
151
152public:
153 /** This method returns the delta time, in milliseconds, between the
154 specified 'startTime' and 'endTime'. 'endTime' is defaulted to
155 NOW (i.e. a call to milliseconds(). The calculation properly
156 handles the scenario of when the has been 'roll over' between the
157 two times.
158 */
159 inline static unsigned long deltaMilliseconds( unsigned long startTime, unsigned long endTime = milliseconds() ) noexcept
160 {
161 return endTime - startTime;
162 }
163
164
165 /** This method returns the delta time, in seconds, between the
166 specified 'startTime' and 'endTime'. 'endTime' is defaulted to
167 NOW (i.e. a call to seconds(). The calculation properly
168 handles the scenario of when the has been 'roll over' between the
169 two times.
170 */
171 inline static unsigned long deltaSeconds( unsigned long startTime, unsigned long endTime = seconds() ) noexcept
172 {
173 return endTime - startTime;
174 }
175
176 /** This method returns the delta time, in Precision time, between the
177 specified 'startTime' and 'endTime'. 'endTime' is defaulted to
178 NOW (i.e. a call to precision(). The calculation properly
179 handles the scenario of when the has been 'roll over' between the
180 two times.
181 */
182 static Precision_T deltaPrecision( Precision_T startTime, Precision_T endTime = precision() ) noexcept;
183
184
185public:
186 /** This method returns true if the specified amount of time has elapsed
187 since the 'timeMarker'. The calculation properly handles the scenario
188 of when the has been 'roll over' between the 'timeMarker' and NOW.
189 */
190 inline static bool expiredMilliseconds( unsigned long timeMarker, unsigned long duration, unsigned long currentTime = milliseconds() ) noexcept
191 {
192 return deltaMilliseconds( timeMarker, currentTime ) >= duration;
193 }
194
195 /** This method returns true if the specified amount of time has elapsed
196 since the 'timeMarker'. The calculation properly handles the scenario
197 of when the has been 'roll over' between the 'timeMarker' and NOW.
198 */
199 inline static bool expiredSeconds( unsigned long timeMarker, unsigned long duration, unsigned long currentTime = seconds() ) noexcept
200 {
201 return deltaSeconds( timeMarker, currentTime ) >= duration;
202 }
203
204
205 /** This method returns true if the specified amount of time has elapsed
206 since the 'timeMarker'. The calculation properly handles the scenario
207 of when the has been 'roll over' between the 'timeMarker' and NOW.
208 */
209 static bool expiredPrecision( Precision_T timeMarker, Precision_T duration, Precision_T currentTime = precision() ) noexcept;
210
211
212
213public:
214 /** This method will initialize the contents 'dst' to the number of seconds
215 specified by 'seconds' and set the m_thousandths field to zero.
216 */
217 inline static void initializeWithSeconds( Precision_T& dst, unsigned long seconds )
218 {
219 dst.m_seconds = seconds; dst.m_thousandths = 0;
220 }
221
222 /** This method will initialize the contents of 'dst' to the number of
223 milliseconds specified by 'msec'. If 'msec' is greater than 1000, the
224 m_seconds field will be populate with the "overflow".
225 */
226 inline static void initializeWithMilliseconds( Precision_T& dst, unsigned long msec )
227 {
228 dst.m_seconds = msec / 1000; dst.m_thousandths = msec % 1000;
229 }
230
231public:
232 /** This method is the same as seconds(), EXCEPT that is ALWAYS guaranteed
233 to return elapsed time in 'real time'. See the Cpl::System::SimTick for
234 more details about real time vs. simulated time. It is recommended
235 the application NOT CALL this method because then that code can NOT
236 be simulated using the SimTick interface.
237 */
238 static unsigned long secondsInRealTime() noexcept;
239
240
241 /** This method is the same as milliseconds(), EXCEPT that is ALWAYS
242 guaranteed to return elapsed time in 'real time'. See the
243 Cpl::System::SimTick for more details about real time vs. simulated
244 time. It is recommended the application NOT CALL this method because
245 then that code can NOT be simulated using the SimTick interface.
246 */
247 static unsigned long millisecondsInRealTime() noexcept;
248
249
250 /** This method is the same as precision(), EXCEPT that is ALWAYS guaranteed
251 to return elapsed time in 'real time'. See the Cpl::System::SimTick for
252 more details about real time vs. simulated time. It is recommended
253 the application NOT CALL this method because then that code can NOT
254 be simulated using the SimTick interface.
255 */
257
258
259
260};
261
262
263}; // end namespaces
264};
265#endif // end header latch
266
This class defines the interface for accessing the elapsed time since power up and/or reset of the pl...
Definition ElapsedTime.h:31
static bool expiredSeconds(unsigned long timeMarker, unsigned long duration, unsigned long currentTime=seconds()) noexcept
This method returns true if the specified amount of time has elapsed since the 'timeMarker'.
Definition ElapsedTime.h:199
static unsigned long millisecondsInRealTime() noexcept
This method is the same as milliseconds(), EXCEPT that is ALWAYS guaranteed to return elapsed time in...
static unsigned long deltaMilliseconds(unsigned long startTime, unsigned long endTime=milliseconds()) noexcept
This method returns the delta time, in milliseconds, between the specified 'startTime' and 'endTime'.
Definition ElapsedTime.h:159
static unsigned long milliseconds() noexcept
This method returns the elapsed time, in milliseconds, since the system was powered on and/or reset.
static unsigned long secondsInRealTime() noexcept
This method is the same as seconds(), EXCEPT that is ALWAYS guaranteed to return elapsed time in 'rea...
static void initializeWithMilliseconds(Precision_T &dst, unsigned long msec)
This method will initialize the contents of 'dst' to the number of milliseconds specified by 'msec'.
Definition ElapsedTime.h:226
static Precision_T deltaPrecision(Precision_T startTime, Precision_T endTime=precision()) noexcept
This method returns the delta time, in Precision time, between the specified 'startTime' and 'endTime...
static Precision_T precisionInRealTime() noexcept
This method is the same as precision(), EXCEPT that is ALWAYS guaranteed to return elapsed time in 'r...
static unsigned long deltaSeconds(unsigned long startTime, unsigned long endTime=seconds()) noexcept
This method returns the delta time, in seconds, between the specified 'startTime' and 'endTime'.
Definition ElapsedTime.h:171
static unsigned long seconds() noexcept
This method returns the elapsed time, in seconds, since the system was powered on and/or reset.
static bool expiredMilliseconds(unsigned long timeMarker, unsigned long duration, unsigned long currentTime=milliseconds()) noexcept
This method returns true if the specified amount of time has elapsed since the 'timeMarker'.
Definition ElapsedTime.h:190
static bool expiredPrecision(Precision_T timeMarker, Precision_T duration, Precision_T currentTime=precision()) noexcept
This method returns true if the specified amount of time has elapsed since the 'timeMarker'.
static Precision_T precision() noexcept
This method returns the elapsed time, in seconds with milliseconds precision, since the system was po...
static void initializeWithSeconds(Precision_T &dst, unsigned long seconds)
This method will initialize the contents 'dst' to the number of seconds specified by 'seconds' and se...
Definition ElapsedTime.h:217
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
bool operator!=(Precision_T const other) const
Not equals operator.
Definition ElapsedTime.h:46
bool operator>(Precision_T const other) const
Greater than (i.e. is this instance newer/more-recent then 'other')
Precision_T(unsigned long seconds, uint16_t thousandths)
Constructor (to ensure any pad bytes get zero'd)
Definition ElapsedTime.h:100
bool operator==(Precision_T const other) const
Comparison operator (explicitly provided to avoid potential issue with pad bytes in the structure)
Definition ElapsedTime.h:40
Precision_T()
Constructor (to ensure any pad bytes get zero'd)
Definition ElapsedTime.h:94
void setFlatTime(uint64_t flatTimeInMs)
Sets the instance's time from a single 'large' integer value in milliseconds.
Definition ElapsedTime.h:76
uint16_t m_thousandths
fractional number of milliseconds (i.e.
Definition ElapsedTime.h:37
uint64_t asFlatTime() const
Converts the instance's time into as a single 'large' integer value in milliseconds.
Definition ElapsedTime.h:73
bool operator>=(Precision_T const other) const
Greater than or equal (i.e. is this instance the same as 'other' or is it newer/more-recent then 'oth...
Precision_T(const Precision_T &other)
Copy Constructor (to ensure any pad bytes get zero'd)
Definition ElapsedTime.h:115
bool operator<=(Precision_T const other) const
less than or equal (i.e. is this instance the same as 'other' or is it older then 'other')
Precision_T(uint64_t flatTimeInMs)
Constructor (to ensure any pad bytes get zero'd)
Definition ElapsedTime.h:108
Precision_T & operator+=(const Precision_T &x)
Increment elapsed time by 'x'.
unsigned long m_seconds
Total number of elapsed seconds.
Definition ElapsedTime.h:36
bool operator<(Precision_T const other) const
less than (i.e. is this instance older then 'other')
Precision_T & setFromMilliseconds(uint32_t milliseconds)
Sets the Precision value from a millisecond value.
unsigned long asMilliseconds() const
Converts the instance's time to milliseconds.
Definition ElapsedTime.h:87
Precision_T & operator=(uint32_t milliseconds)
Assign my value based on total milliseconds.