libcosmos
Linux C++ System Programming Library
|
Timers that notify via file descriptors. More...
#include <TimerFD.hxx>
Classes | |
struct | CreateT |
Helper type for construction of a ready-to-use TimerFD with default CreateFlags. More... | |
struct | TimerSpec |
Combined start time and repeat interval for a TimerFD setting. More... | |
Public Types | |
enum class | CreateFlag : int { NONBLOCK = TFD_NONBLOCK , CLOEXEC = TFD_CLOEXEC } |
Flags provided at TimerFD creation time. More... | |
enum class | StartFlag : int { ABSTIME = TFD_TIMER_ABSTIME , CANCEL_ON_SET = TFD_TIMER_CANCEL_ON_SET } |
Flags available for starting a TimerFD. More... | |
using | CreateFlags = BitMask<CreateFlag> |
using | StartFlags = BitMask<StartFlag> |
Public Member Functions | |
TimerFD ()=default | |
Creates an empty (invalid) timer fd. | |
TimerFD (const CreateFlags flags) | |
Creates a timer fd with the given flags ready for operation. | |
TimerFD (const CreateT) | |
Creates a timer fd with default flags ready for operation. | |
TimerFD (TimerFD &&other) noexcept | |
TimerFD & | operator= (TimerFD &&other) noexcept |
void | create (const CreateFlags flags=CreateFlags{CreateFlag::CLOEXEC}) |
Creates a new timer fd using the given flags. | |
void | close () override |
Closes the timer fd. | |
void | setTime (const TimerSpec spec, const StartFlags flags=StartFlags{}) |
Arm the timer using the given settings and flags. | |
TimerSpec | getTime () const |
Returns the current timer settings from the kernel. | |
uint64_t | wait () |
Waits on the timer returning the tick count. | |
void | disarm () |
Disarms any active timer settings, no more ticks will occur. | |
FileDescriptor | fd () const |
Allows access to the underlying fd with const semantics. | |
bool | isOpen () const |
Returns whether currently a FileDescriptor is opened. | |
Static Public Attributes | |
static CreateT | defaults |
Additional Inherited Members | |
![]() | |
enum class | SeekType : int { SET = SEEK_SET , CUR = SEEK_CUR , END = SEEK_END , DATA = SEEK_DATA , HOLE = SEEK_HOLE } |
Different methods for changing the file read/write position. More... | |
![]() | |
FDFile (const FileDescriptor fd, const AutoCloseFD auto_close) | |
Wrap the given file descriptor applying the specified auto-close behaviour. | |
FDFile (FDFile &&other) noexcept | |
FDFile & | operator= (FDFile &&other) noexcept |
void | open (const FileDescriptor fd, const AutoCloseFD auto_close) |
Takes the already open file descriptor fd and operates on it. | |
![]() | |
FileBase (const FileDescriptor fd=FileDescriptor{}) | |
FileBase (FileBase &&other) noexcept | |
FileBase & | operator= (FileBase &&other) noexcept |
FileBase (const FileBase &)=delete | |
FileBase & | operator= (const FileBase &)=delete |
bool | isOpen () const |
Returns whether currently a FileDescriptor is opened. | |
FileDescriptor | fd () const |
Allows access to the underlying fd with const semantics. | |
void | truncate (const off_t length) |
![]() | |
StreamIO (FileDescriptor &fd) | |
StreamIO (const StreamIO &)=delete | |
StreamIO & | operator= (const StreamIO &)=delete |
StreamIO & | operator= (StreamIO &&) noexcept |
size_t | read (void *buf, size_t length) |
Read up to length bytes from the file into buf . | |
size_t | write (const void *buf, size_t length) |
Write up to length bytes from buf into the underlying file. | |
size_t | write (const std::string_view data) |
string_view wrapper around write(const void*, size_t). | |
void | readAll (void *buf, size_t length) |
Read all length bytes from the underlying file. | |
void | readAll (std::string &s, size_t length) |
Like readAll(void*, size_t) using an STL string. | |
void | writeAll (const void *buf, size_t length) |
Write all length bytes into the underlying file. | |
void | writeAll (const std::string_view data) |
string_view wrapper around writeAll(const void*, size_t). | |
bool | read (ReadIOVector &iovec) |
Read data from file into a vector of data regions. | |
bool | write (WriteIOVector &iovec) |
Write data to file from a vector of data regions. | |
void | readAll (ReadIOVector &iovec) |
Read into all data regions specified in iovec . | |
void | writeAll (WriteIOVector &iovec) |
Write all data regions specified in iovec . | |
off_t | seek (const SeekType type, off_t off) |
Seek to the given offset based on the given offset type . | |
off_t | seekFromStart (off_t off) |
Seek to the given offset relative to the start of the file. | |
off_t | seekFromCurrent (off_t off) |
Seek to the given offset relative to the current file position. | |
off_t | seekFromEnd (off_t off) |
Seek to the given offset relative to the end of the file. | |
![]() | |
AutoCloseFD | m_auto_close |
![]() | |
FileDescriptor | m_fd |
![]() | |
FileDescriptor & | m_stream_fd |
Timers that notify via file descriptors.
A TimerFD is associated with an 8 byte integer (uint64_t) that is increased upon each timer tick, until somebody read()s it. The file descriptor can be used for polling it together with other file descriptors. It will be readable once at least one timer event is available.
Currently TimerFDs only work with few clock types: RealTimeClock, MonotonicClock and BootTimeClock. Two special _ALARM clock types are currently not implemented in libcosmos which would cause a system to wake up from suspend when triggered.
A TimerFD is inherited across fork() as a copy and preserved across execve() depending on the CLOEXEC creation/file descriptor flag.
A TimerFD is a move-only type that cannot be copied due to the file descriptor ownership.
A TimerFD is strongly coupled to the template CLOCK type as most of the other time classes are. This is to avoid mixing absolute time values from different clocks.
Definition at line 36 of file TimerFD.hxx.
using cosmos::TimerFD< CLOCK >::CreateFlags = BitMask<CreateFlag> |
Definition at line 51 of file TimerFD.hxx.
using cosmos::TimerFD< CLOCK >::StartFlags = BitMask<StartFlag> |
Definition at line 61 of file TimerFD.hxx.
|
strong |
Flags provided at TimerFD creation time.
Enumerator | |
---|---|
NONBLOCK | Create a non-blocking file descriptor. |
CLOEXEC | Sets the close-on-exec flag upon creation. |
Definition at line 44 of file TimerFD.hxx.
|
strong |
Flags available for starting a TimerFD.
Enumerator | |
---|---|
ABSTIME | Interpret the initial (not the interval!) timer setting as an absolute clock time value. |
CANCEL_ON_SET | For RealTime based clocks report discontinous clock changes via Errno::CANCELED. |
Definition at line 54 of file TimerFD.hxx.
|
inlineexplicit |
Creates a timer fd with the given flags ready for operation.
Definition at line 127 of file TimerFD.hxx.
|
inlineexplicit |
Creates a timer fd with default flags ready for operation.
Default flags most notably include the CLOEXEC creation flag.
Definition at line 135 of file TimerFD.hxx.
|
inlinenoexcept |
Definition at line 139 of file TimerFD.hxx.
|
inlineoverridevirtual |
Closes the timer fd.
The file descriptor will be closed and any timers associated with it will be disarmed, resources freed. When further copies of the file descriptor exist (dup'ed) then this will only happen after all copies are closed.
If isOpen() returns false
then close() returns without doing anything.
Reimplemented from cosmos::FDFile.
Definition at line 176 of file TimerFD.hxx.
void cosmos::TimerFD< CLOCK >::create | ( | const CreateFlags | flags = CreateFlags{CreateFlag::CLOEXEC} | ) |
Creates a new timer fd using the given flags.
After this function call the timer will be ready for operation.
If there already is a valid timer fd (i.e. isOpen() == true
) then close() will be called first.
This call can cause an ApiError to be thrown e.g. if the maximum file descriptor limit has been reached, memory is exhausted, clock or flags are invalid or permission is denied (for the special _ALARM clocks).
Definition at line 13 of file TimerFD.cxx.
|
inline |
Disarms any active timer settings, no more ticks will occur.
Any already registered ticks will be reset, a future wait() will block forever unless the timer is armed again via setTime(). This behaviour is not clearly documented in the man page though.
Definition at line 225 of file TimerFD.hxx.
|
inline |
Allows access to the underlying fd with const semantics.
Definition at line 74 of file FileBase.hxx.
TimerFD< CLOCK >::TimerSpec cosmos::TimerFD< CLOCK >::getTime | ( | ) | const |
Returns the current timer settings from the kernel.
Note that this function always returns a relative timer in TimerSpec.initial(), even if StartFlag::ABSTIME was used to set it.
If the timer is currently disarmed then all zero values are returned.
Definition at line 25 of file TimerFD.cxx.
|
inline |
Returns whether currently a FileDescriptor is opened.
Definition at line 71 of file FileBase.hxx.
|
inlinenoexcept |
Definition at line 143 of file TimerFD.hxx.
void cosmos::TimerFD< CLOCK >::setTime | ( | const TimerSpec | spec, |
const StartFlags | flags = StartFlags{} ) |
Arm the timer using the given settings and flags.
See TimerSpec for more information on the initial and interval values. If spec.initial() is non-zero then the timer will be armed and produce at least one tick event at the given time.
Definition at line 36 of file TimerFD.cxx.
uint64_t cosmos::TimerFD< CLOCK >::wait | ( | ) |
Waits on the timer returning the tick count.
This operation will read() on the associated timer fd.
If no timer tick occurred yet then this will block the caller until a timer tick or an error occurs (e.g. ApiError with Errno::CANCELED, if StartFlag::CANCEL_ON_SET is active).
If one or more timer ticks already occurred then this call will not block and returns the number of ticks that happened.
If NONBLOCK mode was specified during creation and no timer tick occurred yet then this will throw a WouldBlock exception.
On successful return the tick count associated with the timer will be reset to zero, so a subsequent wait() can block again until a new tick event occurs.
Definition at line 49 of file TimerFD.cxx.
|
static |
Definition at line 119 of file TimerFD.hxx.