2020-01-18 11:38:21 +03: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.
|
|
|
|
*/
|
|
|
|
|
2018-10-10 12:53:07 +03:00
|
|
|
#pragma once
|
|
|
|
|
2020-02-14 23:41:10 +03:00
|
|
|
#include <AK/ByteBuffer.h>
|
|
|
|
#include <AK/Forward.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;
|
|
|
|
|
2019-12-09 19:45:40 +03:00
|
|
|
explicit StringBuilder(size_t initial_capacity = 16);
|
2019-05-28 12:53:16 +03:00
|
|
|
~StringBuilder() {}
|
2018-10-10 12:53:07 +03:00
|
|
|
|
2019-06-02 13:26:28 +03:00
|
|
|
void append(const StringView&);
|
2020-05-17 21:03:03 +03:00
|
|
|
void append(const Utf32View&);
|
2018-10-10 12:53:07 +03:00
|
|
|
void append(char);
|
2020-08-05 23:31:20 +03:00
|
|
|
void append_code_point(u32);
|
2019-12-09 19:45:40 +03:00
|
|
|
void append(const char*, size_t);
|
2019-01-18 04:41:27 +03:00
|
|
|
void appendf(const char*, ...);
|
2019-01-30 18:28:51 +03:00
|
|
|
void appendvf(const char*, va_list);
|
2018-10-10 12:53:07 +03:00
|
|
|
|
2020-03-08 15:44:38 +03:00
|
|
|
String build() const;
|
|
|
|
String to_string() const;
|
|
|
|
ByteBuffer to_byte_buffer() const;
|
2018-10-10 12:53:07 +03:00
|
|
|
|
2019-09-25 11:49:41 +03:00
|
|
|
StringView string_view() const;
|
|
|
|
void clear();
|
|
|
|
|
2019-12-09 19:45:40 +03:00
|
|
|
size_t length() const { return m_length; }
|
2020-02-15 00:17:17 +03:00
|
|
|
bool is_empty() const { return m_length == 0; }
|
2019-12-09 19:45:40 +03:00
|
|
|
void trim(size_t count) { m_length -= count; }
|
2019-09-29 17:20:09 +03:00
|
|
|
|
2020-03-20 16:33:46 +03: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);
|
|
|
|
append(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-10 12:53:07 +03:00
|
|
|
private:
|
2019-12-09 19:45:40 +03:00
|
|
|
void will_append(size_t);
|
2019-01-18 05:27:51 +03:00
|
|
|
|
|
|
|
ByteBuffer m_buffer;
|
2019-12-09 19:45:40 +03:00
|
|
|
size_t m_length { 0 };
|
2018-10-10 12:53:07 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
using AK::StringBuilder;
|