ladybird/Kernel/KBufferBuilder.h
Andreas Kling 73fdbba59c AK: Rename <AK/AKString.h> to <AK/String.h>
This was a workaround to be able to build on case-insensitive file
systems where it might get confused about <string.h> vs <String.h>.

Let's just not support building that way, so String.h can have an
objectively nicer name. :^)
2019-09-06 15:36:54 +02:00

29 lines
557 B
C++

#pragma once
#include <AK/String.h>
#include <Kernel/KBuffer.h>
#include <stdarg.h>
class KBufferBuilder {
public:
using OutputType = KBuffer;
explicit KBufferBuilder();
~KBufferBuilder() {}
void append(const StringView&);
void append(char);
void append(const char*, int);
void appendf(const char*, ...);
void appendvf(const char*, va_list);
KBuffer build();
private:
bool can_append(size_t) const;
u8* insertion_ptr() { return m_buffer.data() + m_size; }
KBuffer m_buffer;
size_t m_size { 0 };
};