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
|
2018-12-13 03:34:37 +08:00
|
|
|
#include <cstddef>
|
2019-01-18 05:35:29 +08:00
|
|
|
#include <cstdint>
|
|
|
|
#include <istream>
|
|
|
|
#include <memory>
|
|
|
|
#include <ostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
#include <type_traits>
|
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
|
|
|
|
2019-07-12 05:27:29 +08:00
|
|
|
// Temporary, tracked for removal with issue #982.
|
|
|
|
#ifndef JSON_USE_NULLREF
|
|
|
|
#define JSON_USE_NULLREF 1
|
|
|
|
#endif
|
|
|
|
|
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
|
2019-03-22 17:15:08 +08:00
|
|
|
#elif defined(__GNUC__) || defined(__clang__)
|
|
|
|
#define JSON_API __attribute__((visibility("default")))
|
2014-07-01 06:48:54 +08:00
|
|
|
#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
|
|
|
|
2019-01-12 04:13:08 +08:00
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1800
|
2019-01-18 00:07:53 +08:00
|
|
|
#error \
|
|
|
|
"ERROR: Visual Studio 12 (2013) with _MSC_VER=1800 is the oldest supported compiler with sufficient C++11 capabilities"
|
2019-01-12 04:13:08 +08:00
|
|
|
#endif
|
|
|
|
|
2018-12-13 03:31:55 +08:00
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1900
|
2019-01-18 00:07:53 +08:00
|
|
|
// 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
|
2018-12-13 03:31:55 +08:00
|
|
|
#else
|
2019-01-18 00:07:53 +08:00
|
|
|
#define jsoncpp_snprintf std::snprintf
|
2018-12-13 03:31:55 +08:00
|
|
|
#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
|
|
|
|
|
2019-01-18 00:07:53 +08:00
|
|
|
// JSONCPP_OVERRIDE is maintained for backwards compatibility of external tools.
|
|
|
|
// C++11 should be used directly in JSONCPP.
|
|
|
|
#define JSONCPP_OVERRIDE override
|
|
|
|
|
2016-06-27 06:52:19 +08:00
|
|
|
#if __cplusplus >= 201103L
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSONCPP_NOEXCEPT noexcept
|
|
|
|
#define JSONCPP_OP_EXPLICIT explicit
|
2019-01-12 04:13:08 +08:00
|
|
|
#elif defined(_MSC_VER) && _MSC_VER < 1900
|
2018-05-21 04:55:27 +08:00
|
|
|
#define JSONCPP_NOEXCEPT throw()
|
|
|
|
#define JSONCPP_OP_EXPLICIT explicit
|
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_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_NOEXCEPT throw()
|
|
|
|
#define JSONCPP_OP_EXPLICIT
|
2016-04-26 05:35:12 +08:00
|
|
|
#endif
|
2015-04-20 22:44:47 +08:00
|
|
|
|
2019-07-13 02:07:12 +08:00
|
|
|
#if defined(__GNUC__) && (__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
|
|
|
|
2019-01-18 05:35:29 +08:00
|
|
|
#include "allocator.h"
|
2018-05-21 04:55:27 +08:00
|
|
|
#include "version.h"
|
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)
|
2019-01-18 05:35:29 +08:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
using Allocator = typename std::conditional<JSONCPP_USING_SECURE_MEMORY,
|
|
|
|
SecureAllocator<T>,
|
2019-01-18 16:46:57 +08:00
|
|
|
std::allocator<T>>::type;
|
|
|
|
using String = std::basic_string<char, std::char_traits<char>, Allocator<char>>;
|
2019-01-18 05:35:29 +08:00
|
|
|
using IStringStream = std::basic_istringstream<String::value_type,
|
|
|
|
String::traits_type,
|
|
|
|
String::allocator_type>;
|
|
|
|
using OStringStream = std::basic_ostringstream<String::value_type,
|
|
|
|
String::traits_type,
|
|
|
|
String::allocator_type>;
|
|
|
|
using IStream = std::istream;
|
|
|
|
using OStream = std::ostream;
|
|
|
|
} // namespace Json
|
|
|
|
|
|
|
|
// Legacy names (formerly macros).
|
|
|
|
using JSONCPP_STRING = Json::String;
|
|
|
|
using JSONCPP_ISTRINGSTREAM = Json::IStringStream;
|
|
|
|
using JSONCPP_OSTRINGSTREAM = Json::OStringStream;
|
|
|
|
using JSONCPP_ISTREAM = Json::IStream;
|
|
|
|
using JSONCPP_OSTREAM = Json::OStream;
|
2010-04-19 15:37:41 +08:00
|
|
|
|
2007-06-13 23:51:04 +08:00
|
|
|
#endif // JSON_CONFIG_H_INCLUDED
|