linux: Implement libuv message loop polling.
This commit is contained in:
parent
fbe963c7f3
commit
eb9673a152
2 changed files with 42 additions and 1 deletions
|
@ -4,16 +4,49 @@
|
||||||
|
|
||||||
#include "common/node_bindings_linux.h"
|
#include "common/node_bindings_linux.h"
|
||||||
|
|
||||||
|
#include <sys/epoll.h>
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
|
||||||
NodeBindingsLinux::NodeBindingsLinux(bool is_browser)
|
NodeBindingsLinux::NodeBindingsLinux(bool is_browser)
|
||||||
: NodeBindings(is_browser) {
|
: NodeBindings(is_browser),
|
||||||
|
epoll_(epoll_create(1)) {
|
||||||
|
int backend_fd = uv_backend_fd(uv_loop_);
|
||||||
|
struct epoll_event ev = { 0 };
|
||||||
|
ev.events = EPOLLIN;
|
||||||
|
ev.data.fd = backend_fd;
|
||||||
|
epoll_ctl(epoll_, EPOLL_CTL_ADD, backend_fd, &ev);
|
||||||
}
|
}
|
||||||
|
|
||||||
NodeBindingsLinux::~NodeBindingsLinux() {
|
NodeBindingsLinux::~NodeBindingsLinux() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void NodeBindingsLinux::RunMessageLoop() {
|
||||||
|
// Get notified when libuv's watcher queue changes.
|
||||||
|
uv_loop_->data = this;
|
||||||
|
uv_loop_->on_watcher_queue_updated = OnWatcherQueueChanged;
|
||||||
|
|
||||||
|
NodeBindings::RunMessageLoop();
|
||||||
|
}
|
||||||
|
|
||||||
|
// static
|
||||||
|
void NodeBindingsLinux::OnWatcherQueueChanged(uv_loop_t* loop) {
|
||||||
|
NodeBindingsLinux* self = static_cast<NodeBindingsLinux*>(loop->data);
|
||||||
|
|
||||||
|
// We need to break the io polling in the epoll thread when loop's watcher
|
||||||
|
// queue changes, otherwise new events cannot be notified.
|
||||||
|
self->WakeupEmbedThread();
|
||||||
|
}
|
||||||
|
|
||||||
void NodeBindingsLinux::PollEvents() {
|
void NodeBindingsLinux::PollEvents() {
|
||||||
|
int timeout = uv_backend_timeout(uv_loop_);
|
||||||
|
|
||||||
|
// Wait for new libuv events.
|
||||||
|
int r;
|
||||||
|
do {
|
||||||
|
struct epoll_event ev;
|
||||||
|
r = epoll_wait(epoll_, &ev, 1, timeout);
|
||||||
|
} while (r == -1 && errno == EINTR);
|
||||||
}
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
|
|
|
@ -15,9 +15,17 @@ class NodeBindingsLinux : public NodeBindings {
|
||||||
explicit NodeBindingsLinux(bool is_browser);
|
explicit NodeBindingsLinux(bool is_browser);
|
||||||
virtual ~NodeBindingsLinux();
|
virtual ~NodeBindingsLinux();
|
||||||
|
|
||||||
|
virtual void RunMessageLoop() OVERRIDE;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
// Called when uv's watcher queue changes.
|
||||||
|
static void OnWatcherQueueChanged(uv_loop_t* loop);
|
||||||
|
|
||||||
virtual void PollEvents() OVERRIDE;
|
virtual void PollEvents() OVERRIDE;
|
||||||
|
|
||||||
|
// Epoll to poll for uv's backend fd.
|
||||||
|
int epoll_;
|
||||||
|
|
||||||
DISALLOW_COPY_AND_ASSIGN(NodeBindingsLinux);
|
DISALLOW_COPY_AND_ASSIGN(NodeBindingsLinux);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue