2014-10-31 11:17:05 -07:00
|
|
|
// 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-12 09:46:58 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/renderer/atom_renderer_client.h"
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2014-03-16 09:13:06 +08:00
|
|
|
#include <string>
|
2015-12-16 11:06:38 +01:00
|
|
|
#include <vector>
|
2014-01-09 22:13:06 +08:00
|
|
|
|
2015-01-23 20:43:38 -08:00
|
|
|
#include "atom/common/api/atom_bindings.h"
|
2016-02-02 23:47:19 +08:00
|
|
|
#include "atom/common/api/event_emitter_caller.h"
|
2017-03-10 17:33:27 +09:00
|
|
|
#include "atom/common/asar/asar_util.h"
|
2017-03-16 20:14:16 +09:00
|
|
|
#include "atom/common/atom_constants.h"
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/common/node_bindings.h"
|
|
|
|
#include "atom/common/options_switches.h"
|
2017-01-11 16:36:59 -08:00
|
|
|
#include "atom/renderer/api/atom_api_renderer_ipc.h"
|
2017-03-31 10:01:33 -03:00
|
|
|
#include "atom/renderer/atom_render_frame_observer.h"
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/renderer/atom_render_view_observer.h"
|
2017-03-07 19:35:03 +09:00
|
|
|
#include "atom/renderer/web_worker_observer.h"
|
2015-05-22 15:01:13 +08:00
|
|
|
#include "base/command_line.h"
|
2015-05-22 15:24:34 +08:00
|
|
|
#include "content/public/renderer/render_frame.h"
|
2016-05-27 08:51:02 +09:00
|
|
|
#include "native_mate/dictionary.h"
|
2016-05-27 15:10:46 +09:00
|
|
|
#include "third_party/WebKit/public/web/WebDocument.h"
|
2015-05-22 15:24:34 +08:00
|
|
|
#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
2015-07-09 16:48:02 -07:00
|
|
|
|
2016-09-06 17:24:37 +09:00
|
|
|
#include "atom/common/node_includes.h"
|
2017-04-27 16:56:47 +09:00
|
|
|
#include "atom_natives.h" // NOLINT: This file is generated with js2c
|
2016-09-06 17:24:37 +09:00
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
namespace atom {
|
|
|
|
|
2014-01-31 10:41:20 +08:00
|
|
|
namespace {
|
|
|
|
|
2016-05-27 15:10:46 +09:00
|
|
|
bool IsDevToolsExtension(content::RenderFrame* render_frame) {
|
2017-06-16 23:42:33 +03:00
|
|
|
return static_cast<GURL>(render_frame->GetWebFrame()->GetDocument().Url())
|
2016-05-27 15:10:46 +09:00
|
|
|
.SchemeIs("chrome-extension");
|
|
|
|
}
|
|
|
|
|
2014-01-31 10:41:20 +08:00
|
|
|
} // namespace
|
|
|
|
|
2013-04-20 11:13:06 +08:00
|
|
|
AtomRendererClient::AtomRendererClient()
|
2017-03-02 17:18:00 +09:00
|
|
|
: node_integration_initialized_(false),
|
2017-03-08 17:33:44 +09:00
|
|
|
node_bindings_(NodeBindings::Create(NodeBindings::RENDERER)),
|
2017-03-10 17:07:51 +09:00
|
|
|
atom_bindings_(new AtomBindings(uv_default_loop())) {
|
2013-04-12 09:46:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomRendererClient::~AtomRendererClient() {
|
2017-03-10 17:33:27 +09:00
|
|
|
asar::ClearArchives();
|
2013-04-12 09:46:58 +08:00
|
|
|
}
|
|
|
|
|
2016-05-23 10:59:39 +09:00
|
|
|
void AtomRendererClient::RenderThreadStarted() {
|
2017-03-27 18:19:34 -03:00
|
|
|
RendererClientBase::RenderThreadStarted();
|
2014-09-01 18:43:43 +08:00
|
|
|
}
|
|
|
|
|
2015-04-28 21:15:58 +05:30
|
|
|
void AtomRendererClient::RenderFrameCreated(
|
|
|
|
content::RenderFrame* render_frame) {
|
2017-03-27 18:19:34 -03:00
|
|
|
RendererClientBase::RenderFrameCreated(render_frame);
|
2015-04-28 21:15:58 +05:30
|
|
|
}
|
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
void AtomRendererClient::RenderViewCreated(content::RenderView* render_view) {
|
2016-05-09 19:37:38 +09:00
|
|
|
new AtomRenderViewObserver(render_view, this);
|
2017-03-27 18:19:34 -03:00
|
|
|
RendererClientBase::RenderViewCreated(render_view);
|
2013-04-12 09:46:58 +08:00
|
|
|
}
|
|
|
|
|
2016-05-30 14:56:31 +09:00
|
|
|
void AtomRendererClient::RunScriptsAtDocumentStart(
|
|
|
|
content::RenderFrame* render_frame) {
|
2016-05-27 15:10:46 +09:00
|
|
|
// Inform the document start pharse.
|
2016-05-27 11:07:06 +09:00
|
|
|
node::Environment* env = node_bindings_->uv_env();
|
|
|
|
if (env) {
|
|
|
|
v8::HandleScope handle_scope(env->isolate());
|
|
|
|
mate::EmitEvent(env->isolate(), env->process_object(), "document-start");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AtomRendererClient::RunScriptsAtDocumentEnd(
|
|
|
|
content::RenderFrame* render_frame) {
|
2016-05-27 15:10:46 +09:00
|
|
|
// Inform the document end pharse.
|
2016-05-27 11:07:06 +09:00
|
|
|
node::Environment* env = node_bindings_->uv_env();
|
|
|
|
if (env) {
|
|
|
|
v8::HandleScope handle_scope(env->isolate());
|
|
|
|
mate::EmitEvent(env->isolate(), env->process_object(), "document-end");
|
|
|
|
}
|
2016-05-10 15:43:25 +09:00
|
|
|
}
|
|
|
|
|
2015-05-22 15:24:34 +08:00
|
|
|
void AtomRendererClient::DidCreateScriptContext(
|
2016-05-27 15:10:46 +09:00
|
|
|
v8::Handle<v8::Context> context, content::RenderFrame* render_frame) {
|
|
|
|
// Only allow node integration for the main frame, unless it is a devtools
|
|
|
|
// extension page.
|
|
|
|
if (!render_frame->IsMainFrame() && !IsDevToolsExtension(render_frame))
|
|
|
|
return;
|
|
|
|
|
2016-03-27 18:09:21 +09:00
|
|
|
// Prepare the node bindings.
|
2017-03-02 17:18:00 +09:00
|
|
|
if (!node_integration_initialized_) {
|
|
|
|
node_integration_initialized_ = true;
|
2016-03-27 18:09:21 +09:00
|
|
|
node_bindings_->Initialize();
|
|
|
|
node_bindings_->PrepareMessageLoop();
|
|
|
|
}
|
2013-12-23 22:08:45 +08:00
|
|
|
|
|
|
|
// Setup node environment for each window.
|
2017-01-18 16:41:36 -08:00
|
|
|
node::Environment* env = node_bindings_->CreateEnvironment(context);
|
2013-12-23 22:08:45 +08:00
|
|
|
|
2016-09-16 15:57:07 -07:00
|
|
|
// Add Electron extended APIs.
|
2015-01-21 15:02:09 -08:00
|
|
|
atom_bindings_->BindTo(env->isolate(), env->process_object());
|
2017-03-27 18:19:34 -03:00
|
|
|
AddRenderBindings(env->isolate(), env->process_object());
|
2014-01-09 21:35:29 +08:00
|
|
|
|
2016-03-27 19:21:12 +09:00
|
|
|
// Load everything.
|
|
|
|
node_bindings_->LoadEnvironment(env);
|
|
|
|
|
2017-03-02 17:18:00 +09:00
|
|
|
if (node_bindings_->uv_env() == nullptr) {
|
2016-03-27 18:09:21 +09:00
|
|
|
// Make uv loop being wrapped by window context.
|
2014-01-09 22:13:06 +08:00
|
|
|
node_bindings_->set_uv_env(env);
|
2015-01-21 16:40:19 -08:00
|
|
|
|
2016-03-27 18:09:21 +09:00
|
|
|
// Give the node loop a run to make sure everything is ready.
|
|
|
|
node_bindings_->RunMessageLoop();
|
|
|
|
}
|
2015-01-21 15:35:43 -08:00
|
|
|
}
|
|
|
|
|
2016-02-02 23:38:49 +08:00
|
|
|
void AtomRendererClient::WillReleaseScriptContext(
|
2016-05-27 15:10:46 +09:00
|
|
|
v8::Handle<v8::Context> context, content::RenderFrame* render_frame) {
|
2016-06-20 16:51:42 +09:00
|
|
|
// Only allow node integration for the main frame, unless it is a devtools
|
|
|
|
// extension page.
|
|
|
|
if (!render_frame->IsMainFrame() && !IsDevToolsExtension(render_frame))
|
|
|
|
return;
|
|
|
|
|
2016-05-28 12:07:08 +09:00
|
|
|
node::Environment* env = node::Environment::GetCurrent(context);
|
|
|
|
if (env)
|
2016-05-27 15:10:46 +09:00
|
|
|
mate::EmitEvent(env->isolate(), env->process_object(), "exit");
|
2017-03-02 16:49:39 +09:00
|
|
|
|
2017-03-02 17:18:00 +09:00
|
|
|
// The main frame may be replaced.
|
|
|
|
if (env == node_bindings_->uv_env())
|
|
|
|
node_bindings_->set_uv_env(nullptr);
|
|
|
|
|
2017-03-02 16:49:39 +09:00
|
|
|
// Destroy the node environment.
|
2017-07-24 14:56:56 +09:00
|
|
|
// This is disabled because pending async tasks may still use the environment
|
|
|
|
// and would cause crashes later. Node does not seem to clear all async tasks
|
|
|
|
// when the environment is destroyed.
|
|
|
|
// node::FreeEnvironment(env);
|
|
|
|
|
|
|
|
// AtomBindings is tracking node environments.
|
2017-03-02 16:50:15 +09:00
|
|
|
atom_bindings_->EnvironmentDestroyed(env);
|
2016-02-02 23:38:49 +08:00
|
|
|
}
|
|
|
|
|
2015-09-02 15:16:49 +08:00
|
|
|
bool AtomRendererClient::ShouldFork(blink::WebLocalFrame* frame,
|
2014-01-14 16:03:01 +08:00
|
|
|
const GURL& url,
|
|
|
|
const std::string& http_method,
|
|
|
|
bool is_initial_navigation,
|
|
|
|
bool is_server_redirect,
|
|
|
|
bool* send_referrer) {
|
|
|
|
// Handle all the navigations and reloads in browser.
|
2014-05-13 14:45:30 +08:00
|
|
|
// FIXME We only support GET here because http method will be ignored when
|
|
|
|
// the OpenURLFromTab is triggered, which means form posting would not work,
|
|
|
|
// we should solve this by patching Chromium in future.
|
2015-08-29 19:20:09 +05:30
|
|
|
*send_referrer = true;
|
2016-01-29 11:52:31 +08:00
|
|
|
return http_method == "GET";
|
2014-01-14 16:03:01 +08:00
|
|
|
}
|
|
|
|
|
2017-03-07 19:35:03 +09:00
|
|
|
void AtomRendererClient::DidInitializeWorkerContextOnWorkerThread(
|
|
|
|
v8::Local<v8::Context> context) {
|
2017-03-15 18:51:21 +09:00
|
|
|
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
|
|
|
switches::kNodeIntegrationInWorker)) {
|
|
|
|
WebWorkerObserver::GetCurrent()->ContextCreated(context);
|
|
|
|
}
|
2017-03-07 19:35:03 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
void AtomRendererClient::WillDestroyWorkerContextOnWorkerThread(
|
|
|
|
v8::Local<v8::Context> context) {
|
2017-03-15 18:51:21 +09:00
|
|
|
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
|
|
|
switches::kNodeIntegrationInWorker)) {
|
|
|
|
WebWorkerObserver::GetCurrent()->ContextWillDestroy(context);
|
|
|
|
}
|
2017-03-07 19:35:03 +09:00
|
|
|
}
|
|
|
|
|
2017-03-31 10:01:33 -03:00
|
|
|
void AtomRendererClient::SetupMainWorldOverrides(
|
|
|
|
v8::Handle<v8::Context> context) {
|
|
|
|
// Setup window overrides in the main world context
|
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
|
|
|
|
|
|
|
// Wrap the bundle into a function that receives the binding object as
|
|
|
|
// an argument.
|
|
|
|
std::string bundle(node::isolated_bundle_data,
|
|
|
|
node::isolated_bundle_data + sizeof(node::isolated_bundle_data));
|
|
|
|
std::string wrapper = "(function (binding, require) {\n" + bundle + "\n})";
|
|
|
|
auto script = v8::Script::Compile(
|
|
|
|
mate::ConvertToV8(isolate, wrapper)->ToString());
|
|
|
|
auto func = v8::Handle<v8::Function>::Cast(
|
|
|
|
script->Run(context).ToLocalChecked());
|
|
|
|
|
|
|
|
auto binding = v8::Object::New(isolate);
|
|
|
|
api::Initialize(binding, v8::Null(isolate), context, nullptr);
|
|
|
|
|
|
|
|
// Pass in CLI flags needed to setup window
|
|
|
|
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
mate::Dictionary dict(isolate, binding);
|
|
|
|
if (command_line->HasSwitch(switches::kGuestInstanceID))
|
|
|
|
dict.Set(options::kGuestInstanceID,
|
|
|
|
command_line->GetSwitchValueASCII(switches::kGuestInstanceID));
|
|
|
|
if (command_line->HasSwitch(switches::kOpenerID))
|
|
|
|
dict.Set(options::kOpenerID,
|
|
|
|
command_line->GetSwitchValueASCII(switches::kOpenerID));
|
|
|
|
dict.Set("hiddenPage", command_line->HasSwitch(switches::kHiddenPage));
|
2017-04-30 19:35:41 +09:00
|
|
|
dict.Set("nativeWindowOpen",
|
|
|
|
command_line->HasSwitch(switches::kNativeWindowOpen));
|
2017-03-31 10:01:33 -03:00
|
|
|
|
|
|
|
v8::Local<v8::Value> args[] = { binding };
|
|
|
|
ignore_result(func->Call(context, v8::Null(isolate), 1, args));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
} // namespace atom
|