15 #ifndef RAPIDJSON_STRINGBUFFER_H_ 16 #define RAPIDJSON_STRINGBUFFER_H_ 19 #include "internal/stack.h" 21 #if RAPIDJSON_HAS_CXX11_RVALUE_REFS 25 #include "internal/stack.h" 27 #include <string_view> 29 #if defined(__clang__) 31 RAPIDJSON_DIAG_OFF(c++98-compat)
42 template <
typename Encoding,
typename Allocator = CrtAllocator>
45 typedef typename Encoding::Ch Ch;
47 GenericStringBuffer(Allocator* allocator = 0,
size_t capacity = kDefaultCapacity) : stack_(allocator, capacity) {}
49 #if RAPIDJSON_HAS_CXX11_RVALUE_REFS 53 stack_ = std::move(rhs.stack_);
58 void Put(Ch c) { *stack_.template Push<Ch>() = c; }
59 void PutUnsafe(Ch c) { *stack_.template PushUnsafe<Ch>() = c; }
62 void Clear() { stack_.Clear(); }
65 *stack_.template Push<Ch>() =
'\0';
67 stack_.template Pop<Ch>(1);
70 void Reserve(
size_t count) { stack_.template Reserve<Ch>(count); }
71 Ch* Push(
size_t count) {
return stack_.template Push<Ch>(count); }
72 Ch* PushUnsafe(
size_t count) {
return stack_.template PushUnsafe<Ch>(count); }
73 void Pop(
size_t count) { stack_.template Pop<Ch>(count); }
75 const Ch* GetString()
const {
77 *stack_.template Push<Ch>() =
'\0';
78 stack_.template Pop<Ch>(1);
80 return stack_.template Bottom<Ch>();
83 std::basic_string_view<Ch> GetStringView()
const 85 return std::string_view{ stack_.template Bottom<Ch>(),
GetLength() };
89 size_t GetSize()
const {
return stack_.GetSize(); }
92 size_t GetLength()
const {
return stack_.GetSize() /
sizeof(Ch); }
94 static const size_t kDefaultCapacity = 256;
106 template<
typename Encoding,
typename Allocator>
108 stream.Reserve(count);
111 template<
typename Encoding,
typename Allocator>
119 std::memset(stream.stack_.Push<
char>(n), c, n *
sizeof(c));
124 #if defined(__clang__) 128 #endif // RAPIDJSON_STRINGBUFFER_H_ Represents an in-memory output stream.
Definition: fwd.h:59
size_t GetSize() const
Get the size of string in bytes in the string buffer.
Definition: stringbuffer.h:89
#define RAPIDJSON_NAMESPACE_BEGIN
provide custom rapidjson namespace (opening expression)
Definition: rapidjson.h:121
size_t GetLength() const
Get the length of string in Ch in the string buffer.
Definition: stringbuffer.h:92
#define RAPIDJSON_NAMESPACE_END
provide custom rapidjson namespace (closing expression)
Definition: rapidjson.h:124
A type-unsafe stack for storing different types of data.
Definition: stack.h:37
UTF-8 encoding.
Definition: encodings.h:96