2001-09-26 02:53:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2016-07-09 05:34:41 +03:00
|
|
|
#ifndef mozilla_SelectionState_h
|
|
|
|
#define mozilla_SelectionState_h
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2017-11-06 11:01:33 +03:00
|
|
|
#include "mozilla/EditorDOMPoint.h"
|
2022-04-20 17:46:16 +03:00
|
|
|
#include "mozilla/EditorForwards.h"
|
2020-08-08 05:57:16 +03:00
|
|
|
#include "mozilla/Maybe.h"
|
2020-03-16 12:57:58 +03:00
|
|
|
#include "mozilla/OwningNonNull.h"
|
2001-01-28 23:13:07 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2018-07-23 05:44:42 +03:00
|
|
|
#include "nsDirection.h"
|
2012-06-06 11:35:54 +04:00
|
|
|
#include "nsINode.h"
|
2020-08-08 05:57:16 +03:00
|
|
|
#include "nsRange.h"
|
2012-07-13 10:33:42 +04:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nscore.h"
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2012-07-13 10:33:42 +04:00
|
|
|
class nsCycleCollectionTraversalCallback;
|
2012-01-10 18:19:54 +04:00
|
|
|
class nsRange;
|
2012-07-23 14:27:22 +04:00
|
|
|
namespace mozilla {
|
2014-04-10 20:09:40 +04:00
|
|
|
namespace dom {
|
2020-03-16 12:57:58 +03:00
|
|
|
class Element;
|
2012-07-23 14:27:22 +04:00
|
|
|
class Selection;
|
2014-08-29 15:43:23 +04:00
|
|
|
class Text;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2016-06-24 08:44:14 +03:00
|
|
|
/**
|
|
|
|
* A helper struct for saving/setting ranges.
|
2001-01-28 23:13:07 +03:00
|
|
|
*/
|
2016-06-24 08:44:14 +03:00
|
|
|
struct RangeItem final {
|
2020-03-16 12:57:58 +03:00
|
|
|
RangeItem() : mStartOffset(0), mEndOffset(0) {}
|
2014-04-02 20:21:12 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Private destructor, to discourage deletion outside of Release():
|
2020-03-06 07:38:25 +03:00
|
|
|
~RangeItem() = default;
|
2014-04-02 20:21:12 +04:00
|
|
|
|
|
|
|
public:
|
2020-05-03 02:44:46 +03:00
|
|
|
void StoreRange(const nsRange& aRange);
|
Bug 1530649 - Improve composition string handling which ends with whitespaces r=m_kato
If insertion string ends with ASCII whitespace and there is no following
content in the block, `HTMLEditRules::AdjustWhitespaces()` needs to insert
`<br>` element. It's called only by `HTMLEditRules::AfterEditInner()` and
that does only simple things with `WSRunObject`. Therefore, this moves the
code into `AfterEditInner()`.
For making it adjust the whitespaces, `HTMLEditRules::WillInsertText()` needs
to notify `AfterEditInner()` of dirty range with `mDocChangeRange`. Therefore,
this patch makes it set `mDocChangeRange` manually after inserting composition
string.
On the other hand, there is another bug. `WSRunObject` was designed to treat
only inserting text for `WSRunObject::InsertText()`. I.e., not designed to
treat replacing existing composition string with new string. Therefore,
`WSRunObject::InsertText()` adjusts whitespaces only around start of
composition string. Therefore, if composition string ends with an ASCII
whitespace, it's not replaced with NBSP and that causes:
- failing `WSRunObject::AdjustWhitespaces()` inserts `<br>` element at
`AfterEditInner()` of committing composition.
- then, next composition's first `WSRunObject::InsertText()` removes the
last whitespace due to not followed by `<br>` nor any other content.
Therefore, this patch makes `WSRunObject` takes 2 DOM points to be able to
treat replaced range.
In strictly speaking, the latter change require more changes and tests for
supporting replacement with any other methods. However, it's risky and out
of scope of this bug.
Differential Revision: https://phabricator.services.mozilla.com/D26423
--HG--
extra : moz-landing-system : lando
2019-04-09 08:28:38 +03:00
|
|
|
void StoreRange(const EditorRawDOMPoint& aStartPoint,
|
|
|
|
const EditorRawDOMPoint& aEndPoint) {
|
|
|
|
MOZ_ASSERT(aStartPoint.IsSet());
|
|
|
|
MOZ_ASSERT(aEndPoint.IsSet());
|
|
|
|
mStartContainer = aStartPoint.GetContainer();
|
|
|
|
mStartOffset = aStartPoint.Offset();
|
|
|
|
mEndContainer = aEndPoint.GetContainer();
|
|
|
|
mEndOffset = aEndPoint.Offset();
|
|
|
|
}
|
2019-08-20 04:51:19 +03:00
|
|
|
void Clear() {
|
|
|
|
mStartContainer = mEndContainer = nullptr;
|
|
|
|
mStartOffset = mEndOffset = 0;
|
|
|
|
}
|
2022-05-13 08:35:25 +03:00
|
|
|
already_AddRefed<nsRange> GetRange() const;
|
2022-05-09 07:55:42 +03:00
|
|
|
|
|
|
|
// Same as the API of dom::AbstractRange
|
2022-05-09 08:01:58 +03:00
|
|
|
[[nodiscard]] nsINode* GetRoot() const;
|
|
|
|
[[nodiscard]] bool Collapsed() const {
|
2019-08-20 04:51:19 +03:00
|
|
|
return mStartContainer == mEndContainer && mStartOffset == mEndOffset;
|
|
|
|
}
|
2022-05-09 08:01:58 +03:00
|
|
|
[[nodiscard]] bool IsPositioned() const {
|
|
|
|
return mStartContainer && mEndContainer;
|
|
|
|
}
|
|
|
|
[[nodiscard]] bool Equals(const RangeItem& aOther) const {
|
|
|
|
return mStartContainer == aOther.mStartContainer &&
|
|
|
|
mEndContainer == aOther.mEndContainer &&
|
|
|
|
mStartOffset == aOther.mStartOffset &&
|
|
|
|
mEndOffset == aOther.mEndOffset;
|
|
|
|
}
|
2019-08-20 04:51:19 +03:00
|
|
|
EditorDOMPoint StartPoint() const {
|
|
|
|
return EditorDOMPoint(mStartContainer, mStartOffset);
|
|
|
|
}
|
|
|
|
EditorDOMPoint EndPoint() const {
|
|
|
|
return EditorDOMPoint(mEndContainer, mEndOffset);
|
|
|
|
}
|
|
|
|
EditorRawDOMPoint StartRawPoint() const {
|
|
|
|
return EditorRawDOMPoint(mStartContainer, mStartOffset);
|
|
|
|
}
|
|
|
|
EditorRawDOMPoint EndRawPoint() const {
|
|
|
|
return EditorRawDOMPoint(mEndContainer, mEndOffset);
|
|
|
|
}
|
2012-07-13 10:31:15 +04:00
|
|
|
|
2017-08-22 17:47:00 +03:00
|
|
|
NS_INLINE_DECL_MAIN_THREAD_ONLY_CYCLE_COLLECTING_NATIVE_REFCOUNTING(RangeItem)
|
2017-08-18 00:15:33 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_NATIVE_CLASS(RangeItem)
|
2015-05-28 18:58:42 +03:00
|
|
|
|
2017-07-11 16:46:11 +03:00
|
|
|
nsCOMPtr<nsINode> mStartContainer;
|
2017-07-11 16:57:55 +03:00
|
|
|
nsCOMPtr<nsINode> mEndContainer;
|
2021-06-30 10:07:28 +03:00
|
|
|
uint32_t mStartOffset;
|
|
|
|
uint32_t mEndOffset;
|
2001-01-28 23:13:07 +03:00
|
|
|
};
|
|
|
|
|
2016-06-24 08:44:14 +03:00
|
|
|
/**
|
|
|
|
* mozilla::SelectionState
|
|
|
|
*
|
|
|
|
* Class for recording selection info. Stores selection as collection of
|
|
|
|
* { {startnode, startoffset} , {endnode, endoffset} } tuples. Can't store
|
|
|
|
* ranges since dom gravity will possibly change the ranges.
|
|
|
|
*/
|
2015-05-28 18:58:42 +03:00
|
|
|
|
2016-07-07 12:15:53 +03:00
|
|
|
class SelectionState final {
|
|
|
|
public:
|
2022-05-09 08:01:58 +03:00
|
|
|
/**
|
|
|
|
* Same as the API as dom::Selection
|
|
|
|
*/
|
|
|
|
[[nodiscard]] bool IsCollapsed() const {
|
|
|
|
if (mArray.Length() != 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return mArray[0]->Collapsed();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveAllRanges() {
|
|
|
|
mArray.Clear();
|
|
|
|
mDirection = eDirNext;
|
|
|
|
}
|
2016-07-07 12:15:53 +03:00
|
|
|
|
2022-05-09 08:01:58 +03:00
|
|
|
[[nodiscard]] uint32_t RangeCount() const { return mArray.Length(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Saving all ranges of aSelection.
|
|
|
|
*/
|
2020-03-16 12:57:58 +03:00
|
|
|
void SaveSelection(dom::Selection& aSelection);
|
2022-05-09 08:01:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Setting aSelection to have all ranges stored by this instance.
|
|
|
|
*/
|
2020-03-16 12:57:58 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY nsresult
|
|
|
|
RestoreSelection(dom::Selection& aSelection);
|
2022-05-09 08:01:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* HasOnlyCollapsedRange() returns true only when there is a positioned range
|
|
|
|
* which is collapsed. I.e., the selection represents a caret point.
|
|
|
|
*/
|
|
|
|
[[nodiscard]] bool HasOnlyCollapsedRange() const {
|
|
|
|
if (mArray.Length() != 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!mArray[0]->IsPositioned() || !mArray[0]->Collapsed()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Equals() returns true only when there are same number of ranges and
|
|
|
|
* all their containers and offsets are exactly same. This won't check
|
|
|
|
* the validity of each range with the current DOM tree.
|
|
|
|
*/
|
|
|
|
[[nodiscard]] bool Equals(const SelectionState& aOther) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns common root node of all ranges' start and end containers.
|
|
|
|
* Some of them have different root nodes, this returns nullptr.
|
|
|
|
*/
|
|
|
|
[[nodiscard]] nsINode* GetCommonRootNode() const {
|
|
|
|
nsINode* rootNode = nullptr;
|
|
|
|
for (const RefPtr<RangeItem>& rangeItem : mArray) {
|
|
|
|
nsINode* newRootNode = rangeItem->GetRoot();
|
|
|
|
if (!newRootNode || (rootNode && rootNode != newRootNode)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
rootNode = newRootNode;
|
|
|
|
}
|
|
|
|
return rootNode;
|
|
|
|
}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-07-07 12:15:53 +03:00
|
|
|
private:
|
2020-05-06 14:15:49 +03:00
|
|
|
CopyableAutoTArray<RefPtr<RangeItem>, 1> mArray;
|
2022-05-09 08:01:58 +03:00
|
|
|
nsDirection mDirection = eDirNext;
|
2016-07-07 12:15:53 +03:00
|
|
|
|
2016-06-24 09:01:40 +03:00
|
|
|
friend class RangeUpdater;
|
2016-07-07 12:15:53 +03:00
|
|
|
friend void ImplCycleCollectionTraverse(nsCycleCollectionTraversalCallback&,
|
|
|
|
SelectionState&, const char*,
|
|
|
|
uint32_t);
|
|
|
|
friend void ImplCycleCollectionUnlink(SelectionState&);
|
2001-01-28 23:13:07 +03:00
|
|
|
};
|
|
|
|
|
2016-03-05 01:11:37 +03:00
|
|
|
inline void ImplCycleCollectionTraverse(
|
|
|
|
nsCycleCollectionTraversalCallback& aCallback, SelectionState& aField,
|
|
|
|
const char* aName, uint32_t aFlags = 0) {
|
|
|
|
ImplCycleCollectionTraverse(aCallback, aField.mArray, aName, aFlags);
|
|
|
|
}
|
|
|
|
|
2016-07-07 12:15:53 +03:00
|
|
|
inline void ImplCycleCollectionUnlink(SelectionState& aField) {
|
2016-03-05 01:11:37 +03:00
|
|
|
ImplCycleCollectionUnlink(aField.mArray);
|
|
|
|
}
|
|
|
|
|
2018-11-26 09:31:56 +03:00
|
|
|
class MOZ_STACK_CLASS RangeUpdater final {
|
2016-06-24 09:01:40 +03:00
|
|
|
public:
|
|
|
|
RangeUpdater();
|
|
|
|
|
2020-03-16 12:57:58 +03:00
|
|
|
void RegisterRangeItem(RangeItem& aRangeItem);
|
|
|
|
void DropRangeItem(RangeItem& aRangeItem);
|
|
|
|
void RegisterSelectionState(SelectionState& aSelectionState);
|
|
|
|
void DropSelectionState(SelectionState& aSelectionState);
|
2016-06-24 09:01:40 +03:00
|
|
|
|
|
|
|
// editor selection gravity routines. Note that we can't always depend on
|
|
|
|
// DOM Range gravity to do what we want to the "real" selection. For
|
|
|
|
// instance, if you move a node, that corresponds to deleting it and
|
|
|
|
// reinserting it. DOM Range gravity will promote the selection out of the
|
|
|
|
// node on deletion, which is not what you want if you know you are
|
|
|
|
// reinserting it.
|
2018-03-20 08:05:47 +03:00
|
|
|
template <typename PT, typename CT>
|
|
|
|
nsresult SelAdjCreateNode(const EditorDOMPointBase<PT, CT>& aPoint);
|
|
|
|
template <typename PT, typename CT>
|
|
|
|
nsresult SelAdjInsertNode(const EditorDOMPointBase<PT, CT>& aPoint);
|
2020-03-16 12:57:58 +03:00
|
|
|
void SelAdjDeleteNode(nsINode& aNode);
|
2021-11-08 12:49:33 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SelAdjSplitNode() is called immediately after spliting aOriginalNode
|
|
|
|
* and inserted aNewContent into the DOM tree.
|
|
|
|
*
|
|
|
|
* @param aOriginalContent The node which was split.
|
|
|
|
* @param aSplitOffset The old offset in aOriginalContent at splitting
|
|
|
|
* it.
|
|
|
|
* @param aNewContent The new content node which was inserted into
|
|
|
|
* the DOM tree.
|
|
|
|
* @param aSplitNodeDirection Whether aNewNode was inserted before or after
|
|
|
|
* aOriginalContent.
|
|
|
|
*/
|
|
|
|
nsresult SelAdjSplitNode(nsIContent& aOriginalContent, uint32_t aSplitOffset,
|
|
|
|
nsIContent& aNewContent,
|
|
|
|
SplitNodeDirection aSplitNodeDirection);
|
|
|
|
|
2021-11-08 12:49:33 +03:00
|
|
|
/**
|
|
|
|
* SelAdjJoinNodes() is called immediately after joining aRemovedContent and
|
|
|
|
* the container of aStartOfRightContent.
|
|
|
|
*
|
|
|
|
* @param aStartOfRightContent The container is joined content node which
|
|
|
|
* now has all children or text data which were
|
|
|
|
* in aRemovedContent. And this points where
|
|
|
|
* the joined position.
|
|
|
|
* @param aRemovedContent The removed content.
|
|
|
|
* @param aOffsetOfRemovedContent The offset which aRemovedContent was in
|
|
|
|
* its ex-parent.
|
|
|
|
*/
|
|
|
|
nsresult SelAdjJoinNodes(const EditorRawDOMPoint& aStartOfRightContent,
|
|
|
|
const nsIContent& aRemovedContent,
|
|
|
|
uint32_t aOffsetOfRemovedContent,
|
|
|
|
JoinNodesDirection aJoinNodesDirection);
|
2021-06-30 10:07:28 +03:00
|
|
|
void SelAdjInsertText(const dom::Text& aTextNode, uint32_t aOffset,
|
|
|
|
uint32_t aInsertedLength);
|
|
|
|
void SelAdjDeleteText(const dom::Text& aTextNode, uint32_t aOffset,
|
|
|
|
uint32_t aDeletedLength);
|
|
|
|
void SelAdjReplaceText(const dom::Text& aTextNode, uint32_t aOffset,
|
|
|
|
uint32_t aReplacedLength, uint32_t aInsertedLength);
|
2016-06-24 09:01:40 +03:00
|
|
|
// the following gravity routines need will/did sandwiches, because the other
|
|
|
|
// gravity routines will be called inside of these sandwiches, but should be
|
|
|
|
// ignored.
|
2020-03-16 12:57:58 +03:00
|
|
|
void WillReplaceContainer() {
|
|
|
|
// XXX Isn't this possible with mutation event listener?
|
|
|
|
NS_WARNING_ASSERTION(!mLocked, "Has already been locked");
|
|
|
|
mLocked = true;
|
|
|
|
}
|
|
|
|
void DidReplaceContainer(const dom::Element& aRemovedElement,
|
|
|
|
dom::Element& aInsertedElement);
|
|
|
|
void WillRemoveContainer() {
|
|
|
|
// XXX Isn't this possible with mutation event listener?
|
|
|
|
NS_WARNING_ASSERTION(!mLocked, "Has already been locked");
|
|
|
|
mLocked = true;
|
|
|
|
}
|
|
|
|
void DidRemoveContainer(const dom::Element& aRemovedElement,
|
|
|
|
nsINode& aRemovedElementContainerNode,
|
|
|
|
uint32_t aOldOffsetOfRemovedElement,
|
|
|
|
uint32_t aOldChildCountOfRemovedElement);
|
|
|
|
void WillInsertContainer() {
|
|
|
|
// XXX Isn't this possible with mutation event listener?
|
|
|
|
NS_WARNING_ASSERTION(!mLocked, "Has already been locked");
|
|
|
|
mLocked = true;
|
|
|
|
}
|
|
|
|
void DidInsertContainer() {
|
|
|
|
NS_WARNING_ASSERTION(mLocked, "Not locked");
|
|
|
|
mLocked = false;
|
|
|
|
}
|
2021-06-30 10:07:28 +03:00
|
|
|
void DidMoveNode(const nsINode& aOldParent, uint32_t aOldOffset,
|
|
|
|
const nsINode& aNewParent, uint32_t aNewOffset);
|
2015-05-28 18:58:42 +03:00
|
|
|
|
2016-06-24 09:01:40 +03:00
|
|
|
private:
|
2020-03-16 12:57:58 +03:00
|
|
|
// TODO: A lot of loop in these methods check whether each item `nullptr` or
|
|
|
|
// not. We should make it not nullable later.
|
2016-06-24 09:01:40 +03:00
|
|
|
nsTArray<RefPtr<RangeItem>> mArray;
|
2020-03-16 12:57:58 +03:00
|
|
|
bool mLocked;
|
2001-01-28 23:13:07 +03:00
|
|
|
};
|
|
|
|
|
2016-06-24 09:08:16 +03:00
|
|
|
/**
|
|
|
|
* Helper class for using SelectionState. Stack based class for doing
|
|
|
|
* preservation of dom points across editor actions.
|
2001-05-11 16:43:22 +04:00
|
|
|
*/
|
|
|
|
|
2016-06-24 09:08:16 +03:00
|
|
|
class MOZ_STACK_CLASS AutoTrackDOMPoint final {
|
|
|
|
public:
|
2020-03-16 12:57:58 +03:00
|
|
|
AutoTrackDOMPoint() = delete;
|
2016-06-24 09:08:16 +03:00
|
|
|
AutoTrackDOMPoint(RangeUpdater& aRangeUpdater, nsCOMPtr<nsINode>* aNode,
|
2021-06-30 10:07:28 +03:00
|
|
|
uint32_t* aOffset)
|
2016-06-24 09:08:16 +03:00
|
|
|
: mRangeUpdater(aRangeUpdater),
|
|
|
|
mNode(aNode),
|
|
|
|
mOffset(aOffset),
|
2020-03-16 12:57:58 +03:00
|
|
|
mRangeItem(do_AddRef(new RangeItem())) {
|
2017-07-11 16:46:11 +03:00
|
|
|
mRangeItem->mStartContainer = *mNode;
|
2017-07-11 16:57:55 +03:00
|
|
|
mRangeItem->mEndContainer = *mNode;
|
2017-07-11 16:46:11 +03:00
|
|
|
mRangeItem->mStartOffset = *mOffset;
|
2017-07-11 16:57:55 +03:00
|
|
|
mRangeItem->mEndOffset = *mOffset;
|
2016-06-24 09:08:16 +03:00
|
|
|
mRangeUpdater.RegisterRangeItem(mRangeItem);
|
|
|
|
}
|
|
|
|
|
2017-11-06 11:01:33 +03:00
|
|
|
AutoTrackDOMPoint(RangeUpdater& aRangeUpdater, EditorDOMPoint* aPoint)
|
|
|
|
: mRangeUpdater(aRangeUpdater),
|
|
|
|
mNode(nullptr),
|
|
|
|
mOffset(nullptr),
|
2021-11-12 11:04:37 +03:00
|
|
|
mPoint(Some(aPoint->IsSet() ? aPoint : nullptr)),
|
2020-03-16 12:57:58 +03:00
|
|
|
mRangeItem(do_AddRef(new RangeItem())) {
|
2021-11-12 11:04:37 +03:00
|
|
|
if (!aPoint->IsSet()) {
|
|
|
|
return; // Nothing should be tracked.
|
|
|
|
}
|
|
|
|
mRangeItem->mStartContainer = aPoint->GetContainer();
|
|
|
|
mRangeItem->mEndContainer = aPoint->GetContainer();
|
|
|
|
mRangeItem->mStartOffset = aPoint->Offset();
|
|
|
|
mRangeItem->mEndOffset = aPoint->Offset();
|
2017-11-06 11:01:33 +03:00
|
|
|
mRangeUpdater.RegisterRangeItem(mRangeItem);
|
|
|
|
}
|
|
|
|
|
2016-06-24 09:08:16 +03:00
|
|
|
~AutoTrackDOMPoint() {
|
2021-11-12 11:04:37 +03:00
|
|
|
if (mPoint.isSome()) {
|
|
|
|
if (!mPoint.ref()) {
|
|
|
|
return; // We don't track anything.
|
|
|
|
}
|
|
|
|
mRangeUpdater.DropRangeItem(mRangeItem);
|
2019-09-06 03:59:32 +03:00
|
|
|
// Setting `mPoint` with invalid DOM point causes hitting `NS_ASSERTION()`
|
|
|
|
// and the number of times may be too many. (E.g., 1533913.html hits
|
|
|
|
// over 700 times!) We should just put warning instead.
|
2021-06-30 10:07:28 +03:00
|
|
|
if (NS_WARN_IF(!mRangeItem->mStartContainer)) {
|
2021-11-12 11:04:37 +03:00
|
|
|
mPoint.ref()->Clear();
|
2019-09-06 03:59:32 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (NS_WARN_IF(mRangeItem->mStartContainer->Length() <
|
2021-06-30 10:07:28 +03:00
|
|
|
mRangeItem->mStartOffset)) {
|
2021-11-12 11:04:37 +03:00
|
|
|
mPoint.ref()->SetToEndOf(mRangeItem->mStartContainer);
|
2019-09-06 03:59:32 +03:00
|
|
|
return;
|
|
|
|
}
|
2021-11-12 11:04:37 +03:00
|
|
|
mPoint.ref()->Set(mRangeItem->mStartContainer, mRangeItem->mStartOffset);
|
2017-11-06 11:01:33 +03:00
|
|
|
return;
|
|
|
|
}
|
2021-11-12 11:04:37 +03:00
|
|
|
mRangeUpdater.DropRangeItem(mRangeItem);
|
2018-03-27 14:19:35 +03:00
|
|
|
*mNode = mRangeItem->mStartContainer;
|
2017-07-11 16:46:11 +03:00
|
|
|
*mOffset = mRangeItem->mStartOffset;
|
2016-06-24 09:08:16 +03:00
|
|
|
}
|
2020-03-16 12:57:58 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
RangeUpdater& mRangeUpdater;
|
|
|
|
// Allow tracking nsINode until nsNode is gone
|
|
|
|
nsCOMPtr<nsINode>* mNode;
|
2021-06-30 10:07:28 +03:00
|
|
|
uint32_t* mOffset;
|
2021-11-12 11:04:37 +03:00
|
|
|
Maybe<EditorDOMPoint*> mPoint;
|
2020-03-16 12:57:58 +03:00
|
|
|
OwningNonNull<RangeItem> mRangeItem;
|
2001-05-11 16:43:22 +04:00
|
|
|
};
|
|
|
|
|
2020-08-08 05:57:16 +03:00
|
|
|
class MOZ_STACK_CLASS AutoTrackDOMRange final {
|
|
|
|
public:
|
|
|
|
AutoTrackDOMRange() = delete;
|
|
|
|
AutoTrackDOMRange(RangeUpdater& aRangeUpdater, EditorDOMPoint* aStartPoint,
|
|
|
|
EditorDOMPoint* aEndPoint)
|
|
|
|
: mRangeRefPtr(nullptr), mRangeOwningNonNull(nullptr) {
|
|
|
|
mStartPointTracker.emplace(aRangeUpdater, aStartPoint);
|
|
|
|
mEndPointTracker.emplace(aRangeUpdater, aEndPoint);
|
|
|
|
}
|
|
|
|
AutoTrackDOMRange(RangeUpdater& aRangeUpdater, EditorDOMRange* aRange)
|
|
|
|
: mRangeRefPtr(nullptr), mRangeOwningNonNull(nullptr) {
|
|
|
|
mStartPointTracker.emplace(
|
|
|
|
aRangeUpdater, const_cast<EditorDOMPoint*>(&aRange->StartRef()));
|
|
|
|
mEndPointTracker.emplace(aRangeUpdater,
|
|
|
|
const_cast<EditorDOMPoint*>(&aRange->EndRef()));
|
|
|
|
}
|
|
|
|
AutoTrackDOMRange(RangeUpdater& aRangeUpdater, RefPtr<nsRange>* aRange)
|
|
|
|
: mStartPoint((*aRange)->StartRef()),
|
|
|
|
mEndPoint((*aRange)->EndRef()),
|
|
|
|
mRangeRefPtr(aRange),
|
|
|
|
mRangeOwningNonNull(nullptr) {
|
|
|
|
mStartPointTracker.emplace(aRangeUpdater, &mStartPoint);
|
|
|
|
mEndPointTracker.emplace(aRangeUpdater, &mEndPoint);
|
|
|
|
}
|
|
|
|
AutoTrackDOMRange(RangeUpdater& aRangeUpdater, OwningNonNull<nsRange>* aRange)
|
|
|
|
: mStartPoint((*aRange)->StartRef()),
|
|
|
|
mEndPoint((*aRange)->EndRef()),
|
|
|
|
mRangeRefPtr(nullptr),
|
|
|
|
mRangeOwningNonNull(aRange) {
|
|
|
|
mStartPointTracker.emplace(aRangeUpdater, &mStartPoint);
|
|
|
|
mEndPointTracker.emplace(aRangeUpdater, &mEndPoint);
|
|
|
|
}
|
|
|
|
~AutoTrackDOMRange() {
|
|
|
|
if (!mRangeRefPtr && !mRangeOwningNonNull) {
|
|
|
|
// The destructor of the trackers will update automatically.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Otherwise, destroy them now.
|
|
|
|
mStartPointTracker.reset();
|
|
|
|
mEndPointTracker.reset();
|
|
|
|
if (mRangeRefPtr) {
|
|
|
|
(*mRangeRefPtr)
|
|
|
|
->SetStartAndEnd(mStartPoint.ToRawRangeBoundary(),
|
|
|
|
mEndPoint.ToRawRangeBoundary());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (mRangeOwningNonNull) {
|
|
|
|
(*mRangeOwningNonNull)
|
|
|
|
->SetStartAndEnd(mStartPoint.ToRawRangeBoundary(),
|
|
|
|
mEndPoint.ToRawRangeBoundary());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Maybe<AutoTrackDOMPoint> mStartPointTracker;
|
|
|
|
Maybe<AutoTrackDOMPoint> mEndPointTracker;
|
|
|
|
EditorDOMPoint mStartPoint;
|
|
|
|
EditorDOMPoint mEndPoint;
|
|
|
|
RefPtr<nsRange>* mRangeRefPtr;
|
|
|
|
OwningNonNull<nsRange>* mRangeOwningNonNull;
|
|
|
|
};
|
|
|
|
|
2016-06-24 09:14:16 +03:00
|
|
|
/**
|
|
|
|
* Another helper class for SelectionState. Stack based class for doing
|
2001-01-28 23:13:07 +03:00
|
|
|
* Will/DidReplaceContainer()
|
|
|
|
*/
|
|
|
|
|
2016-06-24 09:14:16 +03:00
|
|
|
class MOZ_STACK_CLASS AutoReplaceContainerSelNotify final {
|
|
|
|
public:
|
2020-03-16 12:57:58 +03:00
|
|
|
AutoReplaceContainerSelNotify() = delete;
|
|
|
|
// FYI: Marked as `MOZ_CAN_RUN_SCRIPT` for avoiding to use strong pointers
|
|
|
|
// for the members.
|
2020-08-08 05:57:16 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
|
|
|
AutoReplaceContainerSelNotify(RangeUpdater& aRangeUpdater,
|
|
|
|
dom::Element& aOriginalElement,
|
|
|
|
dom::Element& aNewElement)
|
2016-06-24 09:14:16 +03:00
|
|
|
: mRangeUpdater(aRangeUpdater),
|
|
|
|
mOriginalElement(aOriginalElement),
|
|
|
|
mNewElement(aNewElement) {
|
|
|
|
mRangeUpdater.WillReplaceContainer();
|
|
|
|
}
|
2014-08-20 16:25:16 +04:00
|
|
|
|
2016-06-24 09:14:16 +03:00
|
|
|
~AutoReplaceContainerSelNotify() {
|
|
|
|
mRangeUpdater.DidReplaceContainer(mOriginalElement, mNewElement);
|
|
|
|
}
|
2020-03-16 12:57:58 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
RangeUpdater& mRangeUpdater;
|
|
|
|
dom::Element& mOriginalElement;
|
|
|
|
dom::Element& mNewElement;
|
2001-01-28 23:13:07 +03:00
|
|
|
};
|
2015-07-13 18:25:42 +03:00
|
|
|
|
2016-07-07 12:27:18 +03:00
|
|
|
/**
|
|
|
|
* Another helper class for SelectionState. Stack based class for doing
|
2001-01-28 23:13:07 +03:00
|
|
|
* Will/DidRemoveContainer()
|
|
|
|
*/
|
|
|
|
|
2016-07-07 12:27:18 +03:00
|
|
|
class MOZ_STACK_CLASS AutoRemoveContainerSelNotify final {
|
|
|
|
public:
|
2020-03-16 12:57:58 +03:00
|
|
|
AutoRemoveContainerSelNotify() = delete;
|
|
|
|
AutoRemoveContainerSelNotify(RangeUpdater& aRangeUpdater,
|
|
|
|
const EditorDOMPoint& aAtRemovingElement)
|
2016-07-07 12:27:18 +03:00
|
|
|
: mRangeUpdater(aRangeUpdater),
|
2020-03-16 12:57:58 +03:00
|
|
|
mRemovingElement(*aAtRemovingElement.GetChild()->AsElement()),
|
|
|
|
mParentNode(*aAtRemovingElement.GetContainer()),
|
|
|
|
mOffsetInParent(aAtRemovingElement.Offset()),
|
|
|
|
mChildCountOfRemovingElement(mRemovingElement->GetChildCount()) {
|
|
|
|
MOZ_ASSERT(aAtRemovingElement.IsSet());
|
2016-07-07 12:27:18 +03:00
|
|
|
mRangeUpdater.WillRemoveContainer();
|
|
|
|
}
|
2015-05-28 18:58:42 +03:00
|
|
|
|
2016-07-07 12:27:18 +03:00
|
|
|
~AutoRemoveContainerSelNotify() {
|
2020-03-16 12:57:58 +03:00
|
|
|
mRangeUpdater.DidRemoveContainer(mRemovingElement, mParentNode,
|
|
|
|
mOffsetInParent,
|
|
|
|
mChildCountOfRemovingElement);
|
2016-07-07 12:27:18 +03:00
|
|
|
}
|
2020-03-16 12:57:58 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
RangeUpdater& mRangeUpdater;
|
|
|
|
OwningNonNull<dom::Element> mRemovingElement;
|
|
|
|
OwningNonNull<nsINode> mParentNode;
|
|
|
|
uint32_t mOffsetInParent;
|
|
|
|
uint32_t mChildCountOfRemovingElement;
|
2001-01-28 23:13:07 +03:00
|
|
|
};
|
|
|
|
|
2016-06-24 09:21:35 +03:00
|
|
|
/**
|
|
|
|
* Another helper class for SelectionState. Stack based class for doing
|
2001-01-28 23:13:07 +03:00
|
|
|
* Will/DidInsertContainer()
|
2020-03-16 12:57:58 +03:00
|
|
|
* XXX The lock state isn't useful if the edit action is triggered from
|
|
|
|
* a mutation event listener so that looks like that we can remove
|
|
|
|
* this class.
|
2001-01-28 23:13:07 +03:00
|
|
|
*/
|
|
|
|
|
2016-06-24 09:21:35 +03:00
|
|
|
class MOZ_STACK_CLASS AutoInsertContainerSelNotify final {
|
|
|
|
private:
|
|
|
|
RangeUpdater& mRangeUpdater;
|
2015-05-28 18:58:42 +03:00
|
|
|
|
2016-06-24 09:21:35 +03:00
|
|
|
public:
|
2020-03-16 12:57:58 +03:00
|
|
|
AutoInsertContainerSelNotify() = delete;
|
2016-06-24 09:21:35 +03:00
|
|
|
explicit AutoInsertContainerSelNotify(RangeUpdater& aRangeUpdater)
|
|
|
|
: mRangeUpdater(aRangeUpdater) {
|
|
|
|
mRangeUpdater.WillInsertContainer();
|
|
|
|
}
|
|
|
|
|
|
|
|
~AutoInsertContainerSelNotify() { mRangeUpdater.DidInsertContainer(); }
|
2001-01-28 23:13:07 +03:00
|
|
|
};
|
|
|
|
|
2016-06-24 09:24:44 +03:00
|
|
|
/**
|
|
|
|
* Another helper class for SelectionState. Stack based class for doing
|
Bug 1766355 - part 1: Add `MoveNodeTransaction` to handle delete node and insert node in a transaction class instance r=m_kato
Creating both `DeleteNodeTransaction` and `InsertNodeTransaction` wastes
memory. They should be done in an instance instead.
Fortunately, no edit action listener checks whether the deleted node is still
in the composed document or not, etc. Therefore, we can simply notify them of
both deletion and insertion which were done in
`EditorBase::InsertNodeWithTransaction` and
`EditorBase::DeleteNodeWithTransaction`. Note that previously, the range
updater needs to ignore the notifications from them while the node is being
moved. However, it does not require anymore. Therefore, this patch makes it
stop locking, and that would fix minor problem in the case of legacy mutation
event listeners run another edit action.
On the other hand, this changes some edge cases handling of
`MoveNodeWithTransaction` which are detected by the WPT. According to the
previous result of applying this patch, `nsINode::InsertBefore` fails and that
leads some errors at updating the changed range. I guess that the cause is
that there is some bugs at updating insertion point after deleting the node from
the DOM tree around here:
https://searchfox.org/mozilla-central/rev/0ffae75b690219858e5a45a39f8759a8aee7b9a2/editor/libeditor/HTMLEditor.cpp#5058-5071
However, it's safely fixed by the new code which does not remove the node from
the DOM tree explicitly. So, I think that it's safe to accept this behavior
change for web apps in the wild.
Differential Revision: https://phabricator.services.mozilla.com/D146397
2022-05-20 11:28:08 +03:00
|
|
|
* DidMoveNode()
|
2001-01-28 23:13:07 +03:00
|
|
|
*/
|
|
|
|
|
2016-06-24 09:24:44 +03:00
|
|
|
class MOZ_STACK_CLASS AutoMoveNodeSelNotify final {
|
|
|
|
public:
|
2020-03-16 12:57:58 +03:00
|
|
|
AutoMoveNodeSelNotify() = delete;
|
2016-06-24 09:24:44 +03:00
|
|
|
AutoMoveNodeSelNotify(RangeUpdater& aRangeUpdater,
|
Bug 1766355 - part 1: Add `MoveNodeTransaction` to handle delete node and insert node in a transaction class instance r=m_kato
Creating both `DeleteNodeTransaction` and `InsertNodeTransaction` wastes
memory. They should be done in an instance instead.
Fortunately, no edit action listener checks whether the deleted node is still
in the composed document or not, etc. Therefore, we can simply notify them of
both deletion and insertion which were done in
`EditorBase::InsertNodeWithTransaction` and
`EditorBase::DeleteNodeWithTransaction`. Note that previously, the range
updater needs to ignore the notifications from them while the node is being
moved. However, it does not require anymore. Therefore, this patch makes it
stop locking, and that would fix minor problem in the case of legacy mutation
event listeners run another edit action.
On the other hand, this changes some edge cases handling of
`MoveNodeWithTransaction` which are detected by the WPT. According to the
previous result of applying this patch, `nsINode::InsertBefore` fails and that
leads some errors at updating the changed range. I guess that the cause is
that there is some bugs at updating insertion point after deleting the node from
the DOM tree around here:
https://searchfox.org/mozilla-central/rev/0ffae75b690219858e5a45a39f8759a8aee7b9a2/editor/libeditor/HTMLEditor.cpp#5058-5071
However, it's safely fixed by the new code which does not remove the node from
the DOM tree explicitly. So, I think that it's safe to accept this behavior
change for web apps in the wild.
Differential Revision: https://phabricator.services.mozilla.com/D146397
2022-05-20 11:28:08 +03:00
|
|
|
const EditorRawDOMPoint& aOldPoint,
|
|
|
|
const EditorRawDOMPoint& aNewPoint)
|
2016-06-24 09:24:44 +03:00
|
|
|
: mRangeUpdater(aRangeUpdater),
|
2020-03-16 12:57:58 +03:00
|
|
|
mOldParent(*aOldPoint.GetContainer()),
|
|
|
|
mNewParent(*aNewPoint.GetContainer()),
|
2018-04-12 17:58:52 +03:00
|
|
|
mOldOffset(aOldPoint.Offset()),
|
|
|
|
mNewOffset(aNewPoint.Offset()) {
|
2020-03-16 12:57:58 +03:00
|
|
|
MOZ_ASSERT(aOldPoint.IsSet());
|
|
|
|
MOZ_ASSERT(aNewPoint.IsSet());
|
2016-06-24 09:24:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
~AutoMoveNodeSelNotify() {
|
|
|
|
mRangeUpdater.DidMoveNode(mOldParent, mOldOffset, mNewParent, mNewOffset);
|
|
|
|
}
|
2018-04-12 17:58:52 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
RangeUpdater& mRangeUpdater;
|
2020-03-16 12:57:58 +03:00
|
|
|
nsINode& mOldParent;
|
|
|
|
nsINode& mNewParent;
|
Bug 1766355 - part 1: Add `MoveNodeTransaction` to handle delete node and insert node in a transaction class instance r=m_kato
Creating both `DeleteNodeTransaction` and `InsertNodeTransaction` wastes
memory. They should be done in an instance instead.
Fortunately, no edit action listener checks whether the deleted node is still
in the composed document or not, etc. Therefore, we can simply notify them of
both deletion and insertion which were done in
`EditorBase::InsertNodeWithTransaction` and
`EditorBase::DeleteNodeWithTransaction`. Note that previously, the range
updater needs to ignore the notifications from them while the node is being
moved. However, it does not require anymore. Therefore, this patch makes it
stop locking, and that would fix minor problem in the case of legacy mutation
event listeners run another edit action.
On the other hand, this changes some edge cases handling of
`MoveNodeWithTransaction` which are detected by the WPT. According to the
previous result of applying this patch, `nsINode::InsertBefore` fails and that
leads some errors at updating the changed range. I guess that the cause is
that there is some bugs at updating insertion point after deleting the node from
the DOM tree around here:
https://searchfox.org/mozilla-central/rev/0ffae75b690219858e5a45a39f8759a8aee7b9a2/editor/libeditor/HTMLEditor.cpp#5058-5071
However, it's safely fixed by the new code which does not remove the node from
the DOM tree explicitly. So, I think that it's safe to accept this behavior
change for web apps in the wild.
Differential Revision: https://phabricator.services.mozilla.com/D146397
2022-05-20 11:28:08 +03:00
|
|
|
const uint32_t mOldOffset;
|
|
|
|
const uint32_t mNewOffset;
|
2001-01-28 23:13:07 +03:00
|
|
|
};
|
|
|
|
|
2016-06-24 09:24:44 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2016-07-09 05:34:41 +03:00
|
|
|
#endif // #ifndef mozilla_SelectionState_h
|