EventManager: refactor (again)
This commit is contained in:
parent
f1b15ef86b
commit
6ca530b5cc
|
@ -12,38 +12,38 @@ void EventManager::watch(int fd, EventHandler handler)
|
||||||
if (event != m_events.end())
|
if (event != m_events.end())
|
||||||
throw runtime_error("fd already watched");
|
throw runtime_error("fd already watched");
|
||||||
|
|
||||||
m_events.push_back(pollfd{ fd, POLLIN | POLLPRI, 0 });
|
m_events.emplace_back(pollfd{ fd, POLLIN | POLLPRI, 0 });
|
||||||
m_handlers.emplace(fd, std::move(handler));
|
m_handlers.emplace_back(new EventHandler(std::move(handler)));
|
||||||
}
|
}
|
||||||
|
|
||||||
void EventManager::unwatch(int fd)
|
void EventManager::unwatch(int fd)
|
||||||
{
|
{
|
||||||
// do not unwatch now, do that at the end of handle_next_events,
|
auto event = std::find_if(m_events.begin(), m_events.end(),
|
||||||
// so that if unwatch(fd) is called from fd event handler,
|
[&](const pollfd& pfd) { return pfd.fd == fd; });
|
||||||
// it is not deleted now.
|
assert(event != m_events.end());
|
||||||
m_unwatched.push_back(fd);
|
auto handler = m_handlers.begin() + (event - m_events.begin());
|
||||||
|
|
||||||
|
// keep handler in m_handlers_trash so that it does not die now,
|
||||||
|
// but at the end of handle_next_events. We do this as handler might
|
||||||
|
// be our caller.
|
||||||
|
m_handlers_trash.emplace_back(std::move(*handler));
|
||||||
|
m_handlers.erase(handler);
|
||||||
|
m_events.erase(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
void EventManager::handle_next_events()
|
void EventManager::handle_next_events()
|
||||||
{
|
{
|
||||||
const int timeout_ms = 100;
|
const int timeout_ms = 100;
|
||||||
poll(m_events.data(), m_events.size(), timeout_ms);
|
poll(m_events.data(), m_events.size(), timeout_ms);
|
||||||
for (auto& event : m_events)
|
for (size_t i = 0; i < m_events.size(); ++i)
|
||||||
{
|
{
|
||||||
|
auto& event = m_events[i];
|
||||||
const int fd = event.fd;
|
const int fd = event.fd;
|
||||||
if ((event.revents or contains(m_forced, fd)) and not contains(m_unwatched, fd))
|
if (event.revents or contains(m_forced, fd))
|
||||||
m_handlers[fd](fd);
|
(*m_handlers[i])(fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
// remove unwatched.
|
m_handlers_trash.clear();
|
||||||
for (auto fd : m_unwatched)
|
|
||||||
{
|
|
||||||
auto it = std::find_if(m_events.begin(), m_events.end(),
|
|
||||||
[fd](pollfd& p) { return p.fd == fd; });
|
|
||||||
m_events.erase(it);
|
|
||||||
m_handlers.erase(fd);
|
|
||||||
}
|
|
||||||
m_unwatched.clear();
|
|
||||||
m_forced.clear();
|
m_forced.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,9 +36,9 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::vector<pollfd> m_events;
|
std::vector<pollfd> m_events;
|
||||||
std::unordered_map<int, EventHandler> m_handlers;
|
std::vector<std::unique_ptr<EventHandler>> m_handlers;
|
||||||
|
std::vector<std::unique_ptr<EventHandler>> m_handlers_trash;
|
||||||
std::vector<int> m_forced;
|
std::vector<int> m_forced;
|
||||||
std::vector<int> m_unwatched;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user