2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* 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 THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT HOLDER 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.
|
|
|
|
*/
|
|
|
|
|
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>
|
2020-02-14 20:41:10 +00:00
|
|
|
#include <AK/String.h>
|
2018-10-10 09:53:07 +00:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2019-12-09 16:45:40 +00:00
|
|
|
inline void StringBuilder::will_append(size_t size)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2019-12-09 16:45:40 +00: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 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2019-12-09 16:45:40 +00:00
|
|
|
StringBuilder::StringBuilder(size_t initial_capacity)
|
2019-01-28 21:55:55 +00:00
|
|
|
{
|
2019-12-09 16:45:40 +00:00
|
|
|
m_buffer.grow((int)initial_capacity);
|
2019-01-28 21:55:55 +00:00
|
|
|
}
|
|
|
|
|
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-09-30 06:57:01 +00:00
|
|
|
memcpy(m_buffer.data() + 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-12-09 16:45:40 +00:00
|
|
|
void StringBuilder::append(const char* characters, size_t length)
|
2019-01-28 21:55:55 +00:00
|
|
|
{
|
|
|
|
if (!length)
|
|
|
|
return;
|
|
|
|
will_append(length);
|
2019-09-30 06:57:01 +00:00
|
|
|
memcpy(m_buffer.data() + m_length, characters, length);
|
2019-01-28 21:55:55 +00:00
|
|
|
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);
|
2019-09-30 06:57:01 +00:00
|
|
|
m_buffer.data()[m_length] = ch;
|
2019-01-18 02:27:51 +00:00
|
|
|
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
|
|
|
{
|
2020-02-09 10:47:24 +00:00
|
|
|
return String((const char*)m_buffer.data(), m_length);
|
2019-09-25 08:49:41 +00:00
|
|
|
}
|
|
|
|
|
2020-02-14 20:41:10 +00:00
|
|
|
String StringBuilder::build()
|
|
|
|
{
|
|
|
|
return to_string();
|
|
|
|
}
|
|
|
|
|
2019-09-25 08:49:41 +00:00
|
|
|
StringView StringBuilder::string_view() const
|
|
|
|
{
|
2019-09-30 06:57:01 +00:00
|
|
|
return StringView { (const char*)m_buffer.data(), m_length };
|
2019-09-25 08:49:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void StringBuilder::clear()
|
|
|
|
{
|
2019-01-18 14:35:38 +00:00
|
|
|
m_buffer.clear();
|
2019-07-08 13:54:42 +00:00
|
|
|
m_length = 0;
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|