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 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_RangeBoundary_h
#define mozilla_RangeBoundary_h
#include "mozilla/Assertions.h"
#include "mozilla/Maybe.h"
#include "mozilla/StaticPrefs_dom.h"
#include "mozilla/dom/HTMLSlotElement.h"
#include "mozilla/dom/ShadowRoot.h"
#include "nsCOMPtr.h"
#include "nsIContent.h"
class nsRange;
namespace mozilla {
namespace dom {
class CrossShadowBoundaryRange;
}
template <typename T, typename U>
class EditorDOMPointBase;
// This class will maintain a reference to the child immediately
// before the boundary's offset. We try to avoid computing the
// offset as much as possible and just ensure mRef points to the
// correct child.
//
// mParent
// |
// [child0] [child1] [child2]
// / |
// mRef mOffset=2
//
// If mOffset == 0, mRef is null.
// For text nodes, mRef will always be null and the offset will
// be kept up-to-date.
//
// One special case is when mTreeKind is TreeKind::Flat and
// mParent is slot and slot has assigned nodes, it'll use
// the assigned nodes to determine the reference with the
// same idea as above.
//
// Users of RangeBoundary should be extra careful about comparing
// range boundaries with different kinds, as it tends to lead to
// unexpected results.
template <typename ParentType, typename RefType>
class RangeBoundaryBase;
using RangeBoundary =
RangeBoundaryBase<nsCOMPtr<nsINode>, nsCOMPtr<nsIContent>>;
using RawRangeBoundary = RangeBoundaryBase<nsINode*, nsIContent*>;
using ConstRawRangeBoundary =
RangeBoundaryBase<const nsINode*, const nsIContent*>;
/**
* There are two ways of ensuring that `mRef` points to the correct node.
* In most cases, the `RangeBoundary` is used by an object that is a
* `MutationObserver` (i.e. `nsRange`) and replaces its `RangeBoundary`
* objects when its parent chain changes.
* However, there are Ranges which are not `MutationObserver`s (i.e.
* `StaticRange`). `mRef` may become invalid when a DOM mutation happens.
* Therefore, it needs to be recomputed using `mOffset` before it is being
* accessed.
* Because recomputing / validating of `mRef` could be an expensive operation,
* it should be ensured that `Ref()` is called as few times as possible, i.e.
* only once per method of `RangeBoundaryBase`.
*
* Furthermore, there are special implications when the `RangeBoundary` is not
* used by an `MutationObserver`:
* After a DOM mutation, the Boundary may point to something that is not valid
* anymore, i.e. the `mOffset` is larger than `Container()->Length()`. In this
* case, `Ref()` and `Get*ChildAtOffset()` return `nullptr` as an indication
* that this RangeBoundary is not valid anymore. Also, `IsSetAndValid()`
* returns false. However, `IsSet()` will still return true.
*
*/
enum class RangeBoundaryIsMutationObserved { No = 0, Yes = 1 };
// This class has two types of specializations, one using reference counting
// pointers and one using raw pointers (both non-const and const versions). The
// latter help us avoid unnecessary AddRef/Release calls.
template <typename ParentType, typename RefType>
class RangeBoundaryBase {
template <typename T, typename U>
friend class RangeBoundaryBase;
template <typename T, typename U>
friend class EditorDOMPointBase;
friend nsRange;
friend class mozilla::dom::CrossShadowBoundaryRange;
friend void ImplCycleCollectionTraverse(nsCycleCollectionTraversalCallback&,
RangeBoundary&, const char*,
uint32_t);
friend void ImplCycleCollectionUnlink(RangeBoundary&);
static const uint32_t kFallbackOffset = 0;
template <typename T, typename Enable = void>
struct GetNodeType;
template <typename T>
struct GetNodeType<T, std::enable_if_t<std::is_pointer_v<T>>> {
using type = std::remove_pointer_t<T>;
};
template <typename T>
struct GetNodeType<T, std::enable_if_t<!std::is_pointer_v<T>>> {
using type = typename T::element_type;
};
public:
using RawParentType = typename GetNodeType<ParentType>::type;
static_assert(std::is_same_v<RawParentType, nsINode> ||
std::is_same_v<RawParentType, const nsINode>);
using RawRefType = typename GetNodeType<RefType>::type;
static_assert(std::is_same_v<RawRefType, nsIContent> ||
std::is_same_v<RawRefType, const nsIContent>);
RangeBoundaryBase(RawParentType* aContainer, RawRefType* aRef,
TreeKind aTreeKind = TreeKind::DOM)
: mParent(aContainer),
mRef(aRef),
mIsMutationObserved(true),
mTreeKind(aTreeKind) {
MOZ_ASSERT(
aTreeKind == TreeKind::DOM || aTreeKind == TreeKind::Flat,
"Only TreeKind::DOM and TreeKind::Flat are valid at the moment.");
if (mRef) {
NS_WARNING_ASSERTION(IsValidParent(mParent, mRef),
"Initializing RangeBoundary with invalid value");
} else {
mOffset.emplace(0);
}
}
RangeBoundaryBase(RawParentType* aContainer, uint32_t aOffset,
RangeBoundaryIsMutationObserved aRangeIsMutationObserver =
RangeBoundaryIsMutationObserved::Yes,
TreeKind aTreeKind = TreeKind::DOM)
: mParent(aContainer),
mRef(nullptr),
mOffset(mozilla::Some(aOffset)),
mIsMutationObserved(bool(aRangeIsMutationObserver)),
mTreeKind(aTreeKind) {
MOZ_ASSERT(
aTreeKind == TreeKind::DOM || aTreeKind == TreeKind::Flat,
"Only TreeKind::DOM and TreeKind::Flat are valid at the moment.");
if (mIsMutationObserved && mParent && mParent->IsContainerNode()) {
// Find a reference node
if (aOffset == GetLength(mParent)) {
mRef = GetLastChild(mParent);
} else if (aOffset > 0) {
mRef = GetChildAt(mParent, aOffset - 1);
}
NS_WARNING_ASSERTION(mRef || aOffset == 0,
"Constructing RangeBoundary with invalid value");
}
NS_WARNING_ASSERTION(!mRef || IsValidParent(mParent, mRef),
"Constructing RangeBoundary with invalid value");
}
[[nodiscard]] TreeKind GetTreeKind() const { return mTreeKind; }
RangeBoundaryBase AsRangeBoundaryInFlatTree() const {
if (mOffset) {
if (mTreeKind == TreeKind::Flat) {
MOZ_ASSERT_IF(IsSet(), IsSetAndValid());
return RangeBoundaryBase(
mParent, mRef, *mOffset,
RangeBoundaryIsMutationObserved(mIsMutationObserved),
TreeKind::Flat);
}
// We don't assert IsSetAndValid() here because it's possible
// that a RangeBoundary is not valid for TreeKind::DOM but valid
// for TreeKind::Flat.
return RangeBoundaryBase(
mParent, *mOffset,
RangeBoundaryIsMutationObserved(mIsMutationObserved), TreeKind::Flat);
}
MOZ_ASSERT_IF(IsSet(), IsSetAndValid());
return RangeBoundaryBase(mParent, mRef, TreeKind::Flat);
}
/**
* Special constructor to create RangeBoundaryBase which stores both mRef
* and mOffset. This can make the instance provide both mRef and mOffset
* without computation, but the creator needs to guarantee that this is
* valid at least at construction.
*/
RangeBoundaryBase(RawParentType* aContainer, RawRefType* aRef,
uint32_t aOffset,
RangeBoundaryIsMutationObserved aRangeIsMutationObserver =
RangeBoundaryIsMutationObserved::Yes,
TreeKind aTreeKind = TreeKind::DOM)
: mParent(const_cast<nsINode*>(aContainer)),
mRef(const_cast<nsIContent*>(aRef)),
mOffset(mozilla::Some(aOffset)),
mIsMutationObserved(bool(aRangeIsMutationObserver)),
mTreeKind(aTreeKind) {
MOZ_ASSERT(IsSetAndValid());
}
explicit RangeBoundaryBase(TreeKind aTreeKind = TreeKind::DOM)
: mParent(nullptr),
mRef(nullptr),
mIsMutationObserved(true),
mTreeKind(aTreeKind) {}
// Convert from RawRangeBoundary or RangeBoundary.
template <typename PT, typename RT,
typename = std::enable_if_t<!std::is_const_v<RawParentType> ||
std::is_const_v<PT>>>
RangeBoundaryBase(const RangeBoundaryBase<PT, RT>& aOther,
RangeBoundaryIsMutationObserved aIsMutationObserved)
: mParent(aOther.mParent),
mRef(aOther.mRef),
mOffset(aOther.mOffset),
mIsMutationObserved(bool(aIsMutationObserved)),
mTreeKind(aOther.mTreeKind) {}
/**
* This method may return `nullptr` in two cases:
* 1. `mIsMutationObserved` is true and the boundary points to the first
* child of `mParent`.
* 2. `mIsMutationObserved` is false and `mOffset` is out of bounds for
* `mParent`s child list.
* If `mIsMutationObserved` is false, this method may do some significant
* computation. Therefore it is advised to call it as seldom as possible.
* Code inside of this class should call this method exactly one time and
* afterwards refer to `mRef` directly.
*/
RawRefType* Ref() const {
if (mIsMutationObserved) {
return mRef;
}
MOZ_ASSERT(mParent);
MOZ_ASSERT(mOffset);
// `mRef` may have become invalid due to some DOM mutation,
// which is not monitored here. Therefore, we need to validate `mRef`
// manually.
const uint32_t parentLength = GetLength(mParent);
if (*mOffset > parentLength) {
// offset > child count means that the range boundary has become invalid
// due to a DOM mutation.
mRef = nullptr;
} else if (*mOffset == parentLength) {
mRef = GetLastChild(mParent);
} else if (*mOffset) {
// validate and update `mRef`.
// If `ComputeIndexOf()` returns `Nothing`, then `mRef` is not a child of
// `mParent` anymore.
// If the returned index for `mRef` does not match to `mOffset`, `mRef`
// needs to be updated.
auto indexOfRefObject = mTreeKind == TreeKind::DOM
? mParent->ComputeIndexOf(mRef)
: mParent->ComputeFlatTreeIndexOf(mRef);
if (indexOfRefObject.isNothing() || *mOffset != *indexOfRefObject + 1) {
mRef = GetChildAt(mParent, *mOffset - 1);
}
} else {
mRef = nullptr;
}
return mRef;
}
RawParentType* GetContainer() const { return mParent; }
dom::Document* GetComposedDoc() const {
return mParent ? mParent->GetComposedDoc() : nullptr;
}
/**
* This method may return `nullptr` if `mIsMutationObserved` is false and
* `mOffset` is out of bounds.
*/
RawRefType* GetChildAtOffset() const {
if (!mParent || !mParent->IsContainerNode()) {
return nullptr;
}
RawRefType* const ref = Ref();
if (!ref) {
if (!mIsMutationObserved && *mOffset != 0) {
// This means that this boundary is invalid.
// `mOffset` is out of bounds.
return nullptr;
}
MOZ_ASSERT(*Offset(OffsetFilter::kValidOrInvalidOffsets) == 0,
"invalid RangeBoundary");
return GetFirstChild(mParent);
}
MOZ_ASSERT(
GetChildAt(mParent, *Offset(OffsetFilter::kValidOrInvalidOffsets)) ==
GetNextSibling(ref));
return GetNextSibling(ref);
}
/**
* GetNextSiblingOfChildOffset() returns next sibling of a child at offset.
* If this refers after the last child or the container cannot have children,
* this returns nullptr with warning.
*/
RawRefType* GetNextSiblingOfChildAtOffset() const {
if (NS_WARN_IF(!mParent) || NS_WARN_IF(!mParent->IsContainerNode())) {
return nullptr;
}
RawRefType* const ref = Ref();
if (!ref) {
if (!mIsMutationObserved && *mOffset != 0) {
// This means that this boundary is invalid.
// `mOffset` is out of bounds.
return nullptr;
}
MOZ_ASSERT(*Offset(OffsetFilter::kValidOffsets) == 0,
"invalid RangeBoundary");
nsIContent* firstChild = GetFirstChild(mParent);
if (NS_WARN_IF(!firstChild)) {
// Already referring the end of the container.
return nullptr;
}
return GetNextSibling(firstChild);
}
if (NS_WARN_IF(!GetNextSibling(ref))) {
// Already referring the end of the container.
return nullptr;
}
return GetNextSibling(GetNextSibling(ref));
}
/**
* GetPreviousSiblingOfChildAtOffset() returns previous sibling of a child
* at offset. If this refers the first child or the container cannot have
* children, this returns nullptr with warning.
*/
RawRefType* GetPreviousSiblingOfChildAtOffset() const {
if (NS_WARN_IF(!mParent) || NS_WARN_IF(!mParent->IsContainerNode())) {
return nullptr;
}
RawRefType* const ref = Ref();
if (NS_WARN_IF(!ref)) {
// Already referring the start of the container.
return nullptr;
}
return ref;
}
/**
* Return true if this has already computed/set offset.
*/
[[nodiscard]] bool HasOffset() const { return mOffset.isSome(); }
enum class OffsetFilter { kValidOffsets, kValidOrInvalidOffsets };
/**
* @return maybe an offset, depending on aOffsetFilter. If it is:
* kValidOffsets: if the offset is valid, it, Nothing{} otherwise.
* kValidOrInvalidOffsets: the internally stored offset, even if
* invalid, or if not available, a defined
* default value. That is, always some value.
*/
Maybe<uint32_t> Offset(const OffsetFilter aOffsetFilter) const {
switch (aOffsetFilter) {
case OffsetFilter::kValidOffsets: {
if (IsSetAndValid()) {
MOZ_ASSERT_IF(!mIsMutationObserved, mOffset);
if (!mOffset && mIsMutationObserved) {
DetermineOffsetFromReference();
}
}
return !mIsMutationObserved && *mOffset > GetLength(mParent) ? Nothing{}
: mOffset;
}
case OffsetFilter::kValidOrInvalidOffsets: {
MOZ_ASSERT_IF(!mIsMutationObserved, mOffset.isSome());
if (mOffset.isSome()) {
return mOffset;
}
if (mParent && mIsMutationObserved) {
DetermineOffsetFromReference();
if (mOffset.isSome()) {
return mOffset;
}
}
return Some(kFallbackOffset);
}
}
// Needed to calm the compiler. There was deliberately no default case added
// to the above switch-statement, because it would prevent build-errors when
// not all enumerators are handled.
MOZ_ASSERT_UNREACHABLE();
return Some(kFallbackOffset);
}
friend std::ostream& operator<<(
std::ostream& aStream,
const RangeBoundaryBase<ParentType, RefType>& aRangeBoundary) {
aStream << "{ mParent=" << aRangeBoundary.GetContainer();
if (aRangeBoundary.GetContainer()) {
aStream << " (" << *aRangeBoundary.GetContainer()
<< ", Length()=" << aRangeBoundary.GetContainer()->Length()
<< ")";
}
if (aRangeBoundary.mIsMutationObserved) {
aStream << ", mRef=" << aRangeBoundary.mRef;
if (aRangeBoundary.mRef) {
aStream << " (" << *aRangeBoundary.mRef << ")";
}
}
aStream << ", mOffset=" << aRangeBoundary.mOffset;
aStream << ", mIsMutationObserved="
<< (aRangeBoundary.mIsMutationObserved ? "true" : "false") << " }";
return aStream;
}
private:
void DetermineOffsetFromReference() const {
MOZ_ASSERT(mParent);
MOZ_ASSERT(mRef);
MOZ_ASSERT(IsValidParent(mParent, mRef));
MOZ_ASSERT(mIsMutationObserved);
MOZ_ASSERT(mOffset.isNothing());
if (mRef->IsBeingRemoved()) {
// ComputeIndexOf would return nothing because mRef has already been
// removed from the child node chain of mParent.
return;
}
const Maybe<uint32_t> index = mTreeKind == TreeKind::DOM
? mParent->ComputeIndexOf(mRef)
: mParent->ComputeFlatTreeIndexOf(mRef);
MOZ_ASSERT(*index != UINT32_MAX);
mOffset.emplace(MOZ_LIKELY(index.isSome()) ? *index + 1u : 0u);
}
RawRefType* GetNextSibling(const nsIContent* aCurrentNode) const {
MOZ_ASSERT(mParent);
MOZ_ASSERT(aCurrentNode);
if (mTreeKind == TreeKind::Flat) {
if (const auto* slot = dom::HTMLSlotElement::FromNode(mParent)) {
const Span assigned = slot->AssignedNodes();
const auto index = assigned.IndexOf(aCurrentNode);
if (index != assigned.npos && index + 1 < assigned.Length()) {
if (auto* nextSibling = RawRefType::FromNode(assigned[index + 1])) {
return nextSibling;
}
return nullptr;
}
}
}
return aCurrentNode->GetNextSibling();
}
RawRefType* GetFirstChild(const nsINode* aNode) const {
MOZ_ASSERT(aNode);
if (mTreeKind == TreeKind::Flat) {
if (const auto* slot = dom::HTMLSlotElement::FromNode(aNode)) {
const Span assigned = slot->AssignedNodes();
if (!assigned.IsEmpty()) {
if (RawRefType* child = RawRefType::FromNode(assigned[0])) {
return child;
}
return nullptr;
}
}
if (const auto* shadowRoot = aNode->GetShadowRoot()) {
return shadowRoot->GetFirstChild();
}
}
return aNode->GetFirstChild();
}
bool IsValidParent(const nsINode* aParent, const nsIContent* aChild) const {
MOZ_ASSERT(aParent);
MOZ_ASSERT(aChild);
if (mTreeKind == TreeKind::Flat) {
if (const auto* slot = aChild->GetAssignedSlot()) {
return slot == aParent;
}
if (const auto* shadowRoot =
dom::ShadowRoot::FromNodeOrNull(aChild->GetParent())) {
if (shadowRoot->GetHost() == aParent) {
return true;
}
}
}
return aChild->GetParentNode() == aParent;
}
uint32_t GetLength(const nsINode* aNode) const {
MOZ_ASSERT(aNode);
if (mTreeKind == TreeKind::Flat) {
if (const auto* slot = dom::HTMLSlotElement::FromNode(aNode)) {
const Span assigned = slot->AssignedNodes();
if (!assigned.IsEmpty()) {
return assigned.Length();
}
}
if (const auto* shadowRoot = aNode->GetShadowRoot()) {
return shadowRoot->Length();
}
}
return aNode->Length();
}
RawRefType* GetChildAt(const nsINode* aParent, uint32_t aOffset) const {
MOZ_ASSERT(aParent);
return mTreeKind == TreeKind::Flat
? RawRefType::FromNodeOrNull(
aParent->GetChildAtInFlatTree(aOffset))
: aParent->GetChildAt_Deprecated(aOffset);
}
RawRefType* GetLastChild(const nsINode* aParent) const {
MOZ_ASSERT(aParent);
if (mTreeKind == TreeKind::Flat) {
if (const auto* slot = dom::HTMLSlotElement::FromNode(aParent)) {
const Span assigned = slot->AssignedNodes();
if (!assigned.IsEmpty()) {
return RawRefType::FromNode(assigned[assigned.Length() - 1]);
}
}
if (const auto* shadowRoot = aParent->GetShadowRoot()) {
return shadowRoot->GetLastChild();
}
}
return aParent->GetLastChild();
}
void InvalidateOffset() {
MOZ_ASSERT(mParent);
MOZ_ASSERT(mParent->IsContainerNode(),
"Range is positioned on a text node!");
if (!mIsMutationObserved) {
// RangeBoundaries that are not used in the context of a
// `MutationObserver` use the offset as main source of truth to compute
// `mRef`. Therefore, it must not be updated or invalidated.
return;
}
if (!mRef) {
MOZ_ASSERT(mOffset.isSome() && mOffset.value() == 0,
"Invalidating offset of invalid RangeBoundary?");
return;
}
mOffset.reset();
}
public:
void NotifyParentBecomesShadowHost() {
MOZ_ASSERT(mParent);
MOZ_ASSERT(mParent->IsContainerNode(),
"Range is positioned on a text node!");
if (!StaticPrefs::dom_shadowdom_selection_across_boundary_enabled()) {
return;
}
if (!mIsMutationObserved) {
// RangeBoundaries that are not used in the context of a
// `MutationObserver` use the offset as main source of truth to compute
// `mRef`. Therefore, it must not be updated or invalidated.
return;
}
if (!mRef) {
MOZ_ASSERT(mOffset.isSome() && mOffset.value() == 0,
"Invalidating offset of invalid RangeBoundary?");
return;
}
if (dom::ShadowRoot* shadowRoot = mParent->GetShadowRootForSelection()) {
mParent = shadowRoot;
}
mOffset = Some(0);
}
bool IsSet() const { return mParent && (mRef || mOffset.isSome()); }
[[nodiscard]] bool IsSetAndInComposedDoc() const {
return IsSet() && mParent->IsInComposedDoc();
}
bool IsSetAndValid() const {
if (!IsSet()) {
return false;
}
if (mIsMutationObserved && Ref()) {
// XXX mRef refers previous sibling of pointing child. Therefore, it
// seems odd that this becomes invalid due to its removal. Should we
// change RangeBoundaryBase to refer child at offset directly?
return IsValidParent(GetContainer(), Ref()) && !Ref()->IsBeingRemoved();
}
MOZ_ASSERT(mOffset.isSome());
return *mOffset <= GetContainer()->Length();
}
bool IsStartOfContainer() const {
// We're at the first point in the container if we don't have a reference,
// and our offset is 0. If we don't have a Ref, we should already have an
// offset, so we can just directly fetch it.
return mIsMutationObserved ? !Ref() && mOffset.value() == 0
: mOffset.value() == 0;
}
bool IsEndOfContainer() const {
// We're at the last point in the container if Ref is a pointer to the last
// child in GetContainer(), or our Offset() is the same as the length of our
// container. If we don't have a Ref, then we should already have an offset,
// so we can just directly fetch it.
return mIsMutationObserved && Ref() ? !GetNextSibling(Ref())
: mOffset.value() == GetLength(mParent);
}
// Convenience methods for switching between the two types
// of RangeBoundary.
template <typename PT = RawParentType,
typename = std::enable_if_t<!std::is_const_v<PT>>>
RawRangeBoundary AsRaw() const {
return RawRangeBoundary(
*this, RangeBoundaryIsMutationObserved(mIsMutationObserved));
}
ConstRawRangeBoundary AsConstRaw() const {
return ConstRawRangeBoundary(
*this, RangeBoundaryIsMutationObserved(mIsMutationObserved));
}
RangeBoundaryBase& operator=(const RangeBoundaryBase& aOther) {
MOZ_ASSERT(mTreeKind == aOther.mTreeKind);
if (this != &aOther) {
mParent = aOther.mParent;
mRef = aOther.mRef;
mOffset = aOther.mOffset;
mIsMutationObserved = aOther.mIsMutationObserved;
}
return *this;
}
template <
typename PT, typename RT, typename RPT = RawParentType,
typename = std::enable_if_t<!std::is_const_v<PT> || std::is_const_v<RPT>>>
RangeBoundaryBase& CopyFrom(
const RangeBoundaryBase<PT, RT>& aOther,
RangeBoundaryIsMutationObserved aIsMutationObserved) {
MOZ_ASSERT(mTreeKind == aOther.mTreeKind);
// mParent and mRef can be strong pointers, so better to try to avoid any
// extra AddRef/Release calls.
if (mParent != aOther.mParent) {
mParent = aOther.mParent;
}
if (mRef != aOther.mRef) {
mRef = aOther.mRef;
}
mIsMutationObserved = bool(aIsMutationObserved);
if (!mIsMutationObserved && aOther.mOffset.isNothing()) {
// "Fix" the offset from mRef if and only if we won't be updated for
// further mutations and aOther has not computed the offset of its mRef.
// XXX What should we do if aOther is not updated for mutations and
// mOffset has already been invalid?
mOffset = aOther.Offset(
RangeBoundaryBase<PT, RT>::OffsetFilter::kValidOrInvalidOffsets);
MOZ_DIAGNOSTIC_ASSERT(mOffset.isSome());
} else {
mOffset = aOther.mOffset;
}
// If the mutation will be observed but the other does not have proper
// mRef for its mOffset, we need to compute mRef like the constructor
// which takes aOffset.
if (mIsMutationObserved && !mRef && mParent && mOffset.isSome() &&
*mOffset) {
if (*mOffset == mParent->GetChildCount()) {
mRef = GetLastChild(mParent);
} else {
mRef = GetChildAt(mParent, *mOffset - 1);
}
}
return *this;
}
bool Equals(const RawParentType* aNode, uint32_t aOffset) const {
if (mParent != aNode) {
return false;
}
const Maybe<uint32_t> offset = Offset(OffsetFilter::kValidOffsets);
return offset && (*offset == aOffset);
}
template <typename A, typename B>
[[nodiscard]] bool operator==(const RangeBoundaryBase<A, B>& aOther) const {
if (!mParent && !aOther.mParent) {
return true;
}
if (mParent != aOther.mParent) {
return false;
}
if (RefIsFixed() && aOther.RefIsFixed()) {
return mRef == aOther.mRef;
}
if (mTreeKind != aOther.mTreeKind) {
return false;
}
return Offset(OffsetFilter::kValidOrInvalidOffsets) ==
aOther.Offset(
RangeBoundaryBase<A, B>::OffsetFilter::kValidOrInvalidOffsets);
}
template <typename A, typename B>
bool operator!=(const RangeBoundaryBase<A, B>& aOther) const {
return !(*this == aOther);
}
private:
[[nodiscard]] bool RefIsFixed() const {
return mParent &&
(
// If mutation is observed, mRef is the base of mOffset unless
// it's not a container node like `Text` node.
(mIsMutationObserved && (mRef || mParent->IsContainerNode())) ||
// If offset is not set, we would compute mOffset from mRef.
// So, mRef is "fixed" for now.
mOffset.isNothing());
}
ParentType mParent;
mutable RefType mRef;
mutable mozilla::Maybe<uint32_t> mOffset;
bool mIsMutationObserved;
const TreeKind mTreeKind;
};
template <typename ParentType, typename RefType>
const uint32_t RangeBoundaryBase<ParentType, RefType>::kFallbackOffset;
inline void ImplCycleCollectionUnlink(RangeBoundary& aField) {
ImplCycleCollectionUnlink(aField.mParent);
ImplCycleCollectionUnlink(aField.mRef);
}
inline void ImplCycleCollectionTraverse(
nsCycleCollectionTraversalCallback& aCallback, RangeBoundary& aField,
const char* aName, uint32_t aFlags) {
ImplCycleCollectionTraverse(aCallback, aField.mParent, "mParent", 0);
ImplCycleCollectionTraverse(aCallback, aField.mRef, "mRef", 0);
}
} // namespace mozilla
#endif // defined(mozilla_RangeBoundary_h)
|