2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-13 15:05:13 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_bindings_mac.h"
|
2013-04-13 15:05:13 +00:00
|
|
|
|
2013-07-22 06:58:25 +00:00
|
|
|
#include <errno.h>
|
2016-05-03 06:54:21 +00:00
|
|
|
#include <sys/select.h>
|
2013-04-19 13:21:04 +00:00
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
2013-04-13 15:05:13 +00:00
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
2017-03-08 08:33:44 +00:00
|
|
|
NodeBindingsMac::NodeBindingsMac(BrowserEnvironment browser_env)
|
2018-04-18 01:55:30 +00:00
|
|
|
: NodeBindings(browser_env) {}
|
2013-04-13 15:05:13 +00:00
|
|
|
|
2013-07-22 06:58:25 +00:00
|
|
|
void NodeBindingsMac::PollEvents() {
|
2023-09-07 23:25:17 +00:00
|
|
|
auto* const event_loop = uv_loop();
|
|
|
|
|
2016-05-03 06:54:21 +00:00
|
|
|
struct timeval tv;
|
2023-09-07 23:25:17 +00:00
|
|
|
int timeout = uv_backend_timeout(event_loop);
|
2013-07-22 06:58:25 +00:00
|
|
|
if (timeout != -1) {
|
2016-05-03 06:54:21 +00:00
|
|
|
tv.tv_sec = timeout / 1000;
|
|
|
|
tv.tv_usec = (timeout % 1000) * 1000;
|
2013-04-13 15:05:13 +00:00
|
|
|
}
|
|
|
|
|
2016-05-03 06:54:21 +00:00
|
|
|
fd_set readset;
|
2023-09-07 23:25:17 +00:00
|
|
|
int fd = uv_backend_fd(event_loop);
|
2016-05-03 06:54:21 +00:00
|
|
|
FD_ZERO(&readset);
|
|
|
|
FD_SET(fd, &readset);
|
|
|
|
|
2013-07-22 06:58:25 +00:00
|
|
|
// Wait for new libuv events.
|
|
|
|
int r;
|
|
|
|
do {
|
2016-07-10 13:56:42 +00:00
|
|
|
r = select(fd + 1, &readset, nullptr, nullptr,
|
|
|
|
timeout == -1 ? nullptr : &tv);
|
2013-07-22 06:58:25 +00:00
|
|
|
} while (r == -1 && errno == EINTR);
|
2013-04-13 15:05:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2017-03-08 08:33:44 +00:00
|
|
|
NodeBindings* NodeBindings::Create(BrowserEnvironment browser_env) {
|
|
|
|
return new NodeBindingsMac(browser_env);
|
2013-04-13 15:05:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace electron
|