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 10:39:09 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_COMMON_NODE_BINDINGS_H_
|
|
|
|
#define SHELL_COMMON_NODE_BINDINGS_H_
|
2013-04-13 10:39:09 +00:00
|
|
|
|
2018-08-21 18:05:45 +00:00
|
|
|
#include "base/files/file_path.h"
|
2016-03-08 04:38:49 +00:00
|
|
|
#include "base/macros.h"
|
2014-01-08 03:55:54 +00:00
|
|
|
#include "base/memory/weak_ptr.h"
|
2017-01-24 07:45:26 +00:00
|
|
|
#include "base/single_thread_task_runner.h"
|
2020-04-24 19:57:41 +00:00
|
|
|
#include "uv.h" // NOLINT(build/include_directory)
|
2013-12-15 06:20:28 +00:00
|
|
|
#include "v8/include/v8.h"
|
2013-04-13 10:39:09 +00:00
|
|
|
|
2013-07-22 06:58:25 +00:00
|
|
|
namespace base {
|
|
|
|
class MessageLoop;
|
|
|
|
}
|
|
|
|
|
2013-12-15 06:20:28 +00:00
|
|
|
namespace node {
|
|
|
|
class Environment;
|
2018-01-06 15:58:24 +00:00
|
|
|
class MultiIsolatePlatform;
|
2019-11-02 22:14:11 +00:00
|
|
|
class IsolateData;
|
2018-04-18 01:44:10 +00:00
|
|
|
} // namespace node
|
2013-12-15 06:20:28 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2013-04-13 10:39:09 +00:00
|
|
|
|
|
|
|
class NodeBindings {
|
|
|
|
public:
|
2019-05-03 18:11:41 +00:00
|
|
|
enum class BrowserEnvironment {
|
2017-03-08 08:33:44 +00:00
|
|
|
BROWSER,
|
|
|
|
RENDERER,
|
|
|
|
WORKER,
|
|
|
|
};
|
|
|
|
|
|
|
|
static NodeBindings* Create(BrowserEnvironment browser_env);
|
2018-01-06 15:58:24 +00:00
|
|
|
static void RegisterBuiltinModules();
|
2018-06-13 07:38:31 +00:00
|
|
|
static bool IsInitialized();
|
2013-04-13 15:05:13 +00:00
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
virtual ~NodeBindings();
|
|
|
|
|
2013-12-15 06:20:28 +00:00
|
|
|
// Setup V8, libuv.
|
2015-01-24 05:05:32 +00:00
|
|
|
void Initialize();
|
2013-04-13 15:05:13 +00:00
|
|
|
|
2013-12-15 06:20:28 +00:00
|
|
|
// Create the environment and load node.js.
|
2019-07-18 23:54:23 +00:00
|
|
|
node::Environment* CreateEnvironment(v8::Handle<v8::Context> context,
|
2020-02-25 16:46:08 +00:00
|
|
|
node::MultiIsolatePlatform* platform);
|
2013-04-20 03:13:06 +00:00
|
|
|
|
2015-01-21 22:00:19 +00:00
|
|
|
// Load node.js in the environment.
|
|
|
|
void LoadEnvironment(node::Environment* env);
|
|
|
|
|
2013-04-13 15:05:13 +00:00
|
|
|
// Prepare for message loop integration.
|
2015-01-24 05:05:32 +00:00
|
|
|
void PrepareMessageLoop();
|
2013-04-13 15:05:13 +00:00
|
|
|
|
|
|
|
// Do message loop integration.
|
2013-07-22 06:58:25 +00:00
|
|
|
virtual void RunMessageLoop();
|
2013-04-13 15:05:13 +00:00
|
|
|
|
2019-11-02 22:14:11 +00:00
|
|
|
node::IsolateData* isolate_data() const { return isolate_data_; }
|
|
|
|
|
2014-01-09 13:35:29 +00:00
|
|
|
// Gets/sets the environment to wrap uv loop.
|
|
|
|
void set_uv_env(node::Environment* env) { uv_env_ = env; }
|
2014-01-10 08:29:38 +00:00
|
|
|
node::Environment* uv_env() const { return uv_env_; }
|
2014-01-09 13:35:29 +00:00
|
|
|
|
2017-03-10 08:07:51 +00:00
|
|
|
uv_loop_t* uv_loop() const { return uv_loop_; }
|
|
|
|
|
2013-04-13 15:05:13 +00:00
|
|
|
protected:
|
2017-03-08 08:33:44 +00:00
|
|
|
explicit NodeBindings(BrowserEnvironment browser_env);
|
2013-04-13 10:39:09 +00:00
|
|
|
|
2013-07-22 06:58:25 +00: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();
|
|
|
|
|
2013-07-23 05:08:40 +00:00
|
|
|
// Interrupt the PollEvents.
|
|
|
|
void WakeupEmbedThread();
|
|
|
|
|
2017-03-08 08:33:44 +00:00
|
|
|
// Which environment we are running.
|
2019-05-03 18:11:41 +00:00
|
|
|
const BrowserEnvironment browser_env_;
|
2013-04-13 13:10:41 +00:00
|
|
|
|
2017-03-10 08:07:51 +00:00
|
|
|
// Current thread's MessageLoop.
|
2016-11-30 07:30:03 +00:00
|
|
|
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
|
2013-07-22 06:58:25 +00:00
|
|
|
|
2017-03-10 08:07:51 +00:00
|
|
|
// Current thread's libuv loop.
|
2013-07-22 06:58:25 +00:00
|
|
|
uv_loop_t* uv_loop_;
|
|
|
|
|
2013-07-22 07:25:39 +00:00
|
|
|
private:
|
|
|
|
// Thread to poll uv events.
|
2018-04-18 01:44:10 +00:00
|
|
|
static void EmbedThreadRunner(void* arg);
|
2013-07-22 07:25:39 +00:00
|
|
|
|
|
|
|
// Whether the libuv loop has ended.
|
2018-05-21 22:18:38 +00:00
|
|
|
bool embed_closed_ = false;
|
2013-07-22 07:25:39 +00:00
|
|
|
|
2018-01-04 19:16:06 +00:00
|
|
|
// Loop used when constructed in WORKER mode
|
|
|
|
uv_loop_t worker_loop_;
|
|
|
|
|
2013-07-22 06:58:25 +00:00
|
|
|
// 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_;
|
|
|
|
|
2014-01-09 13:35:29 +00:00
|
|
|
// Environment that to wrap the uv loop.
|
2018-05-21 22:18:38 +00:00
|
|
|
node::Environment* uv_env_ = nullptr;
|
2014-01-09 13:35:29 +00:00
|
|
|
|
2019-11-02 22:14:11 +00:00
|
|
|
// Isolate data used in creating the environment
|
|
|
|
node::IsolateData* isolate_data_ = nullptr;
|
|
|
|
|
2014-01-08 03:55:54 +00:00
|
|
|
base::WeakPtrFactory<NodeBindings> weak_factory_;
|
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(NodeBindings);
|
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2013-04-13 10:39:09 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_COMMON_NODE_BINDINGS_H_
|