NGL  6.5
The NCCA Graphics Library
stringbuffer.h
Go to the documentation of this file.
1 // Tencent is pleased to support the open source community by making RapidJSON available.
2 //
3 // Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
4 //
5 // Licensed under the MIT License (the "License"); you may not use this file except
6 // in compliance with the License. You may obtain a copy of the License at
7 //
8 // http://opensource.org/licenses/MIT
9 //
10 // Unless required by applicable law or agreed to in writing, software distributed
11 // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
12 // CONDITIONS OF ANY KIND, either express or implied. See the License for the
13 // specific language governing permissions and limitations under the License.
14 
15 #ifndef RAPIDJSON_STRINGBUFFER_H_
16 #define RAPIDJSON_STRINGBUFFER_H_
17 
18 #include "rapidjson.h"
19 
20 #if RAPIDJSON_HAS_CXX11_RVALUE_REFS
21 #include <utility> // std::move
22 #endif
23 
24 #include "internal/stack.h"
25 
27 
29 
34 template <typename Encoding, typename Allocator = CrtAllocator>
36 public:
37  typedef typename Encoding::Ch Ch;
38 
39  GenericStringBuffer(Allocator* allocator = 0, size_t capacity = kDefaultCapacity) : stack_(allocator, capacity) {}
40 
41 #if RAPIDJSON_HAS_CXX11_RVALUE_REFS
44  if (&rhs != this)
45  stack_ = std::move(rhs.stack_);
46  return *this;
47  }
48 #endif
49 
50  void Put(Ch c) { *stack_.template Push<Ch>() = c; }
51  void Flush() {}
52 
53  void Clear() { stack_.Clear(); }
54  void ShrinkToFit() {
55  // Push and pop a null terminator. This is safe.
56  *stack_.template Push<Ch>() = '\0';
57  stack_.ShrinkToFit();
58  stack_.template Pop<Ch>(1);
59  }
60  Ch* Push(size_t count) { return stack_.template Push<Ch>(count); }
61  void Pop(size_t count) { stack_.template Pop<Ch>(count); }
62 
63  const Ch* GetString() const {
64  // Push and pop a null terminator. This is safe.
65  *stack_.template Push<Ch>() = '\0';
66  stack_.template Pop<Ch>(1);
67 
68  return stack_.template Bottom<Ch>();
69  }
70 
71  size_t GetSize() const { return stack_.GetSize(); }
72 
73  static const size_t kDefaultCapacity = 256;
75 
76 private:
77  // Prohibit copy constructor & assignment operator.
80 };
81 
84 
86 template<>
87 inline void PutN(GenericStringBuffer<UTF8<> >& stream, char c, size_t n) {
88  std::memset(stream.stack_.Push<char>(n), c, n * sizeof(c));
89 }
90 
92 
93 #endif // RAPIDJSON_STRINGBUFFER_H_
Represents an in-memory output stream.
Definition: stringbuffer.h:35
static const size_t kDefaultCapacity
Definition: stringbuffer.h:73
const GLfloat * c
Definition: glew.h:16629
const Ch * GetString() const
Definition: stringbuffer.h:63
void PutN(GenericStringBuffer< UTF8<> > &stream, char c, size_t n)
Implement specialized version of PutN() with memset() for better performance.
Definition: stringbuffer.h:87
GenericStringBuffer< UTF8<> > StringBuffer
String buffer with UTF8 encoding.
Definition: stringbuffer.h:83
#define RAPIDJSON_NAMESPACE_BEGIN
provide custom rapidjson namespace (opening expression)
Definition: rapidjson.h:116
GLuint GLuint stream
Definition: glew.h:7293
fmt::BufferedFile & move(fmt::BufferedFile &f)
Definition: posix.h:361
GenericStringBuffer & operator=(const GenericStringBuffer &)
GLuint GLuint GLsizei count
Definition: glew.h:1256
#define RAPIDJSON_NAMESPACE_END
provide custom rapidjson namespace (closing expression)
Definition: rapidjson.h:119
A type-unsafe stack for storing different types of data.
Definition: stack.h:31
internal::Stack< Allocator > stack_
Definition: stringbuffer.h:74
size_t GetSize() const
Definition: stringbuffer.h:71
Encoding::Ch Ch
Definition: stringbuffer.h:37
common definitions and configuration
GLsizei n
Definition: glew.h:4052
GenericStringBuffer(Allocator *allocator=0, size_t capacity=kDefaultCapacity)
Definition: stringbuffer.h:39
void Pop(size_t count)
Definition: stringbuffer.h:61
Ch * Push(size_t count)
Definition: stringbuffer.h:60
UTF-8 encoding.
Definition: encodings.h:96