mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
e6284a8774
The SpinLock was all backwards and didn't actually work. Fixing it exposed how wrong most of the locking here is. I need to come up with a better granularity here.
39 lines
765 B
C++
39 lines
765 B
C++
#include "StringBuilder.h"
|
|
|
|
namespace AK {
|
|
|
|
void StringBuilder::append(String&& str)
|
|
{
|
|
m_strings.append(move(str));
|
|
}
|
|
|
|
void StringBuilder::append(char ch)
|
|
{
|
|
m_strings.append(StringImpl::create(&ch, 1));
|
|
}
|
|
|
|
String StringBuilder::build()
|
|
{
|
|
auto strings = move(m_strings);
|
|
if (strings.isEmpty())
|
|
return String::empty();
|
|
|
|
size_t sizeNeeded = 0;
|
|
for (auto& string : strings)
|
|
sizeNeeded += string.length();
|
|
|
|
char* buffer;
|
|
auto impl = StringImpl::createUninitialized(sizeNeeded, buffer);
|
|
if (!impl)
|
|
return String();
|
|
|
|
for (auto& string : strings) {
|
|
memcpy(buffer, string.characters(), string.length());
|
|
buffer += string.length();
|
|
}
|
|
*buffer = '\0';
|
|
return String(move(impl));
|
|
}
|
|
|
|
}
|
|
|