59 explicit TimeSpec(time_t seconds,
long nano_seconds = 0) {
60 this->tv_sec = seconds;
61 this->tv_nsec = nano_seconds;
64 explicit TimeSpec(
const std::chrono::milliseconds ms) {
68 explicit TimeSpec(
const std::chrono::nanoseconds ns) {
79 bool isZero()
const {
return this->tv_sec == 0 && this->tv_nsec == 0; }
80 void reset() { this->tv_sec = 0; this->tv_nsec = 0; }
82 time_t getSeconds()
const {
return this->tv_sec; }
83 long getNanoseconds()
const {
return this->tv_nsec; }
85 void setSeconds(
const time_t seconds) { this->tv_sec = seconds; }
86 void setNanoseconds(
const long nano_seconds) { this->tv_nsec = nano_seconds; }
88 void addSeconds(
const time_t seconds) {
89 this->tv_sec += seconds;
92 void addNanoseconds(
const long nano_seconds) {
93 this->tv_nsec += nano_seconds;
96 TimeSpec& setAsMilliseconds(
const size_t milliseconds) {
97 auto left_ms = milliseconds % 1000;
98 this->tv_sec = (milliseconds - left_ms) / 1000;
99 this->tv_nsec = left_ms * 1000 * 1000;
103 TimeSpec& set(
const std::chrono::milliseconds ms) {
104 this->tv_sec = ms.count() / 1000;
105 this->tv_nsec = (ms.count() % 1000) * 1000 * 1000;
109 TimeSpec& set(
const std::chrono::nanoseconds ns) {
110 this->tv_sec = ns.count() / NANOSECOND_BASE;
111 this->tv_nsec = (ns.count() % NANOSECOND_BASE);
117 size_t ret = this->tv_sec * 1000;
118 ret += (this->tv_nsec / 1000 / 1000);
122 explicit operator std::chrono::milliseconds()
const {
126 bool operator<(
const TimeSpec &other)
const {
127 if (this->tv_sec < other.tv_sec)
129 else if (this->tv_sec != other.tv_sec)
133 if (this->tv_nsec < other.tv_nsec)
139 bool operator>=(
const TimeSpec &other)
const {
140 return !operator<(other);
143 bool operator==(
const TimeSpec &other)
const {
144 return this->tv_sec == other.tv_sec &&
145 this->tv_nsec == other.tv_nsec;
148 bool operator!=(
const TimeSpec &other)
const {
return !(*
this == other); }
150 bool operator<=(
const TimeSpec &other)
const {
151 return *
this < other || *
this == other;
154 TimeSpec operator-(
const TimeSpec &other)
const {
157 ret.tv_sec = this->tv_sec - other.tv_sec;
158 ret.tv_nsec = this->tv_nsec - other.tv_nsec;
160 if (ret.tv_nsec < 0) {
162 ret.tv_nsec += NANOSECOND_BASE;
168 TimeSpec operator+(
const TimeSpec &other)
const {
171 ret.tv_sec = this->tv_sec + other.tv_sec;
172 ret.tv_nsec = this->tv_nsec + other.tv_nsec;
174 if (ret.tv_nsec >= NANOSECOND_BASE) {
176 ret.tv_nsec -= NANOSECOND_BASE;
184 static constexpr long NANOSECOND_BASE{1000 * 1000 * 1000};