JsonCpp project page JsonCpp home page

config.h
Go to the documentation of this file.
1 // Copyright 2007-2010 Baptiste Lepilleur
2 // Distributed under MIT license, or public domain if desired and
3 // recognized in your jurisdiction.
4 // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
5 
6 #ifndef JSON_CONFIG_H_INCLUDED
7 #define JSON_CONFIG_H_INCLUDED
8 #include <stddef.h>
9 #include <string> //typedef String
10 #include <stdint.h> //typedef int64_t, uint64_t
11 
13 //# define JSON_IN_CPPTL 1
14 
16 //# define JSON_USE_CPPTL 1
20 //# define JSON_USE_CPPTL_SMALLMAP 1
21 
22 // If non-zero, the library uses exceptions to report bad input instead of C
23 // assertion macros. The default is to use exceptions.
24 #ifndef JSON_USE_EXCEPTION
25 #define JSON_USE_EXCEPTION 1
26 #endif
27 
31 // #define JSON_IS_AMALGAMATION
32 
33 #ifdef JSON_IN_CPPTL
34 #include <cpptl/config.h>
35 #ifndef JSON_USE_CPPTL
36 #define JSON_USE_CPPTL 1
37 #endif
38 #endif
39 
40 #ifdef JSON_IN_CPPTL
41 #define JSON_API CPPTL_API
42 #elif defined(JSON_DLL_BUILD)
43 #if defined(_MSC_VER) || defined(__MINGW32__)
44 #define JSON_API __declspec(dllexport)
45 #define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
46 #endif // if defined(_MSC_VER)
47 #elif defined(JSON_DLL)
48 #if defined(_MSC_VER) || defined(__MINGW32__)
49 #define JSON_API __declspec(dllimport)
50 #define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
51 #endif // if defined(_MSC_VER)
52 #endif // ifdef JSON_IN_CPPTL
53 #if !defined(JSON_API)
54 #define JSON_API
55 #endif
56 
57 // If JSON_NO_INT64 is defined, then Json only support C++ "int" type for
58 // integer
59 // Storages, and 64 bits integer support is disabled.
60 // #define JSON_NO_INT64 1
61 
62 #if defined(_MSC_VER) // MSVC
63 # if _MSC_VER <= 1200 // MSVC 6
64  // Microsoft Visual Studio 6 only support conversion from __int64 to double
65  // (no conversion from unsigned __int64).
66 # define JSON_USE_INT64_DOUBLE_CONVERSION 1
67  // Disable warning 4786 for VS6 caused by STL (identifier was truncated to '255'
68  // characters in the debug information)
69  // All projects I've ever seen with VS6 were using this globally (not bothering
70  // with pragma push/pop).
71 # pragma warning(disable : 4786)
72 # endif // MSVC 6
73 
74 # if _MSC_VER >= 1500 // MSVC 2008
75 # define JSONCPP_DEPRECATED(message) __declspec(deprecated(message))
77 # endif
78 
79 #endif // defined(_MSC_VER)
80 
81 // In c++11 the override keyword allows you to explicity define that a function
82 // is intended to override the base-class version. This makes the code more
83 // managable and fixes a set of common hard-to-find bugs.
84 #if __cplusplus >= 201103L
85 # define JSONCPP_OVERRIDE override
86 # define JSONCPP_NOEXCEPT noexcept
87 #elif defined(_MSC_VER) && _MSC_VER > 1600 && _MSC_VER < 1900
88 # define JSONCPP_OVERRIDE override
89 # define JSONCPP_NOEXCEPT throw()
90 #elif defined(_MSC_VER) && _MSC_VER >= 1900
91 # define JSONCPP_OVERRIDE override
92 # define JSONCPP_NOEXCEPT noexcept
93 #else
94 # define JSONCPP_OVERRIDE
95 # define JSONCPP_NOEXCEPT throw()
96 #endif
97 
98 #ifndef JSON_HAS_RVALUE_REFERENCES
99 
100 #if defined(_MSC_VER) && _MSC_VER >= 1600 // MSVC >= 2010
101 #define JSON_HAS_RVALUE_REFERENCES 1
102 #endif // MSVC >= 2010
103 
104 #ifdef __clang__
105 #if __has_feature(cxx_rvalue_references)
106 #define JSON_HAS_RVALUE_REFERENCES 1
107 #endif // has_feature
108 
109 #elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc)
110 #if defined(__GXX_EXPERIMENTAL_CXX0X__) || (__cplusplus >= 201103L)
111 #define JSON_HAS_RVALUE_REFERENCES 1
112 #endif // GXX_EXPERIMENTAL
113 
114 #endif // __clang__ || __GNUC__
115 
116 #endif // not defined JSON_HAS_RVALUE_REFERENCES
117 
118 #ifndef JSON_HAS_RVALUE_REFERENCES
119 #define JSON_HAS_RVALUE_REFERENCES 0
120 #endif
121 
122 #ifdef __clang__
123 #elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc)
124 # if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
125 # define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message)))
126 # elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
127 # define JSONCPP_DEPRECATED(message) __attribute__((__deprecated__))
128 # endif // GNUC version
129 #endif // __clang__ || __GNUC__
130 
131 #if !defined(JSONCPP_DEPRECATED)
132 #define JSONCPP_DEPRECATED(message)
133 #endif // if !defined(JSONCPP_DEPRECATED)
134 
135 #if __GNUC__ >= 6
136 # define JSON_USE_INT64_DOUBLE_CONVERSION 1
137 #endif
138 
139 #if !defined(JSON_IS_AMALGAMATION)
140 
141 # include "version.h"
142 
143 # if JSONCPP_USING_SECURE_MEMORY
144 # include "allocator.h" //typedef Allocator
145 # endif
146 
147 #endif // if !defined(JSON_IS_AMALGAMATION)
148 
149 namespace Json {
150 typedef int Int;
151 typedef unsigned int UInt;
152 #if defined(JSON_NO_INT64)
153 typedef int LargestInt;
154 typedef unsigned int LargestUInt;
155 #undef JSON_HAS_INT64
156 #else // if defined(JSON_NO_INT64)
157 // For Microsoft Visual use specific types as long long is not supported
158 #if defined(_MSC_VER) // Microsoft Visual Studio
159 typedef __int64 Int64;
160 typedef unsigned __int64 UInt64;
161 #else // if defined(_MSC_VER) // Other platforms, use long long
162 typedef int64_t Int64;
163 typedef uint64_t UInt64;
164 #endif // if defined(_MSC_VER)
165 typedef Int64 LargestInt;
166 typedef UInt64 LargestUInt;
167 #define JSON_HAS_INT64
168 #endif // if defined(JSON_NO_INT64)
169 #if JSONCPP_USING_SECURE_MEMORY
170 #define JSONCPP_STRING std::basic_string<char, std::char_traits<char>, Json::SecureAllocator<char> >
171 #define JSONCPP_OSTRINGSTREAM std::basic_ostringstream<char, std::char_traits<char>, Json::SecureAllocator<char> >
172 #define JSONCPP_OSTREAM std::basic_ostream<char, std::char_traits<char>>
173 #define JSONCPP_ISTRINGSTREAM std::basic_istringstream<char, std::char_traits<char>, Json::SecureAllocator<char> >
174 #define JSONCPP_ISTREAM std::istream
175 #else
176 #define JSONCPP_STRING std::string
177 #define JSONCPP_OSTRINGSTREAM std::ostringstream
178 #define JSONCPP_OSTREAM std::ostream
179 #define JSONCPP_ISTRINGSTREAM std::istringstream
180 #define JSONCPP_ISTREAM std::istream
181 #endif // if JSONCPP_USING_SECURE_MEMORY
182 } // end namespace Json
183 
184 #endif // JSON_CONFIG_H_INCLUDED
Int64 LargestInt
Definition: config.h:165
unsigned __int64 UInt64
Definition: config.h:160
UInt64 LargestUInt
Definition: config.h:166
JSON (JavaScript Object Notation).
Definition: allocator.h:14
unsigned int UInt
Definition: config.h:151
__int64 Int64
Definition: config.h:159
int Int
Definition: config.h:150