2014-10-31 21:17:05 +03:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 13:49:37 +04:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-13 14:39:09 +04:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2013-12-15 10:20:28 +04:00
|
|
|
#ifndef ATOM_COMMON_NODE_BINDINGS_H_
|
|
|
|
#define ATOM_COMMON_NODE_BINDINGS_H_
|
2013-04-13 14:39:09 +04:00
|
|
|
|
2016-03-08 07:38:49 +03:00
|
|
|
#include "base/macros.h"
|
2014-01-08 07:55:54 +04:00
|
|
|
#include "base/memory/weak_ptr.h"
|
2013-12-15 10:20:28 +04:00
|
|
|
#include "v8/include/v8.h"
|
2013-07-22 10:58:25 +04:00
|
|
|
#include "vendor/node/deps/uv/include/uv.h"
|
2013-04-13 14:39:09 +04:00
|
|
|
|
2013-07-22 10:58:25 +04:00
|
|
|
namespace base {
|
|
|
|
class MessageLoop;
|
|
|
|
}
|
|
|
|
|
2013-12-15 10:20:28 +04:00
|
|
|
namespace node {
|
|
|
|
class Environment;
|
|
|
|
}
|
|
|
|
|
2013-04-13 14:39:09 +04:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class NodeBindings {
|
|
|
|
public:
|
2013-07-22 12:05:35 +04:00
|
|
|
static NodeBindings* Create(bool is_browser);
|
2013-04-13 19:05:13 +04:00
|
|
|
|
2013-04-13 14:39:09 +04:00
|
|
|
virtual ~NodeBindings();
|
|
|
|
|
2013-12-15 10:20:28 +04:00
|
|
|
// Setup V8, libuv.
|
2015-01-24 08:05:32 +03:00
|
|
|
void Initialize();
|
2013-04-13 19:05:13 +04:00
|
|
|
|
2013-12-15 10:20:28 +04:00
|
|
|
// Create the environment and load node.js.
|
2015-01-24 08:05:32 +03:00
|
|
|
node::Environment* CreateEnvironment(v8::Handle<v8::Context> context);
|
2013-04-20 07:13:06 +04:00
|
|
|
|
2015-01-22 01:00:19 +03:00
|
|
|
// Load node.js in the environment.
|
|
|
|
void LoadEnvironment(node::Environment* env);
|
|
|
|
|
2013-04-13 19:05:13 +04:00
|
|
|
// Prepare for message loop integration.
|
2015-01-24 08:05:32 +03:00
|
|
|
void PrepareMessageLoop();
|
2013-04-13 19:05:13 +04:00
|
|
|
|
|
|
|
// Do message loop integration.
|
2013-07-22 10:58:25 +04:00
|
|
|
virtual void RunMessageLoop();
|
2013-04-13 19:05:13 +04:00
|
|
|
|
2014-01-09 17:35:29 +04:00
|
|
|
// Gets/sets the environment to wrap uv loop.
|
|
|
|
void set_uv_env(node::Environment* env) { uv_env_ = env; }
|
2014-01-10 12:29:38 +04:00
|
|
|
node::Environment* uv_env() const { return uv_env_; }
|
2014-01-09 17:35:29 +04:00
|
|
|
|
2013-04-13 19:05:13 +04:00
|
|
|
protected:
|
|
|
|
explicit NodeBindings(bool is_browser);
|
2013-04-13 14:39:09 +04:00
|
|
|
|
2013-07-22 10:58:25 +04: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 09:08:40 +04:00
|
|
|
// Interrupt the PollEvents.
|
|
|
|
void WakeupEmbedThread();
|
|
|
|
|
2013-07-22 10:58:25 +04:00
|
|
|
// Are we running in browser.
|
2013-04-13 17:10:41 +04:00
|
|
|
bool is_browser_;
|
|
|
|
|
2013-07-22 10:58:25 +04:00
|
|
|
// Main thread's MessageLoop.
|
|
|
|
base::MessageLoop* message_loop_;
|
|
|
|
|
|
|
|
// Main thread's libuv loop.
|
|
|
|
uv_loop_t* uv_loop_;
|
|
|
|
|
2013-07-22 11:25:39 +04:00
|
|
|
private:
|
|
|
|
// Thread to poll uv events.
|
|
|
|
static void EmbedThreadRunner(void *arg);
|
|
|
|
|
|
|
|
// Whether the libuv loop has ended.
|
|
|
|
bool embed_closed_;
|
|
|
|
|
2013-07-22 10:58:25 +04: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 17:35:29 +04:00
|
|
|
// Environment that to wrap the uv loop.
|
|
|
|
node::Environment* uv_env_;
|
|
|
|
|
2014-01-08 07:55:54 +04:00
|
|
|
base::WeakPtrFactory<NodeBindings> weak_factory_;
|
|
|
|
|
2013-04-13 14:39:09 +04:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(NodeBindings);
|
|
|
|
};
|
|
|
|
|
2013-04-14 13:33:44 +04:00
|
|
|
} // namespace atom
|
2013-04-13 14:39:09 +04:00
|
|
|
|
2013-12-15 10:20:28 +04:00
|
|
|
#endif // ATOM_COMMON_NODE_BINDINGS_H_
|