libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
TimerFD.hxx
1#pragma once
2
3// Linux
4#include <sys/timerfd.h>
5
6// cosmos
7#include <cosmos/BitMask.hxx>
8#include <cosmos/fs/FDFile.hxx>
9#include <cosmos/time/Clock.hxx>
10
11namespace cosmos {
12
14
35template <ClockType CLOCK>
36class TimerFD :
37 protected FDFile {
38 // this is not copy/assignable
39 TimerFD(const TimerFD&) = delete;
40 TimerFD& operator=(const TimerFD&) = delete;
41public: // types
42
44 enum class CreateFlag : int {
46 NONBLOCK = TFD_NONBLOCK,
48 CLOEXEC = TFD_CLOEXEC
49 };
50
51 using CreateFlags = BitMask<CreateFlag>;
52
54 enum class StartFlag : int {
56 ABSTIME = TFD_TIMER_ABSTIME,
58 CANCEL_ON_SET = TFD_TIMER_CANCEL_ON_SET
59 };
60
61 using StartFlags = BitMask<StartFlag>;
62
64 struct TimerSpec :
65 public itimerspec {
66
69 initial().reset();
70 interval().reset();
71 }
72
74
84 // this is a bit hacky but allows us to return the C++
85 // interface for the raw timespec value
86 return *reinterpret_cast<TimeSpec<CLOCK>*>(&(this->it_value));
87 }
88
90
97 return *reinterpret_cast<TimeSpec<CLOCK>*>(&(this->it_interval));
98 }
99
101
108 interval() = initial();
109 }
110
113 interval().reset();
114 }
115 };
116
118 struct CreateT {};
119 static CreateT defaults;
120
121public:
122
124 TimerFD() = default;
125
127 explicit TimerFD(const CreateFlags flags) {
128 create(flags);
129 }
130
132
135 explicit TimerFD(const CreateT) {
136 create();
137 }
138
139 TimerFD(TimerFD &&other) noexcept {
140 *this = std::move(other);
141 }
142
143 TimerFD& operator=(TimerFD &&other) noexcept {
144 static_cast<FDFile&>(*this) = std::move(other);
145 return *this;
146 }
147
148 using FDFile::close;
149 using FileBase::fd;
150 using FileBase::isOpen;
151
153
164 void create(const CreateFlags flags = CreateFlags{CreateFlag::CLOEXEC});
165
167
176 void close() override {
178 }
179
181
186 void setTime(const TimerSpec spec, const StartFlags flags = StartFlags{});
187
189
197 TimerSpec getTime() const;
198
200
217 uint64_t wait();
218
220
225 void disarm() {
227 }
228};
229
230using RealTimeTimerFD = TimerFD<ClockType::REALTIME>;
231using MonotonicTimerFD = TimerFD<ClockType::MONOTONIC>;
232using BootTimeTimerFD = TimerFD<ClockType::BOOTTIME>;
233
234extern template class COSMOS_API TimerFD<ClockType::BOOTTIME>;
235extern template class COSMOS_API TimerFD<ClockType::MONOTONIC>;
236extern template class COSMOS_API TimerFD<ClockType::REALTIME>;
237
238} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
File objects that are opened from existing FileDescriptor objects.
Definition FDFile.hxx:16
void close() override
Close the current file object.
Definition FDFile.hxx:62
bool isOpen() const
Returns whether currently a FileDescriptor is opened.
Definition FileBase.hxx:71
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Definition FileBase.hxx:74
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
Definition types.hxx:57
Timers that notify via file descriptors.
Definition TimerFD.hxx:37
void close() override
Closes the timer fd.
Definition TimerFD.hxx:176
CreateFlag
Flags provided at TimerFD creation time.
Definition TimerFD.hxx:44
@ CLOEXEC
Sets the close-on-exec flag upon creation.
@ NONBLOCK
Create a non-blocking file descriptor.
TimerFD()=default
Creates an empty (invalid) timer fd.
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
TimerFD(const CreateT)
Creates a timer fd with default flags ready for operation.
Definition TimerFD.hxx:135
TimerFD(const CreateFlags flags)
Creates a timer fd with the given flags ready for operation.
Definition TimerFD.hxx:127
StartFlag
Flags available for starting a TimerFD.
Definition TimerFD.hxx:54
@ CANCEL_ON_SET
For RealTime based clocks report discontinous clock changes via Errno::CANCELED.
@ ABSTIME
Interpret the initial (not the interval!) timer setting as an absolute clock time value.
void setTime(const TimerSpec spec, const StartFlags flags=StartFlags{})
Arm the timer using the given settings and flags.
Definition TimerFD.cxx:36
void disarm()
Disarms any active timer settings, no more ticks will occur.
Definition TimerFD.hxx:225
void create(const CreateFlags flags=CreateFlags{CreateFlag::CLOEXEC})
Creates a new timer fd using the given flags.
Definition TimerFD.cxx:13
Helper type for construction of a ready-to-use TimerFD with default CreateFlags.
Definition TimerFD.hxx:118
Combined start time and repeat interval for a TimerFD setting.
Definition TimerFD.hxx:65
TimeSpec< CLOCK > & initial()
The initial tick time (relative or absolute) for the timer.
Definition TimerFD.hxx:83
void resetInterval()
Sets the interval to zero, thus creating a single-tick timer.
Definition TimerFD.hxx:112
void makeEqualInterval()
Sets the interval to the same value as the initial time.
Definition TimerFD.hxx:107
TimerSpec()
Creates all zero time specs.
Definition TimerFD.hxx:68
TimeSpec< CLOCK > & interval()
Timer tick repeat interval (relative) if any.
Definition TimerFD.hxx:96