README.md
1[](https://github.com/nlohmann/json/releases)
2
3[](https://travis-ci.org/nlohmann/json)
4[](https://ci.appveyor.com/project/nlohmann/json)
5[](https://circleci.com/gh/nlohmann/json)
6[](https://coveralls.io/r/nlohmann/json)
7[](https://scan.coverity.com/projects/nlohmann-json)
8[](https://www.codacy.com/app/nlohmann/json?utm_source=github.com&utm_medium=referral&utm_content=nlohmann/json&utm_campaign=Badge_Grade)
9[](https://lgtm.com/projects/g/nlohmann/json/context:cpp)
10[](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:json)
11[](https://wandbox.org/permlink/TarF5pPn9NtHQjhf)
12[](http://nlohmann.github.io/json)
13[](https://raw.githubusercontent.com/nlohmann/json/master/LICENSE.MIT)
14[](https://github.com/nlohmann/json/releases)
15[](http://github.com/nlohmann/json/issues)
16[](http://isitmaintained.com/project/nlohmann/json "Average time to resolve an issue")
17[](https://bestpractices.coreinfrastructure.org/projects/289)
18
19- [Design goals](#design-goals)
20- [Integration](#integration)
21 - [CMake](#cmake)
22 - [Package Managers](#package-managers)
23- [Examples](#examples)
24 - [JSON as first-class data type](#json-as-first-class-data-type)
25 - [Serialization / Deserialization](#serialization--deserialization)
26 - [STL-like access](#stl-like-access)
27 - [Conversion from STL containers](#conversion-from-stl-containers)
28 - [JSON Pointer and JSON Patch](#json-pointer-and-json-patch)
29 - [JSON Merge Patch](#json-merge-patch)
30 - [Implicit conversions](#implicit-conversions)
31 - [Conversions to/from arbitrary types](#arbitrary-types-conversions)
32 - [Specializing enum conversion](#specializing-enum-conversion)
33 - [Binary formats (BSON, CBOR, MessagePack, and UBJSON)](#binary-formats-bson-cbor-messagepack-and-ubjson)
34- [Supported compilers](#supported-compilers)
35- [License](#license)
36- [Contact](#contact)
37- [Thanks](#thanks)
38- [Used third-party tools](#used-third-party-tools)
39- [Projects using JSON for Modern C++](#projects-using-json-for-modern-c)
40- [Notes](#notes)
41- [Execute unit tests](#execute-unit-tests)
42
43## Design goals
44
45There are myriads of [JSON](http://json.org) libraries out there, and each may even have its reason to exist. Our class had these design goals:
46
47- **Intuitive syntax**. In languages such as Python, JSON feels like a first class data type. We used all the operator magic of modern C++ to achieve the same feeling in your code. Check out the [examples below](#examples) and you'll know what I mean.
48
49- **Trivial integration**. Our whole code consists of a single header file [`json.hpp`](https://github.com/nlohmann/json/blob/develop/single_include/nlohmann/json.hpp). That's it. No library, no subproject, no dependencies, no complex build system. The class is written in vanilla C++11. All in all, everything should require no adjustment of your compiler flags or project settings.
50
51- **Serious testing**. Our class is heavily [unit-tested](https://github.com/nlohmann/json/tree/develop/test/src) and covers [100%](https://coveralls.io/r/nlohmann/json) of the code, including all exceptional behavior. Furthermore, we checked with [Valgrind](http://valgrind.org) and the [Clang Sanitizers](https://clang.llvm.org/docs/index.html) that there are no memory leaks. [Google OSS-Fuzz](https://github.com/google/oss-fuzz/tree/master/projects/json) additionally runs fuzz tests against all parsers 24/7, effectively executing billions of tests so far. To maintain high quality, the project is following the [Core Infrastructure Initiative (CII) best practices](https://bestpractices.coreinfrastructure.org/projects/289).
52
53Other aspects were not so important to us:
54
55- **Memory efficiency**. Each JSON object has an overhead of one pointer (the maximal size of a union) and one enumeration element (1 byte). The default generalization uses the following C++ data types: `std::string` for strings, `int64_t`, `uint64_t` or `double` for numbers, `std::map` for objects, `std::vector` for arrays, and `bool` for Booleans. However, you can template the generalized class `basic_json` to your needs.
56
57- **Speed**. There are certainly [faster JSON libraries](https://github.com/miloyip/nativejson-benchmark#parsing-time) out there. However, if your goal is to speed up your development by adding JSON support with a single header, then this library is the way to go. If you know how to use a `std::vector` or `std::map`, you are already set.
58
59See the [contribution guidelines](https://github.com/nlohmann/json/blob/master/.github/CONTRIBUTING.md#please-dont) for more information.
60
61
62## Integration
63
64[`json.hpp`](https://github.com/nlohmann/json/blob/develop/single_include/nlohmann/json.hpp) is the single required file in `single_include/nlohmann` or [released here](https://github.com/nlohmann/json/releases). You need to add
65
66```cpp
67#include <nlohmann/json.hpp>
68
69// for convenience
70using json = nlohmann::json;
71```
72
73to the files you want to process JSON and set the necessary switches to enable C++11 (e.g., `-std=c++11` for GCC and Clang).
74
75You can further use file [`include/nlohmann/json_fwd.hpp`](https://github.com/nlohmann/json/blob/develop/include/nlohmann/json_fwd.hpp) for forward-declarations. The installation of json_fwd.hpp (as part of cmake's install step), can be achieved by setting `-DJSON_MultipleHeaders=ON`.
76
77### CMake
78
79You can also use the `nlohmann_json::nlohmann_json` interface target in CMake. This target populates the appropriate usage requirements for `INTERFACE_INCLUDE_DIRECTORIES` to point to the appropriate include directories and `INTERFACE_COMPILE_FEATURES` for the necessary C++11 flags.
80
81#### External
82
83To use this library from a CMake project, you can locate it directly with `find_package()` and use the namespaced imported target from the generated package configuration:
84
85```cmake
86# CMakeLists.txt
87find_package(nlohmann_json 3.2.0 REQUIRED)
88...
89add_library(foo ...)
90...
91target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
92```
93
94The package configuration file, `nlohmann_jsonConfig.cmake`, can be used either from an install tree or directly out of the build tree.
95
96#### Embedded
97
98To embed the library directly into an existing CMake project, place the entire source tree in a subdirectory and call `add_subdirectory()` in your `CMakeLists.txt` file:
99
100```cmake
101# Typically you don't care so much for a third party library's tests to be
102# run from your own project's code.
103set(JSON_BuildTests OFF CACHE INTERNAL "")
104
105# If you only include this third party in PRIVATE source files, you do not
106# need to install it when your main project gets installed.
107# set(JSON_Install OFF CACHE INTERNAL "")
108
109# Don't use include(nlohmann_json/CMakeLists.txt) since that carries with it
110# unintended consequences that will break the build. It's generally
111# discouraged (although not necessarily well documented as such) to use
112# include(...) for pulling in other CMake projects anyways.
113add_subdirectory(nlohmann_json)
114...
115add_library(foo ...)
116...
117target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
118```
119
120#### Supporting Both
121
122To allow your project to support either an externally supplied or an embedded JSON library, you can use a pattern akin to the following:
123
124``` cmake
125# Top level CMakeLists.txt
126project(FOO)
127...
128option(FOO_USE_EXTERNAL_JSON "Use an external JSON library" OFF)
129...
130add_subdirectory(thirdparty)
131...
132add_library(foo ...)
133...
134# Note that the namespaced target will always be available regardless of the
135# import method
136target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
137```
138```cmake
139# thirdparty/CMakeLists.txt
140...
141if(FOO_USE_EXTERNAL_JSON)
142 find_package(nlohmann_json 3.2.0 REQUIRED)
143else()
144 set(JSON_BuildTests OFF CACHE INTERNAL "")
145 add_subdirectory(nlohmann_json)
146endif()
147...
148```
149
150`thirdparty/nlohmann_json` is then a complete copy of this source tree.
151
152### Package Managers
153
154:beer: If you are using OS X and [Homebrew](http://brew.sh), just type `brew tap nlohmann/json` and `brew install nlohmann-json` and you're set. If you want the bleeding edge rather than the latest release, use `brew install nlohmann-json --HEAD`.
155
156If you are using the [Meson Build System](http://mesonbuild.com), add this source tree as a [meson subproject](https://mesonbuild.com/Subprojects.html#using-a-subproject). You may also use the `include.zip` published in this project's [Releases](https://github.com/nlohmann/json/releases) to reduce the size of the vendored source tree. Alternatively, you can get a wrap file by downloading it from [Meson WrapDB](https://wrapdb.mesonbuild.com/nlohmann_json), or simply use `meson wrap install nlohmann_json`. Please see the meson project for any issues regarding the packaging.
157
158The provided meson.build can also be used as an alternative to cmake for installing `nlohmann_json` system-wide in which case a pkg-config file is installed. To use it, simply have your build system require the `nlohmann_json` pkg-config dependency. In Meson, it is preferred to use the [`dependency()`](https://mesonbuild.com/Reference-manual.html#dependency) object with a subproject fallback, rather than using the subproject directly.
159
160If you are using [Conan](https://www.conan.io/) to manage your dependencies, merely add `jsonformoderncpp/x.y.z@vthiery/stable` to your `conanfile.py`'s requires, where `x.y.z` is the release version you want to use. Please file issues [here](https://github.com/vthiery/conan-jsonformoderncpp/issues) if you experience problems with the packages.
161
162If you are using [Spack](https://www.spack.io/) to manage your dependencies, you can use the [`nlohmann-json` package](https://spack.readthedocs.io/en/latest/package_list.html#nlohmann-json). Please see the [spack project](https://github.com/spack/spack) for any issues regarding the packaging.
163
164If you are using [hunter](https://github.com/ruslo/hunter/) on your project for external dependencies, then you can use the [nlohmann_json package](https://docs.hunter.sh/en/latest/packages/pkg/nlohmann_json.html). Please see the hunter project for any issues regarding the packaging.
165
166If you are using [Buckaroo](https://buckaroo.pm), you can install this library's module with `buckaroo add github.com/buckaroo-pm/nlohmann-json`. Please file issues [here](https://github.com/buckaroo-pm/nlohmann-json). There is a demo repo [here](https://github.com/njlr/buckaroo-nholmann-json-example).
167
168If you are using [vcpkg](https://github.com/Microsoft/vcpkg/) on your project for external dependencies, then you can use the [nlohmann-json package](https://github.com/Microsoft/vcpkg/tree/master/ports/nlohmann-json). Please see the vcpkg project for any issues regarding the packaging.
169
170If you are using [cget](http://cget.readthedocs.io/en/latest/), you can install the latest development version with `cget install nlohmann/json`. A specific version can be installed with `cget install nlohmann/json@v3.1.0`. Also, the multiple header version can be installed by adding the `-DJSON_MultipleHeaders=ON` flag (i.e., `cget install nlohmann/json -DJSON_MultipleHeaders=ON`).
171
172If you are using [CocoaPods](https://cocoapods.org), you can use the library by adding pod `"nlohmann_json", '~>3.1.2'` to your podfile (see [an example](https://bitbucket.org/benman/nlohmann_json-cocoapod/src/master/)). Please file issues [here](https://bitbucket.org/benman/nlohmann_json-cocoapod/issues?status=new&status=open).
173
174If you are using [NuGet](https://www.nuget.org), you can use the package [nlohmann.json](https://www.nuget.org/packages/nlohmann.json/). Please check [this extensive description](https://github.com/nlohmann/json/issues/1132#issuecomment-452250255) on how to use the package. Please files issues [here](https://github.com/hnkb/nlohmann-json-nuget/issues).
175
176If you are using [conda](https://conda.io/), you can use the package [nlohmann_json](https://github.com/conda-forge/nlohmann_json-feedstock) from [conda-forge](https://conda-forge.org) executing `conda install -c conda-forge nlohmann_json`. Please file issues [here](https://github.com/conda-forge/nlohmann_json-feedstock/issues).
177
178If you are using [MSYS2](http://www.msys2.org/), your can use the [mingw-w64-nlohmann_json](https://packages.msys2.org/base/mingw-w64-nlohmann_json) package, just type `pacman -S mingw-w64-i686-nlohmann_json` or `pacman -S mingw-w64-x86_64-nlohmann_json` for installation. Please file issues [here](https://github.com/msys2/MINGW-packages/issues/new?title=%5Bnlohmann_json%5D) if you experience problems with the packages.
179
180## Examples
181
182Beside the examples below, you may want to check the [documentation](https://nlohmann.github.io/json/) where each function contains a separate code example (e.g., check out [`emplace()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a5338e282d1d02bed389d852dd670d98d.html#a5338e282d1d02bed389d852dd670d98d)). All [example files](https://github.com/nlohmann/json/tree/develop/doc/examples) can be compiled and executed on their own (e.g., file [emplace.cpp](https://github.com/nlohmann/json/blob/develop/doc/examples/emplace.cpp)).
183
184### JSON as first-class data type
185
186Here are some examples to give you an idea how to use the class.
187
188Assume you want to create the JSON object
189
190```json
191{
192 "pi": 3.141,
193 "happy": true,
194 "name": "Niels",
195 "nothing": null,
196 "answer": {
197 "everything": 42
198 },
199 "list": [1, 0, 2],
200 "object": {
201 "currency": "USD",
202 "value": 42.99
203 }
204}
205```
206
207With this library, you could write:
208
209```cpp
210// create an empty structure (null)
211json j;
212
213// add a number that is stored as double (note the implicit conversion of j to an object)
214j["pi"] = 3.141;
215
216// add a Boolean that is stored as bool
217j["happy"] = true;
218
219// add a string that is stored as std::string
220j["name"] = "Niels";
221
222// add another null object by passing nullptr
223j["nothing"] = nullptr;
224
225// add an object inside the object
226j["answer"]["everything"] = 42;
227
228// add an array that is stored as std::vector (using an initializer list)
229j["list"] = { 1, 0, 2 };
230
231// add another object (using an initializer list of pairs)
232j["object"] = { {"currency", "USD"}, {"value", 42.99} };
233
234// instead, you could also write (which looks very similar to the JSON above)
235json j2 = {
236 {"pi", 3.141},
237 {"happy", true},
238 {"name", "Niels"},
239 {"nothing", nullptr},
240 {"answer", {
241 {"everything", 42}
242 }},
243 {"list", {1, 0, 2}},
244 {"object", {
245 {"currency", "USD"},
246 {"value", 42.99}
247 }}
248};
249```
250
251Note that in all these cases, you never need to "tell" the compiler which JSON value type you want to use. If you want to be explicit or express some edge cases, the functions [`json::array()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a9ad7ec0bc1082ed09d10900fbb20a21f.html#a9ad7ec0bc1082ed09d10900fbb20a21f) and [`json::object()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_aaf509a7c029100d292187068f61c99b8.html#aaf509a7c029100d292187068f61c99b8) will help:
252
253```cpp
254// a way to express the empty array []
255json empty_array_explicit = json::array();
256
257// ways to express the empty object {}
258json empty_object_implicit = json({});
259json empty_object_explicit = json::object();
260
261// a way to express an _array_ of key/value pairs [["currency", "USD"], ["value", 42.99]]
262json array_not_object = json::array({ {"currency", "USD"}, {"value", 42.99} });
263```
264
265### Serialization / Deserialization
266
267#### To/from strings
268
269You can create a JSON value (deserialization) by appending `_json` to a string literal:
270
271```cpp
272// create object from string literal
273json j = "{ \"happy\": true, \"pi\": 3.141 }"_json;
274
275// or even nicer with a raw string literal
276auto j2 = R"(
277 {
278 "happy": true,
279 "pi": 3.141
280 }
281)"_json;
282```
283
284Note that without appending the `_json` suffix, the passed string literal is not parsed, but just used as JSON string value. That is, `json j = "{ \"happy\": true, \"pi\": 3.141 }"` would just store the string `"{ "happy": true, "pi": 3.141 }"` rather than parsing the actual object.
285
286The above example can also be expressed explicitly using [`json::parse()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_afd4ef1ac8ad50a5894a9afebca69140a.html#afd4ef1ac8ad50a5894a9afebca69140a):
287
288```cpp
289// parse explicitly
290auto j3 = json::parse("{ \"happy\": true, \"pi\": 3.141 }");
291```
292
293You can also get a string representation of a JSON value (serialize):
294
295```cpp
296// explicit conversion to string
297std::string s = j.dump(); // {\"happy\":true,\"pi\":3.141}
298
299// serialization with pretty printing
300// pass in the amount of spaces to indent
301std::cout << j.dump(4) << std::endl;
302// {
303// "happy": true,
304// "pi": 3.141
305// }
306```
307
308Note the difference between serialization and assignment:
309
310```cpp
311// store a string in a JSON value
312json j_string = "this is a string";
313
314// retrieve the string value
315auto cpp_string = j_string.get<std::string>();
316// retrieve the string value (alternative when an variable already exists)
317std::string cpp_string2;
318j_string.get_to(cpp_string2);
319
320// retrieve the serialized value (explicit JSON serialization)
321std::string serialized_string = j_string.dump();
322
323// output of original string
324std::cout << cpp_string << " == " << cpp_string2 << " == " << j_string.get<std::string>() << '\n';
325// output of serialized value
326std::cout << j_string << " == " << serialized_string << std::endl;
327```
328
329[`.dump()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a50ec80b02d0f3f51130d4abb5d1cfdc5.html#a50ec80b02d0f3f51130d4abb5d1cfdc5) always returns the serialized value, and [`.get<std::string>()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_aa6602bb24022183ab989439e19345d08.html#aa6602bb24022183ab989439e19345d08) returns the originally stored string value.
330
331Note the library only supports UTF-8. When you store strings with different encodings in the library, calling [`dump()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a50ec80b02d0f3f51130d4abb5d1cfdc5.html#a50ec80b02d0f3f51130d4abb5d1cfdc5) may throw an exception unless `json::error_handler_t::replace` or `json::error_handler_t::ignore` are used as error handlers.
332
333#### To/from streams (e.g. files, string streams)
334
335You can also use streams to serialize and deserialize:
336
337```cpp
338// deserialize from standard input
339json j;
340std::cin >> j;
341
342// serialize to standard output
343std::cout << j;
344
345// the setw manipulator was overloaded to set the indentation for pretty printing
346std::cout << std::setw(4) << j << std::endl;
347```
348
349These operators work for any subclasses of `std::istream` or `std::ostream`. Here is the same example with files:
350
351```cpp
352// read a JSON file
353std::ifstream i("file.json");
354json j;
355i >> j;
356
357// write prettified JSON to another file
358std::ofstream o("pretty.json");
359o << std::setw(4) << j << std::endl;
360```
361
362Please note that setting the exception bit for `failbit` is inappropriate for this use case. It will result in program termination due to the `noexcept` specifier in use.
363
364#### Read from iterator range
365
366You can also parse JSON from an iterator range; that is, from any container accessible by iterators whose content is stored as contiguous byte sequence, for instance a `std::vector<std::uint8_t>`:
367
368```cpp
369std::vector<std::uint8_t> v = {'t', 'r', 'u', 'e'};
370json j = json::parse(v.begin(), v.end());
371```
372
373You may leave the iterators for the range [begin, end):
374
375```cpp
376std::vector<std::uint8_t> v = {'t', 'r', 'u', 'e'};
377json j = json::parse(v);
378```
379
380#### SAX interface
381
382The library uses a SAX-like interface with the following functions:
383
384```cpp
385// called when null is parsed
386bool null();
387
388// called when a boolean is parsed; value is passed
389bool boolean(bool val);
390
391// called when a signed or unsigned integer number is parsed; value is passed
392bool number_integer(number_integer_t val);
393bool number_unsigned(number_unsigned_t val);
394
395// called when a floating-point number is parsed; value and original string is passed
396bool number_float(number_float_t val, const string_t& s);
397
398// called when a string is parsed; value is passed and can be safely moved away
399bool string(string_t& val);
400
401// called when an object or array begins or ends, resp. The number of elements is passed (or -1 if not known)
402bool start_object(std::size_t elements);
403bool end_object();
404bool start_array(std::size_t elements);
405bool end_array();
406// called when an object key is parsed; value is passed and can be safely moved away
407bool key(string_t& val);
408
409// called when a parse error occurs; byte position, the last token, and an exception is passed
410bool parse_error(std::size_t position, const std::string& last_token, const detail::exception& ex);
411```
412
413The return value of each function determines whether parsing should proceed.
414
415To implement your own SAX handler, proceed as follows:
416
4171. Implement the SAX interface in a class. You can use class `nlohmann::json_sax<json>` as base class, but you can also use any class where the functions described above are implemented and public.
4182. Create an object of your SAX interface class, e.g. `my_sax`.
4193. Call `bool json::sax_parse(input, &my_sax)`; where the first parameter can be any input like a string or an input stream and the second parameter is a pointer to your SAX interface.
420
421Note the `sax_parse` function only returns a `bool` indicating the result of the last executed SAX event. It does not return a `json` value - it is up to you to decide what to do with the SAX events. Furthermore, no exceptions are thrown in case of a parse error - it is up to you what to do with the exception object passed to your `parse_error` implementation. Internally, the SAX interface is used for the DOM parser (class `json_sax_dom_parser`) as well as the acceptor (`json_sax_acceptor`), see file [`json_sax.hpp`](https://github.com/nlohmann/json/blob/develop/include/nlohmann/detail/input/json_sax.hpp).
422
423### STL-like access
424
425We designed the JSON class to behave just like an STL container. In fact, it satisfies the [**ReversibleContainer**](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) requirement.
426
427```cpp
428// create an array using push_back
429json j;
430j.push_back("foo");
431j.push_back(1);
432j.push_back(true);
433
434// also use emplace_back
435j.emplace_back(1.78);
436
437// iterate the array
438for (json::iterator it = j.begin(); it != j.end(); ++it) {
439 std::cout << *it << '\n';
440}
441
442// range-based for
443for (auto& element : j) {
444 std::cout << element << '\n';
445}
446
447// getter/setter
448const auto tmp = j[0].get<std::string>();
449j[1] = 42;
450bool foo = j.at(2);
451
452// comparison
453j == "[\"foo\", 1, true]"_json; // true
454
455// other stuff
456j.size(); // 3 entries
457j.empty(); // false
458j.type(); // json::value_t::array
459j.clear(); // the array is empty again
460
461// convenience type checkers
462j.is_null();
463j.is_boolean();
464j.is_number();
465j.is_object();
466j.is_array();
467j.is_string();
468
469// create an object
470json o;
471o["foo"] = 23;
472o["bar"] = false;
473o["baz"] = 3.141;
474
475// also use emplace
476o.emplace("weather", "sunny");
477
478// special iterator member functions for objects
479for (json::iterator it = o.begin(); it != o.end(); ++it) {
480 std::cout << it.key() << " : " << it.value() << "\n";
481}
482
483// the same code as range for
484for (auto& el : o.items()) {
485 std::cout << el.key() << " : " << el.value() << "\n";
486}
487
488// even easier with structured bindings (C++17)
489for (auto& [key, value] : o.items()) {
490 std::cout << key << " : " << value << "\n";
491}
492
493// find an entry
494if (o.find("foo") != o.end()) {
495 // there is an entry with key "foo"
496}
497
498// or simpler using count()
499int foo_present = o.count("foo"); // 1
500int fob_present = o.count("fob"); // 0
501
502// delete an entry
503o.erase("foo");
504```
505
506
507### Conversion from STL containers
508
509Any sequence container (`std::array`, `std::vector`, `std::deque`, `std::forward_list`, `std::list`) whose values can be used to construct JSON values (e.g., integers, floating point numbers, Booleans, string types, or again STL containers described in this section) can be used to create a JSON array. The same holds for similar associative containers (`std::set`, `std::multiset`, `std::unordered_set`, `std::unordered_multiset`), but in these cases the order of the elements of the array depends on how the elements are ordered in the respective STL container.
510
511```cpp
512std::vector<int> c_vector {1, 2, 3, 4};
513json j_vec(c_vector);
514// [1, 2, 3, 4]
515
516std::deque<double> c_deque {1.2, 2.3, 3.4, 5.6};
517json j_deque(c_deque);
518// [1.2, 2.3, 3.4, 5.6]
519
520std::list<bool> c_list {true, true, false, true};
521json j_list(c_list);
522// [true, true, false, true]
523
524std::forward_list<int64_t> c_flist {12345678909876, 23456789098765, 34567890987654, 45678909876543};
525json j_flist(c_flist);
526// [12345678909876, 23456789098765, 34567890987654, 45678909876543]
527
528std::array<unsigned long, 4> c_array {{1, 2, 3, 4}};
529json j_array(c_array);
530// [1, 2, 3, 4]
531
532std::set<std::string> c_set {"one", "two", "three", "four", "one"};
533json j_set(c_set); // only one entry for "one" is used
534// ["four", "one", "three", "two"]
535
536std::unordered_set<std::string> c_uset {"one", "two", "three", "four", "one"};
537json j_uset(c_uset); // only one entry for "one" is used
538// maybe ["two", "three", "four", "one"]
539
540std::multiset<std::string> c_mset {"one", "two", "one", "four"};
541json j_mset(c_mset); // both entries for "one" are used
542// maybe ["one", "two", "one", "four"]
543
544std::unordered_multiset<std::string> c_umset {"one", "two", "one", "four"};
545json j_umset(c_umset); // both entries for "one" are used
546// maybe ["one", "two", "one", "four"]
547```
548
549Likewise, any associative key-value containers (`std::map`, `std::multimap`, `std::unordered_map`, `std::unordered_multimap`) whose keys can construct an `std::string` and whose values can be used to construct JSON values (see examples above) can be used to create a JSON object. Note that in case of multimaps only one key is used in the JSON object and the value depends on the internal order of the STL container.
550
551```cpp
552std::map<std::string, int> c_map { {"one", 1}, {"two", 2}, {"three", 3} };
553json j_map(c_map);
554// {"one": 1, "three": 3, "two": 2 }
555
556std::unordered_map<const char*, double> c_umap { {"one", 1.2}, {"two", 2.3}, {"three", 3.4} };
557json j_umap(c_umap);
558// {"one": 1.2, "two": 2.3, "three": 3.4}
559
560std::multimap<std::string, bool> c_mmap { {"one", true}, {"two", true}, {"three", false}, {"three", true} };
561json j_mmap(c_mmap); // only one entry for key "three" is used
562// maybe {"one": true, "two": true, "three": true}
563
564std::unordered_multimap<std::string, bool> c_ummap { {"one", true}, {"two", true}, {"three", false}, {"three", true} };
565json j_ummap(c_ummap); // only one entry for key "three" is used
566// maybe {"one": true, "two": true, "three": true}
567```
568
569### JSON Pointer and JSON Patch
570
571The library supports **JSON Pointer** ([RFC 6901](https://tools.ietf.org/html/rfc6901)) as alternative means to address structured values. On top of this, **JSON Patch** ([RFC 6902](https://tools.ietf.org/html/rfc6902)) allows to describe differences between two JSON values - effectively allowing patch and diff operations known from Unix.
572
573```cpp
574// a JSON value
575json j_original = R"({
576 "baz": ["one", "two", "three"],
577 "foo": "bar"
578})"_json;
579
580// access members with a JSON pointer (RFC 6901)
581j_original["/baz/1"_json_pointer];
582// "two"
583
584// a JSON patch (RFC 6902)
585json j_patch = R"([
586 { "op": "replace", "path": "/baz", "value": "boo" },
587 { "op": "add", "path": "/hello", "value": ["world"] },
588 { "op": "remove", "path": "/foo"}
589])"_json;
590
591// apply the patch
592json j_result = j_original.patch(j_patch);
593// {
594// "baz": "boo",
595// "hello": ["world"]
596// }
597
598// calculate a JSON patch from two JSON values
599json::diff(j_result, j_original);
600// [
601// { "op":" replace", "path": "/baz", "value": ["one", "two", "three"] },
602// { "op": "remove","path": "/hello" },
603// { "op": "add", "path": "/foo", "value": "bar" }
604// ]
605```
606
607### JSON Merge Patch
608
609The library supports **JSON Merge Patch** ([RFC 7386](https://tools.ietf.org/html/rfc7386)) as a patch format. Instead of using JSON Pointer (see above) to specify values to be manipulated, it describes the changes using a syntax that closely mimics the document being modified.
610
611```cpp
612// a JSON value
613json j_document = R"({
614 "a": "b",
615 "c": {
616 "d": "e",
617 "f": "g"
618 }
619})"_json;
620
621// a patch
622json j_patch = R"({
623 "a":"z",
624 "c": {
625 "f": null
626 }
627})"_json;
628
629// apply the patch
630j_document.merge_patch(j_patch);
631// {
632// "a": "z",
633// "c": {
634// "d": "e"
635// }
636// }
637```
638
639### Implicit conversions
640
641Supported types can be implicitly converted to JSON values.
642
643It is recommended to **NOT USE** implicit conversions **FROM** a JSON value.
644You can find more details about this recommendation [here](https://www.github.com/nlohmann/json/issues/958).
645
646```cpp
647// strings
648std::string s1 = "Hello, world!";
649json js = s1;
650auto s2 = js.get<std::string>();
651// NOT RECOMMENDED
652std::string s3 = js;
653std::string s4;
654s4 = js;
655
656// Booleans
657bool b1 = true;
658json jb = b1;
659auto b2 = jb.get<bool>();
660// NOT RECOMMENDED
661bool b3 = jb;
662bool b4;
663b4 = jb;
664
665// numbers
666int i = 42;
667json jn = i;
668auto f = jn.get<double>();
669// NOT RECOMMENDED
670double f2 = jb;
671double f3;
672f3 = jb;
673
674// etc.
675```
676
677Note that `char` types are not automatically converted to JSON strings, but to integer numbers. A conversion to a string must be specified explicitly:
678
679```cpp
680char ch = 'A'; // ASCII value 65
681json j_default = ch; // stores integer number 65
682json j_string = std::string(1, ch); // stores string "A"
683```
684
685### Arbitrary types conversions
686
687Every type can be serialized in JSON, not just STL containers and scalar types. Usually, you would do something along those lines:
688
689```cpp
690namespace ns {
691 // a simple struct to model a person
692 struct person {
693 std::string name;
694 std::string address;
695 int age;
696 };
697}
698
699ns::person p = {"Ned Flanders", "744 Evergreen Terrace", 60};
700
701// convert to JSON: copy each value into the JSON object
702json j;
703j["name"] = p.name;
704j["address"] = p.address;
705j["age"] = p.age;
706
707// ...
708
709// convert from JSON: copy each value from the JSON object
710ns::person p {
711 j["name"].get<std::string>(),
712 j["address"].get<std::string>(),
713 j["age"].get<int>()
714};
715```
716
717It works, but that's quite a lot of boilerplate... Fortunately, there's a better way:
718
719```cpp
720// create a person
721ns::person p {"Ned Flanders", "744 Evergreen Terrace", 60};
722
723// conversion: person -> json
724json j = p;
725
726std::cout << j << std::endl;
727// {"address":"744 Evergreen Terrace","age":60,"name":"Ned Flanders"}
728
729// conversion: json -> person
730auto p2 = j.get<ns::person>();
731
732// that's it
733assert(p == p2);
734```
735
736#### Basic usage
737
738To make this work with one of your types, you only need to provide two functions:
739
740```cpp
741using nlohmann::json;
742
743namespace ns {
744 void to_json(json& j, const person& p) {
745 j = json{{"name", p.name}, {"address", p.address}, {"age", p.age}};
746 }
747
748 void from_json(const json& j, person& p) {
749 j.at("name").get_to(p.name);
750 j.at("address").get_to(p.address);
751 j.at("age").get_to(p.age);
752 }
753} // namespace ns
754```
755
756That's all! When calling the `json` constructor with your type, your custom `to_json` method will be automatically called.
757Likewise, when calling `get<your_type>()` or `get_to(your_type&)`, the `from_json` method will be called.
758
759Some important things:
760
761* Those methods **MUST** be in your type's namespace (which can be the global namespace), or the library will not be able to locate them (in this example, they are in namespace `ns`, where `person` is defined).
762* Those methods **MUST** be available (e.g., proper headers must be included) everywhere you use these conversions. Look at [issue 1108](https://github.com/nlohmann/json/issues/1108) for errors that may occur otherwise.
763* When using `get<your_type>()`, `your_type` **MUST** be [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). (There is a way to bypass this requirement described later.)
764* In function `from_json`, use function [`at()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a93403e803947b86f4da2d1fb3345cf2c.html#a93403e803947b86f4da2d1fb3345cf2c) to access the object values rather than `operator[]`. In case a key does not exist, `at` throws an exception that you can handle, whereas `operator[]` exhibits undefined behavior.
765* You do not need to add serializers or deserializers for STL types like `std::vector`: the library already implements these.
766
767
768#### How do I convert third-party types?
769
770This requires a bit more advanced technique. But first, let's see how this conversion mechanism works:
771
772The library uses **JSON Serializers** to convert types to json.
773The default serializer for `nlohmann::json` is `nlohmann::adl_serializer` (ADL means [Argument-Dependent Lookup](https://en.cppreference.com/w/cpp/language/adl)).
774
775It is implemented like this (simplified):
776
777```cpp
778template <typename T>
779struct adl_serializer {
780 static void to_json(json& j, const T& value) {
781 // calls the "to_json" method in T's namespace
782 }
783
784 static void from_json(const json& j, T& value) {
785 // same thing, but with the "from_json" method
786 }
787};
788```
789
790This serializer works fine when you have control over the type's namespace. However, what about `boost::optional` or `std::filesystem::path` (C++17)? Hijacking the `boost` namespace is pretty bad, and it's illegal to add something other than template specializations to `std`...
791
792To solve this, you need to add a specialization of `adl_serializer` to the `nlohmann` namespace, here's an example:
793
794```cpp
795// partial specialization (full specialization works too)
796namespace nlohmann {
797 template <typename T>
798 struct adl_serializer<boost::optional<T>> {
799 static void to_json(json& j, const boost::optional<T>& opt) {
800 if (opt == boost::none) {
801 j = nullptr;
802 } else {
803 j = *opt; // this will call adl_serializer<T>::to_json which will
804 // find the free function to_json in T's namespace!
805 }
806 }
807
808 static void from_json(const json& j, boost::optional<T>& opt) {
809 if (j.is_null()) {
810 opt = boost::none;
811 } else {
812 opt = j.get<T>(); // same as above, but with
813 // adl_serializer<T>::from_json
814 }
815 }
816 };
817}
818```
819
820#### How can I use `get()` for non-default constructible/non-copyable types?
821
822There is a way, if your type is [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible). You will need to specialize the `adl_serializer` as well, but with a special `from_json` overload:
823
824```cpp
825struct move_only_type {
826 move_only_type() = delete;
827 move_only_type(int ii): i(ii) {}
828 move_only_type(const move_only_type&) = delete;
829 move_only_type(move_only_type&&) = default;
830
831 int i;
832};
833
834namespace nlohmann {
835 template <>
836 struct adl_serializer<move_only_type> {
837 // note: the return type is no longer 'void', and the method only takes
838 // one argument
839 static move_only_type from_json(const json& j) {
840 return {j.get<int>()};
841 }
842
843 // Here's the catch! You must provide a to_json method! Otherwise you
844 // will not be able to convert move_only_type to json, since you fully
845 // specialized adl_serializer on that type
846 static void to_json(json& j, move_only_type t) {
847 j = t.i;
848 }
849 };
850}
851```
852
853#### Can I write my own serializer? (Advanced use)
854
855Yes. You might want to take a look at [`unit-udt.cpp`](https://github.com/nlohmann/json/blob/develop/test/src/unit-udt.cpp) in the test suite, to see a few examples.
856
857If you write your own serializer, you'll need to do a few things:
858
859- use a different `basic_json` alias than `nlohmann::json` (the last template parameter of `basic_json` is the `JSONSerializer`)
860- use your `basic_json` alias (or a template parameter) in all your `to_json`/`from_json` methods
861- use `nlohmann::to_json` and `nlohmann::from_json` when you need ADL
862
863Here is an example, without simplifications, that only accepts types with a size <= 32, and uses ADL.
864
865```cpp
866// You should use void as a second template argument
867// if you don't need compile-time checks on T
868template<typename T, typename SFINAE = typename std::enable_if<sizeof(T) <= 32>::type>
869struct less_than_32_serializer {
870 template <typename BasicJsonType>
871 static void to_json(BasicJsonType& j, T value) {
872 // we want to use ADL, and call the correct to_json overload
873 using nlohmann::to_json; // this method is called by adl_serializer,
874 // this is where the magic happens
875 to_json(j, value);
876 }
877
878 template <typename BasicJsonType>
879 static void from_json(const BasicJsonType& j, T& value) {
880 // same thing here
881 using nlohmann::from_json;
882 from_json(j, value);
883 }
884};
885```
886
887Be **very** careful when reimplementing your serializer, you can stack overflow if you don't pay attention:
888
889```cpp
890template <typename T, void>
891struct bad_serializer
892{
893 template <typename BasicJsonType>
894 static void to_json(BasicJsonType& j, const T& value) {
895 // this calls BasicJsonType::json_serializer<T>::to_json(j, value);
896 // if BasicJsonType::json_serializer == bad_serializer ... oops!
897 j = value;
898 }
899
900 template <typename BasicJsonType>
901 static void to_json(const BasicJsonType& j, T& value) {
902 // this calls BasicJsonType::json_serializer<T>::from_json(j, value);
903 // if BasicJsonType::json_serializer == bad_serializer ... oops!
904 value = j.template get<T>(); // oops!
905 }
906};
907```
908
909### Specializing enum conversion
910
911By default, enum values are serialized to JSON as integers. In some cases this could result in undesired behavior. If an enum is modified or re-ordered after data has been serialized to JSON, the later de-serialized JSON data may be undefined or a different enum value than was originally intended.
912
913It is possible to more precisely specify how a given enum is mapped to and from JSON as shown below:
914
915```cpp
916// example enum type declaration
917enum TaskState {
918 TS_STOPPED,
919 TS_RUNNING,
920 TS_COMPLETED,
921 TS_INVALID=-1,
922};
923
924// map TaskState values to JSON as strings
925NLOHMANN_JSON_SERIALIZE_ENUM( TaskState, {
926 {TS_INVALID, nullptr},
927 {TS_STOPPED, "stopped"},
928 {TS_RUNNING, "running"},
929 {TS_COMPLETED, "completed"},
930})
931```
932
933The `NLOHMANN_JSON_SERIALIZE_ENUM()` macro declares a set of `to_json()` / `from_json()` functions for type `TaskState` while avoiding repetition and boilerplate serialization code.
934
935**Usage:**
936
937```cpp
938// enum to JSON as string
939json j = TS_STOPPED;
940assert(j == "stopped");
941
942// json string to enum
943json j3 = "running";
944assert(j3.get<TaskState>() == TS_RUNNING);
945
946// undefined json value to enum (where the first map entry above is the default)
947json jPi = 3.14;
948assert(jPi.get<TaskState>() == TS_INVALID );
949```
950
951Just as in [Arbitrary Type Conversions](#arbitrary-types-conversions) above,
952- `NLOHMANN_JSON_SERIALIZE_ENUM()` MUST be declared in your enum type's namespace (which can be the global namespace), or the library will not be able to locate it and it will default to integer serialization.
953- It MUST be available (e.g., proper headers must be included) everywhere you use the conversions.
954
955Other Important points:
956- When using `get<ENUM_TYPE>()`, undefined JSON values will default to the first pair specified in your map. Select this default pair carefully.
957- If an enum or JSON value is specified more than once in your map, the first matching occurrence from the top of the map will be returned when converting to or from JSON.
958
959### Binary formats (BSON, CBOR, MessagePack, and UBJSON)
960
961Though JSON is a ubiquitous data format, it is not a very compact format suitable for data exchange, for instance over a network. Hence, the library supports [BSON](http://bsonspec.org) (Binary JSON), [CBOR](http://cbor.io) (Concise Binary Object Representation), [MessagePack](http://msgpack.org), and [UBJSON](http://ubjson.org) (Universal Binary JSON Specification) to efficiently encode JSON values to byte vectors and to decode such vectors.
962
963```cpp
964// create a JSON value
965json j = R"({"compact": true, "schema": 0})"_json;
966
967// serialize to BSON
968std::vector<std::uint8_t> v_bson = json::to_bson(j);
969
970// 0x1B, 0x00, 0x00, 0x00, 0x08, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x00, 0x01, 0x10, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
971
972// roundtrip
973json j_from_bson = json::from_bson(v_bson);
974
975// serialize to CBOR
976std::vector<std::uint8_t> v_cbor = json::to_cbor(j);
977
978// 0xA2, 0x67, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0xF5, 0x66, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00
979
980// roundtrip
981json j_from_cbor = json::from_cbor(v_cbor);
982
983// serialize to MessagePack
984std::vector<std::uint8_t> v_msgpack = json::to_msgpack(j);
985
986// 0x82, 0xA7, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0xC3, 0xA6, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00
987
988// roundtrip
989json j_from_msgpack = json::from_msgpack(v_msgpack);
990
991// serialize to UBJSON
992std::vector<std::uint8_t> v_ubjson = json::to_ubjson(j);
993
994// 0x7B, 0x69, 0x07, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x54, 0x69, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x69, 0x00, 0x7D
995
996// roundtrip
997json j_from_ubjson = json::from_ubjson(v_ubjson);
998```
999
1000
1001## Supported compilers
1002
1003Though it's 2019 already, the support for C++11 is still a bit sparse. Currently, the following compilers are known to work:
1004
1005- GCC 4.8 - 9.2 (and possibly later)
1006- Clang 3.4 - 9.0 (and possibly later)
1007- Intel C++ Compiler 17.0.2 (and possibly later)
1008- Microsoft Visual C++ 2015 / Build Tools 14.0.25123.0 (and possibly later)
1009- Microsoft Visual C++ 2017 / Build Tools 15.5.180.51428 (and possibly later)
1010- Microsoft Visual C++ 2019 / Build Tools 16.3.1+1def00d3d (and possibly later)
1011
1012I would be happy to learn about other compilers/versions.
1013
1014Please note:
1015
1016- GCC 4.8 has a bug [57824](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57824)): multiline raw strings cannot be the arguments to macros. Don't use multiline raw strings directly in macros with this compiler.
1017- Android defaults to using very old compilers and C++ libraries. To fix this, add the following to your `Application.mk`. This will switch to the LLVM C++ library, the Clang compiler, and enable C++11 and other features disabled by default.
1018
1019 ```
1020 APP_STL := c++_shared
1021 NDK_TOOLCHAIN_VERSION := clang3.6
1022 APP_CPPFLAGS += -frtti -fexceptions
1023 ```
1024
1025 The code compiles successfully with [Android NDK](https://developer.android.com/ndk/index.html?hl=ml), Revision 9 - 11 (and possibly later) and [CrystaX's Android NDK](https://www.crystax.net/en/android/ndk) version 10.
1026
1027- For GCC running on MinGW or Android SDK, the error `'to_string' is not a member of 'std'` (or similarly, for `strtod`) may occur. Note this is not an issue with the code, but rather with the compiler itself. On Android, see above to build with a newer environment. For MinGW, please refer to [this site](http://tehsausage.com/mingw-to-string) and [this discussion](https://github.com/nlohmann/json/issues/136) for information on how to fix this bug. For Android NDK using `APP_STL := gnustl_static`, please refer to [this discussion](https://github.com/nlohmann/json/issues/219).
1028
1029- Unsupported versions of GCC and Clang are rejected by `#error` directives. This can be switched off by defining `JSON_SKIP_UNSUPPORTED_COMPILER_CHECK`. Note that you can expect no support in this case.
1030
1031The following compilers are currently used in continuous integration at [Travis](https://travis-ci.org/nlohmann/json), [AppVeyor](https://ci.appveyor.com/project/nlohmann/json), [CircleCI](https://circleci.com/gh/nlohmann/json), and [Doozer](https://doozer.io):
1032
1033| Compiler | Operating System | Version String |
1034|-----------------------|------------------------------|----------------|
1035| GCC 4.8.5 | Ubuntu 14.04.5 LTS | g++-4.8 (Ubuntu 4.8.5-2ubuntu1~14.04.2) 4.8.5 |
1036| GCC 4.8.5 | CentOS Release-7-6.1810.2.el7.centos.x86_64 | g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-36) |
1037| GCC 4.9.2 (armv7l) | Raspbian GNU/Linux 8 (jessie) | g++ (Raspbian 4.9.2-10+deb8u2) 4.9.2 |
1038| GCC 4.9.4 | Ubuntu 14.04.1 LTS | g++-4.9 (Ubuntu 4.9.4-2ubuntu1~14.04.1) 4.9.4 |
1039| GCC 5.3.1 (armv7l) | Ubuntu 16.04 LTS | g++ (Ubuntu/Linaro 5.3.1-14ubuntu2) 5.3.1 20160413 |
1040| GCC 5.5.0 | Ubuntu 14.04.1 LTS | g++-5 (Ubuntu 5.5.0-12ubuntu1~14.04) 5.5.0 20171010 |
1041| GCC 6.3.0 | Debian 9 (stretch) | g++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516 |
1042| GCC 6.3.1 | Fedora release 24 (Twenty Four) | g++ (GCC) 6.3.1 20161221 (Red Hat 6.3.1-1) |
1043| GCC 6.4.0 | Ubuntu 14.04.1 LTS | g++-6 (Ubuntu 6.4.0-17ubuntu1~14.04) 6.4.0 20180424 |
1044| GCC 7.3.0 | Ubuntu 14.04.1 LTS | g++-7 (Ubuntu 7.3.0-21ubuntu1~14.04) 7.3.0 |
1045| GCC 7.3.0 | Windows Server 2012 R2 (x64) | g++ (x86_64-posix-seh-rev0, Built by MinGW-W64 project) 7.3.0 |
1046| GCC 8.1.0 | Ubuntu 14.04.1 LTS | g++-8 (Ubuntu 8.1.0-5ubuntu1~14.04) 8.1.0 |
1047| GCC 9.2.1 | Ubuntu 14.05.1 LTS | g++-9 (Ubuntu 9.2.1-16ubuntu1~14.04.1) 9.2.1 20191030 |
1048| Clang 3.5.0 | Ubuntu 14.04.1 LTS | clang version 3.5.0-4ubuntu2~trusty2 (tags/RELEASE_350/final) (based on LLVM 3.5.0) |
1049| Clang 3.6.2 | Ubuntu 14.04.1 LTS | clang version 3.6.2-svn240577-1~exp1 (branches/release_36) (based on LLVM 3.6.2) |
1050| Clang 3.7.1 | Ubuntu 14.04.1 LTS | clang version 3.7.1-svn253571-1~exp1 (branches/release_37) (based on LLVM 3.7.1) |
1051| Clang 3.8.0 | Ubuntu 14.04.1 LTS | clang version 3.8.0-2ubuntu3~trusty5 (tags/RELEASE_380/final) |
1052| Clang 3.9.1 | Ubuntu 14.04.1 LTS | clang version 3.9.1-4ubuntu3~14.04.3 (tags/RELEASE_391/rc2) |
1053| Clang 4.0.1 | Ubuntu 14.04.1 LTS | clang version 4.0.1-svn305264-1~exp1 (branches/release_40) |
1054| Clang 5.0.2 | Ubuntu 14.04.1 LTS | clang version 5.0.2-svn328729-1~exp1~20180509123505.100 (branches/release_50) |
1055| Clang 6.0.1 | Ubuntu 14.04.1 LTS | clang version 6.0.1-svn334776-1~exp1~20180726133705.85 (branches/release_60) |
1056| Clang 7.0.1 | Ubuntu 14.04.1 LTS | clang version 7.0.1-svn348686-1~exp1~20181213084532.54 (branches/release_70) |
1057| Clang Xcode 8.3 | OSX 10.11.6 | Apple LLVM version 8.1.0 (clang-802.0.38) |
1058| Clang Xcode 9.0 | OSX 10.12.6 | Apple LLVM version 9.0.0 (clang-900.0.37) |
1059| Clang Xcode 9.1 | OSX 10.12.6 | Apple LLVM version 9.0.0 (clang-900.0.38) |
1060| Clang Xcode 9.2 | OSX 10.13.3 | Apple LLVM version 9.1.0 (clang-902.0.39.1) |
1061| Clang Xcode 9.3 | OSX 10.13.3 | Apple LLVM version 9.1.0 (clang-902.0.39.2) |
1062| Clang Xcode 10.0 | OSX 10.13.3 | Apple LLVM version 10.0.0 (clang-1000.11.45.2) |
1063| Clang Xcode 10.1 | OSX 10.13.3 | Apple LLVM version 10.0.0 (clang-1000.11.45.5) |
1064| Clang Xcode 10.2 | OSX 10.14.4 | Apple LLVM version 10.0.1 (clang-1001.0.46.4) |
1065| Visual Studio 14 2015 | Windows Server 2012 R2 (x64) | Microsoft (R) Build Engine version 14.0.25420.1, MSVC 19.0.24215.1 |
1066| Visual Studio 15 2017 | Windows Server 2012 R2 (x64) | Microsoft (R) Build Engine version 15.9.21+g9802d43bc3, MSVC 19.16.27032.1 |
1067| Visual Studio 16 2019 | Windows Server 2012 R2 (x64) | Microsoft (R) Build Engine version 16.3.1+1def00d3d, MSVC 19.23.28106.4 |
1068
1069## License
1070
1071<img align="right" src="http://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png">
1072
1073The class is licensed under the [MIT License](http://opensource.org/licenses/MIT):
1074
1075Copyright © 2013-2019 [Niels Lohmann](http://nlohmann.me)
1076
1077Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1078
1079The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1080
1081THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1082
1083* * *
1084
1085The class contains the UTF-8 Decoder from Bjoern Hoehrmann which is licensed under the [MIT License](http://opensource.org/licenses/MIT) (see above). Copyright © 2008-2009 [Björn Hoehrmann](http://bjoern.hoehrmann.de/) <bjoern@hoehrmann.de>
1086
1087The class contains a slightly modified version of the Grisu2 algorithm from Florian Loitsch which is licensed under the [MIT License](http://opensource.org/licenses/MIT) (see above). Copyright © 2009 [Florian Loitsch](http://florian.loitsch.com/)
1088
1089The class contains a copy of [Hedley](https://nemequ.github.io/hedley/) from Evan Nemerson which is licensed as [CC0-1.0](http://creativecommons.org/publicdomain/zero/1.0/).
1090
1091## Contact
1092
1093If you have questions regarding the library, I would like to invite you to [open an issue at GitHub](https://github.com/nlohmann/json/issues/new/choose). Please describe your request, problem, or question as detailed as possible, and also mention the version of the library you are using as well as the version of your compiler and operating system. Opening an issue at GitHub allows other users and contributors to this library to collaborate. For instance, I have little experience with MSVC, and most issues in this regard have been solved by a growing community. If you have a look at the [closed issues](https://github.com/nlohmann/json/issues?q=is%3Aissue+is%3Aclosed), you will see that we react quite timely in most cases.
1094
1095Only if your request would contain confidential information, please [send me an email](mailto:mail@nlohmann.me). For encrypted messages, please use [this key](https://keybase.io/nlohmann/pgp_keys.asc).
1096
1097## Security
1098
1099[Commits by Niels Lohmann](https://github.com/nlohmann/json/commits) and [releases](https://github.com/nlohmann/json/releases) are signed with this [PGP Key](https://keybase.io/nlohmann/pgp_keys.asc?fingerprint=797167ae41c0a6d9232e48457f3cea63ae251b69).
1100
1101## Thanks
1102
1103I deeply appreciate the help of the following people.
1104
1105<img src="https://raw.githubusercontent.com/nlohmann/json/develop/doc/avatars.png" align="right">
1106
1107- [Teemperor](https://github.com/Teemperor) implemented CMake support and lcov integration, realized escape and Unicode handling in the string parser, and fixed the JSON serialization.
1108- [elliotgoodrich](https://github.com/elliotgoodrich) fixed an issue with double deletion in the iterator classes.
1109- [kirkshoop](https://github.com/kirkshoop) made the iterators of the class composable to other libraries.
1110- [wancw](https://github.com/wanwc) fixed a bug that hindered the class to compile with Clang.
1111- Tomas Åblad found a bug in the iterator implementation.
1112- [Joshua C. Randall](https://github.com/jrandall) fixed a bug in the floating-point serialization.
1113- [Aaron Burghardt](https://github.com/aburgh) implemented code to parse streams incrementally. Furthermore, he greatly improved the parser class by allowing the definition of a filter function to discard undesired elements while parsing.
1114- [Daniel Kopeček](https://github.com/dkopecek) fixed a bug in the compilation with GCC 5.0.
1115- [Florian Weber](https://github.com/Florianjw) fixed a bug in and improved the performance of the comparison operators.
1116- [Eric Cornelius](https://github.com/EricMCornelius) pointed out a bug in the handling with NaN and infinity values. He also improved the performance of the string escaping.
1117- [易思龙](https://github.com/likebeta) implemented a conversion from anonymous enums.
1118- [kepkin](https://github.com/kepkin) patiently pushed forward the support for Microsoft Visual studio.
1119- [gregmarr](https://github.com/gregmarr) simplified the implementation of reverse iterators and helped with numerous hints and improvements. In particular, he pushed forward the implementation of user-defined types.
1120- [Caio Luppi](https://github.com/caiovlp) fixed a bug in the Unicode handling.
1121- [dariomt](https://github.com/dariomt) fixed some typos in the examples.
1122- [Daniel Frey](https://github.com/d-frey) cleaned up some pointers and implemented exception-safe memory allocation.
1123- [Colin Hirsch](https://github.com/ColinH) took care of a small namespace issue.
1124- [Huu Nguyen](https://github.com/whoshuu) correct a variable name in the documentation.
1125- [Silverweed](https://github.com/silverweed) overloaded `parse()` to accept an rvalue reference.
1126- [dariomt](https://github.com/dariomt) fixed a subtlety in MSVC type support and implemented the `get_ref()` function to get a reference to stored values.
1127- [ZahlGraf](https://github.com/ZahlGraf) added a workaround that allows compilation using Android NDK.
1128- [whackashoe](https://github.com/whackashoe) replaced a function that was marked as unsafe by Visual Studio.
1129- [406345](https://github.com/406345) fixed two small warnings.
1130- [Glen Fernandes](https://github.com/glenfe) noted a potential portability problem in the `has_mapped_type` function.
1131- [Corbin Hughes](https://github.com/nibroc) fixed some typos in the contribution guidelines.
1132- [twelsby](https://github.com/twelsby) fixed the array subscript operator, an issue that failed the MSVC build, and floating-point parsing/dumping. He further added support for unsigned integer numbers and implemented better roundtrip support for parsed numbers.
1133- [Volker Diels-Grabsch](https://github.com/vog) fixed a link in the README file.
1134- [msm-](https://github.com/msm-) added support for American Fuzzy Lop.
1135- [Annihil](https://github.com/Annihil) fixed an example in the README file.
1136- [Themercee](https://github.com/Themercee) noted a wrong URL in the README file.
1137- [Lv Zheng](https://github.com/lv-zheng) fixed a namespace issue with `int64_t` and `uint64_t`.
1138- [abc100m](https://github.com/abc100m) analyzed the issues with GCC 4.8 and proposed a [partial solution](https://github.com/nlohmann/json/pull/212).
1139- [zewt](https://github.com/zewt) added useful notes to the README file about Android.
1140- [Róbert Márki](https://github.com/robertmrk) added a fix to use move iterators and improved the integration via CMake.
1141- [Chris Kitching](https://github.com/ChrisKitching) cleaned up the CMake files.
1142- [Tom Needham](https://github.com/06needhamt) fixed a subtle bug with MSVC 2015 which was also proposed by [Michael K.](https://github.com/Epidal).
1143- [Mário Feroldi](https://github.com/thelostt) fixed a small typo.
1144- [duncanwerner](https://github.com/duncanwerner) found a really embarrassing performance regression in the 2.0.0 release.
1145- [Damien](https://github.com/dtoma) fixed one of the last conversion warnings.
1146- [Thomas Braun](https://github.com/t-b) fixed a warning in a test case.
1147- [Théo DELRIEU](https://github.com/theodelrieu) patiently and constructively oversaw the long way toward [iterator-range parsing](https://github.com/nlohmann/json/issues/290). He also implemented the magic behind the serialization/deserialization of user-defined types and split the single header file into smaller chunks.
1148- [Stefan](https://github.com/5tefan) fixed a minor issue in the documentation.
1149- [Vasil Dimov](https://github.com/vasild) fixed the documentation regarding conversions from `std::multiset`.
1150- [ChristophJud](https://github.com/ChristophJud) overworked the CMake files to ease project inclusion.
1151- [Vladimir Petrigo](https://github.com/vpetrigo) made a SFINAE hack more readable and added Visual Studio 17 to the build matrix.
1152- [Denis Andrejew](https://github.com/seeekr) fixed a grammar issue in the README file.
1153- [Pierre-Antoine Lacaze](https://github.com/palacaze) found a subtle bug in the `dump()` function.
1154- [TurpentineDistillery](https://github.com/TurpentineDistillery) pointed to [`std::locale::classic()`](https://en.cppreference.com/w/cpp/locale/locale/classic) to avoid too much locale joggling, found some nice performance improvements in the parser, improved the benchmarking code, and realized locale-independent number parsing and printing.
1155- [cgzones](https://github.com/cgzones) had an idea how to fix the Coverity scan.
1156- [Jared Grubb](https://github.com/jaredgrubb) silenced a nasty documentation warning.
1157- [Yixin Zhang](https://github.com/qwename) fixed an integer overflow check.
1158- [Bosswestfalen](https://github.com/Bosswestfalen) merged two iterator classes into a smaller one.
1159- [Daniel599](https://github.com/Daniel599) helped to get Travis execute the tests with Clang's sanitizers.
1160- [Jonathan Lee](https://github.com/vjon) fixed an example in the README file.
1161- [gnzlbg](https://github.com/gnzlbg) supported the implementation of user-defined types.
1162- [Alexej Harm](https://github.com/qis) helped to get the user-defined types working with Visual Studio.
1163- [Jared Grubb](https://github.com/jaredgrubb) supported the implementation of user-defined types.
1164- [EnricoBilla](https://github.com/EnricoBilla) noted a typo in an example.
1165- [Martin Hořeňovský](https://github.com/horenmar) found a way for a 2x speedup for the compilation time of the test suite.
1166- [ukhegg](https://github.com/ukhegg) found proposed an improvement for the examples section.
1167- [rswanson-ihi](https://github.com/rswanson-ihi) noted a typo in the README.
1168- [Mihai Stan](https://github.com/stanmihai4) fixed a bug in the comparison with `nullptr`s.
1169- [Tushar Maheshwari](https://github.com/tusharpm) added [cotire](https://github.com/sakra/cotire) support to speed up the compilation.
1170- [TedLyngmo](https://github.com/TedLyngmo) noted a typo in the README, removed unnecessary bit arithmetic, and fixed some `-Weffc++` warnings.
1171- [Krzysztof Woś](https://github.com/krzysztofwos) made exceptions more visible.
1172- [ftillier](https://github.com/ftillier) fixed a compiler warning.
1173- [tinloaf](https://github.com/tinloaf) made sure all pushed warnings are properly popped.
1174- [Fytch](https://github.com/Fytch) found a bug in the documentation.
1175- [Jay Sistar](https://github.com/Type1J) implemented a Meson build description.
1176- [Henry Lee](https://github.com/HenryRLee) fixed a warning in ICC and improved the iterator implementation.
1177- [Vincent Thiery](https://github.com/vthiery) maintains a package for the Conan package manager.
1178- [Steffen](https://github.com/koemeet) fixed a potential issue with MSVC and `std::min`.
1179- [Mike Tzou](https://github.com/Chocobo1) fixed some typos.
1180- [amrcode](https://github.com/amrcode) noted a misleading documentation about comparison of floats.
1181- [Oleg Endo](https://github.com/olegendo) reduced the memory consumption by replacing `<iostream>` with `<iosfwd>`.
1182- [dan-42](https://github.com/dan-42) cleaned up the CMake files to simplify including/reusing of the library.
1183- [Nikita Ofitserov](https://github.com/himikof) allowed for moving values from initializer lists.
1184- [Greg Hurrell](https://github.com/wincent) fixed a typo.
1185- [Dmitry Kukovinets](https://github.com/DmitryKuk) fixed a typo.
1186- [kbthomp1](https://github.com/kbthomp1) fixed an issue related to the Intel OSX compiler.
1187- [Markus Werle](https://github.com/daixtrose) fixed a typo.
1188- [WebProdPP](https://github.com/WebProdPP) fixed a subtle error in a precondition check.
1189- [Alex](https://github.com/leha-bot) noted an error in a code sample.
1190- [Tom de Geus](https://github.com/tdegeus) reported some warnings with ICC and helped fixing them.
1191- [Perry Kundert](https://github.com/pjkundert) simplified reading from input streams.
1192- [Sonu Lohani](https://github.com/sonulohani) fixed a small compilation error.
1193- [Jamie Seward](https://github.com/jseward) fixed all MSVC warnings.
1194- [Nate Vargas](https://github.com/eld00d) added a Doxygen tag file.
1195- [pvleuven](https://github.com/pvleuven) helped fixing a warning in ICC.
1196- [Pavel](https://github.com/crea7or) helped fixing some warnings in MSVC.
1197- [Jamie Seward](https://github.com/jseward) avoided unnecessary string copies in `find()` and `count()`.
1198- [Mitja](https://github.com/Itja) fixed some typos.
1199- [Jorrit Wronski](https://github.com/jowr) updated the Hunter package links.
1200- [Matthias Möller](https://github.com/TinyTinni) added a `.natvis` for the MSVC debug view.
1201- [bogemic](https://github.com/bogemic) fixed some C++17 deprecation warnings.
1202- [Eren Okka](https://github.com/erengy) fixed some MSVC warnings.
1203- [abolz](https://github.com/abolz) integrated the Grisu2 algorithm for proper floating-point formatting, allowing more roundtrip checks to succeed.
1204- [Vadim Evard](https://github.com/Pipeliner) fixed a Markdown issue in the README.
1205- [zerodefect](https://github.com/zerodefect) fixed a compiler warning.
1206- [Kert](https://github.com/kaidokert) allowed to template the string type in the serialization and added the possibility to override the exceptional behavior.
1207- [mark-99](https://github.com/mark-99) helped fixing an ICC error.
1208- [Patrik Huber](https://github.com/patrikhuber) fixed links in the README file.
1209- [johnfb](https://github.com/johnfb) found a bug in the implementation of CBOR's indefinite length strings.
1210- [Paul Fultz II](https://github.com/pfultz2) added a note on the cget package manager.
1211- [Wilson Lin](https://github.com/wla80) made the integration section of the README more concise.
1212- [RalfBielig](https://github.com/ralfbielig) detected and fixed a memory leak in the parser callback.
1213- [agrianius](https://github.com/agrianius) allowed to dump JSON to an alternative string type.
1214- [Kevin Tonon](https://github.com/ktonon) overworked the C++11 compiler checks in CMake.
1215- [Axel Huebl](https://github.com/ax3l) simplified a CMake check and added support for the [Spack package manager](https://spack.io).
1216- [Carlos O'Ryan](https://github.com/coryan) fixed a typo.
1217- [James Upjohn](https://github.com/jammehcow) fixed a version number in the compilers section.
1218- [Chuck Atkins](https://github.com/chuckatkins) adjusted the CMake files to the CMake packaging guidelines and provided documentation for the CMake integration.
1219- [Jan Schöppach](https://github.com/dns13) fixed a typo.
1220- [martin-mfg](https://github.com/martin-mfg) fixed a typo.
1221- [Matthias Möller](https://github.com/TinyTinni) removed the dependency from `std::stringstream`.
1222- [agrianius](https://github.com/agrianius) added code to use alternative string implementations.
1223- [Daniel599](https://github.com/Daniel599) allowed to use more algorithms with the `items()` function.
1224- [Julius Rakow](https://github.com/jrakow) fixed the Meson include directory and fixed the links to [cppreference.com](cppreference.com).
1225- [Sonu Lohani](https://github.com/sonulohani) fixed the compilation with MSVC 2015 in debug mode.
1226- [grembo](https://github.com/grembo) fixed the test suite and re-enabled several test cases.
1227- [Hyeon Kim](https://github.com/simnalamburt) introduced the macro `JSON_INTERNAL_CATCH` to control the exception handling inside the library.
1228- [thyu](https://github.com/thyu) fixed a compiler warning.
1229- [David Guthrie](https://github.com/LEgregius) fixed a subtle compilation error with Clang 3.4.2.
1230- [Dennis Fischer](https://github.com/dennisfischer) allowed to call `find_package` without installing the library.
1231- [Hyeon Kim](https://github.com/simnalamburt) fixed an issue with a double macro definition.
1232- [Ben Berman](https://github.com/rivertam) made some error messages more understandable.
1233- [zakalibit](https://github.com/zakalibit) fixed a compilation problem with the Intel C++ compiler.
1234- [mandreyel](https://github.com/mandreyel) fixed a compilation problem.
1235- [Kostiantyn Ponomarenko](https://github.com/koponomarenko) added version and license information to the Meson build file.
1236- [Henry Schreiner](https://github.com/henryiii) added support for GCC 4.8.
1237- [knilch](https://github.com/knilch0r) made sure the test suite does not stall when run in the wrong directory.
1238- [Antonio Borondo](https://github.com/antonioborondo) fixed an MSVC 2017 warning.
1239- [Dan Gendreau](https://github.com/dgendreau) implemented the `NLOHMANN_JSON_SERIALIZE_ENUM` macro to quickly define a enum/JSON mapping.
1240- [efp](https://github.com/efp) added line and column information to parse errors.
1241- [julian-becker](https://github.com/julian-becker) added BSON support.
1242- [Pratik Chowdhury](https://github.com/pratikpc) added support for structured bindings.
1243- [David Avedissian](https://github.com/davedissian) added support for Clang 5.0.1 (PS4 version).
1244- [Jonathan Dumaresq](https://github.com/dumarjo) implemented an input adapter to read from `FILE*`.
1245- [kjpus](https://github.com/kjpus) fixed a link in the documentation.
1246- [Manvendra Singh](https://github.com/manu-chroma) fixed a typo in the documentation.
1247- [ziggurat29](https://github.com/ziggurat29) fixed an MSVC warning.
1248- [Sylvain Corlay](https://github.com/SylvainCorlay) added code to avoid an issue with MSVC.
1249- [mefyl](https://github.com/mefyl) fixed a bug when JSON was parsed from an input stream.
1250- [Millian Poquet](https://github.com/mpoquet) allowed to install the library via Meson.
1251- [Michael Behrns-Miller](https://github.com/moodboom) found an issue with a missing namespace.
1252- [Nasztanovics Ferenc](https://github.com/naszta) fixed a compilation issue with libc 2.12.
1253- [Andreas Schwab](https://github.com/andreas-schwab) fixed the endian conversion.
1254- [Mark-Dunning](https://github.com/Mark-Dunning) fixed a warning in MSVC.
1255- [Gareth Sylvester-Bradley](https://github.com/garethsb-sony) added `operator/` for JSON Pointers.
1256- [John-Mark](https://github.com/johnmarkwayve) noted a missing header.
1257- [Vitaly Zaitsev](https://github.com/xvitaly) fixed compilation with GCC 9.0.
1258- [Laurent Stacul](https://github.com/stac47) fixed compilation with GCC 9.0.
1259- [Ivor Wanders](https://github.com/iwanders) helped reducing the CMake requirement to version 3.1.
1260- [njlr](https://github.com/njlr) updated the Buckaroo instructions.
1261- [Lion](https://github.com/lieff) fixed a compilation issue with GCC 7 on CentOS.
1262- [Isaac Nickaein](https://github.com/nickaein) improved the integer serialization performance and implemented the `contains()` function.
1263- [past-due](https://github.com/past-due) suppressed an unfixable warning.
1264- [Elvis Oric](https://github.com/elvisoric) improved Meson support.
1265- [Matěj Plch](https://github.com/Afforix) fixed an example in the README.
1266- [Mark Beckwith](https://github.com/wythe) fixed a typo.
1267- [scinart](https://github.com/scinart) fixed bug in the serializer.
1268- [Patrick Boettcher](https://github.com/pboettch) implemented `push_back()` and `pop_back()` for JSON Pointers.
1269- [Bruno Oliveira](https://github.com/nicoddemus) added support for Conda.
1270- [Michele Caini](https://github.com/skypjack) fixed links in the README.
1271- [Hani](https://github.com/hnkb) documented how to install the library with NuGet.
1272- [Mark Beckwith](https://github.com/wythe) fixed a typo.
1273- [yann-morin-1998](https://github.com/yann-morin-1998) helped reducing the CMake requirement to version 3.1.
1274- [Konstantin Podsvirov](https://github.com/podsvirov) maintains a package for the MSYS2 software distro.
1275- [remyabel](https://github.com/remyabel) added GNUInstallDirs to the CMake files.
1276- [Taylor Howard](https://github.com/taylorhoward92) fixed a unit test.
1277- [Gabe Ron](https://github.com/Macr0Nerd) implemented the `to_string` method.
1278- [Watal M. Iwasaki](https://github.com/heavywatal) fixed a Clang warning.
1279- [Viktor Kirilov](https://github.com/onqtam) switched the unit tests from [Catch](https://github.com/philsquared/Catch) to [doctest](https://github.com/onqtam/doctest)
1280- [Juncheng E](https://github.com/ejcjason) fixed a typo.
1281- [tete17](https://github.com/tete17) fixed a bug in the `contains` function.
1282- [Xav83](https://github.com/Xav83) fixed some cppcheck warnings.
1283- [0xflotus](https://github.com/0xflotus) fixed some typos.
1284- [Christian Deneke](https://github.com/chris0x44) added a const version of `json_pointer::back`.
1285- [Julien Hamaide](https://github.com/crazyjul) made the `items()` function work with custom string types.
1286- [Evan Nemerson](https://github.com/nemequ) updated fixed a bug in Hedley and updated this library accordingly.
1287- [Florian Pigorsch](https://github.com/flopp) fixed a lot of typos.
1288- [Camille Bégué](https://github.com/cbegue) fixed an issue in the conversion from `std::pair` and `std::tuple` to `json`.
1289- [Anthony VH](https://github.com/AnthonyVH) fixed a compile error in an enum deserialization.
1290
1291Thanks a lot for helping out! Please [let me know](mailto:mail@nlohmann.me) if I forgot someone.
1292
1293
1294## Used third-party tools
1295
1296The library itself consists of a single header file licensed under the MIT license. However, it is built, tested, documented, and whatnot using a lot of third-party tools and services. Thanks a lot!
1297
1298- [**amalgamate.py - Amalgamate C source and header files**](https://github.com/edlund/amalgamate) to create a single header file
1299- [**American fuzzy lop**](http://lcamtuf.coredump.cx/afl/) for fuzz testing
1300- [**AppVeyor**](https://www.appveyor.com) for [continuous integration](https://ci.appveyor.com/project/nlohmann/json) on Windows
1301- [**Artistic Style**](http://astyle.sourceforge.net) for automatic source code indentation
1302- [**CircleCI**](http://circleci.com) for [continuous integration](https://circleci.com/gh/nlohmann/json).
1303- [**Clang**](http://clang.llvm.org) for compilation with code sanitizers
1304- [**CMake**](https://cmake.org) for build automation
1305- [**Codacity**](https://www.codacy.com) for further [code analysis](https://www.codacy.com/app/nlohmann/json)
1306- [**Coveralls**](https://coveralls.io) to measure [code coverage](https://coveralls.io/github/nlohmann/json)
1307- [**Coverity Scan**](https://scan.coverity.com) for [static analysis](https://scan.coverity.com/projects/nlohmann-json)
1308- [**cppcheck**](http://cppcheck.sourceforge.net) for static analysis
1309- [**doctest**](https://github.com/onqtam/doctest) for the unit tests
1310- [**Doozer**](https://doozer.io) for [continuous integration](https://doozer.io/nlohmann/json) on Linux (CentOS, Raspbian, Fedora)
1311- [**Doxygen**](http://www.stack.nl/~dimitri/doxygen/) to generate [documentation](https://nlohmann.github.io/json/)
1312- [**fastcov**](https://github.com/RPGillespie6/fastcov) to process coverage information
1313- [**git-update-ghpages**](https://github.com/rstacruz/git-update-ghpages) to upload the documentation to gh-pages
1314- [**GitHub Changelog Generator**](https://github.com/skywinder/github-changelog-generator) to generate the [ChangeLog](https://github.com/nlohmann/json/blob/develop/ChangeLog.md)
1315- [**Google Benchmark**](https://github.com/google/benchmark) to implement the benchmarks
1316- [**Hedley**](https://nemequ.github.io/hedley/) to avoid re-inventing several compiler-agnostic feature macros
1317- [**lcov**](http://ltp.sourceforge.net/coverage/lcov.php) to process coverage information and create a HTML view
1318- [**libFuzzer**](http://llvm.org/docs/LibFuzzer.html) to implement fuzz testing for OSS-Fuzz
1319- [**OSS-Fuzz**](https://github.com/google/oss-fuzz) for continuous fuzz testing of the library ([project repository](https://github.com/google/oss-fuzz/tree/master/projects/json))
1320- [**Probot**](https://probot.github.io) for automating maintainer tasks such as closing stale issues, requesting missing information, or detecting toxic comments.
1321- [**send_to_wandbox**](https://github.com/nlohmann/json/blob/develop/doc/scripts/send_to_wandbox.py) to send code examples to [Wandbox](http://melpon.org/wandbox)
1322- [**Travis**](https://travis-ci.org) for [continuous integration](https://travis-ci.org/nlohmann/json) on Linux and macOS
1323- [**Valgrind**](http://valgrind.org) to check for correct memory management
1324- [**Wandbox**](http://melpon.org/wandbox) for [online examples](https://wandbox.org/permlink/TarF5pPn9NtHQjhf)
1325
1326
1327## Projects using JSON for Modern C++
1328
1329The library is currently used in Apple macOS Sierra and iOS 10. I am not sure what they are using the library for, but I am happy that it runs on so many devices.
1330
1331
1332## Notes
1333
1334### Character encoding
1335
1336The library supports **Unicode input** as follows:
1337
1338- Only **UTF-8** encoded input is supported which is the default encoding for JSON according to [RFC 8259](https://tools.ietf.org/html/rfc8259.html#section-8.1).
1339- `std::u16string` and `std::u32string` can be parsed, assuming UTF-16 and UTF-32 encoding, respectively. These encodings are not supported when reading from files or other input containers.
1340- Other encodings such as Latin-1 or ISO 8859-1 are **not** supported and will yield parse or serialization errors.
1341- [Unicode noncharacters](http://www.unicode.org/faq/private_use.html#nonchar1) will not be replaced by the library.
1342- Invalid surrogates (e.g., incomplete pairs such as `\uDEAD`) will yield parse errors.
1343- The strings stored in the library are UTF-8 encoded. When using the default string type (`std::string`), note that its length/size functions return the number of stored bytes rather than the number of characters or glyphs.
1344- When you store strings with different encodings in the library, calling [`dump()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a50ec80b02d0f3f51130d4abb5d1cfdc5.html#a50ec80b02d0f3f51130d4abb5d1cfdc5) may throw an exception unless `json::error_handler_t::replace` or `json::error_handler_t::ignore` are used as error handlers.
1345
1346### Comments in JSON
1347
1348This library does not support comments. It does so for three reasons:
1349
13501. Comments are not part of the [JSON specification](https://tools.ietf.org/html/rfc8259). You may argue that `//` or `/* */` are allowed in JavaScript, but JSON is not JavaScript.
13512. This was not an oversight: Douglas Crockford [wrote on this](https://plus.google.com/118095276221607585885/posts/RK8qyGVaGSr) in May 2012:
1352
1353 > I removed comments from JSON because I saw people were using them to hold parsing directives, a practice which would have destroyed interoperability. I know that the lack of comments makes some people sad, but it shouldn't.
1354
1355 > Suppose you are using JSON to keep configuration files, which you would like to annotate. Go ahead and insert all the comments you like. Then pipe it through JSMin before handing it to your JSON parser.
1356
13573. It is dangerous for interoperability if some libraries would add comment support while others don't. Please check [The Harmful Consequences of the Robustness Principle](https://tools.ietf.org/html/draft-iab-protocol-maintenance-01) on this.
1358
1359This library will not support comments in the future. If you wish to use comments, I see three options:
1360
13611. Strip comments before using this library.
13622. Use a different JSON library with comment support.
13633. Use a format that natively supports comments (e.g., YAML or JSON5).
1364
1365### Order of object keys
1366
1367By default, the library does not preserve the **insertion order of object elements**. This is standards-compliant, as the [JSON standard](https://tools.ietf.org/html/rfc8259.html) defines objects as "an unordered collection of zero or more name/value pairs". If you do want to preserve the insertion order, you can specialize the object type with containers like [`tsl::ordered_map`](https://github.com/Tessil/ordered-map) ([integration](https://github.com/nlohmann/json/issues/546#issuecomment-304447518)) or [`nlohmann::fifo_map`](https://github.com/nlohmann/fifo_map) ([integration](https://github.com/nlohmann/json/issues/485#issuecomment-333652309)).
1368
1369### Further notes
1370
1371- The code contains numerous debug **assertions** which can be switched off by defining the preprocessor macro `NDEBUG`, see the [documentation of `assert`](https://en.cppreference.com/w/cpp/error/assert). In particular, note [`operator[]`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a233b02b0839ef798942dd46157cc0fe6.html#a233b02b0839ef798942dd46157cc0fe6) implements **unchecked access** for const objects: If the given key is not present, the behavior is undefined (think of a dereferenced null pointer) and yields an [assertion failure](https://github.com/nlohmann/json/issues/289) if assertions are switched on. If you are not sure whether an element in an object exists, use checked access with the [`at()` function](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a73ae333487310e3302135189ce8ff5d8.html#a73ae333487310e3302135189ce8ff5d8).
1372- As the exact type of a number is not defined in the [JSON specification](https://tools.ietf.org/html/rfc8259.html), this library tries to choose the best fitting C++ number type automatically. As a result, the type `double` may be used to store numbers which may yield [**floating-point exceptions**](https://github.com/nlohmann/json/issues/181) in certain rare situations if floating-point exceptions have been unmasked in the calling code. These exceptions are not caused by the library and need to be fixed in the calling code, such as by re-masking the exceptions prior to calling library functions.
1373- The code can be compiled without C++ **runtime type identification** features; that is, you can use the `-fno-rtti` compiler flag.
1374- **Exceptions** are used widely within the library. They can, however, be switched off with either using the compiler flag `-fno-exceptions` or by defining the symbol `JSON_NOEXCEPTION`. In this case, exceptions are replaced by `abort()` calls. You can further control this behavior by defining `JSON_THROW_USER´` (overriding `throw`), `JSON_TRY_USER` (overriding `try`), and `JSON_CATCH_USER` (overriding `catch`). Note that `JSON_THROW_USER` should leave the current scope (e.g., by throwing or aborting), as continuing after it may yield undefined behavior.
1375
1376## Execute unit tests
1377
1378To compile and run the tests, you need to execute
1379
1380```sh
1381$ mkdir build
1382$ cd build
1383$ cmake ..
1384$ cmake --build .
1385$ ctest --output-on-failure
1386```
1387
1388For more information, have a look at the file [.travis.yml](https://github.com/nlohmann/json/blob/master/.travis.yml).
1389