12#include <cosmos/BitMask.hxx>
13#include <cosmos/fs/FileDescriptor.hxx>
14#include <cosmos/time/types.hxx>
68 SOCKET_HANGUP = EPOLLRDHUP,
70 EXCEPTIONS = EPOLLPRI,
72 EDGE_TRIGGERED = EPOLLET,
74 ONESHOT = EPOLLONESHOT,
76 STAY_AWAKE = EPOLLWAKEUP
84 INPUT_READY = EPOLLIN,
86 OUTPUT_READY = EPOLLOUT,
88 SOCKET_HANGUP = EPOLLRDHUP,
90 EXCEPTION_OCCURED = EPOLLPRI,
92 ERROR_OCCURED = EPOLLERR,
94 HANGUP_OCCURED = EPOLLHUP
107 auto getEvents()
const {
return EventMask{
static_cast<std::underlying_type<Event>::type
>(this->events)}; }
139 void create(
size_t max_events = 16);
154 bool valid()
const {
return m_poll_fd.valid(); }
192 std::vector<PollEvent> wait(
const std::optional<IntervalTime> timeout = {});
196 int rawPollFD()
const;
200 FileDescriptor m_poll_fd;
201 std::vector<PollEvent> m_events;
A typesafe bit mask representation using class enums.
Thin Wrapper around OS file descriptors.
Efficient file descriptor I/O event polling.
bool valid() const
Returns whether currently a valid poll file descriptor exists.
Event
Flags found in PollEvent that indicate the events that occurred on a file descriptor.
Poller(size_t max_events)
Creates a Poller instance ready for use.
MonitorFlag
Flags used to declare interest in specific events and options in addFD() and modFD().
Poller(const Poller &)=delete
Avoid copying due to the file descriptor member.
Poller()
Creates a yet invalid Poller instance.
FileNum
Primitive file descriptor.
@ OUTPUT
writing is possible.
@ INPUT
there is data to read.
A single poll event as returned by wait().
FileDescriptor fd() const
The file descriptor this event refers to.