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
|
/*
* Copyright (C) 2009, 2010, 2012, 2013 Apple Inc. All rights reserved.
* Copyright (C) 2012 Google 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. ``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
* 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 StringBuilder_h
#define StringBuilder_h
#include <wtf/text/AtomicString.h>
#include <wtf/text/StringView.h>
#include <wtf/text/WTFString.h>
namespace WTF {
class StringBuilder {
// Disallow copying since it's expensive and we don't want code to do it by accident.
WTF_MAKE_NONCOPYABLE(StringBuilder);
public:
StringBuilder()
: m_length(0)
, m_is8Bit(true)
, m_bufferCharacters8(0)
{
}
WTF_EXPORT_PRIVATE void append(const UChar*, unsigned);
WTF_EXPORT_PRIVATE void append(const LChar*, unsigned);
ALWAYS_INLINE void append(const char* characters, unsigned length) { append(reinterpret_cast<const LChar*>(characters), length); }
void append(const String& string)
{
if (!string.length())
return;
// If we're appending to an empty string, and there is not a buffer (reserveCapacity has not been called)
// then just retain the string.
if (!m_length && !m_buffer) {
m_string = string;
m_length = string.length();
m_is8Bit = m_string.is8Bit();
return;
}
if (string.is8Bit())
append(string.characters8(), string.length());
else
append(string.characters16(), string.length());
}
void append(const StringBuilder& other)
{
if (!other.m_length)
return;
// If we're appending to an empty string, and there is not a buffer (reserveCapacity has not been called)
// then just retain the string.
if (!m_length && !m_buffer && !other.m_string.isNull()) {
m_string = other.m_string;
m_length = other.m_length;
return;
}
if (other.is8Bit())
append(other.characters8(), other.m_length);
else
append(other.characters16(), other.m_length);
}
void append(StringView stringView)
{
if (stringView.is8Bit())
append(stringView.characters8(), stringView.length());
else
append(stringView.characters16(), stringView.length());
}
void append(const String& string, unsigned offset, unsigned length)
{
if (!string.length())
return;
if ((offset + length) > string.length())
return;
if (string.is8Bit())
append(string.characters8() + offset, length);
else
append(string.characters16() + offset, length);
}
void append(const char* characters)
{
if (characters)
append(characters, strlen(characters));
}
void append(UChar c)
{
if (m_buffer && m_length < m_buffer->length() && m_string.isNull()) {
if (!m_is8Bit) {
m_bufferCharacters16[m_length++] = c;
return;
}
if (!(c & ~0xff)) {
m_bufferCharacters8[m_length++] = static_cast<LChar>(c);
return;
}
}
append(&c, 1);
}
void append(LChar c)
{
if (m_buffer && m_length < m_buffer->length() && m_string.isNull()) {
if (m_is8Bit)
m_bufferCharacters8[m_length++] = c;
else
m_bufferCharacters16[m_length++] = c;
} else
append(&c, 1);
}
void append(char c)
{
append(static_cast<LChar>(c));
}
void append(UChar32 c)
{
if (U_IS_BMP(c)) {
append(static_cast<UChar>(c));
return;
}
append(U16_LEAD(c));
append(U16_TRAIL(c));
}
WTF_EXPORT_PRIVATE void appendQuotedJSONString(const String&);
template<unsigned charactersCount>
ALWAYS_INLINE void appendLiteral(const char (&characters)[charactersCount]) { append(characters, charactersCount - 1); }
WTF_EXPORT_PRIVATE void appendNumber(int);
WTF_EXPORT_PRIVATE void appendNumber(unsigned int);
WTF_EXPORT_PRIVATE void appendNumber(long);
WTF_EXPORT_PRIVATE void appendNumber(unsigned long);
WTF_EXPORT_PRIVATE void appendNumber(long long);
WTF_EXPORT_PRIVATE void appendNumber(unsigned long long);
WTF_EXPORT_PRIVATE void appendNumber(double, unsigned precision = 6, TrailingZerosTruncatingPolicy = TruncateTrailingZeros);
WTF_EXPORT_PRIVATE void appendECMAScriptNumber(double);
WTF_EXPORT_PRIVATE void appendFixedWidthNumber(double, unsigned decimalPlaces);
String toString()
{
shrinkToFit();
if (m_string.isNull())
reifyString();
return m_string;
}
const String& toStringPreserveCapacity() const
{
if (m_string.isNull())
reifyString();
return m_string;
}
AtomicString toAtomicString() const
{
if (!m_length)
return emptyAtom;
// If the buffer is sufficiently over-allocated, make a new AtomicString from a copy so its buffer is not so large.
if (canShrink()) {
if (is8Bit())
return AtomicString(characters8(), length());
return AtomicString(characters16(), length());
}
if (!m_string.isNull())
return AtomicString(m_string);
ASSERT(m_buffer);
return AtomicString(m_buffer.get(), 0, m_length);
}
unsigned length() const
{
return m_length;
}
bool isEmpty() const { return !m_length; }
WTF_EXPORT_PRIVATE void reserveCapacity(unsigned newCapacity);
unsigned capacity() const
{
return m_buffer ? m_buffer->length() : m_length;
}
WTF_EXPORT_PRIVATE void resize(unsigned newSize);
WTF_EXPORT_PRIVATE bool canShrink() const;
WTF_EXPORT_PRIVATE void shrinkToFit();
UChar operator[](unsigned i) const
{
ASSERT_WITH_SECURITY_IMPLICATION(i < m_length);
if (m_is8Bit)
return characters8()[i];
return characters16()[i];
}
const LChar* characters8() const
{
ASSERT(m_is8Bit);
if (!m_length)
return 0;
if (!m_string.isNull())
return m_string.characters8();
ASSERT(m_buffer);
return m_buffer->characters8();
}
const UChar* characters16() const
{
ASSERT(!m_is8Bit);
if (!m_length)
return 0;
if (!m_string.isNull())
return m_string.characters16();
ASSERT(m_buffer);
return m_buffer->characters16();
}
bool is8Bit() const { return m_is8Bit; }
void clear()
{
m_length = 0;
m_string = String();
m_buffer = nullptr;
m_bufferCharacters8 = 0;
m_is8Bit = true;
}
void swap(StringBuilder& stringBuilder)
{
std::swap(m_length, stringBuilder.m_length);
m_string.swap(stringBuilder.m_string);
m_buffer.swap(stringBuilder.m_buffer);
std::swap(m_is8Bit, stringBuilder.m_is8Bit);
std::swap(m_bufferCharacters8, stringBuilder.m_bufferCharacters8);
}
private:
void allocateBuffer(const LChar* currentCharacters, unsigned requiredLength);
void allocateBuffer(const UChar* currentCharacters, unsigned requiredLength);
void allocateBufferUpConvert(const LChar* currentCharacters, unsigned requiredLength);
template <typename CharType>
void reallocateBuffer(unsigned requiredLength);
template <typename CharType>
ALWAYS_INLINE CharType* appendUninitialized(unsigned length);
template <typename CharType>
CharType* appendUninitializedSlow(unsigned length);
template <typename CharType>
ALWAYS_INLINE CharType * getBufferCharacters();
WTF_EXPORT_PRIVATE void reifyString() const;
unsigned m_length;
mutable String m_string;
RefPtr<StringImpl> m_buffer;
bool m_is8Bit;
union {
LChar* m_bufferCharacters8;
UChar* m_bufferCharacters16;
};
};
template <>
ALWAYS_INLINE LChar* StringBuilder::getBufferCharacters<LChar>()
{
ASSERT(m_is8Bit);
return m_bufferCharacters8;
}
template <>
ALWAYS_INLINE UChar* StringBuilder::getBufferCharacters<UChar>()
{
ASSERT(!m_is8Bit);
return m_bufferCharacters16;
}
template <typename CharType>
bool equal(const StringBuilder& s, const CharType* buffer, unsigned length)
{
if (s.length() != length)
return false;
if (s.is8Bit())
return equal(s.characters8(), buffer, length);
return equal(s.characters16(), buffer, length);
}
template <typename StringType>
bool equal(const StringBuilder& a, const StringType& b)
{
if (a.length() != b.length())
return false;
if (!a.length())
return true;
if (a.is8Bit()) {
if (b.is8Bit())
return equal(a.characters8(), b.characters8(), a.length());
return equal(a.characters8(), b.characters16(), a.length());
}
if (b.is8Bit())
return equal(a.characters16(), b.characters8(), a.length());
return equal(a.characters16(), b.characters16(), a.length());
}
inline bool operator==(const StringBuilder& a, const StringBuilder& b) { return equal(a, b); }
inline bool operator!=(const StringBuilder& a, const StringBuilder& b) { return !equal(a, b); }
inline bool operator==(const StringBuilder& a, const String& b) { return equal(a, b); }
inline bool operator!=(const StringBuilder& a, const String& b) { return !equal(a, b); }
inline bool operator==(const String& a, const StringBuilder& b) { return equal(b, a); }
inline bool operator!=(const String& a, const StringBuilder& b) { return !equal(b, a); }
} // namespace WTF
using WTF::StringBuilder;
#endif // StringBuilder_h
|