2019-06-07 06:41:11 -03:00
|
|
|
#include <AK/PrintfImplementation.h>
|
2019-01-18 00:27:51 -02:00
|
|
|
#include <AK/StdLibExtras.h>
|
2019-06-07 06:41:11 -03:00
|
|
|
#include <AK/StringBuilder.h>
|
2019-06-14 01:43:56 -03:00
|
|
|
#include <stdarg.h>
|
2018-10-10 06:53:07 -03:00
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
2019-12-09 13:45:40 -03:00
|
|
|
inline void StringBuilder::will_append(size_t size)
|
2018-10-10 06:53:07 -03:00
|
|
|
{
|
2019-12-09 13:45:40 -03:00
|
|
|
if ((m_length + size) > (size_t)m_buffer.size())
|
|
|
|
|
m_buffer.grow(max((size_t)16, (size_t)m_buffer.size() * 2 + size));
|
2018-10-10 06:53:07 -03:00
|
|
|
}
|
|
|
|
|
|
2019-12-09 13:45:40 -03:00
|
|
|
StringBuilder::StringBuilder(size_t initial_capacity)
|
2019-01-28 19:55:55 -02:00
|
|
|
{
|
2019-12-09 13:45:40 -03:00
|
|
|
m_buffer.grow((int)initial_capacity);
|
2019-01-28 19:55:55 -02:00
|
|
|
}
|
|
|
|
|
|
2019-06-02 07:26:28 -03:00
|
|
|
void StringBuilder::append(const StringView& str)
|
2018-11-18 11:57:41 -02:00
|
|
|
{
|
2019-01-18 00:27:51 -02:00
|
|
|
if (str.is_empty())
|
|
|
|
|
return;
|
|
|
|
|
will_append(str.length());
|
2019-09-30 03:57:01 -03:00
|
|
|
memcpy(m_buffer.data() + m_length, str.characters_without_null_termination(), str.length());
|
2019-01-18 00:27:51 -02:00
|
|
|
m_length += str.length();
|
2018-11-18 11:57:41 -02:00
|
|
|
}
|
|
|
|
|
|
2019-12-09 13:45:40 -03:00
|
|
|
void StringBuilder::append(const char* characters, size_t length)
|
2019-01-28 19:55:55 -02:00
|
|
|
{
|
|
|
|
|
if (!length)
|
|
|
|
|
return;
|
|
|
|
|
will_append(length);
|
2019-09-30 03:57:01 -03:00
|
|
|
memcpy(m_buffer.data() + m_length, characters, length);
|
2019-01-28 19:55:55 -02:00
|
|
|
m_length += length;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-10 06:53:07 -03:00
|
|
|
void StringBuilder::append(char ch)
|
|
|
|
|
{
|
2019-01-18 00:27:51 -02:00
|
|
|
will_append(1);
|
2019-09-30 03:57:01 -03:00
|
|
|
m_buffer.data()[m_length] = ch;
|
2019-01-18 00:27:51 -02:00
|
|
|
m_length += 1;
|
2018-10-10 06:53:07 -03:00
|
|
|
}
|
|
|
|
|
|
2019-01-30 13:28:51 -02:00
|
|
|
void StringBuilder::appendvf(const char* fmt, va_list ap)
|
2019-01-17 23:41:27 -02:00
|
|
|
{
|
2019-05-28 06:53:16 -03:00
|
|
|
printf_internal([this](char*&, char ch) {
|
2019-01-17 23:41:27 -02:00
|
|
|
append(ch);
|
2019-05-28 06:53:16 -03:00
|
|
|
},
|
|
|
|
|
nullptr, fmt, ap);
|
2019-01-30 13:28:51 -02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StringBuilder::appendf(const char* fmt, ...)
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
|
|
|
|
va_start(ap, fmt);
|
2019-04-15 18:56:35 -03:00
|
|
|
will_append(strlen(fmt));
|
2019-01-30 13:28:51 -02:00
|
|
|
appendvf(fmt, ap);
|
2019-01-17 23:41:27 -02:00
|
|
|
va_end(ap);
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-18 00:27:51 -02:00
|
|
|
ByteBuffer StringBuilder::to_byte_buffer()
|
|
|
|
|
{
|
|
|
|
|
m_buffer.trim(m_length);
|
2019-07-08 10:54:42 -03:00
|
|
|
m_length = 0;
|
2019-01-18 12:35:38 -02:00
|
|
|
return move(m_buffer);
|
2019-01-18 00:27:51 -02:00
|
|
|
}
|
|
|
|
|
|
2019-01-31 14:31:23 -02:00
|
|
|
String StringBuilder::to_string()
|
2018-10-10 06:53:07 -03:00
|
|
|
{
|
2019-09-30 03:57:01 -03:00
|
|
|
auto string = String((const char*)m_buffer.data(), m_length);
|
2019-09-25 05:49:41 -03:00
|
|
|
clear();
|
|
|
|
|
return string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StringView StringBuilder::string_view() const
|
|
|
|
|
{
|
2019-09-30 03:57:01 -03:00
|
|
|
return StringView { (const char*)m_buffer.data(), m_length };
|
2019-09-25 05:49:41 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StringBuilder::clear()
|
|
|
|
|
{
|
2019-01-18 12:35:38 -02:00
|
|
|
m_buffer.clear();
|
2019-07-08 10:54:42 -03:00
|
|
|
m_length = 0;
|
2018-10-10 06:53:07 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|