electron/atom/renderer/api/atom_api_renderer_ipc.cc

80 lines
2.3 KiB
C++
Raw Normal View History

// 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
// found in the LICENSE file.
#include "atom/renderer/api/atom_api_renderer_ipc.h"
2014-03-16 00:30:26 +00:00
#include "atom/common/api/api_messages.h"
#include "atom/common/native_mate_converters/string16_converter.h"
#include "atom/common/native_mate_converters/value_converter.h"
#include "atom/common/node_includes.h"
#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"
#include "third_party/WebKit/public/web/WebView.h"
using content::RenderView;
2014-07-28 07:29:51 +00:00
using blink::WebLocalFrame;
using blink::WebView;
namespace atom {
namespace api {
RenderView* GetCurrentRenderView() {
2017-06-16 20:42:33 +00:00
WebLocalFrame* frame = WebLocalFrame::FrameForCurrentContext();
if (!frame)
return nullptr;
2017-06-16 20:42:33 +00:00
WebView* view = frame->View();
if (!view)
return nullptr; // can happen during closing.
return RenderView::FromWebView(view);
}
2015-09-07 08:12:31 +00:00
void Send(mate::Arguments* args,
const base::string16& channel,
const base::ListValue& arguments) {
RenderView* render_view = GetCurrentRenderView();
if (render_view == nullptr)
return;
2013-04-23 13:52:19 +00:00
bool success = render_view->Send(new AtomViewHostMsg_Message(
render_view->GetRoutingID(), channel, arguments));
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");
}
2015-09-07 08:12:31 +00:00
base::string16 SendSync(mate::Arguments* args,
const base::string16& channel,
const base::ListValue& arguments) {
base::string16 json;
2013-04-23 13:52:19 +00:00
RenderView* render_view = GetCurrentRenderView();
if (render_view == nullptr)
return json;
2013-04-23 13:52:19 +00:00
IPC::SyncMessage* message = new AtomViewHostMsg_Message_Sync(
render_view->GetRoutingID(), channel, arguments, &json);
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
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) {
mate::Dictionary dict(context->GetIsolate(), exports);
2014-04-16 07:31:59 +00:00
dict.SetMethod("send", &Send);
dict.SetMethod("sendSync", &SendSync);
}
} // namespace api
} // namespace atom
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_renderer_ipc, atom::api::Initialize)