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
|
/*
* (C) 1999 Lars Knoll (knoll@kde.org)
* Copyright (C) 2004-2023 Apple 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
// This file would be called String.h, but that conflicts with <string.h>
// on systems without case-sensitive file systems.
#include <wtf/Compiler.h>
#include <wtf/text/IntegerToStringConversion.h>
#include <wtf/text/StringImpl.h>
#ifdef __OBJC__
#include <objc/objc.h>
#endif
#if OS(WINDOWS)
#include <wtf/text/win/WCharStringExtras.h>
#endif
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
namespace WTF {
// Declarations of string operations
WTF_EXPORT_PRIVATE double charactersToDouble(std::span<const LChar>, bool* ok = nullptr);
WTF_EXPORT_PRIVATE double charactersToDouble(std::span<const UChar>, bool* ok = nullptr);
WTF_EXPORT_PRIVATE float charactersToFloat(std::span<const LChar>, bool* ok = nullptr);
WTF_EXPORT_PRIVATE float charactersToFloat(std::span<const UChar>, bool* ok = nullptr);
WTF_EXPORT_PRIVATE float charactersToFloat(std::span<const LChar>, size_t& parsedLength);
WTF_EXPORT_PRIVATE float charactersToFloat(std::span<const UChar>, size_t& parsedLength);
template<bool isSpecialCharacter(UChar), typename CharacterType, std::size_t Extent> bool containsOnly(std::span<const CharacterType, Extent>);
enum class TrailingZerosPolicy : bool { Keep, Truncate };
class String final {
WTF_MAKE_FAST_COMPACT_ALLOCATED;
public:
// Construct a null string, distinguishable from an empty string.
String() = default;
// Construct a string with UTF-16 data.
WTF_EXPORT_PRIVATE String(std::span<const UChar> characters);
// Construct a string with Latin-1 data.
WTF_EXPORT_PRIVATE String(std::span<const LChar> characters);
WTF_EXPORT_PRIVATE String(std::span<const char> characters);
ALWAYS_INLINE static String fromLatin1(const char* characters) { return String { characters }; }
// Construct a string referencing an existing StringImpl.
String(StringImpl&);
String(StringImpl*);
String(Ref<StringImpl>&&);
String(RefPtr<StringImpl>&&);
String(Ref<AtomStringImpl>&&);
String(RefPtr<AtomStringImpl>&&);
String(StaticStringImpl&);
String(StaticStringImpl*);
// Construct a string from a constant string literal.
String(ASCIILiteral);
String(const String&) = default;
String(String&&) = default;
String& operator=(const String&) = default;
String& operator=(String&&) = default;
ALWAYS_INLINE ~String() = default;
void swap(String& o) { m_impl.swap(o.m_impl); }
static String adopt(StringBuffer<LChar>&& buffer) { return StringImpl::adopt(WTFMove(buffer)); }
static String adopt(StringBuffer<UChar>&& buffer) { return StringImpl::adopt(WTFMove(buffer)); }
template<typename CharacterType, size_t inlineCapacity, typename OverflowHandler, size_t minCapacity, typename Malloc>
static String adopt(Vector<CharacterType, inlineCapacity, OverflowHandler, minCapacity, Malloc>&& vector) { return StringImpl::adopt(WTFMove(vector)); }
bool isNull() const { return !m_impl; }
bool isEmpty() const { return !m_impl || m_impl->isEmpty(); }
StringImpl* impl() const LIFETIME_BOUND { return m_impl.get(); }
RefPtr<StringImpl> releaseImpl() { return WTFMove(m_impl); }
unsigned length() const { return m_impl ? m_impl->length() : 0; }
std::span<const LChar> span8() const LIFETIME_BOUND { return m_impl ? m_impl->span8() : std::span<const LChar>(); }
std::span<const UChar> span16() const LIFETIME_BOUND { return m_impl ? m_impl->span16() : std::span<const UChar>(); }
// Return span8() or span16() depending on CharacterType.
template<typename CharacterType> std::span<const CharacterType> span() const LIFETIME_BOUND;
bool is8Bit() const { return !m_impl || m_impl->is8Bit(); }
unsigned sizeInBytes() const { return m_impl ? m_impl->length() * (is8Bit() ? sizeof(LChar) : sizeof(UChar)) : 0; }
WTF_EXPORT_PRIVATE CString ascii() const;
WTF_EXPORT_PRIVATE CString latin1() const;
WTF_EXPORT_PRIVATE CString utf8(ConversionMode = LenientConversion) const;
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) const;
WTF_EXPORT_PRIVATE Expected<CString, UTF8ConversionError> tryGetUTF8() const;
UChar characterAt(unsigned index) const;
UChar operator[](unsigned index) const { return characterAt(index); }
WTF_EXPORT_PRIVATE static String number(int);
WTF_EXPORT_PRIVATE static String number(unsigned);
WTF_EXPORT_PRIVATE static String number(long);
WTF_EXPORT_PRIVATE static String number(unsigned long);
WTF_EXPORT_PRIVATE static String number(long long);
WTF_EXPORT_PRIVATE static String number(unsigned long long);
WTF_EXPORT_PRIVATE static String number(float);
WTF_EXPORT_PRIVATE static String number(double);
WTF_EXPORT_PRIVATE static String numberToStringFixedPrecision(float, unsigned precision = 6, TrailingZerosPolicy = TrailingZerosPolicy::Truncate);
WTF_EXPORT_PRIVATE static String numberToStringFixedPrecision(double, unsigned precision = 6, TrailingZerosPolicy = TrailingZerosPolicy::Truncate);
WTF_EXPORT_PRIVATE static String numberToStringFixedWidth(double, unsigned decimalPlaces);
AtomString toExistingAtomString() const;
// Find a single character or string, also with match function & latin1 forms.
size_t find(UChar character, unsigned start = 0) const { return m_impl ? m_impl->find(character, start) : notFound; }
size_t find(LChar character, unsigned start = 0) const { return m_impl ? m_impl->find(character, start) : notFound; }
size_t find(char character, unsigned start = 0) const { return m_impl ? m_impl->find(character, start) : notFound; }
size_t find(StringView) const;
size_t find(StringView, unsigned start) const;
size_t findIgnoringASCIICase(StringView) const;
size_t findIgnoringASCIICase(StringView, unsigned start) const;
template<typename CodeUnitMatchFunction, std::enable_if_t<std::is_invocable_r_v<bool, CodeUnitMatchFunction, UChar>>* = nullptr>
size_t find(CodeUnitMatchFunction matchFunction, unsigned start = 0) const { return m_impl ? m_impl->find(matchFunction, start) : notFound; }
size_t find(ASCIILiteral literal, unsigned start = 0) const { return m_impl ? m_impl->find(literal, start) : notFound; }
// Find the last instance of a single character or string.
size_t reverseFind(UChar character, unsigned start = MaxLength) const { return m_impl ? m_impl->reverseFind(character, start) : notFound; }
size_t reverseFind(ASCIILiteral literal, unsigned start = MaxLength) const { return m_impl ? m_impl->reverseFind(literal, start) : notFound; }
size_t reverseFind(StringView, unsigned start = MaxLength) const;
WTF_EXPORT_PRIVATE Expected<Vector<UChar>, UTF8ConversionError> charactersWithNullTermination() const;
WTF_EXPORT_PRIVATE Expected<Vector<UChar>, UTF8ConversionError> charactersWithoutNullTermination() const;
WTF_EXPORT_PRIVATE char32_t characterStartingAt(unsigned) const;
bool contains(UChar character) const { return find(character) != notFound; }
bool contains(ASCIILiteral literal) const { return find(literal) != notFound; }
bool contains(StringView) const;
template<typename CodeUnitMatchFunction, std::enable_if_t<std::is_invocable_r_v<bool, CodeUnitMatchFunction, UChar>>* = nullptr>
bool contains(CodeUnitMatchFunction matchFunction) const { return find(matchFunction, 0) != notFound; }
bool containsIgnoringASCIICase(StringView) const;
bool containsIgnoringASCIICase(StringView, unsigned start) const;
bool startsWith(StringView) const;
bool startsWithIgnoringASCIICase(StringView) const;
bool startsWith(UChar character) const { return m_impl && m_impl->startsWith(character); }
bool hasInfixStartingAt(StringView prefix, unsigned start) const;
bool endsWith(StringView) const;
bool endsWithIgnoringASCIICase(StringView) const;
bool endsWith(UChar character) const { return m_impl && m_impl->endsWith(character); }
bool endsWith(char character) const { return endsWith(static_cast<UChar>(character)); }
bool hasInfixEndingAt(StringView suffix, unsigned end) const;
String WARN_UNUSED_RETURN substring(unsigned position, unsigned length = MaxLength) const;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN substringSharingImpl(unsigned position, unsigned length = MaxLength) const;
String WARN_UNUSED_RETURN left(unsigned length) const { return substring(0, length); }
String WARN_UNUSED_RETURN right(unsigned length) const { return substring(this->length() - length, length); }
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN convertToASCIILowercase() const;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN convertToASCIIUppercase() const;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN convertToLowercaseWithoutLocale() const;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN convertToLowercaseWithoutLocaleStartingAtFailingIndex8Bit(unsigned) const;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN convertToUppercaseWithoutLocale() const;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN convertToLowercaseWithLocale(const AtomString& localeIdentifier) const;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN convertToUppercaseWithLocale(const AtomString& localeIdentifier) const;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN simplifyWhiteSpace(CodeUnitMatchFunction) const;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN trim(CodeUnitMatchFunction) const;
template<typename Predicate> String WARN_UNUSED_RETURN removeCharacters(const Predicate&) const;
// Returns the string with case folded for case insensitive comparison.
// Use convertToASCIILowercase instead if ASCII case insensitive comparison is desired.
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN foldCase() const;
// Returns an uninitialized string. The characters needs to be written
// into the buffer returned in data before the returned string is used.
static String createUninitialized(unsigned length, std::span<UChar>& data) { return StringImpl::createUninitialized(length, data); }
static String createUninitialized(unsigned length, std::span<LChar>& data) { return StringImpl::createUninitialized(length, data); }
using SplitFunctor = WTF::Function<void(StringView)>;
WTF_EXPORT_PRIVATE void split(UChar separator, const SplitFunctor&) const;
WTF_EXPORT_PRIVATE Vector<String> WARN_UNUSED_RETURN split(UChar separator) const;
WTF_EXPORT_PRIVATE Vector<String> WARN_UNUSED_RETURN split(StringView separator) const;
WTF_EXPORT_PRIVATE void splitAllowingEmptyEntries(UChar separator, const SplitFunctor&) const;
WTF_EXPORT_PRIVATE Vector<String> WARN_UNUSED_RETURN splitAllowingEmptyEntries(UChar separator) const;
WTF_EXPORT_PRIVATE Vector<String> WARN_UNUSED_RETURN splitAllowingEmptyEntries(StringView separator) const;
WTF_EXPORT_PRIVATE double toDouble(bool* ok = nullptr) const;
WTF_EXPORT_PRIVATE float toFloat(bool* ok = nullptr) const;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN isolatedCopy() const &;
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN isolatedCopy() &&;
WTF_EXPORT_PRIVATE bool isSafeToSendToAnotherThread() const;
// Prevent Strings from being implicitly convertable to bool as it will be ambiguous on any platform that
// allows implicit conversion to another pointer type (e.g., Mac allows implicit conversion to NSString *).
typedef struct ImplicitConversionFromWTFStringToBoolDisallowedA* (String::*UnspecifiedBoolTypeA);
typedef struct ImplicitConversionFromWTFStringToBoolDisallowedB* (String::*UnspecifiedBoolTypeB);
operator UnspecifiedBoolTypeA() const;
operator UnspecifiedBoolTypeB() const;
#if USE(CF)
WTF_EXPORT_PRIVATE String(CFStringRef);
WTF_EXPORT_PRIVATE RetainPtr<CFStringRef> createCFString() const;
#endif
#if USE(FOUNDATION) && defined(__OBJC__)
String(NSString *string)
: String((__bridge CFStringRef)string) { }
// This conversion converts the null string to an empty NSString rather than to nil.
// Given Cocoa idioms, this is a more useful default. Clients that need to preserve the
// null string can check isNull explicitly.
operator NSString *() const;
#endif
#if OS(WINDOWS)
String(const wchar_t* characters, unsigned length)
: String({ ucharFrom(characters), length }) { }
String(const wchar_t* characters)
: String({ ucharFrom(characters), static_cast<size_t>(characters ? wcslen(characters) : 0) }) { }
WTF_EXPORT_PRIVATE Vector<wchar_t> wideCharacters() const;
#endif
WTF_EXPORT_PRIVATE static String make8Bit(std::span<const UChar>);
WTF_EXPORT_PRIVATE void convertTo16Bit();
// String::fromUTF8 will return a null string if the input data contains invalid UTF-8 sequences.
WTF_EXPORT_PRIVATE static String fromUTF8(std::span<const char8_t>);
static String fromUTF8(std::span<const LChar> characters) { return fromUTF8(byteCast<char8_t>(characters)); }
static String fromUTF8(std::span<const char> characters) { return fromUTF8(byteCast<char8_t>(characters)); }
static String fromUTF8(const char* string) { return fromUTF8(unsafeSpan8(string)); }
static String fromUTF8ReplacingInvalidSequences(std::span<const char8_t>);
static String fromUTF8ReplacingInvalidSequences(std::span<const LChar> characters) { return fromUTF8ReplacingInvalidSequences(byteCast<char8_t>(characters)); }
// Tries to convert the passed in string to UTF-8, but will fall back to Latin-1 if the string is not valid UTF-8.
WTF_EXPORT_PRIVATE static String fromUTF8WithLatin1Fallback(std::span<const char8_t>);
static String fromUTF8WithLatin1Fallback(std::span<const LChar> characters) { return fromUTF8WithLatin1Fallback(byteCast<char8_t>(characters)); }
static String fromUTF8WithLatin1Fallback(std::span<const char> characters) { return fromUTF8WithLatin1Fallback(byteCast<char8_t>(characters)); }
WTF_EXPORT_PRIVATE static String fromCodePoint(char32_t codePoint);
// Determines the writing direction using the Unicode Bidi Algorithm rules P2 and P3.
std::optional<UCharDirection> defaultWritingDirection() const;
bool containsOnlyASCII() const { return !m_impl || m_impl->containsOnlyASCII(); }
bool containsOnlyLatin1() const { return !m_impl || m_impl->containsOnlyLatin1(); }
template<bool isSpecialCharacter(UChar)> bool containsOnly() const { return !m_impl || m_impl->containsOnly<isSpecialCharacter>(); }
// Hash table deleted values, which are only constructed and never copied or destroyed.
String(WTF::HashTableDeletedValueType) : m_impl(WTF::HashTableDeletedValue) { }
bool isHashTableDeletedValue() const { return m_impl.isHashTableDeletedValue(); }
unsigned hash() const { return isNull() ? 0 : impl()->hash(); }
unsigned existingHash() const { return isNull() ? 0 : impl()->existingHash(); }
#ifndef NDEBUG
WTF_EXPORT_PRIVATE void show() const;
#endif
// Turns this String empty if the StringImpl is not referenced by anyone else.
// This is useful for clearing String-based caches.
void clearImplIfNotShared();
static constexpr unsigned MaxLength = StringImpl::MaxLength;
private:
template<bool allowEmptyEntries> void splitInternal(UChar separator, const SplitFunctor&) const;
template<bool allowEmptyEntries> Vector<String> splitInternal(UChar separator) const;
template<bool allowEmptyEntries> Vector<String> splitInternal(StringView separator) const;
// This is intentionally private. Use fromLatin1() / fromUTF8() / String(ASCIILiteral) instead.
WTF_EXPORT_PRIVATE explicit String(const char* characters);
RefPtr<StringImpl> m_impl;
};
static_assert(sizeof(String) == sizeof(void*), "String should effectively be a pointer to a StringImpl, and efficient to pass by value");
inline bool operator==(const String& a, const String& b) { return equal(a.impl(), b.impl()); }
inline bool operator==(const String& a, ASCIILiteral b) { return equal(a.impl(), b); }
inline bool operator==(ASCIILiteral a, const String& b) { return equal(b.impl(), a); }
template<size_t inlineCapacity> inline bool operator==(const Vector<char, inlineCapacity>& a, const String& b) { return equal(b.impl(), a.data(), a.size()); }
template<size_t inlineCapacity> inline bool operator==(const String& a, const Vector<char, inlineCapacity>& b) { return b == a; }
bool equalIgnoringASCIICase(const String&, const String&);
bool equalIgnoringASCIICase(const String&, ASCIILiteral);
bool equalLettersIgnoringASCIICase(const String&, ASCIILiteral);
bool startsWithLettersIgnoringASCIICase(const String&, ASCIILiteral);
inline bool equalIgnoringNullity(const String& a, const String& b) { return equalIgnoringNullity(a.impl(), b.impl()); }
template<size_t inlineCapacity> inline bool equalIgnoringNullity(const Vector<UChar, inlineCapacity>& a, const String& b) { return equalIgnoringNullity(a, b.impl()); }
inline bool operator!(const String& string) { return string.isNull(); }
inline void swap(String& a, String& b) { a.swap(b); }
#ifdef __OBJC__
// Used in a small number of places where the long standing behavior has been "nil if empty".
NSString * nsStringNilIfEmpty(const String&);
// Used in a small number of places where null strings should be converted to nil but empty strings should be maintained.
NSString * nsStringNilIfNull(const String&);
#endif
WTF_EXPORT_PRIVATE int codePointCompare(const String&, const String&);
bool codePointCompareLessThan(const String&, const String&);
// Shared global empty and null string.
struct StaticString {
constexpr StaticString(StringImpl::StaticStringImpl* pointer)
: m_pointer(pointer)
{
}
StringImpl::StaticStringImpl* m_pointer;
};
static_assert(sizeof(String) == sizeof(StaticString), "String and StaticString must be the same size!");
extern WTF_EXPORT_PRIVATE const StaticString nullStringData;
extern WTF_EXPORT_PRIVATE const StaticString emptyStringData;
inline const String& nullString() { SUPPRESS_MEMORY_UNSAFE_CAST return *reinterpret_cast<const String*>(&nullStringData); }
inline const String& emptyString() { SUPPRESS_MEMORY_UNSAFE_CAST return *reinterpret_cast<const String*>(&emptyStringData); }
template<typename> struct DefaultHash;
template<> struct DefaultHash<String>;
template<> struct VectorTraits<String> : VectorTraitsBase<false, void> {
static constexpr bool canInitializeWithMemset = true;
static constexpr bool canMoveWithMemcpy = true;
};
template<> struct IntegerToStringConversionTrait<String> {
using ReturnType = String;
using AdditionalArgumentType = void;
static String flush(std::span<const LChar> characters, void*) { return characters; }
};
#ifdef __OBJC__
WTF_EXPORT_PRIVATE RetainPtr<id> makeNSArrayElement(const String&);
WTF_EXPORT_PRIVATE std::optional<String> makeVectorElement(const String*, id);
#endif
#if USE(CF)
WTF_EXPORT_PRIVATE RetainPtr<CFStringRef> makeCFArrayElement(const String&);
WTF_EXPORT_PRIVATE std::optional<String> makeVectorElement(const String*, CFStringRef);
#endif
// Definitions of string operations
inline String::String(StringImpl& string)
: m_impl(&string)
{
}
inline String::String(StringImpl* string)
: m_impl(string)
{
}
inline String::String(Ref<StringImpl>&& string)
: m_impl(WTFMove(string))
{
}
inline String::String(RefPtr<StringImpl>&& string)
: m_impl(WTFMove(string))
{
}
inline String::String(Ref<AtomStringImpl>&& string)
: m_impl(WTFMove(string))
{
}
inline String::String(RefPtr<AtomStringImpl>&& string)
: m_impl(WTFMove(string))
{
}
inline String::String(StaticStringImpl& string)
: m_impl(reinterpret_cast<StringImpl*>(&string))
{
}
inline String::String(StaticStringImpl* string)
: m_impl(reinterpret_cast<StringImpl*>(string))
{
}
inline String::String(ASCIILiteral characters)
: m_impl(characters.isNull() ? nullptr : RefPtr { StringImpl::create(characters) })
{
}
template<> inline std::span<const LChar> String::span<LChar>() const
{
return span8();
}
template<> inline std::span<const UChar> String::span<UChar>() const
{
return span16();
}
inline UChar String::characterAt(unsigned index) const
{
if (!m_impl || index >= m_impl->length())
return 0;
return m_impl->at(index);
}
inline String WARN_UNUSED_RETURN makeStringByReplacingAll(const String& string, UChar target, UChar replacement)
{
if (auto impl = string.impl())
return String { impl->replace(target, replacement) };
return string;
}
ALWAYS_INLINE String WARN_UNUSED_RETURN makeStringByReplacingAll(const String& string, UChar target, ASCIILiteral literal)
{
if (auto impl = string.impl())
return String { impl->replace(target, literal.span8()) };
return string;
}
WTF_EXPORT_PRIVATE String WARN_UNUSED_RETURN makeStringByRemoving(const String&, unsigned position, unsigned lengthToRemove);
WTF_EXPORT_PRIVATE String makeStringByJoining(std::span<const String> strings, const String& separator);
inline std::optional<UCharDirection> String::defaultWritingDirection() const
{
if (m_impl)
SUPPRESS_UNCOUNTED_ARG return m_impl->defaultWritingDirection();
return std::nullopt;
}
inline void String::clearImplIfNotShared()
{
if (m_impl && m_impl->hasOneRef())
m_impl = nullptr;
}
inline String String::substring(unsigned position, unsigned length) const
{
if (!m_impl)
return { };
if (!position && length >= m_impl->length())
return *this;
SUPPRESS_UNCOUNTED_ARG return m_impl->substring(position, length);
}
template<typename Func>
inline Expected<std::invoke_result_t<Func, std::span<const char8_t>>, UTF8ConversionError> String::tryGetUTF8(const Func& function, ConversionMode mode) const
{
if (!m_impl)
return function(nonNullEmptyUTF8Span());
SUPPRESS_UNCOUNTED_ARG return m_impl->tryGetUTF8(function, mode);
}
#if USE(FOUNDATION) && defined(__OBJC__)
inline String::operator NSString *() const
{
if (!m_impl)
return @"";
SUPPRESS_UNCOUNTED_ARG return *m_impl;
}
inline NSString * nsStringNilIfEmpty(const String& string)
{
if (string.isEmpty())
return nil;
return *string.impl();
}
inline NSString * nsStringNilIfNull(const String& string)
{
if (string.isNull())
return nil;
return *string.impl();
}
#endif
inline bool codePointCompareLessThan(const String& a, const String& b)
{
return codePointCompare(a.impl(), b.impl()) < 0;
}
template<typename Predicate>
String String::removeCharacters(const Predicate& findMatch) const
{
SUPPRESS_UNCOUNTED_ARG return m_impl ? m_impl->removeCharacters(findMatch) : String { };
}
inline bool equalLettersIgnoringASCIICase(const String& string, ASCIILiteral literal)
{
return equalLettersIgnoringASCIICase(string.impl(), literal);
}
inline bool equalIgnoringASCIICase(const String& a, const String& b)
{
return equalIgnoringASCIICase(a.impl(), b.impl());
}
inline bool equalIgnoringASCIICase(const String& a, ASCIILiteral b)
{
return equalIgnoringASCIICase(a.impl(), b);
}
inline bool startsWithLettersIgnoringASCIICase(const String& string, ASCIILiteral literal)
{
return startsWithLettersIgnoringASCIICase(string.impl(), literal);
}
inline namespace StringLiterals {
inline String operator""_str(const char* characters, size_t)
{
return ASCIILiteral::fromLiteralUnsafe(characters);
}
inline String operator""_str(const UChar* characters, size_t length)
{
return String({ characters, length });
}
} // inline StringLiterals
} // namespace WTF
using WTF::TrailingZerosPolicy;
using WTF::String;
using WTF::charactersToDouble;
using WTF::charactersToFloat;
using WTF::emptyString;
using WTF::makeStringByJoining;
using WTF::makeStringByRemoving;
using WTF::makeStringByReplacingAll;
using WTF::nullString;
using WTF::equal;
using WTF::find;
using WTF::containsOnly;
using WTF::reverseFind;
using WTF::codePointCompareLessThan;
#include <wtf/text/AtomString.h>
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
|