2013-04-21 06:53:26 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-21 06:53:26 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/common/api/atom_bindings.h"
|
2013-04-21 06:53:26 +00:00
|
|
|
|
2014-08-20 04:57:40 +00:00
|
|
|
#include <algorithm>
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/common/atom_version.h"
|
2014-04-22 03:01:37 +00:00
|
|
|
#include "atom/common/native_mate_converters/string16_converter.h"
|
2014-03-16 01:37:04 +00:00
|
|
|
#include "base/logging.h"
|
2014-08-10 11:14:20 +00:00
|
|
|
#include "native_mate/callback.h"
|
2014-04-22 03:01:37 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2014-04-17 05:45:14 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
2013-04-21 06:53:26 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2014-04-22 03:01:37 +00:00
|
|
|
namespace {
|
2013-09-26 05:31:17 +00:00
|
|
|
|
2014-01-09 12:33:07 +00:00
|
|
|
// Async handle to execute the stored v8 callback.
|
2014-04-22 03:01:37 +00:00
|
|
|
uv_async_t g_callback_uv_handle;
|
2014-01-09 12:33:07 +00:00
|
|
|
|
|
|
|
// Stored v8 callback, to be called by the async handler.
|
2014-04-22 03:01:37 +00:00
|
|
|
base::Closure g_v8_callback;
|
2014-01-09 12:33:07 +00:00
|
|
|
|
|
|
|
// Dummy class type that used for crashing the program.
|
2013-11-19 13:36:18 +00:00
|
|
|
struct DummyClass { bool crash; };
|
|
|
|
|
2014-01-09 12:33:07 +00:00
|
|
|
// Async handler to execute the stored v8 callback.
|
2014-06-28 14:33:00 +00:00
|
|
|
void UvOnCallback(uv_async_t* handle) {
|
2014-04-22 03:01:37 +00:00
|
|
|
g_v8_callback.Run();
|
2014-01-09 12:33:07 +00:00
|
|
|
}
|
|
|
|
|
2014-08-19 14:35:22 +00:00
|
|
|
void Crash() {
|
|
|
|
static_cast<DummyClass*>(NULL)->crash = true;
|
|
|
|
}
|
|
|
|
|
2014-01-23 12:30:44 +00:00
|
|
|
// Called when there is a fatal error in V8, we just crash the process here so
|
|
|
|
// we can get the stack trace.
|
|
|
|
void FatalErrorCallback(const char* location, const char* message) {
|
|
|
|
LOG(ERROR) << "Fatal error in V8: " << location << " " << message;
|
2014-08-19 14:35:22 +00:00
|
|
|
Crash();
|
2013-06-01 08:06:29 +00:00
|
|
|
}
|
|
|
|
|
2014-06-28 14:33:00 +00:00
|
|
|
void Log(const base::string16& message) {
|
2014-04-22 03:01:37 +00:00
|
|
|
logging::LogMessage("CONSOLE", 0, 0).stream() << message;
|
2013-07-25 12:06:23 +00:00
|
|
|
}
|
|
|
|
|
2014-04-22 03:01:37 +00:00
|
|
|
void ScheduleCallback(const base::Closure& callback) {
|
|
|
|
g_v8_callback = callback;
|
2014-01-09 12:33:07 +00:00
|
|
|
uv_async_send(&g_callback_uv_handle);
|
|
|
|
}
|
|
|
|
|
2014-04-22 03:01:37 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
|
|
AtomBindings::AtomBindings() {
|
2014-08-20 04:57:40 +00:00
|
|
|
uv_async_init(uv_default_loop(), &call_next_tick_async_, OnCallNextTick);
|
|
|
|
call_next_tick_async_.data = this;
|
|
|
|
|
2014-04-22 03:01:37 +00:00
|
|
|
uv_async_init(uv_default_loop(), &g_callback_uv_handle, UvOnCallback);
|
|
|
|
}
|
|
|
|
|
|
|
|
AtomBindings::~AtomBindings() {
|
|
|
|
}
|
|
|
|
|
2014-06-28 14:33:00 +00:00
|
|
|
void AtomBindings::BindTo(v8::Isolate* isolate,
|
|
|
|
v8::Handle<v8::Object> process) {
|
2014-09-01 08:41:26 +00:00
|
|
|
v8::V8::SetFatalErrorHandler(FatalErrorCallback);
|
|
|
|
|
2014-04-22 03:01:37 +00:00
|
|
|
mate::Dictionary dict(isolate, process);
|
|
|
|
dict.SetMethod("crash", &Crash);
|
|
|
|
dict.SetMethod("log", &Log);
|
|
|
|
dict.SetMethod("scheduleCallback", &ScheduleCallback);
|
2014-08-20 04:57:40 +00:00
|
|
|
dict.SetMethod("activateUvLoop",
|
|
|
|
base::Bind(&AtomBindings::ActivateUVLoop, base::Unretained(this)));
|
2014-04-22 03:01:37 +00:00
|
|
|
|
|
|
|
v8::Handle<v8::Object> versions;
|
|
|
|
if (dict.Get("versions", &versions))
|
|
|
|
versions->Set(mate::StringToV8(isolate, "atom-shell"),
|
|
|
|
mate::StringToV8(isolate, ATOM_VERSION_STRING));
|
|
|
|
}
|
|
|
|
|
2014-08-20 04:57:40 +00:00
|
|
|
void AtomBindings::ActivateUVLoop(v8::Isolate* isolate) {
|
|
|
|
node::Environment* env = node::Environment::GetCurrent(isolate);
|
|
|
|
if (std::find(pending_next_ticks_.begin(), pending_next_ticks_.end(), env) !=
|
|
|
|
pending_next_ticks_.end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
pending_next_ticks_.push_back(env);
|
|
|
|
uv_async_send(&call_next_tick_async_);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void AtomBindings::OnCallNextTick(uv_async_t* handle) {
|
|
|
|
AtomBindings* self = static_cast<AtomBindings*>(handle->data);
|
|
|
|
for (std::list<node::Environment*>::const_iterator it =
|
|
|
|
self->pending_next_ticks_.begin();
|
|
|
|
it != self->pending_next_ticks_.end(); ++it) {
|
|
|
|
node::Environment* env = *it;
|
|
|
|
node::Environment::TickInfo* tick_info = env->tick_info();
|
|
|
|
|
|
|
|
v8::Context::Scope context_scope(env->context());
|
|
|
|
if (tick_info->in_tick())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (tick_info->length() == 0) {
|
|
|
|
tick_info->set_index(0);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
tick_info->set_in_tick(true);
|
|
|
|
env->tick_callback_function()->Call(env->process_object(), 0, NULL);
|
|
|
|
tick_info->set_in_tick(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
self->pending_next_ticks_.clear();
|
|
|
|
}
|
|
|
|
|
2013-04-21 06:53:26 +00:00
|
|
|
} // namespace atom
|