6#include <cosmos/error/ApiError.hxx>
7#include <cosmos/formatting.hxx>
8#include <cosmos/io/Poller.hxx>
9#include <cosmos/private/cosmos.hxx>
10#include <cosmos/time/types.hxx>
11#include <cosmos/utils.hxx>
18 }
catch (
const std::exception &ex) {
20 sprintf(
"%s: failed to close()", __FUNCTION__),
25int Poller::rawPollFD()
const {
26 return to_integral(m_poll_fd.
raw());
33 auto pfd = epoll_create1(EPOLL_CLOEXEC);
36 cosmos_throw (
ApiError(
"epoll_create1()"));
40 m_events.resize(max_events);
53 void control(
int epfd,
int fd,
int op, uint32_t events) {
54 struct epoll_event ev;
57 if (epoll_ctl(epfd, op, fd, &ev) < 0) {
58 cosmos_throw (
ApiError(
"epoll_ctl()"));
64 control(rawPollFD(), to_integral(fd.
raw()), EPOLL_CTL_ADD, flags.
raw());
68 control(rawPollFD(), to_integral(fd.
raw()), EPOLL_CTL_MOD, flags.
raw());
72 if (epoll_ctl(rawPollFD(), EPOLL_CTL_DEL, to_integral(fd.
raw()),
nullptr) < 0) {
73 cosmos_throw (
ApiError(
"epoll_ctl(EPOLL_CTL_DEL)"));
77std::vector<Poller::PollEvent>
Poller::wait(
const std::optional<IntervalTime> timeout) {
79 const auto num_events = epoll_pwait2(
80 rawPollFD(), m_events.data(), m_events.size(), timeout ? &*timeout :
nullptr,
nullptr);
83 if (auto_restart_syscalls &&
get_errno() == Errno::INTERRUPTED)
86 cosmos_throw (
ApiError(
"epoll_wait()"));
89 return std::vector<PollEvent>(m_events.begin(), m_events.begin() + num_events);
Specialized exception type used when system APIs fail.
A typesafe bit mask representation using class enums.
EnumBaseType raw() const
Returns the raw bitfield integer.
Thin Wrapper around OS file descriptors.
void close()
Explicitly close the contained FD.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
void setFD(const FileNum fd)
Assigns a new primitive file descriptor to the object.
bool valid() const
Returns whether currently a valid poll file descriptor exists.
std::vector< PollEvent > wait(const std::optional< IntervalTime > timeout={})
Wait for one of the monitored events to be ready.
void create(size_t max_events=16)
Actually create the poll file descriptor backing this object.
void close()
Closes a previously create()'d poll file descriptor again.
void addFD(const FileDescriptor fd, const MonitorFlags flags)
Start monitoring the given file descriptor using the given settings.
void modFD(const FileDescriptor fd, const MonitorFlags flags)
Modify monitoring settings for an already monitored descriptor.
void delFD(const FileDescriptor fd)
Remove a file descriptor from the set of monitored files.
Errno get_errno()
Wrapper that returns the Errno strongly typed representation of the current errno
FileNum
Primitive file descriptor.