libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Poller.cxx
1// C++
2#include <exception>
3#include <iostream>
4
5// cosmos
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>
12
13namespace cosmos {
14
16 try {
17 close();
18 } catch (const std::exception &ex) {
19 noncritical_error(
20 sprintf("%s: failed to close()", __FUNCTION__),
21 ex);
22 }
23}
24
25int Poller::rawPollFD() const {
26 return to_integral(m_poll_fd.raw());
27}
28
29void Poller::create(size_t max_events) {
30 if (valid())
31 return;
32
33 auto pfd = epoll_create1(EPOLL_CLOEXEC);
34
35 if (pfd < 0) {
36 cosmos_throw (ApiError("epoll_create1()"));
37 }
38
39 m_poll_fd.setFD(FileNum{pfd});
40 m_events.resize(max_events);
41}
42
44 if (!valid())
45 return;
46
47 m_poll_fd.close();
48 m_events.clear();
49}
50
51namespace {
52
53 void control(int epfd, int fd, int op, uint32_t events) {
54 struct epoll_event ev;
55 ev.data.fd = fd;
56 ev.events = events;
57 if (epoll_ctl(epfd, op, fd, &ev) < 0) {
58 cosmos_throw (ApiError("epoll_ctl()"));
59 }
60 }
61}
62
63void Poller::addFD(const FileDescriptor fd, const MonitorFlags flags) {
64 control(rawPollFD(), to_integral(fd.raw()), EPOLL_CTL_ADD, flags.raw());
65}
66
67void Poller::modFD(const FileDescriptor fd, const MonitorFlags flags) {
68 control(rawPollFD(), to_integral(fd.raw()), EPOLL_CTL_MOD, flags.raw());
69}
70
72 if (epoll_ctl(rawPollFD(), EPOLL_CTL_DEL, to_integral(fd.raw()), nullptr) < 0) {
73 cosmos_throw (ApiError("epoll_ctl(EPOLL_CTL_DEL)"));
74 }
75}
76
77std::vector<Poller::PollEvent> Poller::wait(const std::optional<IntervalTime> timeout) {
78 while (true) {
79 const auto num_events = epoll_pwait2(
80 rawPollFD(), m_events.data(), m_events.size(), timeout ? &*timeout : nullptr, nullptr);
81
82 if (num_events < 0) {
83 if (auto_restart_syscalls && get_errno() == Errno::INTERRUPTED)
84 // transparent restart
85 continue;
86 cosmos_throw (ApiError("epoll_wait()"));
87 }
88
89 return std::vector<PollEvent>(m_events.begin(), m_events.begin() + num_events);
90 }
91}
92
93} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
EnumBaseType raw() const
Returns the raw bitfield integer.
Definition BitMask.hxx:56
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.
Definition Poller.hxx:154
~Poller()
Calls close()
Definition Poller.cxx:15
std::vector< PollEvent > wait(const std::optional< IntervalTime > timeout={})
Wait for one of the monitored events to be ready.
Definition Poller.cxx:77
void create(size_t max_events=16)
Actually create the poll file descriptor backing this object.
Definition Poller.cxx:29
void close()
Closes a previously create()'d poll file descriptor again.
Definition Poller.cxx:43
void addFD(const FileDescriptor fd, const MonitorFlags flags)
Start monitoring the given file descriptor using the given settings.
Definition Poller.cxx:63
void modFD(const FileDescriptor fd, const MonitorFlags flags)
Modify monitoring settings for an already monitored descriptor.
Definition Poller.cxx:67
void delFD(const FileDescriptor fd)
Remove a file descriptor from the set of monitored files.
Definition Poller.cxx:71
Errno get_errno()
Wrapper that returns the Errno strongly typed representation of the current errno
Definition errno.hxx:111
FileNum
Primitive file descriptor.
Definition types.hxx:32