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-12 01:46:58 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/renderer/atom_render_view_observer.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2014-06-16 13:29:18 +00:00
|
|
|
#include <string>
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2015-06-23 12:14:03 +00:00
|
|
|
// Put this before event_emitter_caller.h to have string16 support.
|
2015-01-24 04:43:38 +00:00
|
|
|
#include "atom/common/native_mate_converters/string16_converter.h"
|
2015-06-23 12:14:03 +00:00
|
|
|
|
|
|
|
#include "atom/common/api/api_messages.h"
|
2015-08-07 11:34:00 +00:00
|
|
|
#include "atom/common/api/event_emitter_caller.h"
|
2015-01-24 04:43:38 +00:00
|
|
|
#include "atom/common/native_mate_converters/value_converter.h"
|
2015-09-07 08:29:54 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
2014-06-16 10:52:04 +00:00
|
|
|
#include "atom/common/options_switches.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/renderer/atom_renderer_client.h"
|
2014-06-16 10:52:04 +00:00
|
|
|
#include "base/command_line.h"
|
|
|
|
#include "base/strings/string_number_conversions.h"
|
2016-12-07 11:22:08 +00:00
|
|
|
#include "base/trace_event/trace_event.h"
|
2014-03-16 01:37:04 +00:00
|
|
|
#include "content/public/renderer/render_view.h"
|
|
|
|
#include "ipc/ipc_message_macros.h"
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2015-05-14 15:02:40 +00:00
|
|
|
#include "net/base/net_module.h"
|
2015-05-21 05:37:25 +00:00
|
|
|
#include "net/grit/net_resources.h"
|
2013-12-23 14:08:45 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebDocument.h"
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebDraggableRegion.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebFrame.h"
|
2015-01-24 04:43:38 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebKit.h"
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
2014-01-30 14:47:21 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebView.h"
|
2015-05-14 15:02:40 +00:00
|
|
|
#include "ui/base/resource/resource_bundle.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2015-01-24 04:43:38 +00:00
|
|
|
namespace {
|
|
|
|
|
2015-01-27 02:47:23 +00:00
|
|
|
bool GetIPCObject(v8::Isolate* isolate,
|
2015-05-22 11:11:22 +00:00
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
v8::Local<v8::Object>* ipc) {
|
|
|
|
v8::Local<v8::String> key = mate::StringToV8(isolate, "ipc");
|
2016-03-23 19:54:01 +00:00
|
|
|
v8::Local<v8::Private> privateKey = v8::Private::ForApi(isolate, key);
|
|
|
|
v8::Local<v8::Object> global_object = context->Global();
|
|
|
|
v8::Local<v8::Value> value;
|
|
|
|
if (!global_object->GetPrivate(context, privateKey).ToLocal(&value))
|
|
|
|
return false;
|
2015-01-27 02:47:23 +00:00
|
|
|
if (value.IsEmpty() || !value->IsObject())
|
|
|
|
return false;
|
|
|
|
*ipc = value->ToObject();
|
|
|
|
return true;
|
2015-01-24 04:43:38 +00:00
|
|
|
}
|
|
|
|
|
2015-05-22 11:11:22 +00:00
|
|
|
std::vector<v8::Local<v8::Value>> ListValueToVector(
|
2015-01-24 04:43:38 +00:00
|
|
|
v8::Isolate* isolate,
|
|
|
|
const base::ListValue& list) {
|
2015-05-22 11:11:22 +00:00
|
|
|
v8::Local<v8::Value> array = mate::ConvertToV8(isolate, list);
|
|
|
|
std::vector<v8::Local<v8::Value>> result;
|
2015-01-24 04:43:38 +00:00
|
|
|
mate::ConvertFromV8(isolate, array, &result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-08-20 15:01:26 +00:00
|
|
|
base::StringPiece NetResourceProvider(int key) {
|
|
|
|
if (key == IDR_DIR_HEADER_HTML) {
|
|
|
|
base::StringPiece html_data =
|
|
|
|
ui::ResourceBundle::GetSharedInstance().GetRawDataResource(
|
|
|
|
IDR_DIR_HEADER_HTML);
|
|
|
|
return html_data;
|
|
|
|
}
|
|
|
|
return base::StringPiece();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
AtomRenderViewObserver::AtomRenderViewObserver(
|
|
|
|
content::RenderView* render_view,
|
|
|
|
AtomRendererClient* renderer_client)
|
|
|
|
: content::RenderViewObserver(render_view),
|
2016-12-09 00:58:27 +00:00
|
|
|
renderer_client_(renderer_client),
|
2016-08-20 15:01:26 +00:00
|
|
|
document_created_(false) {
|
|
|
|
// Initialise resource for directory listing.
|
|
|
|
net::NetModule::SetResourceProvider(NetResourceProvider);
|
|
|
|
}
|
|
|
|
|
|
|
|
AtomRenderViewObserver::~AtomRenderViewObserver() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void AtomRenderViewObserver::EmitIPCEvent(blink::WebFrame* frame,
|
|
|
|
const base::string16& channel,
|
|
|
|
const base::ListValue& args) {
|
2016-05-27 07:58:49 +00:00
|
|
|
if (!frame || frame->isWebRemoteFrame())
|
|
|
|
return;
|
|
|
|
|
|
|
|
v8::Isolate* isolate = blink::mainThreadIsolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
|
2016-12-13 22:04:17 +00:00
|
|
|
v8::Local<v8::Context> context = renderer_client_->GetAPIContext(isolate);
|
2016-05-27 07:58:49 +00:00
|
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
|
|
|
|
// Only emit IPC event for context with node integration.
|
|
|
|
node::Environment* env = node::Environment::GetCurrent(context);
|
|
|
|
if (!env)
|
|
|
|
return;
|
|
|
|
|
|
|
|
v8::Local<v8::Object> ipc;
|
|
|
|
if (GetIPCObject(isolate, context, &ipc)) {
|
2016-12-12 21:49:58 +00:00
|
|
|
TRACE_EVENT0("devtools.timeline", "FunctionCall");
|
2016-05-27 07:58:49 +00:00
|
|
|
auto args_vector = ListValueToVector(isolate, args);
|
|
|
|
// Insert the Event object, event.sender is ipc.
|
|
|
|
mate::Dictionary event = mate::Dictionary::CreateEmpty(isolate);
|
|
|
|
event.Set("sender", ipc);
|
|
|
|
args_vector.insert(args_vector.begin(), event.GetHandle());
|
|
|
|
mate::EmitEvent(isolate, ipc, channel, args_vector);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-28 07:29:51 +00:00
|
|
|
void AtomRenderViewObserver::DidCreateDocumentElement(
|
|
|
|
blink::WebLocalFrame* frame) {
|
2015-01-24 02:33:01 +00:00
|
|
|
document_created_ = true;
|
|
|
|
|
2014-06-16 13:29:18 +00:00
|
|
|
// Read --zoom-factor from command line.
|
2015-03-10 22:27:27 +00:00
|
|
|
std::string zoom_factor_str = base::CommandLine::ForCurrentProcess()->
|
2016-01-11 00:11:40 +00:00
|
|
|
GetSwitchValueASCII(switches::kZoomFactor);
|
2014-06-16 10:52:04 +00:00
|
|
|
if (zoom_factor_str.empty())
|
|
|
|
return;
|
|
|
|
double zoom_factor;
|
|
|
|
if (!base::StringToDouble(zoom_factor_str, &zoom_factor))
|
|
|
|
return;
|
2014-06-28 14:33:00 +00:00
|
|
|
double zoom_level = blink::WebView::zoomFactorToZoomLevel(zoom_factor);
|
2014-06-16 10:52:04 +00:00
|
|
|
frame->view()->setZoomLevel(zoom_level);
|
|
|
|
}
|
|
|
|
|
2014-06-28 14:33:00 +00:00
|
|
|
void AtomRenderViewObserver::DraggableRegionsChanged(blink::WebFrame* frame) {
|
|
|
|
blink::WebVector<blink::WebDraggableRegion> webregions =
|
2013-09-05 12:06:54 +00:00
|
|
|
frame->document().draggableRegions();
|
|
|
|
std::vector<DraggableRegion> regions;
|
2016-09-27 02:45:14 +00:00
|
|
|
for (auto& webregion : webregions) {
|
2013-09-05 12:06:54 +00:00
|
|
|
DraggableRegion region;
|
2016-09-27 02:45:14 +00:00
|
|
|
render_view()->ConvertViewportToWindowViaWidget(&webregion.bounds);
|
2016-07-10 11:32:40 +00:00
|
|
|
region.bounds = webregion.bounds;
|
|
|
|
region.draggable = webregion.draggable;
|
2013-09-05 12:06:54 +00:00
|
|
|
regions.push_back(region);
|
|
|
|
}
|
|
|
|
Send(new AtomViewHostMsg_UpdateDraggableRegions(routing_id(), regions));
|
|
|
|
}
|
|
|
|
|
2013-04-23 04:18:07 +00:00
|
|
|
bool AtomRenderViewObserver::OnMessageReceived(const IPC::Message& message) {
|
|
|
|
bool handled = true;
|
|
|
|
IPC_BEGIN_MESSAGE_MAP(AtomRenderViewObserver, message)
|
2013-04-23 12:57:14 +00:00
|
|
|
IPC_MESSAGE_HANDLER(AtomViewMsg_Message, OnBrowserMessage)
|
2013-04-23 04:18:07 +00:00
|
|
|
IPC_MESSAGE_UNHANDLED(handled = false)
|
|
|
|
IPC_END_MESSAGE_MAP()
|
|
|
|
|
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
|
2016-09-06 08:24:37 +00:00
|
|
|
void AtomRenderViewObserver::OnDestruct() {
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2016-05-27 07:58:49 +00:00
|
|
|
void AtomRenderViewObserver::OnBrowserMessage(bool send_to_all,
|
|
|
|
const base::string16& channel,
|
2013-04-23 12:57:14 +00:00
|
|
|
const base::ListValue& args) {
|
2015-01-24 02:33:01 +00:00
|
|
|
if (!document_created_)
|
|
|
|
return;
|
|
|
|
|
2015-01-24 04:43:38 +00:00
|
|
|
if (!render_view()->GetWebView())
|
|
|
|
return;
|
|
|
|
|
|
|
|
blink::WebFrame* frame = render_view()->GetWebView()->mainFrame();
|
|
|
|
if (!frame || frame->isWebRemoteFrame())
|
|
|
|
return;
|
|
|
|
|
2016-05-27 07:58:49 +00:00
|
|
|
EmitIPCEvent(frame, channel, args);
|
2015-01-24 04:43:38 +00:00
|
|
|
|
2016-05-27 07:58:49 +00:00
|
|
|
// Also send the message to all sub-frames.
|
|
|
|
if (send_to_all) {
|
|
|
|
for (blink::WebFrame* child = frame->firstChild(); child;
|
|
|
|
child = child->nextSibling())
|
|
|
|
EmitIPCEvent(child, channel, args);
|
2015-06-23 12:14:03 +00:00
|
|
|
}
|
2013-04-23 04:18:07 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
} // namespace atom
|