electron/shell/common/native_mate_converters/blink_converter.cc

716 lines
25 KiB
C++
Raw Normal View History

// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "shell/common/native_mate_converters/blink_converter.h"
#include <algorithm>
2015-09-18 03:10:32 +00:00
#include <string>
refactor: use v8 serialization for ipc (#20214) * refactor: use v8 serialization for ipc * cloning process.env doesn't work * serialize host objects by enumerating key/values * new serialization can handle NaN, Infinity, and undefined correctly * can't allocate v8 objects during GC * backport microtasks fix * fix compile * fix node_stream_loader reentrancy * update subframe spec to expect undefined instead of null * write undefined instead of crashing when serializing host objects * fix webview spec * fix download spec * buffers are transformed into uint8arrays * can't serialize promises * fix chrome.i18n.getMessage * fix devtools tests * fix zoom test * fix debug build * fix lint * update ipcRenderer tests * fix printToPDF test * update patch * remove accidentally re-added remote-side spec * wip * don't attempt to serialize host objects * jump through different hoops to set options.webContents sometimes * whoops * fix lint * clean up error-handling logic * fix memory leak * fix lint * convert host objects using old base::Value serialization * fix lint more * fall back to base::Value-based serialization * remove commented-out code * add docs to breaking-changes.md * Update breaking-changes.md * update ipcRenderer and WebContents docs * lint * use named values for format tag * save a memcpy for ~30% speedup * get rid of calls to ShallowClone * extra debugging for paranoia * d'oh, use the correct named tags * apparently msstl doesn't like this DCHECK * funny story about that DCHECK * disable remote-related functions when enable_remote_module = false * nits * use EnableIf to disable remote methods in mojom * fix include * review comments
2019-10-09 17:59:08 +00:00
#include <utility>
2015-09-18 05:33:06 +00:00
#include <vector>
2015-09-18 03:10:32 +00:00
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
2015-09-18 05:33:06 +00:00
#include "content/public/browser/native_web_keyboard_event.h"
2018-11-29 01:55:03 +00:00
#include "gin/converter.h"
refactor: use v8 serialization for ipc (#20214) * refactor: use v8 serialization for ipc * cloning process.env doesn't work * serialize host objects by enumerating key/values * new serialization can handle NaN, Infinity, and undefined correctly * can't allocate v8 objects during GC * backport microtasks fix * fix compile * fix node_stream_loader reentrancy * update subframe spec to expect undefined instead of null * write undefined instead of crashing when serializing host objects * fix webview spec * fix download spec * buffers are transformed into uint8arrays * can't serialize promises * fix chrome.i18n.getMessage * fix devtools tests * fix zoom test * fix debug build * fix lint * update ipcRenderer tests * fix printToPDF test * update patch * remove accidentally re-added remote-side spec * wip * don't attempt to serialize host objects * jump through different hoops to set options.webContents sometimes * whoops * fix lint * clean up error-handling logic * fix memory leak * fix lint * convert host objects using old base::Value serialization * fix lint more * fall back to base::Value-based serialization * remove commented-out code * add docs to breaking-changes.md * Update breaking-changes.md * update ipcRenderer and WebContents docs * lint * use named values for format tag * save a memcpy for ~30% speedup * get rid of calls to ShallowClone * extra debugging for paranoia * d'oh, use the correct named tags * apparently msstl doesn't like this DCHECK * funny story about that DCHECK * disable remote-related functions when enable_remote_module = false * nits * use EnableIf to disable remote methods in mojom * fix include * review comments
2019-10-09 17:59:08 +00:00
#include "mojo/public/cpp/base/values_mojom_traits.h"
#include "mojo/public/mojom/base/values.mojom.h"
#include "native_mate/dictionary.h"
refactor: use v8 serialization for ipc (#20214) * refactor: use v8 serialization for ipc * cloning process.env doesn't work * serialize host objects by enumerating key/values * new serialization can handle NaN, Infinity, and undefined correctly * can't allocate v8 objects during GC * backport microtasks fix * fix compile * fix node_stream_loader reentrancy * update subframe spec to expect undefined instead of null * write undefined instead of crashing when serializing host objects * fix webview spec * fix download spec * buffers are transformed into uint8arrays * can't serialize promises * fix chrome.i18n.getMessage * fix devtools tests * fix zoom test * fix debug build * fix lint * update ipcRenderer tests * fix printToPDF test * update patch * remove accidentally re-added remote-side spec * wip * don't attempt to serialize host objects * jump through different hoops to set options.webContents sometimes * whoops * fix lint * clean up error-handling logic * fix memory leak * fix lint * convert host objects using old base::Value serialization * fix lint more * fall back to base::Value-based serialization * remove commented-out code * add docs to breaking-changes.md * Update breaking-changes.md * update ipcRenderer and WebContents docs * lint * use named values for format tag * save a memcpy for ~30% speedup * get rid of calls to ShallowClone * extra debugging for paranoia * d'oh, use the correct named tags * apparently msstl doesn't like this DCHECK * funny story about that DCHECK * disable remote-related functions when enable_remote_module = false * nits * use EnableIf to disable remote methods in mojom * fix include * review comments
2019-10-09 17:59:08 +00:00
#include "shell/common/deprecate_util.h"
#include "shell/common/keyboard_util.h"
refactor: use v8 serialization for ipc (#20214) * refactor: use v8 serialization for ipc * cloning process.env doesn't work * serialize host objects by enumerating key/values * new serialization can handle NaN, Infinity, and undefined correctly * can't allocate v8 objects during GC * backport microtasks fix * fix compile * fix node_stream_loader reentrancy * update subframe spec to expect undefined instead of null * write undefined instead of crashing when serializing host objects * fix webview spec * fix download spec * buffers are transformed into uint8arrays * can't serialize promises * fix chrome.i18n.getMessage * fix devtools tests * fix zoom test * fix debug build * fix lint * update ipcRenderer tests * fix printToPDF test * update patch * remove accidentally re-added remote-side spec * wip * don't attempt to serialize host objects * jump through different hoops to set options.webContents sometimes * whoops * fix lint * clean up error-handling logic * fix memory leak * fix lint * convert host objects using old base::Value serialization * fix lint more * fall back to base::Value-based serialization * remove commented-out code * add docs to breaking-changes.md * Update breaking-changes.md * update ipcRenderer and WebContents docs * lint * use named values for format tag * save a memcpy for ~30% speedup * get rid of calls to ShallowClone * extra debugging for paranoia * d'oh, use the correct named tags * apparently msstl doesn't like this DCHECK * funny story about that DCHECK * disable remote-related functions when enable_remote_module = false * nits * use EnableIf to disable remote methods in mojom * fix include * review comments
2019-10-09 17:59:08 +00:00
#include "shell/common/native_mate_converters/value_converter.h"
#include "third_party/blink/public/platform/web_input_event.h"
#include "third_party/blink/public/platform/web_mouse_event.h"
#include "third_party/blink/public/platform/web_mouse_wheel_event.h"
#include "third_party/blink/public/web/web_device_emulation_params.h"
#include "ui/base/clipboard/clipboard.h"
#include "ui/events/keycodes/dom/keycode_converter.h"
2016-10-07 19:46:33 +00:00
#include "ui/events/keycodes/keyboard_code_conversion.h"
2015-09-18 05:33:06 +00:00
namespace {
2018-04-18 01:55:30 +00:00
template <typename T>
2015-09-18 05:33:06 +00:00
int VectorToBitArray(const std::vector<T>& vec) {
int bits = 0;
for (const T& item : vec)
bits |= item;
return bits;
}
} // namespace
namespace mate {
2018-04-18 01:55:30 +00:00
template <>
struct Converter<base::char16> {
2018-04-18 01:55:30 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Handle<v8::Value> val,
base::char16* out) {
2018-11-29 01:55:03 +00:00
base::string16 code = base::UTF8ToUTF16(gin::V8ToString(isolate, val));
2015-09-18 05:33:06 +00:00
if (code.length() != 1)
return false;
*out = code[0];
return true;
}
};
2018-04-18 01:55:30 +00:00
template <>
2015-09-18 05:33:06 +00:00
struct Converter<blink::WebInputEvent::Type> {
2018-04-18 01:55:30 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Handle<v8::Value> val,
2015-09-18 05:33:06 +00:00
blink::WebInputEvent::Type* out) {
2018-11-29 01:55:03 +00:00
std::string type = base::ToLowerASCII(gin::V8ToString(isolate, val));
2015-09-18 05:33:06 +00:00
if (type == "mousedown")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kMouseDown;
2015-09-18 05:33:06 +00:00
else if (type == "mouseup")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kMouseUp;
2015-09-18 05:33:06 +00:00
else if (type == "mousemove")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kMouseMove;
2015-09-18 05:33:06 +00:00
else if (type == "mouseenter")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kMouseEnter;
2015-09-18 05:33:06 +00:00
else if (type == "mouseleave")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kMouseLeave;
2015-09-18 05:33:06 +00:00
else if (type == "contextmenu")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kContextMenu;
2015-09-18 05:33:06 +00:00
else if (type == "mousewheel")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kMouseWheel;
2015-09-18 05:33:06 +00:00
else if (type == "keydown")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kRawKeyDown;
2015-09-18 05:33:06 +00:00
else if (type == "keyup")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kKeyUp;
2015-09-18 05:33:06 +00:00
else if (type == "char")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kChar;
2015-09-18 05:33:06 +00:00
else if (type == "touchstart")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kTouchStart;
2015-09-18 05:33:06 +00:00
else if (type == "touchmove")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kTouchMove;
2015-09-18 05:33:06 +00:00
else if (type == "touchend")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kTouchEnd;
2015-09-18 05:33:06 +00:00
else if (type == "touchcancel")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kTouchCancel;
return true;
2015-09-18 05:33:06 +00:00
}
};
2018-04-18 01:55:30 +00:00
template <>
struct Converter<blink::WebMouseEvent::Button> {
2018-04-18 01:55:30 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Handle<v8::Value> val,
blink::WebMouseEvent::Button* out) {
2018-11-29 01:55:03 +00:00
std::string button = base::ToLowerASCII(gin::V8ToString(isolate, val));
if (button == "left")
2017-06-16 20:42:33 +00:00
*out = blink::WebMouseEvent::Button::kLeft;
else if (button == "middle")
2017-06-16 20:42:33 +00:00
*out = blink::WebMouseEvent::Button::kMiddle;
else if (button == "right")
2017-06-16 20:42:33 +00:00
*out = blink::WebMouseEvent::Button::kRight;
else
return false;
return true;
}
};
2018-04-18 01:55:30 +00:00
template <>
2015-09-18 05:33:06 +00:00
struct Converter<blink::WebInputEvent::Modifiers> {
2018-04-18 01:55:30 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Handle<v8::Value> val,
2015-09-18 05:33:06 +00:00
blink::WebInputEvent::Modifiers* out) {
2018-11-29 01:55:03 +00:00
std::string modifier = base::ToLowerASCII(gin::V8ToString(isolate, val));
2015-09-18 05:33:06 +00:00
if (modifier == "shift")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kShiftKey;
2015-09-18 05:33:06 +00:00
else if (modifier == "control" || modifier == "ctrl")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kControlKey;
2015-09-18 05:33:06 +00:00
else if (modifier == "alt")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kAltKey;
2015-09-18 05:33:06 +00:00
else if (modifier == "meta" || modifier == "command" || modifier == "cmd")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kMetaKey;
2015-09-18 05:33:06 +00:00
else if (modifier == "iskeypad")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kIsKeyPad;
2015-09-18 05:33:06 +00:00
else if (modifier == "isautorepeat")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kIsAutoRepeat;
2015-09-18 05:33:06 +00:00
else if (modifier == "leftbuttondown")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kLeftButtonDown;
2015-09-18 05:33:06 +00:00
else if (modifier == "middlebuttondown")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kMiddleButtonDown;
2015-09-18 05:33:06 +00:00
else if (modifier == "rightbuttondown")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kRightButtonDown;
2015-09-18 05:33:06 +00:00
else if (modifier == "capslock")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kCapsLockOn;
2015-09-18 05:33:06 +00:00
else if (modifier == "numlock")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kNumLockOn;
2015-09-18 05:33:06 +00:00
else if (modifier == "left")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kIsLeft;
2015-09-18 05:33:06 +00:00
else if (modifier == "right")
2017-06-16 20:42:33 +00:00
*out = blink::WebInputEvent::kIsRight;
return true;
2015-09-18 05:33:06 +00:00
}
};
blink::WebInputEvent::Type GetWebInputEventType(v8::Isolate* isolate,
2018-04-18 01:55:30 +00:00
v8::Local<v8::Value> val) {
2017-06-16 20:42:33 +00:00
blink::WebInputEvent::Type type = blink::WebInputEvent::kUndefined;
mate::Dictionary dict;
ConvertFromV8(isolate, val, &dict) && dict.Get("type", &type);
return type;
}
2018-04-18 01:55:30 +00:00
bool Converter<blink::WebInputEvent>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
blink::WebInputEvent* out) {
2015-09-18 05:33:06 +00:00
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
2017-04-11 07:18:40 +00:00
blink::WebInputEvent::Type type;
if (!dict.Get("type", &type))
2015-09-18 05:33:06 +00:00
return false;
2017-06-16 20:42:33 +00:00
out->SetType(type);
2015-09-18 05:33:06 +00:00
std::vector<blink::WebInputEvent::Modifiers> modifiers;
if (dict.Get("modifiers", &modifiers))
2017-06-16 20:42:33 +00:00
out->SetModifiers(VectorToBitArray(modifiers));
2018-09-15 00:21:05 +00:00
out->SetTimeStamp(base::TimeTicks::Now());
2015-09-18 05:33:06 +00:00
return true;
}
2018-04-18 01:55:30 +00:00
bool Converter<blink::WebKeyboardEvent>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
blink::WebKeyboardEvent* out) {
2015-09-18 05:33:06 +00:00
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
if (!ConvertFromV8(isolate, val, static_cast<blink::WebInputEvent*>(out)))
return false;
2016-03-06 06:04:05 +00:00
std::string str;
2016-10-07 19:46:33 +00:00
if (!dict.Get("keyCode", &str))
return false;
2016-10-07 19:46:33 +00:00
bool shifted = false;
ui::KeyboardCode keyCode = electron::KeyboardCodeFromStr(str, &shifted);
2017-06-16 20:42:33 +00:00
out->windows_key_code = keyCode;
2015-09-18 05:33:06 +00:00
if (shifted)
2017-06-16 20:42:33 +00:00
out->SetModifiers(out->GetModifiers() | blink::WebInputEvent::kShiftKey);
2016-10-07 19:46:33 +00:00
ui::DomCode domCode = ui::UsLayoutKeyboardCodeToDomCode(keyCode);
2017-06-16 20:42:33 +00:00
out->dom_code = static_cast<int>(domCode);
2016-10-07 19:46:33 +00:00
ui::DomKey domKey;
ui::KeyboardCode dummy_code;
int flags = electron::WebEventModifiersToEventFlags(out->GetModifiers());
2016-10-07 19:46:33 +00:00
if (ui::DomCodeToUsLayoutDomKey(domCode, flags, &domKey, &dummy_code))
2017-06-16 20:42:33 +00:00
out->dom_key = static_cast<int>(domKey);
2016-10-07 19:46:33 +00:00
2017-06-16 20:42:33 +00:00
if ((out->GetType() == blink::WebInputEvent::kChar ||
out->GetType() == blink::WebInputEvent::kRawKeyDown)) {
// Make sure to not read beyond the buffer in case some bad code doesn't
// NULL-terminate it (this is called from plugins).
2017-06-16 20:42:33 +00:00
size_t text_length_cap = blink::WebKeyboardEvent::kTextLengthCap;
base::string16 text16 = base::UTF8ToUTF16(str);
memset(out->text, 0, text_length_cap);
2017-06-16 20:42:33 +00:00
memset(out->unmodified_text, 0, text_length_cap);
for (size_t i = 0; i < std::min(text_length_cap, text16.size()); ++i) {
out->text[i] = text16[i];
2017-06-16 20:42:33 +00:00
out->unmodified_text[i] = text16[i];
}
}
return true;
2015-09-18 05:33:06 +00:00
}
bool Converter<content::NativeWebKeyboardEvent>::FromV8(
2018-04-18 01:55:30 +00:00
v8::Isolate* isolate,
v8::Local<v8::Value> val,
2015-09-18 05:33:06 +00:00
content::NativeWebKeyboardEvent* out) {
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
if (!ConvertFromV8(isolate, val, static_cast<blink::WebKeyboardEvent*>(out)))
return false;
dict.Get("skipInBrowser", &out->skip_in_browser);
return true;
2015-09-18 05:33:06 +00:00
}
v8::Local<v8::Value> Converter<content::NativeWebKeyboardEvent>::ToV8(
2018-04-18 01:55:30 +00:00
v8::Isolate* isolate,
const content::NativeWebKeyboardEvent& in) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
2017-06-16 20:42:33 +00:00
if (in.GetType() == blink::WebInputEvent::Type::kRawKeyDown)
dict.Set("type", "keyDown");
2017-06-16 20:42:33 +00:00
else if (in.GetType() == blink::WebInputEvent::Type::kKeyUp)
dict.Set("type", "keyUp");
2017-06-16 20:42:33 +00:00
dict.Set("key", ui::KeycodeConverter::DomKeyToKeyString(in.dom_key));
2017-02-02 13:16:30 +00:00
dict.Set("code", ui::KeycodeConverter::DomCodeToCodeString(
2018-04-18 01:55:30 +00:00
static_cast<ui::DomCode>(in.dom_code)));
using Modifiers = blink::WebInputEvent::Modifiers;
2017-06-16 20:42:33 +00:00
dict.Set("isAutoRepeat", (in.GetModifiers() & Modifiers::kIsAutoRepeat) != 0);
dict.Set("shift", (in.GetModifiers() & Modifiers::kShiftKey) != 0);
dict.Set("control", (in.GetModifiers() & Modifiers::kControlKey) != 0);
dict.Set("alt", (in.GetModifiers() & Modifiers::kAltKey) != 0);
dict.Set("meta", (in.GetModifiers() & Modifiers::kMetaKey) != 0);
return dict.GetHandle();
}
2018-04-18 01:55:30 +00:00
bool Converter<blink::WebMouseEvent>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
blink::WebMouseEvent* out) {
2015-09-18 05:33:06 +00:00
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
if (!ConvertFromV8(isolate, val, static_cast<blink::WebInputEvent*>(out)))
return false;
float x = 0.f;
float y = 0.f;
if (!dict.Get("x", &x) || !dict.Get("y", &y))
2015-09-18 05:33:06 +00:00
return false;
out->SetPositionInWidget(x, y);
if (!dict.Get("button", &out->button))
2017-06-16 20:42:33 +00:00
out->button = blink::WebMouseEvent::Button::kLeft;
float global_x = 0.f;
float global_y = 0.f;
dict.Get("globalX", &global_x);
dict.Get("globalY", &global_y);
out->SetPositionInScreen(global_x, global_y);
2017-06-16 20:42:33 +00:00
dict.Get("movementX", &out->movement_x);
dict.Get("movementY", &out->movement_y);
dict.Get("clickCount", &out->click_count);
return true;
2015-09-18 05:33:06 +00:00
}
bool Converter<blink::WebMouseWheelEvent>::FromV8(
2018-04-18 01:55:30 +00:00
v8::Isolate* isolate,
v8::Local<v8::Value> val,
2015-09-18 05:33:06 +00:00
blink::WebMouseWheelEvent* out) {
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
if (!ConvertFromV8(isolate, val, static_cast<blink::WebMouseEvent*>(out)))
return false;
2017-06-16 20:42:33 +00:00
dict.Get("deltaX", &out->delta_x);
dict.Get("deltaY", &out->delta_y);
dict.Get("wheelTicksX", &out->wheel_ticks_x);
dict.Get("wheelTicksY", &out->wheel_ticks_y);
dict.Get("accelerationRatioX", &out->acceleration_ratio_x);
dict.Get("accelerationRatioY", &out->acceleration_ratio_y);
dict.Get("hasPreciseScrollingDeltas", &out->has_precise_scrolling_deltas);
2016-09-09 10:28:32 +00:00
#if defined(USE_AURA)
// Matches the behavior of ui/events/blink/web_input_event_traits.cc:
bool can_scroll = true;
if (dict.Get("canScroll", &can_scroll) && !can_scroll) {
2017-06-16 20:42:33 +00:00
out->has_precise_scrolling_deltas = false;
2017-06-28 14:58:47 +00:00
out->SetModifiers(out->GetModifiers() & ~blink::WebInputEvent::kControlKey);
2016-09-09 10:28:32 +00:00
}
#endif
return true;
2015-09-18 05:33:06 +00:00
}
2018-04-18 01:55:30 +00:00
bool Converter<blink::WebFloatPoint>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
blink::WebFloatPoint* out) {
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
return dict.Get("x", &out->x) && dict.Get("y", &out->y);
}
2018-04-18 01:55:30 +00:00
template <>
2017-12-18 04:14:50 +00:00
struct Converter<base::Optional<blink::WebPoint>> {
2018-04-18 01:55:30 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
base::Optional<blink::WebPoint>* out) {
2017-12-18 04:14:50 +00:00
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
blink::WebPoint point;
bool success = dict.Get("x", &point.x) && dict.Get("y", &point.y);
2018-04-18 01:55:30 +00:00
if (!success)
return false;
2017-12-18 04:14:50 +00:00
out->emplace(point);
return true;
}
};
2018-04-18 01:55:30 +00:00
bool Converter<blink::WebSize>::FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
blink::WebSize* out) {
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
return dict.Get("width", &out->width) && dict.Get("height", &out->height);
}
bool Converter<blink::WebDeviceEmulationParams>::FromV8(
2018-04-18 01:55:30 +00:00
v8::Isolate* isolate,
v8::Local<v8::Value> val,
blink::WebDeviceEmulationParams* out) {
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
std::string screen_position;
if (dict.Get("screenPosition", &screen_position)) {
2015-12-07 11:56:23 +00:00
screen_position = base::ToLowerASCII(screen_position);
if (screen_position == "mobile")
2017-06-16 20:42:33 +00:00
out->screen_position = blink::WebDeviceEmulationParams::kMobile;
else if (screen_position == "desktop")
2017-06-16 20:42:33 +00:00
out->screen_position = blink::WebDeviceEmulationParams::kDesktop;
else
return false;
}
2017-06-16 20:42:33 +00:00
dict.Get("screenSize", &out->screen_size);
dict.Get("viewPosition", &out->view_position);
dict.Get("deviceScaleFactor", &out->device_scale_factor);
dict.Get("viewSize", &out->view_size);
dict.Get("scale", &out->scale);
return true;
}
// static
v8::Local<v8::Value> Converter<blink::WebContextMenuData::MediaType>::ToV8(
2018-04-18 01:55:30 +00:00
v8::Isolate* isolate,
const blink::WebContextMenuData::MediaType& in) {
switch (in) {
2017-06-16 20:42:33 +00:00
case blink::WebContextMenuData::kMediaTypeImage:
return mate::StringToV8(isolate, "image");
2017-06-16 20:42:33 +00:00
case blink::WebContextMenuData::kMediaTypeVideo:
return mate::StringToV8(isolate, "video");
2017-06-16 20:42:33 +00:00
case blink::WebContextMenuData::kMediaTypeAudio:
return mate::StringToV8(isolate, "audio");
2017-06-16 20:42:33 +00:00
case blink::WebContextMenuData::kMediaTypeCanvas:
return mate::StringToV8(isolate, "canvas");
2017-06-16 20:42:33 +00:00
case blink::WebContextMenuData::kMediaTypeFile:
return mate::StringToV8(isolate, "file");
2017-06-16 20:42:33 +00:00
case blink::WebContextMenuData::kMediaTypePlugin:
return mate::StringToV8(isolate, "plugin");
default:
return mate::StringToV8(isolate, "none");
}
}
// static
v8::Local<v8::Value> Converter<blink::WebContextMenuData::InputFieldType>::ToV8(
2018-04-18 01:55:30 +00:00
v8::Isolate* isolate,
const blink::WebContextMenuData::InputFieldType& in) {
switch (in) {
2017-06-16 20:42:33 +00:00
case blink::WebContextMenuData::kInputFieldTypePlainText:
return mate::StringToV8(isolate, "plainText");
2017-06-16 20:42:33 +00:00
case blink::WebContextMenuData::kInputFieldTypePassword:
return mate::StringToV8(isolate, "password");
2017-06-16 20:42:33 +00:00
case blink::WebContextMenuData::kInputFieldTypeOther:
return mate::StringToV8(isolate, "other");
default:
return mate::StringToV8(isolate, "none");
}
}
v8::Local<v8::Value> EditFlagsToV8(v8::Isolate* isolate, int editFlags) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
2018-04-18 01:55:30 +00:00
dict.Set("canUndo", !!(editFlags & blink::WebContextMenuData::kCanUndo));
dict.Set("canRedo", !!(editFlags & blink::WebContextMenuData::kCanRedo));
dict.Set("canCut", !!(editFlags & blink::WebContextMenuData::kCanCut));
dict.Set("canCopy", !!(editFlags & blink::WebContextMenuData::kCanCopy));
bool pasteFlag = false;
2017-06-16 20:42:33 +00:00
if (editFlags & blink::WebContextMenuData::kCanPaste) {
std::vector<base::string16> types;
bool ignore;
ui::Clipboard::GetForCurrentThread()->ReadAvailableTypes(
chore: bump chromium to 62327c655093c821aa0fcfc6db53f5fd943e08c7 (master) (#19792) * chore: bump chromium in DEPS to f3bf493731e868e1f5f48e7e1adc02ea5eccfbbd * chore: bump chromium in DEPS to 4db0c87d4aa6f27ffa0b5fc77d20e10047962484 * chore: bump chromium in DEPS to d933a504c264dc8fe85267f47aef3588531875b5 * chore: bump chromium in DEPS to 34afdb68980f581ae911b85b727bc17e126cf5f9 * update disable-redraw-lock.patch https://chromium-review.googlesource.com/c/chromium/src/+/1600387 * update desktop_media_list.patch https://chromium-review.googlesource.com/c/chromium/src/+/1729156 * update notification_provenance.patch https://chromium-review.googlesource.com/c/chromium/src/+/1742779 * update printing.patch https://chromium-review.googlesource.com/c/chromium/src/+/1646772 * update verbose_generate_bpad_syms.patch https://chromium-review.googlesource.com/c/chromium/src/+/1745986 * update patch metadata * remove printing_compositor manifests https://chromium-review.googlesource.com/c/chromium/src/+/1742734 * update for URLLoaderFactoryType enum https://chromium-review.googlesource.com/c/chromium/src/+/1754716 * remove gin string16 converter https://chromium-review.googlesource.com/c/chromium/src/+/1750093 * ClearCompositorFrame() has been removed https://chromium-review.googlesource.com/c/chromium/src/+/1746301 * message_loop -> message_loop_current https://chromium-review.googlesource.com/c/chromium/src/+/1738552 * include resource_response header * pdf compositor no longer uses service manager https://chromium-review.googlesource.com/c/chromium/src/+/1742734 * chore: bump chromium in DEPS to 00d5933101d8d8dc9546eadbe7ee1b41077e6db1 * pane focus fns aren't pure virtual anymore https://chromium-review.googlesource.com/c/chromium/src/+/1708767 * fix: make std::hash value-non-const broken by https://chromium-review.googlesource.com/c/chromium/src/+/1711202 * update swiftshader in zip_manifests https://swiftshader-review.googlesource.com/c/SwiftShader/+/34911 * address feedback from @deepak1556 * don't enable kLegacyWindowsDWriteFontFallback https://chromium-review.googlesource.com/c/chromium/src/+/1753006 * chore: bump chromium in DEPS to 84497314005e1968da06804f8fde539d9872310e * update printing.patch remove bottom diff owing to https://chromium-review.googlesource.com/c/chromium/src/+/1678182 and update for https://chromium-review.googlesource.com/c/chromium/src/+/1678182 * convert CookieChangeListener to new Mojo types https://chromium-review.googlesource.com/c/chromium/src/+/1753371 * rename ui::ClipboardType -> ui::ClipboardBuffer https://chromium-review.googlesource.com/c/chromium/src/+/1758730 * logging::LoggingSettings log_file -> log_file_path https://chromium-review.googlesource.com/c/chromium/src/+/1699477 * roll DEPS to latest lkgr * fix: override GetFontLookupTableCacheDir() When Chromium goes to use its fallback font table creation code paths, it creates the cache directory it uses by calling GetFontLookupTableCacheDir() with a path that doesn't exist in Electron. To ensure that a legitimate file path is created, we need to override it with Electron's DIR_USER_DATA so it doesn't use chrome::DIR_USER_DATA. * chore: bump chromium in DEPS to 6758a0879931bc4df630a80a36c82d7855ae3155 * update pthread_fchdir patch https://chromium-review.googlesource.com/c/chromium/src/+/1759149 * update printing patch * update cookie usage and fn signatures https://chromium-review.googlesource.com/c/chromium/src/+/1758437 * chore: bump chromium in DEPS to bdaca97e1cc27fb977e56f30f74cdb906da9527e * remove fix_make_std_hash_value-non-const.patch https://chromium-review.googlesource.com/c/chromium/src/+/1762335 * Convert enum to enum class for FocusManager::FocusChangeReason https://chromium-review.googlesource.com/c/chromium/src/+/1767281 * roll DEPS to latest lkgr * update dom_storage_limits.patch https://chromium-review.googlesource.com/c/chromium/src/+/1767556
2019-08-24 01:14:23 +00:00
ui::ClipboardBuffer::kCopyPaste, &types, &ignore);
pasteFlag = !types.empty();
}
dict.Set("canPaste", pasteFlag);
2018-04-18 01:55:30 +00:00
dict.Set("canDelete", !!(editFlags & blink::WebContextMenuData::kCanDelete));
dict.Set("canSelectAll",
2018-04-18 01:55:30 +00:00
!!(editFlags & blink::WebContextMenuData::kCanSelectAll));
return mate::ConvertToV8(isolate, dict);
}
v8::Local<v8::Value> MediaFlagsToV8(v8::Isolate* isolate, int mediaFlags) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
dict.Set("inError",
2018-04-18 01:55:30 +00:00
!!(mediaFlags & blink::WebContextMenuData::kMediaInError));
dict.Set("isPaused",
2018-04-18 01:55:30 +00:00
!!(mediaFlags & blink::WebContextMenuData::kMediaPaused));
dict.Set("isMuted", !!(mediaFlags & blink::WebContextMenuData::kMediaMuted));
dict.Set("hasAudio",
2018-04-18 01:55:30 +00:00
!!(mediaFlags & blink::WebContextMenuData::kMediaHasAudio));
dict.Set("isLooping",
2018-04-18 01:55:30 +00:00
(mediaFlags & blink::WebContextMenuData::kMediaLoop) != 0);
dict.Set("isControlsVisible",
2018-04-18 01:55:30 +00:00
(mediaFlags & blink::WebContextMenuData::kMediaControls) != 0);
dict.Set("canToggleControls",
2018-04-18 01:55:30 +00:00
!!(mediaFlags & blink::WebContextMenuData::kMediaCanToggleControls));
dict.Set("canRotate",
2018-04-18 01:55:30 +00:00
!!(mediaFlags & blink::WebContextMenuData::kMediaCanRotate));
return mate::ConvertToV8(isolate, dict);
}
v8::Local<v8::Value> Converter<blink::WebCache::ResourceTypeStat>::ToV8(
v8::Isolate* isolate,
const blink::WebCache::ResourceTypeStat& stat) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
2016-05-14 13:40:18 +00:00
dict.Set("count", static_cast<uint32_t>(stat.count));
dict.Set("size", static_cast<double>(stat.size));
2017-06-16 20:42:33 +00:00
dict.Set("liveSize", static_cast<double>(stat.decoded_size));
return dict.GetHandle();
}
v8::Local<v8::Value> Converter<blink::WebCache::ResourceTypeStats>::ToV8(
v8::Isolate* isolate,
const blink::WebCache::ResourceTypeStats& stats) {
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
2016-05-14 13:50:05 +00:00
dict.Set("images", stats.images);
dict.Set("scripts", stats.scripts);
2017-06-16 20:42:33 +00:00
dict.Set("cssStyleSheets", stats.css_style_sheets);
dict.Set("xslStyleSheets", stats.xsl_style_sheets);
2016-05-14 13:50:05 +00:00
dict.Set("fonts", stats.fonts);
dict.Set("other", stats.other);
return dict.GetHandle();
}
// static
v8::Local<v8::Value> Converter<network::mojom::ReferrerPolicy>::ToV8(
2018-04-18 01:55:30 +00:00
v8::Isolate* isolate,
const network::mojom::ReferrerPolicy& in) {
switch (in) {
case network::mojom::ReferrerPolicy::kDefault:
return mate::StringToV8(isolate, "default");
case network::mojom::ReferrerPolicy::kAlways:
return mate::StringToV8(isolate, "unsafe-url");
case network::mojom::ReferrerPolicy::kNoReferrerWhenDowngrade:
return mate::StringToV8(isolate, "no-referrer-when-downgrade");
case network::mojom::ReferrerPolicy::kNever:
return mate::StringToV8(isolate, "no-referrer");
case network::mojom::ReferrerPolicy::kOrigin:
return mate::StringToV8(isolate, "origin");
case network::mojom::ReferrerPolicy::
kNoReferrerWhenDowngradeOriginWhenCrossOrigin:
return mate::StringToV8(isolate, "strict-origin-when-cross-origin");
case network::mojom::ReferrerPolicy::kSameOrigin:
return mate::StringToV8(isolate, "same-origin");
case network::mojom::ReferrerPolicy::kStrictOrigin:
return mate::StringToV8(isolate, "strict-origin");
default:
return mate::StringToV8(isolate, "no-referrer");
}
}
// static
bool Converter<network::mojom::ReferrerPolicy>::FromV8(
2018-04-18 01:55:30 +00:00
v8::Isolate* isolate,
v8::Handle<v8::Value> val,
network::mojom::ReferrerPolicy* out) {
2018-11-29 01:55:03 +00:00
std::string policy = base::ToLowerASCII(gin::V8ToString(isolate, val));
if (policy == "default")
*out = network::mojom::ReferrerPolicy::kDefault;
else if (policy == "unsafe-url")
*out = network::mojom::ReferrerPolicy::kAlways;
else if (policy == "no-referrer-when-downgrade")
*out = network::mojom::ReferrerPolicy::kNoReferrerWhenDowngrade;
else if (policy == "no-referrer")
*out = network::mojom::ReferrerPolicy::kNever;
else if (policy == "origin")
*out = network::mojom::ReferrerPolicy::kOrigin;
else if (policy == "strict-origin-when-cross-origin")
*out = network::mojom::ReferrerPolicy::
kNoReferrerWhenDowngradeOriginWhenCrossOrigin;
else if (policy == "same-origin")
*out = network::mojom::ReferrerPolicy::kSameOrigin;
else if (policy == "strict-origin")
*out = network::mojom::ReferrerPolicy::kStrictOrigin;
else
return false;
return true;
}
refactor: use v8 serialization for ipc (#20214) * refactor: use v8 serialization for ipc * cloning process.env doesn't work * serialize host objects by enumerating key/values * new serialization can handle NaN, Infinity, and undefined correctly * can't allocate v8 objects during GC * backport microtasks fix * fix compile * fix node_stream_loader reentrancy * update subframe spec to expect undefined instead of null * write undefined instead of crashing when serializing host objects * fix webview spec * fix download spec * buffers are transformed into uint8arrays * can't serialize promises * fix chrome.i18n.getMessage * fix devtools tests * fix zoom test * fix debug build * fix lint * update ipcRenderer tests * fix printToPDF test * update patch * remove accidentally re-added remote-side spec * wip * don't attempt to serialize host objects * jump through different hoops to set options.webContents sometimes * whoops * fix lint * clean up error-handling logic * fix memory leak * fix lint * convert host objects using old base::Value serialization * fix lint more * fall back to base::Value-based serialization * remove commented-out code * add docs to breaking-changes.md * Update breaking-changes.md * update ipcRenderer and WebContents docs * lint * use named values for format tag * save a memcpy for ~30% speedup * get rid of calls to ShallowClone * extra debugging for paranoia * d'oh, use the correct named tags * apparently msstl doesn't like this DCHECK * funny story about that DCHECK * disable remote-related functions when enable_remote_module = false * nits * use EnableIf to disable remote methods in mojom * fix include * review comments
2019-10-09 17:59:08 +00:00
namespace {
constexpr uint8_t kNewSerializationTag = 0;
constexpr uint8_t kOldSerializationTag = 1;
class V8Serializer : public v8::ValueSerializer::Delegate {
public:
explicit V8Serializer(v8::Isolate* isolate,
bool use_old_serialization = false)
: isolate_(isolate),
serializer_(isolate, this),
use_old_serialization_(use_old_serialization) {}
~V8Serializer() override = default;
bool Serialize(v8::Local<v8::Value> value, blink::CloneableMessage* out) {
serializer_.WriteHeader();
if (use_old_serialization_) {
WriteTag(kOldSerializationTag);
if (!WriteBaseValue(value)) {
isolate_->ThrowException(
mate::StringToV8(isolate_, "An object could not be cloned."));
return false;
}
} else {
WriteTag(kNewSerializationTag);
bool wrote_value;
v8::TryCatch try_catch(isolate_);
if (!serializer_.WriteValue(isolate_->GetCurrentContext(), value)
.To(&wrote_value)) {
try_catch.Reset();
if (!V8Serializer(isolate_, true).Serialize(value, out)) {
try_catch.ReThrow();
return false;
}
return true;
}
DCHECK(wrote_value);
}
std::pair<uint8_t*, size_t> buffer = serializer_.Release();
DCHECK_EQ(buffer.first, data_.data());
out->encoded_message = base::make_span(buffer.first, buffer.second);
out->owned_encoded_message = std::move(data_);
return true;
}
bool WriteBaseValue(v8::Local<v8::Value> object) {
node::Environment* env = node::Environment::GetCurrent(isolate_);
if (env) {
electron::EmitDeprecationWarning(
env,
"Passing functions, DOM objects and other non-cloneable JavaScript "
"objects to IPC methods is deprecated and will throw an exception "
"beginning with Electron 9.",
"DeprecationWarning");
}
base::Value value;
if (!ConvertFromV8(isolate_, object, &value)) {
return false;
}
mojo::Message message = mojo_base::mojom::Value::SerializeAsMessage(&value);
serializer_.WriteUint32(message.data_num_bytes());
serializer_.WriteRawBytes(message.data(), message.data_num_bytes());
return true;
}
void WriteTag(uint8_t tag) { serializer_.WriteRawBytes(&tag, 1); }
// v8::ValueSerializer::Delegate
void* ReallocateBufferMemory(void* old_buffer,
size_t size,
size_t* actual_size) override {
DCHECK_EQ(old_buffer, data_.data());
data_.resize(size);
*actual_size = data_.capacity();
return data_.data();
}
void FreeBufferMemory(void* buffer) override {
DCHECK_EQ(buffer, data_.data());
data_ = {};
}
void ThrowDataCloneError(v8::Local<v8::String> message) override {
isolate_->ThrowException(v8::Exception::Error(message));
}
private:
v8::Isolate* isolate_;
std::vector<uint8_t> data_;
v8::ValueSerializer serializer_;
bool use_old_serialization_;
};
class V8Deserializer : public v8::ValueDeserializer::Delegate {
public:
V8Deserializer(v8::Isolate* isolate, const blink::CloneableMessage& message)
: isolate_(isolate),
deserializer_(isolate,
message.encoded_message.data(),
message.encoded_message.size(),
this) {}
v8::Local<v8::Value> Deserialize() {
v8::EscapableHandleScope scope(isolate_);
auto context = isolate_->GetCurrentContext();
bool read_header;
if (!deserializer_.ReadHeader(context).To(&read_header))
return v8::Null(isolate_);
DCHECK(read_header);
uint8_t tag;
if (!ReadTag(&tag))
return v8::Null(isolate_);
switch (tag) {
case kNewSerializationTag: {
v8::Local<v8::Value> value;
if (!deserializer_.ReadValue(context).ToLocal(&value)) {
return v8::Null(isolate_);
}
return scope.Escape(value);
}
case kOldSerializationTag: {
v8::Local<v8::Value> value;
if (!ReadBaseValue(&value)) {
return v8::Null(isolate_);
}
return scope.Escape(value);
}
default:
NOTREACHED() << "Invalid tag: " << tag;
return v8::Null(isolate_);
}
}
bool ReadTag(uint8_t* tag) {
const void* tag_bytes;
if (!deserializer_.ReadRawBytes(1, &tag_bytes))
return false;
*tag = *reinterpret_cast<const uint8_t*>(tag_bytes);
return true;
}
bool ReadBaseValue(v8::Local<v8::Value>* value) {
uint32_t length;
const void* data;
if (!deserializer_.ReadUint32(&length) ||
!deserializer_.ReadRawBytes(length, &data)) {
return false;
}
mojo::Message message(
base::make_span(reinterpret_cast<const uint8_t*>(data), length), {});
base::Value out;
if (!mojo_base::mojom::Value::DeserializeFromMessage(std::move(message),
&out)) {
return false;
}
*value = ConvertToV8(isolate_, out);
return true;
}
private:
v8::Isolate* isolate_;
v8::ValueDeserializer deserializer_;
};
} // namespace
v8::Local<v8::Value> Converter<blink::CloneableMessage>::ToV8(
v8::Isolate* isolate,
const blink::CloneableMessage& in) {
return V8Deserializer(isolate, in).Deserialize();
}
bool Converter<blink::CloneableMessage>::FromV8(v8::Isolate* isolate,
v8::Handle<v8::Value> val,
blink::CloneableMessage* out) {
return V8Serializer(isolate).Serialize(val, out);
}
} // namespace mate