15 #ifndef CEREAL_RAPIDJSON_CEREAL_RAPIDJSON_H_
16 #define CEREAL_RAPIDJSON_CEREAL_RAPIDJSON_H_
50 #define CEREAL_RAPIDJSON_STRINGIFY(x) CEREAL_RAPIDJSON_DO_STRINGIFY(x)
51 #define CEREAL_RAPIDJSON_DO_STRINGIFY(x) #x
54 #define CEREAL_RAPIDJSON_JOIN(X, Y) CEREAL_RAPIDJSON_DO_JOIN(X, Y)
55 #define CEREAL_RAPIDJSON_DO_JOIN(X, Y) CEREAL_RAPIDJSON_DO_JOIN2(X, Y)
56 #define CEREAL_RAPIDJSON_DO_JOIN2(X, Y) X##Y
75 #define CEREAL_RAPIDJSON_MAJOR_VERSION 1
76 #define CEREAL_RAPIDJSON_MINOR_VERSION 1
77 #define CEREAL_RAPIDJSON_PATCH_VERSION 0
78 #define CEREAL_RAPIDJSON_VERSION_STRING \
79 CEREAL_RAPIDJSON_STRINGIFY(CEREAL_RAPIDJSON_MAJOR_VERSION.CEREAL_RAPIDJSON_MINOR_VERSION.CEREAL_RAPIDJSON_PATCH_VERSION)
117 #ifndef CEREAL_RAPIDJSON_NAMESPACE
118 #define CEREAL_RAPIDJSON_NAMESPACE rapidjson
120 #ifndef CEREAL_RAPIDJSON_NAMESPACE_BEGIN
121 #define CEREAL_RAPIDJSON_NAMESPACE_BEGIN namespace CEREAL_RAPIDJSON_NAMESPACE {
123 #ifndef CEREAL_RAPIDJSON_NAMESPACE_END
124 #define CEREAL_RAPIDJSON_NAMESPACE_END }
130 #ifndef CEREAL_RAPIDJSON_HAS_STDSTRING
131 #ifdef CEREAL_RAPIDJSON_DOXYGEN_RUNNING
132 #define CEREAL_RAPIDJSON_HAS_STDSTRING 1
134 #define CEREAL_RAPIDJSON_HAS_STDSTRING 0
148 #if CEREAL_RAPIDJSON_HAS_STDSTRING
165 #ifndef CEREAL_RAPIDJSON_NO_INT64DEFINE
167 #if defined(_MSC_VER) && (_MSC_VER < 1800)
176 #ifdef CEREAL_RAPIDJSON_DOXYGEN_RUNNING
177 #define CEREAL_RAPIDJSON_NO_INT64DEFINE
184 #ifndef CEREAL_RAPIDJSON_FORCEINLINE
186 #if defined(_MSC_VER) && defined(NDEBUG)
187 #define CEREAL_RAPIDJSON_FORCEINLINE __forceinline
188 #elif defined(__GNUC__) && __GNUC__ >= 4 && defined(NDEBUG)
189 #define CEREAL_RAPIDJSON_FORCEINLINE __attribute__((always_inline))
191 #define CEREAL_RAPIDJSON_FORCEINLINE
198 #define CEREAL_RAPIDJSON_LITTLEENDIAN 0
199 #define CEREAL_RAPIDJSON_BIGENDIAN 1
214 #ifndef CEREAL_RAPIDJSON_ENDIAN
216 # ifdef __BYTE_ORDER__
217 # if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
218 # define CEREAL_RAPIDJSON_ENDIAN CEREAL_RAPIDJSON_LITTLEENDIAN
219 # elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
220 # define CEREAL_RAPIDJSON_ENDIAN CEREAL_RAPIDJSON_BIGENDIAN
222 # error Unknown machine endianness detected. User needs to define CEREAL_RAPIDJSON_ENDIAN.
225 # elif defined(__GLIBC__)
227 # if (__BYTE_ORDER == __LITTLE_ENDIAN)
228 # define CEREAL_RAPIDJSON_ENDIAN CEREAL_RAPIDJSON_LITTLEENDIAN
229 # elif (__BYTE_ORDER == __BIG_ENDIAN)
230 # define CEREAL_RAPIDJSON_ENDIAN CEREAL_RAPIDJSON_BIGENDIAN
232 # error Unknown machine endianness detected. User needs to define CEREAL_RAPIDJSON_ENDIAN.
235 # elif defined(_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN)
236 # define CEREAL_RAPIDJSON_ENDIAN CEREAL_RAPIDJSON_LITTLEENDIAN
237 # elif defined(_BIG_ENDIAN) && !defined(_LITTLE_ENDIAN)
238 # define CEREAL_RAPIDJSON_ENDIAN CEREAL_RAPIDJSON_BIGENDIAN
240 # elif defined(__sparc) || defined(__sparc__) || defined(_POWER) || defined(__powerpc__) || defined(__ppc__) || defined(__hpux) || defined(__hppa) || defined(_MIPSEB) || defined(_POWER) || defined(__s390__)
241 # define CEREAL_RAPIDJSON_ENDIAN CEREAL_RAPIDJSON_BIGENDIAN
242 # elif defined(__i386__) || defined(__alpha__) || defined(__ia64) || defined(__ia64__) || defined(_M_IX86) || defined(_M_IA64) || defined(_M_ALPHA) || defined(__amd64) || defined(__amd64__) || defined(_M_AMD64) || defined(__x86_64) || defined(__x86_64__) || defined(_M_X64) || defined(__bfin__)
243 # define CEREAL_RAPIDJSON_ENDIAN CEREAL_RAPIDJSON_LITTLEENDIAN
244 # elif defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_ARM64))
245 # define CEREAL_RAPIDJSON_ENDIAN CEREAL_RAPIDJSON_LITTLEENDIAN
246 # elif defined(CEREAL_RAPIDJSON_DOXYGEN_RUNNING)
247 # define CEREAL_RAPIDJSON_ENDIAN
249 # error Unknown machine endianness detected. User needs to define CEREAL_RAPIDJSON_ENDIAN.
257 #ifndef CEREAL_RAPIDJSON_64BIT
258 #if defined(__LP64__) || (defined(__x86_64__) && defined(__ILP32__)) || defined(_WIN64) || defined(__EMSCRIPTEN__)
259 #define CEREAL_RAPIDJSON_64BIT 1
261 #define CEREAL_RAPIDJSON_64BIT 0
275 #ifndef CEREAL_RAPIDJSON_ALIGN
276 #define CEREAL_RAPIDJSON_ALIGN(x) (((x) + static_cast<size_t>(7u)) & ~static_cast<size_t>(7u))
288 #ifndef CEREAL_RAPIDJSON_UINT64_C2
289 #define CEREAL_RAPIDJSON_UINT64_C2(high32, low32) ((static_cast<uint64_t>(high32) << 32) | static_cast<uint64_t>(low32))
303 #ifndef CEREAL_RAPIDJSON_48BITPOINTER_OPTIMIZATION
304 #if defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64) || defined(_M_X64) || defined(_M_AMD64)
305 #define CEREAL_RAPIDJSON_48BITPOINTER_OPTIMIZATION 1
307 #define CEREAL_RAPIDJSON_48BITPOINTER_OPTIMIZATION 0
311 #if CEREAL_RAPIDJSON_48BITPOINTER_OPTIMIZATION == 1
312 #if CEREAL_RAPIDJSON_64BIT != 1
313 #error CEREAL_RAPIDJSON_48BITPOINTER_OPTIMIZATION can only be set to 1 when CEREAL_RAPIDJSON_64BIT=1
315 #define CEREAL_RAPIDJSON_SETPOINTER(type, p, x) (p = reinterpret_cast<type *>((reinterpret_cast<uintptr_t>(p) & static_cast<uintptr_t>(CEREAL_RAPIDJSON_UINT64_C2(0xFFFF0000, 0x00000000))) | reinterpret_cast<uintptr_t>(reinterpret_cast<const void*>(x))))
316 #define CEREAL_RAPIDJSON_GETPOINTER(type, p) (reinterpret_cast<type *>(reinterpret_cast<uintptr_t>(p) & static_cast<uintptr_t>(CEREAL_RAPIDJSON_UINT64_C2(0x0000FFFF, 0xFFFFFFFF))))
318 #define CEREAL_RAPIDJSON_SETPOINTER(type, p, x) (p = (x))
319 #define CEREAL_RAPIDJSON_GETPOINTER(type, p) (p)
351 #if defined(CEREAL_RAPIDJSON_SSE2) || defined(CEREAL_RAPIDJSON_SSE42) \
352 || defined(CEREAL_RAPIDJSON_NEON) || defined(CEREAL_RAPIDJSON_DOXYGEN_RUNNING)
353 #define CEREAL_RAPIDJSON_SIMD
359 #ifndef CEREAL_RAPIDJSON_NO_SIZETYPEDEFINE
375 #ifdef CEREAL_RAPIDJSON_DOXYGEN_RUNNING
376 #define CEREAL_RAPIDJSON_NO_SIZETYPEDEFINE
404 #ifndef CEREAL_RAPIDJSON_ASSERT
406 #define CEREAL_RAPIDJSON_ASSERT(x) assert(x)
413 #ifndef CEREAL_RAPIDJSON_STATIC_ASSERT
414 #if __cplusplus >= 201103L || ( defined(_MSC_VER) && _MSC_VER >= 1800 )
415 #define CEREAL_RAPIDJSON_STATIC_ASSERT(x) \
416 static_assert(x, CEREAL_RAPIDJSON_STRINGIFY(x))
421 #ifndef CEREAL_RAPIDJSON_STATIC_ASSERT
426 template <
bool x>
struct STATIC_ASSERTION_FAILURE;
427 template <>
struct STATIC_ASSERTION_FAILURE<true> {
enum {
value = 1 }; };
428 template <
size_t x>
struct StaticAssertTest {};
431 #if defined(__GNUC__) || defined(__clang__)
432 #define CEREAL_RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE __attribute__((unused))
434 #define CEREAL_RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE
445 #define CEREAL_RAPIDJSON_STATIC_ASSERT(x) \
446 typedef ::CEREAL_RAPIDJSON_NAMESPACE::StaticAssertTest< \
447 sizeof(::CEREAL_RAPIDJSON_NAMESPACE::STATIC_ASSERTION_FAILURE<bool(x) >)> \
448 CEREAL_RAPIDJSON_JOIN(StaticAssertTypedef, __LINE__) CEREAL_RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE
459 #ifndef CEREAL_RAPIDJSON_LIKELY
460 #if defined(__GNUC__) || defined(__clang__)
461 #define CEREAL_RAPIDJSON_LIKELY(x) __builtin_expect(!!(x), 1)
463 #define CEREAL_RAPIDJSON_LIKELY(x) (x)
472 #ifndef CEREAL_RAPIDJSON_UNLIKELY
473 #if defined(__GNUC__) || defined(__clang__)
474 #define CEREAL_RAPIDJSON_UNLIKELY(x) __builtin_expect(!!(x), 0)
476 #define CEREAL_RAPIDJSON_UNLIKELY(x) (x)
485 #define CEREAL_RAPIDJSON_MULTILINEMACRO_BEGIN do {
486 #define CEREAL_RAPIDJSON_MULTILINEMACRO_END \
490 #define CEREAL_RAPIDJSON_VERSION_CODE(x,y,z) \
491 (((x)*100000) + ((y)*100) + (z))
496 #if defined(__GNUC__)
497 #define CEREAL_RAPIDJSON_GNUC \
498 CEREAL_RAPIDJSON_VERSION_CODE(__GNUC__,__GNUC_MINOR__,__GNUC_PATCHLEVEL__)
501 #if defined(__clang__) || (defined(CEREAL_RAPIDJSON_GNUC) && CEREAL_RAPIDJSON_GNUC >= CEREAL_RAPIDJSON_VERSION_CODE(4,2,0))
503 #define CEREAL_RAPIDJSON_PRAGMA(x) _Pragma(CEREAL_RAPIDJSON_STRINGIFY(x))
504 #define CEREAL_RAPIDJSON_DIAG_PRAGMA(x) CEREAL_RAPIDJSON_PRAGMA(GCC diagnostic x)
505 #define CEREAL_RAPIDJSON_DIAG_OFF(x) \
506 CEREAL_RAPIDJSON_DIAG_PRAGMA(ignored CEREAL_RAPIDJSON_STRINGIFY(CEREAL_RAPIDJSON_JOIN(-W,x)))
509 #if defined(__clang__) || (defined(CEREAL_RAPIDJSON_GNUC) && CEREAL_RAPIDJSON_GNUC >= CEREAL_RAPIDJSON_VERSION_CODE(4,6,0))
510 #define CEREAL_RAPIDJSON_DIAG_PUSH CEREAL_RAPIDJSON_DIAG_PRAGMA(push)
511 #define CEREAL_RAPIDJSON_DIAG_POP CEREAL_RAPIDJSON_DIAG_PRAGMA(pop)
513 #define CEREAL_RAPIDJSON_DIAG_PUSH
514 #define CEREAL_RAPIDJSON_DIAG_POP
517 #elif defined(_MSC_VER)
520 #define CEREAL_RAPIDJSON_PRAGMA(x) __pragma(x)
521 #define CEREAL_RAPIDJSON_DIAG_PRAGMA(x) CEREAL_RAPIDJSON_PRAGMA(warning(x))
523 #define CEREAL_RAPIDJSON_DIAG_OFF(x) CEREAL_RAPIDJSON_DIAG_PRAGMA(disable: x)
524 #define CEREAL_RAPIDJSON_DIAG_PUSH CEREAL_RAPIDJSON_DIAG_PRAGMA(push)
525 #define CEREAL_RAPIDJSON_DIAG_POP CEREAL_RAPIDJSON_DIAG_PRAGMA(pop)
529 #define CEREAL_RAPIDJSON_DIAG_OFF(x)
530 #define CEREAL_RAPIDJSON_DIAG_PUSH
531 #define CEREAL_RAPIDJSON_DIAG_POP
538 #ifndef CEREAL_RAPIDJSON_HAS_CXX11_RVALUE_REFS
539 #if defined(__clang__)
540 #if __has_feature(cxx_rvalue_references) && \
541 (defined(_MSC_VER) || defined(_LIBCPP_VERSION) || defined(__GLIBCXX__) && __GLIBCXX__ >= 20080306)
542 #define CEREAL_RAPIDJSON_HAS_CXX11_RVALUE_REFS 1
544 #define CEREAL_RAPIDJSON_HAS_CXX11_RVALUE_REFS 0
546 #elif (defined(CEREAL_RAPIDJSON_GNUC) && (CEREAL_RAPIDJSON_GNUC >= CEREAL_RAPIDJSON_VERSION_CODE(4,3,0)) && defined(__GXX_EXPERIMENTAL_CXX0X__)) || \
547 (defined(_MSC_VER) && _MSC_VER >= 1600) || \
548 (defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5140 && defined(__GXX_EXPERIMENTAL_CXX0X__))
550 #define CEREAL_RAPIDJSON_HAS_CXX11_RVALUE_REFS 1
552 #define CEREAL_RAPIDJSON_HAS_CXX11_RVALUE_REFS 0
556 #ifndef CEREAL_RAPIDJSON_HAS_CXX11_NOEXCEPT
557 #if defined(__clang__)
558 #define CEREAL_RAPIDJSON_HAS_CXX11_NOEXCEPT __has_feature(cxx_noexcept)
559 #elif (defined(CEREAL_RAPIDJSON_GNUC) && (CEREAL_RAPIDJSON_GNUC >= CEREAL_RAPIDJSON_VERSION_CODE(4,6,0)) && defined(__GXX_EXPERIMENTAL_CXX0X__)) || \
560 (defined(_MSC_VER) && _MSC_VER >= 1900) || \
561 (defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5140 && defined(__GXX_EXPERIMENTAL_CXX0X__))
562 #define CEREAL_RAPIDJSON_HAS_CXX11_NOEXCEPT 1
564 #define CEREAL_RAPIDJSON_HAS_CXX11_NOEXCEPT 0
567 #if CEREAL_RAPIDJSON_HAS_CXX11_NOEXCEPT
568 #define CEREAL_RAPIDJSON_NOEXCEPT noexcept
570 #define CEREAL_RAPIDJSON_NOEXCEPT
574 #ifndef CEREAL_RAPIDJSON_HAS_CXX11_TYPETRAITS
575 #if (defined(_MSC_VER) && _MSC_VER >= 1700)
576 #define CEREAL_RAPIDJSON_HAS_CXX11_TYPETRAITS 1
578 #define CEREAL_RAPIDJSON_HAS_CXX11_TYPETRAITS 0
582 #ifndef CEREAL_RAPIDJSON_HAS_CXX11_RANGE_FOR
583 #if defined(__clang__)
584 #define CEREAL_RAPIDJSON_HAS_CXX11_RANGE_FOR __has_feature(cxx_range_for)
585 #elif (defined(CEREAL_RAPIDJSON_GNUC) && (CEREAL_RAPIDJSON_GNUC >= CEREAL_RAPIDJSON_VERSION_CODE(4,6,0)) && defined(__GXX_EXPERIMENTAL_CXX0X__)) || \
586 (defined(_MSC_VER) && _MSC_VER >= 1700) || \
587 (defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5140 && defined(__GXX_EXPERIMENTAL_CXX0X__))
588 #define CEREAL_RAPIDJSON_HAS_CXX11_RANGE_FOR 1
590 #define CEREAL_RAPIDJSON_HAS_CXX11_RANGE_FOR 0
610 #ifndef CEREAL_RAPIDJSON_NOEXCEPT_ASSERT
611 #ifdef CEREAL_RAPIDJSON_ASSERT_THROWS
612 #if CEREAL_RAPIDJSON_HAS_CXX11_NOEXCEPT
613 #define CEREAL_RAPIDJSON_NOEXCEPT_ASSERT(x)
615 #define CEREAL_RAPIDJSON_NOEXCEPT_ASSERT(x) CEREAL_RAPIDJSON_ASSERT(x)
618 #define CEREAL_RAPIDJSON_NOEXCEPT_ASSERT(x) CEREAL_RAPIDJSON_ASSERT(x)
625 #ifndef CEREAL_RAPIDJSON_NEW
627 #define CEREAL_RAPIDJSON_NEW(TypeName) new TypeName
629 #ifndef CEREAL_RAPIDJSON_DELETE
631 #define CEREAL_RAPIDJSON_DELETE(x) delete x
#define CEREAL_RAPIDJSON_NAMESPACE_BEGIN
provide custom rapidjson namespace (opening expression)
Definition: rapidjson.h:121
#define CEREAL_RAPIDJSON_NAMESPACE_END
provide custom rapidjson namespace (closing expression)
Definition: rapidjson.h:124
const GenericPointer< typename T::ValueType > T2 value
Definition: pointer.h:1282
Type
Type of JSON value.
Definition: rapidjson.h:644
@ kFalseType
false
Definition: rapidjson.h:646
@ kObjectType
object
Definition: rapidjson.h:648
@ kTrueType
true
Definition: rapidjson.h:647
@ kStringType
string
Definition: rapidjson.h:650
@ kNullType
null
Definition: rapidjson.h:645
@ kArrayType
array
Definition: rapidjson.h:649
@ kNumberType
number
Definition: rapidjson.h:651
CEREAL_RAPIDJSON_NAMESPACE_BEGIN typedef unsigned SizeType
Size type (for string lengths, array sizes, etc.)
Definition: rapidjson.h:384