forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
WSRunObject.h
1568 lines (1438 loc) · 64.5 KB
/
WSRunObject.h
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
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 WSRunObject_h
#define WSRunObject_h
#include "HTMLEditUtils.h"
#include "mozilla/Assertions.h"
#include "mozilla/EditAction.h"
#include "mozilla/EditorBase.h"
#include "mozilla/EditorDOMPoint.h" // for EditorDOMPoint
#include "mozilla/HTMLEditor.h"
#include "mozilla/Maybe.h"
#include "mozilla/Result.h"
#include "mozilla/dom/Element.h"
#include "mozilla/dom/HTMLBRElement.h"
#include "mozilla/dom/Text.h"
#include "nsCOMPtr.h"
#include "nsIContent.h"
namespace mozilla {
namespace dom {
class Element;
}
class WSRunScanner;
/**
* WSScanResult is result of ScanNextVisibleNodeOrBlockBoundaryFrom(),
* ScanPreviousVisibleNodeOrBlockBoundaryFrom(), and their static wrapper
* methods. This will have information of found visible content (and its
* position) or reached block element or topmost editable content at the
* start of scanner.
*/
class MOZ_STACK_CLASS WSScanResult final {
private:
enum class WSType : uint8_t {
NotInitialized,
// Could be the DOM tree is broken as like crash tests.
UnexpectedError,
// The run is maybe collapsible white-spaces at start of a hard line.
LeadingWhiteSpaces,
// The run is maybe collapsible white-spaces at end of a hard line.
TrailingWhiteSpaces,
// Normal (perhaps, meaning visible) white-spaces.
NormalWhiteSpaces,
// Normal text, not white-spaces.
NormalText,
// Special content such as `<img>`, etc.
SpecialContent,
// <br> element.
BRElement,
// Other block's boundary (child block of current block, maybe).
OtherBlockBoundary,
// Current block's boundary.
CurrentBlockBoundary,
};
friend class WSRunScanner; // Because of WSType.
public:
WSScanResult() = delete;
MOZ_NEVER_INLINE_DEBUG WSScanResult(nsIContent* aContent, WSType aReason)
: mContent(aContent), mReason(aReason) {
AssertIfInvalidData();
}
MOZ_NEVER_INLINE_DEBUG WSScanResult(const EditorDOMPoint& aPoint,
WSType aReason)
: mContent(aPoint.GetContainerAsContent()),
mOffset(Some(aPoint.Offset())),
mReason(aReason) {
AssertIfInvalidData();
}
MOZ_NEVER_INLINE_DEBUG void AssertIfInvalidData() const {
#ifdef DEBUG
MOZ_ASSERT(
mReason == WSType::UnexpectedError || mReason == WSType::NormalText ||
mReason == WSType::NormalWhiteSpaces || mReason == WSType::BRElement ||
mReason == WSType::SpecialContent ||
mReason == WSType::CurrentBlockBoundary ||
mReason == WSType::OtherBlockBoundary);
MOZ_ASSERT_IF(mReason == WSType::UnexpectedError, !mContent);
MOZ_ASSERT_IF(
mReason == WSType::NormalText || mReason == WSType::NormalWhiteSpaces,
mContent && mContent->IsText());
MOZ_ASSERT_IF(mReason == WSType::BRElement,
mContent && mContent->IsHTMLElement(nsGkAtoms::br));
MOZ_ASSERT_IF(
mReason == WSType::SpecialContent,
mContent && ((mContent->IsText() && !mContent->IsEditable()) ||
(!mContent->IsHTMLElement(nsGkAtoms::br) &&
!HTMLEditUtils::IsBlockElement(*mContent))));
MOZ_ASSERT_IF(mReason == WSType::OtherBlockBoundary,
mContent && HTMLEditUtils::IsBlockElement(*mContent));
// If mReason is WSType::CurrentBlockBoundary, mContent can be any content.
// In most cases, it's current block element which is editable. However, if
// there is no editable block parent, this is topmost editable inline
// content. Additionally, if there is no editable content, this is the
// container start of scanner and is not editable.
MOZ_ASSERT_IF(
mReason == WSType::CurrentBlockBoundary,
!mContent || !mContent->GetParentElement() ||
HTMLEditUtils::IsBlockElement(*mContent) ||
HTMLEditUtils::IsBlockElement(*mContent->GetParentElement()) ||
!mContent->GetParentElement()->IsEditable());
#endif // #ifdef DEBUG
}
bool Failed() const {
return mReason == WSType::NotInitialized ||
mReason == WSType::UnexpectedError;
}
/**
* GetContent() returns found visible and editable content/element.
* See MOZ_ASSERT_IF()s in AssertIfInvalidData() for the detail.
*/
nsIContent* GetContent() const { return mContent; }
/**
* The following accessors makes it easier to understand each callers.
*/
MOZ_NEVER_INLINE_DEBUG dom::Element* ElementPtr() const {
MOZ_DIAGNOSTIC_ASSERT(mContent->IsElement());
return mContent->AsElement();
}
MOZ_NEVER_INLINE_DEBUG dom::HTMLBRElement* BRElementPtr() const {
MOZ_DIAGNOSTIC_ASSERT(mContent->IsHTMLElement(nsGkAtoms::br));
return static_cast<dom::HTMLBRElement*>(mContent.get());
}
MOZ_NEVER_INLINE_DEBUG dom::Text* TextPtr() const {
MOZ_DIAGNOSTIC_ASSERT(mContent->IsText());
return mContent->AsText();
}
/**
* Returns true if found or reached content is ediable.
*/
bool IsContentEditable() const { return mContent && mContent->IsEditable(); }
/**
* Offset() returns meaningful value only when InNormalWhiteSpacesOrText()
* returns true or the scanner reached to start or end of its scanning
* range and that is same as start or end container which are specified
* when the scanner is initialized. If it's result of scanning backward,
* this offset means before the found point. Otherwise, i.e., scanning
* forward, this offset means after the found point.
*/
MOZ_NEVER_INLINE_DEBUG uint32_t Offset() const {
NS_ASSERTION(mOffset.isSome(), "Retrieved non-meaningful offset");
return mOffset.valueOr(0);
}
/**
* Point() and RawPoint() return the position in found visible node or
* reached block boundary. So, they return meaningful point only when
* Offset() returns meaningful value.
*/
MOZ_NEVER_INLINE_DEBUG EditorDOMPoint Point() const {
NS_ASSERTION(mOffset.isSome(), "Retrieved non-meaningful point");
return EditorDOMPoint(mContent, mOffset.valueOr(0));
}
MOZ_NEVER_INLINE_DEBUG EditorRawDOMPoint RawPoint() const {
NS_ASSERTION(mOffset.isSome(), "Retrieved non-meaningful raw point");
return EditorRawDOMPoint(mContent, mOffset.valueOr(0));
}
/**
* PointAtContent() and RawPointAtContent() return the position of found
* visible content or reached block element.
*/
MOZ_NEVER_INLINE_DEBUG EditorDOMPoint PointAtContent() const {
MOZ_ASSERT(mContent);
return EditorDOMPoint(mContent);
}
MOZ_NEVER_INLINE_DEBUG EditorRawDOMPoint RawPointAtContent() const {
MOZ_ASSERT(mContent);
return EditorRawDOMPoint(mContent);
}
/**
* PointAfterContent() and RawPointAfterContent() retrun the position after
* found visible content or reached block element.
*/
MOZ_NEVER_INLINE_DEBUG EditorDOMPoint PointAfterContent() const {
MOZ_ASSERT(mContent);
return mContent ? EditorDOMPoint::After(mContent) : EditorDOMPoint();
}
MOZ_NEVER_INLINE_DEBUG EditorRawDOMPoint RawPointAfterContent() const {
MOZ_ASSERT(mContent);
return mContent ? EditorRawDOMPoint::After(mContent) : EditorRawDOMPoint();
}
/**
* The scanner reached <img> or something which is inline and is not a
* container.
*/
bool ReachedSpecialContent() const {
return mReason == WSType::SpecialContent;
}
/**
* The point is in normal white-spaces or text.
*/
bool InNormalWhiteSpacesOrText() const {
return mReason == WSType::NormalWhiteSpaces ||
mReason == WSType::NormalText;
}
/**
* The point is in normal white-spaces.
*/
bool InNormalWhiteSpaces() const {
return mReason == WSType::NormalWhiteSpaces;
}
/**
* The point is in normal text.
*/
bool InNormalText() const { return mReason == WSType::NormalText; }
/**
* The scanner reached a <br> element.
*/
bool ReachedBRElement() const { return mReason == WSType::BRElement; }
bool ReachedVisibleBRElement() const {
return ReachedBRElement() &&
HTMLEditUtils::IsVisibleBRElement(*BRElementPtr());
}
bool ReachedInvisibleBRElement() const {
return ReachedBRElement() &&
HTMLEditUtils::IsInvisibleBRElement(*BRElementPtr());
}
/**
* The scanner reached a <hr> element.
*/
bool ReachedHRElement() const {
return mContent && mContent->IsHTMLElement(nsGkAtoms::hr);
}
/**
* The scanner reached current block boundary or other block element.
*/
bool ReachedBlockBoundary() const {
return mReason == WSType::CurrentBlockBoundary ||
mReason == WSType::OtherBlockBoundary;
}
/**
* The scanner reached current block element boundary.
*/
bool ReachedCurrentBlockBoundary() const {
return mReason == WSType::CurrentBlockBoundary;
}
/**
* The scanner reached other block element.
*/
bool ReachedOtherBlockElement() const {
return mReason == WSType::OtherBlockBoundary;
}
/**
* The scanner reached other block element that isn't editable
*/
bool ReachedNonEditableOtherBlockElement() const {
return ReachedOtherBlockElement() && !GetContent()->IsEditable();
}
/**
* The scanner reached something non-text node.
*/
bool ReachedSomething() const { return !InNormalWhiteSpacesOrText(); }
private:
nsCOMPtr<nsIContent> mContent;
Maybe<uint32_t> mOffset;
WSType mReason;
};
class WhiteSpaceVisibilityKeeper;
class MOZ_STACK_CLASS WSRunScanner final {
public:
using WSType = WSScanResult::WSType;
template <typename EditorDOMPointType>
WSRunScanner(const dom::Element* aEditingHost,
const EditorDOMPointType& aScanStartPoint)
: mScanStartPoint(aScanStartPoint),
mEditingHost(const_cast<dom::Element*>(aEditingHost)),
mTextFragmentDataAtStart(mScanStartPoint, mEditingHost) {}
// ScanNextVisibleNodeOrBlockBoundaryForwardFrom() returns the first visible
// node after aPoint. If there is no visible nodes after aPoint, returns
// topmost editable inline ancestor at end of current block. See comments
// around WSScanResult for the detail.
template <typename PT, typename CT>
WSScanResult ScanNextVisibleNodeOrBlockBoundaryFrom(
const EditorDOMPointBase<PT, CT>& aPoint) const;
template <typename PT, typename CT>
static WSScanResult ScanNextVisibleNodeOrBlockBoundary(
const dom::Element* aEditingHost,
const EditorDOMPointBase<PT, CT>& aPoint) {
return WSRunScanner(aEditingHost, aPoint)
.ScanNextVisibleNodeOrBlockBoundaryFrom(aPoint);
}
// ScanPreviousVisibleNodeOrBlockBoundaryFrom() returns the first visible node
// before aPoint. If there is no visible nodes before aPoint, returns topmost
// editable inline ancestor at start of current block. See comments around
// WSScanResult for the detail.
template <typename PT, typename CT>
WSScanResult ScanPreviousVisibleNodeOrBlockBoundaryFrom(
const EditorDOMPointBase<PT, CT>& aPoint) const;
template <typename PT, typename CT>
static WSScanResult ScanPreviousVisibleNodeOrBlockBoundary(
const dom::Element* aEditingHost,
const EditorDOMPointBase<PT, CT>& aPoint) {
return WSRunScanner(aEditingHost, aPoint)
.ScanPreviousVisibleNodeOrBlockBoundaryFrom(aPoint);
}
/**
* GetInclusiveNextEditableCharPoint() returns a point in a text node which
* is at current editable character or next editable character if aPoint
* does not points an editable character.
*/
template <typename PT, typename CT>
static EditorDOMPointInText GetInclusiveNextEditableCharPoint(
dom::Element* aEditingHost, const EditorDOMPointBase<PT, CT>& aPoint) {
if (aPoint.IsInTextNode() && !aPoint.IsEndOfContainer() &&
HTMLEditUtils::IsSimplyEditableNode(*aPoint.ContainerAsText())) {
return EditorDOMPointInText(aPoint.ContainerAsText(), aPoint.Offset());
}
return WSRunScanner(aEditingHost, aPoint)
.GetInclusiveNextEditableCharPoint(aPoint);
}
/**
* GetPreviousEditableCharPoint() returns a point in a text node which
* is at previous editable character.
*/
template <typename PT, typename CT>
static EditorDOMPointInText GetPreviousEditableCharPoint(
dom::Element* aEditingHost, const EditorDOMPointBase<PT, CT>& aPoint) {
if (aPoint.IsInTextNode() && !aPoint.IsStartOfContainer() &&
HTMLEditUtils::IsSimplyEditableNode(*aPoint.ContainerAsText())) {
return EditorDOMPointInText(aPoint.ContainerAsText(),
aPoint.Offset() - 1);
}
return WSRunScanner(aEditingHost, aPoint)
.GetPreviousEditableCharPoint(aPoint);
}
/**
* Scan aTextNode from end or start to find last or first visible things.
* I.e., this returns a point immediately before or after invisible
* white-spaces of aTextNode if aTextNode ends or begins with some invisible
* white-spaces.
* Note that the result may not be in different text node if aTextNode has
* only invisible white-spaces and there is previous or next text node.
*/
template <typename EditorDOMPointType>
static EditorDOMPointType GetAfterLastVisiblePoint(
dom::Text& aTextNode, const dom::Element* aAncestorLimiter);
template <typename EditorDOMPointType>
static EditorDOMPointType GetFirstVisiblePoint(
dom::Text& aTextNode, const dom::Element* aAncestorLimiter);
/**
* GetRangeInTextNodesToForwardDeleteFrom() returns the range to remove
* text when caret is at aPoint.
*/
static Result<EditorDOMRangeInTexts, nsresult>
GetRangeInTextNodesToForwardDeleteFrom(dom::Element* aEditingHost,
const EditorDOMPoint& aPoint);
/**
* GetRangeInTextNodesToBackspaceFrom() returns the range to remove text
* when caret is at aPoint.
*/
static Result<EditorDOMRangeInTexts, nsresult>
GetRangeInTextNodesToBackspaceFrom(dom::Element* aEditingHost,
const EditorDOMPoint& aPoint);
/**
* GetRangesForDeletingAtomicContent() returns the range to delete
* aAtomicContent. If it's followed by invisible white-spaces, they will
* be included into the range.
*/
static EditorDOMRange GetRangesForDeletingAtomicContent(
dom::Element* aEditingHost, const nsIContent& aAtomicContent);
/**
* GetRangeForDeleteBlockElementBoundaries() returns a range starting from end
* of aLeftBlockElement to start of aRightBlockElement and extend invisible
* white-spaces around them.
*
* @param aHTMLEditor The HTML editor.
* @param aLeftBlockElement The block element which will be joined with
* aRightBlockElement.
* @param aRightBlockElement The block element which will be joined with
* aLeftBlockElement. This must be an element
* after aLeftBlockElement.
* @param aPointContainingTheOtherBlock
* When aRightBlockElement is an ancestor of
* aLeftBlockElement, this must be set and the
* container must be aRightBlockElement.
* When aLeftBlockElement is an ancestor of
* aRightBlockElement, this must be set and the
* container must be aLeftBlockElement.
* Otherwise, must not be set.
*/
static EditorDOMRange GetRangeForDeletingBlockElementBoundaries(
const HTMLEditor& aHTMLEditor, const dom::Element& aLeftBlockElement,
const dom::Element& aRightBlockElement,
const EditorDOMPoint& aPointContainingTheOtherBlock);
/**
* ShrinkRangeIfStartsFromOrEndsAfterAtomicContent() may shrink aRange if it
* starts and/or ends with an atomic content, but the range boundary
* is in adjacent text nodes. Returns true if this modifies the range.
*/
static Result<bool, nsresult> ShrinkRangeIfStartsFromOrEndsAfterAtomicContent(
const HTMLEditor& aHTMLEditor, nsRange& aRange,
const dom::Element* aEditingHost);
/**
* GetRangeContainingInvisibleWhiteSpacesAtRangeBoundaries() returns
* extended range if range boundaries of aRange are in invisible white-spaces.
*/
static EditorDOMRange GetRangeContainingInvisibleWhiteSpacesAtRangeBoundaries(
dom::Element* aEditingHost, const EditorDOMRange& aRange);
/**
* GetPrecedingBRElementUnlessVisibleContentFound() scans a `<br>` element
* backward, but stops scanning it if the scanner finds visible character
* or something. In other words, this method ignores only invisible
* white-spaces between `<br>` element and aPoint.
*/
template <typename EditorDOMPointType>
MOZ_NEVER_INLINE_DEBUG static dom::HTMLBRElement*
GetPrecedingBRElementUnlessVisibleContentFound(
dom::Element* aEditingHost, const EditorDOMPointType& aPoint) {
MOZ_ASSERT(aPoint.IsSetAndValid());
// XXX This method behaves differently even in similar point.
// If aPoint is in a text node following `<br>` element, reaches the
// `<br>` element when all characters between the `<br>` and
// aPoint are ASCII whitespaces.
// But if aPoint is not in a text node, e.g., at start of an inline
// element which is immediately after a `<br>` element, returns the
// `<br>` element even if there is no invisible white-spaces.
if (aPoint.IsStartOfContainer()) {
return nullptr;
}
// TODO: Scan for end boundary is redundant in this case, we should optimize
// it.
TextFragmentData textFragmentData(aPoint, aEditingHost);
return textFragmentData.StartsFromBRElement()
? textFragmentData.StartReasonBRElementPtr()
: nullptr;
}
const EditorDOMPoint& ScanStartRef() const { return mScanStartPoint; }
/**
* GetStartReasonContent() and GetEndReasonContent() return a node which
* was found by scanning from mScanStartPoint backward or forward. If there
* was white-spaces or text from the point, returns the text node. Otherwise,
* returns an element which is explained by the following methods. Note that
* when the reason is WSType::CurrentBlockBoundary, In most cases, it's
* current block element which is editable, but also may be non-element and/or
* non-editable. See MOZ_ASSERT_IF()s in WSScanResult::AssertIfInvalidData()
* for the detail.
*/
nsIContent* GetStartReasonContent() const {
return TextFragmentDataAtStartRef().GetStartReasonContent();
}
nsIContent* GetEndReasonContent() const {
return TextFragmentDataAtStartRef().GetEndReasonContent();
}
bool StartsFromNormalText() const {
return TextFragmentDataAtStartRef().StartsFromNormalText();
}
bool StartsFromSpecialContent() const {
return TextFragmentDataAtStartRef().StartsFromSpecialContent();
}
bool StartsFromBRElement() const {
return TextFragmentDataAtStartRef().StartsFromBRElement();
}
bool StartsFromVisibleBRElement() const {
return TextFragmentDataAtStartRef().StartsFromVisibleBRElement();
}
bool StartsFromInvisibleBRElement() const {
return TextFragmentDataAtStartRef().StartsFromInvisibleBRElement();
}
bool StartsFromCurrentBlockBoundary() const {
return TextFragmentDataAtStartRef().StartsFromCurrentBlockBoundary();
}
bool StartsFromOtherBlockElement() const {
return TextFragmentDataAtStartRef().StartsFromOtherBlockElement();
}
bool StartsFromBlockBoundary() const {
return TextFragmentDataAtStartRef().StartsFromBlockBoundary();
}
bool StartsFromHardLineBreak() const {
return TextFragmentDataAtStartRef().StartsFromHardLineBreak();
}
bool EndsByNormalText() const {
return TextFragmentDataAtStartRef().EndsByNormalText();
}
bool EndsBySpecialContent() const {
return TextFragmentDataAtStartRef().EndsBySpecialContent();
}
bool EndsByBRElement() const {
return TextFragmentDataAtStartRef().EndsByBRElement();
}
bool EndsByVisibleBRElement() const {
return TextFragmentDataAtStartRef().EndsByVisibleBRElement();
}
bool EndsByInvisibleBRElement() const {
return TextFragmentDataAtStartRef().EndsByInvisibleBRElement();
}
bool EndsByCurrentBlockBoundary() const {
return TextFragmentDataAtStartRef().EndsByCurrentBlockBoundary();
}
bool EndsByOtherBlockElement() const {
return TextFragmentDataAtStartRef().EndsByOtherBlockElement();
}
bool EndsByBlockBoundary() const {
return TextFragmentDataAtStartRef().EndsByBlockBoundary();
}
MOZ_NEVER_INLINE_DEBUG dom::Element* StartReasonOtherBlockElementPtr() const {
return TextFragmentDataAtStartRef().StartReasonOtherBlockElementPtr();
}
MOZ_NEVER_INLINE_DEBUG dom::HTMLBRElement* StartReasonBRElementPtr() const {
return TextFragmentDataAtStartRef().StartReasonBRElementPtr();
}
MOZ_NEVER_INLINE_DEBUG dom::Element* EndReasonOtherBlockElementPtr() const {
return TextFragmentDataAtStartRef().EndReasonOtherBlockElementPtr();
}
MOZ_NEVER_INLINE_DEBUG dom::HTMLBRElement* EndReasonBRElementPtr() const {
return TextFragmentDataAtStartRef().EndReasonBRElementPtr();
}
/**
* Active editing host when this instance is created.
*/
dom::Element* GetEditingHost() const { return mEditingHost; }
protected:
using EditorType = EditorBase::EditorType;
class TextFragmentData;
// VisibleWhiteSpacesData represents 0 or more visible white-spaces.
class MOZ_STACK_CLASS VisibleWhiteSpacesData final {
public:
bool IsInitialized() const {
return mLeftWSType != WSType::NotInitialized ||
mRightWSType != WSType::NotInitialized;
}
EditorDOMPoint StartRef() const { return mStartPoint; }
EditorDOMPoint EndRef() const { return mEndPoint; }
/**
* Information why the white-spaces start from (i.e., this indicates the
* previous content type of the fragment).
*/
bool StartsFromNormalText() const {
return mLeftWSType == WSType::NormalText;
}
bool StartsFromSpecialContent() const {
return mLeftWSType == WSType::SpecialContent;
}
/**
* Information why the white-spaces end by (i.e., this indicates the
* next content type of the fragment).
*/
bool EndsByNormalText() const { return mRightWSType == WSType::NormalText; }
bool EndsByTrailingWhiteSpaces() const {
return mRightWSType == WSType::TrailingWhiteSpaces;
}
bool EndsBySpecialContent() const {
return mRightWSType == WSType::SpecialContent;
}
bool EndsByBRElement() const { return mRightWSType == WSType::BRElement; }
bool EndsByBlockBoundary() const {
return mRightWSType == WSType::CurrentBlockBoundary ||
mRightWSType == WSType::OtherBlockBoundary;
}
/**
* ComparePoint() compares aPoint with the white-spaces.
*/
enum class PointPosition {
BeforeStartOfFragment,
StartOfFragment,
MiddleOfFragment,
EndOfFragment,
AfterEndOfFragment,
NotInSameDOMTree,
};
template <typename EditorDOMPointType>
PointPosition ComparePoint(const EditorDOMPointType& aPoint) const {
MOZ_ASSERT(aPoint.IsSetAndValid());
if (StartRef() == aPoint) {
return PointPosition::StartOfFragment;
}
if (EndRef() == aPoint) {
return PointPosition::EndOfFragment;
}
const bool startIsBeforePoint = StartRef().IsBefore(aPoint);
const bool pointIsBeforeEnd = aPoint.IsBefore(EndRef());
if (startIsBeforePoint && pointIsBeforeEnd) {
return PointPosition::MiddleOfFragment;
}
if (startIsBeforePoint) {
return PointPosition::AfterEndOfFragment;
}
if (pointIsBeforeEnd) {
return PointPosition::BeforeStartOfFragment;
}
return PointPosition::NotInSameDOMTree;
}
private:
// Initializers should be accessible only from `TextFragmentData`.
friend class WSRunScanner::TextFragmentData;
VisibleWhiteSpacesData()
: mLeftWSType(WSType::NotInitialized),
mRightWSType(WSType::NotInitialized) {}
template <typename EditorDOMPointType>
void SetStartPoint(const EditorDOMPointType& aStartPoint) {
mStartPoint = aStartPoint;
}
template <typename EditorDOMPointType>
void SetEndPoint(const EditorDOMPointType& aEndPoint) {
mEndPoint = aEndPoint;
}
void SetStartFrom(WSType aLeftWSType) { mLeftWSType = aLeftWSType; }
void SetStartFromLeadingWhiteSpaces() {
mLeftWSType = WSType::LeadingWhiteSpaces;
}
void SetStartFromNormalWhiteSpaces() {
mLeftWSType = WSType::NormalWhiteSpaces;
}
void SetEndBy(WSType aRightWSType) { mRightWSType = aRightWSType; }
void SetEndByNormalWiteSpaces() {
mRightWSType = WSType::NormalWhiteSpaces;
}
void SetEndByTrailingWhiteSpaces() {
mRightWSType = WSType::TrailingWhiteSpaces;
}
EditorDOMPoint mStartPoint;
EditorDOMPoint mEndPoint;
WSType mLeftWSType, mRightWSType;
};
using PointPosition = VisibleWhiteSpacesData::PointPosition;
/**
* GetInclusiveNextEditableCharPoint() returns aPoint if it points a character
* in an editable text node, or start of next editable text node otherwise.
* FYI: For the performance, this does not check whether given container
* is not after mStart.mReasonContent or not.
*/
template <typename PT, typename CT>
EditorDOMPointInText GetInclusiveNextEditableCharPoint(
const EditorDOMPointBase<PT, CT>& aPoint) const {
return TextFragmentDataAtStartRef().GetInclusiveNextEditableCharPoint(
aPoint);
}
/**
* GetPreviousEditableCharPoint() returns previous editable point in a
* text node. Note that this returns last character point when it meets
* non-empty text node, otherwise, returns a point in an empty text node.
* FYI: For the performance, this does not check whether given container
* is not before mEnd.mReasonContent or not.
*/
template <typename PT, typename CT>
EditorDOMPointInText GetPreviousEditableCharPoint(
const EditorDOMPointBase<PT, CT>& aPoint) const {
return TextFragmentDataAtStartRef().GetPreviousEditableCharPoint(aPoint);
}
/**
* GetEndOfCollapsibleASCIIWhiteSpaces() returns the next visible char
* (meaning a character except ASCII white-spaces) point or end of last text
* node scanning from aPointAtASCIIWhiteSpace.
* Note that this may return different text node from the container of
* aPointAtASCIIWhiteSpace.
*/
EditorDOMPointInText GetEndOfCollapsibleASCIIWhiteSpaces(
const EditorDOMPointInText& aPointAtASCIIWhiteSpace) const {
return TextFragmentDataAtStartRef().GetEndOfCollapsibleASCIIWhiteSpaces(
aPointAtASCIIWhiteSpace);
}
/**
* GetFirstASCIIWhiteSpacePointCollapsedTo() returns the first ASCII
* white-space which aPointAtASCIIWhiteSpace belongs to. In other words,
* the white-space at aPointAtASCIIWhiteSpace should be collapsed into
* the result.
* Note that this may return different text node from the container of
* aPointAtASCIIWhiteSpace.
*/
EditorDOMPointInText GetFirstASCIIWhiteSpacePointCollapsedTo(
const EditorDOMPointInText& aPointAtASCIIWhiteSpace) const {
return TextFragmentDataAtStartRef().GetFirstASCIIWhiteSpacePointCollapsedTo(
aPointAtASCIIWhiteSpace);
}
EditorDOMPointInText GetPreviousCharPointFromPointInText(
const EditorDOMPointInText& aPoint) const;
char16_t GetCharAt(dom::Text* aTextNode, int32_t aOffset) const;
/**
* TextFragmentData stores the information of white-space sequence which
* contains `aPoint` of the constructor.
*/
class MOZ_STACK_CLASS TextFragmentData final {
private:
class NoBreakingSpaceData;
class MOZ_STACK_CLASS BoundaryData final {
public:
using NoBreakingSpaceData =
WSRunScanner::TextFragmentData::NoBreakingSpaceData;
/**
* ScanCollapsibleWhiteSpaceStartFrom() returns start boundary data of
* white-spaces containing aPoint. When aPoint is in a text node and
* points a non-white-space character or the text node is preformatted,
* this returns the data at aPoint.
*
* @param aPoint Scan start point.
* @param aEditableBlockParentOrTopmostEditableInlineElement
* Nearest editable block parent element of
* aPoint if there is. Otherwise, inline editing
* host.
* @param aEditingHost Active editing host.
* @param aNBSPData Optional. If set, this recodes first and last
* NBSP positions.
*/
template <typename EditorDOMPointType>
static BoundaryData ScanCollapsibleWhiteSpaceStartFrom(
const EditorDOMPointType& aPoint,
const dom::Element&
aEditableBlockParentOrTopmostEditableInlineElement,
const dom::Element* aEditingHost, NoBreakingSpaceData* aNBSPData);
/**
* ScanCollapsibleWhiteSpaceEndFrom() returns end boundary data of
* white-spaces containing aPoint. When aPoint is in a text node and
* points a non-white-space character or the text node is preformatted,
* this returns the data at aPoint.
*
* @param aPoint Scan start point.
* @param aEditableBlockParentOrTopmostEditableInlineElement
* Nearest editable block parent element of
* aPoint if there is. Otherwise, inline editing
* host.
* @param aEditingHost Active editing host.
* @param aNBSPData Optional. If set, this recodes first and last
* NBSP positions.
*/
template <typename EditorDOMPointType>
static BoundaryData ScanCollapsibleWhiteSpaceEndFrom(
const EditorDOMPointType& aPoint,
const dom::Element&
aEditableBlockParentOrTopmostEditableInlineElement,
const dom::Element* aEditingHost, NoBreakingSpaceData* aNBSPData);
enum class Preformatted : bool { Yes, No };
BoundaryData()
: mReason(WSType::NotInitialized),
mAcrossPreformattedCharacter(Preformatted::No) {}
template <typename EditorDOMPointType>
BoundaryData(const EditorDOMPointType& aPoint, nsIContent& aReasonContent,
WSType aReason, Preformatted aDidCrossPreformattedCharacter)
: mReasonContent(&aReasonContent),
mPoint(aPoint),
mReason(aReason),
mAcrossPreformattedCharacter(aDidCrossPreformattedCharacter) {}
bool Initialized() const { return mReasonContent && mPoint.IsSet(); }
nsIContent* GetReasonContent() const { return mReasonContent; }
const EditorDOMPoint& PointRef() const { return mPoint; }
WSType RawReason() const { return mReason; }
bool AcrossPreformattedCharacter() const {
return mAcrossPreformattedCharacter == Preformatted::Yes;
}
bool IsNormalText() const { return mReason == WSType::NormalText; }
bool IsSpecialContent() const {
return mReason == WSType::SpecialContent;
}
bool IsBRElement() const { return mReason == WSType::BRElement; }
bool IsCurrentBlockBoundary() const {
return mReason == WSType::CurrentBlockBoundary;
}
bool IsOtherBlockBoundary() const {
return mReason == WSType::OtherBlockBoundary;
}
bool IsBlockBoundary() const {
return mReason == WSType::CurrentBlockBoundary ||
mReason == WSType::OtherBlockBoundary;
}
bool IsHardLineBreak() const {
return mReason == WSType::CurrentBlockBoundary ||
mReason == WSType::OtherBlockBoundary ||
mReason == WSType::BRElement;
}
MOZ_NEVER_INLINE_DEBUG dom::Element* OtherBlockElementPtr() const {
MOZ_DIAGNOSTIC_ASSERT(mReasonContent->IsElement());
return mReasonContent->AsElement();
}
MOZ_NEVER_INLINE_DEBUG dom::HTMLBRElement* BRElementPtr() const {
MOZ_DIAGNOSTIC_ASSERT(mReasonContent->IsHTMLElement(nsGkAtoms::br));
return static_cast<dom::HTMLBRElement*>(mReasonContent.get());
}
private:
/**
* Helper methods of ScanCollapsibleWhiteSpaceStartFrom() and
* ScanCollapsibleWhiteSpaceEndFrom() when they need to scan in a text
* node.
*/
template <typename EditorDOMPointType>
static Maybe<BoundaryData> ScanCollapsibleWhiteSpaceStartInTextNode(
const EditorDOMPointType& aPoint, NoBreakingSpaceData* aNBSPData);
template <typename EditorDOMPointType>
static Maybe<BoundaryData> ScanCollapsibleWhiteSpaceEndInTextNode(
const EditorDOMPointType& aPoint, NoBreakingSpaceData* aNBSPData);
nsCOMPtr<nsIContent> mReasonContent;
EditorDOMPoint mPoint;
// Must be one of WSType::NotInitialized, WSType::NormalText,
// WSType::SpecialContent, WSType::BRElement, WSType::CurrentBlockBoundary
// or WSType::OtherBlockBoundary.
WSType mReason;
// If the point crosses a preformatted character from scanning start
// point, set to "Yes". So, this may NOT equal to the style at mPoint
// nor mReasonContent.
Preformatted mAcrossPreformattedCharacter;
};
class MOZ_STACK_CLASS NoBreakingSpaceData final {
public:
enum class Scanning { Forward, Backward };
void NotifyNBSP(const EditorDOMPointInText& aPoint,
Scanning aScanningDirection) {
MOZ_ASSERT(aPoint.IsSetAndValid());
MOZ_ASSERT(aPoint.IsCharNBSP());
if (!mFirst.IsSet() || aScanningDirection == Scanning::Backward) {
mFirst = aPoint;
}
if (!mLast.IsSet() || aScanningDirection == Scanning::Forward) {
mLast = aPoint;
}
}
const EditorDOMPointInText& FirstPointRef() const { return mFirst; }
const EditorDOMPointInText& LastPointRef() const { return mLast; }
bool FoundNBSP() const {
MOZ_ASSERT(mFirst.IsSet() == mLast.IsSet());
return mFirst.IsSet();
}
private:
EditorDOMPointInText mFirst;
EditorDOMPointInText mLast;
};
public:
TextFragmentData() = delete;
template <typename EditorDOMPointType>
TextFragmentData(const EditorDOMPointType& aPoint,
const dom::Element* aEditingHost);
bool IsInitialized() const {
return mStart.Initialized() && mEnd.Initialized();
}
nsIContent* GetStartReasonContent() const {
return mStart.GetReasonContent();
}
nsIContent* GetEndReasonContent() const { return mEnd.GetReasonContent(); }
bool StartsFromNormalText() const { return mStart.IsNormalText(); }
bool StartsFromSpecialContent() const { return mStart.IsSpecialContent(); }
bool StartsFromBRElement() const { return mStart.IsBRElement(); }
bool StartsFromVisibleBRElement() const {
return StartsFromBRElement() &&
HTMLEditUtils::IsVisibleBRElement(*GetStartReasonContent(),
mEditingHost);
}
bool StartsFromInvisibleBRElement() const {
return StartsFromBRElement() &&
HTMLEditUtils::IsInvisibleBRElement(*GetStartReasonContent(),
mEditingHost);
}
bool StartsFromCurrentBlockBoundary() const {
return mStart.IsCurrentBlockBoundary();
}
bool StartsFromOtherBlockElement() const {
return mStart.IsOtherBlockBoundary();
}
bool StartsFromBlockBoundary() const { return mStart.IsBlockBoundary(); }
bool StartsFromHardLineBreak() const { return mStart.IsHardLineBreak(); }
bool EndsByNormalText() const { return mEnd.IsNormalText(); }
bool EndsBySpecialContent() const { return mEnd.IsSpecialContent(); }
bool EndsByBRElement() const { return mEnd.IsBRElement(); }
bool EndsByVisibleBRElement() const {
return EndsByBRElement() && HTMLEditUtils::IsVisibleBRElement(
*GetEndReasonContent(), mEditingHost);
}
bool EndsByInvisibleBRElement() const {
return EndsByBRElement() && HTMLEditUtils::IsInvisibleBRElement(
*GetEndReasonContent(), mEditingHost);
}
bool EndsByCurrentBlockBoundary() const {
return mEnd.IsCurrentBlockBoundary();
}
bool EndsByOtherBlockElement() const { return mEnd.IsOtherBlockBoundary(); }
bool EndsByBlockBoundary() const { return mEnd.IsBlockBoundary(); }
WSType StartRawReason() const { return mStart.RawReason(); }
WSType EndRawReason() const { return mEnd.RawReason(); }
MOZ_NEVER_INLINE_DEBUG dom::Element* StartReasonOtherBlockElementPtr()
const {
return mStart.OtherBlockElementPtr();
}
MOZ_NEVER_INLINE_DEBUG dom::HTMLBRElement* StartReasonBRElementPtr() const {
return mStart.BRElementPtr();
}
MOZ_NEVER_INLINE_DEBUG dom::Element* EndReasonOtherBlockElementPtr() const {
return mEnd.OtherBlockElementPtr();
}
MOZ_NEVER_INLINE_DEBUG dom::HTMLBRElement* EndReasonBRElementPtr() const {
return mEnd.BRElementPtr();
}
const EditorDOMPoint& StartRef() const { return mStart.PointRef(); }
const EditorDOMPoint& EndRef() const { return mEnd.PointRef(); }
const EditorDOMPoint& ScanStartRef() const { return mScanStartPoint; }
bool FoundNoBreakingWhiteSpaces() const { return mNBSPData.FoundNBSP(); }
const EditorDOMPointInText& FirstNBSPPointRef() const {
return mNBSPData.FirstPointRef();
}
const EditorDOMPointInText& LastNBSPPointRef() const {
return mNBSPData.LastPointRef();
}
bool IsPreformatted() const { return mIsPreformatted; }
template <typename PT, typename CT>
EditorDOMPointInText GetInclusiveNextEditableCharPoint(
const EditorDOMPointBase<PT, CT>& aPoint) const;
template <typename PT, typename CT>
EditorDOMPointInText GetPreviousEditableCharPoint(
const EditorDOMPointBase<PT, CT>& aPoint) const;
EditorDOMPointInText GetEndOfCollapsibleASCIIWhiteSpaces(
const EditorDOMPointInText& aPointAtASCIIWhiteSpace) const;
EditorDOMPointInText GetFirstASCIIWhiteSpacePointCollapsedTo(
const EditorDOMPointInText& aPointAtASCIIWhiteSpace) const;
/**
* GetNonCollapsedRangeInTexts() returns non-empty range in texts which
* is the largest range in aRange if there is some text nodes.
*/
EditorDOMRangeInTexts GetNonCollapsedRangeInTexts(
const EditorDOMRange& aRange) const;
/**
* InvisibleLeadingWhiteSpaceRangeRef() retruns reference to two DOM points,
* start of the line and first visible point or end of the hard line. When
* this returns non-positioned range or positioned but collapsed range,
* there is no invisible leading white-spaces.
* Note that if there are only invisible white-spaces in a hard line,
* this returns all of the white-spaces.