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"
|
2014-03-16 01:37:04 +00:00
|
|
|
#include "content/public/renderer/render_view.h"
|
|
|
|
#include "ipc/ipc_message_macros.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-11 07:48:19 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebDraggableRegion.h"
|
2013-12-23 14:08:45 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebDocument.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebFrame.h"
|
2014-07-28 07:29:51 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
2015-01-24 04:43:38 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebKit.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"
|
2015-11-10 08:59:08 +00:00
|
|
|
#include "native_mate/dictionary.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");
|
|
|
|
v8::Local<v8::Value> value = context->Global()->GetHiddenValue(key);
|
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;
|
|
|
|
}
|
|
|
|
|
2015-05-14 15:02:40 +00:00
|
|
|
base::StringPiece NetResourceProvider(int key) {
|
2015-05-21 05:37:25 +00:00
|
|
|
if (key == IDR_DIR_HEADER_HTML) {
|
2015-05-14 15:02:40 +00:00
|
|
|
base::StringPiece html_data =
|
|
|
|
ui::ResourceBundle::GetSharedInstance().GetRawDataResource(
|
2015-05-21 05:37:25 +00:00
|
|
|
IDR_DIR_HEADER_HTML);
|
2015-05-14 15:02:40 +00:00
|
|
|
return html_data;
|
|
|
|
}
|
|
|
|
return base::StringPiece();
|
|
|
|
}
|
|
|
|
|
2015-01-24 04:43:38 +00:00
|
|
|
} // namespace
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
AtomRenderViewObserver::AtomRenderViewObserver(
|
2013-04-20 03:13:06 +00:00
|
|
|
content::RenderView* render_view,
|
|
|
|
AtomRendererClient* renderer_client)
|
|
|
|
: content::RenderViewObserver(render_view),
|
2015-01-24 02:33:01 +00:00
|
|
|
renderer_client_(renderer_client),
|
|
|
|
document_created_(false) {
|
2015-05-14 15:02:40 +00:00
|
|
|
// Initialise resource for directory listing.
|
|
|
|
net::NetModule::SetResourceProvider(NetResourceProvider);
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomRenderViewObserver::~AtomRenderViewObserver() {
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
for (size_t i = 0; i < webregions.size(); ++i) {
|
|
|
|
DraggableRegion region;
|
|
|
|
region.bounds = webregions[i].bounds;
|
|
|
|
region.draggable = webregions[i].draggable;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-06-28 14:33:00 +00:00
|
|
|
void AtomRenderViewObserver::OnBrowserMessage(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;
|
|
|
|
|
|
|
|
v8::Isolate* isolate = blink::mainThreadIsolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
|
|
|
|
v8::Local<v8::Context> context = frame->mainWorldScriptContext();
|
|
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
|
2015-05-22 11:11:22 +00:00
|
|
|
v8::Local<v8::Object> ipc;
|
2015-06-23 12:14:03 +00:00
|
|
|
if (GetIPCObject(isolate, context, &ipc)) {
|
2015-11-10 07:12:07 +00:00
|
|
|
auto args_vector = ListValueToVector(isolate, args);
|
2015-11-10 08:59:08 +00:00
|
|
|
// 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());
|
2015-11-10 07:12:07 +00:00
|
|
|
mate::EmitEvent(isolate, ipc, channel, args_vector);
|
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
|