2017-07-21 18:44:36 +08:00
|
|
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
2010-04-21 05:35:19 +08:00
|
|
|
// Distributed under MIT license, or public domain if desired and
|
|
|
|
// recognized in your jurisdiction.
|
|
|
|
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
|
|
|
2007-06-13 23:51:04 +08:00
|
|
|
#ifndef JSON_CONFIG_H_INCLUDED
|
2014-07-01 06:48:54 +08:00
|
|
|
#define JSON_CONFIG_H_INCLUDED
|
2016-02-06 23:49:29 +08:00
|
|
|
#include <stddef.h>
|
2016-09-26 18:16:38 +08:00
|
|
|
#include <stdint.h> //typedef int64_t, uint64_t
|
2018-05-21 04:55:27 +08:00
|
|
|
#include <string> //typedef String
|
2007-06-13 23:51:04 +08:00
|
|
|
|
|
|
|
/// If defined, indicates that json library is embedded in CppTL library.
|
|
|
|
//# define JSON_IN_CPPTL 1
|
|
|
|
|
|
|
|
/// If defined, indicates that json may leverage CppTL library
|
|
|
|
//# define JSON_USE_CPPTL 1
|
2014-07-01 06:48:54 +08:00
|
|
|
/// If defined, indicates that cpptl vector based map should be used instead of
|
|
|
|
/// std::map
|
2007-06-13 23:51:04 +08:00
|
|
|
/// as Value container.
|
|
|
|
//# define JSON_USE_CPPTL_SMALLMAP 1
|
|
|
|
|
2011-09-14 16:41:37 +08:00
|
|
|
// If non-zero, the library uses exceptions to report bad input instead of C
|
|
|
|
// assertion macros. The default is to use exceptions.
|
2014-07-01 06:48:54 +08:00
|
|
|
#ifndef JSON_USE_EXCEPTION
|
|
|
|
#define JSON_USE_EXCEPTION 1
|
|
|
|
#endif
|
2007-06-13 23:51:04 +08:00
|
|
|
|
2017-12-04 00:54:29 +08:00
|
|
|
/// If defined, indicates that the source file is amalgamated
|
2011-05-02 04:13:40 +08:00
|
|
|
/// to prevent private header inclusion.
|
2017-12-04 00:54:29 +08:00
|
|
|
/// Remarks: it is automatically defined in the generated amalgamated header.
|
2011-05-03 05:09:30 +08:00
|
|
|
// #define JSON_IS_AMALGAMATION
|
2011-05-02 04:13:40 +08:00
|
|
|
|
2014-07-01 06:48:54 +08:00
|
|
|
#ifdef JSON_IN_CPPTL
|
|
|
|
#include <cpptl/config.h>
|
|
|
|
#ifndef JSON_USE_CPPTL
|
|
|
|
#define JSON_USE_CPPTL 1
|
|
|
|
#endif
|
|
|
|
#endif
|
2011-05-02 04:13:40 +08:00
|
|
|
|
2014-07-01 06:48:54 +08:00
|
|
|
#ifdef JSON_IN_CPPTL
|
|
|
|
#define JSON_API CPPTL_API
|
|
|
|
#elif defined(JSON_DLL_BUILD)
|
2016-03-08 20:04:22 +08:00
|
|
|
#if defined(_MSC_VER) || defined(__MINGW32__)
|
2014-07-01 06:48:54 +08:00
|
|
|
#define JSON_API __declspec(dllexport)
|
|
|
|
#define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
|
|
|
|
#endif // if defined(_MSC_VER)
|
|
|
|
#elif defined(JSON_DLL)
|
2016-03-08 20:04:22 +08:00
|
|
|
#if defined(_MSC_VER) || defined(__MINGW32__)
|
2014-07-01 06:48:54 +08:00
|
|
|
#define JSON_API __declspec(dllimport)
|
|
|
|
#define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
|
|
|
|
#endif // if defined(_MSC_VER)
|
|
|
|
#endif // ifdef JSON_IN_CPPTL
|
|
|
|
#if !defined(JSON_API)
|
|
|
|
#define JSON_API
|
|
|
|
#endif
|
2007-06-13 23:51:04 +08:00
|
|
|
|
2018-12-13 03:31:55 +08:00
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1900
|
|
|
|
// As recommended at https://stackoverflow.com/questions/2915672/snprintf-and-visual-studio-2010
|
|
|
|
extern JSON_API int msvc_pre1900_c99_snprintf(char *outBuf, size_t size, const char *format, ...);
|
|
|
|
# define jsoncpp_snprintf msvc_pre1900_c99_snprintf
|
|
|
|
#else
|
|
|
|
# define jsoncpp_snprintf std::snprintf
|
|
|
|
#endif
|
|
|
|
|
2014-07-01 06:48:54 +08:00
|
|
|
// If JSON_NO_INT64 is defined, then Json only support C++ "int" type for
|
|
|
|
// integer
|
2010-12-28 01:45:23 +08:00
|
|
|
// Storages, and 64 bits integer support is disabled.
|
2010-04-19 15:37:41 +08:00
|
|
|
// #define JSON_NO_INT64 1
|
|
|
|
|
2015-04-20 22:44:47 +08:00
|
|
|
#if defined(_MSC_VER) // MSVC
|
2018-05-21 04:55:27 +08:00
|
|
|
#if _MSC_VER <= 1200 // MSVC 6
|
|
|
|
// Microsoft Visual Studio 6 only support conversion from __int64 to double
|
|
|
|
// (no conversion from unsigned __int64).
|
|
|
|
#define JSON_USE_INT64_DOUBLE_CONVERSION 1
|
|
|
|
// Disable warning 4786 for VS6 caused by STL (identifier was truncated to '255'
|
|
|
|
// characters in the debug information)
|
|
|
|
// All projects I've ever seen with VS6 were using this globally (not bothering
|
|
|
|
// with pragma push/pop).
|
|
|
|
#pragma warning(disable : 4786)
|
|
|
|
#endif // MSVC 6
|
|
|
|
|
|
|
|
#if _MSC_VER >= 1500 // MSVC 2008
|
|
|
|
/// Indicates that the following function is deprecated.
|
|
|
|
#define JSONCPP_DEPRECATED(message) __declspec(deprecated(message))
|
|
|
|
#endif
|
2015-04-20 22:44:47 +08:00
|
|
|
|
|
|
|
#endif // defined(_MSC_VER)
|
|
|
|
|
2017-12-04 00:54:29 +08:00
|
|
|
// In c++11 the override keyword allows you to explicitly define that a function
|
2016-04-26 05:35:12 +08:00
|
|
|
// is intended to override the base-class version. This makes the code more
|
2018-02-09 09:05:50 +08:00
|
|
|
// manageable and fixes a set of common hard-to-find bugs.
|
2016-06-27 06:52:19 +08:00
|
|
|
#if __cplusplus >= 201103L
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSONCPP_OVERRIDE override
|
|
|
|
#define JSONCPP_NOEXCEPT noexcept
|
|
|
|
#define JSONCPP_OP_EXPLICIT explicit
|
2016-11-08 02:57:00 +08:00
|
|
|
#elif defined(_MSC_VER) && _MSC_VER > 1600 && _MSC_VER < 1900
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSONCPP_OVERRIDE override
|
|
|
|
#define JSONCPP_NOEXCEPT throw()
|
|
|
|
#if _MSC_VER >= 1800 // MSVC 2013
|
|
|
|
#define JSONCPP_OP_EXPLICIT explicit
|
|
|
|
#else
|
|
|
|
#define JSONCPP_OP_EXPLICIT
|
|
|
|
#endif
|
2016-11-08 02:57:00 +08:00
|
|
|
#elif defined(_MSC_VER) && _MSC_VER >= 1900
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSONCPP_OVERRIDE override
|
|
|
|
#define JSONCPP_NOEXCEPT noexcept
|
|
|
|
#define JSONCPP_OP_EXPLICIT explicit
|
2016-04-26 05:35:12 +08:00
|
|
|
#else
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSONCPP_OVERRIDE
|
|
|
|
#define JSONCPP_NOEXCEPT throw()
|
|
|
|
#define JSONCPP_OP_EXPLICIT
|
2016-04-26 05:35:12 +08:00
|
|
|
#endif
|
2015-04-20 22:44:47 +08:00
|
|
|
|
|
|
|
#ifndef JSON_HAS_RVALUE_REFERENCES
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER >= 1600 // MSVC >= 2010
|
|
|
|
#define JSON_HAS_RVALUE_REFERENCES 1
|
|
|
|
#endif // MSVC >= 2010
|
|
|
|
|
|
|
|
#ifdef __clang__
|
|
|
|
#if __has_feature(cxx_rvalue_references)
|
|
|
|
#define JSON_HAS_RVALUE_REFERENCES 1
|
2018-05-21 04:55:27 +08:00
|
|
|
#endif // has_feature
|
2015-04-20 22:44:47 +08:00
|
|
|
|
|
|
|
#elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc)
|
|
|
|
#if defined(__GXX_EXPERIMENTAL_CXX0X__) || (__cplusplus >= 201103L)
|
|
|
|
#define JSON_HAS_RVALUE_REFERENCES 1
|
2018-05-21 04:55:27 +08:00
|
|
|
#endif // GXX_EXPERIMENTAL
|
2015-04-20 22:44:47 +08:00
|
|
|
|
|
|
|
#endif // __clang__ || __GNUC__
|
|
|
|
|
|
|
|
#endif // not defined JSON_HAS_RVALUE_REFERENCES
|
|
|
|
|
|
|
|
#ifndef JSON_HAS_RVALUE_REFERENCES
|
|
|
|
#define JSON_HAS_RVALUE_REFERENCES 0
|
2011-05-02 00:27:55 +08:00
|
|
|
#endif
|
|
|
|
|
2015-04-20 22:44:47 +08:00
|
|
|
#ifdef __clang__
|
2018-05-21 04:55:27 +08:00
|
|
|
#if __has_extension(attribute_deprecated_with_message)
|
|
|
|
#define JSONCPP_DEPRECATED(message) __attribute__((deprecated(message)))
|
|
|
|
#endif
|
2015-04-20 22:44:47 +08:00
|
|
|
#elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc)
|
2018-05-21 04:55:27 +08:00
|
|
|
#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
|
|
|
|
#define JSONCPP_DEPRECATED(message) __attribute__((deprecated(message)))
|
|
|
|
#elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
|
|
|
|
#define JSONCPP_DEPRECATED(message) __attribute__((__deprecated__))
|
|
|
|
#endif // GNUC version
|
2015-04-20 22:44:47 +08:00
|
|
|
#endif // __clang__ || __GNUC__
|
|
|
|
|
2011-05-02 00:27:55 +08:00
|
|
|
#if !defined(JSONCPP_DEPRECATED)
|
2014-07-01 06:48:54 +08:00
|
|
|
#define JSONCPP_DEPRECATED(message)
|
2011-05-02 00:27:55 +08:00
|
|
|
#endif // if !defined(JSONCPP_DEPRECATED)
|
2010-04-19 15:37:41 +08:00
|
|
|
|
2016-02-08 01:09:41 +08:00
|
|
|
#if __GNUC__ >= 6
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSON_USE_INT64_DOUBLE_CONVERSION 1
|
2016-02-08 01:09:41 +08:00
|
|
|
#endif
|
|
|
|
|
2016-03-22 09:33:15 +08:00
|
|
|
#if !defined(JSON_IS_AMALGAMATION)
|
2016-03-07 01:42:11 +08:00
|
|
|
|
2018-05-21 04:55:27 +08:00
|
|
|
#include "version.h"
|
2016-03-22 09:33:15 +08:00
|
|
|
|
2018-05-21 04:55:27 +08:00
|
|
|
#if JSONCPP_USING_SECURE_MEMORY
|
|
|
|
#include "allocator.h" //typedef Allocator
|
|
|
|
#endif
|
2016-03-22 09:33:15 +08:00
|
|
|
|
|
|
|
#endif // if !defined(JSON_IS_AMALGAMATION)
|
2016-03-07 01:42:11 +08:00
|
|
|
|
2010-04-19 15:37:41 +08:00
|
|
|
namespace Json {
|
2014-07-01 06:48:54 +08:00
|
|
|
typedef int Int;
|
|
|
|
typedef unsigned int UInt;
|
|
|
|
#if defined(JSON_NO_INT64)
|
|
|
|
typedef int LargestInt;
|
|
|
|
typedef unsigned int LargestUInt;
|
|
|
|
#undef JSON_HAS_INT64
|
|
|
|
#else // if defined(JSON_NO_INT64)
|
|
|
|
// For Microsoft Visual use specific types as long long is not supported
|
|
|
|
#if defined(_MSC_VER) // Microsoft Visual Studio
|
|
|
|
typedef __int64 Int64;
|
|
|
|
typedef unsigned __int64 UInt64;
|
|
|
|
#else // if defined(_MSC_VER) // Other platforms, use long long
|
2016-08-22 08:58:43 +08:00
|
|
|
typedef int64_t Int64;
|
|
|
|
typedef uint64_t UInt64;
|
2018-05-21 04:55:27 +08:00
|
|
|
#endif // if defined(_MSC_VER)
|
2014-07-01 06:48:54 +08:00
|
|
|
typedef Int64 LargestInt;
|
|
|
|
typedef UInt64 LargestUInt;
|
|
|
|
#define JSON_HAS_INT64
|
|
|
|
#endif // if defined(JSON_NO_INT64)
|
2016-03-15 08:11:02 +08:00
|
|
|
#if JSONCPP_USING_SECURE_MEMORY
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSONCPP_STRING \
|
|
|
|
std::basic_string<char, std::char_traits<char>, Json::SecureAllocator<char> >
|
|
|
|
#define JSONCPP_OSTRINGSTREAM \
|
|
|
|
std::basic_ostringstream<char, std::char_traits<char>, \
|
|
|
|
Json::SecureAllocator<char> >
|
|
|
|
#define JSONCPP_OSTREAM std::basic_ostream<char, std::char_traits<char> >
|
|
|
|
#define JSONCPP_ISTRINGSTREAM \
|
|
|
|
std::basic_istringstream<char, std::char_traits<char>, \
|
|
|
|
Json::SecureAllocator<char> >
|
|
|
|
#define JSONCPP_ISTREAM std::istream
|
2016-03-07 01:42:11 +08:00
|
|
|
#else
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSONCPP_STRING std::string
|
2016-03-07 01:19:46 +08:00
|
|
|
#define JSONCPP_OSTRINGSTREAM std::ostringstream
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSONCPP_OSTREAM std::ostream
|
2016-03-07 01:19:46 +08:00
|
|
|
#define JSONCPP_ISTRINGSTREAM std::istringstream
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSONCPP_ISTREAM std::istream
|
2016-03-15 08:11:02 +08:00
|
|
|
#endif // if JSONCPP_USING_SECURE_MEMORY
|
2010-04-19 15:37:41 +08:00
|
|
|
} // end namespace Json
|
|
|
|
|
2007-06-13 23:51:04 +08:00
|
|
|
#endif // JSON_CONFIG_H_INCLUDED
|