Commit a0ebd444 authored by Max Kellermann's avatar Max Kellermann

event/SocketMonitor: add method Open()

Allow creating a closed SocketMonitor instance.
parent 0c6072c4
......@@ -74,16 +74,11 @@ static GSourceFuncs socket_monitor_source_funcs = {
};
SocketMonitor::SocketMonitor(int _fd, EventLoop &_loop)
:fd(_fd), loop(_loop),
source((Source *)g_source_new(&socket_monitor_source_funcs,
sizeof(*source))),
poll{fd, 0, 0} {
assert(fd >= 0);
:fd(-1), loop(_loop),
source(nullptr) {
assert(_fd >= 0);
source->monitor = this;
g_source_attach(&source->base, loop.GetContext());
g_source_add_poll(&source->base, &poll);
Open(_fd);
}
SocketMonitor::~SocketMonitor()
......@@ -93,6 +88,24 @@ SocketMonitor::~SocketMonitor()
}
void
SocketMonitor::Open(int _fd)
{
assert(fd < 0);
assert(source == nullptr);
assert(_fd >= 0);
fd = _fd;
poll = {fd, 0, 0};
source = (Source *)g_source_new(&socket_monitor_source_funcs,
sizeof(*source));
source->monitor = this;
g_source_attach(&source->base, loop.GetContext());
g_source_add_poll(&source->base, &poll);
}
void
SocketMonitor::Close()
{
assert(IsDefined());
......
......@@ -54,6 +54,9 @@ public:
static constexpr unsigned ERROR = G_IO_ERR;
static constexpr unsigned HANGUP = G_IO_HUP;
SocketMonitor(EventLoop &_loop)
:fd(-1), loop(_loop), source(nullptr) {}
SocketMonitor(int _fd, EventLoop &_loop);
~SocketMonitor();
......@@ -68,6 +71,8 @@ public:
return fd;
}
void Open(int _fd);
void Close();
void Schedule(unsigned flags) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment