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-23 12:18:07 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/common/api/api_messages.h"
|
2014-04-17 13:45:14 +08:00
|
|
|
#include "atom/common/native_mate_converters/string16_converter.h"
|
|
|
|
#include "atom/common/native_mate_converters/value_converter.h"
|
2015-09-07 16:29:54 +08:00
|
|
|
#include "atom/common/node_includes.h"
|
2013-04-23 12:18:07 +08:00
|
|
|
#include "content/public/renderer/render_view.h"
|
2014-04-16 15:31:59 +08:00
|
|
|
#include "native_mate/dictionary.h"
|
2014-07-28 15:29:51 +08:00
|
|
|
#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
2013-12-11 15:48:19 +08:00
|
|
|
#include "third_party/WebKit/public/web/WebView.h"
|
|
|
|
|
2013-04-23 12:18:07 +08:00
|
|
|
using content::RenderView;
|
2014-07-28 15:29:51 +08:00
|
|
|
using blink::WebLocalFrame;
|
2014-06-28 22:33:00 +08:00
|
|
|
using blink::WebView;
|
2013-04-23 12:18:07 +08:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
RenderView* GetCurrentRenderView() {
|
2014-07-28 15:29:51 +08:00
|
|
|
WebLocalFrame* frame = WebLocalFrame::frameForCurrentContext();
|
2013-04-23 12:18:07 +08:00
|
|
|
if (!frame)
|
2016-07-10 11:52:28 +02:00
|
|
|
return nullptr;
|
2013-04-23 12:18:07 +08:00
|
|
|
|
|
|
|
WebView* view = frame->view();
|
|
|
|
if (!view)
|
2016-07-10 11:52:28 +02:00
|
|
|
return nullptr; // can happen during closing.
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2013-12-05 23:34:43 +08:00
|
|
|
return RenderView::FromWebView(view);
|
2013-04-23 12:18:07 +08:00
|
|
|
}
|
|
|
|
|
2015-09-07 16:12:31 +08:00
|
|
|
void Send(mate::Arguments* args,
|
2015-06-10 14:21:09 +08:00
|
|
|
const base::string16& channel,
|
|
|
|
const base::ListValue& arguments) {
|
2013-04-23 12:18:07 +08:00
|
|
|
RenderView* render_view = GetCurrentRenderView();
|
2016-07-10 11:52:28 +02:00
|
|
|
if (render_view == nullptr)
|
2013-12-11 15:48:19 +08:00
|
|
|
return;
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2013-04-23 21:52:19 +08:00
|
|
|
bool success = render_view->Send(new AtomViewHostMsg_Message(
|
2014-04-16 12:29:16 +08:00
|
|
|
render_view->GetRoutingID(), channel, arguments));
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2013-04-23 21:52:19 +08:00
|
|
|
if (!success)
|
2015-09-07 16:12:31 +08:00
|
|
|
args->ThrowError("Unable to send AtomViewHostMsg_Message");
|
2013-04-23 12:18:07 +08:00
|
|
|
}
|
|
|
|
|
2015-09-07 16:12:31 +08:00
|
|
|
base::string16 SendSync(mate::Arguments* args,
|
2015-06-10 14:21:09 +08:00
|
|
|
const base::string16& channel,
|
2014-06-28 22:33:00 +08:00
|
|
|
const base::ListValue& arguments) {
|
|
|
|
base::string16 json;
|
2013-04-23 21:52:19 +08:00
|
|
|
|
|
|
|
RenderView* render_view = GetCurrentRenderView();
|
2016-07-10 11:52:28 +02:00
|
|
|
if (render_view == nullptr)
|
2014-04-16 12:29:16 +08:00
|
|
|
return json;
|
2013-04-23 21:52:19 +08:00
|
|
|
|
2013-07-10 12:36:02 +08:00
|
|
|
IPC::SyncMessage* message = new AtomViewHostMsg_Message_Sync(
|
2014-04-16 12:29:16 +08:00
|
|
|
render_view->GetRoutingID(), channel, arguments, &json);
|
2013-07-10 12:36:02 +08:00
|
|
|
bool success = render_view->Send(message);
|
2013-04-23 21:52:19 +08:00
|
|
|
|
|
|
|
if (!success)
|
2015-09-07 16:12:31 +08:00
|
|
|
args->ThrowError("Unable to send AtomViewHostMsg_Message_Sync");
|
2013-04-23 21:52:19 +08:00
|
|
|
|
2014-04-16 12:29:16 +08:00
|
|
|
return json;
|
2013-04-23 21:52:19 +08:00
|
|
|
}
|
|
|
|
|
2015-05-22 19:11:22 +08:00
|
|
|
void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context, void* priv) {
|
2014-06-29 20:48:44 +08:00
|
|
|
mate::Dictionary dict(context->GetIsolate(), exports);
|
2014-04-16 15:31:59 +08:00
|
|
|
dict.SetMethod("send", &Send);
|
|
|
|
dict.SetMethod("sendSync", &SendSync);
|
2013-04-23 12:18:07 +08:00
|
|
|
}
|
|
|
|
|
2014-04-16 12:29:16 +08:00
|
|
|
} // namespace
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2014-06-29 20:48:44 +08:00
|
|
|
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_renderer_ipc, Initialize)
|