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
|
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "core/events/InputEvent.h"
#include "core/dom/Range.h"
#include "core/events/EventDispatcher.h"
#include "public/platform/WebEditingCommandType.h"
namespace blink {
namespace {
const struct {
InputEvent::InputType inputType;
const char* stringName;
} kInputTypeStringNameMap[] = {
{InputEvent::InputType::None, ""},
{InputEvent::InputType::InsertText, "insertText"},
{InputEvent::InputType::InsertLineBreak, "insertLineBreak"},
{InputEvent::InputType::InsertParagraph, "insertParagraph"},
{InputEvent::InputType::InsertOrderedList, "insertOrderedList"},
{InputEvent::InputType::InsertUnorderedList, "insertUnorderedList"},
{InputEvent::InputType::InsertHorizontalRule, "insertHorizontalRule"},
{InputEvent::InputType::InsertFromPaste, "insertFromPaste"},
{InputEvent::InputType::InsertFromDrop, "insertFromDrop"},
{InputEvent::InputType::InsertReplacementText, "insertReplacementText"},
{InputEvent::InputType::DeleteComposedCharacterForward,
"deleteComposedCharacterForward"},
{InputEvent::InputType::DeleteComposedCharacterBackward,
"deleteComposedCharacterBackward"},
{InputEvent::InputType::DeleteWordBackward, "deleteWordBackward"},
{InputEvent::InputType::DeleteWordForward, "deleteWordForward"},
{InputEvent::InputType::DeleteLineBackward, "deleteLineBackward"},
{InputEvent::InputType::DeleteLineForward, "deleteLineForward"},
{InputEvent::InputType::DeleteContentBackward, "deleteContentBackward"},
{InputEvent::InputType::DeleteContentForward, "deleteContentForward"},
{InputEvent::InputType::DeleteByCut, "deleteByCut"},
{InputEvent::InputType::DeleteByDrag, "deleteByDrag"},
{InputEvent::InputType::HistoryUndo, "historyUndo"},
{InputEvent::InputType::HistoryRedo, "historyRedo"},
{InputEvent::InputType::FormatBold, "formatBold"},
{InputEvent::InputType::FormatItalic, "formatItalic"},
{InputEvent::InputType::FormatUnderline, "formatUnderline"},
{InputEvent::InputType::FormatStrikeThrough, "formatStrikeThrough"},
{InputEvent::InputType::FormatSuperscript, "formatSuperscript"},
{InputEvent::InputType::FormatSubscript, "formatSubscript"},
{InputEvent::InputType::FormatJustifyCenter, "formatJustifyCenter"},
{InputEvent::InputType::FormatJustifyFull, "formatJustifyFull"},
{InputEvent::InputType::FormatJustifyRight, "formatJustifyRight"},
{InputEvent::InputType::FormatJustifyLeft, "formatJustifyLeft"},
{InputEvent::InputType::FormatIndent, "formatIndent"},
{InputEvent::InputType::FormatOutdent, "formatOutdent"},
{InputEvent::InputType::FormatRemove, "formatRemove"},
{InputEvent::InputType::FormatSetBlockTextDirection,
"formatSetBlockTextDirection"},
};
static_assert(
arraysize(kInputTypeStringNameMap) ==
static_cast<size_t>(InputEvent::InputType::NumberOfInputTypes),
"must handle all InputEvent::InputType");
String convertInputTypeToString(InputEvent::InputType inputType) {
const auto& it =
std::begin(kInputTypeStringNameMap) + static_cast<size_t>(inputType);
if (it >= std::begin(kInputTypeStringNameMap) &&
it < std::end(kInputTypeStringNameMap))
return AtomicString(it->stringName);
return emptyString();
}
InputEvent::InputType convertStringToInputType(const String& stringName) {
// TODO(chongz): Use binary search if the map goes larger.
for (const auto& entry : kInputTypeStringNameMap) {
if (stringName == entry.stringName)
return entry.inputType;
}
return InputEvent::InputType::None;
}
} // anonymous namespace
InputEvent::InputEvent(const AtomicString& type,
const InputEventInit& initializer)
: UIEvent(type, initializer) {
// TODO(ojan): We should find a way to prevent conversion like
// String->enum->String just in order to use initializer.
// See InputEvent::createBeforeInput() for the first conversion.
if (initializer.hasInputType())
m_inputType = convertStringToInputType(initializer.inputType());
if (initializer.hasData())
m_data = initializer.data();
if (initializer.hasDataTransfer())
m_dataTransfer = initializer.dataTransfer();
if (initializer.hasIsComposing())
m_isComposing = initializer.isComposing();
if (initializer.hasRanges())
m_ranges = initializer.ranges();
}
/* static */
InputEvent* InputEvent::createBeforeInput(InputType inputType,
const String& data,
EventCancelable cancelable,
EventIsComposing isComposing,
const RangeVector* ranges) {
InputEventInit inputEventInit;
inputEventInit.setBubbles(true);
inputEventInit.setCancelable(cancelable == IsCancelable);
// TODO(ojan): We should find a way to prevent conversion like
// String->enum->String just in order to use initializer.
// See InputEvent::InputEvent() for the second conversion.
inputEventInit.setInputType(convertInputTypeToString(inputType));
inputEventInit.setData(data);
inputEventInit.setIsComposing(isComposing == IsComposing);
if (ranges)
inputEventInit.setRanges(*ranges);
inputEventInit.setComposed(true);
return InputEvent::create(EventTypeNames::beforeinput, inputEventInit);
}
/* static */
InputEvent* InputEvent::createBeforeInput(InputType inputType,
DataTransfer* dataTransfer,
EventCancelable cancelable,
EventIsComposing isComposing,
const RangeVector* ranges) {
InputEventInit inputEventInit;
inputEventInit.setBubbles(true);
inputEventInit.setCancelable(cancelable == IsCancelable);
inputEventInit.setInputType(convertInputTypeToString(inputType));
inputEventInit.setDataTransfer(dataTransfer);
inputEventInit.setIsComposing(isComposing == IsComposing);
if (ranges)
inputEventInit.setRanges(*ranges);
inputEventInit.setComposed(true);
return InputEvent::create(EventTypeNames::beforeinput, inputEventInit);
}
/* static */
InputEvent* InputEvent::createInput(InputType inputType,
const String& data,
EventIsComposing isComposing,
const RangeVector* ranges) {
InputEventInit inputEventInit;
inputEventInit.setBubbles(true);
inputEventInit.setCancelable(false);
// TODO(ojan): We should find a way to prevent conversion like
// String->enum->String just in order to use initializer.
// See InputEvent::InputEvent() for the second conversion.
inputEventInit.setInputType(convertInputTypeToString(inputType));
inputEventInit.setData(data);
inputEventInit.setIsComposing(isComposing == IsComposing);
if (ranges)
inputEventInit.setRanges(*ranges);
inputEventInit.setComposed(true);
return InputEvent::create(EventTypeNames::input, inputEventInit);
}
String InputEvent::inputType() const {
return convertInputTypeToString(m_inputType);
}
StaticRangeVector InputEvent::getTargetRanges() const {
StaticRangeVector staticRanges;
for (const auto& range : m_ranges)
staticRanges.push_back(StaticRange::create(
range->ownerDocument(), range->startContainer(), range->startOffset(),
range->endContainer(), range->endOffset()));
return staticRanges;
}
bool InputEvent::isInputEvent() const {
return true;
}
// TODO(chongz): We should get rid of this |EventDispatchMediator| pattern and
// introduce simpler interface such as |beforeDispatchEvent()| and
// |afterDispatchEvent()| virtual methods.
EventDispatchMediator* InputEvent::createMediator() {
return InputEventDispatchMediator::create(this);
}
DEFINE_TRACE(InputEvent) {
UIEvent::trace(visitor);
visitor->trace(m_dataTransfer);
visitor->trace(m_ranges);
}
InputEventDispatchMediator* InputEventDispatchMediator::create(
InputEvent* inputEvent) {
return new InputEventDispatchMediator(inputEvent);
}
InputEventDispatchMediator::InputEventDispatchMediator(InputEvent* inputEvent)
: EventDispatchMediator(inputEvent) {}
InputEvent& InputEventDispatchMediator::event() const {
return toInputEvent(EventDispatchMediator::event());
}
DispatchEventResult InputEventDispatchMediator::dispatchEvent(
EventDispatcher& dispatcher) const {
DispatchEventResult result = dispatcher.dispatch();
// It's weird to hold and clear live |Range| objects internally, and only
// expose |StaticRange| through |getTargetRanges()|. However there is no
// better solutions due to the following issues:
// 1. We don't want to expose live |Range| objects for the author to hold as
// it will slow down all DOM operations. So we just expose |StaticRange|.
// 2. Event handlers in chain might modify DOM, which means we have to keep
// a copy of live |Range| internally and return snapshots.
// 3. We don't want authors to hold live |Range| indefinitely by holding
// |InputEvent|, so we clear them after dispatch.
// Authors should explicitly call |getTargetRanges()|->|toRange()| if they
// want to keep a copy of |Range|. See Editing TF meeting notes:
// https://docs.google.com/document/d/1hCj6QX77NYIVY0RWrMHT1Yra6t8_Qu8PopaWLG0AM58/edit?usp=sharing
event().m_ranges.clear();
return result;
}
} // namespace blink
|