libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::TimeSpec< CLOCK > Class Template Reference

A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type. More...

#include <types.hxx>

+ Inheritance diagram for cosmos::TimeSpec< CLOCK >:

Public Member Functions

 TimeSpec (time_t seconds, long nano_seconds=0)
 
 TimeSpec (const std::chrono::milliseconds ms)
 
 TimeSpec (const std::chrono::nanoseconds ns)
 
 TimeSpec (const no_init_t)
 Deliberately don't initialize the members for performance reasons.
 
bool isZero () const
 
void reset ()
 
time_t getSeconds () const
 
long getNanoseconds () const
 
void setSeconds (const time_t seconds)
 
void setNanoseconds (const long nano_seconds)
 
void addSeconds (const time_t seconds)
 
void addNanoseconds (const long nano_seconds)
 
TimeSpecsetAsMilliseconds (const size_t milliseconds)
 
TimeSpecset (const std::chrono::milliseconds ms)
 
TimeSpecset (const std::chrono::nanoseconds ns)
 
size_t toMilliseconds () const
 Converts the time representation into a single milliseconds value.
 
 operator std::chrono::milliseconds () const
 
bool operator< (const TimeSpec &other) const
 
bool operator>= (const TimeSpec &other) const
 
bool operator== (const TimeSpec &other) const
 
bool operator!= (const TimeSpec &other) const
 
bool operator<= (const TimeSpec &other) const
 
TimeSpec operator- (const TimeSpec &other) const
 
TimeSpec operator+ (const TimeSpec &other) const
 

Static Protected Attributes

static constexpr long NANOSECOND_BASE {1000 * 1000 * 1000}
 

Detailed Description

template<ClockType CLOCK>
class cosmos::TimeSpec< CLOCK >

A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.

Definition at line 56 of file types.hxx.

Constructor & Destructor Documentation

◆ TimeSpec() [1/5]

template<ClockType CLOCK>
cosmos::TimeSpec< CLOCK >::TimeSpec ( time_t seconds,
long nano_seconds = 0 )
inlineexplicit

Definition at line 59 of file types.hxx.

59 {
60 this->tv_sec = seconds;
61 this->tv_nsec = nano_seconds;
62 }

◆ TimeSpec() [2/5]

template<ClockType CLOCK>
cosmos::TimeSpec< CLOCK >::TimeSpec ( const std::chrono::milliseconds ms)
inlineexplicit

Definition at line 64 of file types.hxx.

64 {
65 set(ms);
66 }

◆ TimeSpec() [3/5]

template<ClockType CLOCK>
cosmos::TimeSpec< CLOCK >::TimeSpec ( const std::chrono::nanoseconds ns)
inlineexplicit

Definition at line 68 of file types.hxx.

68 {
69 set(ns);
70 }

◆ TimeSpec() [4/5]

template<ClockType CLOCK>
cosmos::TimeSpec< CLOCK >::TimeSpec ( )
inline

Definition at line 72 of file types.hxx.

72{ reset(); }

◆ TimeSpec() [5/5]

template<ClockType CLOCK>
cosmos::TimeSpec< CLOCK >::TimeSpec ( const no_init_t )
inlineexplicit

Deliberately don't initialize the members for performance reasons.

Definition at line 75 of file types.hxx.

75 {
76
77 }

Member Function Documentation

◆ addNanoseconds()

template<ClockType CLOCK>
void cosmos::TimeSpec< CLOCK >::addNanoseconds ( const long nano_seconds)
inline

Definition at line 92 of file types.hxx.

92 {
93 this->tv_nsec += nano_seconds;
94 }

◆ addSeconds()

template<ClockType CLOCK>
void cosmos::TimeSpec< CLOCK >::addSeconds ( const time_t seconds)
inline

Definition at line 88 of file types.hxx.

88 {
89 this->tv_sec += seconds;
90 }

◆ getNanoseconds()

template<ClockType CLOCK>
long cosmos::TimeSpec< CLOCK >::getNanoseconds ( ) const
inline

Definition at line 83 of file types.hxx.

83{ return this->tv_nsec; }

◆ getSeconds()

template<ClockType CLOCK>
time_t cosmos::TimeSpec< CLOCK >::getSeconds ( ) const
inline

Definition at line 82 of file types.hxx.

82{ return this->tv_sec; }

◆ isZero()

template<ClockType CLOCK>
bool cosmos::TimeSpec< CLOCK >::isZero ( ) const
inline

Definition at line 79 of file types.hxx.

79{ return this->tv_sec == 0 && this->tv_nsec == 0; }

◆ operator std::chrono::milliseconds()

template<ClockType CLOCK>
cosmos::TimeSpec< CLOCK >::operator std::chrono::milliseconds ( ) const
inlineexplicit

Definition at line 122 of file types.hxx.

122 {
123 return std::chrono::milliseconds{toMilliseconds()};
124 }
size_t toMilliseconds() const
Converts the time representation into a single milliseconds value.
Definition types.hxx:116

◆ operator!=()

template<ClockType CLOCK>
bool cosmos::TimeSpec< CLOCK >::operator!= ( const TimeSpec< CLOCK > & other) const
inline

Definition at line 148 of file types.hxx.

148{ return !(*this == other); }

◆ operator+()

