1#ifndef Cpl_System_ElaspedTime_h_
2#define Cpl_System_ElaspedTime_h_
78 m_seconds = (
unsigned long) (flatTimeInMs / 1000);
117 memcpy( (
void*)
this, (
void*) &other,
sizeof(
Precision_T ) );
123 memcpy( (
void*)
this, (
void*) &other,
sizeof(
Precision_T ) );
161 return endTime - startTime;
171 inline static unsigned long deltaSeconds(
unsigned long startTime,
unsigned long endTime =
seconds() ) noexcept
173 return endTime - startTime;
199 inline static bool expiredSeconds(
unsigned long timeMarker,
unsigned long duration,
unsigned long currentTime =
seconds() ) noexcept
201 return deltaSeconds( timeMarker, currentTime ) >= duration;
219 dst.m_seconds =
seconds; dst.m_thousandths = 0;
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.