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.
|
|
|
|
|
2016-08-19 13:08:30 -03:00
|
|
|
#include "atom/renderer/api/atom_api_renderer_ipc.h"
|
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"
|
2018-06-13 04:38:31 -03:00
|
|
|
#include "atom/common/node_bindings.h"
|
2015-09-07 16:29:54 +08:00
|
|
|
#include "atom/common/node_includes.h"
|
2018-03-09 15:01:09 +05:30
|
|
|
#include "content/public/renderer/render_frame.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
|
|
|
|
2014-07-28 15:29:51 +08:00
|
|
|
using blink::WebLocalFrame;
|
2018-04-17 21:55:30 -04:00
|
|
|
using content::RenderFrame;
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2016-08-19 13:08:30 -03:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2018-03-09 15:01:09 +05:30
|
|
|
RenderFrame* GetCurrentRenderFrame() {
|
2017-06-16 23:42:33 +03: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
|
|
|
|
2018-03-09 15:01:09 +05:30
|
|
|
return RenderFrame::FromWebFrame(frame);
|
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) {
|
2018-03-09 15:01:09 +05:30
|
|
|
RenderFrame* render_frame = GetCurrentRenderFrame();
|
|
|
|
if (render_frame == nullptr)
|
2013-12-11 15:48:19 +08:00
|
|
|
return;
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2018-03-09 15:01:09 +05:30
|
|
|
bool success = render_frame->Send(new AtomFrameHostMsg_Message(
|
|
|
|
render_frame->GetRoutingID(), channel, arguments));
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2013-04-23 21:52:19 +08:00
|
|
|
if (!success)
|
2018-03-09 15:01:09 +05:30
|
|
|
args->ThrowError("Unable to send AtomFrameHostMsg_Message");
|
2013-04-23 12:18:07 +08:00
|
|
|
}
|
|
|
|
|
2018-06-13 04:38:31 -03:00
|
|
|
base::ListValue SendSync(mate::Arguments* args,
|
|
|
|
const base::string16& channel,
|
|
|
|
const base::ListValue& arguments) {
|
|
|
|
base::ListValue result;
|
2013-04-23 21:52:19 +08:00
|
|
|
|
2018-03-09 15:01:09 +05:30
|
|
|
RenderFrame* render_frame = GetCurrentRenderFrame();
|
|
|
|
if (render_frame == nullptr)
|
2018-06-13 04:38:31 -03:00
|
|
|
return result;
|
2013-04-23 21:52:19 +08:00
|
|
|
|
2018-03-09 15:01:09 +05:30
|
|
|
IPC::SyncMessage* message = new AtomFrameHostMsg_Message_Sync(
|
2018-06-13 04:38:31 -03:00
|
|
|
render_frame->GetRoutingID(), channel, arguments, &result);
|
2018-03-09 15:01:09 +05:30
|
|
|
bool success = render_frame->Send(message);
|
2013-04-23 21:52:19 +08:00
|
|
|
|
|
|
|
if (!success)
|
2018-03-09 15:01:09 +05:30
|
|
|
args->ThrowError("Unable to send AtomFrameHostMsg_Message_Sync");
|
2013-04-23 21:52:19 +08:00
|
|
|
|
2018-06-13 04:38:31 -03:00
|
|
|
return result;
|
2013-04-23 21:52:19 +08:00
|
|
|
}
|
|
|
|
|
2018-04-17 21:55:30 -04: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
|
|
|
}
|
|
|
|
|
2016-08-19 13:08:30 -03:00
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2018-01-06 07:58:24 -08:00
|
|
|
NODE_BUILTIN_MODULE_CONTEXT_AWARE(atom_renderer_ipc, atom::api::Initialize)
|