libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
TimerFD.cxx
1// cosmos
2#include <cosmos/dso_export.h>
3#include <cosmos/error/ApiError.hxx>
4#include <cosmos/error/RuntimeError.hxx>
5#include <cosmos/formatting.hxx>
6#include <cosmos/private/cosmos.hxx>
7#include <cosmos/time/TimerFD.hxx>
8#include <cosmos/utils.hxx>
9
10namespace cosmos {
11
12template <ClockType CLOCK>
14 close();
15
16 if (auto fd = timerfd_create(to_integral(CLOCK), flags.raw()); FileNum{fd} != FileNum::INVALID) {
17 this->open(FileDescriptor{FileNum{fd}}, AutoCloseFD{true});
18 return;
19 }
20
21 cosmos_throw (ApiError("timerfd_create()"));
22}
23
24template <ClockType CLOCK>
26 TimerSpec ret;
27
28 if (auto res = timerfd_gettime(to_integral(m_fd.raw()), &ret); res != 0) {
29 cosmos_throw (ApiError("timerfd_gettime()"));
30 }
31
32 return ret;
33}
34
35template <ClockType CLOCK>
36void TimerFD<CLOCK>::setTime(const TimerSpec spec, const StartFlags flags) {
37 if (timerfd_settime(
38 to_integral(m_fd.raw()),
39 flags.raw(),
40 &spec,
41 nullptr) == 0) {
42 return;
43 }
44
45 cosmos_throw (ApiError("timerfd_settime()"));
46}
47
48template <ClockType CLOCK>
50 uint64_t ret;
51
52 const auto bytes = this->read(reinterpret_cast<void*>(&ret), sizeof(ret));
53
54 // from the man page I deduce that short reads should not be possible
55 // (reads with less than 8 bytes return EINVAL)
56 if (bytes != sizeof(ret)) {
57 cosmos_throw (RuntimeError("Short read on timer fd"));
58 }
59
60 return ret;
61}
62
63template class TimerFD<ClockType::BOOTTIME>;
65template class TimerFD<ClockType::REALTIME>;
66
67} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
EnumBaseType raw() const
Returns the raw bitfield integer.
Definition BitMask.hxx:56
Thin Wrapper around OS file descriptors.
Exception type for generic runtime errors.
Timers that notify via file descriptors.
Definition TimerFD.hxx:37
uint64_t wait()
Waits on the timer returning the tick count.
Definition TimerFD.cxx:49
TimerSpec getTime() const
Returns the current timer settings from the kernel.
Definition TimerFD.cxx:25
void setTime(const TimerSpec spec, const StartFlags flags=StartFlags{})
Arm the timer using the given settings and flags.
Definition TimerFD.cxx:36
void create(const CreateFlags flags=CreateFlags{CreateFlag::CLOEXEC})
Creates a new timer fd using the given flags.
Definition TimerFD.cxx:13
FileNum
Primitive file descriptor.
Definition types.hxx:32
Combined start time and repeat interval for a TimerFD setting.
Definition TimerFD.hxx:65