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