libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Clock.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/dso_export.h>
5#include <cosmos/time/types.hxx>
6#include <cosmos/utils.hxx>
7
8namespace cosmos {
9
11
15template <ClockType CLOCK>
16class Clock {
17public: // functions
18
20 void now(TimeSpec<CLOCK> &ts) const;
21
25 now(ret);
26 return ret;
27 }
28
30
37
39
45 void setTime(const TimeSpec<CLOCK> t);
46
48
58 void sleep(const TimeSpec<CLOCK> until) const;
59
60 static ClockType raw() { return CLOCK; }
61};
62
63// the following clocks are explicitly instantiated in the compilation unit
64using AtomicRealTimeClock = Clock<ClockType::ATOMIC_REALTIME>;
65using BootTimeClock = Clock<ClockType::BOOTTIME>;
66using CoarseMonotonicClock = Clock<ClockType::MONOTONIC_COARSE>;
67using CoarseRealTimeClock = Clock<ClockType::REALTIME_COARSE>;
68using MonotonicClock = Clock<ClockType::MONOTONIC>;
69using ProcessTimeClock = Clock<ClockType::PROCESS_CPUTIME>;
70using RawMonotonicClock = Clock<ClockType::MONOTONIC_RAW>;
71using RealTimeClock = Clock<ClockType::REALTIME>;
72using ThreadTimeClock = Clock<ClockType::THREAD_CPUTIME>;
73
74extern template class COSMOS_API Clock<ClockType::ATOMIC_REALTIME>;
75extern template class COSMOS_API Clock<ClockType::BOOTTIME>;
76extern template class COSMOS_API Clock<ClockType::MONOTONIC>;
77extern template class COSMOS_API Clock<ClockType::MONOTONIC_COARSE>;
78extern template class COSMOS_API Clock<ClockType::MONOTONIC_RAW>;
79extern template class COSMOS_API Clock<ClockType::PROCESS_CPUTIME>;
80extern template class COSMOS_API Clock<ClockType::REALTIME>;
81extern template class COSMOS_API Clock<ClockType::REALTIME_COARSE>;
82extern template class COSMOS_API Clock<ClockType::THREAD_CPUTIME>;
83
84} // end ns
C++ wrapper around the POSIX clocks and related functions.
Definition Clock.hxx:16
void setTime(const TimeSpec< CLOCK > t)
Changes the current time value of the represented clock.
Definition Clock.cxx:44
void sleep(const TimeSpec< CLOCK > until) const
Suspend execution of the calling thread until the clock reaches the given time.
Definition Clock.cxx:53
TimeSpec< CLOCK > resolution() const
Returns the resolution/precision of the represented clock.
Definition Clock.cxx:32
TimeSpec< CLOCK > now() const
Returns the current value of the clock by value.
Definition Clock.hxx:23
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
Definition types.hxx:57
ClockType
Available clock types for time operations.
Definition types.hxx:29