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