2017-07-21 03:44:36 -07:00
|
|
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
2010-04-20 21:35:19 +00: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 15:51:04 +00:00
|
|
|
#ifndef JSON_CONFIG_H_INCLUDED
|
2014-07-01 08:48:54 +10:00
|
|
|
#define JSON_CONFIG_H_INCLUDED
|
2018-12-12 13:34:37 -06:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint> //typedef int64_t, uint64_t
|
2018-05-20 16:55:27 -04:00
|
|
|
#include <string> //typedef String
|
2007-06-13 15:51:04 +00: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 08:48:54 +10:00
|
|
|
/// If defined, indicates that cpptl vector based map should be used instead of
|
|
|
|
/// std::map
|
2007-06-13 15:51:04 +00:00
|
|
|
/// as Value container.
|
|
|
|
//# define JSON_USE_CPPTL_SMALLMAP 1
|
|
|
|
|
2011-09-14 08:41:37 +00: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 08:48:54 +10:00
|
|
|
#ifndef JSON_USE_EXCEPTION
|
|
|
|
#define JSON_USE_EXCEPTION 1
|
|
|
|
#endif
|
2007-06-13 15:51:04 +00:00
|
|
|
|
2017-12-03 11:54:29 -05:00
|
|
|
/// If defined, indicates that the source file is amalgamated
|
2011-05-01 20:13:40 +00:00
|
|
|
/// to prevent private header inclusion.
|
2017-12-03 11:54:29 -05:00
|
|
|
/// Remarks: it is automatically defined in the generated amalgamated header.
|
2011-05-02 21:09:30 +00:00
|
|
|
// #define JSON_IS_AMALGAMATION
|
2011-05-01 20:13:40 +00:00
|
|
|
|
2014-07-01 08:48:54 +10:00
|
|
|
#ifdef JSON_IN_CPPTL
|
|
|
|
#include <cpptl/config.h>
|
|
|
|
#ifndef JSON_USE_CPPTL
|
|
|
|
#define JSON_USE_CPPTL 1
|
|
|
|
#endif
|
|
|
|
#endif
|
2011-05-01 20:13:40 +00:00
|
|
|
|
2014-07-01 08:48:54 +10:00
|
|
|
#ifdef JSON_IN_CPPTL
|
|
|
|
#define JSON_API CPPTL_API
|
|
|
|
#elif defined(JSON_DLL_BUILD)
|
2016-03-08 17:34:22 +05:30
|
|
|
#if defined(_MSC_VER) || defined(__MINGW32__)
|
2014-07-01 08:48:54 +10:00
|
|
|
#define JSON_API __declspec(dllexport)
|
|
|
|
#define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
|
|
|
|
#endif // if defined(_MSC_VER)
|
|
|
|
#elif defined(JSON_DLL)
|
2016-03-08 17:34:22 +05:30
|
|
|
#if defined(_MSC_VER) || defined(__MINGW32__)
|
2014-07-01 08:48:54 +10: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 15:51:04 +00:00
|
|
|
|
2018-12-12 13:31:55 -06: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 08:48:54 +10:00
|
|
|
// If JSON_NO_INT64 is defined, then Json only support C++ "int" type for
|
|
|
|
// integer
|
2010-12-27 17:45:23 +00:00
|
|
|
// Storages, and 64 bits integer support is disabled.
|
2010-04-19 07:37:41 +00:00
|
|
|
// #define JSON_NO_INT64 1
|
|
|
|
|
2015-04-20 17:44:47 +03:00
|
|
|
#if defined(_MSC_VER) // MSVC
|
2018-05-20 16:55:27 -04: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 17:44:47 +03:00
|
|
|
|
|
|
|
#endif // defined(_MSC_VER)
|
|
|
|
|
2017-12-03 11:54:29 -05:00
|
|
|
// In c++11 the override keyword allows you to explicitly define that a function
|
2016-04-25 17:35:12 -04:00
|
|
|
// is intended to override the base-class version. This makes the code more
|
2018-02-08 20:05:50 -05:00
|
|
|
// manageable and fixes a set of common hard-to-find bugs.
|
2019-01-11 13:58:53 -06:00
|
|
|
#define JSONCPP_OVERRIDE override // Define maintained for backwards compatibility of external tools. C++11 should be used directly in JSONCPP
|
2016-06-26 17:52:19 -05:00
|
|
|
#if __cplusplus >= 201103L
|
2018-05-20 16:55:27 -04:00
|
|
|
#define JSONCPP_NOEXCEPT noexcept
|
|
|
|
#define JSONCPP_OP_EXPLICIT explicit
|
2016-11-07 13:57:00 -05:00
|
|
|
#elif defined(_MSC_VER) && _MSC_VER > 1600 && _MSC_VER < 1900
|
2018-05-20 16:55:27 -04:00
|
|
|
#define JSONCPP_NOEXCEPT throw()
|
|
|
|
#if _MSC_VER >= 1800 // MSVC 2013
|
|
|
|
#define JSONCPP_OP_EXPLICIT explicit
|
|
|
|
#else
|
|
|
|
#define JSONCPP_OP_EXPLICIT
|
|
|
|
#endif
|
2016-11-07 13:57:00 -05:00
|
|
|
#elif defined(_MSC_VER) && _MSC_VER >= 1900
|
2018-05-20 16:55:27 -04:00
|
|
|
#define JSONCPP_NOEXCEPT noexcept
|
|
|
|
#define JSONCPP_OP_EXPLICIT explicit
|
2016-04-25 17:35:12 -04:00
|
|
|
#else
|
2018-05-20 16:55:27 -04:00
|
|
|
#define JSONCPP_NOEXCEPT throw()
|
|
|
|
#define JSONCPP_OP_EXPLICIT
|
2016-04-25 17:35:12 -04:00
|
|
|
#endif
|
2015-04-20 17:44:47 +03: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-20 16:55:27 -04:00
|
|
|
#endif // has_feature
|
2015-04-20 17:44:47 +03: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-20 16:55:27 -04:00
|
|
|
#endif // GXX_EXPERIMENTAL
|
2015-04-20 17:44:47 +03:00
|
|
|
|
|
|
|
#endif // __clang__ || __GNUC__
|
|
|
|
|
|
|
|
#endif // not defined JSON_HAS_RVALUE_REFERENCES
|
|
|
|
|
|
|
|
#ifndef JSON_HAS_RVALUE_REFERENCES
|
|
|
|
#define JSON_HAS_RVALUE_REFERENCES 0
|
2011-05-01 16:27:55 +00:00
|
|
|
#endif
|
|
|
|
|
2015-04-20 17:44:47 +03:00
|
|
|
#ifdef __clang__
|
2018-05-20 16:55:27 -04:00
|
|
|
#if __has_extension(attribute_deprecated_with_message)
|
|
|
|
#define JSONCPP_DEPRECATED(message) __attribute__((deprecated(message)))
|
|
|
|
#endif
|
2015-04-20 17:44:47 +03:00
|
|
|
#elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc)
|
2018-05-20 16:55:27 -04: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 17:44:47 +03:00
|
|
|
#endif // __clang__ || __GNUC__
|
|
|
|
|
2011-05-01 16:27:55 +00:00
|
|
|
#if !defined(JSONCPP_DEPRECATED)
|
2014-07-01 08:48:54 +10:00
|
|
|
#define JSONCPP_DEPRECATED(message)
|
2011-05-01 16:27:55 +00:00
|
|
|
#endif // if !defined(JSONCPP_DEPRECATED)
|
2010-04-19 07:37:41 +00:00
|
|
|
|
2016-02-07 11:09:41 -06:00
|
|
|
#if __GNUC__ >= 6
|
2018-05-20 16:55:27 -04:00
|
|
|
#define JSON_USE_INT64_DOUBLE_CONVERSION 1
|
2016-02-07 11:09:41 -06:00
|
|
|
#endif
|
|
|
|
|
2016-03-21 20:33:15 -05:00
|
|
|
#if !defined(JSON_IS_AMALGAMATION)
|
2016-03-06 11:42:11 -06:00
|
|
|
|
2018-05-20 16:55:27 -04:00
|
|
|
#include "version.h"
|
2016-03-21 20:33:15 -05:00
|
|
|
|
2018-05-20 16:55:27 -04:00
|
|
|
#if JSONCPP_USING_SECURE_MEMORY
|
|
|
|
#include "allocator.h" //typedef Allocator
|
|
|
|
#endif
|
2016-03-21 20:33:15 -05:00
|
|
|
|
|
|
|
#endif // if !defined(JSON_IS_AMALGAMATION)
|
2016-03-06 11:42:11 -06:00
|
|
|
|
2010-04-19 07:37:41 +00:00
|
|
|
namespace Json {
|
2014-07-01 08:48:54 +10: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-21 19:58:43 -05:00
|
|
|
typedef int64_t Int64;
|
|
|
|
typedef uint64_t UInt64;
|
2018-05-20 16:55:27 -04:00
|
|
|
#endif // if defined(_MSC_VER)
|
2014-07-01 08:48:54 +10:00
|
|
|
typedef Int64 LargestInt;
|
|
|
|
typedef UInt64 LargestUInt;
|
|
|
|
#define JSON_HAS_INT64
|
|
|
|
#endif // if defined(JSON_NO_INT64)
|
2016-03-14 19:11:02 -05:00
|
|
|
#if JSONCPP_USING_SECURE_MEMORY
|
2018-05-20 16:55:27 -04: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-06 11:42:11 -06:00
|
|
|
#else
|
2018-05-20 16:55:27 -04:00
|
|
|
#define JSONCPP_STRING std::string
|
2016-03-06 11:19:46 -06:00
|
|
|
#define JSONCPP_OSTRINGSTREAM std::ostringstream
|
2018-05-20 16:55:27 -04:00
|
|
|
#define JSONCPP_OSTREAM std::ostream
|
2016-03-06 11:19:46 -06:00
|
|
|
#define JSONCPP_ISTRINGSTREAM std::istringstream
|
2018-05-20 16:55:27 -04:00
|
|
|
#define JSONCPP_ISTREAM std::istream
|
2016-03-14 19:11:02 -05:00
|
|
|
#endif // if JSONCPP_USING_SECURE_MEMORY
|
2010-04-19 07:37:41 +00:00
|
|
|
} // end namespace Json
|
|
|
|
|
2007-06-13 15:51:04 +00:00
|
|
|
#endif // JSON_CONFIG_H_INCLUDED
|