libcosmos
Linux C++ System Programming Library
|
Wrapper around an eventfd FileDescriptor. More...
#include <EventFile.hxx>
Public Types | |
enum class | Counter : uint64_t |
Strong counter type used with the event fd. More... | |
enum class | Flag : int { CLOSE_ON_EXEC = EFD_CLOEXEC , NONBLOCK = EFD_NONBLOCK , SEMAPHORE = EFD_SEMAPHORE } |
using | Flags = BitMask<Flag> |
Public Member Functions | |
EventFile (const Counter initval=Counter{0}, const Flags flags=Flags{Flag::CLOSE_ON_EXEC}) | |
Counter | wait () |
Wait for the counter to become non-zero. | |
void | signal (const Counter increment=Counter{1}) |
Signal the eventfd by adding the given value to the counter. | |
void | close () override |
Close the current file object. | |
FileDescriptor | fd () const |
Allows access to the underlying fd with const semantics. | |
bool | isOpen () const |
Returns whether currently a FileDescriptor is opened. | |
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. | |
void | close () override |
Close the current file object. | |
![]() | |
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 |
Wrapper around an eventfd FileDescriptor.
An eventfd is a lightweight event object using file descriptor representation. An unsigned 8 byte counter is associated with the eventfd that controls the event operation.
This type manages creation and the lifetime of the underlying file descriptor and provides an I/O API tailored towards the special event file semantics.
The event semantics are as follows:
If the counter would overflow due to signal() then the signal() call either blocks until the counter is decremented by another thread or it returns an error if the eventfd is in non-blocking mode (
Since this is a regular file descriptor the Poller facility can be used to wait for the file descriptor to become readable of writable. Reading corresponds to wait() and writing corresponds to signal().
Definition at line 41 of file EventFile.hxx.
using cosmos::EventFile::Flags = BitMask<Flag> |
Definition at line 54 of file EventFile.hxx.
|
strong |
Strong counter type used with the event fd.
Definition at line 46 of file EventFile.hxx.
|
strong |
Enumerator | |
---|---|
CLOSE_ON_EXEC | Create the eventfd with the close-on-exec flag set. |
NONBLOCK | Sets the nonblocking flag upon creation, saving a separate fcntl() call. |
SEMAPHORE | Use semaphore like semantics. |
Definition at line 48 of file EventFile.hxx.
|
explicit |
Definition at line 9 of file EventFile.cxx.
|
inlineoverridevirtual |
Close the current file object.
If currently no file is open then this does nothing. If currently an external FileDescriptor is wrapped and auto-close is not set then only the object's state will be invalidated. Otherwise the referenced file descriptor will also be closed on OS-level.
Reimplemented from cosmos::FileBase.
Definition at line 62 of file FDFile.hxx.
|
inline |
Allows access to the underlying fd with const semantics.
Definition at line 74 of file FileBase.hxx.
|
inline |
Returns whether currently a FileDescriptor is opened.
Definition at line 71 of file FileBase.hxx.
Signal the eventfd by adding the given value to the counter.
This will wake up a potential thread currently blocked in wait(). If an increment larger than 1 is used then either a larger counter value is returned in wait(), or multiple threads can be waked if Flag::SEMAPHORE is active.
Definition at line 32 of file EventFile.cxx.
EventFile::Counter cosmos::EventFile::wait | ( | ) |
Wait for the counter to become non-zero.
This potentially blocks until the counter associated with the eventfd becomes non-zero. Then the current counter value will be returned and the counter will be reset to zero.
If Flag::SEMAPHORE is active then only the value of one will be returned and the counter will be decremented by one.
If Flag::NONBLOCK is active then no blocking occurs but an error is thrown if the counter is currently zero.
Definition at line 19 of file EventFile.cxx.