libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Clock.cxx
1// C++
2#include <type_traits>
3
4// Cosmos
5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/private/cosmos.hxx>
7#include <cosmos/time/Clock.hxx>
8#include <cosmos/utils.hxx>
9
10namespace cosmos {
11
12// this is an important property since we want to take advantage of wrapping
13// existing struct timespec instances e.g. in FileStatus::getModeTime()
14static_assert(sizeof(RealTime) == sizeof(struct timespec));
15static_assert(sizeof(MonotonicTime) == sizeof(struct timespec));
16
17// this is sadly not true, because the type has custom constructors
18#if 0
19static_assert(std::is_trivial<RealTime>::value == true);
20#endif
21
22template <ClockType CLOCK>
24 auto res = clock_gettime(to_integral(CLOCK), &ts);
25
26 if (res != 0) {
27 cosmos_throw (ApiError("clock_gettime()"));
28 }
29}
30
31template <ClockType CLOCK>
34 auto res = clock_getres(to_integral(CLOCK), &ret);
35
36 if (res != 0) {
37 cosmos_throw (ApiError("clock_getres()"));
38 }
39
40 return ret;
41}
42
43template <ClockType CLOCK>
45 auto res = clock_settime(to_integral(CLOCK), &t);
46
47 if (res != 0) {
48 cosmos_throw (ApiError("clock_settime()"));
49 }
50}
51
52template <ClockType CLOCK>
53void Clock<CLOCK>::sleep(const TimeSpec<CLOCK> until) const {
54 while (true) {
55 auto res = clock_nanosleep(
56 to_integral(CLOCK),
57 TIMER_ABSTIME,
58 &until,
59 nullptr
60 );
61
62 const auto err = Errno{res};
63
64 switch(err) {
65 default: break;
66 case Errno::NO_ERROR: return;
67 case Errno::INTERRUPTED: {
68 if (auto_restart_syscalls) {
69 continue;
70 }
71 break;
72 }
73 }
74
75 cosmos_throw (ApiError("clock_nanosleep()", err));
76 }
77}
78
79/* explicit instantiations of the necessary clock variants */
81template class Clock<ClockType::BOOTTIME>;
82template class Clock<ClockType::MONOTONIC>;
86template class Clock<ClockType::REALTIME>;
89
90} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
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
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29