libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Poller.hxx
1#pragma once
2
3// C++
4#include <chrono>
5#include <optional>
6#include <vector>
7
8// Linux
9#include <sys/epoll.h>
10
11// cosmos
12#include <cosmos/BitMask.hxx>
13#include <cosmos/fs/FileDescriptor.hxx>
14#include <cosmos/time/types.hxx>
15
16namespace cosmos {
17
19
58class COSMOS_API Poller {
59public: // types
60
62 enum class MonitorFlag : uint32_t {
64 INPUT = EPOLLIN,
66 OUTPUT = EPOLLOUT,
68 SOCKET_HANGUP = EPOLLRDHUP,
70 EXCEPTIONS = EPOLLPRI,
72 EDGE_TRIGGERED = EPOLLET,
74 ONESHOT = EPOLLONESHOT,
76 STAY_AWAKE = EPOLLWAKEUP
77 };
78
79 using MonitorFlags = BitMask<MonitorFlag>;
80
82 enum class Event : uint32_t {
84 INPUT_READY = EPOLLIN,
86 OUTPUT_READY = EPOLLOUT,
88 SOCKET_HANGUP = EPOLLRDHUP,
90 EXCEPTION_OCCURED = EPOLLPRI,
92 ERROR_OCCURED = EPOLLERR,
94 HANGUP_OCCURED = EPOLLHUP
95 };
96
97 using EventMask = BitMask<Event>;
98
100 struct PollEvent : protected epoll_event {
101 friend class Poller;
102 public:
103
105 FileDescriptor fd() const { return FileDescriptor{FileNum{(this->data).fd}}; }
106
107 auto getEvents() const { return EventMask{static_cast<std::underlying_type<Event>::type>(this->events)}; }
108 };
109
110public: // functions
111
114
116
119 explicit Poller(size_t max_events) {
120 create(max_events);
121 }
122
124 ~Poller();
125
127 Poller(const Poller&) = delete;
128 Poller& operator=(const Poller&) = delete;
129
131
139 void create(size_t max_events = 16);
140
142
151 void close();
152
154 bool valid() const { return m_poll_fd.valid(); }
155
157
164 void addFD(const FileDescriptor fd, const MonitorFlags flags);
165
167
171 void modFD(const FileDescriptor fd, const MonitorFlags flags);
172
174
178 void delFD(const FileDescriptor fd);
179
181
192 std::vector<PollEvent> wait(const std::optional<IntervalTime> timeout = {});
193
194protected: // functions
195
196 int rawPollFD() const;
197
198protected: // data
199
200 FileDescriptor m_poll_fd;
201 std::vector<PollEvent> m_events;
202};
203
204} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
Thin Wrapper around OS file descriptors.
Efficient file descriptor I/O event polling.
Definition Poller.hxx:58
bool valid() const
Returns whether currently a valid poll file descriptor exists.
Definition Poller.hxx:154
Event
Flags found in PollEvent that indicate the events that occurred on a file descriptor.
Definition Poller.hxx:82
Poller(size_t max_events)
Creates a Poller instance ready for use.
Definition Poller.hxx:119
MonitorFlag
Flags used to declare interest in specific events and options in addFD() and modFD().
Definition Poller.hxx:62
Poller(const Poller &)=delete
Avoid copying due to the file descriptor member.
Poller()
Creates a yet invalid Poller instance.
Definition Poller.hxx:113
FileNum
Primitive file descriptor.
Definition types.hxx:32
@ OUTPUT
writing is possible.
@ INPUT
there is data to read.
A single poll event as returned by wait().
Definition Poller.hxx:100
FileDescriptor fd() const
The file descriptor this event refers to.
Definition Poller.hxx:105