2020-01-18 03:38:21 -05:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 04:24:48 -04:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 03:38:21 -05:00
|
|
|
*/
|
|
|
|
|
2018-10-10 05:53:07 -04:00
|
|
|
#pragma once
|
|
|
|
|
2020-02-14 15:41:10 -05:00
|
|
|
#include <AK/ByteBuffer.h>
|
2020-09-23 07:21:18 -04:00
|
|
|
#include <AK/Format.h>
|
2020-02-14 15:41:10 -05:00
|
|
|
#include <AK/Forward.h>
|
2020-09-22 07:11:05 -04:00
|
|
|
#include <AK/StringView.h>
|
2019-06-14 00:43:56 -04:00
|
|
|
#include <stdarg.h>
|
2018-10-10 05:53:07 -04:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
class StringBuilder {
|
|
|
|
public:
|
2019-08-07 15:28:07 -04:00
|
|
|
using OutputType = String;
|
|
|
|
|
2020-11-24 16:04:22 -05:00
|
|
|
explicit StringBuilder(size_t initial_capacity = inline_capacity);
|
2021-01-10 18:29:28 -05:00
|
|
|
~StringBuilder() = default;
|
2018-10-10 05:53:07 -04:00
|
|
|
|
2019-06-02 06:26:28 -04:00
|
|
|
void append(const StringView&);
|
2020-05-17 14:03:03 -04:00
|
|
|
void append(const Utf32View&);
|
2018-10-10 05:53:07 -04:00
|
|
|
void append(char);
|
2020-08-05 16:31:20 -04:00
|
|
|
void append_code_point(u32);
|
2019-12-09 11:45:40 -05:00
|
|
|
void append(const char*, size_t);
|
2019-01-30 10:28:51 -05:00
|
|
|
void appendvf(const char*, va_list);
|
2018-10-10 05:53:07 -04:00
|
|
|
|
2021-05-11 09:48:37 -04:00
|
|
|
void append_as_lowercase(char);
|
2020-11-02 06:56:36 -05:00
|
|
|
void append_escaped_for_json(const StringView&);
|
|
|
|
|
2020-09-22 07:11:05 -04:00
|
|
|
template<typename... Parameters>
|
2021-02-23 01:28:15 -05:00
|
|
|
void appendff(CheckedFormatString<Parameters...>&& fmtstr, const Parameters&... parameters)
|
2020-09-23 07:21:18 -04:00
|
|
|
{
|
2021-02-23 01:28:15 -05:00
|
|
|
vformat(*this, fmtstr.view(), VariadicFormatParams { parameters... });
|
2020-09-23 07:21:18 -04:00
|
|
|
}
|
2020-09-22 07:11:05 -04:00
|
|
|
|
2021-04-11 05:31:30 -04:00
|
|
|
[[nodiscard]] String build() const;
|
|
|
|
[[nodiscard]] String to_string() const;
|
|
|
|
[[nodiscard]] ByteBuffer to_byte_buffer() const;
|
2018-10-10 05:53:07 -04:00
|
|
|
|
2021-04-11 05:31:30 -04:00
|
|
|
[[nodiscard]] StringView string_view() const;
|
2019-09-25 04:49:41 -04:00
|
|
|
void clear();
|
|
|
|
|
2021-05-30 18:58:07 -04:00
|
|
|
[[nodiscard]] size_t length() const { return m_buffer.size(); }
|
|
|
|
[[nodiscard]] bool is_empty() const { return m_buffer.is_empty(); }
|
|
|
|
void trim(size_t count) { m_buffer.resize(m_buffer.size() - count); }
|
2019-09-29 10:20:09 -04:00
|
|
|
|
2020-03-20 09:33:46 -04:00
|
|
|
template<class SeparatorType, class CollectionType>
|
|
|
|
void join(const SeparatorType& separator, const CollectionType& collection)
|
|
|
|
{
|
|
|
|
bool first = true;
|
|
|
|
for (auto& item : collection) {
|
|
|
|
if (first)
|
|
|
|
first = false;
|
|
|
|
else
|
|
|
|
append(separator);
|
2021-08-05 13:53:13 -04:00
|
|
|
appendff("{}", item);
|
2020-03-20 09:33:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-10 05:53:07 -04:00
|
|
|
private:
|
2019-12-09 11:45:40 -05:00
|
|
|
void will_append(size_t);
|
2021-05-14 14:53:04 -04:00
|
|
|
u8* data() { return m_buffer.data(); }
|
|
|
|
const u8* data() const { return m_buffer.data(); }
|
2019-01-17 21:27:51 -05:00
|
|
|
|
2020-11-24 16:04:22 -05:00
|
|
|
static constexpr size_t inline_capacity = 128;
|
2021-05-14 14:53:04 -04:00
|
|
|
AK::Detail::ByteBuffer<inline_capacity> m_buffer;
|
2018-10-10 05:53:07 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
using AK::StringBuilder;
|