sq_detailed_metrics 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/extconf.rb +26 -0
- data/include/half.hpp +4575 -0
- data/include/msgpack.h +24 -0
- data/include/msgpack/fbuffer.h +42 -0
- data/include/msgpack/gcc_atomic.h +25 -0
- data/include/msgpack/object.h +118 -0
- data/include/msgpack/pack.h +174 -0
- data/include/msgpack/pack_define.h +18 -0
- data/include/msgpack/pack_template.h +952 -0
- data/include/msgpack/sbuffer.h +115 -0
- data/include/msgpack/sysdep.h +221 -0
- data/include/msgpack/timestamp.h +58 -0
- data/include/msgpack/unpack.h +281 -0
- data/include/msgpack/unpack_define.h +89 -0
- data/include/msgpack/unpack_template.h +471 -0
- data/include/msgpack/util.h +15 -0
- data/include/msgpack/version.h +38 -0
- data/include/msgpack/version_master.h +3 -0
- data/include/msgpack/vrefbuffer.h +144 -0
- data/include/msgpack/zbuffer.h +205 -0
- data/include/msgpack/zone.h +163 -0
- data/include/rapidjson/allocators.h +271 -0
- data/include/rapidjson/document.h +2575 -0
- data/include/rapidjson/encodedstream.h +299 -0
- data/include/rapidjson/encodings.h +716 -0
- data/include/rapidjson/error/en.h +74 -0
- data/include/rapidjson/error/error.h +155 -0
- data/include/rapidjson/filereadstream.h +99 -0
- data/include/rapidjson/filewritestream.h +104 -0
- data/include/rapidjson/fwd.h +151 -0
- data/include/rapidjson/internal/biginteger.h +290 -0
- data/include/rapidjson/internal/diyfp.h +258 -0
- data/include/rapidjson/internal/dtoa.h +245 -0
- data/include/rapidjson/internal/ieee754.h +78 -0
- data/include/rapidjson/internal/itoa.h +304 -0
- data/include/rapidjson/internal/meta.h +181 -0
- data/include/rapidjson/internal/pow10.h +55 -0
- data/include/rapidjson/internal/regex.h +701 -0
- data/include/rapidjson/internal/stack.h +230 -0
- data/include/rapidjson/internal/strfunc.h +55 -0
- data/include/rapidjson/internal/strtod.h +269 -0
- data/include/rapidjson/internal/swap.h +46 -0
- data/include/rapidjson/istreamwrapper.h +115 -0
- data/include/rapidjson/memorybuffer.h +70 -0
- data/include/rapidjson/memorystream.h +71 -0
- data/include/rapidjson/msinttypes/inttypes.h +316 -0
- data/include/rapidjson/msinttypes/stdint.h +300 -0
- data/include/rapidjson/ostreamwrapper.h +81 -0
- data/include/rapidjson/pointer.h +1358 -0
- data/include/rapidjson/prettywriter.h +255 -0
- data/include/rapidjson/rapidjson.h +615 -0
- data/include/rapidjson/reader.h +1879 -0
- data/include/rapidjson/schema.h +2006 -0
- data/include/rapidjson/stream.h +179 -0
- data/include/rapidjson/stringbuffer.h +117 -0
- data/include/rapidjson/writer.h +610 -0
- data/include/xxhash.h +328 -0
- data/json_conv.cpp +284 -0
- data/json_conv.hpp +17 -0
- data/metrics.cpp +239 -0
- data/metrics.hpp +84 -0
- data/msgpack/objectc.c +482 -0
- data/msgpack/unpack.c +703 -0
- data/msgpack/version.c +22 -0
- data/msgpack/vrefbuffer.c +250 -0
- data/msgpack/zone.c +222 -0
- data/sq_detailed_metrics.cpp +248 -0
- metadata +199 -0
@@ -0,0 +1,179 @@
|
|
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
|
+
#include "rapidjson.h"
|
16
|
+
|
17
|
+
#ifndef RAPIDJSON_STREAM_H_
|
18
|
+
#define RAPIDJSON_STREAM_H_
|
19
|
+
|
20
|
+
#include "encodings.h"
|
21
|
+
|
22
|
+
RAPIDJSON_NAMESPACE_BEGIN
|
23
|
+
|
24
|
+
///////////////////////////////////////////////////////////////////////////////
|
25
|
+
// Stream
|
26
|
+
|
27
|
+
/*! \class rapidjson::Stream
|
28
|
+
\brief Concept for reading and writing characters.
|
29
|
+
|
30
|
+
For read-only stream, no need to implement PutBegin(), Put(), Flush() and PutEnd().
|
31
|
+
|
32
|
+
For write-only stream, only need to implement Put() and Flush().
|
33
|
+
|
34
|
+
\code
|
35
|
+
concept Stream {
|
36
|
+
typename Ch; //!< Character type of the stream.
|
37
|
+
|
38
|
+
//! Read the current character from stream without moving the read cursor.
|
39
|
+
Ch Peek() const;
|
40
|
+
|
41
|
+
//! Read the current character from stream and moving the read cursor to next character.
|
42
|
+
Ch Take();
|
43
|
+
|
44
|
+
//! Get the current read cursor.
|
45
|
+
//! \return Number of characters read from start.
|
46
|
+
size_t Tell();
|
47
|
+
|
48
|
+
//! Begin writing operation at the current read pointer.
|
49
|
+
//! \return The begin writer pointer.
|
50
|
+
Ch* PutBegin();
|
51
|
+
|
52
|
+
//! Write a character.
|
53
|
+
void Put(Ch c);
|
54
|
+
|
55
|
+
//! Flush the buffer.
|
56
|
+
void Flush();
|
57
|
+
|
58
|
+
//! End the writing operation.
|
59
|
+
//! \param begin The begin write pointer returned by PutBegin().
|
60
|
+
//! \return Number of characters written.
|
61
|
+
size_t PutEnd(Ch* begin);
|
62
|
+
}
|
63
|
+
\endcode
|
64
|
+
*/
|
65
|
+
|
66
|
+
//! Provides additional information for stream.
|
67
|
+
/*!
|
68
|
+
By using traits pattern, this type provides a default configuration for stream.
|
69
|
+
For custom stream, this type can be specialized for other configuration.
|
70
|
+
See TEST(Reader, CustomStringStream) in readertest.cpp for example.
|
71
|
+
*/
|
72
|
+
template<typename Stream>
|
73
|
+
struct StreamTraits {
|
74
|
+
//! Whether to make local copy of stream for optimization during parsing.
|
75
|
+
/*!
|
76
|
+
By default, for safety, streams do not use local copy optimization.
|
77
|
+
Stream that can be copied fast should specialize this, like StreamTraits<StringStream>.
|
78
|
+
*/
|
79
|
+
enum { copyOptimization = 0 };
|
80
|
+
};
|
81
|
+
|
82
|
+
//! Reserve n characters for writing to a stream.
|
83
|
+
template<typename Stream>
|
84
|
+
inline void PutReserve(Stream& stream, size_t count) {
|
85
|
+
(void)stream;
|
86
|
+
(void)count;
|
87
|
+
}
|
88
|
+
|
89
|
+
//! Write character to a stream, presuming buffer is reserved.
|
90
|
+
template<typename Stream>
|
91
|
+
inline void PutUnsafe(Stream& stream, typename Stream::Ch c) {
|
92
|
+
stream.Put(c);
|
93
|
+
}
|
94
|
+
|
95
|
+
//! Put N copies of a character to a stream.
|
96
|
+
template<typename Stream, typename Ch>
|
97
|
+
inline void PutN(Stream& stream, Ch c, size_t n) {
|
98
|
+
PutReserve(stream, n);
|
99
|
+
for (size_t i = 0; i < n; i++)
|
100
|
+
PutUnsafe(stream, c);
|
101
|
+
}
|
102
|
+
|
103
|
+
///////////////////////////////////////////////////////////////////////////////
|
104
|
+
// StringStream
|
105
|
+
|
106
|
+
//! Read-only string stream.
|
107
|
+
/*! \note implements Stream concept
|
108
|
+
*/
|
109
|
+
template <typename Encoding>
|
110
|
+
struct GenericStringStream {
|
111
|
+
typedef typename Encoding::Ch Ch;
|
112
|
+
|
113
|
+
GenericStringStream(const Ch *src) : src_(src), head_(src) {}
|
114
|
+
|
115
|
+
Ch Peek() const { return *src_; }
|
116
|
+
Ch Take() { return *src_++; }
|
117
|
+
size_t Tell() const { return static_cast<size_t>(src_ - head_); }
|
118
|
+
|
119
|
+
Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; }
|
120
|
+
void Put(Ch) { RAPIDJSON_ASSERT(false); }
|
121
|
+
void Flush() { RAPIDJSON_ASSERT(false); }
|
122
|
+
size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; }
|
123
|
+
|
124
|
+
const Ch* src_; //!< Current read position.
|
125
|
+
const Ch* head_; //!< Original head of the string.
|
126
|
+
};
|
127
|
+
|
128
|
+
template <typename Encoding>
|
129
|
+
struct StreamTraits<GenericStringStream<Encoding> > {
|
130
|
+
enum { copyOptimization = 1 };
|
131
|
+
};
|
132
|
+
|
133
|
+
//! String stream with UTF8 encoding.
|
134
|
+
typedef GenericStringStream<UTF8<> > StringStream;
|
135
|
+
|
136
|
+
///////////////////////////////////////////////////////////////////////////////
|
137
|
+
// InsituStringStream
|
138
|
+
|
139
|
+
//! A read-write string stream.
|
140
|
+
/*! This string stream is particularly designed for in-situ parsing.
|
141
|
+
\note implements Stream concept
|
142
|
+
*/
|
143
|
+
template <typename Encoding>
|
144
|
+
struct GenericInsituStringStream {
|
145
|
+
typedef typename Encoding::Ch Ch;
|
146
|
+
|
147
|
+
GenericInsituStringStream(Ch *src) : src_(src), dst_(0), head_(src) {}
|
148
|
+
|
149
|
+
// Read
|
150
|
+
Ch Peek() { return *src_; }
|
151
|
+
Ch Take() { return *src_++; }
|
152
|
+
size_t Tell() { return static_cast<size_t>(src_ - head_); }
|
153
|
+
|
154
|
+
// Write
|
155
|
+
void Put(Ch c) { RAPIDJSON_ASSERT(dst_ != 0); *dst_++ = c; }
|
156
|
+
|
157
|
+
Ch* PutBegin() { return dst_ = src_; }
|
158
|
+
size_t PutEnd(Ch* begin) { return static_cast<size_t>(dst_ - begin); }
|
159
|
+
void Flush() {}
|
160
|
+
|
161
|
+
Ch* Push(size_t count) { Ch* begin = dst_; dst_ += count; return begin; }
|
162
|
+
void Pop(size_t count) { dst_ -= count; }
|
163
|
+
|
164
|
+
Ch* src_;
|
165
|
+
Ch* dst_;
|
166
|
+
Ch* head_;
|
167
|
+
};
|
168
|
+
|
169
|
+
template <typename Encoding>
|
170
|
+
struct StreamTraits<GenericInsituStringStream<Encoding> > {
|
171
|
+
enum { copyOptimization = 1 };
|
172
|
+
};
|
173
|
+
|
174
|
+
//! Insitu string stream with UTF8 encoding.
|
175
|
+
typedef GenericInsituStringStream<UTF8<> > InsituStringStream;
|
176
|
+
|
177
|
+
RAPIDJSON_NAMESPACE_END
|
178
|
+
|
179
|
+
#endif // RAPIDJSON_STREAM_H_
|
@@ -0,0 +1,117 @@
|
|
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 "stream.h"
|
19
|
+
#include "internal/stack.h"
|
20
|
+
|
21
|
+
#if RAPIDJSON_HAS_CXX11_RVALUE_REFS
|
22
|
+
#include <utility> // std::move
|
23
|
+
#endif
|
24
|
+
|
25
|
+
#include "internal/stack.h"
|
26
|
+
|
27
|
+
#if defined(__clang__)
|
28
|
+
RAPIDJSON_DIAG_PUSH
|
29
|
+
RAPIDJSON_DIAG_OFF(c++98-compat)
|
30
|
+
#endif
|
31
|
+
|
32
|
+
RAPIDJSON_NAMESPACE_BEGIN
|
33
|
+
|
34
|
+
//! Represents an in-memory output stream.
|
35
|
+
/*!
|
36
|
+
\tparam Encoding Encoding of the stream.
|
37
|
+
\tparam Allocator type for allocating memory buffer.
|
38
|
+
\note implements Stream concept
|
39
|
+
*/
|
40
|
+
template <typename Encoding, typename Allocator = CrtAllocator>
|
41
|
+
class GenericStringBuffer {
|
42
|
+
public:
|
43
|
+
typedef typename Encoding::Ch Ch;
|
44
|
+
|
45
|
+
GenericStringBuffer(Allocator* allocator = 0, size_t capacity = kDefaultCapacity) : stack_(allocator, capacity) {}
|
46
|
+
|
47
|
+
#if RAPIDJSON_HAS_CXX11_RVALUE_REFS
|
48
|
+
GenericStringBuffer(GenericStringBuffer&& rhs) : stack_(std::move(rhs.stack_)) {}
|
49
|
+
GenericStringBuffer& operator=(GenericStringBuffer&& rhs) {
|
50
|
+
if (&rhs != this)
|
51
|
+
stack_ = std::move(rhs.stack_);
|
52
|
+
return *this;
|
53
|
+
}
|
54
|
+
#endif
|
55
|
+
|
56
|
+
void Put(Ch c) { *stack_.template Push<Ch>() = c; }
|
57
|
+
void PutUnsafe(Ch c) { *stack_.template PushUnsafe<Ch>() = c; }
|
58
|
+
void Flush() {}
|
59
|
+
|
60
|
+
void Clear() { stack_.Clear(); }
|
61
|
+
void ShrinkToFit() {
|
62
|
+
// Push and pop a null terminator. This is safe.
|
63
|
+
*stack_.template Push<Ch>() = '\0';
|
64
|
+
stack_.ShrinkToFit();
|
65
|
+
stack_.template Pop<Ch>(1);
|
66
|
+
}
|
67
|
+
|
68
|
+
void Reserve(size_t count) { stack_.template Reserve<Ch>(count); }
|
69
|
+
Ch* Push(size_t count) { return stack_.template Push<Ch>(count); }
|
70
|
+
Ch* PushUnsafe(size_t count) { return stack_.template PushUnsafe<Ch>(count); }
|
71
|
+
void Pop(size_t count) { stack_.template Pop<Ch>(count); }
|
72
|
+
|
73
|
+
const Ch* GetString() const {
|
74
|
+
// Push and pop a null terminator. This is safe.
|
75
|
+
*stack_.template Push<Ch>() = '\0';
|
76
|
+
stack_.template Pop<Ch>(1);
|
77
|
+
|
78
|
+
return stack_.template Bottom<Ch>();
|
79
|
+
}
|
80
|
+
|
81
|
+
size_t GetSize() const { return stack_.GetSize(); }
|
82
|
+
|
83
|
+
static const size_t kDefaultCapacity = 256;
|
84
|
+
mutable internal::Stack<Allocator> stack_;
|
85
|
+
|
86
|
+
private:
|
87
|
+
// Prohibit copy constructor & assignment operator.
|
88
|
+
GenericStringBuffer(const GenericStringBuffer&);
|
89
|
+
GenericStringBuffer& operator=(const GenericStringBuffer&);
|
90
|
+
};
|
91
|
+
|
92
|
+
//! String buffer with UTF8 encoding
|
93
|
+
typedef GenericStringBuffer<UTF8<> > StringBuffer;
|
94
|
+
|
95
|
+
template<typename Encoding, typename Allocator>
|
96
|
+
inline void PutReserve(GenericStringBuffer<Encoding, Allocator>& stream, size_t count) {
|
97
|
+
stream.Reserve(count);
|
98
|
+
}
|
99
|
+
|
100
|
+
template<typename Encoding, typename Allocator>
|
101
|
+
inline void PutUnsafe(GenericStringBuffer<Encoding, Allocator>& stream, typename Encoding::Ch c) {
|
102
|
+
stream.PutUnsafe(c);
|
103
|
+
}
|
104
|
+
|
105
|
+
//! Implement specialized version of PutN() with memset() for better performance.
|
106
|
+
template<>
|
107
|
+
inline void PutN(GenericStringBuffer<UTF8<> >& stream, char c, size_t n) {
|
108
|
+
std::memset(stream.stack_.Push<char>(n), c, n * sizeof(c));
|
109
|
+
}
|
110
|
+
|
111
|
+
RAPIDJSON_NAMESPACE_END
|
112
|
+
|
113
|
+
#if defined(__clang__)
|
114
|
+
RAPIDJSON_DIAG_POP
|
115
|
+
#endif
|
116
|
+
|
117
|
+
#endif // RAPIDJSON_STRINGBUFFER_H_
|
@@ -0,0 +1,610 @@
|
|
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_WRITER_H_
|
16
|
+
#define RAPIDJSON_WRITER_H_
|
17
|
+
|
18
|
+
#include "stream.h"
|
19
|
+
#include "internal/stack.h"
|
20
|
+
#include "internal/strfunc.h"
|
21
|
+
#include "internal/dtoa.h"
|
22
|
+
#include "internal/itoa.h"
|
23
|
+
#include "stringbuffer.h"
|
24
|
+
#include <new> // placement new
|
25
|
+
|
26
|
+
#if defined(RAPIDJSON_SIMD) && defined(_MSC_VER)
|
27
|
+
#include <intrin.h>
|
28
|
+
#pragma intrinsic(_BitScanForward)
|
29
|
+
#endif
|
30
|
+
#ifdef RAPIDJSON_SSE42
|
31
|
+
#include <nmmintrin.h>
|
32
|
+
#elif defined(RAPIDJSON_SSE2)
|
33
|
+
#include <emmintrin.h>
|
34
|
+
#endif
|
35
|
+
|
36
|
+
#ifdef _MSC_VER
|
37
|
+
RAPIDJSON_DIAG_PUSH
|
38
|
+
RAPIDJSON_DIAG_OFF(4127) // conditional expression is constant
|
39
|
+
#endif
|
40
|
+
|
41
|
+
#ifdef __clang__
|
42
|
+
RAPIDJSON_DIAG_PUSH
|
43
|
+
RAPIDJSON_DIAG_OFF(padded)
|
44
|
+
RAPIDJSON_DIAG_OFF(unreachable-code)
|
45
|
+
#endif
|
46
|
+
|
47
|
+
RAPIDJSON_NAMESPACE_BEGIN
|
48
|
+
|
49
|
+
///////////////////////////////////////////////////////////////////////////////
|
50
|
+
// WriteFlag
|
51
|
+
|
52
|
+
/*! \def RAPIDJSON_WRITE_DEFAULT_FLAGS
|
53
|
+
\ingroup RAPIDJSON_CONFIG
|
54
|
+
\brief User-defined kWriteDefaultFlags definition.
|
55
|
+
|
56
|
+
User can define this as any \c WriteFlag combinations.
|
57
|
+
*/
|
58
|
+
#ifndef RAPIDJSON_WRITE_DEFAULT_FLAGS
|
59
|
+
#define RAPIDJSON_WRITE_DEFAULT_FLAGS kWriteNoFlags
|
60
|
+
#endif
|
61
|
+
|
62
|
+
//! Combination of writeFlags
|
63
|
+
enum WriteFlag {
|
64
|
+
kWriteNoFlags = 0, //!< No flags are set.
|
65
|
+
kWriteValidateEncodingFlag = 1, //!< Validate encoding of JSON strings.
|
66
|
+
kWriteNanAndInfFlag = 2, //!< Allow writing of Infinity, -Infinity and NaN.
|
67
|
+
kWriteDefaultFlags = RAPIDJSON_WRITE_DEFAULT_FLAGS //!< Default write flags. Can be customized by defining RAPIDJSON_WRITE_DEFAULT_FLAGS
|
68
|
+
};
|
69
|
+
|
70
|
+
//! JSON writer
|
71
|
+
/*! Writer implements the concept Handler.
|
72
|
+
It generates JSON text by events to an output os.
|
73
|
+
|
74
|
+
User may programmatically calls the functions of a writer to generate JSON text.
|
75
|
+
|
76
|
+
On the other side, a writer can also be passed to objects that generates events,
|
77
|
+
|
78
|
+
for example Reader::Parse() and Document::Accept().
|
79
|
+
|
80
|
+
\tparam OutputStream Type of output stream.
|
81
|
+
\tparam SourceEncoding Encoding of source string.
|
82
|
+
\tparam TargetEncoding Encoding of output stream.
|
83
|
+
\tparam StackAllocator Type of allocator for allocating memory of stack.
|
84
|
+
\note implements Handler concept
|
85
|
+
*/
|
86
|
+
template<typename OutputStream, typename SourceEncoding = UTF8<>, typename TargetEncoding = UTF8<>, typename StackAllocator = CrtAllocator, unsigned writeFlags = kWriteDefaultFlags>
|
87
|
+
class Writer {
|
88
|
+
public:
|
89
|
+
typedef typename SourceEncoding::Ch Ch;
|
90
|
+
|
91
|
+
static const int kDefaultMaxDecimalPlaces = 324;
|
92
|
+
|
93
|
+
//! Constructor
|
94
|
+
/*! \param os Output stream.
|
95
|
+
\param stackAllocator User supplied allocator. If it is null, it will create a private one.
|
96
|
+
\param levelDepth Initial capacity of stack.
|
97
|
+
*/
|
98
|
+
explicit
|
99
|
+
Writer(OutputStream& os, StackAllocator* stackAllocator = 0, size_t levelDepth = kDefaultLevelDepth) :
|
100
|
+
os_(&os), level_stack_(stackAllocator, levelDepth * sizeof(Level)), maxDecimalPlaces_(kDefaultMaxDecimalPlaces), hasRoot_(false) {}
|
101
|
+
|
102
|
+
explicit
|
103
|
+
Writer(StackAllocator* allocator = 0, size_t levelDepth = kDefaultLevelDepth) :
|
104
|
+
os_(0), level_stack_(allocator, levelDepth * sizeof(Level)), maxDecimalPlaces_(kDefaultMaxDecimalPlaces), hasRoot_(false) {}
|
105
|
+
|
106
|
+
//! Reset the writer with a new stream.
|
107
|
+
/*!
|
108
|
+
This function reset the writer with a new stream and default settings,
|
109
|
+
in order to make a Writer object reusable for output multiple JSONs.
|
110
|
+
|
111
|
+
\param os New output stream.
|
112
|
+
\code
|
113
|
+
Writer<OutputStream> writer(os1);
|
114
|
+
writer.StartObject();
|
115
|
+
// ...
|
116
|
+
writer.EndObject();
|
117
|
+
|
118
|
+
writer.Reset(os2);
|
119
|
+
writer.StartObject();
|
120
|
+
// ...
|
121
|
+
writer.EndObject();
|
122
|
+
\endcode
|
123
|
+
*/
|
124
|
+
void Reset(OutputStream& os) {
|
125
|
+
os_ = &os;
|
126
|
+
hasRoot_ = false;
|
127
|
+
level_stack_.Clear();
|
128
|
+
}
|
129
|
+
|
130
|
+
//! Checks whether the output is a complete JSON.
|
131
|
+
/*!
|
132
|
+
A complete JSON has a complete root object or array.
|
133
|
+
*/
|
134
|
+
bool IsComplete() const {
|
135
|
+
return hasRoot_ && level_stack_.Empty();
|
136
|
+
}
|
137
|
+
|
138
|
+
int GetMaxDecimalPlaces() const {
|
139
|
+
return maxDecimalPlaces_;
|
140
|
+
}
|
141
|
+
|
142
|
+
//! Sets the maximum number of decimal places for double output.
|
143
|
+
/*!
|
144
|
+
This setting truncates the output with specified number of decimal places.
|
145
|
+
|
146
|
+
For example,
|
147
|
+
|
148
|
+
\code
|
149
|
+
writer.SetMaxDecimalPlaces(3);
|
150
|
+
writer.StartArray();
|
151
|
+
writer.Double(0.12345); // "0.123"
|
152
|
+
writer.Double(0.0001); // "0.0"
|
153
|
+
writer.Double(1.234567890123456e30); // "1.234567890123456e30" (do not truncate significand for positive exponent)
|
154
|
+
writer.Double(1.23e-4); // "0.0" (do truncate significand for negative exponent)
|
155
|
+
writer.EndArray();
|
156
|
+
\endcode
|
157
|
+
|
158
|
+
The default setting does not truncate any decimal places. You can restore to this setting by calling
|
159
|
+
\code
|
160
|
+
writer.SetMaxDecimalPlaces(Writer::kDefaultMaxDecimalPlaces);
|
161
|
+
\endcode
|
162
|
+
*/
|
163
|
+
void SetMaxDecimalPlaces(int maxDecimalPlaces) {
|
164
|
+
maxDecimalPlaces_ = maxDecimalPlaces;
|
165
|
+
}
|
166
|
+
|
167
|
+
/*!@name Implementation of Handler
|
168
|
+
\see Handler
|
169
|
+
*/
|
170
|
+
//@{
|
171
|
+
|
172
|
+
bool Null() { Prefix(kNullType); return EndValue(WriteNull()); }
|
173
|
+
bool Bool(bool b) { Prefix(b ? kTrueType : kFalseType); return EndValue(WriteBool(b)); }
|
174
|
+
bool Int(int i) { Prefix(kNumberType); return EndValue(WriteInt(i)); }
|
175
|
+
bool Uint(unsigned u) { Prefix(kNumberType); return EndValue(WriteUint(u)); }
|
176
|
+
bool Int64(int64_t i64) { Prefix(kNumberType); return EndValue(WriteInt64(i64)); }
|
177
|
+
bool Uint64(uint64_t u64) { Prefix(kNumberType); return EndValue(WriteUint64(u64)); }
|
178
|
+
|
179
|
+
//! Writes the given \c double value to the stream
|
180
|
+
/*!
|
181
|
+
\param d The value to be written.
|
182
|
+
\return Whether it is succeed.
|
183
|
+
*/
|
184
|
+
bool Double(double d) { Prefix(kNumberType); return EndValue(WriteDouble(d)); }
|
185
|
+
|
186
|
+
bool RawNumber(const Ch* str, SizeType length, bool copy = false) {
|
187
|
+
(void)copy;
|
188
|
+
Prefix(kNumberType);
|
189
|
+
return EndValue(WriteString(str, length));
|
190
|
+
}
|
191
|
+
|
192
|
+
bool String(const Ch* str, SizeType length, bool copy = false) {
|
193
|
+
(void)copy;
|
194
|
+
Prefix(kStringType);
|
195
|
+
return EndValue(WriteString(str, length));
|
196
|
+
}
|
197
|
+
|
198
|
+
#if RAPIDJSON_HAS_STDSTRING
|
199
|
+
bool String(const std::basic_string<Ch>& str) {
|
200
|
+
return String(str.data(), SizeType(str.size()));
|
201
|
+
}
|
202
|
+
#endif
|
203
|
+
|
204
|
+
bool StartObject() {
|
205
|
+
Prefix(kObjectType);
|
206
|
+
new (level_stack_.template Push<Level>()) Level(false);
|
207
|
+
return WriteStartObject();
|
208
|
+
}
|
209
|
+
|
210
|
+
bool Key(const Ch* str, SizeType length, bool copy = false) { return String(str, length, copy); }
|
211
|
+
|
212
|
+
bool EndObject(SizeType memberCount = 0) {
|
213
|
+
(void)memberCount;
|
214
|
+
RAPIDJSON_ASSERT(level_stack_.GetSize() >= sizeof(Level));
|
215
|
+
RAPIDJSON_ASSERT(!level_stack_.template Top<Level>()->inArray);
|
216
|
+
level_stack_.template Pop<Level>(1);
|
217
|
+
return EndValue(WriteEndObject());
|
218
|
+
}
|
219
|
+
|
220
|
+
bool StartArray() {
|
221
|
+
Prefix(kArrayType);
|
222
|
+
new (level_stack_.template Push<Level>()) Level(true);
|
223
|
+
return WriteStartArray();
|
224
|
+
}
|
225
|
+
|
226
|
+
bool EndArray(SizeType elementCount = 0) {
|
227
|
+
(void)elementCount;
|
228
|
+
RAPIDJSON_ASSERT(level_stack_.GetSize() >= sizeof(Level));
|
229
|
+
RAPIDJSON_ASSERT(level_stack_.template Top<Level>()->inArray);
|
230
|
+
level_stack_.template Pop<Level>(1);
|
231
|
+
return EndValue(WriteEndArray());
|
232
|
+
}
|
233
|
+
//@}
|
234
|
+
|
235
|
+
/*! @name Convenience extensions */
|
236
|
+
//@{
|
237
|
+
|
238
|
+
//! Simpler but slower overload.
|
239
|
+
bool String(const Ch* str) { return String(str, internal::StrLen(str)); }
|
240
|
+
bool Key(const Ch* str) { return Key(str, internal::StrLen(str)); }
|
241
|
+
|
242
|
+
//@}
|
243
|
+
|
244
|
+
//! Write a raw JSON value.
|
245
|
+
/*!
|
246
|
+
For user to write a stringified JSON as a value.
|
247
|
+
|
248
|
+
\param json A well-formed JSON value. It should not contain null character within [0, length - 1] range.
|
249
|
+
\param length Length of the json.
|
250
|
+
\param type Type of the root of json.
|
251
|
+
*/
|
252
|
+
bool RawValue(const Ch* json, size_t length, Type type) { Prefix(type); return EndValue(WriteRawValue(json, length)); }
|
253
|
+
|
254
|
+
protected:
|
255
|
+
//! Information for each nested level
|
256
|
+
struct Level {
|
257
|
+
Level(bool inArray_) : valueCount(0), inArray(inArray_) {}
|
258
|
+
size_t valueCount; //!< number of values in this level
|
259
|
+
bool inArray; //!< true if in array, otherwise in object
|
260
|
+
};
|
261
|
+
|
262
|
+
static const size_t kDefaultLevelDepth = 32;
|
263
|
+
|
264
|
+
bool WriteNull() {
|
265
|
+
PutReserve(*os_, 4);
|
266
|
+
PutUnsafe(*os_, 'n'); PutUnsafe(*os_, 'u'); PutUnsafe(*os_, 'l'); PutUnsafe(*os_, 'l'); return true;
|
267
|
+
}
|
268
|
+
|
269
|
+
bool WriteBool(bool b) {
|
270
|
+
if (b) {
|
271
|
+
PutReserve(*os_, 4);
|
272
|
+
PutUnsafe(*os_, 't'); PutUnsafe(*os_, 'r'); PutUnsafe(*os_, 'u'); PutUnsafe(*os_, 'e');
|
273
|
+
}
|
274
|
+
else {
|
275
|
+
PutReserve(*os_, 5);
|
276
|
+
PutUnsafe(*os_, 'f'); PutUnsafe(*os_, 'a'); PutUnsafe(*os_, 'l'); PutUnsafe(*os_, 's'); PutUnsafe(*os_, 'e');
|
277
|
+
}
|
278
|
+
return true;
|
279
|
+
}
|
280
|
+
|
281
|
+
bool WriteInt(int i) {
|
282
|
+
char buffer[11];
|
283
|
+
const char* end = internal::i32toa(i, buffer);
|
284
|
+
PutReserve(*os_, static_cast<size_t>(end - buffer));
|
285
|
+
for (const char* p = buffer; p != end; ++p)
|
286
|
+
PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(*p));
|
287
|
+
return true;
|
288
|
+
}
|
289
|
+
|
290
|
+
bool WriteUint(unsigned u) {
|
291
|
+
char buffer[10];
|
292
|
+
const char* end = internal::u32toa(u, buffer);
|
293
|
+
PutReserve(*os_, static_cast<size_t>(end - buffer));
|
294
|
+
for (const char* p = buffer; p != end; ++p)
|
295
|
+
PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(*p));
|
296
|
+
return true;
|
297
|
+
}
|
298
|
+
|
299
|
+
bool WriteInt64(int64_t i64) {
|
300
|
+
char buffer[21];
|
301
|
+
const char* end = internal::i64toa(i64, buffer);
|
302
|
+
PutReserve(*os_, static_cast<size_t>(end - buffer));
|
303
|
+
for (const char* p = buffer; p != end; ++p)
|
304
|
+
PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(*p));
|
305
|
+
return true;
|
306
|
+
}
|
307
|
+
|
308
|
+
bool WriteUint64(uint64_t u64) {
|
309
|
+
char buffer[20];
|
310
|
+
char* end = internal::u64toa(u64, buffer);
|
311
|
+
PutReserve(*os_, static_cast<size_t>(end - buffer));
|
312
|
+
for (char* p = buffer; p != end; ++p)
|
313
|
+
PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(*p));
|
314
|
+
return true;
|
315
|
+
}
|
316
|
+
|
317
|
+
bool WriteDouble(double d) {
|
318
|
+
if (internal::Double(d).IsNanOrInf()) {
|
319
|
+
if (!(writeFlags & kWriteNanAndInfFlag))
|
320
|
+
return false;
|
321
|
+
if (internal::Double(d).IsNan()) {
|
322
|
+
PutReserve(*os_, 3);
|
323
|
+
PutUnsafe(*os_, 'N'); PutUnsafe(*os_, 'a'); PutUnsafe(*os_, 'N');
|
324
|
+
return true;
|
325
|
+
}
|
326
|
+
if (internal::Double(d).Sign()) {
|
327
|
+
PutReserve(*os_, 9);
|
328
|
+
PutUnsafe(*os_, '-');
|
329
|
+
}
|
330
|
+
else
|
331
|
+
PutReserve(*os_, 8);
|
332
|
+
PutUnsafe(*os_, 'I'); PutUnsafe(*os_, 'n'); PutUnsafe(*os_, 'f');
|
333
|
+
PutUnsafe(*os_, 'i'); PutUnsafe(*os_, 'n'); PutUnsafe(*os_, 'i'); PutUnsafe(*os_, 't'); PutUnsafe(*os_, 'y');
|
334
|
+
return true;
|
335
|
+
}
|
336
|
+
|
337
|
+
char buffer[25];
|
338
|
+
char* end = internal::dtoa(d, buffer, maxDecimalPlaces_);
|
339
|
+
PutReserve(*os_, static_cast<size_t>(end - buffer));
|
340
|
+
for (char* p = buffer; p != end; ++p)
|
341
|
+
PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(*p));
|
342
|
+
return true;
|
343
|
+
}
|
344
|
+
|
345
|
+
bool WriteString(const Ch* str, SizeType length) {
|
346
|
+
static const typename TargetEncoding::Ch hexDigits[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
|
347
|
+
static const char escape[256] = {
|
348
|
+
#define Z16 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
349
|
+
//0 1 2 3 4 5 6 7 8 9 A B C D E F
|
350
|
+
'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'b', 't', 'n', 'u', 'f', 'r', 'u', 'u', // 00
|
351
|
+
'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', // 10
|
352
|
+
0, 0, '"', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 20
|
353
|
+
Z16, Z16, // 30~4F
|
354
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,'\\', 0, 0, 0, // 50
|
355
|
+
Z16, Z16, Z16, Z16, Z16, Z16, Z16, Z16, Z16, Z16 // 60~FF
|
356
|
+
#undef Z16
|
357
|
+
};
|
358
|
+
|
359
|
+
if (TargetEncoding::supportUnicode)
|
360
|
+
PutReserve(*os_, 2 + length * 6); // "\uxxxx..."
|
361
|
+
else
|
362
|
+
PutReserve(*os_, 2 + length * 12); // "\uxxxx\uyyyy..."
|
363
|
+
|
364
|
+
PutUnsafe(*os_, '\"');
|
365
|
+
GenericStringStream<SourceEncoding> is(str);
|
366
|
+
while (ScanWriteUnescapedString(is, length)) {
|
367
|
+
const Ch c = is.Peek();
|
368
|
+
if (!TargetEncoding::supportUnicode && static_cast<unsigned>(c) >= 0x80) {
|
369
|
+
// Unicode escaping
|
370
|
+
unsigned codepoint;
|
371
|
+
if (RAPIDJSON_UNLIKELY(!SourceEncoding::Decode(is, &codepoint)))
|
372
|
+
return false;
|
373
|
+
PutUnsafe(*os_, '\\');
|
374
|
+
PutUnsafe(*os_, 'u');
|
375
|
+
if (codepoint <= 0xD7FF || (codepoint >= 0xE000 && codepoint <= 0xFFFF)) {
|
376
|
+
PutUnsafe(*os_, hexDigits[(codepoint >> 12) & 15]);
|
377
|
+
PutUnsafe(*os_, hexDigits[(codepoint >> 8) & 15]);
|
378
|
+
PutUnsafe(*os_, hexDigits[(codepoint >> 4) & 15]);
|
379
|
+
PutUnsafe(*os_, hexDigits[(codepoint ) & 15]);
|
380
|
+
}
|
381
|
+
else {
|
382
|
+
RAPIDJSON_ASSERT(codepoint >= 0x010000 && codepoint <= 0x10FFFF);
|
383
|
+
// Surrogate pair
|
384
|
+
unsigned s = codepoint - 0x010000;
|
385
|
+
unsigned lead = (s >> 10) + 0xD800;
|
386
|
+
unsigned trail = (s & 0x3FF) + 0xDC00;
|
387
|
+
PutUnsafe(*os_, hexDigits[(lead >> 12) & 15]);
|
388
|
+
PutUnsafe(*os_, hexDigits[(lead >> 8) & 15]);
|
389
|
+
PutUnsafe(*os_, hexDigits[(lead >> 4) & 15]);
|
390
|
+
PutUnsafe(*os_, hexDigits[(lead ) & 15]);
|
391
|
+
PutUnsafe(*os_, '\\');
|
392
|
+
PutUnsafe(*os_, 'u');
|
393
|
+
PutUnsafe(*os_, hexDigits[(trail >> 12) & 15]);
|
394
|
+
PutUnsafe(*os_, hexDigits[(trail >> 8) & 15]);
|
395
|
+
PutUnsafe(*os_, hexDigits[(trail >> 4) & 15]);
|
396
|
+
PutUnsafe(*os_, hexDigits[(trail ) & 15]);
|
397
|
+
}
|
398
|
+
}
|
399
|
+
else if ((sizeof(Ch) == 1 || static_cast<unsigned>(c) < 256) && RAPIDJSON_UNLIKELY(escape[static_cast<unsigned char>(c)])) {
|
400
|
+
is.Take();
|
401
|
+
PutUnsafe(*os_, '\\');
|
402
|
+
PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(escape[static_cast<unsigned char>(c)]));
|
403
|
+
if (escape[static_cast<unsigned char>(c)] == 'u') {
|
404
|
+
PutUnsafe(*os_, '0');
|
405
|
+
PutUnsafe(*os_, '0');
|
406
|
+
PutUnsafe(*os_, hexDigits[static_cast<unsigned char>(c) >> 4]);
|
407
|
+
PutUnsafe(*os_, hexDigits[static_cast<unsigned char>(c) & 0xF]);
|
408
|
+
}
|
409
|
+
}
|
410
|
+
else if (RAPIDJSON_UNLIKELY(!(writeFlags & kWriteValidateEncodingFlag ?
|
411
|
+
Transcoder<SourceEncoding, TargetEncoding>::Validate(is, *os_) :
|
412
|
+
Transcoder<SourceEncoding, TargetEncoding>::TranscodeUnsafe(is, *os_))))
|
413
|
+
return false;
|
414
|
+
}
|
415
|
+
PutUnsafe(*os_, '\"');
|
416
|
+
return true;
|
417
|
+
}
|
418
|
+
|
419
|
+
bool ScanWriteUnescapedString(GenericStringStream<SourceEncoding>& is, size_t length) {
|
420
|
+
return RAPIDJSON_LIKELY(is.Tell() < length);
|
421
|
+
}
|
422
|
+
|
423
|
+
bool WriteStartObject() { os_->Put('{'); return true; }
|
424
|
+
bool WriteEndObject() { os_->Put('}'); return true; }
|
425
|
+
bool WriteStartArray() { os_->Put('['); return true; }
|
426
|
+
bool WriteEndArray() { os_->Put(']'); return true; }
|
427
|
+
|
428
|
+
bool WriteRawValue(const Ch* json, size_t length) {
|
429
|
+
PutReserve(*os_, length);
|
430
|
+
for (size_t i = 0; i < length; i++) {
|
431
|
+
RAPIDJSON_ASSERT(json[i] != '\0');
|
432
|
+
PutUnsafe(*os_, json[i]);
|
433
|
+
}
|
434
|
+
return true;
|
435
|
+
}
|
436
|
+
|
437
|
+
void Prefix(Type type) {
|
438
|
+
(void)type;
|
439
|
+
if (RAPIDJSON_LIKELY(level_stack_.GetSize() != 0)) { // this value is not at root
|
440
|
+
Level* level = level_stack_.template Top<Level>();
|
441
|
+
if (level->valueCount > 0) {
|
442
|
+
if (level->inArray)
|
443
|
+
os_->Put(','); // add comma if it is not the first element in array
|
444
|
+
else // in object
|
445
|
+
os_->Put((level->valueCount % 2 == 0) ? ',' : ':');
|
446
|
+
}
|
447
|
+
if (!level->inArray && level->valueCount % 2 == 0)
|
448
|
+
RAPIDJSON_ASSERT(type == kStringType); // if it's in object, then even number should be a name
|
449
|
+
level->valueCount++;
|
450
|
+
}
|
451
|
+
else {
|
452
|
+
RAPIDJSON_ASSERT(!hasRoot_); // Should only has one and only one root.
|
453
|
+
hasRoot_ = true;
|
454
|
+
}
|
455
|
+
}
|
456
|
+
|
457
|
+
// Flush the value if it is the top level one.
|
458
|
+
bool EndValue(bool ret) {
|
459
|
+
if (RAPIDJSON_UNLIKELY(level_stack_.Empty())) // end of json text
|
460
|
+
os_->Flush();
|
461
|
+
return ret;
|
462
|
+
}
|
463
|
+
|
464
|
+
OutputStream* os_;
|
465
|
+
internal::Stack<StackAllocator> level_stack_;
|
466
|
+
int maxDecimalPlaces_;
|
467
|
+
bool hasRoot_;
|
468
|
+
|
469
|
+
private:
|
470
|
+
// Prohibit copy constructor & assignment operator.
|
471
|
+
Writer(const Writer&);
|
472
|
+
Writer& operator=(const Writer&);
|
473
|
+
};
|
474
|
+
|
475
|
+
// Full specialization for StringStream to prevent memory copying
|
476
|
+
|
477
|
+
template<>
|
478
|
+
inline bool Writer<StringBuffer>::WriteInt(int i) {
|
479
|
+
char *buffer = os_->Push(11);
|
480
|
+
const char* end = internal::i32toa(i, buffer);
|
481
|
+
os_->Pop(static_cast<size_t>(11 - (end - buffer)));
|
482
|
+
return true;
|
483
|
+
}
|
484
|
+
|
485
|
+
template<>
|
486
|
+
inline bool Writer<StringBuffer>::WriteUint(unsigned u) {
|
487
|
+
char *buffer = os_->Push(10);
|
488
|
+
const char* end = internal::u32toa(u, buffer);
|
489
|
+
os_->Pop(static_cast<size_t>(10 - (end - buffer)));
|
490
|
+
return true;
|
491
|
+
}
|
492
|
+
|
493
|
+
template<>
|
494
|
+
inline bool Writer<StringBuffer>::WriteInt64(int64_t i64) {
|
495
|
+
char *buffer = os_->Push(21);
|
496
|
+
const char* end = internal::i64toa(i64, buffer);
|
497
|
+
os_->Pop(static_cast<size_t>(21 - (end - buffer)));
|
498
|
+
return true;
|
499
|
+
}
|
500
|
+
|
501
|
+
template<>
|
502
|
+
inline bool Writer<StringBuffer>::WriteUint64(uint64_t u) {
|
503
|
+
char *buffer = os_->Push(20);
|
504
|
+
const char* end = internal::u64toa(u, buffer);
|
505
|
+
os_->Pop(static_cast<size_t>(20 - (end - buffer)));
|
506
|
+
return true;
|
507
|
+
}
|
508
|
+
|
509
|
+
template<>
|
510
|
+
inline bool Writer<StringBuffer>::WriteDouble(double d) {
|
511
|
+
if (internal::Double(d).IsNanOrInf()) {
|
512
|
+
// Note: This code path can only be reached if (RAPIDJSON_WRITE_DEFAULT_FLAGS & kWriteNanAndInfFlag).
|
513
|
+
if (!(kWriteDefaultFlags & kWriteNanAndInfFlag))
|
514
|
+
return false;
|
515
|
+
if (internal::Double(d).IsNan()) {
|
516
|
+
PutReserve(*os_, 3);
|
517
|
+
PutUnsafe(*os_, 'N'); PutUnsafe(*os_, 'a'); PutUnsafe(*os_, 'N');
|
518
|
+
return true;
|
519
|
+
}
|
520
|
+
if (internal::Double(d).Sign()) {
|
521
|
+
PutReserve(*os_, 9);
|
522
|
+
PutUnsafe(*os_, '-');
|
523
|
+
}
|
524
|
+
else
|
525
|
+
PutReserve(*os_, 8);
|
526
|
+
PutUnsafe(*os_, 'I'); PutUnsafe(*os_, 'n'); PutUnsafe(*os_, 'f');
|
527
|
+
PutUnsafe(*os_, 'i'); PutUnsafe(*os_, 'n'); PutUnsafe(*os_, 'i'); PutUnsafe(*os_, 't'); PutUnsafe(*os_, 'y');
|
528
|
+
return true;
|
529
|
+
}
|
530
|
+
|
531
|
+
char *buffer = os_->Push(25);
|
532
|
+
char* end = internal::dtoa(d, buffer, maxDecimalPlaces_);
|
533
|
+
os_->Pop(static_cast<size_t>(25 - (end - buffer)));
|
534
|
+
return true;
|
535
|
+
}
|
536
|
+
|
537
|
+
#if defined(RAPIDJSON_SSE2) || defined(RAPIDJSON_SSE42)
|
538
|
+
template<>
|
539
|
+
inline bool Writer<StringBuffer>::ScanWriteUnescapedString(StringStream& is, size_t length) {
|
540
|
+
if (length < 16)
|
541
|
+
return RAPIDJSON_LIKELY(is.Tell() < length);
|
542
|
+
|
543
|
+
if (!RAPIDJSON_LIKELY(is.Tell() < length))
|
544
|
+
return false;
|
545
|
+
|
546
|
+
const char* p = is.src_;
|
547
|
+
const char* end = is.head_ + length;
|
548
|
+
const char* nextAligned = reinterpret_cast<const char*>((reinterpret_cast<size_t>(p) + 15) & static_cast<size_t>(~15));
|
549
|
+
const char* endAligned = reinterpret_cast<const char*>(reinterpret_cast<size_t>(end) & static_cast<size_t>(~15));
|
550
|
+
if (nextAligned > end)
|
551
|
+
return true;
|
552
|
+
|
553
|
+
while (p != nextAligned)
|
554
|
+
if (*p < 0x20 || *p == '\"' || *p == '\\') {
|
555
|
+
is.src_ = p;
|
556
|
+
return RAPIDJSON_LIKELY(is.Tell() < length);
|
557
|
+
}
|
558
|
+
else
|
559
|
+
os_->PutUnsafe(*p++);
|
560
|
+
|
561
|
+
// The rest of string using SIMD
|
562
|
+
static const char dquote[16] = { '\"', '\"', '\"', '\"', '\"', '\"', '\"', '\"', '\"', '\"', '\"', '\"', '\"', '\"', '\"', '\"' };
|
563
|
+
static const char bslash[16] = { '\\', '\\', '\\', '\\', '\\', '\\', '\\', '\\', '\\', '\\', '\\', '\\', '\\', '\\', '\\', '\\' };
|
564
|
+
static const char space[16] = { 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19, 0x19 };
|
565
|
+
const __m128i dq = _mm_loadu_si128(reinterpret_cast<const __m128i *>(&dquote[0]));
|
566
|
+
const __m128i bs = _mm_loadu_si128(reinterpret_cast<const __m128i *>(&bslash[0]));
|
567
|
+
const __m128i sp = _mm_loadu_si128(reinterpret_cast<const __m128i *>(&space[0]));
|
568
|
+
|
569
|
+
for (; p != endAligned; p += 16) {
|
570
|
+
const __m128i s = _mm_load_si128(reinterpret_cast<const __m128i *>(p));
|
571
|
+
const __m128i t1 = _mm_cmpeq_epi8(s, dq);
|
572
|
+
const __m128i t2 = _mm_cmpeq_epi8(s, bs);
|
573
|
+
const __m128i t3 = _mm_cmpeq_epi8(_mm_max_epu8(s, sp), sp); // s < 0x20 <=> max(s, 0x19) == 0x19
|
574
|
+
const __m128i x = _mm_or_si128(_mm_or_si128(t1, t2), t3);
|
575
|
+
unsigned short r = static_cast<unsigned short>(_mm_movemask_epi8(x));
|
576
|
+
if (RAPIDJSON_UNLIKELY(r != 0)) { // some of characters is escaped
|
577
|
+
SizeType len;
|
578
|
+
#ifdef _MSC_VER // Find the index of first escaped
|
579
|
+
unsigned long offset;
|
580
|
+
_BitScanForward(&offset, r);
|
581
|
+
len = offset;
|
582
|
+
#else
|
583
|
+
len = static_cast<SizeType>(__builtin_ffs(r) - 1);
|
584
|
+
#endif
|
585
|
+
char* q = reinterpret_cast<char*>(os_->PushUnsafe(len));
|
586
|
+
for (size_t i = 0; i < len; i++)
|
587
|
+
q[i] = p[i];
|
588
|
+
|
589
|
+
p += len;
|
590
|
+
break;
|
591
|
+
}
|
592
|
+
_mm_storeu_si128(reinterpret_cast<__m128i *>(os_->PushUnsafe(16)), s);
|
593
|
+
}
|
594
|
+
|
595
|
+
is.src_ = p;
|
596
|
+
return RAPIDJSON_LIKELY(is.Tell() < length);
|
597
|
+
}
|
598
|
+
#endif // defined(RAPIDJSON_SSE2) || defined(RAPIDJSON_SSE42)
|
599
|
+
|
600
|
+
RAPIDJSON_NAMESPACE_END
|
601
|
+
|
602
|
+
#ifdef _MSC_VER
|
603
|
+
RAPIDJSON_DIAG_POP
|
604
|
+
#endif
|
605
|
+
|
606
|
+
#ifdef __clang__
|
607
|
+
RAPIDJSON_DIAG_POP
|
608
|
+
#endif
|
609
|
+
|
610
|
+
#endif // RAPIDJSON_RAPIDJSON_H_
|