4#include <sys/timerfd.h>
7#include <cosmos/BitMask.hxx>
8#include <cosmos/fs/FDFile.hxx>
9#include <cosmos/time/Clock.hxx>
35template <ClockType CLOCK>
140 *
this = std::move(other);
144 static_cast<FDFile&
>(*this) = std::move(other);
186 void setTime(
const TimerSpec spec,
const StartFlags flags = StartFlags{});
230using RealTimeTimerFD = TimerFD<ClockType::REALTIME>;
231using MonotonicTimerFD = TimerFD<ClockType::MONOTONIC>;
232using BootTimeTimerFD = TimerFD<ClockType::BOOTTIME>;
234extern template class COSMOS_API TimerFD<ClockType::BOOTTIME>;
235extern template class COSMOS_API TimerFD<ClockType::MONOTONIC>;
236extern template class COSMOS_API TimerFD<ClockType::REALTIME>;
A typesafe bit mask representation using class enums.
File objects that are opened from existing FileDescriptor objects.
void close() override
Close the current file object.
bool isOpen() const
Returns whether currently a FileDescriptor is opened.
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
Timers that notify via file descriptors.
void close() override
Closes the timer fd.
CreateFlag
Flags provided at TimerFD creation time.
@ 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.
TimerSpec getTime() const
Returns the current timer settings from the kernel.
TimerFD(const CreateT)
Creates a timer fd with default flags ready for operation.
TimerFD(const CreateFlags flags)
Creates a timer fd with the given flags ready for operation.
StartFlag
Flags available for starting a TimerFD.
@ 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.
void disarm()
Disarms any active timer settings, no more ticks will occur.
void create(const CreateFlags flags=CreateFlags{CreateFlag::CLOEXEC})
Creates a new timer fd using the given flags.
Helper type for construction of a ready-to-use TimerFD with default CreateFlags.
Combined start time and repeat interval for a TimerFD setting.
TimeSpec< CLOCK > & initial()
The initial tick time (relative or absolute) for the timer.
void resetInterval()
Sets the interval to zero, thus creating a single-tick timer.
void makeEqualInterval()
Sets the interval to the same value as the initial time.
TimerSpec()
Creates all zero time specs.
TimeSpec< CLOCK > & interval()
Timer tick repeat interval (relative) if any.