electron/atom/common/node_bindings.h

115 lines
2.6 KiB
C
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 17:49:37 +08:00
// Use of this source code is governed by the MIT license that can be
2013-04-13 18:39:09 +08:00
// found in the LICENSE file.
#ifndef ATOM_COMMON_NODE_BINDINGS_H_
#define ATOM_COMMON_NODE_BINDINGS_H_
2013-04-13 18:39:09 +08:00
2016-03-07 20:38:49 -08:00
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
2017-01-24 16:45:26 +09:00
#include "base/single_thread_task_runner.h"
#include "uv.h" // NOLINT(build/include)
#include "v8/include/v8.h"
2013-04-13 18:39:09 +08:00
namespace base {
class MessageLoop;
}
namespace node {
class Environment;
class MultiIsolatePlatform;
2018-04-17 21:44:10 -04:00
} // namespace node
2013-04-13 18:39:09 +08:00
namespace atom {
class NodeBindings {
public:
2017-03-08 17:33:44 +09:00
enum BrowserEnvironment {
BROWSER,
RENDERER,
WORKER,
};
static NodeBindings* Create(BrowserEnvironment browser_env);
static void RegisterBuiltinModules();
2013-04-13 18:39:09 +08:00
virtual ~NodeBindings();
// Setup V8, libuv.
2015-01-23 21:05:32 -08:00
void Initialize();
// Create the environment and load node.js.
node::Environment* CreateEnvironment(
v8::Handle<v8::Context> context,
node::MultiIsolatePlatform* platform = nullptr);
// Load node.js in the environment.
void LoadEnvironment(node::Environment* env);
// Prepare for message loop integration.
2015-01-23 21:05:32 -08:00
void PrepareMessageLoop();
// Do message loop integration.
virtual void RunMessageLoop();
// Gets/sets the environment to wrap uv loop.
void set_uv_env(node::Environment* env) { uv_env_ = env; }
2014-01-10 16:29:38 +08:00
node::Environment* uv_env() const { return uv_env_; }
uv_loop_t* uv_loop() const { return uv_loop_; }
protected:
2017-03-08 17:33:44 +09:00
explicit NodeBindings(BrowserEnvironment browser_env);
2013-04-13 18:39:09 +08:00
// Called to poll events in new thread.
virtual void PollEvents() = 0;
// Run the libuv loop for once.
void UvRunOnce();
// Make the main thread run libuv loop.
void WakeupMainThread();
// Interrupt the PollEvents.
void WakeupEmbedThread();
2017-03-08 17:33:44 +09:00
// Which environment we are running.
BrowserEnvironment browser_env_;
2013-04-13 21:10:41 +08:00
// Current thread's MessageLoop.
2016-11-30 16:30:03 +09:00
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
// Current thread's libuv loop.
uv_loop_t* uv_loop_;
2013-07-22 15:25:39 +08:00
private:
// Thread to poll uv events.
2018-04-17 21:44:10 -04:00
static void EmbedThreadRunner(void* arg);
2013-07-22 15:25:39 +08:00
// Whether the libuv loop has ended.
bool embed_closed_ = false;
2013-07-22 15:25:39 +08:00
// Loop used when constructed in WORKER mode
uv_loop_t worker_loop_;
// Dummy handle to make uv's loop not quit.
uv_async_t dummy_uv_handle_;
// Thread for polling events.
uv_thread_t embed_thread_;
// Semaphore to wait for main loop in the embed thread.
uv_sem_t embed_sem_;
// Environment that to wrap the uv loop.
node::Environment* uv_env_ = nullptr;
base::WeakPtrFactory<NodeBindings> weak_factory_;
2013-04-13 18:39:09 +08:00
DISALLOW_COPY_AND_ASSIGN(NodeBindings);
};
2013-04-14 17:33:44 +08:00
} // namespace atom
2013-04-13 18:39:09 +08:00
#endif // ATOM_COMMON_NODE_BINDINGS_H_