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