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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
|
/* -*- 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 WSRunScanner_h
#define WSRunScanner_h
#include "EditorBase.h"
#include "EditorForwards.h"
#include "EditorDOMPoint.h" // for EditorDOMPoint
#include "EditorLineBreak.h" // for EditorLineBreakBase
#include "HTMLEditor.h"
#include "HTMLEditUtils.h"
#include "mozilla/Assertions.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 {
/**
* 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:
using Element = dom::Element;
using HTMLBRElement = dom::HTMLBRElement;
using Text = dom::Text;
enum class WSType : uint8_t {
NotInitialized,
// Could be the DOM tree is broken as like crash tests.
UnexpectedError,
// The scanner cannot work in uncomposed tree, but tried to scan in it.
InUncomposedDoc,
// 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,
// Collapsible, but visible white-spaces.
CollapsibleWhiteSpaces,
// Visible characters except collapsible white-spaces.
NonCollapsibleCharacters,
// Special content such as `<img>`, etc.
SpecialContent,
// <br> element.
BRElement,
// A linefeed which is preformatted.
PreformattedLineBreak,
// Other block's boundary (child block of current block, maybe).
OtherBlockBoundary,
// Current block's boundary.
CurrentBlockBoundary,
// Inline editing host boundary.
InlineEditingHostBoundary,
};
friend std::ostream& operator<<(std::ostream& aStream, const WSType& aType) {
switch (aType) {
case WSType::NotInitialized:
return aStream << "WSType::NotInitialized";
case WSType::UnexpectedError:
return aStream << "WSType::UnexpectedError";
case WSType::InUncomposedDoc:
return aStream << "WSType::InUncomposedDoc";
case WSType::LeadingWhiteSpaces:
return aStream << "WSType::LeadingWhiteSpaces";
case WSType::TrailingWhiteSpaces:
return aStream << "WSType::TrailingWhiteSpaces";
case WSType::CollapsibleWhiteSpaces:
return aStream << "WSType::CollapsibleWhiteSpaces";
case WSType::NonCollapsibleCharacters:
return aStream << "WSType::NonCollapsibleCharacters";
case WSType::SpecialContent:
return aStream << "WSType::SpecialContent";
case WSType::BRElement:
return aStream << "WSType::BRElement";
case WSType::PreformattedLineBreak:
return aStream << "WSType::PreformattedLineBreak";
case WSType::OtherBlockBoundary:
return aStream << "WSType::OtherBlockBoundary";
case WSType::CurrentBlockBoundary:
return aStream << "WSType::CurrentBlockBoundary";
case WSType::InlineEditingHostBoundary:
return aStream << "WSType::InlineEditingHostBoundary";
}
return aStream << "<Illegal value>";
}
friend class WSRunScanner; // Because of WSType.
explicit WSScanResult(WSType aReason) : mReason(aReason) {
MOZ_ASSERT(mReason == WSType::UnexpectedError ||
mReason == WSType::NotInitialized);
}
public:
WSScanResult() = delete;
enum class ScanDirection : bool { Backward, Forward };
WSScanResult(const WSRunScanner& aScanner, ScanDirection aScanDirection,
nsIContent& aContent, WSType aReason)
: mContent(&aContent), mReason(aReason), mDirection(aScanDirection) {
MOZ_ASSERT(aReason != WSType::CollapsibleWhiteSpaces &&
aReason != WSType::NonCollapsibleCharacters &&
aReason != WSType::PreformattedLineBreak);
AssertIfInvalidData(aScanner);
}
WSScanResult(const WSRunScanner& aScanner, ScanDirection aScanDirection,
const EditorDOMPoint& aPoint, WSType aReason)
: mContent(aPoint.GetContainerAs<nsIContent>()),
mOffset(Some(aPoint.Offset())),
mReason(aReason),
mDirection(aScanDirection) {
AssertIfInvalidData(aScanner);
}
static WSScanResult Error() { return WSScanResult(WSType::UnexpectedError); }
void AssertIfInvalidData(const WSRunScanner& aScanner) const;
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; }
[[nodiscard]] bool ContentIsElement() const {
return mContent && mContent->IsElement();
}
[[nodiscard]] bool ContentIsText() const {
return mContent && mContent->IsText();
}
/**
* The following accessors makes it easier to understand each callers.
*/
MOZ_NEVER_INLINE_DEBUG Element* ElementPtr() const {
MOZ_DIAGNOSTIC_ASSERT(mContent->IsElement());
return mContent->AsElement();
}
MOZ_NEVER_INLINE_DEBUG HTMLBRElement* BRElementPtr() const {
MOZ_DIAGNOSTIC_ASSERT(mContent->IsHTMLElement(nsGkAtoms::br));
return static_cast<HTMLBRElement*>(mContent.get());
}
MOZ_NEVER_INLINE_DEBUG Text* TextPtr() const {
MOZ_DIAGNOSTIC_ASSERT(mContent->IsText());
return mContent->AsText();
}
template <typename EditorLineBreakType>
MOZ_NEVER_INLINE_DEBUG EditorLineBreakType CreateEditorLineBreak() const {
if (ReachedBRElement()) {
return EditorLineBreakType(*BRElementPtr());
}
if (ReachedPreformattedLineBreak()) {
MOZ_ASSERT_IF(mDirection == ScanDirection::Backward, *mOffset > 0);
return EditorLineBreakType(*TextPtr(),
mDirection == ScanDirection::Forward
? mOffset.valueOr(0)
: std::max(mOffset.valueOr(1), 1u) - 1);
}
MOZ_CRASH("Didn't reach a line break");
return EditorLineBreakType(*BRElementPtr());
}
/**
* Returns true if found or reached content is editable.
*/
bool IsContentEditable() const { return mContent && mContent->IsEditable(); }
[[nodiscard]] bool IsContentEditableRoot() const {
return mContent && mContent->IsElement() &&
HTMLEditUtils::ElementIsEditableRoot(*mContent->AsElement());
}
/**
* Offset_Deprecated() returns meaningful value only when
* InVisibleOrCollapsibleCharacters() 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 the point of the found
* point. Otherwise, i.e., scanning forward, this offset means next point
* of the found point. E.g., if it reaches a collapsible white-space, this
* offset is at the first non-collapsible character after it.
*/
MOZ_NEVER_INLINE_DEBUG uint32_t Offset_Deprecated() const {
NS_ASSERTION(mOffset.isSome(), "Retrieved non-meaningful offset");
return mOffset.valueOr(0);
}
/**
* Point_Deprecated() returns the position in found visible node or reached
* block boundary. So, this returns meaningful point only when
* Offset_Deprecated() returns meaningful value.
*/
template <typename EditorDOMPointType>
EditorDOMPointType Point_Deprecated() const {
NS_ASSERTION(mOffset.isSome(), "Retrieved non-meaningful point");
return EditorDOMPointType(mContent, mOffset.valueOr(0));
}
/**
* PointAtReachedContent() returns the position of found visible content or
* reached block element.
*/
template <typename EditorDOMPointType>
EditorDOMPointType PointAtReachedContent() const {
MOZ_ASSERT(mContent);
switch (mReason) {
case WSType::CollapsibleWhiteSpaces:
case WSType::NonCollapsibleCharacters:
case WSType::PreformattedLineBreak:
MOZ_DIAGNOSTIC_ASSERT(mOffset.isSome());
return mDirection == ScanDirection::Forward
? EditorDOMPointType(mContent, mOffset.valueOr(0))
: EditorDOMPointType(mContent,
std::max(mOffset.valueOr(1), 1u) - 1);
default:
return EditorDOMPointType(mContent);
}
}
/**
* PointAfterReachedContent() returns the next position of found visible
* content or reached block element.
*/
template <typename EditorDOMPointType>
EditorDOMPointType PointAfterReachedContent() const {
MOZ_ASSERT(mContent);
return PointAtReachedContent<EditorDOMPointType>()
.template NextPointOrAfterContainer<EditorDOMPointType>();
}
/**
* Return the next position of found visible content node. So, this should
* not be used if it reached a visible character middle of a `Text`.
*/
template <typename EditorDOMPointType>
EditorDOMPointType PointAfterReachedContentNode() const {
MOZ_ASSERT(mContent);
return EditorDOMPointType::After(*mContent);
}
/**
* 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 visible characters or collapsible white-spaces.
*/
bool InVisibleOrCollapsibleCharacters() const {
return mReason == WSType::CollapsibleWhiteSpaces ||
mReason == WSType::NonCollapsibleCharacters;
}
/**
* The point is in collapsible white-spaces.
*/
bool InCollapsibleWhiteSpaces() const {
return mReason == WSType::CollapsibleWhiteSpaces;
}
/**
* The point is in visible non-collapsible characters.
*/
bool InNonCollapsibleCharacters() const {
return mReason == WSType::NonCollapsibleCharacters;
}
/**
* 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());
}
bool ReachedPreformattedLineBreak() const {
return mReason == WSType::PreformattedLineBreak;
}
/**
* Return true if reached a <br> element or a preformatted line break.
* Return false when reached a block boundary. Use ReachedLineBoundary() if
* you want it to return true in the case too.
*/
[[nodiscard]] bool ReachedLineBreak() const {
return ReachedBRElement() || ReachedPreformattedLineBreak();
}
/**
* 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 inline editing host boundary.
*/
[[nodiscard]] bool ReachedInlineEditingHostBoundary() const {
return mReason == WSType::InlineEditingHostBoundary;
}
/**
* The scanner reached something non-text node.
*/
bool ReachedSomethingNonTextContent() const {
return !InVisibleOrCollapsibleCharacters();
}
[[nodiscard]] bool ReachedLineBoundary() const {
switch (mReason) {
case WSType::CurrentBlockBoundary:
case WSType::OtherBlockBoundary:
case WSType::BRElement:
case WSType::PreformattedLineBreak:
return true;
default:
return ReachedHRElement();
}
}
friend std::ostream& operator<<(std::ostream& aStream,
const ScanDirection& aDirection) {
return aStream << (aDirection == ScanDirection::Backward
? "ScanDirection::Backward"
: "ScanDirection::Forward");
}
friend std::ostream& operator<<(std::ostream& aStream,
const WSScanResult& aResult) {
aStream << "{ mReason: " << aResult.mReason;
if (aResult.mReason == WSType::NotInitialized ||
aResult.mReason == WSType::InUncomposedDoc) {
return aStream << " }";
}
return aStream << ", mContent: " << aResult.mContent
<< ", mOffset: " << aResult.mOffset
<< ", mDirection: " << aResult.mDirection << " }";
}
private:
nsCOMPtr<nsIContent> mContent;
Maybe<uint32_t> mOffset;
WSType mReason;
ScanDirection mDirection = ScanDirection::Backward;
};
class MOZ_STACK_CLASS WSRunScanner final {
private:
using Element = dom::Element;
using HTMLBRElement = dom::HTMLBRElement;
using Text = dom::Text;
public:
using WSType = WSScanResult::WSType;
enum class IgnoreNonEditableNodes : bool { No, Yes };
enum class StopAtNonEditableNode : bool { No, Yes };
enum class ReferHTMLDefaultStyle : bool { No, Yes };
enum class Option {
// If set, return only editable content or return non-editable content as a
// special content in the closest editing host if the scan start point is
// editable.
OnlyEditableNodes,
// If set, use the HTML default style to consider whether the found one is a
// block or an inline.
ReferHTMLDefaultStyle,
// If set, stop scanning the DOM when it reaches a `Comment` node.
StopAtComment,
};
using Options = EnumSet<Option>;
[[nodiscard]] constexpr static IgnoreNonEditableNodes
ShouldIgnoreNonEditableSiblingsOrDescendants(
Options aOptions // NOLINT(performance-unnecessary-value-param)
) {
return static_cast<IgnoreNonEditableNodes>(
aOptions.contains(Option::OnlyEditableNodes));
}
[[nodiscard]] constexpr static StopAtNonEditableNode
ShouldStopAtNonEditableNode(
Options aOptions // NOLINT(performance-unnecessary-value-param)
) {
return static_cast<StopAtNonEditableNode>(
aOptions.contains(Option::OnlyEditableNodes));
}
[[nodiscard]] constexpr static ReferHTMLDefaultStyle
ShouldReferHTMLDefaultStyle(
Options aOptions // NOLINT(performance-unnecessary-value-param)
) {
return static_cast<ReferHTMLDefaultStyle>(
aOptions.contains(Option::ReferHTMLDefaultStyle));
}
template <typename EditorDOMPointType>
WSRunScanner(Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPointType& aScanStartPoint,
const Element* aAncestorLimiter = nullptr)
: mScanStartPoint(aScanStartPoint.template To<EditorDOMPoint>()),
mTextFragmentDataAtStart(aOptions, mScanStartPoint, aAncestorLimiter) {}
// ScanInclusiveNextVisibleNodeOrBlockBoundaryFrom() returns the first visible
// node at or 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. When you reach a character,
// this returns WSScanResult both whose Point_Deprecated() and
// PointAtReachedContent() return the found character position.
template <typename PT, typename CT>
WSScanResult ScanInclusiveNextVisibleNodeOrBlockBoundaryFrom(
const EditorDOMPointBase<PT, CT>& aPoint) const;
template <typename PT, typename CT>
static WSScanResult ScanInclusiveNextVisibleNodeOrBlockBoundary(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPointBase<PT, CT>& aPoint,
const Element* aAncestorLimiter = nullptr) {
return WSRunScanner(aOptions, aPoint, aAncestorLimiter)
.ScanInclusiveNextVisibleNodeOrBlockBoundaryFrom(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. When you reach a character, this returns
// WSScanResult whose Point_Deprecated() returns next point of the found
// character and PointAtReachedContent() returns the point at found character.
template <typename PT, typename CT>
WSScanResult ScanPreviousVisibleNodeOrBlockBoundaryFrom(
const EditorDOMPointBase<PT, CT>& aPoint) const;
template <typename PT, typename CT>
static WSScanResult ScanPreviousVisibleNodeOrBlockBoundary(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPointBase<PT, CT>& aPoint,
const Element* aAncestorLimiter = nullptr) {
return WSRunScanner(aOptions, aPoint, aAncestorLimiter)
.ScanPreviousVisibleNodeOrBlockBoundaryFrom(aPoint);
}
/**
* Return a point in a `Text` node which is at current character or next
* character if aPoint does not points a character or end of a `Text` node.
*/
template <typename EditorDOMPointType, typename PT, typename CT>
static EditorDOMPointType GetInclusiveNextCharPoint(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPointBase<PT, CT>& aPoint,
const Element* aAncestorLimiter = nullptr) {
if (aPoint.IsInTextNode() && !aPoint.IsEndOfContainer() &&
(!aOptions.contains(Option::OnlyEditableNodes) ||
HTMLEditUtils::IsSimplyEditableNode(
*aPoint.template ContainerAs<Text>()))) {
return EditorDOMPointType(aPoint.template ContainerAs<Text>(),
aPoint.Offset());
}
return WSRunScanner(aOptions, aPoint, aAncestorLimiter)
.GetInclusiveNextCharPoint<EditorDOMPointType>(aPoint);
}
/**
* Return a point in a `Text` node which is before aPoint.
*/
template <typename EditorDOMPointType, typename PT, typename CT>
static EditorDOMPointType GetPreviousCharPoint(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPointBase<PT, CT>& aPoint,
const Element* aAncestorLimiter = nullptr) {
if (aPoint.IsInTextNode() && !aPoint.IsStartOfContainer() &&
(!aOptions.contains(Option::OnlyEditableNodes) ||
HTMLEditUtils::IsSimplyEditableNode(
*aPoint.template ContainerAs<Text>()))) {
return EditorDOMPointType(aPoint.template ContainerAs<Text>(),
aPoint.Offset() - 1);
}
return WSRunScanner(aOptions, aPoint, aAncestorLimiter)
.GetPreviousCharPoint<EditorDOMPointType>(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(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
Text& aTextNode, const Element* aAncestorLimiter = nullptr);
template <typename EditorDOMPointType>
static EditorDOMPointType GetFirstVisiblePoint(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
Text& aTextNode, const Element* aAncestorLimiter = nullptr);
/**
* GetRangeInTextNodesToForwardDeleteFrom() returns the range to remove
* text when caret is at aPoint.
*/
static Result<EditorDOMRangeInTexts, nsresult>
GetRangeInTextNodesToForwardDeleteFrom(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPoint& aPoint, const Element* aAncestorLimiter = nullptr);
/**
* GetRangeInTextNodesToBackspaceFrom() returns the range to remove text
* when caret is at aPoint.
*/
static Result<EditorDOMRangeInTexts, nsresult>
GetRangeInTextNodesToBackspaceFrom(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPoint& aPoint, const Element* aAncestorLimiter = nullptr);
/**
* 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(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const nsIContent& aAtomicContent,
const Element* aAncestorLimiter = nullptr);
/**
* GetRangeForDeleteBlockElementBoundaries() returns a range starting from end
* of aLeftBlockElement to start of aRightBlockElement and extend invisible
* white-spaces around them.
*
* @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(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const Element& aLeftBlockElement, const Element& aRightBlockElement,
const EditorDOMPoint& aPointContainingTheOtherBlock,
const Element* aAncestorLimiter = nullptr);
/**
* 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(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
nsRange& aRange, const Element* aAncestorLimiter = nullptr);
/**
* GetRangeContainingInvisibleWhiteSpacesAtRangeBoundaries() returns
* extended range if range boundaries of aRange are in invisible white-spaces.
*/
static EditorDOMRange GetRangeContainingInvisibleWhiteSpacesAtRangeBoundaries(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMRange& aRange, const Element* aAncestorLimiter = nullptr);
/**
* 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 HTMLBRElement*
GetPrecedingBRElementUnlessVisibleContentFound(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPointType& aPoint,
const Element* aAncestorLimiter = nullptr) {
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(aOptions, aPoint, aAncestorLimiter);
return textFragmentData.StartsFromBRElement()
? textFragmentData.StartReasonBRElementPtr()
: nullptr;
}
[[nodiscard]] constexpr Options ScanOptions() const {
return mTextFragmentDataAtStart.ScanOptions();
}
[[nodiscard]] bool ReferredHTMLDefaultStyle() const {
return mTextFragmentDataAtStart.ReferredHTMLDefaultStyle();
}
const EditorDOMPoint& ScanStartRef() const { return mScanStartPoint; }
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 StartsFromNonCollapsibleCharacters() const {
return mLeftWSType == WSType::NonCollapsibleCharacters;
}
bool StartsFromSpecialContent() const {
return mLeftWSType == WSType::SpecialContent;
}
bool StartsFromPreformattedLineBreak() const {
return mLeftWSType == WSType::PreformattedLineBreak;
}
/**
* Information why the white-spaces end by (i.e., this indicates the
* next content type of the fragment).
*/
bool EndsByNonCollapsibleCharacters() const {
return mRightWSType == WSType::NonCollapsibleCharacters;
}
bool EndsByTrailingWhiteSpaces() const {
return mRightWSType == WSType::TrailingWhiteSpaces;
}
bool EndsBySpecialContent() const {
return mRightWSType == WSType::SpecialContent;
}
bool EndsByBRElement() const { return mRightWSType == WSType::BRElement; }
bool EndsByPreformattedLineBreak() const {
return mRightWSType == WSType::PreformattedLineBreak;
}
bool EndsByBlockBoundary() const {
return mRightWSType == WSType::CurrentBlockBoundary ||
mRightWSType == WSType::OtherBlockBoundary;
}
bool EndsByInlineEditingHostBoundary() const {
return mRightWSType == WSType::InlineEditingHostBoundary;
}
/**
* 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 SetEndBy(WSType aRightWSType) { mRightWSType = aRightWSType; }
void SetEndByTrailingWhiteSpaces() {
mRightWSType = WSType::TrailingWhiteSpaces;
}
EditorDOMPoint mStartPoint;
EditorDOMPoint mEndPoint;
WSType mLeftWSType, mRightWSType;
};
using PointPosition = VisibleWhiteSpacesData::PointPosition;
/**
* Return aPoint if it points a character in a `Text` node, or start of next
* `Text` node otherwise.
* FYI: For the performance, this does not check whether given container is
* not after mStart.mReasonContent or not.
*/
template <typename EditorDOMPointType, typename PT, typename CT>
EditorDOMPointType GetInclusiveNextCharPoint(
const EditorDOMPointBase<PT, CT>& aPoint) const {
return TextFragmentDataAtStartRef()
.GetInclusiveNextCharPoint<EditorDOMPointType>(
aPoint, ShouldIgnoreNonEditableSiblingsOrDescendants(
mTextFragmentDataAtStart.ScanOptions()));
}
/**
* Return the previous editable point in a `Text` node. Note that this
* returns the 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 EditorDOMPointType, typename PT, typename CT>
EditorDOMPointType GetPreviousCharPoint(
const EditorDOMPointBase<PT, CT>& aPoint) const {
return TextFragmentDataAtStartRef()
.GetPreviousCharPoint<EditorDOMPointType>(
aPoint, ShouldIgnoreNonEditableSiblingsOrDescendants(
mTextFragmentDataAtStart.ScanOptions()));
}
/**
* 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.
*/
template <typename EditorDOMPointType>
EditorDOMPointType GetEndOfCollapsibleASCIIWhiteSpaces(
const EditorDOMPointInText& aPointAtASCIIWhiteSpace,
nsIEditor::EDirection aDirectionToDelete) const {
MOZ_ASSERT(aDirectionToDelete == nsIEditor::eNone ||
aDirectionToDelete == nsIEditor::eNext ||
aDirectionToDelete == nsIEditor::ePrevious);
return TextFragmentDataAtStartRef()
.GetEndOfCollapsibleASCIIWhiteSpaces<EditorDOMPointType>(
aPointAtASCIIWhiteSpace, aDirectionToDelete);
}
/**
* 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.
*/
template <typename EditorDOMPointType>
EditorDOMPointType GetFirstASCIIWhiteSpacePointCollapsedTo(
const EditorDOMPointInText& aPointAtASCIIWhiteSpace,
nsIEditor::EDirection aDirectionToDelete) const {
MOZ_ASSERT(aDirectionToDelete == nsIEditor::eNone ||
aDirectionToDelete == nsIEditor::eNext ||
aDirectionToDelete == nsIEditor::ePrevious);
return TextFragmentDataAtStartRef()
.GetFirstASCIIWhiteSpacePointCollapsedTo<EditorDOMPointType>(
aPointAtASCIIWhiteSpace, aDirectionToDelete);
}
/**
* 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 aNBSPData Optional. If set, this recodes first and last
* NBSP positions.
*/
template <typename EditorDOMPointType>
static BoundaryData ScanCollapsibleWhiteSpaceStartFrom(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPointType& aPoint, NoBreakingSpaceData* aNBSPData,
const Element& aAncestorLimiter);
/**
* 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 aNBSPData Optional. If set, this recodes first and last
* NBSP positions.
*/
template <typename EditorDOMPointType>
static BoundaryData ScanCollapsibleWhiteSpaceEndFrom(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPointType& aPoint, NoBreakingSpaceData* aNBSPData,
const Element& aAncestorLimiter);
BoundaryData() = default;
template <typename EditorDOMPointType>
BoundaryData(const EditorDOMPointType& aPoint, nsIContent& aReasonContent,
WSType aReason)
: mReasonContent(&aReasonContent),
mPoint(aPoint.template To<EditorDOMPoint>()),
mReason(aReason) {}
bool Initialized() const { return mReasonContent && mPoint.IsSet(); }
nsIContent* GetReasonContent() const { return mReasonContent; }
const EditorDOMPoint& PointRef() const { return mPoint; }
WSType RawReason() const { return mReason; }
bool IsNonCollapsibleCharacters() const {
return mReason == WSType::NonCollapsibleCharacters;
}
bool IsSpecialContent() const {
return mReason == WSType::SpecialContent;
}
bool IsBRElement() const { return mReason == WSType::BRElement; }
bool IsPreformattedLineBreak() const {
return mReason == WSType::PreformattedLineBreak;
}
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 IsInlineEditingHostBoundary() const {
return mReason == WSType::InlineEditingHostBoundary;
}
bool IsHardLineBreak() const {
return mReason == WSType::CurrentBlockBoundary ||
mReason == WSType::OtherBlockBoundary ||
mReason == WSType::BRElement ||
mReason == WSType::PreformattedLineBreak;
}
MOZ_NEVER_INLINE_DEBUG Element* OtherBlockElementPtr() const {
MOZ_DIAGNOSTIC_ASSERT(mReasonContent->IsElement());
return mReasonContent->AsElement();
}
MOZ_NEVER_INLINE_DEBUG HTMLBRElement* BRElementPtr() const {
MOZ_DIAGNOSTIC_ASSERT(mReasonContent->IsHTMLElement(nsGkAtoms::br));
return static_cast<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::NonCollapsibleCharacters, WSType::SpecialContent,
// WSType::BRElement, WSType::CurrentBlockBoundary,
// WSType::OtherBlockBoundary or WSType::InlineEditingHostBoundary.
WSType mReason = WSType::NotInitialized;
};
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;
/**
* If aScanMode is Scan::EditableNodes and aPoint is in an editable node,
* this scans only in the editing host. Therefore, it's same as that
* aAncestorLimiter is specified to the editing host.
*/
template <typename EditorDOMPointType>
TextFragmentData(
Options aOptions, // NOLINT(performance-unnecessary-value-param)
const EditorDOMPointType& aPoint,
const Element* aAncestorLimiter = nullptr);
bool IsInitialized() const {
return mStart.Initialized() && mEnd.Initialized();
}
[[nodiscard]] constexpr Options ScanOptions() const { return mOptions; }
[[nodiscard]] bool ReferredHTMLDefaultStyle() const {
return mOptions.contains(Option::ReferHTMLDefaultStyle);
}
const Element* GetAncestorLimiter() const { return mAncestorLimiter; }
nsIContent* GetStartReasonContent() const {
return mStart.GetReasonContent();
}
nsIContent* GetEndReasonContent() const { return mEnd.GetReasonContent(); }
bool StartsFromNonCollapsibleCharacters() const {
return mStart.IsNonCollapsibleCharacters();
}
bool StartsFromSpecialContent() const { return mStart.IsSpecialContent(); }
bool StartsFromBRElement() const { return mStart.IsBRElement(); }
bool StartsFromVisibleBRElement() const {
return StartsFromBRElement() &&
HTMLEditUtils::IsVisibleBRElement(*GetStartReasonContent());
}
bool StartsFromInvisibleBRElement() const {
return StartsFromBRElement() &&
HTMLEditUtils::IsInvisibleBRElement(*GetStartReasonContent());
}
bool StartsFromPreformattedLineBreak() const {
return mStart.IsPreformattedLineBreak();
}
bool StartsFromCurrentBlockBoundary() const {
return mStart.IsCurrentBlockBoundary();
}
bool StartsFromOtherBlockElement() const {
return mStart.IsOtherBlockBoundary();
}
bool StartsFromBlockBoundary() const { return mStart.IsBlockBoundary(); }
bool StartsFromInlineEditingHostBoundary() const {
return mStart.IsInlineEditingHostBoundary();
}
bool StartsFromHardLineBreak() const { return mStart.IsHardLineBreak(); }
bool EndsByNonCollapsibleCharacters() const {
return mEnd.IsNonCollapsibleCharacters();
}
bool EndsBySpecialContent() const { return mEnd.IsSpecialContent(); }
bool EndsByBRElement() const { return mEnd.IsBRElement(); }
bool EndsByVisibleBRElement() const {
return EndsByBRElement() &&
HTMLEditUtils::IsVisibleBRElement(*GetEndReasonContent());
}
bool EndsByInvisibleBRElement() const {
return EndsByBRElement() &&
HTMLEditUtils::IsInvisibleBRElement(*GetEndReasonContent());
}
bool EndsByPreformattedLineBreak() const {
return mEnd.IsPreformattedLineBreak();
}
bool EndsByInvisiblePreformattedLineBreak() const {
return mEnd.IsPreformattedLineBreak() &&
HTMLEditUtils::IsInvisiblePreformattedNewLine(mEnd.PointRef());
}
bool EndsByCurrentBlockBoundary() const {
return mEnd.IsCurrentBlockBoundary();
}
bool EndsByOtherBlockElement() const { return mEnd.IsOtherBlockBoundary(); }
bool EndsByBlockBoundary() const { return mEnd.IsBlockBoundary(); }
bool EndsByInlineEditingHostBoundary() const {
return mEnd.IsInlineEditingHostBoundary();
}
WSType StartRawReason() const { return mStart.RawReason(); }
WSType EndRawReason() const { return mEnd.RawReason(); }
MOZ_NEVER_INLINE_DEBUG Element* StartReasonOtherBlockElementPtr() const {
return mStart.OtherBlockElementPtr();
}
MOZ_NEVER_INLINE_DEBUG HTMLBRElement* StartReasonBRElementPtr() const {
return mStart.BRElementPtr();
}
MOZ_NEVER_INLINE_DEBUG Element* EndReasonOtherBlockElementPtr() const {
return mEnd.OtherBlockElementPtr();
}
MOZ_NEVER_INLINE_DEBUG 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();
}
/**
* Return inclusive next point in inclusive next `Text` node from aPoint.
* So, it may be in a collapsed white-space or invisible white-spaces.
* NOTE: Option::OnlyEditableNodes is ignored because it's treated as "stop
* at non-editable content" in the other places, but this "ignores" them.
*/
template <typename EditorDOMPointType, typename PT, typename CT>
[[nodiscard]] static EditorDOMPointType GetInclusiveNextCharPoint(
const EditorDOMPointBase<PT, CT>& aPoint,
Options aOptions, // NOLINT(performance-unnecessary-value-param)
IgnoreNonEditableNodes aIgnoreNonEditableNodes,
const nsIContent* aFollowingLimiterContent = nullptr);
template <typename EditorDOMPointType, typename PT, typename CT>
[[nodiscard]] EditorDOMPointType GetInclusiveNextCharPoint(
const EditorDOMPointBase<PT, CT>& aPoint,
IgnoreNonEditableNodes aIgnoreNonEditableNodes) const {
return GetInclusiveNextCharPoint<EditorDOMPointType>(
aPoint, mOptions, aIgnoreNonEditableNodes, GetEndReasonContent());
}
/**
* Return previous point in inclusive previous `Text` node from aPoint.
* So, it may be in a collapsed white-space or invisible white-spaces.
* NOTE: Option::OnlyEditableNodes is ignored because it's treated as "stop
* at non-editable content" in the other places, but this "ignores" them.
*/
template <typename EditorDOMPointType, typename PT, typename CT>
[[nodiscard]] static EditorDOMPointType GetPreviousCharPoint(
const EditorDOMPointBase<PT, CT>& aPoint,
Options aOptions, // NOLINT(performance-unnecessary-value-param)
IgnoreNonEditableNodes aIgnoreNonEditableNodes,
const nsIContent* aPrecedingLimiterContent = nullptr);
template <typename EditorDOMPointType, typename PT, typename CT>
[[nodiscard]] EditorDOMPointType GetPreviousCharPoint(
const EditorDOMPointBase<PT, CT>& aPoint,
IgnoreNonEditableNodes aIgnoreNonEditableNodes) const {
return GetPreviousCharPoint<EditorDOMPointType>(
aPoint, mOptions, aIgnoreNonEditableNodes, GetStartReasonContent());
}
/**
* Return end of current collapsible ASCII white-spaces.
* NOTE: Option::OnlyEditableNodes is ignored because it's treated as "stop
* at non-editable content" in the other places, but this "ignores" them.
*
* @param aPointAtASCIIWhiteSpace Must be in a sequence of collapsible
* ASCII white-spaces.
* @param aDirectionToDelete The direction to delete.
*/
template <typename EditorDOMPointType>
[[nodiscard]] static EditorDOMPointType GetEndOfCollapsibleASCIIWhiteSpaces(
const EditorDOMPointInText& aPointAtASCIIWhiteSpace,
nsIEditor::EDirection aDirectionToDelete,
Options aOptions, // NOLINT(performance-unnecessary-value-param)
IgnoreNonEditableNodes aIgnoreNonEditableNodes,
const nsIContent* aFollowingLimiterContent = nullptr);
template <typename EditorDOMPointType>
[[nodiscard]] EditorDOMPointType GetEndOfCollapsibleASCIIWhiteSpaces(
const EditorDOMPointInText& aPointAtASCIIWhiteSpace,
nsIEditor::EDirection aDirectionToDelete,
IgnoreNonEditableNodes aIgnoreNonEditableNodes) const {
return GetEndOfCollapsibleASCIIWhiteSpaces<EditorDOMPointType>(
aPointAtASCIIWhiteSpace, aDirectionToDelete, mOptions,
aIgnoreNonEditableNodes, GetEndReasonContent());
}
/**
* Return start of current collapsible ASCII white-spaces.
* NOTE: Option::OnlyEditableNodes is ignored because it's treated as "stop
* at non-editable content" in the other places, but this "ignores" them.
*
* @param aPointAtASCIIWhiteSpace Must be in a sequence of collapsible
* ASCII white-spaces.
* @param aDirectionToDelete The direction to delete.
*/
template <typename EditorDOMPointType>
[[nodiscard]] static EditorDOMPointType
GetFirstASCIIWhiteSpacePointCollapsedTo(
const EditorDOMPointInText& aPointAtASCIIWhiteSpace,
nsIEditor::EDirection aDirectionToDelete,
Options aOptions, // NOLINT(performance-unnecessary-value-param)
IgnoreNonEditableNodes aIgnoreNonEditableNodes,
const nsIContent* aPrecedingLimiterContent = nullptr);
template <typename EditorDOMPointType>
[[nodiscard]] EditorDOMPointType GetFirstASCIIWhiteSpacePointCollapsedTo(
const EditorDOMPointInText& aPointAtASCIIWhiteSpace,
nsIEditor::EDirection aDirectionToDelete,
IgnoreNonEditableNodes aIgnoreNonEditableNodes) const {
return GetFirstASCIIWhiteSpacePointCollapsedTo<EditorDOMPointType>(
aPointAtASCIIWhiteSpace, aDirectionToDelete, mOptions,
aIgnoreNonEditableNodes, GetStartReasonContent());
}
/**
* 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.
*/
const EditorDOMRange& InvisibleLeadingWhiteSpaceRangeRef() const;
/**
* InvisibleTrailingWhiteSpaceRangeRef() returns reference to two DOM
* points, first invisible white-space and end of the hard line. When this
* returns non-positioned range or positioned but collapsed range,
* there is no invisible trailing white-spaces.
* Note that if there are only invisible white-spaces in a hard line,
* this returns all of the white-spaces.
*/
const EditorDOMRange& InvisibleTrailingWhiteSpaceRangeRef() const;
/**
* GetNewInvisibleLeadingWhiteSpaceRangeIfSplittingAt() returns new
* invisible leading white-space range which should be removed if
* splitting invisible white-space sequence at aPointToSplit creates
* new invisible leading white-spaces in the new line.
* Note that the result may be collapsed range if the point is around
* invisible white-spaces.
*/
template <typename EditorDOMPointType>
EditorDOMRange GetNewInvisibleLeadingWhiteSpaceRangeIfSplittingAt(
const EditorDOMPointType& aPointToSplit) const {
// If there are invisible trailing white-spaces and some or all of them
// become invisible leading white-spaces in the new line, although we
// don't need to delete them, but for aesthetically and backward
// compatibility, we should remove them.
const EditorDOMRange& trailingWhiteSpaceRange =
InvisibleTrailingWhiteSpaceRangeRef();
// XXX Why don't we check leading white-spaces too?
if (!trailingWhiteSpaceRange.IsPositioned()) {
return trailingWhiteSpaceRange;
}
// If the point is before the trailing white-spaces, the new line won't
// start with leading white-spaces.
if (aPointToSplit.IsBefore(trailingWhiteSpaceRange.StartRef())) {
return EditorDOMRange();
}
// If the point is in the trailing white-spaces, the new line may
// start with some leading white-spaces. Returning collapsed range
// is intentional because the caller may want to know whether the
// point is in trailing white-spaces or not.
if (aPointToSplit.EqualsOrIsBefore(trailingWhiteSpaceRange.EndRef())) {
return EditorDOMRange(trailingWhiteSpaceRange.StartRef(),
aPointToSplit);
}
// Otherwise, if the point is after the trailing white-spaces, it may
// be just outside of the text node. E.g., end of parent element.
// This is possible case but the validation cost is not worthwhile
// due to the runtime cost in the worst case. Therefore, we should just
// return collapsed range at the end of trailing white-spaces. Then,
// callers can know the point is immediately after the trailing
// white-spaces.
return EditorDOMRange(trailingWhiteSpaceRange.EndRef());
}
/**
* GetNewInvisibleTrailingWhiteSpaceRangeIfSplittingAt() returns new
* invisible trailing white-space range which should be removed if
* splitting invisible white-space sequence at aPointToSplit creates
* new invisible trailing white-spaces in the new line.
* Note that the result may be collapsed range if the point is around
* invisible white-spaces.
*/
template <typename EditorDOMPointType>
EditorDOMRange GetNewInvisibleTrailingWhiteSpaceRangeIfSplittingAt(
const EditorDOMPointType& aPointToSplit) const {
// If there are invisible leading white-spaces and some or all of them
// become end of current line, they will become visible. Therefore, we
// need to delete the invisible leading white-spaces before insertion
// point.
const EditorDOMRange& leadingWhiteSpaceRange =
InvisibleLeadingWhiteSpaceRangeRef();
if (!leadingWhiteSpaceRange.IsPositioned()) {
return leadingWhiteSpaceRange;
}
// If the point equals or is after the leading white-spaces, the line
// will end without trailing white-spaces.
if (leadingWhiteSpaceRange.EndRef().IsBefore(aPointToSplit)) {
return EditorDOMRange();
}
// If the point is in the leading white-spaces, the line may
// end with some trailing white-spaces. Returning collapsed range
// is intentional because the caller may want to know whether the
// point is in leading white-spaces or not.
if (leadingWhiteSpaceRange.StartRef().EqualsOrIsBefore(aPointToSplit)) {
return EditorDOMRange(aPointToSplit, leadingWhiteSpaceRange.EndRef());
}
// Otherwise, if the point is before the leading white-spaces, it may
// be just outside of the text node. E.g., start of parent element.
// This is possible case but the validation cost is not worthwhile
// due to the runtime cost in the worst case. Therefore, we should
// just return collapsed range at start of the leading white-spaces.
// Then, callers can know the point is immediately before the leading
// white-spaces.
return EditorDOMRange(leadingWhiteSpaceRange.StartRef());
}
/**
* FollowingContentMayBecomeFirstVisibleContent() returns true if some
* content may be first visible content after removing content after aPoint.
* Note that it's completely broken what this does. Don't use this method
* with new code.
*/
template <typename EditorDOMPointType>
bool FollowingContentMayBecomeFirstVisibleContent(
const EditorDOMPointType& aPoint) const {
MOZ_ASSERT(aPoint.IsSetAndValid());
if (!mStart.IsHardLineBreak() && !mStart.IsInlineEditingHostBoundary()) {
return false;
}
// If the point is before start of text fragment, that means that the
// point may be at the block boundary or inline element boundary.
if (aPoint.EqualsOrIsBefore(mStart.PointRef())) {
return true;
}
// VisibleWhiteSpacesData is marked as start of line only when it
// represents leading white-spaces.
const EditorDOMRange& leadingWhiteSpaceRange =
InvisibleLeadingWhiteSpaceRangeRef();
if (!leadingWhiteSpaceRange.StartRef().IsSet()) {
return false;
}
if (aPoint.EqualsOrIsBefore(leadingWhiteSpaceRange.StartRef())) {
return true;
}
if (!leadingWhiteSpaceRange.EndRef().IsSet()) {
return false;
}
return aPoint.EqualsOrIsBefore(leadingWhiteSpaceRange.EndRef());
}
/**
* PrecedingContentMayBecomeInvisible() returns true if end of preceding
* content is collapsed (when ends with an ASCII white-space).
* Note that it's completely broken what this does. Don't use this method
* with new code.
*/
template <typename EditorDOMPointType>
bool PrecedingContentMayBecomeInvisible(
const EditorDOMPointType& aPoint) const {
MOZ_ASSERT(aPoint.IsSetAndValid());
// If this fragment is ends by block boundary, always the caller needs
// additional check.
if (mEnd.IsBlockBoundary() || mEnd.IsInlineEditingHostBoundary()) {
return true;
}
// If the point is in visible white-spaces and ends with an ASCII
// white-space, it may be collapsed even if it won't be end of line.
const VisibleWhiteSpacesData& visibleWhiteSpaces =
VisibleWhiteSpacesDataRef();
if (!visibleWhiteSpaces.IsInitialized()) {
return false;
}
// XXX Odd case, but keep traditional behavior of `FindNearestRun()`.
if (!visibleWhiteSpaces.StartRef().IsSet()) {
return true;
}
if (!visibleWhiteSpaces.StartRef().EqualsOrIsBefore(aPoint)) {
return false;
}
// XXX Odd case, but keep traditional behavior of `FindNearestRun()`.
if (visibleWhiteSpaces.EndsByTrailingWhiteSpaces()) {
return true;
}
// XXX Must be a bug. This claims that the caller needs additional
// check even when there is no white-spaces.
if (visibleWhiteSpaces.StartRef() == visibleWhiteSpaces.EndRef()) {
return true;
}
return aPoint.IsBefore(visibleWhiteSpaces.EndRef());
}
/**
* GetPreviousNBSPPointIfNeedToReplaceWithASCIIWhiteSpace() may return an
* NBSP point which should be replaced with an ASCII white-space when we're
* inserting text into aPointToInsert. Note that this is a helper method for
* the traditional white-space normalizer. Don't use this with the new
* white-space normalizer.
* Must be called only when VisibleWhiteSpacesDataRef() returns initialized
* instance and previous character of aPointToInsert is in the range.
*/
EditorDOMPointInText GetPreviousNBSPPointIfNeedToReplaceWithASCIIWhiteSpace(
const EditorDOMPoint& aPointToInsert) const;
/**
* GetInclusiveNextNBSPPointIfNeedToReplaceWithASCIIWhiteSpace() may return
* an NBSP point which should be replaced with an ASCII white-space when
* the caller inserts text into aPointToInsert.
* Note that this is a helper method for the traditional white-space
* normalizer. Don't use this with the new white-space normalizer.
* Must be called only when VisibleWhiteSpacesDataRef() returns initialized
* instance, and inclusive next char of aPointToInsert is in the range.
*/
EditorDOMPointInText
GetInclusiveNextNBSPPointIfNeedToReplaceWithASCIIWhiteSpace(
const EditorDOMPoint& aPointToInsert) const;
/**
* GetReplaceRangeDataAtEndOfDeletionRange() and
* GetReplaceRangeDataAtStartOfDeletionRange() return delete range if
* end or start of deleting range splits invisible trailing/leading
* white-spaces and it may become visible, or return replace range if
* end or start of deleting range splits visible white-spaces and it
* causes some ASCII white-spaces become invisible unless replacing
* with an NBSP.
*/
ReplaceRangeData GetReplaceRangeDataAtEndOfDeletionRange(
const TextFragmentData& aTextFragmentDataAtStartToDelete) const;
ReplaceRangeData GetReplaceRangeDataAtStartOfDeletionRange(
const TextFragmentData& aTextFragmentDataAtEndToDelete) const;
/**
* VisibleWhiteSpacesDataRef() returns reference to visible white-spaces
* data. That is zero or more white-spaces which are visible.
* Note that when there is no visible content, it's not initialized.
* Otherwise, even if there is no white-spaces, it's initialized and
* the range is collapsed in such case.
*/
const VisibleWhiteSpacesData& VisibleWhiteSpacesDataRef() const;
private:
EditorDOMPoint mScanStartPoint;
RefPtr<const Element> mAncestorLimiter;
BoundaryData mStart;
BoundaryData mEnd;
NoBreakingSpaceData mNBSPData;
mutable Maybe<EditorDOMRange> mLeadingWhiteSpaceRange;
mutable Maybe<EditorDOMRange> mTrailingWhiteSpaceRange;
mutable Maybe<VisibleWhiteSpacesData> mVisibleWhiteSpacesData;
const Options mOptions;
};
const TextFragmentData& TextFragmentDataAtStartRef() const {
return mTextFragmentDataAtStart;
}
// The node passed to our constructor.
EditorDOMPoint mScanStartPoint;
// Together, the above represent the point at which we are building up ws
// info.
private:
/**
* ComputeRangeInTextNodesContainingInvisibleWhiteSpaces() returns range
* containing invisible white-spaces if deleting between aStart and aEnd
* causes them become visible.
*
* @param aStart TextFragmentData at start of deleting range.
* This must be initialized with DOM point in a text node.
* @param aEnd TextFragmentData at end of deleting range.
* This must be initialized with DOM point in a text node.
*/
static EditorDOMRangeInTexts
ComputeRangeInTextNodesContainingInvisibleWhiteSpaces(
const TextFragmentData& aStart, const TextFragmentData& aEnd);
TextFragmentData mTextFragmentDataAtStart;
friend class WhiteSpaceVisibilityKeeper;
friend class WSScanResult;
};
} // namespace mozilla
#endif // #ifndef WSRunScanner_h
|