1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/web_test/renderer/text_input_controller.h"
#include "content/web_test/renderer/web_frame_test_proxy.h"
#include "gin/arguments.h"
#include "gin/handle.h"
#include "gin/object_template_builder.h"
#include "gin/wrappable.h"
#include "third_party/blink/public/common/input/web_coalesced_input_event.h"
#include "third_party/blink/public/common/input/web_keyboard_event.h"
#include "third_party/blink/public/platform/scheduler/web_agent_group_scheduler.h"
#include "third_party/blink/public/platform/web_input_event_result.h"
#include "third_party/blink/public/web/web_frame_widget.h"
#include "third_party/blink/public/web/web_input_method_controller.h"
#include "third_party/blink/public/web/web_local_frame.h"
#include "third_party/blink/public/web/web_range.h"
#include "third_party/blink/public/web/web_view.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/base/ime/ime_text_span.h"
#include "ui/events/base_event_utils.h"
#include "v8/include/v8.h"
namespace content {
class TextInputControllerBindings
: public gin::Wrappable<TextInputControllerBindings> {
public:
static gin::WrapperInfo kWrapperInfo;
TextInputControllerBindings(const TextInputControllerBindings&) = delete;
TextInputControllerBindings& operator=(const TextInputControllerBindings&) =
delete;
static void Install(base::WeakPtr<TextInputController> controller,
blink::WebLocalFrame* frame);
private:
explicit TextInputControllerBindings(
base::WeakPtr<TextInputController> controller);
~TextInputControllerBindings() override;
// gin::Wrappable:
gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
v8::Isolate* isolate) override;
void InsertText(const std::string& text);
void UnmarkText();
void UnmarkAndUnselectText();
void DoCommand(const std::string& text);
void ExtendSelectionAndDelete(int before, int after);
void DeleteSurroundingText(int before, int after);
void SetMarkedText(const std::string& text, int start, int length);
void SetMarkedTextFromExistingText(int start, int end);
bool HasMarkedText();
std::vector<int> MarkedRange();
std::vector<int> SelectedRange();
std::vector<int> FirstRectForCharacterRange(uint32_t location,
uint32_t length);
void SetComposition(const std::string& text);
void SetCompositionWithReplacementRange(const std::string& text,
int replacement_start,
int replacement_end);
void ForceTextInputStateUpdate();
base::WeakPtr<TextInputController> controller_;
};
gin::WrapperInfo TextInputControllerBindings::kWrapperInfo = {
gin::kEmbedderNativeGin};
// static
void TextInputControllerBindings::Install(
base::WeakPtr<TextInputController> controller,
blink::WebLocalFrame* frame) {
v8::Isolate* isolate = frame->GetAgentGroupScheduler()->Isolate();
v8::HandleScope handle_scope(isolate);
v8::Local<v8::Context> context = frame->MainWorldScriptContext();
if (context.IsEmpty())
return;
v8::Context::Scope context_scope(context);
gin::Handle<TextInputControllerBindings> bindings =
gin::CreateHandle(isolate, new TextInputControllerBindings(controller));
if (bindings.IsEmpty())
return;
v8::Local<v8::Object> global = context->Global();
global
->Set(context, gin::StringToV8(isolate, "textInputController"),
bindings.ToV8())
.Check();
}
TextInputControllerBindings::TextInputControllerBindings(
base::WeakPtr<TextInputController> controller)
: controller_(controller) {}
TextInputControllerBindings::~TextInputControllerBindings() {}
gin::ObjectTemplateBuilder
TextInputControllerBindings::GetObjectTemplateBuilder(v8::Isolate* isolate) {
return gin::Wrappable<TextInputControllerBindings>::GetObjectTemplateBuilder(
isolate)
.SetMethod("insertText", &TextInputControllerBindings::InsertText)
.SetMethod("unmarkText", &TextInputControllerBindings::UnmarkText)
.SetMethod("unmarkAndUnselectText",
&TextInputControllerBindings::UnmarkAndUnselectText)
.SetMethod("doCommand", &TextInputControllerBindings::DoCommand)
.SetMethod("extendSelectionAndDelete",
&TextInputControllerBindings::ExtendSelectionAndDelete)
.SetMethod("deleteSurroundingText",
&TextInputControllerBindings::DeleteSurroundingText)
.SetMethod("setMarkedText", &TextInputControllerBindings::SetMarkedText)
.SetMethod("setMarkedTextFromExistingText",
&TextInputControllerBindings::SetMarkedTextFromExistingText)
.SetMethod("hasMarkedText", &TextInputControllerBindings::HasMarkedText)
.SetMethod("markedRange", &TextInputControllerBindings::MarkedRange)
.SetMethod("selectedRange", &TextInputControllerBindings::SelectedRange)
.SetMethod("firstRectForCharacterRange",
&TextInputControllerBindings::FirstRectForCharacterRange)
.SetMethod("setComposition", &TextInputControllerBindings::SetComposition)
.SetMethod(
"setCompositionWithReplacementRange",
&TextInputControllerBindings::SetCompositionWithReplacementRange)
.SetMethod("forceTextInputStateUpdate",
&TextInputControllerBindings::ForceTextInputStateUpdate);
}
void TextInputControllerBindings::InsertText(const std::string& text) {
if (controller_)
controller_->InsertText(text);
}
void TextInputControllerBindings::UnmarkText() {
if (controller_)
controller_->UnmarkText();
}
void TextInputControllerBindings::UnmarkAndUnselectText() {
if (controller_)
controller_->UnmarkAndUnselectText();
}
void TextInputControllerBindings::DoCommand(const std::string& text) {
if (controller_)
controller_->DoCommand(text);
}
void TextInputControllerBindings::ExtendSelectionAndDelete(int before,
int after) {
if (controller_)
controller_->ExtendSelectionAndDelete(before, after);
}
void TextInputControllerBindings::DeleteSurroundingText(int before, int after) {
if (controller_)
controller_->DeleteSurroundingText(before, after);
}
void TextInputControllerBindings::SetMarkedText(const std::string& text,
int start,
int length) {
if (controller_)
controller_->SetMarkedText(text, start, length);
}
void TextInputControllerBindings::SetMarkedTextFromExistingText(int start,
int end) {
if (controller_)
controller_->SetMarkedTextFromExistingText(start, end);
}
bool TextInputControllerBindings::HasMarkedText() {
return controller_ ? controller_->HasMarkedText() : false;
}
std::vector<int> TextInputControllerBindings::MarkedRange() {
return controller_ ? controller_->MarkedRange() : std::vector<int>();
}
std::vector<int> TextInputControllerBindings::SelectedRange() {
return controller_ ? controller_->SelectedRange() : std::vector<int>();
}
std::vector<int> TextInputControllerBindings::FirstRectForCharacterRange(
uint32_t location,
uint32_t length) {
return controller_ ? controller_->FirstRectForCharacterRange(location, length)
: std::vector<int>();
}
void TextInputControllerBindings::SetComposition(const std::string& text) {
if (controller_)
controller_->SetComposition(text, -1, -1);
}
void TextInputControllerBindings::SetCompositionWithReplacementRange(
const std::string& text,
int replacement_start,
int replacement_end) {
if (controller_)
controller_->SetComposition(text, replacement_start, replacement_end);
}
void TextInputControllerBindings::ForceTextInputStateUpdate() {
if (controller_)
controller_->ForceTextInputStateUpdate();
}
// TextInputController ---------------------------------------------------------
TextInputController::TextInputController(
WebFrameTestProxy* web_frame_test_proxy)
: web_frame_test_proxy_(web_frame_test_proxy) {}
TextInputController::~TextInputController() {}
void TextInputController::Install(blink::WebLocalFrame* frame) {
TextInputControllerBindings::Install(weak_factory_.GetWeakPtr(), frame);
}
void TextInputController::InsertText(const std::string& text) {
if (auto* controller = GetInputMethodController()) {
controller->CommitText(blink::WebString::FromUTF8(text),
std::vector<ui::ImeTextSpan>(), blink::WebRange(),
0);
}
}
void TextInputController::UnmarkText() {
if (auto* controller = GetInputMethodController()) {
controller->FinishComposingText(
blink::WebInputMethodController::kKeepSelection);
}
}
void TextInputController::UnmarkAndUnselectText() {
if (auto* controller = GetInputMethodController()) {
controller->FinishComposingText(
blink::WebInputMethodController::kDoNotKeepSelection);
}
}
void TextInputController::DoCommand(const std::string& text) {
if (view()->MainFrame()) {
CHECK(view()->MainFrame()->ToWebLocalFrame()) << "This function cannot be "
"called if the main frame "
"is not a local frame.";
view()->MainFrame()->ToWebLocalFrame()->ExecuteCommand(
blink::WebString::FromUTF8(text));
}
}
void TextInputController::ExtendSelectionAndDelete(int before, int after) {
if (view()->MainFrame()) {
CHECK(view()->MainFrame()->ToWebLocalFrame()) << "This function cannot be "
"called if the main frame "
"is not a local frame.";
view()->MainFrame()->ToWebLocalFrame()->ExtendSelectionAndDelete(before,
after);
}
}
void TextInputController::DeleteSurroundingText(int before, int after) {
if (view()->MainFrame()) {
CHECK(view()->MainFrame()->ToWebLocalFrame()) << "This function cannot be "
"called if the main frame "
"is not a local frame.";
view()->MainFrame()->ToWebLocalFrame()->DeleteSurroundingText(before,
after);
}
}
void TextInputController::SetMarkedText(const std::string& text,
int start,
int length) {
blink::WebString web_text(blink::WebString::FromUTF8(text));
// Split underline into up to 3 elements (before, selection, and after).
std::vector<ui::ImeTextSpan> ime_text_spans;
ui::ImeTextSpan ime_text_span;
if (!start) {
ime_text_span.end_offset = length;
} else {
ime_text_span.end_offset = start;
ime_text_spans.push_back(ime_text_span);
ime_text_span.start_offset = start;
ime_text_span.end_offset = start + length;
}
ime_text_span.thickness = ui::ImeTextSpan::Thickness::kThick;
ime_text_span.underline_style = ui::ImeTextSpan::UnderlineStyle::kSolid;
ime_text_spans.push_back(ime_text_span);
if (start + length < static_cast<int>(web_text.length())) {
ime_text_span.start_offset = ime_text_span.end_offset;
ime_text_span.end_offset = web_text.length();
ime_text_span.thickness = ui::ImeTextSpan::Thickness::kThin;
ime_text_span.underline_style = ui::ImeTextSpan::UnderlineStyle::kSolid;
ime_text_spans.push_back(ime_text_span);
}
if (auto* controller = GetInputMethodController()) {
controller->SetComposition(web_text, ime_text_spans, blink::WebRange(),
start, start + length);
}
}
void TextInputController::SetMarkedTextFromExistingText(int start, int end) {
if (!view()->MainFrame())
return;
CHECK(view()->MainFrame()->ToWebLocalFrame()) << "This function cannot be "
"called if the main frame "
"is not a local frame.";
view()->MainFrame()->ToWebLocalFrame()->SetCompositionFromExistingText(
start, end, std::vector<ui::ImeTextSpan>());
}
bool TextInputController::HasMarkedText() {
if (!view()->MainFrame())
return false;
CHECK(view()->MainFrame()->ToWebLocalFrame()) << "This function cannot be "
"called if the main frame "
"is not a local frame.";
return view()->MainFrame()->ToWebLocalFrame()->HasMarkedText();
}
std::vector<int> TextInputController::MarkedRange() {
if (!view()->MainFrame())
return std::vector<int>();
CHECK(view()->MainFrame()->ToWebLocalFrame()) << "This function cannot be "
"called if the main frame "
"is not a local frame.";
blink::WebRange range = view()->MainFrame()->ToWebLocalFrame()->MarkedRange();
std::vector<int> int_array(2);
int_array[0] = range.StartOffset();
int_array[1] = range.EndOffset();
return int_array;
}
std::vector<int> TextInputController::SelectedRange() {
if (!view()->MainFrame())
return std::vector<int>();
CHECK(view()->MainFrame()->ToWebLocalFrame()) << "This function cannot be "
"called if the main frame "
"is not a local frame.";
blink::WebRange range =
view()->MainFrame()->ToWebLocalFrame()->SelectionRange();
if (range.IsNull())
return std::vector<int>();
std::vector<int> int_array(2);
int_array[0] = range.StartOffset();
int_array[1] = range.EndOffset();
return int_array;
}
std::vector<int> TextInputController::FirstRectForCharacterRange(
uint32_t location,
uint32_t length) {
gfx::Rect rect;
if (!view()->FocusedFrame() ||
!view()->FocusedFrame()->FirstRectForCharacterRange(location, length,
rect)) {
return std::vector<int>();
}
std::vector<int> int_array(4);
int_array[0] = rect.x();
int_array[1] = rect.y();
int_array[2] = rect.width();
int_array[3] = rect.height();
return int_array;
}
void TextInputController::SetComposition(const std::string& text,
int replacement_range_start,
int replacement_range_end) {
// Sends a keydown event with key code = 0xE5 to emulate input method
// behavior.
blink::WebKeyboardEvent key_down(blink::WebInputEvent::Type::kRawKeyDown,
blink::WebInputEvent::kNoModifiers,
ui::EventTimeForNow());
key_down.windows_key_code = 0xE5; // VKEY_PROCESSKEY
view()->MainFrameWidget()->HandleInputEvent(
blink::WebCoalescedInputEvent(key_down, ui::LatencyInfo()));
// The value returned by std::string::length() may not correspond to the
// actual number of encoded characters in sequences of multi-byte or
// variable-length characters.
blink::WebString newText = blink::WebString::FromUTF8(text);
size_t textLength = newText.length();
std::vector<ui::ImeTextSpan> ime_text_spans;
ime_text_spans.push_back(ui::ImeTextSpan(
ui::ImeTextSpan::Type::kComposition, 0, textLength,
ui::ImeTextSpan::Thickness::kThin,
ui::ImeTextSpan::UnderlineStyle::kSolid, SK_ColorTRANSPARENT));
blink::WebRange replacement_range =
(replacement_range_start == -1 && replacement_range_end == -1)
? blink::WebRange()
: blink::WebRange(replacement_range_start,
replacement_range_end - replacement_range_start);
if (auto* controller = GetInputMethodController()) {
controller->SetComposition(
newText, blink::WebVector<ui::ImeTextSpan>(std::move(ime_text_spans)),
replacement_range, textLength, textLength);
}
}
void TextInputController::ForceTextInputStateUpdate() {
blink::WebFrameWidget* frame_widget =
web_frame_test_proxy_->GetLocalRootWebFrameWidget();
frame_widget->ShowVirtualKeyboard();
}
blink::WebView* TextInputController::view() {
return web_frame_test_proxy_->GetWebFrame()->View();
}
blink::WebInputMethodController*
TextInputController::GetInputMethodController() {
if (!view()->MainFrame())
return nullptr;
// TODO(lukasza): Finish adding OOPIF support to the web tests harness.
CHECK(view()->MainFrame()->IsWebLocalFrame())
<< "WebView does not have a local main frame and"
" cannot handle input method controller tasks.";
return view()->MainFrameWidget()->GetActiveWebInputMethodController();
}
} // namespace content
|