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
|
/*
* Copyright (C) 2014 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef StringView_h
#define StringView_h
#include <wtf/text/StringConcatenate.h>
namespace WTF {
// StringView is a non-owning reference to a string, similar to the proposed std::string_view.
// Whether the string is 8-bit or 16-bit is encoded in the upper bit of the length member.
// This means that strings longer than 2 Gigabytes can not be represented. If that turns out to be
// a problem we can investigate alternative solutions.
class StringView {
public:
StringView()
: m_characters(nullptr)
, m_length(0)
{
}
StringView(const LChar* characters, unsigned length)
{
initialize(characters, length);
}
StringView(const UChar* characters, unsigned length)
{
initialize(characters, length);
}
StringView(const StringImpl& string)
{
if (string.is8Bit())
initialize(string.characters8(), string.length());
else
initialize(string.characters16(), string.length());
}
StringView(const String& string)
{
if (!string.impl()) {
m_characters = nullptr;
m_length = 0;
return;
}
if (string.is8Bit()) {
initialize(string.characters8(), string.length());
return;
}
initialize(string.characters16(), string.length());
}
static StringView empty()
{
return StringView(reinterpret_cast<const LChar*>(""), 0);
}
const LChar* characters8() const
{
ASSERT(is8Bit());
return static_cast<const LChar*>(m_characters);
}
const UChar* characters16() const
{
ASSERT(!is8Bit());
return static_cast<const UChar*>(m_characters);
}
void getCharactersWithUpconvert(LChar*) const;
void getCharactersWithUpconvert(UChar*) const;
class UpconvertedCharacters {
public:
explicit UpconvertedCharacters(const StringView&);
operator const UChar*() const { return m_characters; }
const UChar* get() const { return m_characters; }
private:
Vector<UChar, 32> m_upconvertedCharacters;
const UChar* m_characters;
};
UpconvertedCharacters upconvertedCharacters() const { return UpconvertedCharacters(*this); }
bool isNull() const { return !m_characters; }
bool isEmpty() const { return !length(); }
unsigned length() const { return m_length & ~is16BitStringFlag; }
explicit operator bool() const { return !isNull(); }
bool is8Bit() const { return !(m_length & is16BitStringFlag); }
StringView substring(unsigned start, unsigned length = std::numeric_limits<unsigned>::max()) const
{
if (start >= this->length())
return empty();
unsigned maxLength = this->length() - start;
if (length >= maxLength) {
if (!start)
return *this;
length = maxLength;
}
if (is8Bit())
return StringView(characters8() + start, length);
return StringView(characters16() + start, length);
}
String toString() const
{
if (is8Bit())
return String(characters8(), length());
return String(characters16(), length());
}
float toFloat(bool& isValid)
{
if (is8Bit())
return charactersToFloat(characters8(), length(), &isValid);
return charactersToFloat(characters16(), length(), &isValid);
}
int toInt(bool& isValid)
{
if (is8Bit())
return charactersToInt(characters8(), length(), &isValid);
return charactersToInt(characters16(), length(), &isValid);
}
String toStringWithoutCopying() const
{
if (is8Bit())
return StringImpl::createWithoutCopying(characters8(), length());
return StringImpl::createWithoutCopying(characters16(), length());
}
UChar operator[](unsigned index) const
{
ASSERT(index < length());
if (is8Bit())
return characters8()[index];
return characters16()[index];
}
size_t find(UChar character, unsigned start = 0) const
{
if (is8Bit())
return WTF::find(characters8(), length(), character, start);
return WTF::find(characters16(), length(), character, start);
}
bool contains(UChar c) const { return find(c) != notFound; }
#if USE(CF)
// This function converts null strings to empty strings.
WTF_EXPORT_STRING_API RetainPtr<CFStringRef> createCFStringWithoutCopying() const;
#endif
#ifdef __OBJC__
// These functions convert null strings to empty strings.
WTF_EXPORT_STRING_API RetainPtr<NSString> createNSString() const;
WTF_EXPORT_STRING_API RetainPtr<NSString> createNSStringWithoutCopying() const;
#endif
private:
void initialize(const LChar* characters, unsigned length)
{
ASSERT(!(length & is16BitStringFlag));
m_characters = characters;
m_length = length;
}
void initialize(const UChar* characters, unsigned length)
{
ASSERT(!(length & is16BitStringFlag));
m_characters = characters;
m_length = is16BitStringFlag | length;
}
static const unsigned is16BitStringFlag = 1u << 31;
const void* m_characters;
unsigned m_length;
};
inline void StringView::getCharactersWithUpconvert(LChar* destination) const
{
ASSERT(is8Bit());
memcpy(destination, characters8(), length());
}
inline void StringView::getCharactersWithUpconvert(UChar* destination) const
{
if (is8Bit()) {
const LChar* characters8 = this->characters8();
unsigned length = this->length();
for (unsigned i = 0; i < length; ++i)
destination[i] = characters8[i];
return;
}
memcpy(destination, characters16(), length() * sizeof(UChar));
}
inline StringView::UpconvertedCharacters::UpconvertedCharacters(const StringView& string)
{
if (!string.is8Bit()) {
m_characters = string.characters16();
return;
}
const LChar* characters8 = string.characters8();
unsigned length = string.length();
m_upconvertedCharacters.reserveInitialCapacity(length);
for (unsigned i = 0; i < length; ++i)
m_upconvertedCharacters.uncheckedAppend(characters8[i]);
m_characters = m_upconvertedCharacters.data();
}
template<> class StringTypeAdapter<StringView> {
public:
StringTypeAdapter<StringView>(StringView string)
: m_string(string)
{
}
unsigned length() { return m_string.length(); }
bool is8Bit() { return m_string.is8Bit(); }
void writeTo(LChar* destination) { m_string.getCharactersWithUpconvert(destination); }
void writeTo(UChar* destination) { m_string.getCharactersWithUpconvert(destination); }
private:
StringView m_string;
};
template<typename CharacterType, size_t inlineCapacity> void append(Vector<CharacterType, inlineCapacity>& buffer, StringView string)
{
unsigned oldSize = buffer.size();
buffer.grow(oldSize + string.length());
string.getCharactersWithUpconvert(buffer.data() + oldSize);
}
} // namespace WTF
using WTF::append;
using WTF::StringView;
#endif // StringView_h
|