template<ClockType CLOCK>
TimeSpec cosmos::TimeSpec< CLOCK >::operator+ ( const TimeSpec< CLOCK > & other) const
inline

Definition at line 168 of file types.hxx.

168 {
169 TimeSpec ret;
170
171 ret.tv_sec = this->tv_sec + other.tv_sec;
172 ret.tv_nsec = this->tv_nsec + other.tv_nsec;
173
174 if (ret.tv_nsec >= NANOSECOND_BASE) {
175 ++ret.tv_sec;
176 ret.tv_nsec -= NANOSECOND_BASE;
177 }
178
179 return ret;
180 }

◆ operator-()

template<ClockType CLOCK>
TimeSpec cosmos::TimeSpec< CLOCK >::operator- ( const TimeSpec< CLOCK > & other) const
inline

Definition at line 154 of file types.hxx.

154 {
155 TimeSpec ret;
156
157 ret.tv_sec = this->tv_sec - other.tv_sec;
158 ret.tv_nsec = this->tv_nsec - other.tv_nsec;
159
160 if (ret.tv_nsec < 0) {
161 --ret.tv_sec;
162 ret.tv_nsec += NANOSECOND_BASE;
163 }
164
165 return ret;
166 }

◆ operator<()

template<ClockType CLOCK>
bool cosmos::TimeSpec< CLOCK >::operator< ( const TimeSpec< CLOCK > & other) const
inline

Definition at line 126 of file types.hxx.

126 {
127 if (this->tv_sec < other.tv_sec)
128 return true;
129 else if (this->tv_sec != other.tv_sec)
130 return false;
131
132 // so seconds are equal
133 if (this->tv_nsec < other.tv_nsec)
134 return true;
135
136 return false;
137 }

◆ operator<=()

template<ClockType CLOCK>
bool cosmos::TimeSpec< CLOCK >::operator<= ( const TimeSpec< CLOCK > & other) const
inline

Definition at line 150 of file types.hxx.

150 {
151 return *this < other || *this == other;
152 }

◆ operator==()

template<ClockType CLOCK>
bool cosmos::TimeSpec< CLOCK >::operator== ( const TimeSpec< CLOCK > & other) const
inline

Definition at line 143 of file types.hxx.

143 {
144 return this->tv_sec == other.tv_sec &&
145 this->tv_nsec == other.tv_nsec;
146 }

◆ operator>=()

template<ClockType CLOCK>
bool cosmos::TimeSpec< CLOCK >::operator>= ( const TimeSpec< CLOCK > & other) const
inline

Definition at line 139 of file types.hxx.

139 {
140 return !operator<(other);
141 }

◆ reset()

template<ClockType CLOCK>
void cosmos::TimeSpec< CLOCK >::reset ( )
inline

Definition at line 80 of file types.hxx.

80{ this->tv_sec = 0; this->tv_nsec = 0; }

◆ set() [1/2]

template<ClockType CLOCK>
TimeSpec & cosmos::TimeSpec< CLOCK >::set ( const std::chrono::milliseconds ms)
inline

Definition at line 103 of file types.hxx.

103 {
104 this->tv_sec = ms.count() / 1000;
105 this->tv_nsec = (ms.count() % 1000) * 1000 * 1000;
106 return *this;
107 }

◆ set() [2/2]

template<ClockType CLOCK>
TimeSpec & cosmos::TimeSpec< CLOCK >::set ( const std::chrono::nanoseconds ns)
inline

Definition at line 109 of file types.hxx.

109 {
110 this->tv_sec = ns.count() / NANOSECOND_BASE;
111 this->tv_nsec = (ns.count() % NANOSECOND_BASE);
112 return *this;
113 }

◆ setAsMilliseconds()

template<ClockType CLOCK>
TimeSpec & cosmos::TimeSpec< CLOCK >::setAsMilliseconds ( const size_t milliseconds)
inline

Definition at line 96 of file types.hxx.

96 {
97 auto left_ms = milliseconds % 1000;
98 this->tv_sec = (milliseconds - left_ms) / 1000;
99 this->tv_nsec = left_ms * 1000 * 1000;
100 return *this;
101 }

◆ setNanoseconds()

template<ClockType CLOCK>
void cosmos::TimeSpec< CLOCK >::setNanoseconds ( const long nano_seconds)
inline

Definition at line 86 of file types.hxx.

86{ this->tv_nsec = nano_seconds; }

◆ setSeconds()

template<ClockType CLOCK>
void cosmos::TimeSpec< CLOCK >::setSeconds ( const time_t seconds)
inline

Definition at line 85 of file types.hxx.

85{ this->tv_sec = seconds; }

◆ toMilliseconds()

template<ClockType CLOCK>
size_t cosmos::TimeSpec< CLOCK >::toMilliseconds ( ) const
inline

Converts the time representation into a single milliseconds value.

Definition at line 116 of file types.hxx.

116 {
117 size_t ret = this->tv_sec * 1000;
118 ret += (this->tv_nsec / 1000 / 1000);
119 return ret;
120 }

Member Data Documentation

◆ NANOSECOND_BASE

template<ClockType CLOCK>
long cosmos::TimeSpec< CLOCK >::NANOSECOND_BASE {1000 * 1000 * 1000}
staticconstexprprotected

Definition at line 184 of file types.hxx.

184{1000 * 1000 * 1000};

The documentation for this class was generated from the following file: