mpd/src/event/MultiSocketMonitor.hxx

162 lines
3.6 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_MULTI_SOCKET_MONITOR_HXX
#define MPD_MULTI_SOCKET_MONITOR_HXX
#include "check.h"
#include "IdleMonitor.hxx"
#include "TimeoutMonitor.hxx"
#include "SocketMonitor.hxx"
#include "Compiler.h"
#include <forward_list>
2013-11-28 11:50:54 +01:00
#include <iterator>
#include <assert.h>
#ifdef WIN32
2013-11-24 16:07:12 +01:00
/* ERROR is a WIN32 macro that poisons our namespace; this is a kludge
to allow us to use it anyway */
#ifdef ERROR
#undef ERROR
#endif
#endif
class EventLoop;
/**
2013-11-24 19:28:04 +01:00
* Similar to #SocketMonitor, but monitors multiple sockets. To use
* it, implement the methods PrepareSockets() and DispatchSockets().
* In PrepareSockets(), use UpdateSocketList() and AddSocket().
* DispatchSockets() will be called if at least one socket is ready.
*/
class MultiSocketMonitor : IdleMonitor, TimeoutMonitor
{
class SingleFD final : public SocketMonitor {
MultiSocketMonitor &multi;
unsigned revents;
public:
SingleFD(MultiSocketMonitor &_multi, int _fd, unsigned events)
:SocketMonitor(_fd, _multi.GetEventLoop()),
multi(_multi), revents(0) {
Schedule(events);
}
int GetFD() const {
return SocketMonitor::Get();
}
unsigned GetEvents() const {
return SocketMonitor::GetScheduledFlags();
}
void SetEvents(unsigned _events) {
revents &= _events;
SocketMonitor::Schedule(_events);
}
unsigned GetReturnedEvents() const {
return revents;
}
void ClearReturnedEvents() {
revents = 0;
}
protected:
virtual bool OnSocketReady(unsigned flags) override {
revents = flags;
multi.SetReady();
return true;
}
};
friend class SingleFD;
bool ready, refresh;
std::forward_list<SingleFD> fds;
public:
static constexpr unsigned READ = SocketMonitor::READ;
static constexpr unsigned WRITE = SocketMonitor::WRITE;
static constexpr unsigned ERROR = SocketMonitor::ERROR;
static constexpr unsigned HANGUP = SocketMonitor::HANGUP;
MultiSocketMonitor(EventLoop &_loop);
~MultiSocketMonitor();
using IdleMonitor::GetEventLoop;
public:
void InvalidateSockets() {
refresh = true;
IdleMonitor::Schedule();
}
void AddSocket(int fd, unsigned events) {
fds.emplace_front(*this, fd, events);
}
template<typename E>
void UpdateSocketList(E &&e) {
for (auto prev = fds.before_begin(), end = fds.end(),
i = std::next(prev);
i != end; i = std::next(prev)) {
assert(i->GetEvents() != 0);
unsigned events = e(i->GetFD());
if (events != 0) {
i->SetEvents(events);
prev = i;
} else {
i->Steal();
fds.erase_after(prev);
}
}
}
protected:
/**
* @return timeout [ms] or -1 for no timeout
*/
virtual int PrepareSockets() = 0;
virtual void DispatchSockets() = 0;
private:
void SetReady() {
ready = true;
IdleMonitor::Schedule();
}
void Prepare();
virtual void OnTimeout() final {
SetReady();
IdleMonitor::Schedule();
}
virtual void OnIdle() final;
};
#endif