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
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* Copyright (C) 2005-2024 Apple Inc. All rights reserved.
* Copyright (C) 2009 Google Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#pragma once
#include <wtf/Compiler.h>
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
#include <limits.h>
#include <unicode/ustring.h>
#include <wtf/ASCIICType.h>
#include <wtf/CheckedArithmetic.h>
#include <wtf/CompactPtr.h>
#include <wtf/DebugHeap.h>
#include <wtf/Expected.h>
#include <wtf/MathExtras.h>
#include <wtf/Packed.h>
#include <wtf/StdLibExtras.h>
#include <wtf/Vector.h>
#include <wtf/text/ASCIIFastPath.h>
#include <wtf/text/ASCIILiteral.h>
#include <wtf/text/ConversionMode.h>
#include <wtf/text/StringBuffer.h>
#include <wtf/text/StringCommon.h>
#include <wtf/text/StringHasherInlines.h>
#include <wtf/text/UTF8ConversionError.h>
#include <wtf/unicode/UTF8Conversion.h>
#if USE(CF)
typedef const struct __CFString * CFStringRef;
#endif
#ifdef __OBJC__
@class NSString;
#endif
#if HAVE(36BIT_ADDRESS)
#define STRING_IMPL_ALIGNMENT alignas(16)
#else
#define STRING_IMPL_ALIGNMENT
#endif
namespace JSC {
namespace LLInt { class Data; }
class LLIntOffsetsExtractor;
}
namespace WTF {
class SymbolImpl;
class SymbolRegistry;
struct ASCIICaseInsensitiveStringViewHashTranslator;
struct HashedUTF8CharactersTranslator;
struct HashTranslatorASCIILiteral;
struct LCharBufferTranslator;
struct StringViewHashTranslator;
struct SubstringTranslator;
struct UCharBufferTranslator;
template<typename> class RetainPtr;
template<typename> struct BufferFromStaticDataTranslator;
template<typename> struct HashAndCharactersTranslator;
// Define STRING_STATS to 1 turn on runtime statistics of string sizes and memory usage.
#define STRING_STATS 0
template<bool isSpecialCharacter(UChar), typename CharacterType, std::size_t Extent = std::dynamic_extent> bool containsOnly(std::span<const CharacterType, Extent>);
#if STRING_STATS
struct StringStats {
WTF_MAKE_STRUCT_FAST_ALLOCATED;
void add8BitString(unsigned length, bool isSubString = false)
{
++m_totalNumberStrings;
++m_number8BitStrings;
if (!isSubString)
m_total8BitData += length;
}
void add16BitString(unsigned length, bool isSubString = false)
{
++m_totalNumberStrings;
++m_number16BitStrings;
if (!isSubString)
m_total16BitData += length;
}
void removeString(StringImpl&);
void printStats();
static constexpr unsigned s_printStringStatsFrequency = 5000;
static std::atomic<unsigned> s_stringRemovesTillPrintStats;
std::atomic<unsigned> m_refCalls;
std::atomic<unsigned> m_derefCalls;
std::atomic<unsigned> m_totalNumberStrings;
std::atomic<unsigned> m_number8BitStrings;
std::atomic<unsigned> m_number16BitStrings;
std::atomic<unsigned long long> m_total8BitData;
std::atomic<unsigned long long> m_total16BitData;
};
#define STRING_STATS_ADD_8BIT_STRING(length) StringImpl::stringStats().add8BitString(length)
#define STRING_STATS_ADD_8BIT_STRING2(length, isSubString) StringImpl::stringStats().add8BitString(length, isSubString)
#define STRING_STATS_ADD_16BIT_STRING(length) StringImpl::stringStats().add16BitString(length)
#define STRING_STATS_ADD_16BIT_STRING2(length, isSubString) StringImpl::stringStats().add16BitString(length, isSubString)
#define STRING_STATS_REMOVE_STRING(string) StringImpl::stringStats().removeString(string)
#define STRING_STATS_REF_STRING(string) ++StringImpl::stringStats().m_refCalls;
#define STRING_STATS_DEREF_STRING(string) ++StringImpl::stringStats().m_derefCalls;
#else
#define STRING_STATS_ADD_8BIT_STRING(length) ((void)0)
#define STRING_STATS_ADD_8BIT_STRING2(length, isSubString) ((void)0)
#define STRING_STATS_ADD_16BIT_STRING(length) ((void)0)
#define STRING_STATS_ADD_16BIT_STRING2(length, isSubString) ((void)0)
#define STRING_STATS_ADD_UPCONVERTED_STRING(length) ((void)0)
#define STRING_STATS_REMOVE_STRING(string) ((void)0)
#define STRING_STATS_REF_STRING(string) ((void)0)
#define STRING_STATS_DEREF_STRING(string) ((void)0)
#endif
class STRING_IMPL_ALIGNMENT StringImplShape {
WTF_MAKE_NONCOPYABLE(StringImplShape);
public:
static constexpr unsigned MaxLength = std::numeric_limits<int32_t>::max();
protected:
StringImplShape(unsigned refCount, std::span<const LChar>, unsigned hashAndFlags);
StringImplShape(unsigned refCount, std::span<const UChar>, unsigned hashAndFlags);
enum ConstructWithConstExprTag { ConstructWithConstExpr };
template<unsigned characterCount> constexpr StringImplShape(unsigned refCount, unsigned length, const char (&characters)[characterCount], unsigned hashAndFlags, ConstructWithConstExprTag);
template<unsigned characterCount> constexpr StringImplShape(unsigned refCount, unsigned length, const char16_t (&characters)[characterCount], unsigned hashAndFlags, ConstructWithConstExprTag);
unsigned m_refCount;
unsigned m_length;
union {
const LChar* m_data8;
const UChar* m_data16;
// It seems that reinterpret_cast prevents constexpr's compile time initialization in VC++.
// These are needed to avoid reinterpret_cast.
const char* m_data8Char;
const char16_t* m_data16Char;
};
mutable unsigned m_hashAndFlags;
};
// FIXME: Use of StringImpl and const is rather confused.
// The actual string inside a StringImpl is immutable, so you can't modify a string using a StringImpl&.
// We could mark every member function const and always use "const StringImpl&" and "const StringImpl*".
// Or we could say that "const" doesn't make sense at all and use "StringImpl&" and "StringImpl*" everywhere.
// Right now we use a mix of both, which makes code more confusing and has no benefit.
DECLARE_COMPACT_ALLOCATOR_WITH_HEAP_IDENTIFIER(StringImpl);
class StringImpl : private StringImplShape {
WTF_MAKE_NONCOPYABLE(StringImpl);
WTF_MAKE_FAST_COMPACT_ALLOCATED_WITH_HEAP_IDENTIFIER(StringImpl);
friend class AtomStringImpl;
friend class JSC::LLInt::Data;
friend class JSC::LLIntOffsetsExtractor;
friend class PrivateSymbolImpl;
friend class RegisteredSymbolImpl;
friend class SymbolImpl;
friend class ExternalStringImpl;
friend struct WTF::ASCIICaseInsensitiveStringViewHashTranslator;
friend struct WTF::HashedUTF8CharactersTranslator;
friend struct WTF::HashTranslatorASCIILiteral;
friend struct WTF::LCharBufferTranslator;
friend struct WTF::StringViewHashTranslator;
friend struct WTF::SubstringTranslator;
friend struct WTF::UCharBufferTranslator;
template<typename> friend struct WTF::BufferFromStaticDataTranslator;
template<typename> friend struct WTF::HashAndCharactersTranslator;
friend WTF_EXPORT_PRIVATE bool equal(const StringImpl&, const StringImpl&);
public:
enum BufferOwnership { BufferInternal, BufferOwned, BufferSubstring, BufferExternal };
static constexpr unsigned MaxLength = StringImplShape::MaxLength;
// The bottom 6 bits in the hash are flags, but reserve 8 bits since StringHash only has 24 bits anyway.
static constexpr const unsigned s_flagCount = 8;
private:
static constexpr const unsigned s_flagMask = (1u << s_flagCount) - 1;
static_assert(s_flagCount <= StringHasher::flagCount, "StringHasher reserves enough bits for StringImpl flags");
static constexpr const unsigned s_flagStringKindCount = 4;
static constexpr const unsigned s_hashZeroValue = 0;
static constexpr const unsigned s_hashFlagStringKindIsAtom = 1u << (s_flagStringKindCount);
static constexpr const unsigned s_hashFlagStringKindIsSymbol = 1u << (s_flagStringKindCount + 1);
static constexpr const unsigned s_hashMaskStringKind = s_hashFlagStringKindIsAtom | s_hashFlagStringKindIsSymbol;
static constexpr const unsigned s_hashFlagDidReportCost = 1u << 3;
static constexpr const unsigned s_hashFlag8BitBuffer = 1u << 2;
static constexpr const unsigned s_hashMaskBufferOwnership = (1u << 0) | (1u << 1);
enum StringKind {
StringNormal = 0u, // non-symbol, non-atomic
StringAtom = s_hashFlagStringKindIsAtom, // non-symbol, atomic
StringSymbol = s_hashFlagStringKindIsSymbol, // symbol, non-atomic
};
// Create a normal 8-bit string with internal storage (BufferInternal).
enum Force8Bit { Force8BitConstructor };
StringImpl(unsigned length, Force8Bit);
// Create a normal 16-bit string with internal storage (BufferInternal).
explicit StringImpl(unsigned length);
// Create a StringImpl adopting ownership of the provided buffer (BufferOwned).
template<typename Malloc> explicit StringImpl(MallocSpan<LChar, Malloc>);
template<typename Malloc> explicit StringImpl(MallocSpan<UChar, Malloc>);
enum ConstructWithoutCopyingTag { ConstructWithoutCopying };
StringImpl(std::span<const UChar>, ConstructWithoutCopyingTag);
StringImpl(std::span<const LChar>, ConstructWithoutCopyingTag);
// Used to create new strings that are a substring of an existing StringImpl (BufferSubstring).
StringImpl(std::span<const LChar>, Ref<StringImpl>&&);
StringImpl(std::span<const UChar>, Ref<StringImpl>&&);
public:
WTF_EXPORT_PRIVATE static void destroy(StringImpl*);
WTF_EXPORT_PRIVATE static Ref<StringImpl> create(std::span<const UChar>);
WTF_EXPORT_PRIVATE static Ref<StringImpl> create(std::span<const LChar>);
ALWAYS_INLINE static Ref<StringImpl> create(std::span<const char> characters) { return create(byteCast<LChar>(characters)); }
WTF_EXPORT_PRIVATE static Ref<StringImpl> create8BitIfPossible(std::span<const UChar>);
// Not using create() naming to encourage developers to call create(ASCIILiteral) when they have a string literal.
ALWAYS_INLINE static Ref<StringImpl> createFromCString(const char* characters) { return create(unsafeSpan8(characters)); }
static Ref<StringImpl> createSubstringSharingImpl(StringImpl&, unsigned offset, unsigned length);
ALWAYS_INLINE static Ref<StringImpl> create(ASCIILiteral literal) { return createWithoutCopying(literal.span8()); }
static Ref<StringImpl> createWithoutCopying(std::span<const UChar> characters) { return characters.empty() ? Ref { *empty() } : createWithoutCopyingNonEmpty(characters); }
static Ref<StringImpl> createWithoutCopying(std::span<const LChar> characters) { return characters.empty() ? Ref { *empty() } : createWithoutCopyingNonEmpty(characters); }
ALWAYS_INLINE static Ref<StringImpl> createWithoutCopying(std::span<const char> characters) { return createWithoutCopying(byteCast<LChar>(characters)); }
WTF_EXPORT_PRIVATE static Ref<StringImpl> createUninitialized(size_t length, std::span<LChar>&);
WTF_EXPORT_PRIVATE static Ref<StringImpl> createUninitialized(size_t length, std::span<UChar>&);
template<typename CharacterType> static RefPtr<StringImpl> tryCreateUninitialized(size_t length, std::span<CharacterType>&);
static Ref<StringImpl> createByReplacingInCharacters(std::span<const LChar>, UChar target, UChar replacement, size_t indexOfFirstTargetCharacter);
static Ref<StringImpl> createByReplacingInCharacters(std::span<const UChar>, UChar target, UChar replacement, size_t indexOfFirstTargetCharacter);
static Ref<StringImpl> createStaticStringImpl(std::span<const char> characters)
{
ASSERT(charactersAreAllASCII(byteCast<LChar>(characters)));
return createStaticStringImpl(byteCast<LChar>(characters));
}
WTF_EXPORT_PRIVATE static Ref<StringImpl> createStaticStringImpl(std::span<const LChar>);
WTF_EXPORT_PRIVATE static Ref<StringImpl> createStaticStringImpl(std::span<const UChar>);
// Reallocate the StringImpl. The originalString must be only owned by the Ref,
// and the buffer ownership must be BufferInternal. Just like the input pointer of realloc(),
// the originalString can't be used after this function.
static Ref<StringImpl> reallocate(Ref<StringImpl>&& originalString, unsigned length, LChar*& data);
static Ref<StringImpl> reallocate(Ref<StringImpl>&& originalString, unsigned length, UChar*& data);
static Expected<Ref<StringImpl>, UTF8ConversionError> tryReallocate(Ref<StringImpl>&& originalString, unsigned length, LChar*& data);
static Expected<Ref<StringImpl>, UTF8ConversionError> tryReallocate(Ref<StringImpl>&& originalString, unsigned length, UChar*& data);
static constexpr unsigned flagsOffset() { return OBJECT_OFFSETOF(StringImpl, m_hashAndFlags); }
static constexpr unsigned flagIs8Bit() { return s_hashFlag8BitBuffer; }
static constexpr unsigned flagIsAtom() { return s_hashFlagStringKindIsAtom; }
static constexpr unsigned flagIsSymbol() { return s_hashFlagStringKindIsSymbol; }
static constexpr unsigned maskStringKind() { return s_hashMaskStringKind; }
static constexpr unsigned dataOffset() { return OBJECT_OFFSETOF(StringImpl, m_data8); }
template<typename CharacterType, size_t inlineCapacity, typename OverflowHandler, size_t minCapacity, typename Malloc>
static Ref<StringImpl> adopt(Vector<CharacterType, inlineCapacity, OverflowHandler, minCapacity, Malloc>&&);
WTF_EXPORT_PRIVATE static Ref<StringImpl> adopt(StringBuffer<UChar>&&);
WTF_EXPORT_PRIVATE static Ref<StringImpl> adopt(StringBuffer<LChar>&&);
unsigned length() const { return m_length; }
static constexpr ptrdiff_t lengthMemoryOffset() { return OBJECT_OFFSETOF(StringImpl, m_length); }
bool isEmpty() const { return !m_length; }
bool is8Bit() const { return m_hashAndFlags & s_hashFlag8BitBuffer; }
ALWAYS_INLINE std::span<const LChar> span8() const LIFETIME_BOUND { ASSERT(is8Bit()); return { m_data8, length() }; }
ALWAYS_INLINE std::span<const UChar> span16() const LIFETIME_BOUND { ASSERT(!is8Bit() || isEmpty()); return { m_data16, length() }; }
template<typename CharacterType> std::span<const CharacterType> span() const LIFETIME_BOUND;
size_t cost() const;
size_t costDuringGC();
WTF_EXPORT_PRIVATE size_t sizeInBytes() const;
bool isSymbol() const { return m_hashAndFlags & s_hashFlagStringKindIsSymbol; }
bool isAtom() const { return m_hashAndFlags & s_hashFlagStringKindIsAtom; }
void setIsAtom(bool);
bool isExternal() const { return bufferOwnership() == BufferExternal; }
bool isSubString() const { return bufferOwnership() == BufferSubstring; }
static WTF_EXPORT_PRIVATE Expected<CString, UTF8ConversionError> utf8ForCharacters(std::span<const LChar> characters);
static WTF_EXPORT_PRIVATE Expected<CString, UTF8ConversionError> utf8ForCharacters(std::span<const UChar> characters, ConversionMode = LenientConversion);
static WTF_EXPORT_PRIVATE Expected<size_t, UTF8ConversionError> utf8ForCharactersIntoBuffer(std::span<const UChar> characters, ConversionMode, Vector<char8_t, 1024>&);
template<typename Func>
static Expected<std::invoke_result_t<Func, std::span<const char8_t>>, UTF8ConversionError> tryGetUTF8ForCharacters(const Func&, std::span<const LChar> characters);
template<typename Func>
static Expected<std::invoke_result_t<Func, std::span<const char8_t>>, UTF8ConversionError> tryGetUTF8ForCharacters(const Func&, std::span<const UChar> characters, ConversionMode = LenientConversion);
template<typename Func>
Expected<std::invoke_result_t<Func, std::span<const char8_t>>, UTF8ConversionError> tryGetUTF8(const Func&, ConversionMode = LenientConversion) const;
WTF_EXPORT_PRIVATE Expected<CString, UTF8ConversionError> tryGetUTF8(ConversionMode = LenientConversion) const;
WTF_EXPORT_PRIVATE CString utf8(ConversionMode = LenientConversion) const;
private:
// The high bits of 'hash' are always empty, but we prefer to store our flags
// in the low bits because it makes them slightly more efficient to access.
// So, we shift left and right when setting and getting our hash code.
void setHash(unsigned) const;
unsigned rawHash() const { return m_hashAndFlags >> s_flagCount; }
public:
bool hasHash() const { return !!rawHash(); }
unsigned existingHash() const { ASSERT(hasHash()); return rawHash(); }
unsigned hash() const { return hasHash() ? rawHash() : hashSlowCase(); }
WTF_EXPORT_PRIVATE unsigned concurrentHash() const;
unsigned symbolAwareHash() const;
unsigned existingSymbolAwareHash() const;
SUPPRESS_TSAN bool isStatic() const { return m_refCount & s_refCountFlagIsStaticString; }
size_t refCount() const { return m_refCount / s_refCountIncrement; }
bool hasOneRef() const { return m_refCount == s_refCountIncrement; }
bool hasAtLeastOneRef() const { return m_refCount; } // For assertions.
void ref();
void deref();
class StaticStringImpl : private StringImplShape {
WTF_MAKE_NONCOPYABLE(StaticStringImpl);
public:
// Used to construct static strings, which have an special refCount that can never hit zero.
// This means that the static string will never be destroyed, which is important because
// static strings will be shared across threads & ref-counted in a non-threadsafe manner.
//
// In order to make StaticStringImpl thread safe, we also need to ensure that the rest of
// the fields are never mutated by threads. We have this guarantee because:
//
// 1. m_length is only set on construction and never mutated thereafter.
//
// 2. m_data8 and m_data16 are only set on construction and never mutated thereafter.
// We also know that a StringImpl never changes from 8 bit to 16 bit because there
// is no way to set/clear the s_hashFlag8BitBuffer flag other than at construction.
//
// 3. m_hashAndFlags will not be mutated by different threads because:
//
// a. StaticStringImpl's constructor sets the s_hashFlagDidReportCost flag to ensure
// that StringImpl::cost() returns early.
// This means StaticStringImpl costs are not counted. But since there should only
// be a finite set of StaticStringImpls, their cost can be aggregated into a single
// system cost if needed.
// b. setIsAtom() is never called on a StaticStringImpl.
// setIsAtom() asserts !isStatic().
// c. setHash() is never called on a StaticStringImpl.
// StaticStringImpl's constructor sets the hash on construction.
// StringImpl::hash() only sets a new hash iff !hasHash().
// Additionally, StringImpl::setHash() asserts hasHash() and !isStatic().
template<unsigned characterCount> explicit constexpr StaticStringImpl(const char (&characters)[characterCount], StringKind = StringNormal);
template<unsigned characterCount> explicit constexpr StaticStringImpl(const char16_t (&characters)[characterCount], StringKind = StringNormal);
operator StringImpl&();
};
WTF_EXPORT_PRIVATE static StaticStringImpl s_emptyAtomString;
ALWAYS_INLINE static StringImpl* empty() { SUPPRESS_MEMORY_UNSAFE_CAST return reinterpret_cast<StringImpl*>(&s_emptyAtomString); }
// FIXME: Do these functions really belong in StringImpl?
template<typename CharacterType>
ALWAYS_INLINE static void copyCharacters(std::span<CharacterType> destination, std::span<const CharacterType> source)
{
return copyElements(destination, source);
}
ALWAYS_INLINE static void copyCharacters(std::span<UChar> destination, std::span<const LChar> source)
{
static_assert(sizeof(UChar) == sizeof(uint16_t));
static_assert(sizeof(LChar) == sizeof(uint8_t));
return copyElements(spanReinterpretCast<uint16_t>(destination), source);
}
ALWAYS_INLINE static void copyCharacters(std::span<LChar> destination, std::span<const UChar> source)
{
static_assert(sizeof(UChar) == sizeof(uint16_t));
static_assert(sizeof(LChar) == sizeof(uint8_t));
#if ASSERT_ENABLED
for (auto character : source)
ASSERT(isLatin1(character));
#endif
return copyElements(destination, spanReinterpretCast<const uint16_t>(source));
}
// Some string features, like reference counting and the atomicity flag, are not
// thread-safe. We achieve thread safety by isolation, giving each thread
// its own copy of the string.
Ref<StringImpl> isolatedCopy() const;
WTF_EXPORT_PRIVATE Ref<StringImpl> substring(unsigned position, unsigned length = MaxLength);
UChar at(unsigned) const;
UChar operator[](unsigned i) const { return at(i); }
WTF_EXPORT_PRIVATE char32_t characterStartingAt(unsigned);
// FIXME: Like the strict functions above, these give false for "ok" when there is trailing garbage.
// Like the non-strict functions above, these return the value when there is trailing garbage.
// It would be better if these were more consistent with the above functions instead.
double toDouble(bool* ok = nullptr);
float toFloat(bool* ok = nullptr);
WTF_EXPORT_PRIVATE Ref<StringImpl> convertToASCIILowercase();
WTF_EXPORT_PRIVATE Ref<StringImpl> convertToASCIIUppercase();
WTF_EXPORT_PRIVATE Ref<StringImpl> convertToLowercaseWithoutLocale();
WTF_EXPORT_PRIVATE Ref<StringImpl> convertToLowercaseWithoutLocaleStartingAtFailingIndex8Bit(unsigned);
WTF_EXPORT_PRIVATE Ref<StringImpl> convertToUppercaseWithoutLocale();
WTF_EXPORT_PRIVATE Ref<StringImpl> convertToLowercaseWithLocale(const AtomString& localeIdentifier);
WTF_EXPORT_PRIVATE Ref<StringImpl> convertToUppercaseWithLocale(const AtomString& localeIdentifier);
Ref<StringImpl> foldCase();
WTF_EXPORT_PRIVATE Ref<StringImpl> simplifyWhiteSpace(CodeUnitMatchFunction);
WTF_EXPORT_PRIVATE Ref<StringImpl> trim(CodeUnitMatchFunction);
template<typename Predicate> Ref<StringImpl> removeCharacters(const Predicate&);
bool containsOnlyASCII() const;
bool containsOnlyLatin1() const;
template<bool isSpecialCharacter(UChar)> bool containsOnly() const;
size_t find(LChar character, size_t start = 0);
size_t find(char character, size_t start = 0);
size_t find(UChar character, size_t start = 0);
template<typename CodeUnitMatchFunction, std::enable_if_t<std::is_invocable_r_v<bool, CodeUnitMatchFunction, UChar>>* = nullptr>
size_t find(CodeUnitMatchFunction, size_t start = 0);
ALWAYS_INLINE size_t find(ASCIILiteral literal, size_t start = 0) { return find(literal.span8(), start); }
WTF_EXPORT_PRIVATE size_t find(StringView);
WTF_EXPORT_PRIVATE size_t find(StringView, size_t start);
WTF_EXPORT_PRIVATE size_t findIgnoringASCIICase(StringView) const;
WTF_EXPORT_PRIVATE size_t findIgnoringASCIICase(StringView, size_t start) const;
WTF_EXPORT_PRIVATE size_t reverseFind(UChar, size_t start = MaxLength);
WTF_EXPORT_PRIVATE size_t reverseFind(StringView, size_t start = MaxLength);
ALWAYS_INLINE size_t reverseFind(ASCIILiteral literal, size_t start = MaxLength) { return reverseFind(literal.span8(), start); }
WTF_EXPORT_PRIVATE bool startsWith(StringView) const;
WTF_EXPORT_PRIVATE bool startsWithIgnoringASCIICase(StringView) const;
WTF_EXPORT_PRIVATE bool startsWith(UChar) const;
WTF_EXPORT_PRIVATE bool startsWith(std::span<const char>) const;
WTF_EXPORT_PRIVATE bool hasInfixStartingAt(StringView, size_t start) const;
WTF_EXPORT_PRIVATE bool endsWith(StringView);
WTF_EXPORT_PRIVATE bool endsWithIgnoringASCIICase(StringView) const;
WTF_EXPORT_PRIVATE bool endsWith(UChar) const;
WTF_EXPORT_PRIVATE bool endsWith(std::span<const char>) const;
WTF_EXPORT_PRIVATE bool hasInfixEndingAt(StringView, size_t end) const;
WTF_EXPORT_PRIVATE Ref<StringImpl> replace(UChar, UChar);
WTF_EXPORT_PRIVATE Ref<StringImpl> replace(UChar, StringView);
ALWAYS_INLINE Ref<StringImpl> replace(UChar pattern, std::span<const char> replacement) { return replace(pattern, byteCast<LChar>(replacement)); }
WTF_EXPORT_PRIVATE Ref<StringImpl> replace(UChar, std::span<const LChar>);
Ref<StringImpl> replace(UChar, std::span<const UChar>);
WTF_EXPORT_PRIVATE Ref<StringImpl> replace(StringView, StringView);
WTF_EXPORT_PRIVATE Ref<StringImpl> replace(size_t start, size_t length, StringView);
WTF_EXPORT_PRIVATE std::optional<UCharDirection> defaultWritingDirection();
#if USE(CF)
RetainPtr<CFStringRef> createCFString();
#endif
#ifdef __OBJC__
WTF_EXPORT_PRIVATE operator NSString *();
#endif
#if STRING_STATS
ALWAYS_INLINE static StringStats& stringStats() { return m_stringStats; }
#endif
BufferOwnership bufferOwnership() const { return static_cast<BufferOwnership>(m_hashAndFlags & s_hashMaskBufferOwnership); }
template<typename T> static constexpr size_t headerSize() { return tailOffset<T>(); }
protected:
~StringImpl();
// Used to create new symbol string that holds an existing [[Description]] string as a substring buffer (BufferSubstring).
enum CreateSymbolTag { CreateSymbol };
StringImpl(CreateSymbolTag, std::span<const LChar>);
StringImpl(CreateSymbolTag, std::span<const UChar>);
// Null symbol.
explicit StringImpl(CreateSymbolTag);
private:
template<typename> static size_t allocationSize(Checked<size_t> tailElementCount);
template<typename> static size_t maxInternalLength();
template<typename> static constexpr size_t tailOffset();
WTF_EXPORT_PRIVATE size_t find(std::span<const LChar>, size_t start);
WTF_EXPORT_PRIVATE size_t reverseFind(std::span<const LChar>, size_t start);
bool requiresCopy() const;
template<typename T> const T* tailPointer() const;
template<typename T> T* tailPointer();
StringImpl* const& substringBuffer() const;
StringImpl*& substringBuffer();
enum class CaseConvertType { Upper, Lower };
template<CaseConvertType, typename CharacterType> static Ref<StringImpl> convertASCIICase(StringImpl&, std::span<const CharacterType>);
WTF_EXPORT_PRIVATE static Ref<StringImpl> createWithoutCopyingNonEmpty(std::span<const LChar>);
WTF_EXPORT_PRIVATE static Ref<StringImpl> createWithoutCopyingNonEmpty(std::span<const UChar>);
template<class CodeUnitPredicate> Ref<StringImpl> trimMatchedCharacters(CodeUnitPredicate);
template<typename CharacterType, typename Predicate> ALWAYS_INLINE Ref<StringImpl> removeCharactersImpl(std::span<const CharacterType> characters, const Predicate&);
template<typename CharacterType, class CodeUnitPredicate> Ref<StringImpl> simplifyMatchedCharactersToSpace(CodeUnitPredicate);
template<typename CharacterType> static Ref<StringImpl> constructInternal(StringImpl&, unsigned);
template<typename CharacterType> static Ref<StringImpl> createUninitializedInternal(size_t, std::span<CharacterType>&);
template<typename CharacterType> static Ref<StringImpl> createUninitializedInternalNonEmpty(size_t, std::span<CharacterType>&);
template<typename CharacterType> static Expected<Ref<StringImpl>, UTF8ConversionError> reallocateInternal(Ref<StringImpl>&&, unsigned, CharacterType*&);
template<typename CharacterType> static Ref<StringImpl> createInternal(std::span<const CharacterType>);
WTF_EXPORT_PRIVATE NEVER_INLINE unsigned hashSlowCase() const;
Ref<StringImpl> convertToUppercaseWithoutLocaleStartingAtFailingIndex8Bit(unsigned);
Ref<StringImpl> convertToUppercaseWithoutLocaleUpconvert();
// The bottom bit in the ref count indicates a static (immortal) string.
static constexpr unsigned s_refCountFlagIsStaticString = 0x1;
static constexpr unsigned s_refCountIncrement = 0x2; // This allows us to ref / deref without disturbing the static string flag.
#if STRING_STATS
WTF_EXPORT_PRIVATE static StringStats m_stringStats;
#endif
public:
void assertHashIsCorrect() const;
};
using StaticStringImpl = StringImpl::StaticStringImpl;
static_assert(sizeof(StringImpl) == sizeof(StaticStringImpl));
template<typename CharacterType>
struct HashTranslatorCharBuffer {
std::span<const CharacterType> characters;
unsigned hash;
HashTranslatorCharBuffer(std::span<const CharacterType> characters)
: characters(characters)
, hash(StringHasher::computeHashAndMaskTop8Bits(characters))
{
}
HashTranslatorCharBuffer(std::span<const CharacterType> characters, unsigned hash)
: characters(characters)
, hash(hash)
{
}
};
#if ASSERT_ENABLED
// StringImpls created from StaticStringImpl will ASSERT in the generic ValueCheck<T>::checkConsistency
// as they are not allocated by fastMalloc. We don't currently have any way to detect that case
// so we ignore the consistency check for all StringImpl*.
template<> struct ValueCheck<StringImpl*> {
static void checkConsistency(const StringImpl*) { }
};
#endif // ASSERT_ENABLED
WTF_EXPORT_PRIVATE bool equal(const StringImpl*, const StringImpl*);
WTF_EXPORT_PRIVATE bool equal(const StringImpl*, const LChar*);
inline bool equal(const StringImpl* a, const char* b) { return equal(a, byteCast<LChar>(b)); }
WTF_EXPORT_PRIVATE bool equal(const StringImpl*, std::span<const LChar>);
WTF_EXPORT_PRIVATE bool equal(const StringImpl*, std::span<const UChar>);
ALWAYS_INLINE bool equal(const StringImpl* a, ASCIILiteral b) { return equal(a, b.span8()); }
inline bool equal(const StringImpl* a, std::span<const char> b) { return equal(a, byteCast<LChar>(b)); }
inline bool equal(const LChar* a, StringImpl* b) { return equal(b, a); }
inline bool equal(const char* a, StringImpl* b) { return equal(b, byteCast<LChar>(a)); }
WTF_EXPORT_PRIVATE bool equal(const StringImpl& a, const StringImpl& b);
WTF_EXPORT_PRIVATE bool equalIgnoringNullity(StringImpl*, StringImpl*);
WTF_EXPORT_PRIVATE bool equalIgnoringNullity(std::span<const UChar>, StringImpl*);
bool equalIgnoringASCIICase(const StringImpl&, const StringImpl&);
WTF_EXPORT_PRIVATE bool equalIgnoringASCIICase(const StringImpl*, const StringImpl*);
bool equalIgnoringASCIICase(const StringImpl&, ASCIILiteral);
bool equalIgnoringASCIICase(const StringImpl*, ASCIILiteral);
WTF_EXPORT_PRIVATE bool equalIgnoringASCIICaseNonNull(const StringImpl*, const StringImpl*);
bool equalLettersIgnoringASCIICase(const StringImpl&, ASCIILiteral);
bool equalLettersIgnoringASCIICase(const StringImpl*, ASCIILiteral);
template<typename CodeUnit, typename CodeUnitMatchFunction, std::enable_if_t<std::is_invocable_r_v<bool, CodeUnitMatchFunction, CodeUnit>>* = nullptr>
size_t find(std::span<const CodeUnit>, CodeUnitMatchFunction&&, size_t start = 0);
template<typename CharacterType> size_t reverseFindLineTerminator(std::span<const CharacterType>, size_t start = StringImpl::MaxLength);
template<typename CharacterType> size_t reverseFind(std::span<const CharacterType>, CharacterType matchCharacter, size_t start = StringImpl::MaxLength);
size_t reverseFind(std::span<const UChar>, LChar matchCharacter, size_t start = StringImpl::MaxLength);
size_t reverseFind(std::span<const LChar>, UChar matchCharacter, size_t start = StringImpl::MaxLength);
template<size_t inlineCapacity> bool equalIgnoringNullity(const Vector<UChar, inlineCapacity>&, StringImpl*);
template<typename CharacterType1, typename CharacterType2> int codePointCompare(std::span<const CharacterType1>, std::span<const CharacterType2>);
int codePointCompare(const StringImpl*, const StringImpl*);
bool isUnicodeWhitespace(UChar);
// Deprecated as this excludes U+0085 and U+00A0 which are part of Unicode's White_Space definition:
// https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
bool deprecatedIsSpaceOrNewline(UChar);
// Inverse of deprecatedIsSpaceOrNewline for predicates
bool deprecatedIsNotSpaceOrNewline(UChar);
// StringHash is the default hash for StringImpl* and RefPtr<StringImpl>
template<typename> struct DefaultHash;
template<> struct DefaultHash<StringImpl*>;
template<> struct DefaultHash<RefPtr<StringImpl>>;
template<> struct DefaultHash<PackedPtr<StringImpl>>;
template<> struct DefaultHash<CompactPtr<StringImpl>>;
#define MAKE_STATIC_STRING_IMPL(characters) ([] { \
static StaticStringImpl impl(characters); \
return &impl; \
}())
template<> ALWAYS_INLINE Ref<StringImpl> StringImpl::constructInternal<LChar>(StringImpl& string, unsigned length)
{
return adoptRef(*new (NotNull, &string) StringImpl { length, Force8BitConstructor });
}
template<> ALWAYS_INLINE Ref<StringImpl> StringImpl::constructInternal<UChar>(StringImpl& string, unsigned length)
{
return adoptRef(*new (NotNull, &string) StringImpl { length });
}
template<> ALWAYS_INLINE std::span<const LChar> StringImpl::span<LChar>() const
{
return span8();
}
template<> ALWAYS_INLINE std::span<const UChar> StringImpl::span<UChar>() const
{
return span16();
}
template<typename CodeUnit, typename CodeUnitMatchFunction, std::enable_if_t<std::is_invocable_r_v<bool, CodeUnitMatchFunction, CodeUnit>>*>
inline size_t find(std::span<const CodeUnit> characters, CodeUnitMatchFunction&& matchFunction, size_t start)
{
while (start < characters.size()) {
if (matchFunction(characters[start]))
return start;
++start;
}
return notFound;
}
template<typename CharacterType> inline size_t reverseFindLineTerminator(std::span<const CharacterType> characters, size_t start)
{
if (characters.empty())
return notFound;
if (start >= characters.size())
start = characters.size() - 1;
auto character = characters[start];
while (character != '\n' && character != '\r') {
if (!start--)
return notFound;
character = characters[start];
}
return start;
}
template<typename CharacterType> inline size_t reverseFind(std::span<const CharacterType> characters, CharacterType matchCharacter, size_t start)
{
if (characters.empty())
return notFound;
if (start >= characters.size())
start = characters.size() - 1;
while (characters[start] != matchCharacter) {
if (!start--)
return notFound;
}
return start;
}
ALWAYS_INLINE size_t reverseFind(std::span<const UChar> characters, LChar matchCharacter, size_t start)
{
return reverseFind(characters, static_cast<UChar>(matchCharacter), start);
}
inline size_t reverseFind(std::span<const LChar> characters, UChar matchCharacter, size_t start)
{
if (!isLatin1(matchCharacter))
return notFound;
return reverseFind(characters, static_cast<LChar>(matchCharacter), start);
}
inline size_t StringImpl::find(LChar character, size_t start)
{
if (is8Bit())
return WTF::find(span8(), character, start);
return WTF::find(span16(), character, start);
}
ALWAYS_INLINE size_t StringImpl::find(char character, size_t start)
{
return find(byteCast<LChar>(character), start);
}
inline size_t StringImpl::find(UChar character, size_t start)
{
if (is8Bit())
return WTF::find(span8(), character, start);
return WTF::find(span16(), character, start);
}
template<typename CodeUnitMatchFunction, std::enable_if_t<std::is_invocable_r_v<bool, CodeUnitMatchFunction, UChar>>*>
size_t StringImpl::find(CodeUnitMatchFunction matchFunction, size_t start)
{
if (is8Bit())
return WTF::find(span8(), matchFunction, start);
return WTF::find(span16(), matchFunction, start);
}
template<size_t inlineCapacity> inline bool equalIgnoringNullity(const Vector<UChar, inlineCapacity>& a, StringImpl* b)
{
return equalIgnoringNullity(a.data(), a.size(), b);
}
template<typename CharacterType1, typename CharacterType2> inline int codePointCompare(std::span<const CharacterType1> characters1, std::span<const CharacterType2> characters2)
{
size_t commonLength = std::min(characters1.size(), characters2.size());
auto* characters1Ptr = characters1.data();
auto* characters2Ptr = characters2.data();
size_t position = 0;
while (position < commonLength && *characters1Ptr == *characters2Ptr) {
++characters1Ptr;
++characters2Ptr;
++position;
}
if (position < commonLength)
return (characters1Ptr[0] > characters2Ptr[0]) ? 1 : -1;
if (characters1.size() == characters2.size())
return 0;
return (characters1.size() > characters2.size()) ? 1 : -1;
}
inline int codePointCompare(const StringImpl* string1, const StringImpl* string2)
{
// FIXME: Should null strings compare as less than empty strings rather than equal to them?
if (!string1)
return (string2 && string2->length()) ? -1 : 0;
if (!string2)
return string1->length() ? 1 : 0;
bool string1Is8Bit = string1->is8Bit();
bool string2Is8Bit = string2->is8Bit();
if (string1Is8Bit) {
if (string2Is8Bit)
return codePointCompare(string1->span8(), string2->span8());
return codePointCompare(string1->span8(), string2->span16());
}
if (string2Is8Bit)
return codePointCompare(string1->span16(), string2->span8());
return codePointCompare(string1->span16(), string2->span16());
}
// FIXME: For LChar, isUnicodeCompatibleASCIIWhitespace(character) || character == 0x0085 || character == noBreakSpace would be enough
inline bool isUnicodeWhitespace(UChar character)
{
return isASCII(character) ? isUnicodeCompatibleASCIIWhitespace(character) : u_isUWhiteSpace(character);
}
inline bool deprecatedIsSpaceOrNewline(UChar character)
{
// Use isUnicodeCompatibleASCIIWhitespace() for all Latin-1 characters, which is incorrect as it
// excludes U+0085 and U+00A0.
return isLatin1(character) ? isUnicodeCompatibleASCIIWhitespace(character) : u_charDirection(character) == U_WHITE_SPACE_NEUTRAL;
}
inline bool deprecatedIsNotSpaceOrNewline(UChar character)
{
return !deprecatedIsSpaceOrNewline(character);
}
inline StringImplShape::StringImplShape(unsigned refCount, std::span<const LChar> data, unsigned hashAndFlags)
: m_refCount(refCount)
, m_length(data.size())
, m_data8(data.data())
, m_hashAndFlags(hashAndFlags)
{
RELEASE_ASSERT(data.size() <= MaxLength);
}
inline StringImplShape::StringImplShape(unsigned refCount, std::span<const UChar> data, unsigned hashAndFlags)
: m_refCount(refCount)
, m_length(data.size())
, m_data16(data.data())
, m_hashAndFlags(hashAndFlags)
{
RELEASE_ASSERT(data.size() <= MaxLength);
}
template<unsigned characterCount> constexpr StringImplShape::StringImplShape(unsigned refCount, unsigned length, const char (&characters)[characterCount], unsigned hashAndFlags, ConstructWithConstExprTag)
: m_refCount(refCount)
, m_length(length)
, m_data8Char(characters)
, m_hashAndFlags(hashAndFlags)
{
RELEASE_ASSERT(length <= MaxLength);
}
template<unsigned characterCount> constexpr StringImplShape::StringImplShape(unsigned refCount, unsigned length, const char16_t (&characters)[characterCount], unsigned hashAndFlags, ConstructWithConstExprTag)
: m_refCount(refCount)
, m_length(length)
, m_data16Char(characters)
, m_hashAndFlags(hashAndFlags)
{
RELEASE_ASSERT(length <= MaxLength);
}
inline Ref<StringImpl> StringImpl::isolatedCopy() const
{
if (!requiresCopy()) {
if (is8Bit())
return StringImpl::createWithoutCopying(span8());
return StringImpl::createWithoutCopying(span16());
}
if (is8Bit())
return create(span8());
return create(span16());
}
inline bool StringImpl::containsOnlyASCII() const
{
if (is8Bit())
return charactersAreAllASCII(span8());
return charactersAreAllASCII(span16());
}
inline bool StringImpl::containsOnlyLatin1() const
{
if (is8Bit())
return true;
auto characters = span16();
UChar mergedCharacterBits = 0;
for (auto character : characters)
mergedCharacterBits |= character;
return isLatin1(mergedCharacterBits);
}
template<bool isSpecialCharacter(UChar), typename CharacterType, std::size_t Extent> inline bool containsOnly(std::span<const CharacterType, Extent> characters)
{
for (auto character : characters) {
if (!isSpecialCharacter(character))
return false;
}
return true;
}
template<bool isSpecialCharacter(UChar)> inline bool StringImpl::containsOnly() const
{
if (is8Bit())
return WTF::containsOnly<isSpecialCharacter>(span8());
return WTF::containsOnly<isSpecialCharacter>(span16());
}
inline StringImpl::StringImpl(unsigned length, Force8Bit)
: StringImplShape(s_refCountIncrement, { tailPointer<LChar>(), length }, s_hashFlag8BitBuffer | StringNormal | BufferInternal)
{
ASSERT(m_data8);
ASSERT(m_length);
STRING_STATS_ADD_8BIT_STRING(m_length);
}
inline StringImpl::StringImpl(unsigned length)
: StringImplShape(s_refCountIncrement, { tailPointer<UChar>(), length }, s_hashZeroValue | StringNormal | BufferInternal)
{
ASSERT(m_data16);
ASSERT(m_length);
STRING_STATS_ADD_16BIT_STRING(m_length);
}
template<typename Malloc>
inline StringImpl::StringImpl(MallocSpan<LChar, Malloc> characters)
: StringImplShape(s_refCountIncrement, { static_cast<const LChar*>(nullptr), characters.span().size() }, s_hashFlag8BitBuffer | StringNormal | BufferOwned)
{
if constexpr (std::is_same_v<Malloc, StringImplMalloc>)
m_data8 = characters.leakSpan().data();
else {
auto buffer = MallocSpan<LChar, StringImplMalloc>::malloc(characters.sizeInBytes());
copyCharacters(buffer.mutableSpan(), characters.span());
m_data8 = buffer.leakSpan().data();
}
ASSERT(m_data8);
ASSERT(m_length);
STRING_STATS_ADD_8BIT_STRING(m_length);
}
inline StringImpl::StringImpl(std::span<const UChar> characters, ConstructWithoutCopyingTag)
: StringImplShape(s_refCountIncrement, characters, s_hashZeroValue | StringNormal | BufferInternal)
{
ASSERT(m_data16);
ASSERT(m_length);
STRING_STATS_ADD_16BIT_STRING(m_length);
}
inline StringImpl::StringImpl(std::span<const LChar> characters, ConstructWithoutCopyingTag)
: StringImplShape(s_refCountIncrement, characters, s_hashFlag8BitBuffer | StringNormal | BufferInternal)
{
ASSERT(m_data8);
ASSERT(m_length);
STRING_STATS_ADD_8BIT_STRING(m_length);
}
template<typename Malloc>
inline StringImpl::StringImpl(MallocSpan<UChar, Malloc> characters)
: StringImplShape(s_refCountIncrement, { static_cast<const UChar*>(nullptr), characters.span().size() }, s_hashZeroValue | StringNormal | BufferOwned)
{
if constexpr (std::is_same_v<Malloc, StringImplMalloc>)
m_data16 = characters.leakSpan().data();
else {
auto buffer = MallocSpan<UChar, StringImplMalloc>::malloc(characters.sizeInBytes());
copyCharacters(buffer.mutableSpan(), characters.span());
m_data16 = buffer.leakSpan().data();
}
ASSERT(m_data16);
ASSERT(m_length);
STRING_STATS_ADD_16BIT_STRING(m_length);
}
inline StringImpl::StringImpl(std::span<const LChar> characters, Ref<StringImpl>&& base)
: StringImplShape(s_refCountIncrement, characters, s_hashFlag8BitBuffer | StringNormal | BufferSubstring)
{
ASSERT(is8Bit());
ASSERT(m_data8);
ASSERT(m_length);
ASSERT(base->bufferOwnership() != BufferSubstring);
substringBuffer() = &base.leakRef();
STRING_STATS_ADD_8BIT_STRING2(m_length, true);
}
inline StringImpl::StringImpl(std::span<const UChar> characters, Ref<StringImpl>&& base)
: StringImplShape(s_refCountIncrement, characters, s_hashZeroValue | StringNormal | BufferSubstring)
{
ASSERT(!is8Bit());
ASSERT(m_data16);
ASSERT(m_length);
ASSERT(base->bufferOwnership() != BufferSubstring);
substringBuffer() = &base.leakRef();
STRING_STATS_ADD_16BIT_STRING2(m_length, true);
}
ALWAYS_INLINE Ref<StringImpl> StringImpl::createSubstringSharingImpl(StringImpl& rep, unsigned offset, unsigned length)
{
ASSERT(length <= rep.length());
if (!length)
return *empty();
// Copying the thing would save more memory sometimes, largely due to the size of pointer.
size_t substringSize = allocationSize<StringImpl*>(1);
if (rep.is8Bit()) {
if (substringSize >= allocationSize<LChar>(length))
return create(rep.span8().subspan(offset, length));
} else {
if (substringSize >= allocationSize<UChar>(length))
return create(rep.span16().subspan(offset, length));
}
SUPPRESS_UNCOUNTED_LOCAL auto* ownerRep = ((rep.bufferOwnership() == BufferSubstring) ? rep.substringBuffer() : &rep);
// We allocate a buffer that contains both the StringImpl struct as well as the pointer to the owner string.
SUPPRESS_UNCOUNTED_LOCAL auto* stringImpl = static_cast<StringImpl*>(StringImplMalloc::malloc(substringSize));
if (rep.is8Bit())
return adoptRef(*new (NotNull, stringImpl) StringImpl(rep.span8().subspan(offset, length), *ownerRep));
return adoptRef(*new (NotNull, stringImpl) StringImpl(rep.span16().subspan(offset, length), *ownerRep));
}
template<typename CharacterType> ALWAYS_INLINE RefPtr<StringImpl> StringImpl::tryCreateUninitialized(size_t length, std::span<CharacterType>& output)
{
if (!length) {
output = { };
return empty();
}
if (length > maxInternalLength<CharacterType>()) {
output = { };
return nullptr;
}
SUPPRESS_UNCOUNTED_LOCAL StringImpl* result = (StringImpl*)StringImplMalloc::tryMalloc(allocationSize<CharacterType>(length));
if (!result) {
output = { };
return nullptr;
}
output = unsafeMakeSpan(result->tailPointer<CharacterType>(), length);
return constructInternal<CharacterType>(*result, length);
}
template<typename CharacterType, size_t inlineCapacity, typename OverflowHandler, size_t minCapacity, typename Malloc>
inline Ref<StringImpl> StringImpl::adopt(Vector<CharacterType, inlineCapacity, OverflowHandler, minCapacity, Malloc>&& vector)
{
if constexpr (std::is_same_v<Malloc, StringImplMalloc>) {
if (!vector.size())
return *empty();
return adoptRef(*new StringImpl(vector.releaseBuffer()));
} else
return create(vector.span());
}
inline size_t StringImpl::cost() const
{
// For substrings, return the cost of the base string.
if (bufferOwnership() == BufferSubstring)
return substringBuffer()->cost();
// Note: we must not alter the m_hashAndFlags field in instances of StaticStringImpl.
// We ensure this by pre-setting the s_hashFlagDidReportCost bit in all instances of
// StaticStringImpl. As a result, StaticStringImpl instances will always return a cost of
// 0 here and avoid modifying m_hashAndFlags.
if (m_hashAndFlags & s_hashFlagDidReportCost)
return 0;
m_hashAndFlags |= s_hashFlagDidReportCost;
size_t result = m_length;
if (!is8Bit())
result <<= 1;
return result;
}
inline size_t StringImpl::costDuringGC()
{
if (isStatic())
return 0;
if (bufferOwnership() == BufferSubstring)
return divideRoundedUp(substringBuffer()->costDuringGC(), refCount());
size_t result = m_length;
if (!is8Bit())
result <<= 1;
return divideRoundedUp(result, refCount());
}
inline void StringImpl::setIsAtom(bool isAtom)
{
ASSERT(!isStatic());
ASSERT(!isSymbol());
if (isAtom)
m_hashAndFlags |= s_hashFlagStringKindIsAtom;
else
m_hashAndFlags &= ~s_hashFlagStringKindIsAtom;
}
inline void StringImpl::setHash(unsigned hash) const
{
// The high bits of 'hash' are always empty, but we prefer to store our flags
// in the low bits because it makes them slightly more efficient to access.
// So, we shift left and right when setting and getting our hash code.
ASSERT(!hasHash());
ASSERT(!isStatic());
// Multiple clients assume that StringHasher is the canonical string hash function.
ASSERT(hash == (is8Bit() ? StringHasher::computeHashAndMaskTop8Bits(span8()) : StringHasher::computeHashAndMaskTop8Bits(span16())));
ASSERT(!(hash & (s_flagMask << (8 * sizeof(hash) - s_flagCount)))); // Verify that enough high bits are empty.
hash <<= s_flagCount;
ASSERT(!(hash & m_hashAndFlags)); // Verify that enough low bits are empty after shift.
ASSERT(hash); // Verify that 0 is a valid sentinel hash value.
m_hashAndFlags |= hash; // Store hash with flags in low bits.
}
inline void StringImpl::ref()
{
STRING_STATS_REF_STRING(*this);
#if TSAN_ENABLED
if (isStatic())
return;
#endif
m_refCount += s_refCountIncrement;
}
inline void StringImpl::deref()
{
STRING_STATS_DEREF_STRING(*this);
#if TSAN_ENABLED
if (isStatic())
return;
#endif
unsigned tempRefCount = m_refCount - s_refCountIncrement;
if (!tempRefCount) {
StringImpl::destroy(this);
return;
}
m_refCount = tempRefCount;
}
inline UChar StringImpl::at(unsigned i) const
{
RELEASE_ASSERT(i < m_length);
return is8Bit() ? m_data8[i] : m_data16[i];
}
inline StringImpl::StringImpl(CreateSymbolTag, std::span<const LChar> characters)
: StringImplShape(s_refCountIncrement, characters, s_hashFlag8BitBuffer | StringSymbol | BufferSubstring)
{
ASSERT(is8Bit());
ASSERT(m_data8);
STRING_STATS_ADD_8BIT_STRING2(m_length, true);
}
inline StringImpl::StringImpl(CreateSymbolTag, std::span<const UChar> characters)
: StringImplShape(s_refCountIncrement, characters, s_hashZeroValue | StringSymbol | BufferSubstring)
{
ASSERT(!is8Bit());
ASSERT(m_data16);
STRING_STATS_ADD_16BIT_STRING2(m_length, true);
}
inline StringImpl::StringImpl(CreateSymbolTag)
: StringImplShape(s_refCountIncrement, empty()->span8(), s_hashFlag8BitBuffer | StringSymbol | BufferSubstring)
{
ASSERT(is8Bit());
ASSERT(m_data8);
STRING_STATS_ADD_8BIT_STRING2(m_length, true);
}
template<typename T> inline size_t StringImpl::allocationSize(Checked<size_t> tailElementCount)
{
return tailOffset<T>() + tailElementCount * sizeof(T);
}
template<typename CharacterType>
inline size_t StringImpl::maxInternalLength()
{
// In order to not overflow the unsigned length, the check for (std::numeric_limits<unsigned>::max() - sizeof(StringImpl)) is needed when sizeof(CharacterType) == 2.
return std::min(static_cast<size_t>(MaxLength), (std::numeric_limits<unsigned>::max() - sizeof(StringImpl)) / sizeof(CharacterType));
}
template<typename T> constexpr size_t StringImpl::tailOffset()
{
return roundUpToMultipleOf<alignof(T)>(offsetof(StringImpl, m_hashAndFlags) + sizeof(StringImpl::m_hashAndFlags));
}
inline bool StringImpl::requiresCopy() const
{
if (bufferOwnership() != BufferInternal)
return true;
if (is8Bit())
return m_data8 == tailPointer<LChar>();
return m_data16 == tailPointer<UChar>();
}
template<typename T> inline const T* StringImpl::tailPointer() const
{
return reinterpret_cast_ptr<const T*>(reinterpret_cast<const uint8_t*>(this) + tailOffset<T>());
}
template<typename T> inline T* StringImpl::tailPointer()
{
return reinterpret_cast_ptr<T*>(reinterpret_cast<uint8_t*>(this) + tailOffset<T>());
}
inline StringImpl* const& StringImpl::substringBuffer() const
{
ASSERT(bufferOwnership() == BufferSubstring);
return *tailPointer<StringImpl*>();
}
inline StringImpl*& StringImpl::substringBuffer()
{
ASSERT(bufferOwnership() == BufferSubstring);
return *tailPointer<StringImpl*>();
}
inline void StringImpl::assertHashIsCorrect() const
{
ASSERT(existingHash() == StringHasher::computeHashAndMaskTop8Bits(span8()));
}
template<unsigned characterCount> constexpr StringImpl::StaticStringImpl::StaticStringImpl(const char (&characters)[characterCount], StringKind stringKind)
: StringImplShape(s_refCountFlagIsStaticString, characterCount - 1, characters,
s_hashFlag8BitBuffer | s_hashFlagDidReportCost | stringKind | BufferInternal | (StringHasher::computeLiteralHashAndMaskTop8Bits(characters) << s_flagCount), ConstructWithConstExpr)
{
}
template<unsigned characterCount> constexpr StringImpl::StaticStringImpl::StaticStringImpl(const char16_t (&characters)[characterCount], StringKind stringKind)
: StringImplShape(s_refCountFlagIsStaticString, characterCount - 1, characters,
s_hashFlagDidReportCost | stringKind | BufferInternal | (StringHasher::computeLiteralHashAndMaskTop8Bits(characters) << s_flagCount), ConstructWithConstExpr)
{
}
inline StringImpl::StaticStringImpl::operator StringImpl&()
{
SUPPRESS_MEMORY_UNSAFE_CAST return *reinterpret_cast<StringImpl*>(this);
}
inline bool equalIgnoringASCIICase(const StringImpl& a, const StringImpl& b)
{
return equalIgnoringASCIICaseCommon(a, b);
}
inline bool equalIgnoringASCIICase(const StringImpl& a, ASCIILiteral b)
{
return equalIgnoringASCIICaseCommon(a, b.characters());
}
inline bool equalIgnoringASCIICase(const StringImpl* a, ASCIILiteral b)
{
return a && equalIgnoringASCIICase(*a, b);
}
inline bool startsWithLettersIgnoringASCIICase(const StringImpl& string, ASCIILiteral literal)
{
return startsWithLettersIgnoringASCIICaseCommon(string, literal);
}
inline bool startsWithLettersIgnoringASCIICase(const StringImpl* string, ASCIILiteral literal)
{
return string && startsWithLettersIgnoringASCIICase(*string, literal);
}
inline bool equalLettersIgnoringASCIICase(const StringImpl& string, ASCIILiteral literal)
{
return equalLettersIgnoringASCIICaseCommon(string, literal);
}
inline bool equalLettersIgnoringASCIICase(const StringImpl* string, ASCIILiteral literal)
{
return string && equalLettersIgnoringASCIICase(*string, literal);
}
template<typename CharacterType, typename Predicate> ALWAYS_INLINE Ref<StringImpl> StringImpl::removeCharactersImpl(std::span<const CharacterType> characters, const Predicate& findMatch)
{
auto* from = characters.data();
auto* fromEnd = from + m_length;
// Assume the common case will not remove any characters
while (from != fromEnd && !findMatch(*from))
++from;
if (from == fromEnd)
return *this;
StringBuffer<CharacterType> data(m_length);
auto to = data.span();
unsigned outc = from - characters.data();
copyCharacters(to, characters.first(outc));
do {
while (from != fromEnd && findMatch(*from))
++from;
while (from != fromEnd && !findMatch(*from))
to[outc++] = *from++;
} while (from != fromEnd);
data.shrink(outc);
return adopt(WTFMove(data));
}
template<typename Predicate>
inline Ref<StringImpl> StringImpl::removeCharacters(const Predicate& findMatch)
{
static_assert(!std::is_function_v<Predicate>, "Passing a lambda instead of a function pointer helps the compiler with inlining");
if (is8Bit())
return removeCharactersImpl(span8(), findMatch);
return removeCharactersImpl(span16(), findMatch);
}
inline Ref<StringImpl> StringImpl::createByReplacingInCharacters(std::span<const LChar> characters, UChar target, UChar replacement, size_t indexOfFirstTargetCharacter)
{
ASSERT(indexOfFirstTargetCharacter < characters.size());
if (isLatin1(replacement)) {
std::span<LChar> data;
LChar oldChar = target;
LChar newChar = replacement;
auto newImpl = createUninitializedInternalNonEmpty(characters.size(), data);
memcpySpan(data, characters.first(indexOfFirstTargetCharacter));
for (size_t i = indexOfFirstTargetCharacter; i != characters.size(); ++i) {
LChar character = characters[i];
data[i] = character == oldChar ? newChar : character;
}
return newImpl;
}
std::span<UChar> data;
auto newImpl = createUninitializedInternalNonEmpty(characters.size(), data);
size_t i = 0;
for (auto character : characters)
data[i++] = character == target ? replacement : character;
return newImpl;
}
inline Ref<StringImpl> StringImpl::createByReplacingInCharacters(std::span<const UChar> characters, UChar target, UChar replacement, size_t indexOfFirstTargetCharacter)
{
ASSERT(indexOfFirstTargetCharacter < characters.size());
std::span<UChar> data;
auto newImpl = createUninitializedInternalNonEmpty(characters.size(), data);
copyCharacters(data, characters.first(indexOfFirstTargetCharacter));
for (size_t i = indexOfFirstTargetCharacter; i != characters.size(); ++i) {
UChar character = characters[i];
data[i] = character == target ? replacement : character;
}
return newImpl;
}
template<typename Func>
inline Expected<std::invoke_result_t<Func, std::span<const char8_t>>, UTF8ConversionError> StringImpl::tryGetUTF8(const Func& function, ConversionMode mode) const
{
if (is8Bit())
return tryGetUTF8ForCharacters(function, span8());
return tryGetUTF8ForCharacters(function, span16(), mode);
}
static inline std::span<const char8_t> nonNullEmptyUTF8Span()
{
static constexpr char8_t empty = 0;
return { &empty, 0 };
}
template<typename Func>
inline Expected<std::invoke_result_t<Func, std::span<const char8_t>>, UTF8ConversionError> StringImpl::tryGetUTF8ForCharacters(const Func& function, std::span<const LChar> characters)
{
if (characters.empty())
return function(nonNullEmptyUTF8Span());
// Allocate a buffer big enough to hold all the characters
// (an individual LChar can only expand to 2 UTF-8 bytes).
// Optimization ideas, if we find this function is hot:
// * We could speculatively create a CStringBuffer to contain 'length'
// characters, and resize if necessary (i.e. if the buffer contains
// non-ascii characters). (Alternatively, scan the buffer first for
// ascii characters, so we know this will be sufficient).
// * We could allocate a CStringBuffer with an appropriate size to
// have a good chance of being able to write the string into the
// buffer without reallocing (say, 1.5 x length).
if (characters.size() > MaxLength / 2)
return makeUnexpected(UTF8ConversionError::OutOfMemory);
#if CPU(ARM64)
if (auto* firstNonASCII = find8NonASCII(characters)) {
size_t prefixLength = firstNonASCII - characters.data();
size_t remainingLength = characters.size() - prefixLength;
Vector<char8_t, 1024> buffer(prefixLength + remainingLength * 2);
memcpySpan(buffer.mutableSpan(), characters.first(prefixLength));
auto result = Unicode::convert(characters.subspan(prefixLength), buffer.mutableSpan().subspan(prefixLength));
ASSERT(result.code == Unicode::ConversionResultCode::Success); // 2x is sufficient for any conversion from Latin1
return function(buffer.span().first(prefixLength + result.buffer.size()));
}
return function(byteCast<char8_t>(characters));
#else
Vector<char8_t, 1024> buffer(characters.size() * 2);
auto result = Unicode::convert(characters, buffer.mutableSpan());
ASSERT(result.code == Unicode::ConversionResultCode::Success); // 2x is sufficient for any conversion from Latin1
return function(result.buffer);
#endif
}
template<typename Func>
inline Expected<std::invoke_result_t<Func, std::span<const char8_t>>, UTF8ConversionError> StringImpl::tryGetUTF8ForCharacters(const Func& function, std::span<const UChar> characters, ConversionMode mode)
{
if (characters.empty())
return function(nonNullEmptyUTF8Span());
if (characters.size() > MaxLength / 3)
return makeUnexpected(UTF8ConversionError::OutOfMemory);
size_t bufferSize = characters.size() * 3;
Vector<char8_t, 1024> bufferVector(bufferSize);
auto convertedSize = utf8ForCharactersIntoBuffer(characters, mode, bufferVector);
if (!convertedSize)
return makeUnexpected(convertedSize.error());
return function(bufferVector.span().first(*convertedSize));
}
} // namespace WTF
using WTF::StaticStringImpl;
using WTF::StringImpl;
using WTF::equal;
using WTF::isUnicodeWhitespace;
using WTF::deprecatedIsSpaceOrNewline;
using WTF::deprecatedIsNotSpaceOrNewline;
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
|