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
|
/*
* Copyright (C) 2004-2022 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
#include <utility>
#include <wtf/text/AtomStringImpl.h>
#include <wtf/text/WTFString.h>
namespace WTF {
class AtomString final {
WTF_MAKE_FAST_ALLOCATED;
public:
AtomString();
AtomString(std::span<const LChar>);
AtomString(std::span<const UChar>);
AtomString(AtomStringImpl*);
AtomString(RefPtr<AtomStringImpl>&&);
AtomString(Ref<AtomStringImpl>&&);
AtomString(const StaticStringImpl*);
AtomString(StringImpl*);
explicit AtomString(const String&);
explicit AtomString(String&&);
AtomString(StringImpl* baseString, unsigned start, unsigned length);
// FIXME: AtomString doesn’t always have AtomStringImpl, so one of those two names needs to change.
AtomString(UniquedStringImpl* uid);
AtomString(ASCIILiteral);
static AtomString lookUp(std::span<const UChar> characters) { return AtomStringImpl::lookUp(characters); }
// Hash table deleted values, which are only constructed and never copied or destroyed.
AtomString(WTF::HashTableDeletedValueType) : m_string(WTF::HashTableDeletedValue) { }
bool isHashTableDeletedValue() const { return m_string.isHashTableDeletedValue(); }
unsigned existingHash() const { return isNull() ? 0 : impl()->existingHash(); }
operator const String&() const { return m_string; }
const String& string() const { return m_string; }
String releaseString() { return WTFMove(m_string); }
// FIXME: What guarantees this isn't a SymbolImpl rather than an AtomStringImpl?
AtomStringImpl* impl() const { SUPPRESS_MEMORY_UNSAFE_CAST return static_cast<AtomStringImpl*>(m_string.impl()); }
RefPtr<AtomStringImpl> releaseImpl() { return static_pointer_cast<AtomStringImpl>(m_string.releaseImpl()); }
bool is8Bit() const { return m_string.is8Bit(); }
std::span<const LChar> span8() const { return m_string.span8(); }
std::span<const UChar> span16() const { return m_string.span16(); }
unsigned length() const { return m_string.length(); }
UChar operator[](unsigned int i) const { return m_string[i]; }
WTF_EXPORT_PRIVATE static AtomString number(int);
WTF_EXPORT_PRIVATE static AtomString number(unsigned);
WTF_EXPORT_PRIVATE static AtomString number(unsigned long);
WTF_EXPORT_PRIVATE static AtomString number(unsigned long long);
WTF_EXPORT_PRIVATE static AtomString number(float);
WTF_EXPORT_PRIVATE static AtomString number(double);
// If we need more overloads of the number function, we can add all the others that String has, but these seem to do for now.
bool contains(UChar character) const { return m_string.contains(character); }
bool contains(ASCIILiteral literal) const { return m_string.contains(literal); }
bool contains(StringView) const;
bool containsIgnoringASCIICase(StringView) const;
size_t find(UChar character, size_t start = 0) const { return m_string.find(character, start); }
size_t find(ASCIILiteral literal, size_t start = 0) const { return m_string.find(literal, start); }
size_t find(StringView, size_t start = 0) const;
size_t findIgnoringASCIICase(StringView) const;
size_t findIgnoringASCIICase(StringView, size_t start) const;
size_t find(CodeUnitMatchFunction matchFunction, size_t start = 0) const { return m_string.find(matchFunction, start); }
bool startsWith(StringView) const;
bool startsWithIgnoringASCIICase(StringView) const;
bool startsWith(UChar character) const { return m_string.startsWith(character); }
bool endsWith(StringView) const;
bool endsWithIgnoringASCIICase(StringView) const;
bool endsWith(UChar character) const { return m_string.endsWith(character); }
WTF_EXPORT_PRIVATE AtomString convertToASCIILowercase() const;
WTF_EXPORT_PRIVATE AtomString convertToASCIIUppercase() const;
double toDouble(bool* ok = nullptr) const { return m_string.toDouble(ok); }
float toFloat(bool* ok = nullptr) const { return m_string.toFloat(ok); }
bool isNull() const { return m_string.isNull(); }
bool isEmpty() const { return m_string.isEmpty(); }
#if USE(CF)
AtomString(CFStringRef);
#endif
#if USE(FOUNDATION) && defined(__OBJC__)
AtomString(NSString *);
operator NSString *() const { return m_string; }
#endif
#if OS(WINDOWS)
AtomString(const wchar_t* characters, unsigned length)
: AtomString({ ucharFrom(characters), length }) { }
AtomString(const wchar_t* characters)
: AtomString(characters, characters ? wcslen(characters) : 0) { }
#endif
// AtomString::fromUTF8 will return a null string if the input data contains invalid UTF-8 sequences.
static AtomString fromUTF8(std::span<const char>);
static AtomString fromUTF8(const char*);
#ifndef NDEBUG
void show() const;
#endif
private:
explicit AtomString(const char*);
enum class CaseConvertType { Upper, Lower };
template<CaseConvertType> AtomString convertASCIICase() const;
WTF_EXPORT_PRIVATE static AtomString fromUTF8Internal(std::span<const char>);
String m_string;
};
static_assert(sizeof(AtomString) == sizeof(String), "AtomString and String must be the same size!");
inline bool operator==(const AtomString& a, const AtomString& b) { return a.impl() == b.impl(); }
inline bool operator==(const AtomString& a, ASCIILiteral b) { return WTF::equal(a.impl(), b); }
inline bool operator==(const AtomString& a, const Vector<UChar>& b) { return a.impl() && equal(a.impl(), b.span()); }
inline bool operator==(const AtomString& a, const String& b) { return equal(a.impl(), b.impl()); }
inline bool operator==(const String& a, const AtomString& b) { return equal(a.impl(), b.impl()); }
inline bool operator==(const Vector<UChar>& a, const AtomString& b) { return b == a; }
bool equalIgnoringASCIICase(const AtomString&, const AtomString&);
bool equalIgnoringASCIICase(const AtomString&, const String&);
bool equalIgnoringASCIICase(const String&, const AtomString&);
bool equalIgnoringASCIICase(const AtomString&, ASCIILiteral);
bool equalLettersIgnoringASCIICase(const AtomString&, ASCIILiteral);
bool startsWithLettersIgnoringASCIICase(const AtomString&, ASCIILiteral);
WTF_EXPORT_PRIVATE AtomString replaceUnpairedSurrogatesWithReplacementCharacter(AtomString&&);
WTF_EXPORT_PRIVATE String replaceUnpairedSurrogatesWithReplacementCharacter(String&&);
inline AtomString::AtomString()
{
}
inline AtomString::AtomString(std::span<const LChar> string)
: m_string(AtomStringImpl::add(string))
{
}
inline AtomString::AtomString(std::span<const UChar> string)
: m_string(AtomStringImpl::add(string))
{
}
inline AtomString::AtomString(AtomStringImpl* string)
: m_string(string)
{
}
inline AtomString::AtomString(RefPtr<AtomStringImpl>&& string)
: m_string(WTFMove(string))
{
}
inline AtomString::AtomString(Ref<AtomStringImpl>&& string)
: m_string(WTFMove(string))
{
}
inline AtomString::AtomString(StringImpl* string)
: m_string(AtomStringImpl::add(string))
{
}
inline AtomString::AtomString(const StaticStringImpl* string)
: m_string(AtomStringImpl::add(string))
{
}
inline AtomString::AtomString(const String& string)
: m_string(AtomStringImpl::add(string.impl()))
{
}
inline AtomString::AtomString(String&& string)
: m_string(AtomStringImpl::add(string.releaseImpl()))
{
}
inline AtomString::AtomString(StringImpl* baseString, unsigned start, unsigned length)
: m_string(AtomStringImpl::add(baseString, start, length))
{
}
inline AtomString::AtomString(UniquedStringImpl* uid)
: m_string(uid)
{
}
#if USE(CF)
inline AtomString::AtomString(CFStringRef string)
: m_string(AtomStringImpl::add(string))
{
}
#endif
#if USE(FOUNDATION) && defined(__OBJC__)
inline AtomString::AtomString(NSString *string)
: m_string(AtomStringImpl::add((__bridge CFStringRef)string))
{
}
#endif
struct StaticAtomString {
constexpr StaticAtomString(StringImpl::StaticStringImpl* pointer)
: m_pointer(pointer)
{
}
StringImpl::StaticStringImpl* m_pointer;
};
static_assert(sizeof(AtomString) == sizeof(StaticAtomString), "AtomString and StaticAtomString must be the same size!");
extern WTF_EXPORT_PRIVATE const StaticAtomString nullAtomData;
extern WTF_EXPORT_PRIVATE const StaticAtomString emptyAtomData;
inline const AtomString& nullAtom() { SUPPRESS_MEMORY_UNSAFE_CAST return *reinterpret_cast<const AtomString*>(&nullAtomData); }
inline const AtomString& emptyAtom() { SUPPRESS_MEMORY_UNSAFE_CAST return *reinterpret_cast<const AtomString*>(&emptyAtomData); }
inline AtomString::AtomString(ASCIILiteral literal)
: m_string(literal.length() ? AtomStringImpl::add(literal.span8()) : Ref { *emptyAtom().impl() })
{
}
inline AtomString AtomString::fromUTF8(std::span<const char> characters)
{
if (!characters.data())
return nullAtom();
if (characters.empty())
return emptyAtom();
return fromUTF8Internal(characters);
}
inline AtomString AtomString::fromUTF8(const char* characters)
{
if (!characters)
return nullAtom();
if (!*characters)
return emptyAtom();
return fromUTF8Internal(unsafeSpan(characters));
}
inline AtomString String::toExistingAtomString() const
{
if (isNull())
return { };
if (impl()->isAtom())
return Ref { static_cast<AtomStringImpl&>(*impl()) };
return AtomStringImpl::lookUp(impl());
}
// AtomStringHash is the default hash for AtomString
template<typename> struct DefaultHash;
template<> struct DefaultHash<AtomString>;
inline bool equalLettersIgnoringASCIICase(const AtomString& string, ASCIILiteral literal)
{
return equalLettersIgnoringASCIICase(string.string(), literal);
}
inline bool startsWithLettersIgnoringASCIICase(const AtomString& string, ASCIILiteral literal)
{
return startsWithLettersIgnoringASCIICase(string.string(), literal);
}
inline bool equalIgnoringASCIICase(const AtomString& a, const AtomString& b)
{
return equalIgnoringASCIICase(a.string(), b.string());
}
inline bool equalIgnoringASCIICase(const AtomString& a, const String& b)
{
return equalIgnoringASCIICase(a.string(), b);
}
inline bool equalIgnoringASCIICase(const String& a, const AtomString& b)
{
return equalIgnoringASCIICase(a, b.string());
}
inline bool equalIgnoringASCIICase(const AtomString& a, ASCIILiteral b)
{
return equalIgnoringASCIICase(a.string(), b);
}
inline int codePointCompare(const AtomString& a, const AtomString& b)
{
return codePointCompare(a.string(), b.string());
}
ALWAYS_INLINE String WARN_UNUSED_RETURN makeStringByReplacingAll(const AtomString& string, UChar target, UChar replacement)
{
return makeStringByReplacingAll(string.string(), target, replacement);
}
template<> struct IntegerToStringConversionTrait<AtomString> {
using ReturnType = AtomString;
using AdditionalArgumentType = void;
static AtomString flush(std::span<const LChar> characters, void*) { return characters; }
};
} // namespace WTF
using WTF::AtomString;
using WTF::nullAtom;
using WTF::emptyAtom;
#include <wtf/text/StringConcatenate.h>
|