electron/common/node_bindings.h

94 lines
1.9 KiB
C
Raw Normal View History

2013-04-13 10:39:09 +00:00
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef RAVE_COMMON_NODE_BINDINGS_
#define RAVE_COMMON_NODE_BINDINGS_
#include "base/basictypes.h"
#include "vendor/node/deps/uv/include/uv.h"
2013-04-13 10:39:09 +00:00
namespace WebKit {
class WebFrame;
}
namespace base {
class MessageLoop;
}
2013-04-13 10:39:09 +00:00
namespace atom {
class NodeBindings {
public:
static NodeBindings* Create(bool is_browser);
2013-04-13 10:39:09 +00:00
virtual ~NodeBindings();
// Setup V8, libuv and the process object.
virtual void Initialize();
// Load node.js main script.
virtual void Load();
// Load cefode.js script under web frame.
virtual void BindTo(WebKit::WebFrame* frame);
// Prepare for message loop integration.
virtual void PrepareMessageLoop();
// Do message loop integration.
virtual void RunMessageLoop();
protected:
explicit NodeBindings(bool is_browser);
2013-04-13 10:39:09 +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();
// Interrupt the PollEvents.
void WakeupEmbedThread();
// Are we running in browser.
2013-04-13 13:10:41 +00:00
bool is_browser_;
// Main thread's MessageLoop.
base::MessageLoop* message_loop_;
// Main thread's libuv loop.
uv_loop_t* uv_loop_;
2013-07-22 07:25:39 +00:00
private:
// Thread to poll uv events.
static void EmbedThreadRunner(void *arg);
// Do idle GC.
static void IdleCallback(uv_timer_t*, int);
2013-07-22 07:25:39 +00:00
// Whether the libuv loop has ended.
bool embed_closed_;
// Dummy handle to make uv's loop not quit.
uv_async_t dummy_uv_handle_;
// Timer to do idle GC.
uv_timer_t idle_timer_;
// Thread for polling events.
uv_thread_t embed_thread_;
// Semaphore to wait for main loop in the embed thread.
uv_sem_t embed_sem_;
2013-04-13 10:39:09 +00:00
DISALLOW_COPY_AND_ASSIGN(NodeBindings);
};
2013-04-14 09:33:44 +00:00
} // namespace atom
2013-04-13 10:39:09 +00:00
#endif // RAVE_COMMON_NODE_BINDINGS_