1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "mplexer.hh"
#include "sstuff.hh"
#include <iostream>
#include <poll.h>
#include <unordered_map>
#include "misc.hh"
#include "namespaces.hh"
FDMultiplexer* FDMultiplexer::getMultiplexerSilent(unsigned int maxEventsHint)
{
FDMultiplexer* ret = nullptr;
for (const auto& i : FDMultiplexer::getMultiplexerMap()) {
try {
ret = i.second(std::min(maxEventsHint, FDMultiplexer::s_maxevents));
return ret;
}
catch (const FDMultiplexerException& fe) {
}
catch (...) {
}
}
return ret;
}
class PollFDMultiplexer : public FDMultiplexer
{
public:
PollFDMultiplexer(unsigned int /* maxEventsHint */)
{}
int run(struct timeval* tv, int timeout = 500) override;
void getAvailableFDs(std::vector<int>& fds, int timeout) override;
void addFD(int fd, FDMultiplexer::EventKind) override;
void removeFD(int fd, FDMultiplexer::EventKind) override;
string getName() const override
{
return "poll";
}
private:
std::unordered_map<int, struct pollfd> d_pollfds;
vector<struct pollfd> preparePollFD() const;
};
static FDMultiplexer* make(unsigned int maxEventsHint)
{
return new PollFDMultiplexer(maxEventsHint);
}
static struct RegisterOurselves
{
RegisterOurselves()
{
FDMultiplexer::getMultiplexerMap().emplace(2, &make);
}
} doIt;
static int convertEventKind(FDMultiplexer::EventKind kind)
{
switch (kind) {
case FDMultiplexer::EventKind::Read:
return POLLIN;
case FDMultiplexer::EventKind::Write:
return POLLOUT;
case FDMultiplexer::EventKind::Both:
return POLLIN | POLLOUT;
}
throw std::runtime_error("Unhandled event kind in the ports multiplexer");
}
void PollFDMultiplexer::addFD(int fd, FDMultiplexer::EventKind kind)
{
if (d_pollfds.count(fd) == 0) {
auto& pollfd = d_pollfds[fd];
pollfd.fd = fd;
pollfd.events = 0;
}
auto& pollfd = d_pollfds.at(fd);
pollfd.events |= convertEventKind(kind);
}
void PollFDMultiplexer::removeFD(int fd, FDMultiplexer::EventKind)
{
d_pollfds.erase(fd);
}
vector<struct pollfd> PollFDMultiplexer::preparePollFD() const
{
std::vector<struct pollfd> result;
result.reserve(d_pollfds.size());
for (const auto& entry : d_pollfds) {
result.push_back(entry.second);
}
return result;
}
void PollFDMultiplexer::getAvailableFDs(std::vector<int>& fds, int timeout)
{
auto pollfds = preparePollFD();
if (pollfds.empty()) {
return;
}
int ret = poll(&pollfds[0], pollfds.size(), timeout);
if (ret < 0 && errno != EINTR) {
throw FDMultiplexerException("poll returned error: " + stringerror());
}
for (const auto& pollfd : pollfds) {
if (pollfd.revents & POLLIN || pollfd.revents & POLLOUT || pollfd.revents & POLLERR || pollfd.revents & POLLHUP) {
fds.push_back(pollfd.fd);
}
}
}
int PollFDMultiplexer::run(struct timeval* now, int timeout)
{
InRun guard(d_inrun);
auto pollfds = preparePollFD();
if (pollfds.empty()) {
gettimeofday(now, nullptr); // MANDATORY!
return 0;
}
int ret = poll(&pollfds[0], pollfds.size(), timeout);
gettimeofday(now, nullptr); // MANDATORY!
if (ret < 0 && errno != EINTR) {
throw FDMultiplexerException("poll returned error: " + stringerror());
}
int count = 0;
for (const auto& pollfd : pollfds) {
if (pollfd.revents & POLLIN || pollfd.revents & POLLERR || pollfd.revents & POLLHUP) {
const auto& iter = d_readCallbacks.find(pollfd.fd);
if (iter != d_readCallbacks.end()) {
iter->d_callback(iter->d_fd, iter->d_parameter);
count++;
}
}
if (pollfd.revents & POLLOUT || pollfd.revents & POLLERR) {
const auto& iter = d_writeCallbacks.find(pollfd.fd);
if (iter != d_writeCallbacks.end()) {
iter->d_callback(iter->d_fd, iter->d_parameter);
count++;
}
}
}
return count;
}
#if 0
void acceptData(int fd, boost::any& parameter)
{
cout<<"Have data on fd "<<fd<<endl;
Socket* sock=boost::any_cast<Socket*>(parameter);
string packet;
IPEndpoint rem;
sock->recvFrom(packet, rem);
cout<<"Received "<<packet.size()<<" bytes!\n";
}
int main()
{
Socket s(AF_INET, SOCK_DGRAM);
IPEndpoint loc("0.0.0.0", 2000);
s.bind(loc);
PollFDMultiplexer sfm;
sfm.addReadFD(s.getHandle(), &acceptData, &s);
for(int n=0; n < 100 ; ++n) {
sfm.run();
}
sfm.removeReadFD(s.getHandle());
sfm.removeReadFD(s.getHandle());
}
#endif
|