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
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/editing/selection_template.h"
#include <ostream>
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/editing/ephemeral_range.h"
#include "third_party/blink/renderer/core/editing/position_with_affinity.h"
namespace blink {
template <typename Strategy>
SelectionTemplate<Strategy>::SelectionTemplate(const SelectionTemplate& other)
: anchor_(other.anchor_),
focus_(other.focus_),
affinity_(other.affinity_),
direction_(other.direction_)
#if DCHECK_IS_ON()
,
dom_tree_version_(other.dom_tree_version_)
#endif
{
DCHECK(other.AssertValid());
}
template <typename Strategy>
SelectionTemplate<Strategy>::SelectionTemplate() = default;
template <typename Strategy>
bool SelectionTemplate<Strategy>::operator==(
const SelectionTemplate& other) const {
DCHECK(AssertValid());
DCHECK(other.AssertValid());
if (IsNone())
return other.IsNone();
if (other.IsNone())
return false;
DCHECK_EQ(anchor_.GetDocument(), other.GetDocument())
<< *this << ' ' << other;
return anchor_ == other.anchor_ && focus_ == other.focus_ &&
affinity_ == other.affinity_;
}
template <typename Strategy>
bool SelectionTemplate<Strategy>::operator!=(
const SelectionTemplate& other) const {
return !operator==(other);
}
template <typename Strategy>
void SelectionTemplate<Strategy>::Trace(Visitor* visitor) const {
visitor->Trace(anchor_);
visitor->Trace(focus_);
}
template <typename Strategy>
const PositionTemplate<Strategy>& SelectionTemplate<Strategy>::Anchor() const {
DCHECK(AssertValid());
DCHECK(!anchor_.IsOrphan()) << anchor_;
return anchor_;
}
template <typename Strategy>
Document* SelectionTemplate<Strategy>::GetDocument() const {
DCHECK(AssertValid());
return anchor_.GetDocument();
}
template <typename Strategy>
const PositionTemplate<Strategy>& SelectionTemplate<Strategy>::Focus() const {
DCHECK(AssertValid());
DCHECK(!focus_.IsOrphan()) << focus_;
return focus_;
}
template <typename Strategy>
bool SelectionTemplate<Strategy>::IsCaret() const {
return anchor_.IsNotNull() && anchor_ == focus_;
}
template <typename Strategy>
bool SelectionTemplate<Strategy>::IsRange() const {
return anchor_ != focus_;
}
template <typename Strategy>
bool SelectionTemplate<Strategy>::IsValidFor(const Document& document) const {
if (IsNone())
return true;
return anchor_.IsValidFor(document) && focus_.IsValidFor(document);
}
template <typename Strategy>
bool SelectionTemplate<Strategy>::AssertValidFor(
const Document& document) const {
if (!AssertValid())
return false;
if (anchor_.IsNull()) {
return true;
}
DCHECK_EQ(anchor_.GetDocument(), document) << *this;
return true;
}
#if DCHECK_IS_ON()
template <typename Strategy>
bool SelectionTemplate<Strategy>::AssertValid() const {
if (anchor_.IsNull()) {
return true;
}
DCHECK_EQ(anchor_.GetDocument()->DomTreeVersion(), dom_tree_version_)
<< *this;
DCHECK(!anchor_.IsOrphan()) << *this;
DCHECK(!focus_.IsOrphan()) << *this;
DCHECK_EQ(anchor_.GetDocument(), focus_.GetDocument());
return true;
}
#else
template <typename Strategy>
bool SelectionTemplate<Strategy>::AssertValid() const {
return true;
}
#endif
#if DCHECK_IS_ON()
template <typename Strategy>
void SelectionTemplate<Strategy>::ShowTreeForThis() const {
if (anchor_.IsNull()) {
LOG(INFO) << "\nanchor is null";
return;
}
LOG(INFO) << "\n"
<< anchor_.AnchorNode()
->ToMarkedTreeString(anchor_.AnchorNode(), "B",
focus_.AnchorNode(), "E")
.Utf8()
<< "anchor: " << anchor_.ToAnchorTypeAndOffsetString().Utf8()
<< "\n"
<< "focus: " << focus_.ToAnchorTypeAndOffsetString().Utf8();
}
#endif
template <typename Strategy>
const PositionTemplate<Strategy>&
SelectionTemplate<Strategy>::ComputeEndPosition() const {
return IsAnchorFirst() ? focus_ : anchor_;
}
template <typename Strategy>
const PositionTemplate<Strategy>&
SelectionTemplate<Strategy>::ComputeStartPosition() const {
return IsAnchorFirst() ? anchor_ : focus_;
}
template <typename Strategy>
EphemeralRangeTemplate<Strategy> SelectionTemplate<Strategy>::ComputeRange()
const {
return EphemeralRangeTemplate<Strategy>(ComputeStartPosition(),
ComputeEndPosition());
}
template <typename Strategy>
bool SelectionTemplate<Strategy>::IsAnchorFirst() const {
DCHECK(AssertValid());
if (anchor_ == focus_) {
DCHECK_EQ(direction_, Direction::kForward);
return true;
}
if (direction_ == Direction::kForward) {
DCHECK_LE(anchor_, focus_);
return true;
}
if (direction_ == Direction::kBackward) {
DCHECK_GT(anchor_, focus_);
return false;
}
// Note: Since same position can be represented in different anchor type,
// e.g. Position(div, 0) and BeforeNode(first-child), we use |<=| to check
// forward selection.
DCHECK_EQ(direction_, Direction::kNotComputed);
direction_ = anchor_ <= focus_ ? Direction::kForward : Direction::kBackward;
return direction_ == Direction::kForward;
}
template <typename Strategy>
void SelectionTemplate<Strategy>::ResetDirectionCache() const {
direction_ =
anchor_ == focus_ ? Direction::kForward : Direction::kNotComputed;
}
template <typename Strategy>
void SelectionTemplate<Strategy>::PrintTo(std::ostream* ostream,
const char* type) const {
if (IsNone()) {
*ostream << "()";
return;
}
*ostream << type << '(';
#if DCHECK_IS_ON()
if (dom_tree_version_ != anchor_.GetDocument()->DomTreeVersion()) {
*ostream << "Dirty: " << dom_tree_version_;
*ostream << " != " << anchor_.GetDocument()->DomTreeVersion() << ' ';
}
#endif
*ostream << "anchor: " << anchor_ << ", focus: " << focus_ << ')';
}
std::ostream& operator<<(std::ostream& ostream,
const SelectionInDOMTree& selection) {
selection.PrintTo(&ostream, "Selection");
return ostream;
}
std::ostream& operator<<(std::ostream& ostream,
const SelectionInFlatTree& selection) {
selection.PrintTo(&ostream, "SelectionInFlatTree");
return ostream;
}
// --
template <typename Strategy>
SelectionTemplate<Strategy>::Builder::Builder(
const SelectionTemplate<Strategy>& selection)
: selection_(selection) {}
template <typename Strategy>
SelectionTemplate<Strategy>::Builder::Builder() = default;
template <typename Strategy>
SelectionTemplate<Strategy> SelectionTemplate<Strategy>::Builder::Build()
const {
DCHECK(selection_.AssertValid());
if (selection_.direction_ == Direction::kBackward) {
DCHECK_LE(selection_.focus_, selection_.anchor_);
return selection_;
}
if (selection_.direction_ == Direction::kForward) {
if (selection_.IsNone())
return selection_;
DCHECK_LE(selection_.anchor_, selection_.focus_);
return selection_;
}
DCHECK_EQ(selection_.direction_, Direction::kNotComputed);
selection_.ResetDirectionCache();
return selection_;
}
template <typename Strategy>
typename SelectionTemplate<Strategy>::Builder&
SelectionTemplate<Strategy>::Builder::Collapse(
const PositionTemplate<Strategy>& position) {
DCHECK(position.IsConnected()) << position;
selection_.anchor_ = position;
selection_.focus_ = position;
#if DCHECK_IS_ON()
selection_.dom_tree_version_ = position.GetDocument()->DomTreeVersion();
#endif
return *this;
}
template <typename Strategy>
typename SelectionTemplate<Strategy>::Builder&
SelectionTemplate<Strategy>::Builder::Collapse(
const PositionWithAffinityTemplate<Strategy>& position_with_affinity) {
Collapse(position_with_affinity.GetPosition());
SetAffinity(position_with_affinity.Affinity());
return *this;
}
template <typename Strategy>
typename SelectionTemplate<Strategy>::Builder&
SelectionTemplate<Strategy>::Builder::Extend(
const PositionTemplate<Strategy>& position) {
DCHECK(position.IsConnected()) << position;
DCHECK_EQ(selection_.GetDocument(), position.GetDocument());
DCHECK(selection_.Anchor().IsConnected()) << selection_.Anchor();
DCHECK(selection_.AssertValid());
if (selection_.focus_.IsEquivalent(position)) {
return *this;
}
selection_.focus_ = position;
selection_.direction_ = Direction::kNotComputed;
return *this;
}
template <typename Strategy>
typename SelectionTemplate<Strategy>::Builder&
SelectionTemplate<Strategy>::Builder::SelectAllChildren(const Node& node) {
DCHECK(node.CanContainRangeEndPoint()) << node;
return SetBaseAndExtent(
EphemeralRangeTemplate<Strategy>::RangeOfContents(node));
}
template <typename Strategy>
typename SelectionTemplate<Strategy>::Builder&
SelectionTemplate<Strategy>::Builder::SetAffinity(TextAffinity affinity) {
selection_.affinity_ = affinity;
return *this;
}
template <typename Strategy>
typename SelectionTemplate<Strategy>::Builder&
SelectionTemplate<Strategy>::Builder::SetAsBackwardSelection(
const EphemeralRangeTemplate<Strategy>& range) {
DCHECK(range.IsNotNull());
DCHECK(!range.IsCollapsed());
DCHECK(selection_.IsNone()) << selection_;
selection_.anchor_ = range.EndPosition();
selection_.focus_ = range.StartPosition();
selection_.direction_ = Direction::kBackward;
DCHECK_GT(selection_.anchor_, selection_.focus_);
#if DCHECK_IS_ON()
selection_.dom_tree_version_ = range.GetDocument().DomTreeVersion();
#endif
return *this;
}
template <typename Strategy>
typename SelectionTemplate<Strategy>::Builder&
SelectionTemplate<Strategy>::Builder::SetAsForwardSelection(
const EphemeralRangeTemplate<Strategy>& range) {
DCHECK(range.IsNotNull());
DCHECK(selection_.IsNone()) << selection_;
selection_.anchor_ = range.StartPosition();
selection_.focus_ = range.EndPosition();
selection_.direction_ = Direction::kForward;
DCHECK_LE(selection_.anchor_, selection_.focus_);
#if DCHECK_IS_ON()
selection_.dom_tree_version_ = range.GetDocument().DomTreeVersion();
#endif
return *this;
}
template <typename Strategy>
typename SelectionTemplate<Strategy>::Builder&
SelectionTemplate<Strategy>::Builder::SetBaseAndExtent(
const EphemeralRangeTemplate<Strategy>& range) {
if (range.IsNull()) {
selection_.anchor_ = PositionTemplate<Strategy>();
selection_.focus_ = PositionTemplate<Strategy>();
#if DCHECK_IS_ON()
selection_.dom_tree_version_ = 0;
#endif
return *this;
}
return SetAsForwardSelection(range);
}
template <typename Strategy>
typename SelectionTemplate<Strategy>::Builder&
SelectionTemplate<Strategy>::Builder::SetBaseAndExtent(
const PositionTemplate<Strategy>& base,
const PositionTemplate<Strategy>& extent) {
if (base.IsNull()) {
DCHECK(extent.IsNull()) << extent;
return SetBaseAndExtent(EphemeralRangeTemplate<Strategy>());
}
// TODO(crbug.com/1423127): `extent` is not expected to be `IsNull` but it
// looks like there are such cases.
return Collapse(base).Extend(extent);
}
template <typename Strategy>
typename SelectionTemplate<Strategy>::Builder&
SelectionTemplate<Strategy>::Builder::SetBaseAndExtentDeprecated(
const PositionTemplate<Strategy>& base,
const PositionTemplate<Strategy>& extent) {
if (base.IsNotNull() && extent.IsNotNull()) {
return SetBaseAndExtent(base, extent);
}
if (base.IsNotNull())
return Collapse(base);
if (extent.IsNotNull())
return Collapse(extent);
return SetBaseAndExtent(EphemeralRangeTemplate<Strategy>());
}
// ---
template <typename Strategy>
SelectionTemplate<Strategy>::InvalidSelectionResetter::InvalidSelectionResetter(
const SelectionTemplate<Strategy>& selection)
: document_(selection.GetDocument()),
selection_(const_cast<SelectionTemplate&>(selection)) {
DCHECK(selection_.AssertValid());
}
template <typename Strategy>
SelectionTemplate<
Strategy>::InvalidSelectionResetter::~InvalidSelectionResetter() {
if (selection_.IsNone())
return;
DCHECK(document_);
if (!selection_.IsValidFor(*document_)) {
selection_ = SelectionTemplate<Strategy>();
return;
}
#if DCHECK_IS_ON()
selection_.dom_tree_version_ = document_->DomTreeVersion();
#endif
selection_.ResetDirectionCache();
}
SelectionInDOMTree ConvertToSelectionInDOMTree(
const SelectionInFlatTree& selection_in_flat_tree) {
return SelectionInDOMTree::Builder()
.SetAffinity(selection_in_flat_tree.Affinity())
.SetBaseAndExtent(ToPositionInDOMTree(selection_in_flat_tree.Anchor()),
ToPositionInDOMTree(selection_in_flat_tree.Focus()))
.Build();
}
SelectionInFlatTree ConvertToSelectionInFlatTree(
const SelectionInDOMTree& selection) {
SelectionInFlatTree::Builder builder;
const PositionInFlatTree& anchor = ToPositionInFlatTree(selection.Anchor());
const PositionInFlatTree& focus = ToPositionInFlatTree(selection.Focus());
if (anchor.IsConnected() && focus.IsConnected()) {
builder.SetBaseAndExtent(anchor, focus);
} else if (anchor.IsConnected()) {
builder.Collapse(anchor);
} else if (focus.IsConnected()) {
builder.Collapse(focus);
}
builder.SetAffinity(selection.Affinity());
return builder.Build();
}
template class CORE_TEMPLATE_EXPORT SelectionTemplate<EditingStrategy>;
template class CORE_TEMPLATE_EXPORT
SelectionTemplate<EditingInFlatTreeStrategy>;
} // namespace blink
|