json.hpp 402.1 KB
Newer Older
1 2 3
/*
    __ _____ _____ _____
 __|  |   __|     |   | |  JSON for Modern C++
N
Niels Lohmann 已提交
4
|  |  |__   |  |  | | | |  version 2.0.8
5 6 7
|_____|_____|_____|_|___|  https://github.com/nlohmann/json

Licensed under the MIT License <http://opensource.org/licenses/MIT>.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
Copyright (c) 2013-2016 Niels Lohmann <http://nlohmann.me>.

Permission 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:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE 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.
N
Niels 已提交
27 28
*/

N
Niels 已提交
29 30
#ifndef NLOHMANN_JSON_HPP
#define NLOHMANN_JSON_HPP
N
Niels 已提交
31

N
Niels 已提交
32 33 34 35 36
#include <algorithm> // all_of, for_each, transform
#include <array> // array
#include <cassert> // assert
#include <cctype> // isdigit
#include <ciso646> // and, not, or
37
#include <cmath> // isfinite, ldexp, signbit
N
Niels 已提交
38 39 40
#include <cstddef> // nullptr_t, ptrdiff_t, size_t
#include <cstdint> // int64_t, uint64_t
#include <cstdlib> // strtod, strtof, strtold, strtoul
N
Niels 已提交
41
#include <cstring> // strlen
N
Niels 已提交
42 43 44 45 46 47
#include <functional> // function, hash, less
#include <initializer_list> // initializer_list
#include <iomanip> // setw
#include <iostream> // istream, ostream
#include <iterator> // advance, begin, bidirectional_iterator_tag, distance, end, inserter, iterator, iterator_traits, next, random_access_iterator_tag, reverse_iterator
#include <limits> // numeric_limits
N
Niels 已提交
48
#include <locale> // locale
N
Niels 已提交
49 50 51 52 53 54 55 56 57
#include <map> // map
#include <memory> // addressof, allocator, allocator_traits, unique_ptr
#include <numeric> // accumulate
#include <sstream> // stringstream
#include <stdexcept> // domain_error, invalid_argument, out_of_range
#include <string> // getline, stoi, string, to_string
#include <type_traits> // add_pointer, enable_if, is_arithmetic, is_base_of, is_const, is_constructible, is_convertible, is_floating_point, is_integral, is_nothrow_move_assignable, std::is_nothrow_move_constructible, std::is_pointer, std::is_reference, std::is_same, remove_const, remove_pointer, remove_reference
#include <utility> // declval, forward, make_pair, move, pair, swap
#include <vector> // vector
N
Niels 已提交
58

N
Niels 已提交
59 60 61
// exclude unsupported compilers
#if defined(__clang__)
    #define CLANG_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__)
N
math...  
Niels 已提交
62
    #if CLANG_VERSION < 30400
N
Niels 已提交
63 64
        #error "unsupported Clang version - see https://github.com/nlohmann/json#supported-compilers"
    #endif
N
Niels 已提交
65
#elif defined(__GNUC__)
N
Niels 已提交
66
    #define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
N
math...  
Niels 已提交
67
    #if GCC_VERSION < 40900
N
Niels 已提交
68 69 70 71
        #error "unsupported GCC version - see https://github.com/nlohmann/json#supported-compilers"
    #endif
#endif

72 73 74 75 76 77
// disable float-equal warnings on GCC/clang
#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__)
    #pragma GCC diagnostic push
    #pragma GCC diagnostic ignored "-Wfloat-equal"
#endif

N
Niels 已提交
78 79 80 81 82 83 84 85 86
// allow for portable deprecation warnings
#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__)
    #define JSON_DEPRECATED __attribute__((deprecated))
#elif defined(_MSC_VER)
    #define JSON_DEPRECATED __declspec(deprecated)
#else
    #define JSON_DEPRECATED
#endif

N
Niels 已提交
87
/*!
N
Niels 已提交
88
@brief namespace for Niels Lohmann
N
Niels 已提交
89
@see https://github.com/nlohmann
N
Niels 已提交
90
@since version 1.0.0
N
Niels 已提交
91 92 93 94
*/
namespace nlohmann
{

N
Niels 已提交
95

96 97
/*!
@brief unnamed namespace with internal helper functions
N
Niels 已提交
98
@since version 1.0.0
99 100
*/
namespace
N
Niels 已提交
101
{
102 103
/*!
@brief Helper to determine whether there's a key_type for T.
N
Niels 已提交
104 105 106 107 108

Thus helper is used to tell associative containers apart from other containers
such as sequence containers. For instance, `std::map` passes the test as it
contains a `mapped_type`, whereas `std::vector` fails the test.

109
@sa http://stackoverflow.com/a/7728728/266378
N
Niels 已提交
110
@since version 1.0.0, overworked in version 2.0.6
111
*/
N
Niels 已提交
112
template<typename T>
N
Niels 已提交
113
struct has_mapped_type
N
Niels 已提交
114 115
{
  private:
116 117 118 119
    template <typename U, typename = typename U::mapped_type>
    static int detect(U&&);

    static void detect(...);
N
Niels 已提交
120
  public:
121 122
    static constexpr bool value =
        std::is_integral<decltype(detect(std::declval<T>()))>::value;
N
Niels 已提交
123
};
124

N
Niels 已提交
125
}
N
Niels 已提交
126

N
Niels 已提交
127
/*!
N
Niels 已提交
128
@brief a class to store JSON values
N
Niels 已提交
129

N
Niels 已提交
130
@tparam ObjectType type for JSON objects (`std::map` by default; will be used
N
Niels 已提交
131
in @ref object_t)
N
Niels 已提交
132
@tparam ArrayType type for JSON arrays (`std::vector` by default; will be used
N
Niels 已提交
133
in @ref array_t)
N
Niels 已提交
134
@tparam StringType type for JSON strings and object keys (`std::string` by
N
Niels 已提交
135
default; will be used in @ref string_t)
N
Niels 已提交
136
@tparam BooleanType type for JSON booleans (`bool` by default; will be used
N
Niels 已提交
137
in @ref boolean_t)
N
Niels 已提交
138
@tparam NumberIntegerType type for JSON integer numbers (`int64_t` by
N
Niels 已提交
139
default; will be used in @ref number_integer_t)
N
Niels 已提交
140 141
@tparam NumberUnsignedType type for JSON unsigned integer numbers (@c
`uint64_t` by default; will be used in @ref number_unsigned_t)
N
Niels 已提交
142
@tparam NumberFloatType type for JSON floating-point numbers (`double` by
N
Niels 已提交
143
default; will be used in @ref number_float_t)
N
Niels 已提交
144
@tparam AllocatorType type of the allocator to use (`std::allocator` by
N
Niels 已提交
145
default)
N
Niels 已提交
146

N
Niels 已提交
147 148
@requirement The class satisfies the following concept requirements:
- Basic
N
Niels 已提交
149 150 151 152 153
 - [DefaultConstructible](http://en.cppreference.com/w/cpp/concept/DefaultConstructible):
   JSON values can be default constructed. The result will be a JSON null value.
 - [MoveConstructible](http://en.cppreference.com/w/cpp/concept/MoveConstructible):
   A JSON value can be constructed from an rvalue argument.
 - [CopyConstructible](http://en.cppreference.com/w/cpp/concept/CopyConstructible):
N
Niels 已提交
154
   A JSON value can be copy-constructed from an lvalue expression.
N
Niels 已提交
155 156 157 158 159 160
 - [MoveAssignable](http://en.cppreference.com/w/cpp/concept/MoveAssignable):
   A JSON value van be assigned from an rvalue argument.
 - [CopyAssignable](http://en.cppreference.com/w/cpp/concept/CopyAssignable):
   A JSON value can be copy-assigned from an lvalue expression.
 - [Destructible](http://en.cppreference.com/w/cpp/concept/Destructible):
   JSON values can be destructed.
N
Niels 已提交
161
- Layout
N
Niels 已提交
162 163 164 165 166
 - [StandardLayoutType](http://en.cppreference.com/w/cpp/concept/StandardLayoutType):
   JSON values have
   [standard layout](http://en.cppreference.com/w/cpp/language/data_members#Standard_layout):
   All non-static data members are private and standard layout types, the class
   has no virtual functions or (virtual) base classes.
N
Niels 已提交
167
- Library-wide
N
Niels 已提交
168 169 170 171 172 173 174 175 176 177 178 179
 - [EqualityComparable](http://en.cppreference.com/w/cpp/concept/EqualityComparable):
   JSON values can be compared with `==`, see @ref
   operator==(const_reference,const_reference).
 - [LessThanComparable](http://en.cppreference.com/w/cpp/concept/LessThanComparable):
   JSON values can be compared with `<`, see @ref
   operator<(const_reference,const_reference).
 - [Swappable](http://en.cppreference.com/w/cpp/concept/Swappable):
   Any JSON lvalue or rvalue of can be swapped with any lvalue or rvalue of
   other compatible types, using unqualified function call @ref swap().
 - [NullablePointer](http://en.cppreference.com/w/cpp/concept/NullablePointer):
   JSON values can be compared against `std::nullptr_t` objects which are used
   to model the `null` value.
N
Niels 已提交
180
- Container
N
Niels 已提交
181 182 183 184 185
 - [Container](http://en.cppreference.com/w/cpp/concept/Container):
   JSON values can be used like STL containers and provide iterator access.
 - [ReversibleContainer](http://en.cppreference.com/w/cpp/concept/ReversibleContainer);
   JSON values can be used like STL containers and provide reverse iterator
   access.
N
Niels 已提交
186

187 188 189 190 191 192 193
@invariant The member variables @a m_value and @a m_type have the following
relationship:
- If `m_type == value_t::object`, then `m_value.object != nullptr`.
- If `m_type == value_t::array`, then `m_value.array != nullptr`.
- If `m_type == value_t::string`, then `m_value.string != nullptr`.
The invariants are checked by member function assert_invariant().

N
Niels 已提交
194
@internal
N
Niels 已提交
195
@note ObjectType trick from http://stackoverflow.com/a/9860911
N
Niels 已提交
196
@endinternal
N
Niels 已提交
197

198 199
@see [RFC 7159: The JavaScript Object Notation (JSON) Data Interchange
Format](http://rfc7159.net/rfc7159)
N
Niels 已提交
200

N
Niels 已提交
201
@since version 1.0.0
N
Niels 已提交
202 203

@nosubgrouping
N
Niels 已提交
204 205 206 207 208 209
*/
template <
    template<typename U, typename V, typename... Args> class ObjectType = std::map,
    template<typename U, typename... Args> class ArrayType = std::vector,
    class StringType = std::string,
    class BooleanType = bool,
210 211
    class NumberIntegerType = std::int64_t,
    class NumberUnsignedType = std::uint64_t,
N
Niels 已提交
212
    class NumberFloatType = double,
N
Niels 已提交
213
    template<typename U> class AllocatorType = std::allocator
N
Niels 已提交
214 215 216
    >
class basic_json
{
217 218
  private:
    /// workaround type for MSVC
N
Niels 已提交
219 220
    using basic_json_t = basic_json<ObjectType, ArrayType, StringType,
          BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType,
N
Niels 已提交
221
          AllocatorType>;
222 223

  public:
N
Niels 已提交
224 225 226
    // forward declarations
    template<typename Base> class json_reverse_iterator;
    class json_pointer;
227

N
Niels 已提交
228 229 230 231
    /////////////////////
    // container types //
    /////////////////////

N
Niels 已提交
232
    /// @name container types
N
Niels 已提交
233 234
    /// The canonic container types to use @ref basic_json like any other STL
    /// container.
N
Niels 已提交
235 236
    /// @{

N
Niels 已提交
237
    /// the type of elements in a basic_json container
N
Niels 已提交
238
    using value_type = basic_json;
N
Niels 已提交
239

N
Niels 已提交
240
    /// the type of an element reference
N
Niels 已提交
241
    using reference = value_type&;
N
Niels 已提交
242
    /// the type of an element const reference
N
Niels 已提交
243
    using const_reference = const value_type&;
N
Niels 已提交
244

N
Niels 已提交
245
    /// a type to represent differences between iterators
N
Niels 已提交
246
    using difference_type = std::ptrdiff_t;
N
Niels 已提交
247
    /// a type to represent container sizes
N
Niels 已提交
248 249 250
    using size_type = std::size_t;

    /// the allocator type
N
Niels 已提交
251
    using allocator_type = AllocatorType<basic_json>;
N
Niels 已提交
252

N
Niels 已提交
253
    /// the type of an element pointer
N
Niels 已提交
254
    using pointer = typename std::allocator_traits<allocator_type>::pointer;
N
Niels 已提交
255
    /// the type of an element const pointer
N
Niels 已提交
256
    using const_pointer = typename std::allocator_traits<allocator_type>::const_pointer;
N
Niels 已提交
257

N
Niels 已提交
258 259 260 261 262
    /// an iterator for a basic_json container
    class iterator;
    /// a const iterator for a basic_json container
    class const_iterator;
    /// a reverse iterator for a basic_json container
N
Niels 已提交
263
    using reverse_iterator = json_reverse_iterator<typename basic_json::iterator>;
N
Niels 已提交
264
    /// a const reverse iterator for a basic_json container
N
Niels 已提交
265
    using const_reverse_iterator = json_reverse_iterator<typename basic_json::const_iterator>;
N
Niels 已提交
266

N
Niels 已提交
267 268 269
    /// @}


N
Niels 已提交
270 271 272
    /*!
    @brief returns the allocator associated with the container
    */
N
Niels 已提交
273
    static allocator_type get_allocator()
N
Niels 已提交
274 275 276 277 278
    {
        return allocator_type();
    }


N
Niels 已提交
279 280 281 282
    ///////////////////////////
    // JSON value data types //
    ///////////////////////////

N
Niels 已提交
283
    /// @name JSON value data types
N
Niels 已提交
284 285
    /// The data types to store a JSON value. These types are derived from
    /// the template arguments passed to class @ref basic_json.
N
Niels 已提交
286 287
    /// @{

N
Niels 已提交
288 289 290 291 292 293 294 295
    /*!
    @brief a type for an object

    [RFC 7159](http://rfc7159.net/rfc7159) describes JSON objects as follows:
    > An object is an unordered collection of zero or more name/value pairs,
    > where a name is a string and a value is a string, number, boolean, null,
    > object, or array.

N
Niels 已提交
296 297 298 299 300
    To store objects in C++, a type is defined by the template parameters
    described below.

    @tparam ObjectType  the container to store objects (e.g., `std::map` or
    `std::unordered_map`)
N
Niels 已提交
301 302
    @tparam StringType the type of the keys or names (e.g., `std::string`).
    The comparison function `std::less<StringType>` is used to order elements
N
Niels 已提交
303 304 305
    inside the container.
    @tparam AllocatorType the allocator to use for objects (e.g.,
    `std::allocator`)
N
Niels 已提交
306 307 308 309

    #### Default type

    With the default values for @a ObjectType (`std::map`), @a StringType
N
Niels 已提交
310 311
    (`std::string`), and @a AllocatorType (`std::allocator`), the default
    value for @a object_t is:
N
Niels 已提交
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327

    @code {.cpp}
    std::map<
      std::string, // key_type
      basic_json, // value_type
      std::less<std::string>, // key_compare
      std::allocator<std::pair<const std::string, basic_json>> // allocator_type
    >
    @endcode

    #### Behavior

    The choice of @a object_t influences the behavior of the JSON class. With
    the default type, objects have the following behavior:

    - When all names are unique, objects will be interoperable in the sense
N
Niels 已提交
328 329
      that all software implementations receiving that object will agree on
      the name-value mappings.
N
Niels 已提交
330 331 332 333 334
    - When the names within an object are not unique, later stored name/value
      pairs overwrite previously stored name/value pairs, leaving the used
      names unique. For instance, `{"key": 1}` and `{"key": 2, "key": 1}` will
      be treated as equal and both stored as `{"key": 1}`.
    - Internally, name/value pairs are stored in lexicographical order of the
N
Niels 已提交
335 336 337
      names. Objects will also be serialized (see @ref dump) in this order.
      For instance, `{"b": 1, "a": 2}` and `{"a": 2, "b": 1}` will be stored
      and serialized as `{"a": 2, "b": 1}`.
N
Niels 已提交
338 339 340 341 342 343 344 345 346 347 348 349
    - When comparing objects, the order of the name/value pairs is irrelevant.
      This makes objects interoperable in the sense that they will not be
      affected by these differences. For instance, `{"b": 1, "a": 2}` and
      `{"a": 2, "b": 1}` will be treated as equal.

    #### Limits

    [RFC 7159](http://rfc7159.net/rfc7159) specifies:
    > An implementation may set limits on the maximum depth of nesting.

    In this class, the object's limit of nesting is not constraint explicitly.
    However, a maximum depth of nesting may be introduced by the compiler or
N
Niels 已提交
350 351
    runtime environment. A theoretical limit can be queried by calling the
    @ref max_size function of a JSON object.
N
Niels 已提交
352 353 354

    #### Storage

355
    Objects are stored as pointers in a @ref basic_json type. That is, for any
N
Niels 已提交
356 357
    access to object values, a pointer of type `object_t*` must be
    dereferenced.
N
Niels 已提交
358

359 360
    @sa @ref array_t -- type for an array value

N
Niels 已提交
361
    @since version 1.0.0
N
Niels 已提交
362

N
Niels 已提交
363 364 365 366 367
    @note The order name/value pairs are added to the object is *not*
    preserved by the library. Therefore, iterating an object may return
    name/value pairs in a different order than they were originally stored. In
    fact, keys will be traversed in alphabetical order as `std::map` with
    `std::less` is used by default. Please note this behavior conforms to [RFC
N
Niels 已提交
368 369
    7159](http://rfc7159.net/rfc7159), because any order implements the
    specified "unordered" nature of JSON objects.
N
Niels 已提交
370
    */
N
Niels 已提交
371 372 373 374 375
    using object_t = ObjectType<StringType,
          basic_json,
          std::less<StringType>,
          AllocatorType<std::pair<const StringType,
          basic_json>>>;
N
Niels 已提交
376 377 378 379 380 381 382

    /*!
    @brief a type for an array

    [RFC 7159](http://rfc7159.net/rfc7159) describes JSON arrays as follows:
    > An array is an ordered sequence of zero or more values.

N
Niels 已提交
383 384 385 386 387
    To store objects in C++, a type is defined by the template parameters
    explained below.

    @tparam ArrayType  container type to store arrays (e.g., `std::vector` or
    `std::list`)
N
Niels 已提交
388
    @tparam AllocatorType allocator to use for arrays (e.g., `std::allocator`)
N
Niels 已提交
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408

    #### Default type

    With the default values for @a ArrayType (`std::vector`) and @a
    AllocatorType (`std::allocator`), the default value for @a array_t is:

    @code {.cpp}
    std::vector<
      basic_json, // value_type
      std::allocator<basic_json> // allocator_type
    >
    @endcode

    #### Limits

    [RFC 7159](http://rfc7159.net/rfc7159) specifies:
    > An implementation may set limits on the maximum depth of nesting.

    In this class, the array's limit of nesting is not constraint explicitly.
    However, a maximum depth of nesting may be introduced by the compiler or
N
Niels 已提交
409 410
    runtime environment. A theoretical limit can be queried by calling the
    @ref max_size function of a JSON array.
N
Niels 已提交
411 412 413

    #### Storage

414
    Arrays are stored as pointers in a @ref basic_json type. That is, for any
N
Niels 已提交
415
    access to array values, a pointer of type `array_t*` must be dereferenced.
416 417 418

    @sa @ref object_t -- type for an object value

N
Niels 已提交
419
    @since version 1.0.0
N
Niels 已提交
420
    */
N
Niels 已提交
421
    using array_t = ArrayType<basic_json, AllocatorType<basic_json>>;
N
Niels 已提交
422 423 424 425 426 427 428

    /*!
    @brief a type for a string

    [RFC 7159](http://rfc7159.net/rfc7159) describes JSON strings as follows:
    > A string is a sequence of zero or more Unicode characters.

N
Niels 已提交
429
    To store objects in C++, a type is defined by the template parameter
N
Niels 已提交
430 431
    described below. Unicode values are split by the JSON class into
    byte-sized characters during deserialization.
N
Niels 已提交
432

N
Niels 已提交
433 434
    @tparam StringType  the container to store strings (e.g., `std::string`).
    Note this container is used for keys/names in objects, see @ref object_t.
N
Niels 已提交
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461

    #### Default type

    With the default values for @a StringType (`std::string`), the default
    value for @a string_t is:

    @code {.cpp}
    std::string
    @endcode

    #### String comparison

    [RFC 7159](http://rfc7159.net/rfc7159) states:
    > Software implementations are typically required to test names of object
    > members for equality. Implementations that transform the textual
    > representation into sequences of Unicode code units and then perform the
    > comparison numerically, code unit by code unit, are interoperable in the
    > sense that implementations will agree in all cases on equality or
    > inequality of two strings. For example, implementations that compare
    > strings with escaped characters unconverted may incorrectly find that
    > `"a\\b"` and `"a\u005Cb"` are not equal.

    This implementation is interoperable as it does compare strings code unit
    by code unit.

    #### Storage

462 463
    String values are stored as pointers in a @ref basic_json type. That is,
    for any access to string values, a pointer of type `string_t*` must be
N
Niels 已提交
464
    dereferenced.
465

N
Niels 已提交
466
    @since version 1.0.0
N
Niels 已提交
467
    */
N
Niels 已提交
468
    using string_t = StringType;
N
Niels 已提交
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489

    /*!
    @brief a type for a boolean

    [RFC 7159](http://rfc7159.net/rfc7159) implicitly describes a boolean as a
    type which differentiates the two literals `true` and `false`.

    To store objects in C++, a type is defined by the template parameter @a
    BooleanType which chooses the type to use.

    #### Default type

    With the default values for @a BooleanType (`bool`), the default value for
    @a boolean_t is:

    @code {.cpp}
    bool
    @endcode

    #### Storage

490 491
    Boolean values are stored directly inside a @ref basic_json type.

N
Niels 已提交
492
    @since version 1.0.0
N
Niels 已提交
493
    */
N
Niels 已提交
494
    using boolean_t = BooleanType;
N
Niels 已提交
495 496 497 498 499

    /*!
    @brief a type for a number (integer)

    [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
N
Niels 已提交
500 501 502 503 504 505 506 507 508 509 510 511 512
    > The representation of numbers is similar to that used in most
    > programming languages. A number is represented in base 10 using decimal
    > digits. It contains an integer component that may be prefixed with an
    > optional minus sign, which may be followed by a fraction part and/or an
    > exponent part. Leading zeros are not allowed. (...) Numeric values that
    > cannot be represented in the grammar below (such as Infinity and NaN)
    > are not permitted.

    This description includes both integer and floating-point numbers.
    However, C++ allows more precise storage if it is known whether the number
    is a signed integer, an unsigned integer or a floating-point number.
    Therefore, three different types, @ref number_integer_t, @ref
    number_unsigned_t and @ref number_float_t are used.
N
Niels 已提交
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530

    To store integer numbers in C++, a type is defined by the template
    parameter @a NumberIntegerType which chooses the type to use.

    #### Default type

    With the default values for @a NumberIntegerType (`int64_t`), the default
    value for @a number_integer_t is:

    @code {.cpp}
    int64_t
    @endcode

    #### Default behavior

    - The restrictions about leading zeros is not enforced in C++. Instead,
      leading zeros in integer literals lead to an interpretation as octal
      number. Internally, the value will be stored as decimal number. For
N
Niels 已提交
531 532
      instance, the C++ integer literal `010` will be serialized to `8`.
      During deserialization, leading zeros yield an error.
N
Niels 已提交
533 534 535 536 537 538 539 540 541 542
    - Not-a-number (NaN) values will be serialized to `null`.

    #### Limits

    [RFC 7159](http://rfc7159.net/rfc7159) specifies:
    > An implementation may set limits on the range and precision of numbers.

    When the default type is used, the maximal integer number that can be
    stored is `9223372036854775807` (INT64_MAX) and the minimal integer number
    that can be stored is `-9223372036854775808` (INT64_MIN). Integer numbers
N
Niels 已提交
543 544 545 546
    that are out of range will yield over/underflow when used in a
    constructor. During deserialization, too large or small integer numbers
    will be automatically be stored as @ref number_unsigned_t or @ref
    number_float_t.
N
Niels 已提交
547 548 549 550 551 552 553 554 555 556 557

    [RFC 7159](http://rfc7159.net/rfc7159) further states:
    > Note that when such software is used, numbers that are integers and are
    > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense
    > that implementations will agree exactly on their numeric values.

    As this range is a subrange of the exactly supported range [INT64_MIN,
    INT64_MAX], this class's integer type is interoperable.

    #### Storage

558 559 560 561
    Integer number values are stored directly inside a @ref basic_json type.

    @sa @ref number_float_t -- type for number values (floating-point)

562 563
    @sa @ref number_unsigned_t -- type for number values (unsigned integer)

N
Niels 已提交
564
    @since version 1.0.0
N
Niels 已提交
565
    */
N
Niels 已提交
566
    using number_integer_t = NumberIntegerType;
N
Niels 已提交
567

568 569 570 571
    /*!
    @brief a type for a number (unsigned)

    [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
N
Niels 已提交
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
    > The representation of numbers is similar to that used in most
    > programming languages. A number is represented in base 10 using decimal
    > digits. It contains an integer component that may be prefixed with an
    > optional minus sign, which may be followed by a fraction part and/or an
    > exponent part. Leading zeros are not allowed. (...) Numeric values that
    > cannot be represented in the grammar below (such as Infinity and NaN)
    > are not permitted.

    This description includes both integer and floating-point numbers.
    However, C++ allows more precise storage if it is known whether the number
    is a signed integer, an unsigned integer or a floating-point number.
    Therefore, three different types, @ref number_integer_t, @ref
    number_unsigned_t and @ref number_float_t are used.

    To store unsigned integer numbers in C++, a type is defined by the
    template parameter @a NumberUnsignedType which chooses the type to use.
588 589 590

    #### Default type

N
Niels 已提交
591 592
    With the default values for @a NumberUnsignedType (`uint64_t`), the
    default value for @a number_unsigned_t is:
593 594 595 596 597 598 599 600 601 602

    @code {.cpp}
    uint64_t
    @endcode

    #### Default behavior

    - The restrictions about leading zeros is not enforced in C++. Instead,
      leading zeros in integer literals lead to an interpretation as octal
      number. Internally, the value will be stored as decimal number. For
N
Niels 已提交
603 604
      instance, the C++ integer literal `010` will be serialized to `8`.
      During deserialization, leading zeros yield an error.
605 606 607 608 609 610 611 612
    - Not-a-number (NaN) values will be serialized to `null`.

    #### Limits

    [RFC 7159](http://rfc7159.net/rfc7159) specifies:
    > An implementation may set limits on the range and precision of numbers.

    When the default type is used, the maximal integer number that can be
N
Niels 已提交
613 614 615 616 617
    stored is `18446744073709551615` (UINT64_MAX) and the minimal integer
    number that can be stored is `0`. Integer numbers that are out of range
    will yield over/underflow when used in a constructor. During
    deserialization, too large or small integer numbers will be automatically
    be stored as @ref number_integer_t or @ref number_float_t.
618 619 620 621 622 623 624

    [RFC 7159](http://rfc7159.net/rfc7159) further states:
    > Note that when such software is used, numbers that are integers and are
    > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense
    > that implementations will agree exactly on their numeric values.

    As this range is a subrange (when considered in conjunction with the
N
Niels 已提交
625 626
    number_integer_t type) of the exactly supported range [0, UINT64_MAX],
    this class's integer type is interoperable.
627 628 629 630 631 632 633 634 635 636 637

    #### Storage

    Integer number values are stored directly inside a @ref basic_json type.

    @sa @ref number_float_t -- type for number values (floating-point)
    @sa @ref number_integer_t -- type for number values (integer)

    @since version 2.0.0
    */
    using number_unsigned_t = NumberUnsignedType;
N
Niels 已提交
638

N
Niels 已提交
639 640 641 642
    /*!
    @brief a type for a number (floating-point)

    [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
N
Niels 已提交
643 644 645 646 647 648 649 650 651 652 653 654 655
    > The representation of numbers is similar to that used in most
    > programming languages. A number is represented in base 10 using decimal
    > digits. It contains an integer component that may be prefixed with an
    > optional minus sign, which may be followed by a fraction part and/or an
    > exponent part. Leading zeros are not allowed. (...) Numeric values that
    > cannot be represented in the grammar below (such as Infinity and NaN)
    > are not permitted.

    This description includes both integer and floating-point numbers.
    However, C++ allows more precise storage if it is known whether the number
    is a signed integer, an unsigned integer or a floating-point number.
    Therefore, three different types, @ref number_integer_t, @ref
    number_unsigned_t and @ref number_float_t are used.
N
Niels 已提交
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671

    To store floating-point numbers in C++, a type is defined by the template
    parameter @a NumberFloatType which chooses the type to use.

    #### Default type

    With the default values for @a NumberFloatType (`double`), the default
    value for @a number_float_t is:

    @code {.cpp}
    double
    @endcode

    #### Default behavior

    - The restrictions about leading zeros is not enforced in C++. Instead,
N
Niels 已提交
672 673
      leading zeros in floating-point literals will be ignored. Internally,
      the value will be stored as decimal number. For instance, the C++
N
Niels 已提交
674 675 676 677 678 679 680 681 682 683
      floating-point literal `01.2` will be serialized to `1.2`. During
      deserialization, leading zeros yield an error.
    - Not-a-number (NaN) values will be serialized to `null`.

    #### Limits

    [RFC 7159](http://rfc7159.net/rfc7159) states:
    > This specification allows implementations to set limits on the range and
    > precision of numbers accepted. Since software that implements IEEE
    > 754-2008 binary64 (double precision) numbers is generally available and
N
Niels 已提交
684 685 686
    > widely used, good interoperability can be achieved by implementations
    > that expect no more precision or range than these provide, in the sense
    > that implementations will approximate JSON numbers within the expected
N
Niels 已提交
687 688 689 690
    > precision.

    This implementation does exactly follow this approach, as it uses double
    precision floating-point numbers. Note values smaller than
N
Niels 已提交
691
    `-1.79769313486232e+308` and values greater than `1.79769313486232e+308`
N
Niels 已提交
692 693 694 695
    will be stored as NaN internally and be serialized to `null`.

    #### Storage

696 697 698 699 700
    Floating-point number values are stored directly inside a @ref basic_json
    type.

    @sa @ref number_integer_t -- type for number values (integer)

701 702
    @sa @ref number_unsigned_t -- type for number values (unsigned integer)

N
Niels 已提交
703
    @since version 1.0.0
N
Niels 已提交
704
    */
N
Niels 已提交
705 706
    using number_float_t = NumberFloatType;

N
Niels 已提交
707 708
    /// @}

N
Niels 已提交
709

N
Niels 已提交
710 711 712
    ///////////////////////////
    // JSON type enumeration //
    ///////////////////////////
N
Niels 已提交
713

N
Niels 已提交
714
    /*!
N
Niels 已提交
715
    @brief the JSON type enumeration
N
Niels 已提交
716

N
Niels 已提交
717
    This enumeration collects the different JSON types. It is internally used
718 719
    to distinguish the stored values, and the functions @ref is_null(), @ref
    is_object(), @ref is_array(), @ref is_string(), @ref is_boolean(), @ref
N
Niels 已提交
720 721 722 723 724 725 726 727 728 729 730 731 732
    is_number() (with @ref is_number_integer(), @ref is_number_unsigned(), and
    @ref is_number_float()), @ref is_discarded(), @ref is_primitive(), and
    @ref is_structured() rely on it.

    @note There are three enumeration entries (number_integer,
    number_unsigned, and number_float), because the library distinguishes
    these three types for numbers: @ref number_unsigned_t is used for unsigned
    integers, @ref number_integer_t is used for signed integers, and @ref
    number_float_t is used for floating-point numbers or to approximate
    integers which do not fit in the limits of their respective type.

    @sa @ref basic_json(const value_t value_type) -- create a JSON value with
    the default value for a given type
733

N
Niels 已提交
734
    @since version 1.0.0
N
Niels 已提交
735
    */
N
Niels 已提交
736 737
    enum class value_t : uint8_t
    {
N
Niels 已提交
738 739 740 741 742
        null,            ///< null value
        object,          ///< object (unordered set of name/value pairs)
        array,           ///< array (ordered collection of values)
        string,          ///< string value
        boolean,         ///< boolean value
N
Niels 已提交
743
        number_integer,  ///< number value (signed integer)
N
Niels 已提交
744 745 746
        number_unsigned, ///< number value (unsigned integer)
        number_float,    ///< number value (floating-point)
        discarded        ///< discarded by the the parser callback function
N
Niels 已提交
747 748
    };

N
Niels 已提交
749

N
Niels 已提交
750
  private:
N
Niels 已提交
751

N
Cleanup  
Niels 已提交
752 753
    /// helper for exception-safe object creation
    template<typename T, typename... Args>
N
cleanup  
Niels 已提交
754
    static T* create(Args&& ... args)
N
Cleanup  
Niels 已提交
755 756 757 758 759 760 761 762
    {
        AllocatorType<T> alloc;
        auto deleter = [&](T * object)
        {
            alloc.deallocate(object, 1);
        };
        std::unique_ptr<T, decltype(deleter)> object(alloc.allocate(1), deleter);
        alloc.construct(object.get(), std::forward<Args>(args)...);
N
Niels 已提交
763
        assert(object.get() != nullptr);
N
Cleanup  
Niels 已提交
764 765 766
        return object.release();
    }

N
Niels 已提交
767 768 769 770
    ////////////////////////
    // JSON value storage //
    ////////////////////////

771 772 773
    /*!
    @brief a JSON value

N
Niels 已提交
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
    The actual storage for a JSON value of the @ref basic_json class. This
    union combines the different storage types for the JSON value types
    defined in @ref value_t.

    JSON type | value_t type    | used type
    --------- | --------------- | ------------------------
    object    | object          | pointer to @ref object_t
    array     | array           | pointer to @ref array_t
    string    | string          | pointer to @ref string_t
    boolean   | boolean         | @ref boolean_t
    number    | number_integer  | @ref number_integer_t
    number    | number_unsigned | @ref number_unsigned_t
    number    | number_float    | @ref number_float_t
    null      | null            | *no value is stored*

    @note Variable-length types (objects, arrays, and strings) are stored as
    pointers. The size of the union should not exceed 64 bits if the default
    value types are used.
792

N
Niels 已提交
793
    @since version 1.0.0
794
    */
N
Niels 已提交
795 796 797 798 799 800 801 802
    union json_value
    {
        /// object (stored with pointer to save storage)
        object_t* object;
        /// array (stored with pointer to save storage)
        array_t* array;
        /// string (stored with pointer to save storage)
        string_t* string;
N
Niels 已提交
803
        /// boolean
N
Niels 已提交
804 805 806
        boolean_t boolean;
        /// number (integer)
        number_integer_t number_integer;
807 808
        /// number (unsigned integer)
        number_unsigned_t number_unsigned;
N
Niels 已提交
809
        /// number (floating-point)
N
Niels 已提交
810 811 812
        number_float_t number_float;

        /// default constructor (for null values)
N
Niels 已提交
813
        json_value() = default;
N
Niels 已提交
814
        /// constructor for booleans
N
Niels 已提交
815
        json_value(boolean_t v) noexcept : boolean(v) {}
N
Niels 已提交
816
        /// constructor for numbers (integer)
N
Niels 已提交
817
        json_value(number_integer_t v) noexcept : number_integer(v) {}
818 819
        /// constructor for numbers (unsigned)
        json_value(number_unsigned_t v) noexcept : number_unsigned(v) {}
N
Niels 已提交
820
        /// constructor for numbers (floating-point)
N
Niels 已提交
821
        json_value(number_float_t v) noexcept : number_float(v) {}
N
Niels 已提交
822
        /// constructor for empty values of a given type
N
Niels 已提交
823
        json_value(value_t t)
N
Niels 已提交
824 825 826
        {
            switch (t)
            {
827
                case value_t::object:
N
Niels 已提交
828
                {
N
Cleanup  
Niels 已提交
829
                    object = create<object_t>();
N
Niels 已提交
830 831
                    break;
                }
N
Niels 已提交
832

833
                case value_t::array:
N
Niels 已提交
834
                {
N
Cleanup  
Niels 已提交
835
                    array = create<array_t>();
N
Niels 已提交
836 837
                    break;
                }
N
Niels 已提交
838

839
                case value_t::string:
N
Niels 已提交
840
                {
N
Cleanup  
Niels 已提交
841
                    string = create<string_t>("");
N
Niels 已提交
842 843
                    break;
                }
N
Niels 已提交
844

845
                case value_t::boolean:
N
Niels 已提交
846 847 848 849 850
                {
                    boolean = boolean_t(false);
                    break;
                }

851
                case value_t::number_integer:
N
Niels 已提交
852 853 854 855
                {
                    number_integer = number_integer_t(0);
                    break;
                }
N
Niels 已提交
856

857 858 859 860 861
                case value_t::number_unsigned:
                {
                    number_unsigned = number_unsigned_t(0);
                    break;
                }
N
Niels 已提交
862

863
                case value_t::number_float:
N
Niels 已提交
864 865 866 867
                {
                    number_float = number_float_t(0.0);
                    break;
                }
868 869 870 871 872

                default:
                {
                    break;
                }
N
Niels 已提交
873 874
            }
        }
N
Niels 已提交
875 876

        /// constructor for strings
N
Niels 已提交
877
        json_value(const string_t& value)
N
Niels 已提交
878
        {
N
Cleanup  
Niels 已提交
879
            string = create<string_t>(value);
N
Niels 已提交
880 881 882
        }

        /// constructor for objects
N
Niels 已提交
883
        json_value(const object_t& value)
N
Niels 已提交
884
        {
N
Cleanup  
Niels 已提交
885
            object = create<object_t>(value);
N
Niels 已提交
886 887 888
        }

        /// constructor for arrays
N
Niels 已提交
889
        json_value(const array_t& value)
N
Niels 已提交
890
        {
N
Cleanup  
Niels 已提交
891
            array = create<array_t>(value);
N
Niels 已提交
892
        }
N
Niels 已提交
893 894
    };

895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
    /*!
    @brief checks the class invariants

    This function asserts the class invariants. It needs to be called at the
    end of every constructor to make sure that created objects respect the
    invariant. Furthermore, it has to be called each time the type of a JSON
    value is changed, because the invariant expresses a relationship between
    @a m_type and @a m_value.
    */
    void assert_invariant() const
    {
        assert(m_type != value_t::object or m_value.object != nullptr);
        assert(m_type != value_t::array or m_value.array != nullptr);
        assert(m_type != value_t::string or m_value.string != nullptr);
    }
N
Niels 已提交
910 911

  public:
N
Niels 已提交
912 913 914 915
    //////////////////////////
    // JSON parser callback //
    //////////////////////////

N
Niels 已提交
916 917 918 919 920
    /*!
    @brief JSON callback events

    This enumeration lists the parser events that can trigger calling a
    callback function of type @ref parser_callback_t during parsing.
921

N
Niels 已提交
922 923
    @image html callback_events.png "Example when certain parse events are triggered"

N
Niels 已提交
924
    @since version 1.0.0
N
Niels 已提交
925
    */
N
Niels 已提交
926 927
    enum class parse_event_t : uint8_t
    {
N
Niels 已提交
928 929 930 931 932 933 934 935 936 937 938 939
        /// the parser read `{` and started to process a JSON object
        object_start,
        /// the parser read `}` and finished processing a JSON object
        object_end,
        /// the parser read `[` and started to process a JSON array
        array_start,
        /// the parser read `]` and finished processing a JSON array
        array_end,
        /// the parser read a key of a value in an object
        key,
        /// the parser finished reading a JSON value
        value
N
Niels 已提交
940 941
    };

N
Niels 已提交
942 943 944 945
    /*!
    @brief per-element parser callback type

    With a parser callback function, the result of parsing a JSON text can be
N
Niels 已提交
946
    influenced. When passed to @ref parse(std::istream&, const
N
Niels 已提交
947
    parser_callback_t) or @ref parse(const char*, const parser_callback_t),
N
Niels 已提交
948 949 950 951 952
    it is called on certain events (passed as @ref parse_event_t via parameter
    @a event) with a set recursion depth @a depth and context JSON value
    @a parsed. The return value of the callback function is a boolean
    indicating whether the element that emitted the callback shall be kept or
    not.
N
Niels 已提交
953 954 955 956 957 958 959 960 961 962 963 964 965 966

    We distinguish six scenarios (determined by the event type) in which the
    callback function can be called. The following table describes the values
    of the parameters @a depth, @a event, and @a parsed.

    parameter @a event | description | parameter @a depth | parameter @a parsed
    ------------------ | ----------- | ------------------ | -------------------
    parse_event_t::object_start | the parser read `{` and started to process a JSON object | depth of the parent of the JSON object | a JSON value with type discarded
    parse_event_t::key | the parser read a key of a value in an object | depth of the currently parsed JSON object | a JSON string containing the key
    parse_event_t::object_end | the parser read `}` and finished processing a JSON object | depth of the parent of the JSON object | the parsed JSON object
    parse_event_t::array_start | the parser read `[` and started to process a JSON array | depth of the parent of the JSON array | a JSON value with type discarded
    parse_event_t::array_end | the parser read `]` and finished processing a JSON array | depth of the parent of the JSON array | the parsed JSON array
    parse_event_t::value | the parser finished reading a JSON value | depth of the value | the parsed JSON value

N
Niels 已提交
967 968
    @image html callback_events.png "Example when certain parse events are triggered"

N
Niels 已提交
969 970
    Discarding a value (i.e., returning `false`) has different effects
    depending on the context in which function was called:
N
Niels 已提交
971 972 973

    - Discarded values in structured types are skipped. That is, the parser
      will behave as if the discarded value was never read.
N
Niels 已提交
974 975
    - In case a value outside a structured type is skipped, it is replaced
      with `null`. This case happens if the top-level element is skipped.
N
Niels 已提交
976

N
Niels 已提交
977
    @param[in] depth  the depth of the recursion during parsing
N
Niels 已提交
978

N
Niels 已提交
979
    @param[in] event  an event of type parse_event_t indicating the context in
N
Niels 已提交
980 981 982 983 984 985 986 987 988 989
    the callback function has been called

    @param[in,out] parsed  the current intermediate parse result; note that
    writing to this value has no effect for parse_event_t::key events

    @return Whether the JSON value which called the function during parsing
    should be kept (`true`) or not (`false`). In the latter case, it is either
    skipped completely or replaced by an empty discarded object.

    @sa @ref parse(std::istream&, parser_callback_t) or
N
Niels 已提交
990
    @ref parse(const char*, parser_callback_t) for examples
991

N
Niels 已提交
992
    @since version 1.0.0
N
Niels 已提交
993
    */
N
Niels 已提交
994 995 996
    using parser_callback_t = std::function<bool(int depth,
                              parse_event_t event,
                              basic_json& parsed)>;
N
Niels 已提交
997

N
Niels 已提交
998 999 1000 1001 1002

    //////////////////
    // constructors //
    //////////////////

N
Niels 已提交
1003
    /// @name constructors and destructors
N
Niels 已提交
1004 1005
    /// Constructors of class @ref basic_json, copy/move constructor, copy
    /// assignment, static functions creating objects, and the destructor.
N
Niels 已提交
1006 1007
    /// @{

N
Niels 已提交
1008 1009 1010
    /*!
    @brief create an empty value with a given type

N
Niels 已提交
1011 1012 1013 1014 1015
    Create an empty JSON value with a given type. The value will be default
    initialized with an empty value which depends on the type:

    Value type  | initial value
    ----------- | -------------
N
Niels 已提交
1016 1017 1018 1019 1020 1021
    null        | `null`
    boolean     | `false`
    string      | `""`
    number      | `0`
    object      | `{}`
    array       | `[]`
N
Niels 已提交
1022

1023
    @param[in] value_type  the type of the value to create
N
Niels 已提交
1024 1025 1026

    @complexity Constant.

N
Niels 已提交
1027
    @throw std::bad_alloc if allocation for object, array, or string value
N
Niels 已提交
1028
    fails
N
Niels 已提交
1029 1030 1031

    @liveexample{The following code shows the constructor for different @ref
    value_t values,basic_json__value_t}
1032 1033 1034 1035 1036 1037

    @sa @ref basic_json(std::nullptr_t) -- create a `null` value
    @sa @ref basic_json(boolean_t value) -- create a boolean value
    @sa @ref basic_json(const string_t&) -- create a string value
    @sa @ref basic_json(const object_t&) -- create a object value
    @sa @ref basic_json(const array_t&) -- create a array value
N
Niels 已提交
1038 1039 1040 1041
    @sa @ref basic_json(const number_float_t) -- create a number
    (floating-point) value
    @sa @ref basic_json(const number_integer_t) -- create a number (integer)
    value
1042 1043
    @sa @ref basic_json(const number_unsigned_t) -- create a number (unsigned)
    value
1044

N
Niels 已提交
1045
    @since version 1.0.0
N
Niels 已提交
1046
    */
1047 1048
    basic_json(const value_t value_type)
        : m_type(value_type), m_value(value_type)
1049 1050 1051
    {
        assert_invariant();
    }
N
Niels 已提交
1052

N
Niels 已提交
1053
    /*!
N
Niels 已提交
1054
    @brief create a null object
N
Niels 已提交
1055

N
Niels 已提交
1056 1057
    Create a `null` JSON value. It either takes a null pointer as parameter
    (explicitly creating `null`) or no parameter (implicitly creating `null`).
N
Niels 已提交
1058 1059
    The passed null pointer itself is not read -- it is only used to choose
    the right constructor.
N
Niels 已提交
1060 1061 1062

    @complexity Constant.

N
Niels 已提交
1063 1064 1065
    @exceptionsafety No-throw guarantee: this constructor never throws
    exceptions.

N
Niels 已提交
1066 1067
    @liveexample{The following code shows the constructor with and without a
    null pointer parameter.,basic_json__nullptr_t}
1068

N
Niels 已提交
1069
    @since version 1.0.0
N
Niels 已提交
1070
    */
N
Niels 已提交
1071
    basic_json(std::nullptr_t = nullptr) noexcept
N
Niels 已提交
1072
        : basic_json(value_t::null)
1073 1074 1075
    {
        assert_invariant();
    }
N
Niels 已提交
1076

N
Niels 已提交
1077 1078 1079 1080 1081
    /*!
    @brief create an object (explicit)

    Create an object JSON value with a given content.

1082
    @param[in] val  a value for the object
N
Niels 已提交
1083

1084
    @complexity Linear in the size of the passed @a val.
N
Niels 已提交
1085

N
Niels 已提交
1086
    @throw std::bad_alloc if allocation for object value fails
N
Niels 已提交
1087

N
Niels 已提交
1088 1089
    @liveexample{The following code shows the constructor with an @ref
    object_t parameter.,basic_json__object_t}
N
Niels 已提交
1090

1091 1092 1093
    @sa @ref basic_json(const CompatibleObjectType&) -- create an object value
    from a compatible STL container

N
Niels 已提交
1094
    @since version 1.0.0
N
Niels 已提交
1095
    */
1096 1097
    basic_json(const object_t& val)
        : m_type(value_t::object), m_value(val)
1098 1099 1100
    {
        assert_invariant();
    }
N
Niels 已提交
1101

N
Niels 已提交
1102 1103 1104 1105
    /*!
    @brief create an object (implicit)

    Create an object JSON value with a given content. This constructor allows
N
Niels 已提交
1106 1107
    any type @a CompatibleObjectType that can be used to construct values of
    type @ref object_t.
N
Niels 已提交
1108

N
Niels 已提交
1109 1110 1111 1112 1113
    @tparam CompatibleObjectType An object type whose `key_type` and
    `value_type` is compatible to @ref object_t. Examples include `std::map`,
    `std::unordered_map`, `std::multimap`, and `std::unordered_multimap` with
    a `key_type` of `std::string`, and a `value_type` from which a @ref
    basic_json value can be constructed.
N
Niels 已提交
1114

1115
    @param[in] val  a value for the object
N
Niels 已提交
1116

1117
    @complexity Linear in the size of the passed @a val.
N
Niels 已提交
1118

N
Niels 已提交
1119
    @throw std::bad_alloc if allocation for object value fails
N
Niels 已提交
1120 1121 1122 1123

    @liveexample{The following code shows the constructor with several
    compatible object type parameters.,basic_json__CompatibleObjectType}

1124 1125
    @sa @ref basic_json(const object_t&) -- create an object value

N
Niels 已提交
1126
    @since version 1.0.0
N
Niels 已提交
1127
    */
N
Niels 已提交
1128 1129 1130
    template<class CompatibleObjectType, typename std::enable_if<
                 std::is_constructible<typename object_t::key_type, typename CompatibleObjectType::key_type>::value and
                 std::is_constructible<basic_json, typename CompatibleObjectType::mapped_type>::value, int>::type = 0>
1131
    basic_json(const CompatibleObjectType& val)
N
Niels 已提交
1132 1133
        : m_type(value_t::object)
    {
1134 1135
        using std::begin;
        using std::end;
1136
        m_value.object = create<object_t>(begin(val), end(val));
1137
        assert_invariant();
N
Niels 已提交
1138
    }
N
Niels 已提交
1139

N
Niels 已提交
1140 1141 1142 1143 1144
    /*!
    @brief create an array (explicit)

    Create an array JSON value with a given content.

1145
    @param[in] val  a value for the array
N
Niels 已提交
1146

1147
    @complexity Linear in the size of the passed @a val.
N
Niels 已提交
1148

N
Niels 已提交
1149
    @throw std::bad_alloc if allocation for array value fails
N
Niels 已提交
1150 1151 1152 1153

    @liveexample{The following code shows the constructor with an @ref array_t
    parameter.,basic_json__array_t}

1154 1155 1156
    @sa @ref basic_json(const CompatibleArrayType&) -- create an array value
    from a compatible STL containers

N
Niels 已提交
1157
    @since version 1.0.0
N
Niels 已提交
1158
    */
1159 1160
    basic_json(const array_t& val)
        : m_type(value_t::array), m_value(val)
1161 1162 1163
    {
        assert_invariant();
    }
N
Niels 已提交
1164

N
Niels 已提交
1165 1166 1167 1168
    /*!
    @brief create an array (implicit)

    Create an array JSON value with a given content. This constructor allows
N
Niels 已提交
1169 1170
    any type @a CompatibleArrayType that can be used to construct values of
    type @ref array_t.
N
Niels 已提交
1171

N
Niels 已提交
1172 1173 1174 1175 1176
    @tparam CompatibleArrayType An object type whose `value_type` is
    compatible to @ref array_t. Examples include `std::vector`, `std::deque`,
    `std::list`, `std::forward_list`, `std::array`, `std::set`,
    `std::unordered_set`, `std::multiset`, and `unordered_multiset` with a
    `value_type` from which a @ref basic_json value can be constructed.
N
Niels 已提交
1177

1178
    @param[in] val  a value for the array
N
Niels 已提交
1179

1180
    @complexity Linear in the size of the passed @a val.
N
Niels 已提交
1181

N
Niels 已提交
1182
    @throw std::bad_alloc if allocation for array value fails
N
Niels 已提交
1183 1184 1185 1186

    @liveexample{The following code shows the constructor with several
    compatible array type parameters.,basic_json__CompatibleArrayType}

1187 1188
    @sa @ref basic_json(const array_t&) -- create an array value

N
Niels 已提交
1189
    @since version 1.0.0
N
Niels 已提交
1190
    */
N
Niels 已提交
1191 1192 1193 1194 1195 1196 1197 1198
    template<class CompatibleArrayType, typename std::enable_if<
                 not std::is_same<CompatibleArrayType, typename basic_json_t::iterator>::value and
                 not std::is_same<CompatibleArrayType, typename basic_json_t::const_iterator>::value and
                 not std::is_same<CompatibleArrayType, typename basic_json_t::reverse_iterator>::value and
                 not std::is_same<CompatibleArrayType, typename basic_json_t::const_reverse_iterator>::value and
                 not std::is_same<CompatibleArrayType, typename array_t::iterator>::value and
                 not std::is_same<CompatibleArrayType, typename array_t::const_iterator>::value and
                 std::is_constructible<basic_json, typename CompatibleArrayType::value_type>::value, int>::type = 0>
1199
    basic_json(const CompatibleArrayType& val)
N
Niels 已提交
1200 1201
        : m_type(value_t::array)
    {
1202 1203
        using std::begin;
        using std::end;
1204
        m_value.array = create<array_t>(begin(val), end(val));
1205
        assert_invariant();
N
Niels 已提交
1206
    }
N
Niels 已提交
1207

N
Niels 已提交
1208 1209 1210 1211 1212
    /*!
    @brief create a string (explicit)

    Create an string JSON value with a given content.

1213
    @param[in] val  a value for the string
N
Niels 已提交
1214

1215
    @complexity Linear in the size of the passed @a val.
N
Niels 已提交
1216

N
Niels 已提交
1217
    @throw std::bad_alloc if allocation for string value fails
N
Niels 已提交
1218

N
Niels 已提交
1219 1220
    @liveexample{The following code shows the constructor with an @ref
    string_t parameter.,basic_json__string_t}
N
Niels 已提交
1221

1222 1223 1224 1225 1226
    @sa @ref basic_json(const typename string_t::value_type*) -- create a
    string value from a character pointer
    @sa @ref basic_json(const CompatibleStringType&) -- create a string value
    from a compatible string container

N
Niels 已提交
1227
    @since version 1.0.0
N
Niels 已提交
1228
    */
1229 1230
    basic_json(const string_t& val)
        : m_type(value_t::string), m_value(val)
1231 1232 1233
    {
        assert_invariant();
    }
N
Niels 已提交
1234

N
Niels 已提交
1235 1236 1237
    /*!
    @brief create a string (explicit)

N
Niels 已提交
1238
    Create a string JSON value with a given content.
N
Niels 已提交
1239

1240
    @param[in] val  a literal value for the string
N
Niels 已提交
1241

1242
    @complexity Linear in the size of the passed @a val.
N
Niels 已提交
1243

N
Niels 已提交
1244
    @throw std::bad_alloc if allocation for string value fails
N
Niels 已提交
1245 1246 1247 1248

    @liveexample{The following code shows the constructor with string literal
    parameter.,basic_json__string_t_value_type}

1249 1250 1251 1252
    @sa @ref basic_json(const string_t&) -- create a string value
    @sa @ref basic_json(const CompatibleStringType&) -- create a string value
    from a compatible string container

N
Niels 已提交
1253
    @since version 1.0.0
N
Niels 已提交
1254
    */
1255 1256
    basic_json(const typename string_t::value_type* val)
        : basic_json(string_t(val))
1257 1258 1259
    {
        assert_invariant();
    }
N
Niels 已提交
1260

N
Niels 已提交
1261 1262 1263 1264 1265
    /*!
    @brief create a string (implicit)

    Create a string JSON value with a given content.

1266
    @param[in] val  a value for the string
N
Niels 已提交
1267 1268

    @tparam CompatibleStringType an string type which is compatible to @ref
N
Niels 已提交
1269
    string_t, for instance `std::string`.
N
Niels 已提交
1270

1271
    @complexity Linear in the size of the passed @a val.
N
Niels 已提交
1272

N
Niels 已提交
1273
    @throw std::bad_alloc if allocation for string value fails
N
Niels 已提交
1274 1275 1276 1277

    @liveexample{The following code shows the construction of a string value
    from a compatible type.,basic_json__CompatibleStringType}

1278 1279 1280 1281
    @sa @ref basic_json(const string_t&) -- create a string value
    @sa @ref basic_json(const typename string_t::value_type*) -- create a
    string value from a character pointer

N
Niels 已提交
1282
    @since version 1.0.0
N
Niels 已提交
1283
    */
N
Niels 已提交
1284 1285
    template<class CompatibleStringType, typename std::enable_if<
                 std::is_constructible<string_t, CompatibleStringType>::value, int>::type = 0>
1286 1287
    basic_json(const CompatibleStringType& val)
        : basic_json(string_t(val))
1288 1289 1290
    {
        assert_invariant();
    }
N
Niels 已提交
1291

N
Niels 已提交
1292 1293 1294 1295 1296
    /*!
    @brief create a boolean (explicit)

    Creates a JSON boolean type from a given value.

1297
    @param[in] val  a boolean value to store
N
Niels 已提交
1298 1299 1300 1301 1302

    @complexity Constant.

    @liveexample{The example below demonstrates boolean
    values.,basic_json__boolean_t}
1303

N
Niels 已提交
1304
    @since version 1.0.0
N
Niels 已提交
1305
    */
N
Niels 已提交
1306
    basic_json(boolean_t val) noexcept
1307
        : m_type(value_t::boolean), m_value(val)
1308 1309 1310
    {
        assert_invariant();
    }
N
Niels 已提交
1311

N
Niels 已提交
1312 1313 1314
    /*!
    @brief create an integer number (explicit)

N
Niels 已提交
1315
    Create an integer number JSON value with a given content.
N
Niels 已提交
1316

N
Niels 已提交
1317
    @tparam T A helper type to remove this function via SFINAE in case @ref
N
Niels 已提交
1318 1319 1320
    number_integer_t is the same as `int`. In this case, this constructor
    would have the same signature as @ref basic_json(const int value). Note
    the helper type @a T is not visible in this constructor's interface.
N
Niels 已提交
1321

1322
    @param[in] val  an integer to create a JSON number from
N
Niels 已提交
1323

N
Niels 已提交
1324 1325
    @complexity Constant.

N
Niels 已提交
1326
    @liveexample{The example below shows the construction of an integer
N
Niels 已提交
1327
    number value.,basic_json__number_integer_t}
N
Niels 已提交
1328

1329 1330 1331 1332
    @sa @ref basic_json(const int) -- create a number value (integer)
    @sa @ref basic_json(const CompatibleNumberIntegerType) -- create a number
    value (integer) from a compatible number type

N
Niels 已提交
1333
    @since version 1.0.0
N
Niels 已提交
1334
    */
N
Niels 已提交
1335 1336 1337
    template<typename T, typename std::enable_if<
                 not (std::is_same<T, int>::value) and
                 std::is_same<T, number_integer_t>::value, int>::type = 0>
N
Niels 已提交
1338
    basic_json(const number_integer_t val) noexcept
1339
        : m_type(value_t::number_integer), m_value(val)
1340 1341 1342
    {
        assert_invariant();
    }
N
Niels 已提交
1343

N
Niels 已提交
1344
    /*!
N
Niels 已提交
1345 1346
    @brief create an integer number from an enum type (explicit)

N
Niels 已提交
1347
    Create an integer number JSON value with a given content.
N
Niels 已提交
1348

1349
    @param[in] val  an integer to create a JSON number from
N
Niels 已提交
1350

N
Niels 已提交
1351 1352 1353
    @note This constructor allows to pass enums directly to a constructor. As
    C++ has no way of specifying the type of an anonymous enum explicitly, we
    can only rely on the fact that such values implicitly convert to int. As
N
Niels 已提交
1354 1355
    int may already be the same type of number_integer_t, we may need to
    switch off the constructor @ref basic_json(const number_integer_t).
N
Niels 已提交
1356 1357 1358

    @complexity Constant.

N
Niels 已提交
1359
    @liveexample{The example below shows the construction of an integer
N
Niels 已提交
1360
    number value from an anonymous enum.,basic_json__const_int}
N
Niels 已提交
1361

1362 1363 1364 1365 1366
    @sa @ref basic_json(const number_integer_t) -- create a number value
    (integer)
    @sa @ref basic_json(const CompatibleNumberIntegerType) -- create a number
    value (integer) from a compatible number type

N
Niels 已提交
1367
    @since version 1.0.0
N
Niels 已提交
1368
    */
N
Niels 已提交
1369
    basic_json(const int val) noexcept
N
Niels 已提交
1370
        : m_type(value_t::number_integer),
1371
          m_value(static_cast<number_integer_t>(val))
1372 1373 1374
    {
        assert_invariant();
    }
N
Niels 已提交
1375

N
Niels 已提交
1376 1377 1378
    /*!
    @brief create an integer number (implicit)

N
Niels 已提交
1379
    Create an integer number JSON value with a given content. This constructor
N
Niels 已提交
1380 1381
    allows any type @a CompatibleNumberIntegerType that can be used to
    construct values of type @ref number_integer_t.
N
Niels 已提交
1382

N
Niels 已提交
1383
    @tparam CompatibleNumberIntegerType An integer type which is compatible to
N
Niels 已提交
1384 1385
    @ref number_integer_t. Examples include the types `int`, `int32_t`,
    `long`, and `short`.
N
Niels 已提交
1386

1387
    @param[in] val  an integer to create a JSON number from
N
Niels 已提交
1388 1389 1390

    @complexity Constant.

N
Niels 已提交
1391 1392
    @liveexample{The example below shows the construction of several integer
    number values from compatible
N
Niels 已提交
1393 1394
    types.,basic_json__CompatibleIntegerNumberType}

1395 1396 1397 1398
    @sa @ref basic_json(const number_integer_t) -- create a number value
    (integer)
    @sa @ref basic_json(const int) -- create a number value (integer)

N
Niels 已提交
1399
    @since version 1.0.0
N
Niels 已提交
1400
    */
N
Niels 已提交
1401
    template<typename CompatibleNumberIntegerType, typename std::enable_if<
N
Niels 已提交
1402
                 std::is_constructible<number_integer_t, CompatibleNumberIntegerType>::value and
N
Niels 已提交
1403 1404
                 std::numeric_limits<CompatibleNumberIntegerType>::is_integer and
                 std::numeric_limits<CompatibleNumberIntegerType>::is_signed,
N
Niels 已提交
1405
                 CompatibleNumberIntegerType>::type = 0>
1406
    basic_json(const CompatibleNumberIntegerType val) noexcept
N
Niels 已提交
1407
        : m_type(value_t::number_integer),
1408
          m_value(static_cast<number_integer_t>(val))
1409 1410 1411
    {
        assert_invariant();
    }
N
Niels 已提交
1412

1413 1414 1415 1416 1417
    /*!
    @brief create an unsigned integer number (explicit)

    Create an unsigned integer number JSON value with a given content.

N
Niels 已提交
1418 1419
    @tparam T  helper type to compare number_unsigned_t and unsigned int (not
    visible in) the interface.
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429

    @param[in] val  an integer to create a JSON number from

    @complexity Constant.

    @sa @ref basic_json(const CompatibleNumberUnsignedType) -- create a number
    value (unsigned integer) from a compatible number type

    @since version 2.0.0
    */
N
Niels 已提交
1430 1431 1432
    template<typename T, typename std::enable_if<
                 not (std::is_same<T, int>::value) and
                 std::is_same<T, number_unsigned_t>::value, int>::type = 0>
N
Niels 已提交
1433
    basic_json(const number_unsigned_t val) noexcept
1434
        : m_type(value_t::number_unsigned), m_value(val)
1435 1436 1437
    {
        assert_invariant();
    }
N
Niels 已提交
1438

1439 1440 1441
    /*!
    @brief create an unsigned number (implicit)

N
Niels 已提交
1442 1443 1444
    Create an unsigned number JSON value with a given content. This
    constructor allows any type @a CompatibleNumberUnsignedType that can be
    used to construct values of type @ref number_unsigned_t.
1445

N
Niels 已提交
1446 1447
    @tparam CompatibleNumberUnsignedType An integer type which is compatible
    to @ref number_unsigned_t. Examples may include the types `unsigned int`,
N
Niels 已提交
1448
    `uint32_t`, or `unsigned short`.
1449 1450 1451 1452 1453 1454 1455 1456 1457 1458

    @param[in] val  an unsigned integer to create a JSON number from

    @complexity Constant.

    @sa @ref basic_json(const number_unsigned_t) -- create a number value
    (unsigned)

    @since version 2.0.0
    */
N
Niels 已提交
1459 1460 1461 1462 1463
    template<typename CompatibleNumberUnsignedType, typename std::enable_if <
                 std::is_constructible<number_unsigned_t, CompatibleNumberUnsignedType>::value and
                 std::numeric_limits<CompatibleNumberUnsignedType>::is_integer and
                 not std::numeric_limits<CompatibleNumberUnsignedType>::is_signed,
                 CompatibleNumberUnsignedType>::type = 0>
1464 1465 1466
    basic_json(const CompatibleNumberUnsignedType val) noexcept
        : m_type(value_t::number_unsigned),
          m_value(static_cast<number_unsigned_t>(val))
1467 1468 1469
    {
        assert_invariant();
    }
1470

N
Niels 已提交
1471 1472 1473 1474 1475
    /*!
    @brief create a floating-point number (explicit)

    Create a floating-point number JSON value with a given content.

1476
    @param[in] val  a floating-point value to create a JSON number from
N
Niels 已提交
1477

1478
    @note [RFC 7159](http://www.rfc-editor.org/rfc/rfc7159.txt), section 6
N
Niels 已提交
1479
    disallows NaN values:
N
Niels 已提交
1480 1481
    > Numeric values that cannot be represented in the grammar below (such as
    > Infinity and NaN) are not permitted.
N
Niels 已提交
1482 1483
    In case the parameter @a val is not a number, a JSON null value is created
    instead.
N
Niels 已提交
1484

N
Niels 已提交
1485
    @complexity Constant.
N
Niels 已提交
1486 1487 1488

    @liveexample{The following example creates several floating-point
    values.,basic_json__number_float_t}
1489 1490 1491 1492

    @sa @ref basic_json(const CompatibleNumberFloatType) -- create a number
    value (floating-point) from a compatible number type

N
Niels 已提交
1493
    @since version 1.0.0
N
Niels 已提交
1494
    */
N
Niels 已提交
1495
    basic_json(const number_float_t val) noexcept
1496
        : m_type(value_t::number_float), m_value(val)
N
Niels 已提交
1497 1498
    {
        // replace infinity and NAN by null
1499
        if (not std::isfinite(val))
N
Niels 已提交
1500 1501 1502 1503
        {
            m_type = value_t::null;
            m_value = json_value();
        }
1504 1505

        assert_invariant();
N
Niels 已提交
1506
    }
N
Niels 已提交
1507

N
Niels 已提交
1508 1509 1510 1511
    /*!
    @brief create an floating-point number (implicit)

    Create an floating-point number JSON value with a given content. This
N
Niels 已提交
1512 1513
    constructor allows any type @a CompatibleNumberFloatType that can be used
    to construct values of type @ref number_float_t.
N
Niels 已提交
1514

N
Niels 已提交
1515 1516 1517
    @tparam CompatibleNumberFloatType A floating-point type which is
    compatible to @ref number_float_t. Examples may include the types `float`
    or `double`.
N
Niels 已提交
1518

1519
    @param[in] val  a floating-point to create a JSON number from
N
Niels 已提交
1520

1521
    @note [RFC 7159](http://www.rfc-editor.org/rfc/rfc7159.txt), section 6
N
Niels 已提交
1522
    disallows NaN values:
N
Niels 已提交
1523 1524
    > Numeric values that cannot be represented in the grammar below (such as
    > Infinity and NaN) are not permitted.
N
Niels 已提交
1525 1526
    In case the parameter @a val is not a number, a JSON null value is
    created instead.
N
Niels 已提交
1527 1528 1529

    @complexity Constant.

N
Niels 已提交
1530
    @liveexample{The example below shows the construction of several
N
Niels 已提交
1531 1532 1533
    floating-point number values from compatible
    types.,basic_json__CompatibleNumberFloatType}

1534 1535 1536
    @sa @ref basic_json(const number_float_t) -- create a number value
    (floating-point)

N
Niels 已提交
1537
    @since version 1.0.0
N
Niels 已提交
1538
    */
N
Niels 已提交
1539
    template<typename CompatibleNumberFloatType, typename = typename std::enable_if<
N
Niels 已提交
1540
                 std::is_constructible<number_float_t, CompatibleNumberFloatType>::value and
N
Niels 已提交
1541
                 std::is_floating_point<CompatibleNumberFloatType>::value>::type>
1542 1543
    basic_json(const CompatibleNumberFloatType val) noexcept
        : basic_json(number_float_t(val))
1544 1545 1546
    {
        assert_invariant();
    }
N
Niels 已提交
1547

N
Niels 已提交
1548 1549 1550 1551 1552 1553 1554 1555 1556 1557
    /*!
    @brief create a container (array or object) from an initializer list

    Creates a JSON value of type array or object from the passed initializer
    list @a init. In case @a type_deduction is `true` (default), the type of
    the JSON value to be created is deducted from the initializer list @a init
    according to the following rules:

    1. If the list is empty, an empty JSON object value `{}` is created.
    2. If the list consists of pairs whose first element is a string, a JSON
N
Niels 已提交
1558 1559
       object value is created where the first elements of the pairs are
       treated as keys and the second elements are as values.
N
Niels 已提交
1560 1561 1562
    3. In all other cases, an array is created.

    The rules aim to create the best fit between a C++ initializer list and
N
Niels 已提交
1563
    JSON values. The rationale is as follows:
N
Niels 已提交
1564 1565

    1. The empty initializer list is written as `{}` which is exactly an empty
N
Niels 已提交
1566
       JSON object.
N
Niels 已提交
1567
    2. C++ has now way of describing mapped types other than to list a list of
N
Niels 已提交
1568 1569 1570
       pairs. As JSON requires that keys must be of type string, rule 2 is the
       weakest constraint one can pose on initializer lists to interpret them
       as an object.
N
Niels 已提交
1571
    3. In all other cases, the initializer list could not be interpreted as
N
Niels 已提交
1572
       JSON object type, so interpreting it as JSON array type is safe.
N
Niels 已提交
1573

N
Niels 已提交
1574 1575
    With the rules described above, the following JSON values cannot be
    expressed by an initializer list:
N
Niels 已提交
1576

N
Niels 已提交
1577 1578 1579 1580 1581
    - the empty array (`[]`): use @ref array(std::initializer_list<basic_json>)
      with an empty initializer list in this case
    - arrays whose elements satisfy rule 2: use @ref
      array(std::initializer_list<basic_json>) with the same initializer list
      in this case
N
Niels 已提交
1582 1583 1584 1585 1586

    @note When used without parentheses around an empty initializer list, @ref
    basic_json() is called instead of this function, yielding the JSON null
    value.

N
Niels 已提交
1587
    @param[in] init  initializer list with JSON values
N
Niels 已提交
1588

N
Niels 已提交
1589 1590 1591
    @param[in] type_deduction internal parameter; when set to `true`, the type
    of the JSON value is deducted from the initializer list @a init; when set
    to `false`, the type provided via @a manual_type is forced. This mode is
N
Niels 已提交
1592 1593
    used by the functions @ref array(std::initializer_list<basic_json>) and
    @ref object(std::initializer_list<basic_json>).
N
Niels 已提交
1594

N
Niels 已提交
1595 1596
    @param[in] manual_type internal parameter; when @a type_deduction is set
    to `false`, the created JSON value will use the provided type (only @ref
N
Niels 已提交
1597 1598 1599
    value_t::array and @ref value_t::object are valid); when @a type_deduction
    is set to `true`, this parameter has no effect

N
Niels 已提交
1600 1601
    @throw std::domain_error if @a type_deduction is `false`, @a manual_type
    is `value_t::object`, but @a init contains an element which is not a pair
N
Niels 已提交
1602 1603
    whose first element is a string; example: `"cannot create object from
    initializer list"`
N
Niels 已提交
1604 1605 1606 1607

    @complexity Linear in the size of the initializer list @a init.

    @liveexample{The example below shows how JSON values are created from
N
Niels 已提交
1608
    initializer lists.,basic_json__list_init_t}
N
Niels 已提交
1609

N
Niels 已提交
1610
    @sa @ref array(std::initializer_list<basic_json>) -- create a JSON array
1611
    value from an initializer list
N
Niels 已提交
1612
    @sa @ref object(std::initializer_list<basic_json>) -- create a JSON object
1613 1614
    value from an initializer list

N
Niels 已提交
1615
    @since version 1.0.0
N
Niels 已提交
1616
    */
N
Niels 已提交
1617 1618
    basic_json(std::initializer_list<basic_json> init,
               bool type_deduction = true,
N
Niels 已提交
1619
               value_t manual_type = value_t::array)
N
Niels 已提交
1620
    {
N
Niels 已提交
1621 1622
        // check if each element is an array with two elements whose first
        // element is a string
N
Niels 已提交
1623 1624
        bool is_an_object = std::all_of(init.begin(), init.end(),
                                        [](const basic_json & element)
N
Niels 已提交
1625
        {
N
Niels 已提交
1626 1627
            return element.is_array() and element.size() == 2 and element[0].is_string();
        });
N
Niels 已提交
1628 1629 1630 1631 1632 1633 1634

        // adjust type if type deduction is not wanted
        if (not type_deduction)
        {
            // if array is wanted, do not create an object though possible
            if (manual_type == value_t::array)
            {
1635
                is_an_object = false;
N
Niels 已提交
1636 1637 1638
            }

            // if object is wanted but impossible, throw an exception
1639
            if (manual_type == value_t::object and not is_an_object)
N
Niels 已提交
1640
            {
N
Niels 已提交
1641
                throw std::domain_error("cannot create object from initializer list");
N
Niels 已提交
1642 1643 1644
            }
        }

1645
        if (is_an_object)
N
Niels 已提交
1646 1647 1648
        {
            // the initializer list is a list of pairs -> create object
            m_type = value_t::object;
N
Niels 已提交
1649
            m_value = value_t::object;
N
Niels 已提交
1650

N
Niels 已提交
1651
            std::for_each(init.begin(), init.end(), [this](const basic_json & element)
N
Niels 已提交
1652
            {
N
Niels 已提交
1653
                m_value.object->emplace(*(element[0].m_value.string), element[1]);
N
Niels 已提交
1654
            });
N
Niels 已提交
1655 1656 1657 1658 1659
        }
        else
        {
            // the initializer list describes an array -> create array
            m_type = value_t::array;
N
Niels 已提交
1660
            m_value.array = create<array_t>(init);
N
Niels 已提交
1661
        }
1662 1663

        assert_invariant();
N
Niels 已提交
1664 1665
    }

N
Niels 已提交
1666 1667 1668 1669 1670 1671 1672
    /*!
    @brief explicitly create an array from an initializer list

    Creates a JSON array value from a given initializer list. That is, given a
    list of values `a, b, c`, creates the JSON value `[a, b, c]`. If the
    initializer list is empty, the empty array `[]` is created.

N
Niels 已提交
1673 1674
    @note This function is only needed to express two edge cases that cannot
    be realized with the initializer list constructor (@ref
N
Niels 已提交
1675 1676
    basic_json(std::initializer_list<basic_json>, bool, value_t)). These cases
    are:
N
Niels 已提交
1677
    1. creating an array whose elements are all pairs whose first element is a
N
Niels 已提交
1678
    string -- in this case, the initializer list constructor would create an
N
Niels 已提交
1679
    object, taking the first elements as keys
N
Niels 已提交
1680
    2. creating an empty array -- passing the empty initializer list to the
N
Niels 已提交
1681 1682
    initializer list constructor yields an empty object

N
Niels 已提交
1683
    @param[in] init  initializer list with JSON values to create an array from
N
Niels 已提交
1684 1685 1686 1687 1688 1689
    (optional)

    @return JSON array value

    @complexity Linear in the size of @a init.

N
Niels 已提交
1690
    @liveexample{The following code shows an example for the `array`
N
Niels 已提交
1691 1692
    function.,array}

1693 1694 1695 1696 1697
    @sa @ref basic_json(std::initializer_list<basic_json>, bool, value_t) --
    create a JSON value from an initializer list
    @sa @ref object(std::initializer_list<basic_json>) -- create a JSON object
    value from an initializer list

N
Niels 已提交
1698
    @since version 1.0.0
N
Niels 已提交
1699
    */
N
Niels 已提交
1700 1701
    static basic_json array(std::initializer_list<basic_json> init =
                                std::initializer_list<basic_json>())
N
Niels 已提交
1702
    {
N
Niels 已提交
1703
        return basic_json(init, false, value_t::array);
N
Niels 已提交
1704 1705
    }

N
Niels 已提交
1706 1707 1708 1709
    /*!
    @brief explicitly create an object from an initializer list

    Creates a JSON object value from a given initializer list. The initializer
N
Niels 已提交
1710
    lists elements must be pairs, and their first elements must be strings. If
N
Niels 已提交
1711 1712 1713
    the initializer list is empty, the empty object `{}` is created.

    @note This function is only added for symmetry reasons. In contrast to the
1714 1715 1716
    related function @ref array(std::initializer_list<basic_json>), there are
    no cases which can only be expressed by this function. That is, any
    initializer list @a init can also be passed to the initializer list
N
Niels 已提交
1717 1718
    constructor @ref basic_json(std::initializer_list<basic_json>, bool,
    value_t).
N
Niels 已提交
1719

N
Niels 已提交
1720
    @param[in] init  initializer list to create an object from (optional)
N
Niels 已提交
1721 1722 1723 1724

    @return JSON object value

    @throw std::domain_error if @a init is not a pair whose first elements are
1725 1726
    strings; thrown by
    @ref basic_json(std::initializer_list<basic_json>, bool, value_t)
N
Niels 已提交
1727 1728 1729

    @complexity Linear in the size of @a init.

N
Niels 已提交
1730
    @liveexample{The following code shows an example for the `object`
N
Niels 已提交
1731 1732
    function.,object}

1733 1734 1735 1736 1737
    @sa @ref basic_json(std::initializer_list<basic_json>, bool, value_t) --
    create a JSON value from an initializer list
    @sa @ref array(std::initializer_list<basic_json>) -- create a JSON array
    value from an initializer list

N
Niels 已提交
1738
    @since version 1.0.0
N
Niels 已提交
1739
    */
N
Niels 已提交
1740 1741
    static basic_json object(std::initializer_list<basic_json> init =
                                 std::initializer_list<basic_json>())
N
Niels 已提交
1742
    {
N
Niels 已提交
1743
        return basic_json(init, false, value_t::object);
N
Niels 已提交
1744 1745
    }

N
Niels 已提交
1746 1747 1748
    /*!
    @brief construct an array with count copies of given value

N
Niels 已提交
1749 1750
    Constructs a JSON array value by creating @a cnt copies of a passed value.
    In case @a cnt is `0`, an empty array is created. As postcondition,
1751
    `std::distance(begin(),end()) == cnt` holds.
N
Niels 已提交
1752

1753 1754
    @param[in] cnt  the number of JSON copies of @a val to create
    @param[in] val  the JSON value to copy
N
Niels 已提交
1755

1756
    @complexity Linear in @a cnt.
N
Niels 已提交
1757 1758 1759 1760

    @liveexample{The following code shows examples for the @ref
    basic_json(size_type\, const basic_json&)
    constructor.,basic_json__size_type_basic_json}
1761

N
Niels 已提交
1762
    @since version 1.0.0
N
Niels 已提交
1763
    */
1764
    basic_json(size_type cnt, const basic_json& val)
N
Niels 已提交
1765 1766
        : m_type(value_t::array)
    {
1767
        m_value.array = create<array_t>(cnt, val);
1768
        assert_invariant();
N
Niels 已提交
1769
    }
N
Niels 已提交
1770

N
Niels 已提交
1771 1772 1773 1774 1775
    /*!
    @brief construct a JSON container given an iterator range

    Constructs the JSON value with the contents of the range `[first, last)`.
    The semantics depends on the different types a JSON value can have:
N
Niels 已提交
1776
    - In case of primitive types (number, boolean, or string), @a first must
N
Niels 已提交
1777 1778
      be `begin()` and @a last must be `end()`. In this case, the value is
      copied. Otherwise, std::out_of_range is thrown.
N
Niels 已提交
1779 1780
    - In case of structured types (array, object), the constructor behaves as
      similar versions for `std::vector`.
N
Niels 已提交
1781
    - In case of a null type, std::domain_error is thrown.
N
Niels 已提交
1782 1783 1784 1785 1786 1787 1788

    @tparam InputIT an input iterator type (@ref iterator or @ref
    const_iterator)

    @param[in] first begin of the range to copy from (included)
    @param[in] last end of the range to copy from (excluded)

N
Niels 已提交
1789 1790
    @pre Iterators @a first and @a last must be initialized. **This
         precondition is enforced with an assertion.**
N
Niels 已提交
1791

N
Niels 已提交
1792
    @throw std::domain_error if iterators are not compatible; that is, do not
N
Niels 已提交
1793
    belong to the same JSON value; example: `"iterators are not compatible"`
N
Niels 已提交
1794
    @throw std::out_of_range if iterators are for a primitive type (number,
N
Niels 已提交
1795 1796
    boolean, or string) where an out of range error can be detected easily;
    example: `"iterators out of range"`
N
Niels 已提交
1797
    @throw std::bad_alloc if allocation for object, array, or string fails
N
Niels 已提交
1798 1799
    @throw std::domain_error if called with a null value; example: `"cannot
    use construct with iterators from null"`
N
Niels 已提交
1800 1801 1802 1803 1804

    @complexity Linear in distance between @a first and @a last.

    @liveexample{The example below shows several ways to create JSON values by
    specifying a subrange with iterators.,basic_json__InputIt_InputIt}
1805

N
Niels 已提交
1806
    @since version 1.0.0
N
Niels 已提交
1807
    */
N
Niels 已提交
1808 1809 1810
    template<class InputIT, typename std::enable_if<
                 std::is_same<InputIT, typename basic_json_t::iterator>::value or
                 std::is_same<InputIT, typename basic_json_t::const_iterator>::value, int>::type = 0>
N
Niels 已提交
1811
    basic_json(InputIT first, InputIT last)
N
Niels 已提交
1812
    {
N
Niels 已提交
1813 1814 1815
        assert(first.m_object != nullptr);
        assert(last.m_object != nullptr);

N
Niels 已提交
1816
        // make sure iterator fits the current value
N
Niels 已提交
1817
        if (first.m_object != last.m_object)
N
Niels 已提交
1818
        {
N
Niels 已提交
1819
            throw std::domain_error("iterators are not compatible");
N
Niels 已提交
1820 1821
        }

N
Niels 已提交
1822 1823 1824
        // copy type from first iterator
        m_type = first.m_object->m_type;

N
Niels 已提交
1825
        // check if iterator range is complete for primitive values
N
Niels 已提交
1826 1827 1828
        switch (m_type)
        {
            case value_t::boolean:
1829 1830
            case value_t::number_float:
            case value_t::number_integer:
1831
            case value_t::number_unsigned:
N
Niels 已提交
1832 1833
            case value_t::string:
            {
1834
                if (not first.m_it.primitive_iterator.is_begin() or not last.m_it.primitive_iterator.is_end())
N
Niels 已提交
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
                {
                    throw std::out_of_range("iterators out of range");
                }
                break;
            }

            default:
            {
                break;
            }
        }

        switch (m_type)
        {
            case value_t::number_integer:
            {
                m_value.number_integer = first.m_object->m_value.number_integer;
                break;
            }
N
Niels 已提交
1854

1855 1856 1857 1858 1859
            case value_t::number_unsigned:
            {
                m_value.number_unsigned = first.m_object->m_value.number_unsigned;
                break;
            }
N
Niels 已提交
1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874

            case value_t::number_float:
            {
                m_value.number_float = first.m_object->m_value.number_float;
                break;
            }

            case value_t::boolean:
            {
                m_value.boolean = first.m_object->m_value.boolean;
                break;
            }

            case value_t::string:
            {
N
Niels 已提交
1875
                m_value = *first.m_object->m_value.string;
N
Niels 已提交
1876 1877 1878 1879 1880
                break;
            }

            case value_t::object:
            {
N
Cleanup  
Niels 已提交
1881
                m_value.object = create<object_t>(first.m_it.object_iterator, last.m_it.object_iterator);
N
Niels 已提交
1882 1883 1884 1885 1886
                break;
            }

            case value_t::array:
            {
N
Cleanup  
Niels 已提交
1887
                m_value.array = create<array_t>(first.m_it.array_iterator, last.m_it.array_iterator);
N
Niels 已提交
1888 1889 1890 1891 1892
                break;
            }

            default:
            {
N
Niels 已提交
1893
                throw std::domain_error("cannot use construct with iterators from " + first.m_object->type_name());
N
Niels 已提交
1894 1895
            }
        }
1896 1897

        assert_invariant();
N
Niels 已提交
1898 1899
    }

N
Niels 已提交
1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913
    /*!
    @brief construct a JSON value given an input stream

    @param[in,out] i  stream to read a serialized JSON value from
    @param[in] cb a parser callback function of type @ref parser_callback_t
    which is used to control the deserialization by filtering unwanted values
    (optional)

    @complexity Linear in the length of the input. The parser is a predictive
    LL(1) parser. The complexity can be higher if the parser callback function
    @a cb has a super-linear complexity.

    @note A UTF-8 byte order mark is silently ignored.

N
Niels 已提交
1914 1915 1916 1917 1918 1919 1920
    @deprecated This constructor is deprecated and will be removed in version
      3.0.0 to unify the interface of the library. Deserialization will be
      done by stream operators or by calling one of the `parse` functions,
      e.g. @ref parse(std::istream&, const parser_callback_t). That is, calls
      like `json j(i);` for an input stream @a i need to be replaced by
      `json j = json::parse(i);`. See the example below.

N
Niels 已提交
1921 1922 1923 1924
    @liveexample{The example below demonstrates constructing a JSON value from
    a `std::stringstream` with and without callback
    function.,basic_json__istream}

N
Niels 已提交
1925 1926
    @since version 2.0.0, deprecated in version 2.0.3, to be removed in
           version 3.0.0
N
Niels 已提交
1927
    */
N
Niels 已提交
1928
    JSON_DEPRECATED
N
Niels 已提交
1929
    explicit basic_json(std::istream& i, const parser_callback_t cb = nullptr)
N
Niels 已提交
1930 1931
    {
        *this = parser(i, cb).parse();
1932
        assert_invariant();
N
Niels 已提交
1933 1934
    }

N
Niels 已提交
1935 1936 1937 1938
    ///////////////////////////////////////
    // other constructors and destructor //
    ///////////////////////////////////////

N
Niels 已提交
1939 1940
    /*!
    @brief copy constructor
N
Niels 已提交
1941

N
Niels 已提交
1942 1943
    Creates a copy of a given JSON value.

N
Niels 已提交
1944
    @param[in] other  the JSON value to copy
N
Niels 已提交
1945 1946 1947

    @complexity Linear in the size of @a other.

N
Niels 已提交
1948 1949 1950
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
1951 1952 1953
    - The complexity is linear.
    - As postcondition, it holds: `other == basic_json(other)`.

N
Niels 已提交
1954
    @throw std::bad_alloc if allocation for object, array, or string fails.
N
Niels 已提交
1955 1956

    @liveexample{The following code shows an example for the copy
N
Niels 已提交
1957
    constructor.,basic_json__basic_json}
1958

N
Niels 已提交
1959
    @since version 1.0.0
N
Niels 已提交
1960
    */
N
Niels 已提交
1961
    basic_json(const basic_json& other)
N
Niels 已提交
1962 1963
        : m_type(other.m_type)
    {
1964 1965 1966
        // check of passed value is valid
        other.assert_invariant();

N
Niels 已提交
1967 1968
        switch (m_type)
        {
1969
            case value_t::object:
N
Niels 已提交
1970
            {
N
Niels 已提交
1971
                m_value = *other.m_value.object;
N
Niels 已提交
1972 1973
                break;
            }
N
Niels 已提交
1974

1975
            case value_t::array:
N
Niels 已提交
1976
            {
N
Niels 已提交
1977
                m_value = *other.m_value.array;
N
Niels 已提交
1978 1979
                break;
            }
N
Niels 已提交
1980

1981
            case value_t::string:
N
Niels 已提交
1982
            {
N
Niels 已提交
1983
                m_value = *other.m_value.string;
N
Niels 已提交
1984 1985
                break;
            }
N
Niels 已提交
1986

1987
            case value_t::boolean:
N
Niels 已提交
1988
            {
N
Niels 已提交
1989
                m_value = other.m_value.boolean;
N
Niels 已提交
1990 1991
                break;
            }
N
Niels 已提交
1992

1993
            case value_t::number_integer:
N
Niels 已提交
1994
            {
N
Niels 已提交
1995
                m_value = other.m_value.number_integer;
N
Niels 已提交
1996 1997
                break;
            }
N
Niels 已提交
1998

1999 2000 2001 2002 2003
            case value_t::number_unsigned:
            {
                m_value = other.m_value.number_unsigned;
                break;
            }
N
Niels 已提交
2004

2005
            case value_t::number_float:
N
Niels 已提交
2006
            {
N
Niels 已提交
2007
                m_value = other.m_value.number_float;
N
Niels 已提交
2008 2009
                break;
            }
2010 2011 2012 2013 2014

            default:
            {
                break;
            }
N
Niels 已提交
2015
        }
2016 2017

        assert_invariant();
N
Niels 已提交
2018 2019
    }

N
Niels 已提交
2020 2021 2022 2023 2024 2025 2026
    /*!
    @brief move constructor

    Move constructor. Constructs a JSON value with the contents of the given
    value @a other using move semantics. It "steals" the resources from @a
    other and leaves it as JSON null value.

N
Niels 已提交
2027
    @param[in,out] other  value to move to this object
N
Niels 已提交
2028 2029 2030 2031 2032 2033 2034

    @post @a other is a JSON null value

    @complexity Constant.

    @liveexample{The code below shows the move constructor explicitly called
    via std::move.,basic_json__moveconstructor}
2035

N
Niels 已提交
2036
    @since version 1.0.0
N
Niels 已提交
2037
    */
N
Niels 已提交
2038
    basic_json(basic_json&& other) noexcept
N
Niels 已提交
2039 2040
        : m_type(std::move(other.m_type)),
          m_value(std::move(other.m_value))
N
Niels 已提交
2041
    {
2042 2043 2044
        // check that passed value is valid
        other.assert_invariant();

N
Niels 已提交
2045
        // invalidate payload
N
Niels 已提交
2046 2047
        other.m_type = value_t::null;
        other.m_value = {};
2048 2049

        assert_invariant();
N
Niels 已提交
2050 2051
    }

N
Niels 已提交
2052 2053
    /*!
    @brief copy assignment
N
Niels 已提交
2054

N
Niels 已提交
2055
    Copy assignment operator. Copies a JSON value via the "copy and swap"
N
Niels 已提交
2056 2057
    strategy: It is expressed in terms of the copy constructor, destructor,
    and the swap() member function.
N
Niels 已提交
2058

N
Niels 已提交
2059
    @param[in] other  value to copy from
N
Niels 已提交
2060 2061 2062

    @complexity Linear.

N
Niels 已提交
2063 2064 2065
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
2066 2067
    - The complexity is linear.

N
Niels 已提交
2068 2069 2070 2071
    @liveexample{The code below shows and example for the copy assignment. It
    creates a copy of value `a` which is then swapped with `b`. Finally\, the
    copy of `a` (which is the null value after the swap) is
    destroyed.,basic_json__copyassignment}
N
Niels 已提交
2072

N
Niels 已提交
2073
    @since version 1.0.0
N
Niels 已提交
2074
    */
N
Niels 已提交
2075
    reference& operator=(basic_json other) noexcept (
N
Niels 已提交
2076 2077 2078 2079 2080
        std::is_nothrow_move_constructible<value_t>::value and
        std::is_nothrow_move_assignable<value_t>::value and
        std::is_nothrow_move_constructible<json_value>::value and
        std::is_nothrow_move_assignable<json_value>::value
    )
N
Niels 已提交
2081
    {
2082 2083 2084
        // check that passed value is valid
        other.assert_invariant();

N
Niels 已提交
2085
        using std::swap;
N
Cleanup  
Niels 已提交
2086 2087
        swap(m_type, other.m_type);
        swap(m_value, other.m_value);
2088 2089

        assert_invariant();
N
Niels 已提交
2090 2091 2092
        return *this;
    }

N
Niels 已提交
2093 2094
    /*!
    @brief destructor
N
Niels 已提交
2095

N
Niels 已提交
2096
    Destroys the JSON value and frees all allocated memory.
N
Niels 已提交
2097 2098 2099

    @complexity Linear.

N
Niels 已提交
2100 2101 2102
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
2103 2104
    - The complexity is linear.
    - All stored elements are destroyed and all memory is freed.
2105

N
Niels 已提交
2106
    @since version 1.0.0
N
Niels 已提交
2107
    */
N
Niels 已提交
2108
    ~basic_json()
N
Niels 已提交
2109
    {
2110 2111
        assert_invariant();

N
Niels 已提交
2112 2113
        switch (m_type)
        {
2114
            case value_t::object:
N
Niels 已提交
2115
            {
N
Niels 已提交
2116
                AllocatorType<object_t> alloc;
N
Niels 已提交
2117 2118
                alloc.destroy(m_value.object);
                alloc.deallocate(m_value.object, 1);
N
Niels 已提交
2119 2120
                break;
            }
N
Niels 已提交
2121

2122
            case value_t::array:
N
Niels 已提交
2123
            {
N
Niels 已提交
2124
                AllocatorType<array_t> alloc;
N
Niels 已提交
2125 2126
                alloc.destroy(m_value.array);
                alloc.deallocate(m_value.array, 1);
N
Niels 已提交
2127 2128
                break;
            }
N
Niels 已提交
2129

2130
            case value_t::string:
N
Niels 已提交
2131
            {
N
Niels 已提交
2132
                AllocatorType<string_t> alloc;
N
Niels 已提交
2133
                alloc.destroy(m_value.string);
N
Niels 已提交
2134
                alloc.deallocate(m_value.string, 1);
N
Niels 已提交
2135 2136
                break;
            }
N
Niels 已提交
2137 2138

            default:
N
Niels 已提交
2139
            {
N
Niels 已提交
2140
                // all other types need no specific destructor
N
Niels 已提交
2141 2142 2143 2144 2145
                break;
            }
        }
    }

N
Niels 已提交
2146
    /// @}
N
Niels 已提交
2147 2148 2149 2150 2151 2152

  public:
    ///////////////////////
    // object inspection //
    ///////////////////////

N
Niels 已提交
2153
    /// @name object inspection
N
Niels 已提交
2154
    /// Functions to inspect the type of a JSON value.
N
Niels 已提交
2155 2156
    /// @{

N
Niels 已提交
2157
    /*!
N
Niels 已提交
2158 2159
    @brief serialization

N
Niels 已提交
2160
    Serialization function for JSON values. The function tries to mimic
N
Niels 已提交
2161
    Python's `json.dumps()` function, and currently supports its @a indent
N
Niels 已提交
2162
    parameter.
N
Niels 已提交
2163

N
Niels 已提交
2164
    @param[in] indent If indent is nonnegative, then array elements and object
N
Niels 已提交
2165
    members will be pretty-printed with that indent level. An indent level of
N
Niels 已提交
2166 2167
    `0` will only insert newlines. `-1` (the default) selects the most compact
    representation.
N
Niels 已提交
2168

N
Niels 已提交
2169 2170 2171 2172 2173
    @return string containing the serialization of the JSON value

    @complexity Linear.

    @liveexample{The following example shows the effect of different @a indent
N
Niels 已提交
2174
    parameters to the result of the serialization.,dump}
N
Niels 已提交
2175

N
Niels 已提交
2176
    @see https://docs.python.org/2/library/json.html#json.dump
N
Niels 已提交
2177

N
Niels 已提交
2178
    @since version 1.0.0
N
Niels 已提交
2179
    */
N
Niels 已提交
2180
    string_t dump(const int indent = -1) const
N
Niels 已提交
2181
    {
N
Niels 已提交
2182
        std::stringstream ss;
N
Niels 已提交
2183
        // fix locale problems
N
Niels 已提交
2184
        ss.imbue(std::locale::classic());
N
Niels 已提交
2185

2186 2187 2188 2189 2190 2191
        // 6, 15 or 16 digits of precision allows round-trip IEEE 754
        // string->float->string, string->double->string or string->long
        // double->string; to be safe, we read this value from
        // std::numeric_limits<number_float_t>::digits10
        ss.precision(std::numeric_limits<double>::digits10);

N
Niels 已提交
2192 2193
        if (indent >= 0)
        {
N
Niels 已提交
2194
            dump(ss, true, static_cast<unsigned int>(indent));
N
Niels 已提交
2195 2196 2197
        }
        else
        {
N
Niels 已提交
2198
            dump(ss, false, 0);
N
Niels 已提交
2199
        }
N
Niels 已提交
2200 2201

        return ss.str();
N
Niels 已提交
2202 2203
    }

N
Niels 已提交
2204 2205 2206 2207 2208 2209 2210
    /*!
    @brief return the type of the JSON value (explicit)

    Return the type of the JSON value as a value from the @ref value_t
    enumeration.

    @return the type of the JSON value
N
Niels 已提交
2211 2212 2213

    @complexity Constant.

N
Niels 已提交
2214 2215 2216
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2217
    @liveexample{The following code exemplifies `type()` for all JSON
N
Niels 已提交
2218
    types.,type}
N
Niels 已提交
2219

N
Niels 已提交
2220
    @since version 1.0.0
N
Niels 已提交
2221
    */
N
Niels 已提交
2222
    constexpr value_t type() const noexcept
N
Niels 已提交
2223 2224 2225 2226
    {
        return m_type;
    }

N
Niels 已提交
2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
    /*!
    @brief return whether type is primitive

    This function returns true iff the JSON type is primitive (string, number,
    boolean, or null).

    @return `true` if type is primitive (string, number, boolean, or null),
    `false` otherwise.

    @complexity Constant.

N
Niels 已提交
2238 2239 2240
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2241
    @liveexample{The following code exemplifies `is_primitive()` for all JSON
N
Niels 已提交
2242
    types.,is_primitive}
N
Niels 已提交
2243

N
Niels 已提交
2244 2245 2246 2247 2248 2249
    @sa @ref is_structured() -- returns whether JSON value is structured
    @sa @ref is_null() -- returns whether JSON value is `null`
    @sa @ref is_string() -- returns whether JSON value is a string
    @sa @ref is_boolean() -- returns whether JSON value is a boolean
    @sa @ref is_number() -- returns whether JSON value is a number

N
Niels 已提交
2250
    @since version 1.0.0
N
Niels 已提交
2251
    */
N
Niels 已提交
2252
    constexpr bool is_primitive() const noexcept
N
Niels 已提交
2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266
    {
        return is_null() or is_string() or is_boolean() or is_number();
    }

    /*!
    @brief return whether type is structured

    This function returns true iff the JSON type is structured (array or
    object).

    @return `true` if type is structured (array or object), `false` otherwise.

    @complexity Constant.

N
Niels 已提交
2267 2268 2269
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2270
    @liveexample{The following code exemplifies `is_structured()` for all JSON
N
Niels 已提交
2271
    types.,is_structured}
N
Niels 已提交
2272

N
Niels 已提交
2273 2274 2275 2276
    @sa @ref is_primitive() -- returns whether value is primitive
    @sa @ref is_array() -- returns whether value is an array
    @sa @ref is_object() -- returns whether value is an object

N
Niels 已提交
2277
    @since version 1.0.0
N
Niels 已提交
2278
    */
N
Niels 已提交
2279
    constexpr bool is_structured() const noexcept
N
Niels 已提交
2280 2281 2282 2283
    {
        return is_array() or is_object();
    }

N
Niels 已提交
2284 2285 2286 2287 2288
    /*!
    @brief return whether value is null

    This function returns true iff the JSON value is null.

N
Niels 已提交
2289
    @return `true` if type is null, `false` otherwise.
N
Niels 已提交
2290 2291 2292

    @complexity Constant.

N
Niels 已提交
2293 2294 2295
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2296
    @liveexample{The following code exemplifies `is_null()` for all JSON
N
Niels 已提交
2297
    types.,is_null}
N
Niels 已提交
2298

N
Niels 已提交
2299
    @since version 1.0.0
N
Niels 已提交
2300
    */
N
Niels 已提交
2301
    constexpr bool is_null() const noexcept
N
Niels 已提交
2302 2303 2304 2305
    {
        return m_type == value_t::null;
    }

N
Niels 已提交
2306 2307 2308 2309 2310
    /*!
    @brief return whether value is a boolean

    This function returns true iff the JSON value is a boolean.

N
Niels 已提交
2311
    @return `true` if type is boolean, `false` otherwise.
N
Niels 已提交
2312 2313 2314

    @complexity Constant.

N
Niels 已提交
2315 2316 2317
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2318
    @liveexample{The following code exemplifies `is_boolean()` for all JSON
N
Niels 已提交
2319
    types.,is_boolean}
N
Niels 已提交
2320

N
Niels 已提交
2321
    @since version 1.0.0
N
Niels 已提交
2322
    */
N
Niels 已提交
2323
    constexpr bool is_boolean() const noexcept
N
Niels 已提交
2324 2325 2326 2327
    {
        return m_type == value_t::boolean;
    }

N
Niels 已提交
2328 2329 2330 2331 2332 2333
    /*!
    @brief return whether value is a number

    This function returns true iff the JSON value is a number. This includes
    both integer and floating-point values.

2334 2335
    @return `true` if type is number (regardless whether integer, unsigned
    integer or floating-type), `false` otherwise.
N
Niels 已提交
2336 2337 2338

    @complexity Constant.

N
Niels 已提交
2339 2340 2341
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2342
    @liveexample{The following code exemplifies `is_number()` for all JSON
N
Niels 已提交
2343
    types.,is_number}
N
Niels 已提交
2344

N
Niels 已提交
2345
    @sa @ref is_number_integer() -- check if value is an integer or unsigned
2346
    integer number
N
Niels 已提交
2347 2348
    @sa @ref is_number_unsigned() -- check if value is an unsigned integer
    number
N
Niels 已提交
2349 2350
    @sa @ref is_number_float() -- check if value is a floating-point number

N
Niels 已提交
2351
    @since version 1.0.0
N
Niels 已提交
2352
    */
N
Niels 已提交
2353
    constexpr bool is_number() const noexcept
N
Niels 已提交
2354
    {
N
Niels 已提交
2355
        return is_number_integer() or is_number_float();
N
Niels 已提交
2356 2357
    }

N
Niels 已提交
2358 2359 2360
    /*!
    @brief return whether value is an integer number

N
Niels 已提交
2361
    This function returns true iff the JSON value is an integer or unsigned
2362
    integer number. This excludes floating-point values.
N
Niels 已提交
2363

N
Niels 已提交
2364
    @return `true` if type is an integer or unsigned integer number, `false`
2365
    otherwise.
N
Niels 已提交
2366 2367 2368

    @complexity Constant.

N
Niels 已提交
2369 2370 2371
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2372
    @liveexample{The following code exemplifies `is_number_integer()` for all
N
Niels 已提交
2373
    JSON types.,is_number_integer}
N
Niels 已提交
2374 2375

    @sa @ref is_number() -- check if value is a number
N
Niels 已提交
2376 2377
    @sa @ref is_number_unsigned() -- check if value is an unsigned integer
    number
N
Niels 已提交
2378 2379
    @sa @ref is_number_float() -- check if value is a floating-point number

N
Niels 已提交
2380
    @since version 1.0.0
N
Niels 已提交
2381
    */
N
Niels 已提交
2382
    constexpr bool is_number_integer() const noexcept
N
Niels 已提交
2383
    {
2384 2385
        return m_type == value_t::number_integer or m_type == value_t::number_unsigned;
    }
N
Niels 已提交
2386

2387 2388 2389
    /*!
    @brief return whether value is an unsigned integer number

N
Niels 已提交
2390 2391
    This function returns true iff the JSON value is an unsigned integer
    number. This excludes floating-point and (signed) integer values.
2392 2393 2394 2395 2396

    @return `true` if type is an unsigned integer number, `false` otherwise.

    @complexity Constant.

N
Niels 已提交
2397 2398 2399
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2400
    @liveexample{The following code exemplifies `is_number_unsigned()` for all
N
Niels 已提交
2401 2402
    JSON types.,is_number_unsigned}

2403
    @sa @ref is_number() -- check if value is a number
N
Niels 已提交
2404
    @sa @ref is_number_integer() -- check if value is an integer or unsigned
2405 2406 2407 2408 2409
    integer number
    @sa @ref is_number_float() -- check if value is a floating-point number

    @since version 2.0.0
    */
N
Niels 已提交
2410
    constexpr bool is_number_unsigned() const noexcept
2411 2412
    {
        return m_type == value_t::number_unsigned;
N
Niels 已提交
2413 2414
    }

N
Niels 已提交
2415 2416 2417 2418
    /*!
    @brief return whether value is a floating-point number

    This function returns true iff the JSON value is a floating-point number.
2419
    This excludes integer and unsigned integer values.
N
Niels 已提交
2420

N
Niels 已提交
2421
    @return `true` if type is a floating-point number, `false` otherwise.
N
Niels 已提交
2422 2423 2424

    @complexity Constant.

N
Niels 已提交
2425 2426 2427
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2428
    @liveexample{The following code exemplifies `is_number_float()` for all
N
Niels 已提交
2429
    JSON types.,is_number_float}
N
Niels 已提交
2430 2431 2432

    @sa @ref is_number() -- check if value is number
    @sa @ref is_number_integer() -- check if value is an integer number
N
Niels 已提交
2433 2434
    @sa @ref is_number_unsigned() -- check if value is an unsigned integer
    number
N
Niels 已提交
2435

N
Niels 已提交
2436
    @since version 1.0.0
N
Niels 已提交
2437
    */
N
Niels 已提交
2438
    constexpr bool is_number_float() const noexcept
N
Niels 已提交
2439 2440 2441 2442
    {
        return m_type == value_t::number_float;
    }

N
Niels 已提交
2443 2444 2445 2446 2447
    /*!
    @brief return whether value is an object

    This function returns true iff the JSON value is an object.

N
Niels 已提交
2448
    @return `true` if type is object, `false` otherwise.
N
Niels 已提交
2449 2450 2451

    @complexity Constant.

N
Niels 已提交
2452 2453 2454
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2455
    @liveexample{The following code exemplifies `is_object()` for all JSON
N
Niels 已提交
2456
    types.,is_object}
N
Niels 已提交
2457

N
Niels 已提交
2458
    @since version 1.0.0
N
Niels 已提交
2459
    */
N
Niels 已提交
2460
    constexpr bool is_object() const noexcept
N
Niels 已提交
2461 2462 2463 2464
    {
        return m_type == value_t::object;
    }

N
Niels 已提交
2465 2466 2467 2468 2469
    /*!
    @brief return whether value is an array

    This function returns true iff the JSON value is an array.

N
Niels 已提交
2470
    @return `true` if type is array, `false` otherwise.
N
Niels 已提交
2471 2472 2473

    @complexity Constant.

N
Niels 已提交
2474 2475 2476
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2477
    @liveexample{The following code exemplifies `is_array()` for all JSON
N
Niels 已提交
2478
    types.,is_array}
N
Niels 已提交
2479

N
Niels 已提交
2480
    @since version 1.0.0
N
Niels 已提交
2481
    */
N
Niels 已提交
2482
    constexpr bool is_array() const noexcept
N
Niels 已提交
2483 2484 2485 2486
    {
        return m_type == value_t::array;
    }

N
Niels 已提交
2487 2488 2489 2490 2491
    /*!
    @brief return whether value is a string

    This function returns true iff the JSON value is a string.

N
Niels 已提交
2492
    @return `true` if type is string, `false` otherwise.
N
Niels 已提交
2493 2494 2495

    @complexity Constant.

N
Niels 已提交
2496 2497 2498
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2499
    @liveexample{The following code exemplifies `is_string()` for all JSON
N
Niels 已提交
2500
    types.,is_string}
N
Niels 已提交
2501

N
Niels 已提交
2502
    @since version 1.0.0
N
Niels 已提交
2503
    */
N
Niels 已提交
2504
    constexpr bool is_string() const noexcept
N
Niels 已提交
2505 2506 2507 2508
    {
        return m_type == value_t::string;
    }

N
Niels 已提交
2509 2510 2511 2512 2513 2514
    /*!
    @brief return whether value is discarded

    This function returns true iff the JSON value was discarded during parsing
    with a callback function (see @ref parser_callback_t).

N
Niels 已提交
2515 2516 2517 2518
    @note This function will always be `false` for JSON values after parsing.
    That is, discarded values can only occur during parsing, but will be
    removed when inside a structured value or replaced by null in other cases.

N
Niels 已提交
2519 2520 2521 2522
    @return `true` if type is discarded, `false` otherwise.

    @complexity Constant.

N
Niels 已提交
2523 2524 2525
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2526
    @liveexample{The following code exemplifies `is_discarded()` for all JSON
N
Niels 已提交
2527
    types.,is_discarded}
N
Niels 已提交
2528

N
Niels 已提交
2529
    @since version 1.0.0
N
Niels 已提交
2530
    */
N
Niels 已提交
2531
    constexpr bool is_discarded() const noexcept
N
Niels 已提交
2532 2533 2534 2535
    {
        return m_type == value_t::discarded;
    }

N
Niels 已提交
2536 2537 2538 2539 2540 2541 2542 2543 2544 2545
    /*!
    @brief return the type of the JSON value (implicit)

    Implicitly return the type of the JSON value as a value from the @ref
    value_t enumeration.

    @return the type of the JSON value

    @complexity Constant.

N
Niels 已提交
2546 2547 2548
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2549 2550
    @liveexample{The following code exemplifies the @ref value_t operator for
    all JSON types.,operator__value_t}
N
Niels 已提交
2551

N
Niels 已提交
2552
    @since version 1.0.0
N
Niels 已提交
2553
    */
N
Niels 已提交
2554
    constexpr operator value_t() const noexcept
N
Niels 已提交
2555 2556 2557 2558
    {
        return m_type;
    }

N
Niels 已提交
2559 2560
    /// @}

N
Niels 已提交
2561
  private:
N
Niels 已提交
2562 2563 2564
    //////////////////
    // value access //
    //////////////////
N
Niels 已提交
2565

N
Niels 已提交
2566
    /// get an object (explicit)
N
Niels 已提交
2567 2568 2569
    template<class T, typename std::enable_if<
                 std::is_convertible<typename object_t::key_type, typename T::key_type>::value and
                 std::is_convertible<basic_json_t, typename T::mapped_type>::value, int>::type = 0>
N
Niels 已提交
2570
    T get_impl(T*) const
N
Niels 已提交
2571
    {
N
Niels 已提交
2572 2573 2574 2575 2576 2577 2578 2579
        if (is_object())
        {
            return T(m_value.object->begin(), m_value.object->end());
        }
        else
        {
            throw std::domain_error("type must be object, but is " + type_name());
        }
N
Niels 已提交
2580 2581 2582
    }

    /// get an object (explicit)
N
Niels 已提交
2583
    object_t get_impl(object_t*) const
N
Niels 已提交
2584
    {
N
Niels 已提交
2585 2586 2587 2588 2589 2590 2591 2592
        if (is_object())
        {
            return *(m_value.object);
        }
        else
        {
            throw std::domain_error("type must be object, but is " + type_name());
        }
N
Niels 已提交
2593 2594
    }

N
Niels 已提交
2595
    /// get an array (explicit)
N
Niels 已提交
2596 2597 2598 2599 2600 2601
    template<class T, typename std::enable_if<
                 std::is_convertible<basic_json_t, typename T::value_type>::value and
                 not std::is_same<basic_json_t, typename T::value_type>::value and
                 not std::is_arithmetic<T>::value and
                 not std::is_convertible<std::string, T>::value and
                 not has_mapped_type<T>::value, int>::type = 0>
N
Niels 已提交
2602
    T get_impl(T*) const
N
Niels 已提交
2603
    {
N
cleanup  
Niels 已提交
2604
        if (is_array())
N
Niels 已提交
2605
        {
2606 2607 2608
            T to_vector;
            std::transform(m_value.array->begin(), m_value.array->end(),
                           std::inserter(to_vector, to_vector.end()), [](basic_json i)
N
Niels 已提交
2609
            {
2610 2611 2612 2613 2614 2615 2616
                return i.get<typename T::value_type>();
            });
            return to_vector;
        }
        else
        {
            throw std::domain_error("type must be array, but is " + type_name());
N
Niels 已提交
2617 2618 2619
        }
    }

N
Niels 已提交
2620
    /// get an array (explicit)
N
Niels 已提交
2621 2622 2623
    template<class T, typename std::enable_if<
                 std::is_convertible<basic_json_t, T>::value and
                 not std::is_same<basic_json_t, T>::value, int>::type = 0>
N
Niels 已提交
2624
    std::vector<T> get_impl(std::vector<T>*) const
N
Niels 已提交
2625
    {
N
cleanup  
Niels 已提交
2626
        if (is_array())
N
Niels 已提交
2627
        {
2628 2629 2630 2631
            std::vector<T> to_vector;
            to_vector.reserve(m_value.array->size());
            std::transform(m_value.array->begin(), m_value.array->end(),
                           std::inserter(to_vector, to_vector.end()), [](basic_json i)
N
Niels 已提交
2632
            {
2633 2634 2635 2636 2637 2638 2639
                return i.get<T>();
            });
            return to_vector;
        }
        else
        {
            throw std::domain_error("type must be array, but is " + type_name());
N
Niels 已提交
2640 2641 2642
        }
    }

N
Niels 已提交
2643
    /// get an array (explicit)
N
Niels 已提交
2644 2645 2646
    template<class T, typename std::enable_if<
                 std::is_same<basic_json, typename T::value_type>::value and
                 not has_mapped_type<T>::value, int>::type = 0>
N
Niels 已提交
2647
    T get_impl(T*) const
N
Niels 已提交
2648
    {
N
Niels 已提交
2649 2650 2651 2652 2653 2654 2655 2656
        if (is_array())
        {
            return T(m_value.array->begin(), m_value.array->end());
        }
        else
        {
            throw std::domain_error("type must be array, but is " + type_name());
        }
N
Niels 已提交
2657 2658
    }

N
Niels 已提交
2659
    /// get an array (explicit)
N
Niels 已提交
2660
    array_t get_impl(array_t*) const
N
Niels 已提交
2661
    {
N
Niels 已提交
2662 2663 2664 2665 2666 2667 2668 2669
        if (is_array())
        {
            return *(m_value.array);
        }
        else
        {
            throw std::domain_error("type must be array, but is " + type_name());
        }
N
Niels 已提交
2670 2671 2672
    }

    /// get a string (explicit)
N
Niels 已提交
2673 2674
    template<typename T, typename std::enable_if<
                 std::is_convertible<string_t, T>::value, int>::type = 0>
N
Niels 已提交
2675
    T get_impl(T*) const
N
Niels 已提交
2676
    {
N
Niels 已提交
2677 2678 2679 2680 2681 2682 2683 2684
        if (is_string())
        {
            return *m_value.string;
        }
        else
        {
            throw std::domain_error("type must be string, but is " + type_name());
        }
N
Niels 已提交
2685 2686
    }

N
Niels 已提交
2687
    /// get a number (explicit)
N
Niels 已提交
2688 2689
    template<typename T, typename std::enable_if<
                 std::is_arithmetic<T>::value, int>::type = 0>
N
Niels 已提交
2690
    T get_impl(T*) const
N
Niels 已提交
2691 2692 2693
    {
        switch (m_type)
        {
2694
            case value_t::number_integer:
N
Niels 已提交
2695
            {
N
Niels 已提交
2696
                return static_cast<T>(m_value.number_integer);
N
Niels 已提交
2697
            }
N
Niels 已提交
2698

2699 2700 2701 2702
            case value_t::number_unsigned:
            {
                return static_cast<T>(m_value.number_unsigned);
            }
2703 2704

            case value_t::number_float:
N
Niels 已提交
2705
            {
N
Niels 已提交
2706
                return static_cast<T>(m_value.number_float);
N
Niels 已提交
2707
            }
2708

N
Niels 已提交
2709
            default:
N
Niels 已提交
2710
            {
N
Niels 已提交
2711
                throw std::domain_error("type must be number, but is " + type_name());
N
Niels 已提交
2712 2713 2714 2715 2716
            }
        }
    }

    /// get a boolean (explicit)
N
Niels 已提交
2717
    constexpr boolean_t get_impl(boolean_t*) const
N
Niels 已提交
2718
    {
N
Niels 已提交
2719 2720 2721
        return is_boolean()
               ? m_value.boolean
               : throw std::domain_error("type must be boolean, but is " + type_name());
N
Niels 已提交
2722 2723
    }

N
Niels 已提交
2724
    /// get a pointer to the value (object)
N
Niels 已提交
2725
    object_t* get_impl_ptr(object_t*) noexcept
N
Niels 已提交
2726 2727 2728 2729
    {
        return is_object() ? m_value.object : nullptr;
    }

N
Niels 已提交
2730
    /// get a pointer to the value (object)
N
Niels 已提交
2731
    constexpr const object_t* get_impl_ptr(const object_t*) const noexcept
N
Niels 已提交
2732 2733 2734 2735 2736 2737 2738 2739 2740 2741
    {
        return is_object() ? m_value.object : nullptr;
    }

    /// get a pointer to the value (array)
    array_t* get_impl_ptr(array_t*) noexcept
    {
        return is_array() ? m_value.array : nullptr;
    }

N
Niels 已提交
2742
    /// get a pointer to the value (array)
N
Niels 已提交
2743
    constexpr const array_t* get_impl_ptr(const array_t*) const noexcept
N
Niels 已提交
2744 2745 2746 2747 2748
    {
        return is_array() ? m_value.array : nullptr;
    }

    /// get a pointer to the value (string)
N
Niels 已提交
2749 2750 2751 2752 2753 2754
    string_t* get_impl_ptr(string_t*) noexcept
    {
        return is_string() ? m_value.string : nullptr;
    }

    /// get a pointer to the value (string)
N
Niels 已提交
2755
    constexpr const string_t* get_impl_ptr(const string_t*) const noexcept
N
Niels 已提交
2756 2757 2758 2759 2760
    {
        return is_string() ? m_value.string : nullptr;
    }

    /// get a pointer to the value (boolean)
N
Niels 已提交
2761 2762 2763 2764 2765 2766
    boolean_t* get_impl_ptr(boolean_t*) noexcept
    {
        return is_boolean() ? &m_value.boolean : nullptr;
    }

    /// get a pointer to the value (boolean)
N
Niels 已提交
2767
    constexpr const boolean_t* get_impl_ptr(const boolean_t*) const noexcept
N
Niels 已提交
2768 2769 2770 2771 2772
    {
        return is_boolean() ? &m_value.boolean : nullptr;
    }

    /// get a pointer to the value (integer number)
N
Niels 已提交
2773 2774 2775 2776 2777 2778
    number_integer_t* get_impl_ptr(number_integer_t*) noexcept
    {
        return is_number_integer() ? &m_value.number_integer : nullptr;
    }

    /// get a pointer to the value (integer number)
N
Niels 已提交
2779
    constexpr const number_integer_t* get_impl_ptr(const number_integer_t*) const noexcept
N
Niels 已提交
2780 2781 2782
    {
        return is_number_integer() ? &m_value.number_integer : nullptr;
    }
N
Niels 已提交
2783

2784 2785 2786 2787 2788
    /// get a pointer to the value (unsigned number)
    number_unsigned_t* get_impl_ptr(number_unsigned_t*) noexcept
    {
        return is_number_unsigned() ? &m_value.number_unsigned : nullptr;
    }
N
Niels 已提交
2789

2790
    /// get a pointer to the value (unsigned number)
N
Niels 已提交
2791
    constexpr const number_unsigned_t* get_impl_ptr(const number_unsigned_t*) const noexcept
2792 2793 2794
    {
        return is_number_unsigned() ? &m_value.number_unsigned : nullptr;
    }
N
Niels 已提交
2795

N
Niels 已提交
2796
    /// get a pointer to the value (floating-point number)
N
Niels 已提交
2797 2798 2799 2800 2801 2802
    number_float_t* get_impl_ptr(number_float_t*) noexcept
    {
        return is_number_float() ? &m_value.number_float : nullptr;
    }

    /// get a pointer to the value (floating-point number)
N
Niels 已提交
2803
    constexpr const number_float_t* get_impl_ptr(const number_float_t*) const noexcept
N
Niels 已提交
2804 2805 2806 2807
    {
        return is_number_float() ? &m_value.number_float : nullptr;
    }

N
Niels 已提交
2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819
    /*!
    @brief helper function to implement get_ref()

    This funcion helps to implement get_ref() without code duplication for
    const and non-const overloads

    @tparam ThisType will be deduced as `basic_json` or `const basic_json`

    @throw std::domain_error if ReferenceType does not match underlying value
    type of the current JSON
    */
    template<typename ReferenceType, typename ThisType>
2820
    static ReferenceType get_ref_impl(ThisType& obj)
D
dariomt 已提交
2821
    {
N
Niels 已提交
2822
        // helper type
N
Niels 已提交
2823 2824
        using PointerType = typename std::add_pointer<ReferenceType>::type;

N
Niels 已提交
2825
        // delegate the call to get_ptr<>()
2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836
        auto ptr = obj.template get_ptr<PointerType>();

        if (ptr != nullptr)
        {
            return *ptr;
        }
        else
        {
            throw std::domain_error("incompatible ReferenceType for get_ref, actual type is " +
                                    obj.type_name());
        }
D
dariomt 已提交
2837 2838
    }

N
Niels 已提交
2839
  public:
N
Niels 已提交
2840 2841

    /// @name value access
N
Niels 已提交
2842
    /// Direct access to the stored value of a JSON value.
N
Niels 已提交
2843 2844
    /// @{

N
Niels 已提交
2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856
    /*!
    @brief get a value (explicit)

    Explicit type conversion between the JSON value and a compatible value.

    @tparam ValueType non-pointer type compatible to the JSON value, for
    instance `int` for JSON integer numbers, `bool` for JSON booleans, or
    `std::vector` types for JSON arrays

    @return copy of the JSON value, converted to type @a ValueType

    @throw std::domain_error in case passed type @a ValueType is incompatible
N
Niels 已提交
2857
    to JSON; example: `"type must be object, but is null"`
N
Niels 已提交
2858 2859 2860

    @complexity Linear in the size of the JSON value.

N
Niels 已提交
2861
    @liveexample{The example below shows several conversions from JSON values
N
Niels 已提交
2862 2863 2864
    to other types. There a few things to note: (1) Floating-point numbers can
    be converted to integers\, (2) A JSON array can be converted to a standard
    `std::vector<short>`\, (3) A JSON object can be converted to C++
N
Niels 已提交
2865
    associative containers such as `std::unordered_map<std::string\,
N
Niels 已提交
2866 2867 2868 2869 2870 2871 2872 2873 2874
    json>`.,get__ValueType_const}

    @internal
    The idea of using a casted null pointer to choose the correct
    implementation is from <http://stackoverflow.com/a/8315197/266378>.
    @endinternal

    @sa @ref operator ValueType() const for implicit conversion
    @sa @ref get() for pointer-member access
N
Niels 已提交
2875

N
Niels 已提交
2876
    @since version 1.0.0
N
Niels 已提交
2877
    */
N
Niels 已提交
2878 2879
    template<typename ValueType, typename std::enable_if<
                 not std::is_pointer<ValueType>::value, int>::type = 0>
N
Niels 已提交
2880
    ValueType get() const
N
Niels 已提交
2881
    {
N
Niels 已提交
2882
        return get_impl(static_cast<ValueType*>(nullptr));
N
Niels 已提交
2883 2884
    }

N
Niels 已提交
2885 2886 2887 2888 2889 2890
    /*!
    @brief get a pointer value (explicit)

    Explicit pointer access to the internally stored JSON value. No copies are
    made.

N
Niels 已提交
2891 2892
    @warning The pointer becomes invalid if the underlying JSON object
    changes.
N
Niels 已提交
2893 2894

    @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref
N
Niels 已提交
2895
    object_t, @ref string_t, @ref boolean_t, @ref number_integer_t,
2896
    @ref number_unsigned_t, or @ref number_float_t.
N
Niels 已提交
2897

N
Niels 已提交
2898 2899
    @return pointer to the internally stored JSON value if the requested
    pointer type @a PointerType fits to the JSON value; `nullptr` otherwise
N
Niels 已提交
2900 2901 2902 2903 2904 2905 2906 2907 2908

    @complexity Constant.

    @liveexample{The example below shows how pointers to internal values of a
    JSON value can be requested. Note that no type conversions are made and a
    `nullptr` is returned if the value and the requested pointer type does not
    match.,get__PointerType}

    @sa @ref get_ptr() for explicit pointer-member access
N
Niels 已提交
2909

N
Niels 已提交
2910
    @since version 1.0.0
N
Niels 已提交
2911
    */
N
Niels 已提交
2912 2913
    template<typename PointerType, typename std::enable_if<
                 std::is_pointer<PointerType>::value, int>::type = 0>
N
Niels 已提交
2914 2915 2916 2917 2918 2919 2920 2921 2922 2923
    PointerType get() noexcept
    {
        // delegate the call to get_ptr
        return get_ptr<PointerType>();
    }

    /*!
    @brief get a pointer value (explicit)
    @copydoc get()
    */
N
Niels 已提交
2924 2925
    template<typename PointerType, typename std::enable_if<
                 std::is_pointer<PointerType>::value, int>::type = 0>
N
Niels 已提交
2926
    constexpr const PointerType get() const noexcept
N
Niels 已提交
2927 2928 2929 2930 2931 2932 2933 2934
    {
        // delegate the call to get_ptr
        return get_ptr<PointerType>();
    }

    /*!
    @brief get a pointer value (implicit)

N
Niels 已提交
2935
    Implicit pointer access to the internally stored JSON value. No copies are
N
Niels 已提交
2936 2937 2938 2939 2940 2941
    made.

    @warning Writing data to the pointee of the result yields an undefined
    state.

    @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref
N
Niels 已提交
2942
    object_t, @ref string_t, @ref boolean_t, @ref number_integer_t,
N
Niels 已提交
2943 2944
    @ref number_unsigned_t, or @ref number_float_t. Enforced by a static
    assertion.
N
Niels 已提交
2945

N
Niels 已提交
2946 2947
    @return pointer to the internally stored JSON value if the requested
    pointer type @a PointerType fits to the JSON value; `nullptr` otherwise
N
Niels 已提交
2948 2949 2950 2951 2952 2953 2954

    @complexity Constant.

    @liveexample{The example below shows how pointers to internal values of a
    JSON value can be requested. Note that no type conversions are made and a
    `nullptr` is returned if the value and the requested pointer type does not
    match.,get_ptr}
N
Niels 已提交
2955

N
Niels 已提交
2956
    @since version 1.0.0
N
Niels 已提交
2957
    */
N
Niels 已提交
2958 2959
    template<typename PointerType, typename std::enable_if<
                 std::is_pointer<PointerType>::value, int>::type = 0>
N
Niels 已提交
2960 2961
    PointerType get_ptr() noexcept
    {
N
Niels 已提交
2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976
        // get the type of the PointerType (remove pointer and const)
        using pointee_t = typename std::remove_const<typename
                          std::remove_pointer<typename
                          std::remove_const<PointerType>::type>::type>::type;
        // make sure the type matches the allowed types
        static_assert(
            std::is_same<object_t, pointee_t>::value
            or std::is_same<array_t, pointee_t>::value
            or std::is_same<string_t, pointee_t>::value
            or std::is_same<boolean_t, pointee_t>::value
            or std::is_same<number_integer_t, pointee_t>::value
            or std::is_same<number_unsigned_t, pointee_t>::value
            or std::is_same<number_float_t, pointee_t>::value
            , "incompatible pointer type");

N
Niels 已提交
2977 2978 2979 2980 2981 2982 2983 2984
        // delegate the call to get_impl_ptr<>()
        return get_impl_ptr(static_cast<PointerType>(nullptr));
    }

    /*!
    @brief get a pointer value (implicit)
    @copydoc get_ptr()
    */
N
Niels 已提交
2985 2986 2987
    template<typename PointerType, typename std::enable_if<
                 std::is_pointer<PointerType>::value and
                 std::is_const<typename std::remove_pointer<PointerType>::type>::value, int>::type = 0>
N
Niels 已提交
2988
    constexpr const PointerType get_ptr() const noexcept
N
Niels 已提交
2989
    {
N
Niels 已提交
2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004
        // get the type of the PointerType (remove pointer and const)
        using pointee_t = typename std::remove_const<typename
                          std::remove_pointer<typename
                          std::remove_const<PointerType>::type>::type>::type;
        // make sure the type matches the allowed types
        static_assert(
            std::is_same<object_t, pointee_t>::value
            or std::is_same<array_t, pointee_t>::value
            or std::is_same<string_t, pointee_t>::value
            or std::is_same<boolean_t, pointee_t>::value
            or std::is_same<number_integer_t, pointee_t>::value
            or std::is_same<number_unsigned_t, pointee_t>::value
            or std::is_same<number_float_t, pointee_t>::value
            , "incompatible pointer type");

N
Niels 已提交
3005
        // delegate the call to get_impl_ptr<>() const
D
dariomt 已提交
3006
        return get_impl_ptr(static_cast<const PointerType>(nullptr));
D
dariomt 已提交
3007 3008
    }

N
Niels 已提交
3009
    /*!
D
dariomt 已提交
3010 3011
    @brief get a reference value (implicit)

N
Niels 已提交
3012 3013
    Implict reference access to the internally stored JSON value. No copies
    are made.
D
dariomt 已提交
3014 3015 3016 3017

    @warning Writing data to the referee of the result yields an undefined
    state.

N
Niels 已提交
3018 3019
    @tparam ReferenceType reference type; must be a reference to @ref array_t,
    @ref object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, or
N
Niels 已提交
3020
    @ref number_float_t. Enforced by static assertion.
D
dariomt 已提交
3021

N
Niels 已提交
3022 3023 3024
    @return reference to the internally stored JSON value if the requested
    reference type @a ReferenceType fits to the JSON value; throws
    std::domain_error otherwise
D
dariomt 已提交
3025

N
Niels 已提交
3026 3027
    @throw std::domain_error in case passed type @a ReferenceType is
    incompatible with the stored JSON value
D
dariomt 已提交
3028 3029

    @complexity Constant.
N
Niels 已提交
3030 3031 3032

    @liveexample{The example shows several calls to `get_ref()`.,get_ref}

N
Niels 已提交
3033
    @since version 1.1.0
D
dariomt 已提交
3034
    */
N
Niels 已提交
3035 3036
    template<typename ReferenceType, typename std::enable_if<
                 std::is_reference<ReferenceType>::value, int>::type = 0>
D
dariomt 已提交
3037 3038
    ReferenceType get_ref()
    {
N
Niels 已提交
3039 3040
        // delegate call to get_ref_impl
        return get_ref_impl<ReferenceType>(*this);
D
dariomt 已提交
3041 3042 3043 3044 3045 3046
    }

    /*!
    @brief get a reference value (implicit)
    @copydoc get_ref()
    */
N
Niels 已提交
3047 3048 3049
    template<typename ReferenceType, typename std::enable_if<
                 std::is_reference<ReferenceType>::value and
                 std::is_const<typename std::remove_reference<ReferenceType>::type>::value, int>::type = 0>
3050
    ReferenceType get_ref() const
D
dariomt 已提交
3051
    {
N
Niels 已提交
3052 3053
        // delegate call to get_ref_impl
        return get_ref_impl<ReferenceType>(*this);
N
Niels 已提交
3054 3055 3056 3057 3058
    }

    /*!
    @brief get a value (implicit)

N
Niels 已提交
3059 3060
    Implicit type conversion between the JSON value and a compatible value.
    The call is realized by calling @ref get() const.
N
Niels 已提交
3061 3062 3063

    @tparam ValueType non-pointer type compatible to the JSON value, for
    instance `int` for JSON integer numbers, `bool` for JSON booleans, or
N
Niels 已提交
3064 3065 3066
    `std::vector` types for JSON arrays. The character type of @ref string_t
    as well as an initializer list of this type is excluded to avoid
    ambiguities as these types implicitly convert to `std::string`.
N
Niels 已提交
3067 3068 3069 3070 3071 3072 3073 3074

    @return copy of the JSON value, converted to type @a ValueType

    @throw std::domain_error in case passed type @a ValueType is incompatible
    to JSON, thrown by @ref get() const

    @complexity Linear in the size of the JSON value.

N
Niels 已提交
3075
    @liveexample{The example below shows several conversions from JSON values
N
Niels 已提交
3076 3077 3078
    to other types. There a few things to note: (1) Floating-point numbers can
    be converted to integers\, (2) A JSON array can be converted to a standard
    `std::vector<short>`\, (3) A JSON object can be converted to C++
N
Niels 已提交
3079
    associative containers such as `std::unordered_map<std::string\,
N
Niels 已提交
3080
    json>`.,operator__ValueType}
N
Niels 已提交
3081

N
Niels 已提交
3082
    @since version 1.0.0
N
Niels 已提交
3083
    */
N
Niels 已提交
3084 3085 3086
    template < typename ValueType, typename std::enable_if <
                   not std::is_pointer<ValueType>::value and
                   not std::is_same<ValueType, typename string_t::value_type>::value
3087
#ifndef _MSC_VER  // Fix for issue #167 operator<< abiguity under VS2015
N
Niels 已提交
3088
                   and not std::is_same<ValueType, std::initializer_list<typename string_t::value_type>>::value
3089
#endif
N
Niels 已提交
3090
                   , int >::type = 0 >
N
Niels 已提交
3091
    operator ValueType() const
N
Niels 已提交
3092
    {
N
Niels 已提交
3093 3094
        // delegate the call to get<>() const
        return get<ValueType>();
N
Niels 已提交
3095 3096
    }

N
Niels 已提交
3097 3098
    /// @}

N
Niels 已提交
3099 3100 3101 3102 3103

    ////////////////////
    // element access //
    ////////////////////

N
Niels 已提交
3104
    /// @name element access
N
Niels 已提交
3105
    /// Access to the JSON value.
N
Niels 已提交
3106 3107
    /// @{

N
Niels 已提交
3108 3109 3110 3111 3112 3113 3114 3115 3116 3117
    /*!
    @brief access specified array element with bounds checking

    Returns a reference to the element at specified location @a idx, with
    bounds checking.

    @param[in] idx  index of the element to access

    @return reference to the element at index @a idx

N
Niels 已提交
3118 3119
    @throw std::domain_error if the JSON value is not an array; example:
    `"cannot use at() with string"`
N
Niels 已提交
3120
    @throw std::out_of_range if the index @a idx is out of range of the array;
N
Niels 已提交
3121
    that is, `idx >= size()`; example: `"array index 7 is out of range"`
N
Niels 已提交
3122 3123 3124 3125

    @complexity Constant.

    @liveexample{The example below shows how array elements can be read and
N
Niels 已提交
3126
    written using `at()`.,at__size_type}
N
Niels 已提交
3127

N
Niels 已提交
3128
    @since version 1.0.0
N
Niels 已提交
3129
    */
N
Niels 已提交
3130
    reference at(size_type idx)
N
Niels 已提交
3131 3132
    {
        // at only works for arrays
3133 3134
        if (is_array())
        {
N
Niels 已提交
3135 3136 3137 3138
            try
            {
                return m_value.array->at(idx);
            }
3139
            catch (std::out_of_range&)
N
Niels 已提交
3140 3141 3142 3143
            {
                // create better exception explanation
                throw std::out_of_range("array index " + std::to_string(idx) + " is out of range");
            }
3144 3145
        }
        else
N
Niels 已提交
3146
        {
N
Niels 已提交
3147
            throw std::domain_error("cannot use at() with " + type_name());
N
Niels 已提交
3148 3149 3150
        }
    }

N
Niels 已提交
3151 3152 3153
    /*!
    @brief access specified array element with bounds checking

N
Niels 已提交
3154 3155
    Returns a const reference to the element at specified location @a idx,
    with bounds checking.
N
Niels 已提交
3156 3157 3158 3159 3160

    @param[in] idx  index of the element to access

    @return const reference to the element at index @a idx

N
Niels 已提交
3161 3162
    @throw std::domain_error if the JSON value is not an array; example:
    `"cannot use at() with string"`
N
Niels 已提交
3163
    @throw std::out_of_range if the index @a idx is out of range of the array;
N
Niels 已提交
3164
    that is, `idx >= size()`; example: `"array index 7 is out of range"`
N
Niels 已提交
3165 3166 3167 3168

    @complexity Constant.

    @liveexample{The example below shows how array elements can be read using
N
Niels 已提交
3169
    `at()`.,at__size_type_const}
N
Niels 已提交
3170

N
Niels 已提交
3171
    @since version 1.0.0
N
Niels 已提交
3172
    */
N
Niels 已提交
3173
    const_reference at(size_type idx) const
N
Niels 已提交
3174 3175
    {
        // at only works for arrays
3176 3177
        if (is_array())
        {
N
Niels 已提交
3178 3179 3180 3181
            try
            {
                return m_value.array->at(idx);
            }
3182
            catch (std::out_of_range&)
N
Niels 已提交
3183 3184 3185 3186
            {
                // create better exception explanation
                throw std::out_of_range("array index " + std::to_string(idx) + " is out of range");
            }
3187 3188
        }
        else
N
Niels 已提交
3189
        {
N
Niels 已提交
3190
            throw std::domain_error("cannot use at() with " + type_name());
N
Niels 已提交
3191
        }
3192 3193
    }

N
Niels 已提交
3194 3195 3196 3197 3198 3199 3200 3201 3202 3203
    /*!
    @brief access specified object element with bounds checking

    Returns a reference to the element at with specified key @a key, with
    bounds checking.

    @param[in] key  key of the element to access

    @return reference to the element at key @a key

N
Niels 已提交
3204 3205
    @throw std::domain_error if the JSON value is not an object; example:
    `"cannot use at() with boolean"`
N
Niels 已提交
3206
    @throw std::out_of_range if the key @a key is is not stored in the object;
N
Niels 已提交
3207
    that is, `find(key) == end()`; example: `"key "the fast" not found"`
N
Niels 已提交
3208 3209 3210 3211

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
N
Niels 已提交
3212
    written using `at()`.,at__object_t_key_type}
N
Niels 已提交
3213 3214 3215 3216

    @sa @ref operator[](const typename object_t::key_type&) for unchecked
    access by reference
    @sa @ref value() for access by value with a default value
N
Niels 已提交
3217

N
Niels 已提交
3218
    @since version 1.0.0
N
Niels 已提交
3219
    */
N
Niels 已提交
3220
    reference at(const typename object_t::key_type& key)
3221 3222
    {
        // at only works for objects
3223 3224
        if (is_object())
        {
N
Niels 已提交
3225 3226 3227 3228
            try
            {
                return m_value.object->at(key);
            }
3229
            catch (std::out_of_range&)
N
Niels 已提交
3230 3231 3232 3233
            {
                // create better exception explanation
                throw std::out_of_range("key '" + key + "' not found");
            }
3234 3235
        }
        else
3236
        {
N
Niels 已提交
3237
            throw std::domain_error("cannot use at() with " + type_name());
3238 3239 3240
        }
    }

N
Niels 已提交
3241 3242 3243
    /*!
    @brief access specified object element with bounds checking

N
Niels 已提交
3244 3245
    Returns a const reference to the element at with specified key @a key,
    with bounds checking.
N
Niels 已提交
3246 3247 3248 3249 3250

    @param[in] key  key of the element to access

    @return const reference to the element at key @a key

N
Niels 已提交
3251 3252
    @throw std::domain_error if the JSON value is not an object; example:
    `"cannot use at() with boolean"`
N
Niels 已提交
3253
    @throw std::out_of_range if the key @a key is is not stored in the object;
N
Niels 已提交
3254
    that is, `find(key) == end()`; example: `"key "the fast" not found"`
N
Niels 已提交
3255 3256 3257 3258

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read using
N
Niels 已提交
3259
    `at()`.,at__object_t_key_type_const}
N
Niels 已提交
3260 3261 3262 3263

    @sa @ref operator[](const typename object_t::key_type&) for unchecked
    access by reference
    @sa @ref value() for access by value with a default value
N
Niels 已提交
3264

N
Niels 已提交
3265
    @since version 1.0.0
N
Niels 已提交
3266
    */
N
Niels 已提交
3267
    const_reference at(const typename object_t::key_type& key) const
3268 3269
    {
        // at only works for objects
3270 3271
        if (is_object())
        {
N
Niels 已提交
3272 3273 3274 3275
            try
            {
                return m_value.object->at(key);
            }
3276
            catch (std::out_of_range&)
N
Niels 已提交
3277 3278 3279 3280
            {
                // create better exception explanation
                throw std::out_of_range("key '" + key + "' not found");
            }
3281 3282
        }
        else
3283
        {
N
Niels 已提交
3284
            throw std::domain_error("cannot use at() with " + type_name());
3285
        }
N
Niels 已提交
3286 3287
    }

N
Niels 已提交
3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300
    /*!
    @brief access specified array element

    Returns a reference to the element at specified location @a idx.

    @note If @a idx is beyond the range of the array (i.e., `idx >= size()`),
    then the array is silently filled up with `null` values to make `idx` a
    valid reference to the last stored element.

    @param[in] idx  index of the element to access

    @return reference to the element at index @a idx

N
Niels 已提交
3301 3302
    @throw std::domain_error if JSON is not an array or null; example:
    `"cannot use operator[] with string"`
N
Niels 已提交
3303 3304 3305 3306 3307

    @complexity Constant if @a idx is in the range of the array. Otherwise
    linear in `idx - size()`.

    @liveexample{The example below shows how array elements can be read and
N
Niels 已提交
3308
    written using `[]` operator. Note the addition of `null`
N
Niels 已提交
3309
    values.,operatorarray__size_type}
N
Niels 已提交
3310

N
Niels 已提交
3311
    @since version 1.0.0
N
Niels 已提交
3312
    */
N
Niels 已提交
3313
    reference operator[](size_type idx)
N
Niels 已提交
3314
    {
N
Niels 已提交
3315
        // implicitly convert null value to an empty array
N
cleanup  
Niels 已提交
3316
        if (is_null())
N
Niels 已提交
3317 3318
        {
            m_type = value_t::array;
N
Cleanup  
Niels 已提交
3319
            m_value.array = create<array_t>();
3320
            assert_invariant();
N
Niels 已提交
3321 3322
        }

N
Niels 已提交
3323
        // operator[] only works for arrays
N
cleanup  
Niels 已提交
3324
        if (is_array())
N
Niels 已提交
3325
        {
N
Niels 已提交
3326 3327
            // fill up array with null values if given idx is outside range
            if (idx >= m_value.array->size())
N
cleanup  
Niels 已提交
3328
            {
N
Niels 已提交
3329 3330 3331
                m_value.array->insert(m_value.array->end(),
                                      idx - m_value.array->size() + 1,
                                      basic_json());
N
cleanup  
Niels 已提交
3332
            }
N
Niels 已提交
3333

N
cleanup  
Niels 已提交
3334 3335 3336
            return m_value.array->operator[](idx);
        }
        else
N
Niels 已提交
3337
        {
N
cleanup  
Niels 已提交
3338
            throw std::domain_error("cannot use operator[] with " + type_name());
N
Niels 已提交
3339
        }
N
Niels 已提交
3340 3341
    }

N
Niels 已提交
3342 3343 3344 3345 3346 3347 3348 3349 3350
    /*!
    @brief access specified array element

    Returns a const reference to the element at specified location @a idx.

    @param[in] idx  index of the element to access

    @return const reference to the element at index @a idx

N
Niels 已提交
3351 3352
    @throw std::domain_error if JSON is not an array; example: `"cannot use
    operator[] with null"`
N
Niels 已提交
3353 3354 3355 3356

    @complexity Constant.

    @liveexample{The example below shows how array elements can be read using
N
Niels 已提交
3357
    the `[]` operator.,operatorarray__size_type_const}
N
Niels 已提交
3358

N
Niels 已提交
3359
    @since version 1.0.0
N
Niels 已提交
3360
    */
N
Niels 已提交
3361
    const_reference operator[](size_type idx) const
N
Niels 已提交
3362
    {
N
Niels 已提交
3363
        // const operator[] only works for arrays
N
Niels 已提交
3364 3365 3366 3367 3368 3369 3370 3371
        if (is_array())
        {
            return m_value.array->operator[](idx);
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
N
Niels 已提交
3372 3373
    }

N
Niels 已提交
3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386
    /*!
    @brief access specified object element

    Returns a reference to the element at with specified key @a key.

    @note If @a key is not found in the object, then it is silently added to
    the object and filled with a `null` value to make `key` a valid reference.
    In case the value was `null` before, it is converted to an object.

    @param[in] key  key of the element to access

    @return reference to the element at key @a key

N
Niels 已提交
3387
    @throw std::domain_error if JSON is not an object or null; example:
N
Niels 已提交
3388
    `"cannot use operator[] with string"`
N
Niels 已提交
3389 3390 3391 3392

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
N
Niels 已提交
3393
    written using the `[]` operator.,operatorarray__key_type}
N
Niels 已提交
3394 3395 3396 3397

    @sa @ref at(const typename object_t::key_type&) for access by reference
    with range checking
    @sa @ref value() for access by value with a default value
N
Niels 已提交
3398

N
Niels 已提交
3399
    @since version 1.0.0
N
Niels 已提交
3400
    */
N
Niels 已提交
3401
    reference operator[](const typename object_t::key_type& key)
N
Niels 已提交
3402
    {
N
Niels 已提交
3403
        // implicitly convert null value to an empty object
N
cleanup  
Niels 已提交
3404
        if (is_null())
N
Niels 已提交
3405 3406
        {
            m_type = value_t::object;
N
Cleanup  
Niels 已提交
3407
            m_value.object = create<object_t>();
3408
            assert_invariant();
N
Niels 已提交
3409 3410
        }

N
Niels 已提交
3411
        // operator[] only works for objects
N
Niels 已提交
3412 3413 3414 3415 3416 3417 3418 3419
        if (is_object())
        {
            return m_value.object->operator[](key);
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
N
Niels 已提交
3420 3421
    }

N
Niels 已提交
3422
    /*!
3423
    @brief read-only access specified object element
N
Niels 已提交
3424

3425 3426 3427 3428 3429
    Returns a const reference to the element at with specified key @a key. No
    bounds checking is performed.

    @warning If the element with key @a key does not exist, the behavior is
    undefined.
N
Niels 已提交
3430 3431 3432

    @param[in] key  key of the element to access

3433
    @return const reference to the element at key @a key
N
Niels 已提交
3434

N
Niels 已提交
3435 3436 3437
    @pre The element with key @a key must exist. **This precondition is
         enforced with an assertion.**

N
Niels 已提交
3438 3439
    @throw std::domain_error if JSON is not an object; example: `"cannot use
    operator[] with null"`
N
Niels 已提交
3440 3441 3442 3443

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read using
N
Niels 已提交
3444
    the `[]` operator.,operatorarray__key_type_const}
3445 3446 3447 3448 3449

    @sa @ref at(const typename object_t::key_type&) for access by reference
    with range checking
    @sa @ref value() for access by value with a default value

N
Niels 已提交
3450
    @since version 1.0.0
N
Niels 已提交
3451
    */
N
Niels 已提交
3452
    const_reference operator[](const typename object_t::key_type& key) const
3453
    {
N
Niels 已提交
3454
        // const operator[] only works for objects
N
Niels 已提交
3455 3456 3457 3458 3459 3460 3461 3462 3463
        if (is_object())
        {
            assert(m_value.object->find(key) != m_value.object->end());
            return m_value.object->find(key)->second;
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
3464 3465
    }

N
Niels 已提交
3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478
    /*!
    @brief access specified object element

    Returns a reference to the element at with specified key @a key.

    @note If @a key is not found in the object, then it is silently added to
    the object and filled with a `null` value to make `key` a valid reference.
    In case the value was `null` before, it is converted to an object.

    @param[in] key  key of the element to access

    @return reference to the element at key @a key

N
Niels 已提交
3479
    @throw std::domain_error if JSON is not an object or null; example:
N
Niels 已提交
3480
    `"cannot use operator[] with string"`
N
Niels 已提交
3481 3482 3483 3484

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
N
Niels 已提交
3485
    written using the `[]` operator.,operatorarray__key_type}
N
Niels 已提交
3486 3487 3488 3489

    @sa @ref at(const typename object_t::key_type&) for access by reference
    with range checking
    @sa @ref value() for access by value with a default value
N
Niels 已提交
3490

N
Niels 已提交
3491
    @since version 1.0.0
N
Niels 已提交
3492
    */
N
Niels 已提交
3493
    template<typename T, std::size_t n>
N
Niels 已提交
3494
    reference operator[](T * (&key)[n])
3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519
    {
        return operator[](static_cast<const T>(key));
    }

    /*!
    @brief read-only access specified object element

    Returns a const reference to the element at with specified key @a key. No
    bounds checking is performed.

    @warning If the element with key @a key does not exist, the behavior is
    undefined.

    @note This function is required for compatibility reasons with Clang.

    @param[in] key  key of the element to access

    @return const reference to the element at key @a key

    @throw std::domain_error if JSON is not an object; example: `"cannot use
    operator[] with null"`

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read using
N
Niels 已提交
3520
    the `[]` operator.,operatorarray__key_type_const}
3521 3522 3523 3524 3525 3526 3527 3528

    @sa @ref at(const typename object_t::key_type&) for access by reference
    with range checking
    @sa @ref value() for access by value with a default value

    @since version 1.0.0
    */
    template<typename T, std::size_t n>
N
Niels 已提交
3529
    const_reference operator[](T * (&key)[n]) const
3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547
    {
        return operator[](static_cast<const T>(key));
    }

    /*!
    @brief access specified object element

    Returns a reference to the element at with specified key @a key.

    @note If @a key is not found in the object, then it is silently added to
    the object and filled with a `null` value to make `key` a valid reference.
    In case the value was `null` before, it is converted to an object.

    @param[in] key  key of the element to access

    @return reference to the element at key @a key

    @throw std::domain_error if JSON is not an object or null; example:
N
Niels 已提交
3548
    `"cannot use operator[] with string"`
3549 3550 3551 3552

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
N
Niels 已提交
3553
    written using the `[]` operator.,operatorarray__key_type}
3554 3555 3556 3557 3558

    @sa @ref at(const typename object_t::key_type&) for access by reference
    with range checking
    @sa @ref value() for access by value with a default value

N
Niels 已提交
3559
    @since version 1.1.0
3560 3561 3562
    */
    template<typename T>
    reference operator[](T* key)
N
Niels 已提交
3563
    {
N
Niels 已提交
3564
        // implicitly convert null to object
N
cleanup  
Niels 已提交
3565
        if (is_null())
N
Niels 已提交
3566 3567
        {
            m_type = value_t::object;
N
Niels 已提交
3568
            m_value = value_t::object;
3569
            assert_invariant();
N
Niels 已提交
3570 3571
        }

N
Niels 已提交
3572
        // at only works for objects
N
Niels 已提交
3573 3574 3575 3576 3577 3578 3579 3580
        if (is_object())
        {
            return m_value.object->operator[](key);
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
N
Niels 已提交
3581 3582
    }

N
Niels 已提交
3583
    /*!
3584
    @brief read-only access specified object element
N
Niels 已提交
3585

3586 3587 3588 3589 3590
    Returns a const reference to the element at with specified key @a key. No
    bounds checking is performed.

    @warning If the element with key @a key does not exist, the behavior is
    undefined.
N
Niels 已提交
3591 3592 3593

    @param[in] key  key of the element to access

3594
    @return const reference to the element at key @a key
N
Niels 已提交
3595

N
Niels 已提交
3596 3597 3598
    @pre The element with key @a key must exist. **This precondition is
         enforced with an assertion.**

N
Niels 已提交
3599 3600
    @throw std::domain_error if JSON is not an object; example: `"cannot use
    operator[] with null"`
N
Niels 已提交
3601 3602 3603 3604

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read using
N
Niels 已提交
3605
    the `[]` operator.,operatorarray__key_type_const}
3606 3607 3608 3609 3610

    @sa @ref at(const typename object_t::key_type&) for access by reference
    with range checking
    @sa @ref value() for access by value with a default value

N
Niels 已提交
3611
    @since version 1.1.0
N
Niels 已提交
3612
    */
3613 3614
    template<typename T>
    const_reference operator[](T* key) const
3615 3616
    {
        // at only works for objects
N
Niels 已提交
3617 3618 3619 3620 3621 3622 3623 3624 3625
        if (is_object())
        {
            assert(m_value.object->find(key) != m_value.object->end());
            return m_value.object->find(key)->second;
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
3626 3627
    }

N
Niels 已提交
3628 3629 3630
    /*!
    @brief access specified object element with default value

N
Niels 已提交
3631 3632
    Returns either a copy of an object's element at the specified key @a key
    or a given default value if no element with key @a key exists.
3633

N
Niels 已提交
3634
    The function is basically equivalent to executing
3635
    @code {.cpp}
N
Niels 已提交
3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660
    try {
        return at(key);
    } catch(std::out_of_range) {
        return default_value;
    }
    @endcode

    @note Unlike @ref at(const typename object_t::key_type&), this function
    does not throw if the given key @a key was not found.

    @note Unlike @ref operator[](const typename object_t::key_type& key), this
    function does not implicitly add an element to the position defined by @a
    key. This function is furthermore also applicable to const objects.

    @param[in] key  key of the element to access
    @param[in] default_value  the value to return if @a key is not found

    @tparam ValueType type compatible to JSON values, for instance `int` for
    JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for
    JSON arrays. Note the type of the expected value at @a key and the default
    value @a default_value must be compatible.

    @return copy of the element at key @a key or @a default_value if @a key
    is not found

N
Niels 已提交
3661 3662
    @throw std::domain_error if JSON is not an object; example: `"cannot use
    value() with null"`
N
Niels 已提交
3663 3664 3665 3666 3667 3668 3669 3670 3671 3672

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be queried
    with a default value.,basic_json__value}

    @sa @ref at(const typename object_t::key_type&) for access by reference
    with range checking
    @sa @ref operator[](const typename object_t::key_type&) for unchecked
    access by reference
N
Niels 已提交
3673

N
Niels 已提交
3674
    @since version 1.0.0
N
Niels 已提交
3675
    */
N
Niels 已提交
3676 3677
    template<class ValueType, typename std::enable_if<
                 std::is_convertible<basic_json_t, ValueType>::value, int>::type = 0>
N
Niels 已提交
3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700
    ValueType value(const typename object_t::key_type& key, ValueType default_value) const
    {
        // at only works for objects
        if (is_object())
        {
            // if key is found, return value and given default value otherwise
            const auto it = find(key);
            if (it != end())
            {
                return *it;
            }
            else
            {
                return default_value;
            }
        }
        else
        {
            throw std::domain_error("cannot use value() with " + type_name());
        }
    }

    /*!
N
Niels 已提交
3701
    @brief overload for a default value of type const char*
N
Niels 已提交
3702
    @copydoc basic_json::value(const typename object_t::key_type&, ValueType) const
N
Niels 已提交
3703 3704 3705 3706
    */
    string_t value(const typename object_t::key_type& key, const char* default_value) const
    {
        return value(key, string_t(default_value));
3707 3708
    }

N
Niels 已提交
3709 3710 3711
    /*!
    @brief access specified object element via JSON Pointer with default value

N
Niels 已提交
3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726
    Returns either a copy of an object's element at the specified key @a key
    or a given default value if no element with key @a key exists.

    The function is basically equivalent to executing
    @code {.cpp}
    try {
        return at(ptr);
    } catch(std::out_of_range) {
        return default_value;
    }
    @endcode

    @note Unlike @ref at(const json_pointer&), this function does not throw
    if the given key @a key was not found.

N
Niels 已提交
3727 3728 3729 3730 3731 3732 3733 3734
    @param[in] ptr  a JSON pointer to the element to access
    @param[in] default_value  the value to return if @a ptr found no value

    @tparam ValueType type compatible to JSON values, for instance `int` for
    JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for
    JSON arrays. Note the type of the expected value at @a key and the default
    value @a default_value must be compatible.

N
Niels 已提交
3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745
    @return copy of the element at key @a key or @a default_value if @a key
    is not found

    @throw std::domain_error if JSON is not an object; example: `"cannot use
    value() with null"`

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be queried
    with a default value.,basic_json__value_ptr}

N
Niels 已提交
3746
    @sa @ref operator[](const json_pointer&) for unchecked access by reference
N
Niels 已提交
3747

N
Niels 已提交
3748 3749
    @since version 2.0.2
    */
N
Niels 已提交
3750 3751
    template<class ValueType, typename std::enable_if<
                 std::is_convertible<basic_json_t, ValueType>::value, int>::type = 0>
N
Niels 已提交
3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774
    ValueType value(const json_pointer& ptr, ValueType default_value) const
    {
        // at only works for objects
        if (is_object())
        {
            // if pointer resolves a value, return it or use default value
            try
            {
                return ptr.get_checked(this);
            }
            catch (std::out_of_range&)
            {
                return default_value;
            }
        }
        else
        {
            throw std::domain_error("cannot use value() with " + type_name());
        }
    }

    /*!
    @brief overload for a default value of type const char*
N
Niels 已提交
3775
    @copydoc basic_json::value(const json_pointer&, ValueType) const
N
Niels 已提交
3776 3777 3778 3779 3780 3781
    */
    string_t value(const json_pointer& ptr, const char* default_value) const
    {
        return value(ptr, string_t(default_value));
    }

N
Niels 已提交
3782 3783 3784 3785 3786 3787
    /*!
    @brief access the first element

    Returns a reference to the first element in the container. For a JSON
    container `c`, the expression `c.front()` is equivalent to `*c.begin()`.

N
Niels 已提交
3788
    @return In case of a structured type (array or object), a reference to the
N
Niels 已提交
3789 3790 3791 3792 3793
    first element is returned. In cast of number, string, or boolean values, a
    reference to the value is returned.

    @complexity Constant.

N
Niels 已提交
3794
    @pre The JSON value must not be `null` (would throw `std::out_of_range`)
N
Niels 已提交
3795 3796
    or an empty array or object (undefined behavior, **guarded by
    assertions**).
N
Niels 已提交
3797 3798 3799
    @post The JSON value remains unchanged.

    @throw std::out_of_range when called on `null` value
N
Niels 已提交
3800

N
Niels 已提交
3801
    @liveexample{The following code shows an example for `front()`.,front}
N
Niels 已提交
3802

N
Niels 已提交
3803
    @sa @ref back() -- access the last element
N
Niels 已提交
3804

N
Niels 已提交
3805
    @since version 1.0.0
N
Niels 已提交
3806
    */
N
Niels 已提交
3807
    reference front()
N
Niels 已提交
3808 3809 3810 3811
    {
        return *begin();
    }

N
Niels 已提交
3812 3813 3814
    /*!
    @copydoc basic_json::front()
    */
N
Niels 已提交
3815
    const_reference front() const
N
Niels 已提交
3816 3817 3818 3819
    {
        return *cbegin();
    }

N
Niels 已提交
3820 3821 3822 3823
    /*!
    @brief access the last element

    Returns a reference to the last element in the container. For a JSON
N
Niels 已提交
3824 3825 3826 3827 3828 3829
    container `c`, the expression `c.back()` is equivalent to
    @code {.cpp}
    auto tmp = c.end();
    --tmp;
    return *tmp;
    @endcode
N
Niels 已提交
3830

N
Niels 已提交
3831
    @return In case of a structured type (array or object), a reference to the
N
Niels 已提交
3832 3833 3834 3835 3836
    last element is returned. In cast of number, string, or boolean values, a
    reference to the value is returned.

    @complexity Constant.

N
Niels 已提交
3837
    @pre The JSON value must not be `null` (would throw `std::out_of_range`)
N
Niels 已提交
3838 3839
    or an empty array or object (undefined behavior, **guarded by
    assertions**).
N
Niels 已提交
3840
    @post The JSON value remains unchanged.
N
Niels 已提交
3841

N
Niels 已提交
3842
    @throw std::out_of_range when called on `null` value.
N
Niels 已提交
3843

N
Niels 已提交
3844 3845 3846
    @liveexample{The following code shows an example for `back()`.,back}

    @sa @ref front() -- access the first element
N
Niels 已提交
3847

N
Niels 已提交
3848
    @since version 1.0.0
N
Niels 已提交
3849
    */
N
Niels 已提交
3850
    reference back()
N
Niels 已提交
3851 3852 3853 3854 3855 3856
    {
        auto tmp = end();
        --tmp;
        return *tmp;
    }

N
Niels 已提交
3857 3858 3859
    /*!
    @copydoc basic_json::back()
    */
N
Niels 已提交
3860
    const_reference back() const
N
Niels 已提交
3861 3862 3863 3864 3865 3866
    {
        auto tmp = cend();
        --tmp;
        return *tmp;
    }

N
Niels 已提交
3867 3868 3869
    /*!
    @brief remove element given an iterator

N
Niels 已提交
3870 3871 3872
    Removes the element specified by iterator @a pos. The iterator @a pos must
    be valid and dereferenceable. Thus the `end()` iterator (which is valid,
    but is not dereferenceable) cannot be used as a value for @a pos.
N
Niels 已提交
3873

N
Niels 已提交
3874
    If called on a primitive type other than `null`, the resulting JSON value
N
Niels 已提交
3875 3876 3877
    will be `null`.

    @param[in] pos iterator to the element to remove
N
Niels 已提交
3878 3879
    @return Iterator following the last removed element. If the iterator @a
    pos refers to the last element, the `end()` iterator is returned.
N
Niels 已提交
3880

3881
    @tparam IteratorType an @ref iterator or @ref const_iterator
N
Niels 已提交
3882

N
Niels 已提交
3883 3884 3885
    @post Invalidates iterators and references at or after the point of the
    erase, including the `end()` iterator.

N
Niels 已提交
3886 3887
    @throw std::domain_error if called on a `null` value; example: `"cannot
    use erase() with null"`
N
Niels 已提交
3888
    @throw std::domain_error if called on an iterator which does not belong to
N
Niels 已提交
3889
    the current JSON value; example: `"iterator does not fit current value"`
N
Niels 已提交
3890
    @throw std::out_of_range if called on a primitive type with invalid
N
Niels 已提交
3891 3892
    iterator (i.e., any iterator which is not `begin()`); example: `"iterator
    out of range"`
N
Niels 已提交
3893 3894 3895 3896 3897 3898 3899

    @complexity The complexity depends on the type:
    - objects: amortized constant
    - arrays: linear in distance between pos and the end of the container
    - strings: linear in the length of the string
    - other types: constant

N
Niels 已提交
3900
    @liveexample{The example shows the result of `erase()` for different JSON
N
Niels 已提交
3901
    types.,erase__IteratorType}
N
Niels 已提交
3902

3903
    @sa @ref erase(IteratorType, IteratorType) -- removes the elements in
N
Niels 已提交
3904
    the given range
N
Niels 已提交
3905
    @sa @ref erase(const typename object_t::key_type&) -- removes the element
N
Niels 已提交
3906
    from an object at the given key
N
Niels 已提交
3907 3908
    @sa @ref erase(const size_type) -- removes the element from an array at
    the given index
N
Niels 已提交
3909

N
Niels 已提交
3910
    @since version 1.0.0
N
Niels 已提交
3911
    */
N
Niels 已提交
3912 3913 3914 3915
    template<class IteratorType, typename std::enable_if<
                 std::is_same<IteratorType, typename basic_json_t::iterator>::value or
                 std::is_same<IteratorType, typename basic_json_t::const_iterator>::value, int>::type
             = 0>
3916
    IteratorType erase(IteratorType pos)
3917 3918
    {
        // make sure iterator fits the current value
N
Niels 已提交
3919
        if (this != pos.m_object)
3920
        {
N
Niels 已提交
3921
            throw std::domain_error("iterator does not fit current value");
3922 3923
        }

3924
        IteratorType result = end();
3925 3926 3927 3928

        switch (m_type)
        {
            case value_t::boolean:
3929 3930
            case value_t::number_float:
            case value_t::number_integer:
3931
            case value_t::number_unsigned:
3932 3933
            case value_t::string:
            {
3934
                if (not pos.m_it.primitive_iterator.is_begin())
3935 3936 3937 3938
                {
                    throw std::out_of_range("iterator out of range");
                }

N
cleanup  
Niels 已提交
3939
                if (is_string())
3940
                {
3941 3942 3943
                    AllocatorType<string_t> alloc;
                    alloc.destroy(m_value.string);
                    alloc.deallocate(m_value.string, 1);
3944 3945 3946 3947
                    m_value.string = nullptr;
                }

                m_type = value_t::null;
3948
                assert_invariant();
3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965
                break;
            }

            case value_t::object:
            {
                result.m_it.object_iterator = m_value.object->erase(pos.m_it.object_iterator);
                break;
            }

            case value_t::array:
            {
                result.m_it.array_iterator = m_value.array->erase(pos.m_it.array_iterator);
                break;
            }

            default:
            {
N
Niels 已提交
3966
                throw std::domain_error("cannot use erase() with " + type_name());
3967 3968 3969 3970 3971 3972
            }
        }

        return result;
    }

N
Niels 已提交
3973 3974 3975
    /*!
    @brief remove elements given an iterator range

N
Niels 已提交
3976 3977 3978
    Removes the element specified by the range `[first; last)`. The iterator
    @a first does not need to be dereferenceable if `first == last`: erasing
    an empty range is a no-op.
N
Niels 已提交
3979

N
Niels 已提交
3980
    If called on a primitive type other than `null`, the resulting JSON value
N
Niels 已提交
3981 3982 3983 3984 3985
    will be `null`.

    @param[in] first iterator to the beginning of the range to remove
    @param[in] last iterator past the end of the range to remove
    @return Iterator following the last removed element. If the iterator @a
N
Niels 已提交
3986
    second refers to the last element, the `end()` iterator is returned.
N
Niels 已提交
3987

3988
    @tparam IteratorType an @ref iterator or @ref const_iterator
N
Niels 已提交
3989

N
Niels 已提交
3990 3991 3992
    @post Invalidates iterators and references at or after the point of the
    erase, including the `end()` iterator.

N
Niels 已提交
3993 3994
    @throw std::domain_error if called on a `null` value; example: `"cannot
    use erase() with null"`
N
Niels 已提交
3995
    @throw std::domain_error if called on iterators which does not belong to
N
Niels 已提交
3996
    the current JSON value; example: `"iterators do not fit current value"`
N
Niels 已提交
3997
    @throw std::out_of_range if called on a primitive type with invalid
N
Niels 已提交
3998 3999
    iterators (i.e., if `first != begin()` and `last != end()`); example:
    `"iterators out of range"`
N
Niels 已提交
4000 4001 4002 4003 4004 4005 4006 4007

    @complexity The complexity depends on the type:
    - objects: `log(size()) + std::distance(first, last)`
    - arrays: linear in the distance between @a first and @a last, plus linear
      in the distance between @a last and end of the container
    - strings: linear in the length of the string
    - other types: constant

N
Niels 已提交
4008
    @liveexample{The example shows the result of `erase()` for different JSON
N
Niels 已提交
4009
    types.,erase__IteratorType_IteratorType}
N
Niels 已提交
4010

4011
    @sa @ref erase(IteratorType) -- removes the element at a given position
N
Niels 已提交
4012
    @sa @ref erase(const typename object_t::key_type&) -- removes the element
N
Niels 已提交
4013
    from an object at the given key
N
Niels 已提交
4014 4015
    @sa @ref erase(const size_type) -- removes the element from an array at
    the given index
N
Niels 已提交
4016

N
Niels 已提交
4017
    @since version 1.0.0
N
Niels 已提交
4018
    */
N
Niels 已提交
4019 4020 4021 4022
    template<class IteratorType, typename std::enable_if<
                 std::is_same<IteratorType, typename basic_json_t::iterator>::value or
                 std::is_same<IteratorType, typename basic_json_t::const_iterator>::value, int>::type
             = 0>
4023
    IteratorType erase(IteratorType first, IteratorType last)
4024 4025
    {
        // make sure iterator fits the current value
N
Niels 已提交
4026
        if (this != first.m_object or this != last.m_object)
4027
        {
N
Niels 已提交
4028
            throw std::domain_error("iterators do not fit current value");
4029 4030
        }

4031
        IteratorType result = end();
4032 4033 4034 4035

        switch (m_type)
        {
            case value_t::boolean:
4036 4037
            case value_t::number_float:
            case value_t::number_integer:
4038
            case value_t::number_unsigned:
4039 4040
            case value_t::string:
            {
4041
                if (not first.m_it.primitive_iterator.is_begin() or not last.m_it.primitive_iterator.is_end())
4042 4043 4044 4045
                {
                    throw std::out_of_range("iterators out of range");
                }

N
cleanup  
Niels 已提交
4046
                if (is_string())
4047
                {
4048 4049 4050
                    AllocatorType<string_t> alloc;
                    alloc.destroy(m_value.string);
                    alloc.deallocate(m_value.string, 1);
4051 4052 4053 4054
                    m_value.string = nullptr;
                }

                m_type = value_t::null;
4055
                assert_invariant();
4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074
                break;
            }

            case value_t::object:
            {
                result.m_it.object_iterator = m_value.object->erase(first.m_it.object_iterator,
                                              last.m_it.object_iterator);
                break;
            }

            case value_t::array:
            {
                result.m_it.array_iterator = m_value.array->erase(first.m_it.array_iterator,
                                             last.m_it.array_iterator);
                break;
            }

            default:
            {
N
Niels 已提交
4075
                throw std::domain_error("cannot use erase() with " + type_name());
4076 4077 4078 4079 4080 4081
            }
        }

        return result;
    }

N
Niels 已提交
4082 4083 4084 4085 4086 4087 4088
    /*!
    @brief remove element from a JSON object given a key

    Removes elements from a JSON object with the key value @a key.

    @param[in] key value of the elements to remove

N
Niels 已提交
4089
    @return Number of elements removed. If @a ObjectType is the default
N
Niels 已提交
4090 4091
    `std::map` type, the return value will always be `0` (@a key was not
    found) or `1` (@a key was found).
N
Niels 已提交
4092 4093 4094

    @post References and iterators to the erased elements are invalidated.
    Other references and iterators are not affected.
N
Niels 已提交
4095

N
Niels 已提交
4096 4097
    @throw std::domain_error when called on a type other than JSON object;
    example: `"cannot use erase() with null"`
N
Niels 已提交
4098 4099 4100

    @complexity `log(size()) + count(key)`

N
Niels 已提交
4101
    @liveexample{The example shows the effect of `erase()`.,erase__key_type}
N
Niels 已提交
4102

4103 4104
    @sa @ref erase(IteratorType) -- removes the element at a given position
    @sa @ref erase(IteratorType, IteratorType) -- removes the elements in
N
Niels 已提交
4105 4106 4107
    the given range
    @sa @ref erase(const size_type) -- removes the element from an array at
    the given index
N
Niels 已提交
4108

N
Niels 已提交
4109
    @since version 1.0.0
N
Niels 已提交
4110
    */
N
Niels 已提交
4111
    size_type erase(const typename object_t::key_type& key)
4112
    {
N
Niels 已提交
4113
        // this erase only works for objects
N
Niels 已提交
4114 4115 4116 4117 4118 4119 4120 4121
        if (is_object())
        {
            return m_value.object->erase(key);
        }
        else
        {
            throw std::domain_error("cannot use erase() with " + type_name());
        }
4122 4123
    }

N
Niels 已提交
4124 4125 4126 4127 4128 4129 4130
    /*!
    @brief remove element from a JSON array given an index

    Removes element from a JSON array at the index @a idx.

    @param[in] idx index of the element to remove

N
Niels 已提交
4131 4132
    @throw std::domain_error when called on a type other than JSON array;
    example: `"cannot use erase() with null"`
N
Niels 已提交
4133 4134
    @throw std::out_of_range when `idx >= size()`; example: `"array index 17
    is out of range"`
N
Niels 已提交
4135 4136 4137

    @complexity Linear in distance between @a idx and the end of the container.

N
Niels 已提交
4138
    @liveexample{The example shows the effect of `erase()`.,erase__size_type}
N
Niels 已提交
4139

4140 4141
    @sa @ref erase(IteratorType) -- removes the element at a given position
    @sa @ref erase(IteratorType, IteratorType) -- removes the elements in
N
Niels 已提交
4142
    the given range
N
Niels 已提交
4143
    @sa @ref erase(const typename object_t::key_type&) -- removes the element
N
Niels 已提交
4144 4145
    from an object at the given key

N
Niels 已提交
4146
    @since version 1.0.0
N
Niels 已提交
4147
    */
N
Niels 已提交
4148
    void erase(const size_type idx)
N
Niels 已提交
4149 4150
    {
        // this erase only works for arrays
N
cleanup  
Niels 已提交
4151
        if (is_array())
N
Niels 已提交
4152
        {
N
cleanup  
Niels 已提交
4153 4154
            if (idx >= size())
            {
N
Niels 已提交
4155
                throw std::out_of_range("array index " + std::to_string(idx) + " is out of range");
N
cleanup  
Niels 已提交
4156
            }
N
Niels 已提交
4157

N
cleanup  
Niels 已提交
4158 4159 4160
            m_value.array->erase(m_value.array->begin() + static_cast<difference_type>(idx));
        }
        else
N
Niels 已提交
4161
        {
N
cleanup  
Niels 已提交
4162
            throw std::domain_error("cannot use erase() with " + type_name());
N
Niels 已提交
4163 4164 4165
        }
    }

N
Niels 已提交
4166 4167 4168 4169 4170 4171 4172 4173 4174 4175
    /// @}


    ////////////
    // lookup //
    ////////////

    /// @name lookup
    /// @{

N
Niels 已提交
4176 4177 4178 4179
    /*!
    @brief find an element in a JSON object

    Finds an element in a JSON object with key equivalent to @a key. If the
N
Niels 已提交
4180 4181
    element is not found or the JSON value is not an object, end() is
    returned.
N
Niels 已提交
4182 4183 4184 4185 4186 4187 4188 4189

    @param[in] key key value of the element to search for

    @return Iterator to an element with key equivalent to @a key. If no such
    element is found, past-the-end (see end()) iterator is returned.

    @complexity Logarithmic in the size of the JSON object.

N
Niels 已提交
4190
    @liveexample{The example shows how `find()` is used.,find__key_type}
N
Niels 已提交
4191

N
Niels 已提交
4192
    @since version 1.0.0
N
Niels 已提交
4193
    */
N
Niels 已提交
4194
    iterator find(typename object_t::key_type key)
N
Niels 已提交
4195 4196 4197
    {
        auto result = end();

N
cleanup  
Niels 已提交
4198
        if (is_object())
N
Niels 已提交
4199 4200 4201 4202 4203 4204 4205
        {
            result.m_it.object_iterator = m_value.object->find(key);
        }

        return result;
    }

N
Niels 已提交
4206 4207 4208 4209
    /*!
    @brief find an element in a JSON object
    @copydoc find(typename object_t::key_type)
    */
N
Niels 已提交
4210
    const_iterator find(typename object_t::key_type key) const
N
Niels 已提交
4211 4212 4213
    {
        auto result = cend();

N
cleanup  
Niels 已提交
4214
        if (is_object())
N
Niels 已提交
4215 4216 4217 4218 4219 4220 4221
        {
            result.m_it.object_iterator = m_value.object->find(key);
        }

        return result;
    }

N
Niels 已提交
4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235
    /*!
    @brief returns the number of occurrences of a key in a JSON object

    Returns the number of elements with key @a key. If ObjectType is the
    default `std::map` type, the return value will always be `0` (@a key was
    not found) or `1` (@a key was found).

    @param[in] key key value of the element to count

    @return Number of elements with key @a key. If the JSON value is not an
    object, the return value will be `0`.

    @complexity Logarithmic in the size of the JSON object.

N
Niels 已提交
4236
    @liveexample{The example shows how `count()` is used.,count}
N
Niels 已提交
4237

N
Niels 已提交
4238
    @since version 1.0.0
N
Niels 已提交
4239
    */
N
Niels 已提交
4240
    size_type count(typename object_t::key_type key) const
4241 4242
    {
        // return 0 for all nonobject types
N
Niels 已提交
4243
        return is_object() ? m_value.object->count(key) : 0;
4244 4245
    }

N
Niels 已提交
4246 4247
    /// @}

N
Niels 已提交
4248

N
Niels 已提交
4249 4250 4251 4252
    ///////////////
    // iterators //
    ///////////////

N
Niels 已提交
4253 4254 4255
    /// @name iterators
    /// @{

N
Niels 已提交
4256 4257
    /*!
    @brief returns an iterator to the first element
N
Niels 已提交
4258 4259 4260 4261 4262 4263 4264 4265 4266

    Returns an iterator to the first element.

    @image html range-begin-end.svg "Illustration from cppreference.com"

    @return iterator to the first element

    @complexity Constant.

N
Niels 已提交
4267 4268 4269
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4270 4271
    - The complexity is constant.

N
Niels 已提交
4272 4273 4274 4275 4276
    @liveexample{The following code shows an example for `begin()`.,begin}

    @sa @ref cbegin() -- returns a const iterator to the beginning
    @sa @ref end() -- returns an iterator to the end
    @sa @ref cend() -- returns a const iterator to the end
N
Niels 已提交
4277

N
Niels 已提交
4278
    @since version 1.0.0
N
Niels 已提交
4279
    */
N
Niels 已提交
4280
    iterator begin() noexcept
N
Niels 已提交
4281 4282 4283 4284 4285 4286
    {
        iterator result(this);
        result.set_begin();
        return result;
    }

N
Niels 已提交
4287
    /*!
N
Niels 已提交
4288
    @copydoc basic_json::cbegin()
N
Niels 已提交
4289
    */
N
Niels 已提交
4290
    const_iterator begin() const noexcept
N
Niels 已提交
4291
    {
N
Niels 已提交
4292
        return cbegin();
N
Niels 已提交
4293 4294
    }

N
Niels 已提交
4295 4296
    /*!
    @brief returns a const iterator to the first element
N
Niels 已提交
4297 4298 4299 4300 4301 4302 4303 4304 4305

    Returns a const iterator to the first element.

    @image html range-begin-end.svg "Illustration from cppreference.com"

    @return const iterator to the first element

    @complexity Constant.

N
Niels 已提交
4306 4307 4308
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4309 4310 4311
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).begin()`.

N
Niels 已提交
4312 4313 4314 4315 4316
    @liveexample{The following code shows an example for `cbegin()`.,cbegin}

    @sa @ref begin() -- returns an iterator to the beginning
    @sa @ref end() -- returns an iterator to the end
    @sa @ref cend() -- returns a const iterator to the end
N
Niels 已提交
4317

N
Niels 已提交
4318
    @since version 1.0.0
N
Niels 已提交
4319
    */
N
Niels 已提交
4320
    const_iterator cbegin() const noexcept
N
Niels 已提交
4321 4322 4323 4324 4325 4326
    {
        const_iterator result(this);
        result.set_begin();
        return result;
    }

N
Niels 已提交
4327 4328
    /*!
    @brief returns an iterator to one past the last element
N
Niels 已提交
4329 4330 4331 4332 4333 4334 4335 4336 4337

    Returns an iterator to one past the last element.

    @image html range-begin-end.svg "Illustration from cppreference.com"

    @return iterator one past the last element

    @complexity Constant.

N
Niels 已提交
4338 4339 4340
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4341 4342
    - The complexity is constant.

N
Niels 已提交
4343 4344 4345 4346 4347
    @liveexample{The following code shows an example for `end()`.,end}

    @sa @ref cend() -- returns a const iterator to the end
    @sa @ref begin() -- returns an iterator to the beginning
    @sa @ref cbegin() -- returns a const iterator to the beginning
N
Niels 已提交
4348

N
Niels 已提交
4349
    @since version 1.0.0
N
Niels 已提交
4350
    */
N
Niels 已提交
4351
    iterator end() noexcept
N
Niels 已提交
4352 4353 4354 4355 4356 4357
    {
        iterator result(this);
        result.set_end();
        return result;
    }

N
Niels 已提交
4358
    /*!
N
Niels 已提交
4359
    @copydoc basic_json::cend()
N
Niels 已提交
4360
    */
N
Niels 已提交
4361
    const_iterator end() const noexcept
N
Niels 已提交
4362
    {
N
Niels 已提交
4363
        return cend();
N
Niels 已提交
4364 4365
    }

N
Niels 已提交
4366 4367
    /*!
    @brief returns a const iterator to one past the last element
N
Niels 已提交
4368 4369 4370 4371 4372 4373 4374 4375 4376

    Returns a const iterator to one past the last element.

    @image html range-begin-end.svg "Illustration from cppreference.com"

    @return const iterator one past the last element

    @complexity Constant.

N
Niels 已提交
4377 4378 4379
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4380 4381 4382
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).end()`.

N
Niels 已提交
4383 4384 4385 4386 4387
    @liveexample{The following code shows an example for `cend()`.,cend}

    @sa @ref end() -- returns an iterator to the end
    @sa @ref begin() -- returns an iterator to the beginning
    @sa @ref cbegin() -- returns a const iterator to the beginning
N
Niels 已提交
4388

N
Niels 已提交
4389
    @since version 1.0.0
N
Niels 已提交
4390
    */
N
Niels 已提交
4391
    const_iterator cend() const noexcept
N
Niels 已提交
4392 4393 4394 4395 4396 4397
    {
        const_iterator result(this);
        result.set_end();
        return result;
    }

N
Niels 已提交
4398
    /*!
N
Niels 已提交
4399 4400 4401 4402 4403 4404 4405 4406
    @brief returns an iterator to the reverse-beginning

    Returns an iterator to the reverse-beginning; that is, the last element.

    @image html range-rbegin-rend.svg "Illustration from cppreference.com"

    @complexity Constant.

N
Niels 已提交
4407 4408 4409
    @requirement This function helps `basic_json` satisfying the
    [ReversibleContainer](http://en.cppreference.com/w/cpp/concept/ReversibleContainer)
    requirements:
N
Niels 已提交
4410 4411 4412
    - The complexity is constant.
    - Has the semantics of `reverse_iterator(end())`.

N
Niels 已提交
4413 4414 4415 4416 4417
    @liveexample{The following code shows an example for `rbegin()`.,rbegin}

    @sa @ref crbegin() -- returns a const reverse iterator to the beginning
    @sa @ref rend() -- returns a reverse iterator to the end
    @sa @ref crend() -- returns a const reverse iterator to the end
N
Niels 已提交
4418

N
Niels 已提交
4419
    @since version 1.0.0
N
Niels 已提交
4420
    */
N
Niels 已提交
4421
    reverse_iterator rbegin() noexcept
N
Niels 已提交
4422 4423 4424 4425
    {
        return reverse_iterator(end());
    }

N
Niels 已提交
4426
    /*!
N
Niels 已提交
4427
    @copydoc basic_json::crbegin()
N
Niels 已提交
4428
    */
N
Niels 已提交
4429
    const_reverse_iterator rbegin() const noexcept
N
Niels 已提交
4430
    {
N
Niels 已提交
4431
        return crbegin();
N
Niels 已提交
4432 4433
    }

N
Niels 已提交
4434
    /*!
N
Niels 已提交
4435 4436 4437 4438 4439 4440 4441 4442 4443
    @brief returns an iterator to the reverse-end

    Returns an iterator to the reverse-end; that is, one before the first
    element.

    @image html range-rbegin-rend.svg "Illustration from cppreference.com"

    @complexity Constant.

N
Niels 已提交
4444 4445 4446
    @requirement This function helps `basic_json` satisfying the
    [ReversibleContainer](http://en.cppreference.com/w/cpp/concept/ReversibleContainer)
    requirements:
N
Niels 已提交
4447 4448 4449
    - The complexity is constant.
    - Has the semantics of `reverse_iterator(begin())`.

N
Niels 已提交
4450 4451 4452 4453 4454
    @liveexample{The following code shows an example for `rend()`.,rend}

    @sa @ref crend() -- returns a const reverse iterator to the end
    @sa @ref rbegin() -- returns a reverse iterator to the beginning
    @sa @ref crbegin() -- returns a const reverse iterator to the beginning
N
Niels 已提交
4455

N
Niels 已提交
4456
    @since version 1.0.0
N
Niels 已提交
4457
    */
N
Niels 已提交
4458
    reverse_iterator rend() noexcept
N
Niels 已提交
4459 4460 4461 4462
    {
        return reverse_iterator(begin());
    }

N
Niels 已提交
4463
    /*!
N
Niels 已提交
4464
    @copydoc basic_json::crend()
N
Niels 已提交
4465
    */
N
Niels 已提交
4466
    const_reverse_iterator rend() const noexcept
N
Niels 已提交
4467
    {
N
Niels 已提交
4468
        return crend();
N
Niels 已提交
4469 4470
    }

N
Niels 已提交
4471
    /*!
N
Niels 已提交
4472 4473 4474 4475 4476 4477 4478 4479 4480
    @brief returns a const reverse iterator to the last element

    Returns a const iterator to the reverse-beginning; that is, the last
    element.

    @image html range-rbegin-rend.svg "Illustration from cppreference.com"

    @complexity Constant.

N
Niels 已提交
4481 4482 4483
    @requirement This function helps `basic_json` satisfying the
    [ReversibleContainer](http://en.cppreference.com/w/cpp/concept/ReversibleContainer)
    requirements:
N
Niels 已提交
4484 4485 4486
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).rbegin()`.

N
Niels 已提交
4487 4488 4489 4490 4491
    @liveexample{The following code shows an example for `crbegin()`.,crbegin}

    @sa @ref rbegin() -- returns a reverse iterator to the beginning
    @sa @ref rend() -- returns a reverse iterator to the end
    @sa @ref crend() -- returns a const reverse iterator to the end
N
Niels 已提交
4492

N
Niels 已提交
4493
    @since version 1.0.0
N
Niels 已提交
4494
    */
N
Niels 已提交
4495
    const_reverse_iterator crbegin() const noexcept
N
Niels 已提交
4496 4497 4498 4499
    {
        return const_reverse_iterator(cend());
    }

N
Niels 已提交
4500
    /*!
N
Niels 已提交
4501 4502 4503 4504 4505 4506 4507 4508 4509
    @brief returns a const reverse iterator to one before the first

    Returns a const reverse iterator to the reverse-end; that is, one before
    the first element.

    @image html range-rbegin-rend.svg "Illustration from cppreference.com"

    @complexity Constant.

N
Niels 已提交
4510 4511 4512
    @requirement This function helps `basic_json` satisfying the
    [ReversibleContainer](http://en.cppreference.com/w/cpp/concept/ReversibleContainer)
    requirements:
N
Niels 已提交
4513 4514 4515
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).rend()`.

N
Niels 已提交
4516 4517 4518 4519 4520
    @liveexample{The following code shows an example for `crend()`.,crend}

    @sa @ref rend() -- returns a reverse iterator to the end
    @sa @ref rbegin() -- returns a reverse iterator to the beginning
    @sa @ref crbegin() -- returns a const reverse iterator to the beginning
N
Niels 已提交
4521

N
Niels 已提交
4522
    @since version 1.0.0
N
Niels 已提交
4523
    */
N
Niels 已提交
4524
    const_reverse_iterator crend() const noexcept
N
Niels 已提交
4525 4526 4527 4528
    {
        return const_reverse_iterator(cbegin());
    }

N
cleanup  
Niels 已提交
4529 4530 4531 4532 4533 4534 4535 4536
  private:
    // forward declaration
    template<typename IteratorType> class iteration_proxy;

  public:
    /*!
    @brief wrapper to access iterator member functions in range-based for

N
Niels 已提交
4537
    This function allows to access @ref iterator::key() and @ref
N
Niels 已提交
4538 4539 4540
    iterator::value() during range-based for loops. In these loops, a
    reference to the JSON values is returned, so there is no access to the
    underlying iterator.
N
cleanup  
Niels 已提交
4541 4542 4543

    @note The name of this function is not yet final and may change in the
    future.
N
cleanup  
Niels 已提交
4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557
    */
    static iteration_proxy<iterator> iterator_wrapper(reference cont)
    {
        return iteration_proxy<iterator>(cont);
    }

    /*!
    @copydoc iterator_wrapper(reference)
    */
    static iteration_proxy<const_iterator> iterator_wrapper(const_reference cont)
    {
        return iteration_proxy<const_iterator>(cont);
    }

N
Niels 已提交
4558 4559
    /// @}

N
Niels 已提交
4560 4561 4562 4563 4564

    //////////////
    // capacity //
    //////////////

N
Niels 已提交
4565 4566 4567
    /// @name capacity
    /// @{

N
Niels 已提交
4568 4569
    /*!
    @brief checks whether the container is empty
N
Niels 已提交
4570 4571 4572

    Checks if a JSON value has no elements.

N
Niels 已提交
4573
    @return The return value depends on the different types and is
N
Niels 已提交
4574 4575 4576
            defined as follows:
            Value type  | return value
            ----------- | -------------
N
Niels 已提交
4577 4578 4579 4580 4581 4582
            null        | `true`
            boolean     | `false`
            string      | `false`
            number      | `false`
            object      | result of function `object_t::empty()`
            array       | result of function `array_t::empty()`
N
Niels 已提交
4583

N
Niels 已提交
4584 4585 4586 4587
    @note This function does not return whether a string stored as JSON value
    is empty - it returns whether the JSON container itself is empty which is
    false in the case of a string.

N
Niels 已提交
4588 4589
    @complexity Constant, as long as @ref array_t and @ref object_t satisfy
    the Container concept; that is, their `empty()` functions have constant
N
Niels 已提交
4590
    complexity.
N
Niels 已提交
4591

N
Niels 已提交
4592 4593 4594
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4595 4596 4597
    - The complexity is constant.
    - Has the semantics of `begin() == end()`.

N
Niels 已提交
4598
    @liveexample{The following code uses `empty()` to check if a JSON
N
Niels 已提交
4599
    object contains any elements.,empty}
N
Niels 已提交
4600

N
Niels 已提交
4601 4602
    @sa @ref size() -- returns the number of elements

N
Niels 已提交
4603
    @since version 1.0.0
N
Niels 已提交
4604
    */
N
Niels 已提交
4605
    bool empty() const noexcept
N
Niels 已提交
4606 4607 4608
    {
        switch (m_type)
        {
4609
            case value_t::null:
N
Niels 已提交
4610
            {
N
Niels 已提交
4611
                // null values are empty
N
Niels 已提交
4612 4613
                return true;
            }
N
Niels 已提交
4614

4615
            case value_t::array:
N
Niels 已提交
4616
            {
N
Niels 已提交
4617
                // delegate call to array_t::empty()
N
Niels 已提交
4618 4619
                return m_value.array->empty();
            }
N
Niels 已提交
4620

4621
            case value_t::object:
N
Niels 已提交
4622
            {
N
Niels 已提交
4623
                // delegate call to object_t::empty()
N
Niels 已提交
4624 4625
                return m_value.object->empty();
            }
N
Niels 已提交
4626

N
Niels 已提交
4627 4628 4629 4630 4631 4632
            default:
            {
                // all other types are nonempty
                return false;
            }
        }
N
Niels 已提交
4633 4634
    }

N
Niels 已提交
4635 4636
    /*!
    @brief returns the number of elements
N
Niels 已提交
4637 4638 4639

    Returns the number of elements in a JSON value.

N
Niels 已提交
4640
    @return The return value depends on the different types and is
N
Niels 已提交
4641 4642 4643
            defined as follows:
            Value type  | return value
            ----------- | -------------
N
Niels 已提交
4644 4645 4646 4647
            null        | `0`
            boolean     | `1`
            string      | `1`
            number      | `1`
N
Niels 已提交
4648 4649 4650
            object      | result of function object_t::size()
            array       | result of function array_t::size()

N
Niels 已提交
4651 4652 4653 4654
    @note This function does not return the length of a string stored as JSON
    value - it returns the number of elements in the JSON value which is 1 in
    the case of a string.

N
Niels 已提交
4655 4656 4657
    @complexity Constant, as long as @ref array_t and @ref object_t satisfy
    the Container concept; that is, their size() functions have constant
    complexity.
N
Niels 已提交
4658

N
Niels 已提交
4659 4660 4661
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4662 4663 4664
    - The complexity is constant.
    - Has the semantics of `std::distance(begin(), end())`.

N
Niels 已提交
4665
    @liveexample{The following code calls `size()` on the different value
N
Niels 已提交
4666
    types.,size}
N
Niels 已提交
4667

N
Niels 已提交
4668 4669 4670
    @sa @ref empty() -- checks whether the container is empty
    @sa @ref max_size() -- returns the maximal number of elements

N
Niels 已提交
4671
    @since version 1.0.0
N
Niels 已提交
4672
    */
N
Niels 已提交
4673
    size_type size() const noexcept
N
Niels 已提交
4674 4675 4676
    {
        switch (m_type)
        {
4677
            case value_t::null:
N
Niels 已提交
4678
            {
N
Niels 已提交
4679
                // null values are empty
N
Niels 已提交
4680 4681
                return 0;
            }
N
Niels 已提交
4682

4683
            case value_t::array:
N
Niels 已提交
4684
            {
N
Niels 已提交
4685
                // delegate call to array_t::size()
N
Niels 已提交
4686 4687
                return m_value.array->size();
            }
N
Niels 已提交
4688

4689
            case value_t::object:
N
Niels 已提交
4690
            {
N
Niels 已提交
4691
                // delegate call to object_t::size()
N
Niels 已提交
4692 4693
                return m_value.object->size();
            }
N
Niels 已提交
4694

N
Niels 已提交
4695 4696 4697 4698 4699 4700
            default:
            {
                // all other types have size 1
                return 1;
            }
        }
N
Niels 已提交
4701 4702
    }

N
Niels 已提交
4703 4704
    /*!
    @brief returns the maximum possible number of elements
N
Niels 已提交
4705 4706 4707 4708 4709

    Returns the maximum number of elements a JSON value is able to hold due to
    system or library implementation limitations, i.e. `std::distance(begin(),
    end())` for the JSON value.

N
Niels 已提交
4710
    @return The return value depends on the different types and is
N
Niels 已提交
4711 4712 4713
            defined as follows:
            Value type  | return value
            ----------- | -------------
N
Niels 已提交
4714 4715 4716 4717 4718 4719
            null        | `0` (same as `size()`)
            boolean     | `1` (same as `size()`)
            string      | `1` (same as `size()`)
            number      | `1` (same as `size()`)
            object      | result of function `object_t::max_size()`
            array       | result of function `array_t::max_size()`
N
Niels 已提交
4720

N
Niels 已提交
4721 4722
    @complexity Constant, as long as @ref array_t and @ref object_t satisfy
    the Container concept; that is, their `max_size()` functions have constant
N
Niels 已提交
4723
    complexity.
N
Niels 已提交
4724

N
Niels 已提交
4725 4726 4727
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4728 4729 4730 4731
    - The complexity is constant.
    - Has the semantics of returning `b.size()` where `b` is the largest
      possible JSON value.

N
Niels 已提交
4732
    @liveexample{The following code calls `max_size()` on the different value
N
Niels 已提交
4733
    types. Note the output is implementation specific.,max_size}
N
Niels 已提交
4734

N
Niels 已提交
4735 4736
    @sa @ref size() -- returns the number of elements

N
Niels 已提交
4737
    @since version 1.0.0
N
Niels 已提交
4738
    */
N
Niels 已提交
4739
    size_type max_size() const noexcept
N
Niels 已提交
4740 4741 4742
    {
        switch (m_type)
        {
4743
            case value_t::array:
N
Niels 已提交
4744
            {
N
Niels 已提交
4745
                // delegate call to array_t::max_size()
N
Niels 已提交
4746 4747
                return m_value.array->max_size();
            }
N
Niels 已提交
4748

4749
            case value_t::object:
N
Niels 已提交
4750
            {
N
Niels 已提交
4751
                // delegate call to object_t::max_size()
N
Niels 已提交
4752 4753
                return m_value.object->max_size();
            }
N
Niels 已提交
4754

N
Niels 已提交
4755 4756
            default:
            {
4757 4758
                // all other types have max_size() == size()
                return size();
N
Niels 已提交
4759 4760
            }
        }
N
Niels 已提交
4761 4762
    }

N
Niels 已提交
4763 4764
    /// @}

N
Niels 已提交
4765 4766 4767 4768 4769

    ///////////////
    // modifiers //
    ///////////////

N
Niels 已提交
4770 4771 4772
    /// @name modifiers
    /// @{

N
Niels 已提交
4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792
    /*!
    @brief clears the contents

    Clears the content of a JSON value and resets it to the default value as
    if @ref basic_json(value_t) would have been called:

    Value type  | initial value
    ----------- | -------------
    null        | `null`
    boolean     | `false`
    string      | `""`
    number      | `0`
    object      | `{}`
    array       | `[]`

    @note Floating-point numbers are set to `0.0` which will be serialized to
    `0`. The vale type remains @ref number_float_t.

    @complexity Linear in the size of the JSON value.

N
Niels 已提交
4793
    @liveexample{The example below shows the effect of `clear()` to different
N
Niels 已提交
4794
    JSON types.,clear}
N
Niels 已提交
4795

N
Niels 已提交
4796
    @since version 1.0.0
N
Niels 已提交
4797
    */
N
Niels 已提交
4798
    void clear() noexcept
N
Niels 已提交
4799 4800 4801
    {
        switch (m_type)
        {
4802
            case value_t::number_integer:
N
Niels 已提交
4803
            {
N
Niels 已提交
4804
                m_value.number_integer = 0;
N
Niels 已提交
4805 4806
                break;
            }
N
Niels 已提交
4807

4808 4809 4810 4811 4812 4813
            case value_t::number_unsigned:
            {
                m_value.number_unsigned = 0;
                break;
            }

4814
            case value_t::number_float:
N
Niels 已提交
4815
            {
N
Niels 已提交
4816
                m_value.number_float = 0.0;
N
Niels 已提交
4817 4818
                break;
            }
N
Niels 已提交
4819

4820
            case value_t::boolean:
N
Niels 已提交
4821
            {
N
Niels 已提交
4822
                m_value.boolean = false;
N
Niels 已提交
4823 4824
                break;
            }
N
Niels 已提交
4825

4826
            case value_t::string:
N
Niels 已提交
4827 4828 4829 4830
            {
                m_value.string->clear();
                break;
            }
N
Niels 已提交
4831

4832
            case value_t::array:
N
Niels 已提交
4833 4834 4835 4836
            {
                m_value.array->clear();
                break;
            }
N
Niels 已提交
4837

4838
            case value_t::object:
N
Niels 已提交
4839 4840 4841 4842
            {
                m_value.object->clear();
                break;
            }
4843 4844 4845 4846 4847

            default:
            {
                break;
            }
N
Niels 已提交
4848 4849 4850
        }
    }

4851 4852 4853
    /*!
    @brief add an object to an array

4854
    Appends the given element @a val to the end of the JSON value. If the
4855
    function is called on a JSON null value, an empty array is created before
4856
    appending @a val.
4857

N
Niels 已提交
4858
    @param[in] val the value to add to the JSON array
4859

N
Niels 已提交
4860 4861
    @throw std::domain_error when called on a type other than JSON array or
    null; example: `"cannot use push_back() with number"`
4862 4863 4864

    @complexity Amortized constant.

N
Niels 已提交
4865 4866 4867
    @liveexample{The example shows how `push_back()` and `+=` can be used to
    add elements to a JSON array. Note how the `null` value was silently
    converted to a JSON array.,push_back}
N
Niels 已提交
4868

N
Niels 已提交
4869
    @since version 1.0.0
4870
    */
4871
    void push_back(basic_json&& val)
N
Niels 已提交
4872 4873
    {
        // push_back only works for null objects or arrays
N
cleanup  
Niels 已提交
4874
        if (not(is_null() or is_array()))
N
Niels 已提交
4875
        {
N
Niels 已提交
4876
            throw std::domain_error("cannot use push_back() with " + type_name());
N
Niels 已提交
4877 4878 4879
        }

        // transform null object into an array
N
cleanup  
Niels 已提交
4880
        if (is_null())
N
Niels 已提交
4881 4882
        {
            m_type = value_t::array;
N
Niels 已提交
4883
            m_value = value_t::array;
4884
            assert_invariant();
N
Niels 已提交
4885 4886 4887
        }

        // add element to array (move semantics)
4888
        m_value.array->push_back(std::move(val));
N
Niels 已提交
4889
        // invalidate object
4890
        val.m_type = value_t::null;
N
Niels 已提交
4891 4892
    }

4893 4894 4895 4896
    /*!
    @brief add an object to an array
    @copydoc push_back(basic_json&&)
    */
4897
    reference operator+=(basic_json&& val)
N
Niels 已提交
4898
    {
4899
        push_back(std::move(val));
N
Niels 已提交
4900 4901 4902
        return *this;
    }

4903 4904 4905 4906
    /*!
    @brief add an object to an array
    @copydoc push_back(basic_json&&)
    */
4907
    void push_back(const basic_json& val)
N
Niels 已提交
4908 4909
    {
        // push_back only works for null objects or arrays
N
cleanup  
Niels 已提交
4910
        if (not(is_null() or is_array()))
N
Niels 已提交
4911
        {
N
Niels 已提交
4912
            throw std::domain_error("cannot use push_back() with " + type_name());
N
Niels 已提交
4913 4914 4915
        }

        // transform null object into an array
N
cleanup  
Niels 已提交
4916
        if (is_null())
N
Niels 已提交
4917 4918
        {
            m_type = value_t::array;
N
Niels 已提交
4919
            m_value = value_t::array;
4920
            assert_invariant();
N
Niels 已提交
4921 4922 4923
        }

        // add element to array
4924
        m_value.array->push_back(val);
N
Niels 已提交
4925 4926
    }

4927 4928 4929 4930
    /*!
    @brief add an object to an array
    @copydoc push_back(basic_json&&)
    */
4931
    reference operator+=(const basic_json& val)
N
Niels 已提交
4932
    {
4933
        push_back(val);
N
Niels 已提交
4934 4935 4936
        return *this;
    }

4937 4938 4939
    /*!
    @brief add an object to an object

4940
    Inserts the given element @a val to the JSON object. If the function is
N
Niels 已提交
4941 4942
    called on a JSON null value, an empty object is created before inserting
    @a val.
4943

4944
    @param[in] val the value to add to the JSON object
4945 4946

    @throw std::domain_error when called on a type other than JSON object or
N
Niels 已提交
4947
    null; example: `"cannot use push_back() with number"`
4948 4949 4950

    @complexity Logarithmic in the size of the container, O(log(`size()`)).

N
Niels 已提交
4951 4952 4953
    @liveexample{The example shows how `push_back()` and `+=` can be used to
    add elements to a JSON object. Note how the `null` value was silently
    converted to a JSON object.,push_back__object_t__value}
N
Niels 已提交
4954

N
Niels 已提交
4955
    @since version 1.0.0
4956
    */
4957
    void push_back(const typename object_t::value_type& val)
N
Niels 已提交
4958 4959
    {
        // push_back only works for null objects or objects
N
cleanup  
Niels 已提交
4960
        if (not(is_null() or is_object()))
N
Niels 已提交
4961
        {
N
Niels 已提交
4962
            throw std::domain_error("cannot use push_back() with " + type_name());
N
Niels 已提交
4963 4964 4965
        }

        // transform null object into an object
N
cleanup  
Niels 已提交
4966
        if (is_null())
N
Niels 已提交
4967 4968
        {
            m_type = value_t::object;
N
Niels 已提交
4969
            m_value = value_t::object;
4970
            assert_invariant();
N
Niels 已提交
4971 4972 4973
        }

        // add element to array
4974
        m_value.object->insert(val);
N
Niels 已提交
4975 4976
    }

4977 4978 4979 4980
    /*!
    @brief add an object to an object
    @copydoc push_back(const typename object_t::value_type&)
    */
4981
    reference operator+=(const typename object_t::value_type& val)
N
Niels 已提交
4982
    {
4983
        push_back(val);
N
Niels 已提交
4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032
        return *this;
    }

    /*!
    @brief add an object to an object

    This function allows to use `push_back` with an initializer list. In case

    1. the current value is an object,
    2. the initializer list @a init contains only two elements, and
    3. the first element of @a init is a string,

    @a init is converted into an object element and added using
    @ref push_back(const typename object_t::value_type&). Otherwise, @a init
    is converted to a JSON value and added using @ref push_back(basic_json&&).

    @param init  an initializer list

    @complexity Linear in the size of the initializer list @a init.

    @note This function is required to resolve an ambiguous overload error,
          because pairs like `{"key", "value"}` can be both interpreted as
          `object_t::value_type` or `std::initializer_list<basic_json>`, see
          https://github.com/nlohmann/json/issues/235 for more information.

    @liveexample{The example shows how initializer lists are treated as
    objects when possible.,push_back__initializer_list}
    */
    void push_back(std::initializer_list<basic_json> init)
    {
        if (is_object() and init.size() == 2 and init.begin()->is_string())
        {
            const string_t key = *init.begin();
            push_back(typename object_t::value_type(key, *(init.begin() + 1)));
        }
        else
        {
            push_back(basic_json(init));
        }
    }

    /*!
    @brief add an object to an object
    @copydoc push_back(std::initializer_list<basic_json>)
    */
    reference operator+=(std::initializer_list<basic_json> init)
    {
        push_back(init);
        return *this;
N
Niels 已提交
5033 5034
    }

N
Niels 已提交
5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077
    /*!
    @brief add an object to an array

    Creates a JSON value from the passed parameters @a args to the end of the
    JSON value. If the function is called on a JSON null value, an empty array
    is created before appending the value created from @a args.

    @param[in] args arguments to forward to a constructor of @ref basic_json
    @tparam Args compatible types to create a @ref basic_json object

    @throw std::domain_error when called on a type other than JSON array or
    null; example: `"cannot use emplace_back() with number"`

    @complexity Amortized constant.

    @liveexample{The example shows how `push_back()` can be used to add
    elements to a JSON array. Note how the `null` value was silently converted
    to a JSON array.,emplace_back}

    @since version 2.0.8
    */
    template<class... Args>
    void emplace_back(Args&& ... args)
    {
        // emplace_back only works for null objects or arrays
        if (not(is_null() or is_array()))
        {
            throw std::domain_error("cannot use emplace_back() with " + type_name());
        }

        // transform null object into an array
        if (is_null())
        {
            m_type = value_t::array;
            m_value = value_t::array;
            assert_invariant();
        }

        // add element to array (perfect forwarding)
        m_value.array->emplace_back(std::forward<Args>(args)...);
    }

    /*!
5078
    @brief add an object to an object if key does not exist
N
Niels 已提交
5079

5080 5081 5082 5083
    Inserts a new element into a JSON object constructed in-place with the given
    @a args if there is no element with the key in the container. If the
    function is called on a JSON null value, an empty object is created before
    appending the value created from @a args.
N
Niels 已提交
5084 5085 5086 5087

    @param[in] args arguments to forward to a constructor of @ref basic_json
    @tparam Args compatible types to create a @ref basic_json object

5088 5089 5090 5091
    @return a pair consisting of an iterator to the inserted element, or the
            already-existing element if no insertion happened, and a bool
            denoting whether the insertion took place.

N
Niels 已提交
5092 5093 5094 5095 5096 5097 5098
    @throw std::domain_error when called on a type other than JSON object or
    null; example: `"cannot use emplace() with number"`

    @complexity Logarithmic in the size of the container, O(log(`size()`)).

    @liveexample{The example shows how `emplace()` can be used to add elements
    to a JSON object. Note how the `null` value was silently converted to a
5099 5100
    JSON object. Further note how no value is added if there was already one
    value stored with the same key.,emplace}
N
Niels 已提交
5101 5102 5103 5104

    @since version 2.0.8
    */
    template<class... Args>
5105
    std::pair<iterator, bool> emplace(Args&& ... args)
N
Niels 已提交
5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121
    {
        // emplace only works for null objects or arrays
        if (not(is_null() or is_object()))
        {
            throw std::domain_error("cannot use emplace() with " + type_name());
        }

        // transform null object into an object
        if (is_null())
        {
            m_type = value_t::object;
            m_value = value_t::object;
            assert_invariant();
        }

        // add element to array (perfect forwarding)
5122 5123 5124 5125 5126 5127 5128
        auto res = m_value.object->emplace(std::forward<Args>(args)...);
        // create result iterator and set iterator to the result of emplace
        auto it = begin();
        it.m_it.object_iterator = res.first;

        // return pair of iterator and boolean
        return {it, res.second};
N
Niels 已提交
5129 5130
    }

N
Niels 已提交
5131 5132 5133
    /*!
    @brief inserts element

5134
    Inserts element @a val before iterator @a pos.
N
Niels 已提交
5135 5136 5137

    @param[in] pos iterator before which the content will be inserted; may be
    the end() iterator
5138 5139
    @param[in] val element to insert
    @return iterator pointing to the inserted @a val.
N
Niels 已提交
5140

N
Niels 已提交
5141 5142
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
5143 5144
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
5145 5146 5147 5148

    @complexity Constant plus linear in the distance between pos and end of the
    container.

N
Niels 已提交
5149
    @liveexample{The example shows how `insert()` is used.,insert}
N
Niels 已提交
5150

N
Niels 已提交
5151
    @since version 1.0.0
N
Niels 已提交
5152
    */
5153
    iterator insert(const_iterator pos, const basic_json& val)
N
Niels 已提交
5154 5155
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
5156
        if (is_array())
N
Niels 已提交
5157
        {
N
cleanup  
Niels 已提交
5158 5159 5160 5161 5162
            // check if iterator pos fits to this JSON value
            if (pos.m_object != this)
            {
                throw std::domain_error("iterator does not fit current value");
            }
N
Niels 已提交
5163

N
cleanup  
Niels 已提交
5164 5165
            // insert to array and return iterator
            iterator result(this);
5166
            result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, val);
N
cleanup  
Niels 已提交
5167 5168 5169
            return result;
        }
        else
N
Niels 已提交
5170
        {
N
cleanup  
Niels 已提交
5171
            throw std::domain_error("cannot use insert() with " + type_name());
N
Niels 已提交
5172 5173 5174 5175 5176 5177 5178
        }
    }

    /*!
    @brief inserts element
    @copydoc insert(const_iterator, const basic_json&)
    */
5179
    iterator insert(const_iterator pos, basic_json&& val)
N
Niels 已提交
5180
    {
5181
        return insert(pos, val);
N
Niels 已提交
5182 5183 5184 5185 5186
    }

    /*!
    @brief inserts elements

5187
    Inserts @a cnt copies of @a val before iterator @a pos.
N
Niels 已提交
5188 5189 5190

    @param[in] pos iterator before which the content will be inserted; may be
    the end() iterator
5191 5192
    @param[in] cnt number of copies of @a val to insert
    @param[in] val element to insert
N
Niels 已提交
5193
    @return iterator pointing to the first element inserted, or @a pos if
5194
    `cnt==0`
N
Niels 已提交
5195

N
Niels 已提交
5196 5197
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
5198 5199
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
5200

5201
    @complexity Linear in @a cnt plus linear in the distance between @a pos
N
Niels 已提交
5202 5203
    and end of the container.

N
Niels 已提交
5204
    @liveexample{The example shows how `insert()` is used.,insert__count}
N
Niels 已提交
5205

N
Niels 已提交
5206
    @since version 1.0.0
N
Niels 已提交
5207
    */
5208
    iterator insert(const_iterator pos, size_type cnt, const basic_json& val)
N
Niels 已提交
5209 5210
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
5211
        if (is_array())
N
Niels 已提交
5212
        {
N
cleanup  
Niels 已提交
5213 5214 5215 5216 5217
            // check if iterator pos fits to this JSON value
            if (pos.m_object != this)
            {
                throw std::domain_error("iterator does not fit current value");
            }
N
Niels 已提交
5218

N
cleanup  
Niels 已提交
5219 5220
            // insert to array and return iterator
            iterator result(this);
5221
            result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, cnt, val);
N
cleanup  
Niels 已提交
5222 5223 5224
            return result;
        }
        else
N
Niels 已提交
5225
        {
N
cleanup  
Niels 已提交
5226
            throw std::domain_error("cannot use insert() with " + type_name());
N
Niels 已提交
5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239
        }
    }

    /*!
    @brief inserts elements

    Inserts elements from range `[first, last)` before iterator @a pos.

    @param[in] pos iterator before which the content will be inserted; may be
    the end() iterator
    @param[in] first begin of the range of elements to insert
    @param[in] last end of the range of elements to insert

N
Niels 已提交
5240 5241
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
5242 5243
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
5244
    @throw std::domain_error if @a first and @a last do not belong to the same
N
Niels 已提交
5245
    JSON value; example: `"iterators do not fit"`
N
Niels 已提交
5246
    @throw std::domain_error if @a first or @a last are iterators into
N
Niels 已提交
5247 5248 5249
    container for which insert is called; example: `"passed iterators may not
    belong to container"`

N
Niels 已提交
5250 5251 5252 5253 5254 5255
    @return iterator pointing to the first element inserted, or @a pos if
    `first==last`

    @complexity Linear in `std::distance(first, last)` plus linear in the
    distance between @a pos and end of the container.

N
Niels 已提交
5256
    @liveexample{The example shows how `insert()` is used.,insert__range}
N
Niels 已提交
5257

N
Niels 已提交
5258
    @since version 1.0.0
N
Niels 已提交
5259 5260 5261 5262
    */
    iterator insert(const_iterator pos, const_iterator first, const_iterator last)
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
5263
        if (not is_array())
N
Niels 已提交
5264 5265 5266 5267 5268 5269 5270 5271 5272 5273
        {
            throw std::domain_error("cannot use insert() with " + type_name());
        }

        // check if iterator pos fits to this JSON value
        if (pos.m_object != this)
        {
            throw std::domain_error("iterator does not fit current value");
        }

N
Niels 已提交
5274
        // check if range iterators belong to the same JSON object
N
Niels 已提交
5275 5276
        if (first.m_object != last.m_object)
        {
N
Niels 已提交
5277
            throw std::domain_error("iterators do not fit");
N
Niels 已提交
5278 5279 5280 5281 5282 5283 5284 5285 5286
        }

        if (first.m_object == this or last.m_object == this)
        {
            throw std::domain_error("passed iterators may not belong to container");
        }

        // insert to array and return iterator
        iterator result(this);
N
Niels 已提交
5287 5288 5289 5290
        result.m_it.array_iterator = m_value.array->insert(
                                         pos.m_it.array_iterator,
                                         first.m_it.array_iterator,
                                         last.m_it.array_iterator);
N
Niels 已提交
5291 5292 5293
        return result;
    }

N
Niels 已提交
5294 5295 5296 5297 5298 5299 5300 5301 5302
    /*!
    @brief inserts elements

    Inserts elements from initializer list @a ilist before iterator @a pos.

    @param[in] pos iterator before which the content will be inserted; may be
    the end() iterator
    @param[in] ilist initializer list to insert the values from

N
Niels 已提交
5303 5304
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
5305 5306
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
5307

N
Niels 已提交
5308 5309 5310
    @return iterator pointing to the first element inserted, or @a pos if
    `ilist` is empty

N
Niels 已提交
5311 5312
    @complexity Linear in `ilist.size()` plus linear in the distance between
    @a pos and end of the container.
N
Niels 已提交
5313

N
Niels 已提交
5314
    @liveexample{The example shows how `insert()` is used.,insert__ilist}
N
Niels 已提交
5315

N
Niels 已提交
5316
    @since version 1.0.0
N
Niels 已提交
5317 5318 5319 5320
    */
    iterator insert(const_iterator pos, std::initializer_list<basic_json> ilist)
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
5321
        if (not is_array())
N
Niels 已提交
5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337
        {
            throw std::domain_error("cannot use insert() with " + type_name());
        }

        // check if iterator pos fits to this JSON value
        if (pos.m_object != this)
        {
            throw std::domain_error("iterator does not fit current value");
        }

        // insert to array and return iterator
        iterator result(this);
        result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, ilist);
        return result;
    }

N
Niels 已提交
5338 5339
    /*!
    @brief exchanges the values
N
Niels 已提交
5340 5341 5342 5343 5344 5345 5346 5347 5348 5349

    Exchanges the contents of the JSON value with those of @a other. Does not
    invoke any move, copy, or swap operations on individual elements. All
    iterators and references remain valid. The past-the-end iterator is
    invalidated.

    @param[in,out] other JSON value to exchange the contents with

    @complexity Constant.

N
Niels 已提交
5350 5351
    @liveexample{The example below shows how JSON values can be swapped with
    `swap()`.,swap__reference}
N
Niels 已提交
5352

N
Niels 已提交
5353
    @since version 1.0.0
N
Niels 已提交
5354
    */
N
Niels 已提交
5355
    void swap(reference other) noexcept (
N
Niels 已提交
5356 5357 5358 5359 5360
        std::is_nothrow_move_constructible<value_t>::value and
        std::is_nothrow_move_assignable<value_t>::value and
        std::is_nothrow_move_constructible<json_value>::value and
        std::is_nothrow_move_assignable<json_value>::value
    )
N
Niels 已提交
5361 5362 5363
    {
        std::swap(m_type, other.m_type);
        std::swap(m_value, other.m_value);
5364
        assert_invariant();
N
Niels 已提交
5365 5366
    }

N
Niels 已提交
5367 5368 5369 5370 5371 5372 5373 5374 5375 5376
    /*!
    @brief exchanges the values

    Exchanges the contents of a JSON array with those of @a other. Does not
    invoke any move, copy, or swap operations on individual elements. All
    iterators and references remain valid. The past-the-end iterator is
    invalidated.

    @param[in,out] other array to exchange the contents with

N
Niels 已提交
5377 5378
    @throw std::domain_error when JSON value is not an array; example: `"cannot
    use swap() with string"`
N
Niels 已提交
5379 5380 5381

    @complexity Constant.

N
Niels 已提交
5382 5383
    @liveexample{The example below shows how arrays can be swapped with
    `swap()`.,swap__array_t}
N
Niels 已提交
5384

N
Niels 已提交
5385
    @since version 1.0.0
N
Niels 已提交
5386
    */
N
Niels 已提交
5387
    void swap(array_t& other)
N
Niels 已提交
5388 5389
    {
        // swap only works for arrays
N
cleanup  
Niels 已提交
5390 5391 5392 5393 5394
        if (is_array())
        {
            std::swap(*(m_value.array), other);
        }
        else
N
Niels 已提交
5395
        {
N
Niels 已提交
5396
            throw std::domain_error("cannot use swap() with " + type_name());
N
Niels 已提交
5397 5398 5399
        }
    }

5400 5401 5402 5403 5404 5405 5406 5407 5408 5409
    /*!
    @brief exchanges the values

    Exchanges the contents of a JSON object with those of @a other. Does not
    invoke any move, copy, or swap operations on individual elements. All
    iterators and references remain valid. The past-the-end iterator is
    invalidated.

    @param[in,out] other object to exchange the contents with

N
Niels 已提交
5410 5411
    @throw std::domain_error when JSON value is not an object; example:
    `"cannot use swap() with string"`
5412 5413 5414

    @complexity Constant.

N
Niels 已提交
5415 5416
    @liveexample{The example below shows how objects can be swapped with
    `swap()`.,swap__object_t}
N
Niels 已提交
5417

N
Niels 已提交
5418
    @since version 1.0.0
5419
    */
N
Niels 已提交
5420
    void swap(object_t& other)
N
Niels 已提交
5421 5422
    {
        // swap only works for objects
N
cleanup  
Niels 已提交
5423 5424 5425 5426 5427
        if (is_object())
        {
            std::swap(*(m_value.object), other);
        }
        else
N
Niels 已提交
5428
        {
N
Niels 已提交
5429
            throw std::domain_error("cannot use swap() with " + type_name());
N
Niels 已提交
5430 5431 5432
        }
    }

5433 5434 5435 5436 5437 5438 5439 5440 5441 5442
    /*!
    @brief exchanges the values

    Exchanges the contents of a JSON string with those of @a other. Does not
    invoke any move, copy, or swap operations on individual elements. All
    iterators and references remain valid. The past-the-end iterator is
    invalidated.

    @param[in,out] other string to exchange the contents with

N
Niels 已提交
5443 5444
    @throw std::domain_error when JSON value is not a string; example: `"cannot
    use swap() with boolean"`
5445 5446 5447

    @complexity Constant.

N
Niels 已提交
5448 5449
    @liveexample{The example below shows how strings can be swapped with
    `swap()`.,swap__string_t}
N
Niels 已提交
5450

N
Niels 已提交
5451
    @since version 1.0.0
5452
    */
N
Niels 已提交
5453
    void swap(string_t& other)
N
Niels 已提交
5454 5455
    {
        // swap only works for strings
N
cleanup  
Niels 已提交
5456 5457 5458 5459 5460
        if (is_string())
        {
            std::swap(*(m_value.string), other);
        }
        else
N
Niels 已提交
5461
        {
N
Niels 已提交
5462
            throw std::domain_error("cannot use swap() with " + type_name());
N
Niels 已提交
5463 5464 5465
        }
    }

N
Niels 已提交
5466 5467
    /// @}

N
Niels 已提交
5468 5469 5470 5471 5472

    //////////////////////////////////////////
    // lexicographical comparison operators //
    //////////////////////////////////////////

N
Niels 已提交
5473 5474 5475
    /// @name lexicographical comparison operators
    /// @{

N
Niels 已提交
5476 5477 5478 5479 5480 5481 5482
  private:
    /*!
    @brief comparison operator for JSON types

    Returns an ordering that is similar to Python:
    - order: null < boolean < number < object < array < string
    - furthermore, each type is not smaller than itself
N
Niels 已提交
5483

N
Niels 已提交
5484
    @since version 1.0.0
N
Niels 已提交
5485
    */
N
Niels 已提交
5486
    friend bool operator<(const value_t lhs, const value_t rhs) noexcept
N
Niels 已提交
5487
    {
5488
        static constexpr std::array<uint8_t, 8> order = {{
N
Niels 已提交
5489 5490 5491 5492 5493 5494
                0, // null
                3, // object
                4, // array
                5, // string
                1, // boolean
                2, // integer
5495 5496
                2, // unsigned
                2, // float
N
Niels 已提交
5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509
            }
        };

        // discarded values are not comparable
        if (lhs == value_t::discarded or rhs == value_t::discarded)
        {
            return false;
        }

        return order[static_cast<std::size_t>(lhs)] < order[static_cast<std::size_t>(rhs)];
    }

  public:
N
Niels 已提交
5510 5511
    /*!
    @brief comparison: equal
N
Niels 已提交
5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527

    Compares two JSON values for equality according to the following rules:
    - Two JSON values are equal if (1) they are from the same type and (2)
      their stored values are the same.
    - Integer and floating-point numbers are automatically converted before
      comparison. Floating-point numbers are compared indirectly: two
      floating-point numbers `f1` and `f2` are considered equal if neither
      `f1 > f2` nor `f2 > f1` holds.
    - Two JSON null values are equal.

    @param[in] lhs  first JSON value to consider
    @param[in] rhs  second JSON value to consider
    @return whether the values @a lhs and @a rhs are equal

    @complexity Linear.

5528 5529
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__equal}
N
Niels 已提交
5530

N
Niels 已提交
5531
    @since version 1.0.0
N
Niels 已提交
5532
    */
N
Niels 已提交
5533
    friend bool operator==(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5534
    {
F
Florian Weber 已提交
5535 5536
        const auto lhs_type = lhs.type();
        const auto rhs_type = rhs.type();
N
Niels 已提交
5537

F
Florian Weber 已提交
5538
        if (lhs_type == rhs_type)
N
Niels 已提交
5539
        {
F
Florian Weber 已提交
5540
            switch (lhs_type)
N
Niels 已提交
5541
            {
5542
                case value_t::array:
N
Niels 已提交
5543
                {
N
Niels 已提交
5544
                    return *lhs.m_value.array == *rhs.m_value.array;
N
Niels 已提交
5545
                }
5546
                case value_t::object:
N
Niels 已提交
5547
                {
N
Niels 已提交
5548
                    return *lhs.m_value.object == *rhs.m_value.object;
N
Niels 已提交
5549
                }
5550
                case value_t::null:
N
Niels 已提交
5551
                {
N
Niels 已提交
5552
                    return true;
N
Niels 已提交
5553
                }
5554
                case value_t::string:
N
Niels 已提交
5555
                {
N
Niels 已提交
5556
                    return *lhs.m_value.string == *rhs.m_value.string;
N
Niels 已提交
5557
                }
5558
                case value_t::boolean:
N
Niels 已提交
5559
                {
N
Niels 已提交
5560
                    return lhs.m_value.boolean == rhs.m_value.boolean;
N
Niels 已提交
5561
                }
5562
                case value_t::number_integer:
N
Niels 已提交
5563
                {
N
Niels 已提交
5564
                    return lhs.m_value.number_integer == rhs.m_value.number_integer;
N
Niels 已提交
5565
                }
5566 5567 5568 5569
                case value_t::number_unsigned:
                {
                    return lhs.m_value.number_unsigned == rhs.m_value.number_unsigned;
                }
5570
                case value_t::number_float:
N
Niels 已提交
5571
                {
5572
                    return lhs.m_value.number_float == rhs.m_value.number_float;
N
Niels 已提交
5573
                }
5574
                default:
N
Niels 已提交
5575
                {
N
Niels 已提交
5576
                    return false;
N
Niels 已提交
5577
                }
N
Niels 已提交
5578 5579
            }
        }
F
Florian Weber 已提交
5580 5581
        else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
        {
N
Niels 已提交
5582
            return static_cast<number_float_t>(lhs.m_value.number_integer) == rhs.m_value.number_float;
F
Florian Weber 已提交
5583 5584 5585
        }
        else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
        {
5586
            return lhs.m_value.number_float == static_cast<number_float_t>(rhs.m_value.number_integer);
F
Florian Weber 已提交
5587
        }
5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602
        else if (lhs_type == value_t::number_unsigned and rhs_type == value_t::number_float)
        {
            return static_cast<number_float_t>(lhs.m_value.number_unsigned) == rhs.m_value.number_float;
        }
        else if (lhs_type == value_t::number_float and rhs_type == value_t::number_unsigned)
        {
            return lhs.m_value.number_float == static_cast<number_float_t>(rhs.m_value.number_unsigned);
        }
        else if (lhs_type == value_t::number_unsigned and rhs_type == value_t::number_integer)
        {
            return static_cast<number_integer_t>(lhs.m_value.number_unsigned) == rhs.m_value.number_integer;
        }
        else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_unsigned)
        {
            return lhs.m_value.number_integer == static_cast<number_integer_t>(rhs.m_value.number_unsigned);
F
Florian Weber 已提交
5603
        }
5604

N
Niels 已提交
5605 5606 5607
        return false;
    }

N
Niels 已提交
5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622
    /*!
    @brief comparison: equal

    The functions compares the given JSON value against a null pointer. As the
    null pointer can be used to initialize a JSON value to null, a comparison
    of JSON value @a v with a null pointer should be equivalent to call
    `v.is_null()`.

    @param[in] v  JSON value to consider
    @return whether @a v is null

    @complexity Constant.

    @liveexample{The example compares several JSON types to the null pointer.
    ,operator__equal__nullptr_t}
N
Niels 已提交
5623

N
Niels 已提交
5624
    @since version 1.0.0
N
Niels 已提交
5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639
    */
    friend bool operator==(const_reference v, std::nullptr_t) noexcept
    {
        return v.is_null();
    }

    /*!
    @brief comparison: equal
    @copydoc operator==(const_reference, std::nullptr_t)
    */
    friend bool operator==(std::nullptr_t, const_reference v) noexcept
    {
        return v.is_null();
    }

N
Niels 已提交
5640 5641
    /*!
    @brief comparison: not equal
N
Niels 已提交
5642 5643 5644 5645 5646 5647 5648 5649 5650

    Compares two JSON values for inequality by calculating `not (lhs == rhs)`.

    @param[in] lhs  first JSON value to consider
    @param[in] rhs  second JSON value to consider
    @return whether the values @a lhs and @a rhs are not equal

    @complexity Linear.

5651 5652
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__notequal}
N
Niels 已提交
5653

N
Niels 已提交
5654
    @since version 1.0.0
N
Niels 已提交
5655
    */
N
Niels 已提交
5656
    friend bool operator!=(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5657 5658 5659 5660
    {
        return not (lhs == rhs);
    }

N
Niels 已提交
5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675
    /*!
    @brief comparison: not equal

    The functions compares the given JSON value against a null pointer. As the
    null pointer can be used to initialize a JSON value to null, a comparison
    of JSON value @a v with a null pointer should be equivalent to call
    `not v.is_null()`.

    @param[in] v  JSON value to consider
    @return whether @a v is not null

    @complexity Constant.

    @liveexample{The example compares several JSON types to the null pointer.
    ,operator__notequal__nullptr_t}
N
Niels 已提交
5676

N
Niels 已提交
5677
    @since version 1.0.0
N
Niels 已提交
5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692
    */
    friend bool operator!=(const_reference v, std::nullptr_t) noexcept
    {
        return not v.is_null();
    }

    /*!
    @brief comparison: not equal
    @copydoc operator!=(const_reference, std::nullptr_t)
    */
    friend bool operator!=(std::nullptr_t, const_reference v) noexcept
    {
        return not v.is_null();
    }

N
Niels 已提交
5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711
    /*!
    @brief comparison: less than

    Compares whether one JSON value @a lhs is less than another JSON value @a
    rhs according to the following rules:
    - If @a lhs and @a rhs have the same type, the values are compared using
      the default `<` operator.
    - Integer and floating-point numbers are automatically converted before
      comparison
    - In case @a lhs and @a rhs have different types, the values are ignored
      and the order of the types is considered, see
      @ref operator<(const value_t, const value_t).

    @param[in] lhs  first JSON value to consider
    @param[in] rhs  second JSON value to consider
    @return whether @a lhs is less than @a rhs

    @complexity Linear.

5712 5713
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__less}
N
Niels 已提交
5714

N
Niels 已提交
5715
    @since version 1.0.0
N
Niels 已提交
5716
    */
N
Niels 已提交
5717
    friend bool operator<(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5718
    {
F
Florian Weber 已提交
5719 5720
        const auto lhs_type = lhs.type();
        const auto rhs_type = rhs.type();
N
Niels 已提交
5721

F
Florian Weber 已提交
5722
        if (lhs_type == rhs_type)
N
Niels 已提交
5723
        {
F
Florian Weber 已提交
5724
            switch (lhs_type)
N
Niels 已提交
5725
            {
5726
                case value_t::array:
N
Niels 已提交
5727
                {
N
Niels 已提交
5728
                    return *lhs.m_value.array < *rhs.m_value.array;
N
Niels 已提交
5729
                }
5730
                case value_t::object:
N
Niels 已提交
5731
                {
N
Niels 已提交
5732
                    return *lhs.m_value.object < *rhs.m_value.object;
N
Niels 已提交
5733
                }
5734
                case value_t::null:
N
Niels 已提交
5735
                {
N
Niels 已提交
5736
                    return false;
N
Niels 已提交
5737
                }
5738
                case value_t::string:
N
Niels 已提交
5739
                {
N
Niels 已提交
5740
                    return *lhs.m_value.string < *rhs.m_value.string;
N
Niels 已提交
5741
                }
5742
                case value_t::boolean:
N
Niels 已提交
5743
                {
N
Niels 已提交
5744
                    return lhs.m_value.boolean < rhs.m_value.boolean;
N
Niels 已提交
5745
                }
5746
                case value_t::number_integer:
N
Niels 已提交
5747
                {
N
Niels 已提交
5748
                    return lhs.m_value.number_integer < rhs.m_value.number_integer;
N
Niels 已提交
5749
                }
5750 5751 5752 5753
                case value_t::number_unsigned:
                {
                    return lhs.m_value.number_unsigned < rhs.m_value.number_unsigned;
                }
5754
                case value_t::number_float:
N
Niels 已提交
5755
                {
N
Niels 已提交
5756
                    return lhs.m_value.number_float < rhs.m_value.number_float;
N
Niels 已提交
5757
                }
5758
                default:
N
Niels 已提交
5759
                {
N
Niels 已提交
5760
                    return false;
N
Niels 已提交
5761
                }
N
Niels 已提交
5762 5763
            }
        }
F
Florian Weber 已提交
5764 5765
        else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
        {
5766
            return static_cast<number_float_t>(lhs.m_value.number_integer) < rhs.m_value.number_float;
F
Florian Weber 已提交
5767 5768 5769
        }
        else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
        {
5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786
            return lhs.m_value.number_float < static_cast<number_float_t>(rhs.m_value.number_integer);
        }
        else if (lhs_type == value_t::number_unsigned and rhs_type == value_t::number_float)
        {
            return static_cast<number_float_t>(lhs.m_value.number_unsigned) < rhs.m_value.number_float;
        }
        else if (lhs_type == value_t::number_float and rhs_type == value_t::number_unsigned)
        {
            return lhs.m_value.number_float < static_cast<number_float_t>(rhs.m_value.number_unsigned);
        }
        else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_unsigned)
        {
            return lhs.m_value.number_integer < static_cast<number_integer_t>(rhs.m_value.number_unsigned);
        }
        else if (lhs_type == value_t::number_unsigned and rhs_type == value_t::number_integer)
        {
            return static_cast<number_integer_t>(lhs.m_value.number_unsigned) < rhs.m_value.number_integer;
F
Florian Weber 已提交
5787
        }
N
Niels 已提交
5788

N
Niels 已提交
5789
        // We only reach this line if we cannot compare values. In that case,
N
Niels 已提交
5790 5791 5792
        // we compare types. Note we have to call the operator explicitly,
        // because MSVC has problems otherwise.
        return operator<(lhs_type, rhs_type);
N
Niels 已提交
5793 5794
    }

N
Niels 已提交
5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806
    /*!
    @brief comparison: less than or equal

    Compares whether one JSON value @a lhs is less than or equal to another
    JSON value by calculating `not (rhs < lhs)`.

    @param[in] lhs  first JSON value to consider
    @param[in] rhs  second JSON value to consider
    @return whether @a lhs is less than or equal to @a rhs

    @complexity Linear.

5807 5808
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__greater}
N
Niels 已提交
5809

N
Niels 已提交
5810
    @since version 1.0.0
N
Niels 已提交
5811
    */
N
Niels 已提交
5812
    friend bool operator<=(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5813 5814 5815 5816
    {
        return not (rhs < lhs);
    }

N
Niels 已提交
5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828
    /*!
    @brief comparison: greater than

    Compares whether one JSON value @a lhs is greater than another
    JSON value by calculating `not (lhs <= rhs)`.

    @param[in] lhs  first JSON value to consider
    @param[in] rhs  second JSON value to consider
    @return whether @a lhs is greater than to @a rhs

    @complexity Linear.

5829 5830
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__lessequal}
N
Niels 已提交
5831

N
Niels 已提交
5832
    @since version 1.0.0
N
Niels 已提交
5833
    */
N
Niels 已提交
5834
    friend bool operator>(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5835 5836 5837 5838
    {
        return not (lhs <= rhs);
    }

N
Niels 已提交
5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850
    /*!
    @brief comparison: greater than or equal

    Compares whether one JSON value @a lhs is greater than or equal to another
    JSON value by calculating `not (lhs < rhs)`.

    @param[in] lhs  first JSON value to consider
    @param[in] rhs  second JSON value to consider
    @return whether @a lhs is greater than or equal to @a rhs

    @complexity Linear.

5851 5852
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__greaterequal}
N
Niels 已提交
5853

N
Niels 已提交
5854
    @since version 1.0.0
N
Niels 已提交
5855
    */
N
Niels 已提交
5856
    friend bool operator>=(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5857 5858 5859 5860
    {
        return not (lhs < rhs);
    }

N
Niels 已提交
5861 5862
    /// @}

N
Niels 已提交
5863 5864 5865 5866 5867

    ///////////////////
    // serialization //
    ///////////////////

N
Niels 已提交
5868 5869 5870
    /// @name serialization
    /// @{

N
Niels 已提交
5871 5872 5873 5874 5875 5876 5877 5878 5879 5880
    /*!
    @brief serialize to stream

    Serialize the given JSON value @a j to the output stream @a o. The JSON
    value will be serialized using the @ref dump member function. The
    indentation of the output can be controlled with the member variable
    `width` of the output stream @a o. For instance, using the manipulator
    `std::setw(4)` on @a o sets the indentation level to `4` and the
    serialization result is the same as calling `dump(4)`.

5881 5882 5883 5884
    @note During serializaion, the locale and the precision of the output
    stream @a o are changed. The original values are restored when the
    function returns.

N
Niels 已提交
5885 5886 5887 5888 5889 5890 5891
    @param[in,out] o  stream to serialize to
    @param[in] j  JSON value to serialize

    @return the stream @a o

    @complexity Linear.

N
Niels 已提交
5892 5893
    @liveexample{The example below shows the serialization with different
    parameters to `width` to adjust the indentation level.,operator_serialize}
N
Niels 已提交
5894

N
Niels 已提交
5895
    @since version 1.0.0
N
Niels 已提交
5896
    */
N
Niels 已提交
5897 5898
    friend std::ostream& operator<<(std::ostream& o, const basic_json& j)
    {
N
Niels 已提交
5899
        // read width member and use it as indentation parameter if nonzero
N
Niels 已提交
5900 5901
        const bool pretty_print = (o.width() > 0);
        const auto indentation = (pretty_print ? o.width() : 0);
N
Niels 已提交
5902

N
Niels 已提交
5903 5904
        // reset width to 0 for subsequent calls to this stream
        o.width(0);
5905

N
Niels 已提交
5906
        // fix locale problems
N
Niels 已提交
5907
        const auto old_locale = o.imbue(std::locale::classic());
5908 5909 5910 5911 5912 5913
        // set precision

        // 6, 15 or 16 digits of precision allows round-trip IEEE 754
        // string->float->string, string->double->string or string->long
        // double->string; to be safe, we read this value from
        // std::numeric_limits<number_float_t>::digits10
N
Niels 已提交
5914
        const auto old_precision = o.precision(std::numeric_limits<double>::digits10);
N
Niels 已提交
5915 5916

        // do the actual serialization
N
Niels 已提交
5917
        j.dump(o, pretty_print, static_cast<unsigned int>(indentation));
N
Niels 已提交
5918

5919
        // reset locale and precision
N
Niels 已提交
5920
        o.imbue(old_locale);
N
Niels 已提交
5921
        o.precision(old_precision);
N
Niels 已提交
5922 5923 5924
        return o;
    }

N
Niels 已提交
5925 5926 5927 5928
    /*!
    @brief serialize to stream
    @copydoc operator<<(std::ostream&, const basic_json&)
    */
N
Niels 已提交
5929 5930
    friend std::ostream& operator>>(const basic_json& j, std::ostream& o)
    {
N
Niels 已提交
5931
        return o << j;
N
Niels 已提交
5932 5933
    }

N
Niels 已提交
5934 5935
    /// @}

N
Niels 已提交
5936 5937 5938 5939 5940

    /////////////////////
    // deserialization //
    /////////////////////

N
Niels 已提交
5941 5942 5943
    /// @name deserialization
    /// @{

N
Niels 已提交
5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008
    /*!
    @brief deserialize from an array

    This function reads from an array of 1-byte values.

    @pre Each element of the container has a size of 1 byte. Violating this
    precondition yields undefined behavior. **This precondition is enforced
    with a static assertion.**

    @param[in] array  array to read from
    @param[in] cb  a parser callback function of type @ref parser_callback_t
    which is used to control the deserialization by filtering unwanted values
    (optional)

    @return result of the deserialization

    @complexity Linear in the length of the input. The parser is a predictive
    LL(1) parser. The complexity can be higher if the parser callback function
    @a cb has a super-linear complexity.

    @note A UTF-8 byte order mark is silently ignored.

    @liveexample{The example below demonstrates the `parse()` function reading
    from an array.,parse__array__parser_callback_t}

    @since version 2.0.3
    */
    template<class T, std::size_t N>
    static basic_json parse(T (&array)[N],
                            const parser_callback_t cb = nullptr)
    {
        // delegate the call to the iterator-range parse overload
        return parse(std::begin(array), std::end(array), cb);
    }

    /*!
    @brief deserialize from string literal

    @tparam CharT character/literal type with size of 1 byte
    @param[in] s  string literal to read a serialized JSON value from
    @param[in] cb a parser callback function of type @ref parser_callback_t
    which is used to control the deserialization by filtering unwanted values
    (optional)

    @return result of the deserialization

    @complexity Linear in the length of the input. The parser is a predictive
    LL(1) parser. The complexity can be higher if the parser callback function
    @a cb has a super-linear complexity.

    @note A UTF-8 byte order mark is silently ignored.
    @note String containers like `std::string` or @ref string_t can be parsed
          with @ref parse(const ContiguousContainer&, const parser_callback_t)

    @liveexample{The example below demonstrates the `parse()` function with
    and without callback function.,parse__string__parser_callback_t}

    @sa @ref parse(std::istream&, const parser_callback_t) for a version that
    reads from an input stream

    @since version 1.0.0 (originally for @ref string_t)
    */
    template<typename CharPT, typename std::enable_if<
                 std::is_pointer<CharPT>::value and
                 std::is_integral<typename std::remove_pointer<CharPT>::type>::value and
N
Niels 已提交
6009
                 sizeof(typename std::remove_pointer<CharPT>::type) == 1, int>::type = 0>
N
Niels 已提交
6010 6011 6012 6013 6014 6015
    static basic_json parse(const CharPT s,
                            const parser_callback_t cb = nullptr)
    {
        return parser(reinterpret_cast<const char*>(s), cb).parse();
    }

N
Niels 已提交
6016 6017 6018 6019
    /*!
    @brief deserialize from stream

    @param[in,out] i  stream to read a serialized JSON value from
N
Niels 已提交
6020 6021 6022
    @param[in] cb a parser callback function of type @ref parser_callback_t
    which is used to control the deserialization by filtering unwanted values
    (optional)
N
Niels 已提交
6023 6024 6025 6026 6027 6028 6029

    @return result of the deserialization

    @complexity Linear in the length of the input. The parser is a predictive
    LL(1) parser. The complexity can be higher if the parser callback function
    @a cb has a super-linear complexity.

N
Niels 已提交
6030 6031
    @note A UTF-8 byte order mark is silently ignored.

N
Niels 已提交
6032 6033
    @liveexample{The example below demonstrates the `parse()` function with
    and without callback function.,parse__istream__parser_callback_t}
N
Niels 已提交
6034

N
Niels 已提交
6035
    @sa @ref parse(const char*, const parser_callback_t) for a version
N
Niels 已提交
6036
    that reads from a string
N
Niels 已提交
6037

N
Niels 已提交
6038
    @since version 1.0.0
N
Niels 已提交
6039
    */
N
Niels 已提交
6040 6041
    static basic_json parse(std::istream& i,
                            const parser_callback_t cb = nullptr)
N
Niels 已提交
6042
    {
N
Niels 已提交
6043
        return parser(i, cb).parse();
N
Niels 已提交
6044 6045
    }

N
Niels 已提交
6046
    /*!
N
Niels 已提交
6047
    @copydoc parse(std::istream&, const parser_callback_t)
N
Niels 已提交
6048
    */
N
Niels 已提交
6049 6050
    static basic_json parse(std::istream&& i,
                            const parser_callback_t cb = nullptr)
N
Cleanup  
Niels 已提交
6051 6052 6053 6054
    {
        return parser(i, cb).parse();
    }

6055
    /*!
N
Niels 已提交
6056
    @brief deserialize from an iterator range with contiguous storage
6057

6058 6059
    This function reads from an iterator range of a container with contiguous
    storage of 1-byte values. Compatible container types include
6060 6061 6062 6063 6064 6065 6066 6067 6068
    `std::vector`, `std::string`, `std::array`, `std::valarray`, and
    `std::initializer_list`. Furthermore, C-style arrays can be used with
    `std::begin()`/`std::end()`. User-defined containers can be used as long
    as they implement random-access iterators and a contiguous storage.

    @pre The iterator range is contiguous. Violating this precondition yields
    undefined behavior. **This precondition is enforced with an assertion.**
    @pre Each element in the range has a size of 1 byte. Violating this
    precondition yields undefined behavior. **This precondition is enforced
6069
    with a static assertion.**
6070

N
Niels 已提交
6071 6072 6073 6074
    @warning There is no way to enforce all preconditions at compile-time. If
             the function is called with noncompliant iterators and with
             assertions switched off, the behavior is undefined and will most
             likely yield segmentation violation.
6075

N
Niels 已提交
6076
    @tparam IteratorType iterator of container with contiguous storage
N
Niels 已提交
6077 6078 6079
    @param[in] first  begin of the range to parse (included)
    @param[in] last  end of the range to parse (excluded)
    @param[in] cb  a parser callback function of type @ref parser_callback_t
6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090
    which is used to control the deserialization by filtering unwanted values
    (optional)

    @return result of the deserialization

    @complexity Linear in the length of the input. The parser is a predictive
    LL(1) parser. The complexity can be higher if the parser callback function
    @a cb has a super-linear complexity.

    @note A UTF-8 byte order mark is silently ignored.

N
Niels 已提交
6091 6092
    @liveexample{The example below demonstrates the `parse()` function reading
    from an iterator range.,parse__iteratortype__parser_callback_t}
6093 6094 6095

    @since version 2.0.3
    */
N
Niels 已提交
6096 6097 6098 6099
    template<class IteratorType, typename std::enable_if<
                 std::is_base_of<
                     std::random_access_iterator_tag,
                     typename std::iterator_traits<IteratorType>::iterator_category>::value, int>::type = 0>
6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112
    static basic_json parse(IteratorType first, IteratorType last,
                            const parser_callback_t cb = nullptr)
    {
        // assertion to check that the iterator range is indeed contiguous,
        // see http://stackoverflow.com/a/35008842/266378 for more discussion
        assert(std::accumulate(first, last, std::make_pair<bool, int>(true, 0),
                               [&first](std::pair<bool, int> res, decltype(*first) val)
        {
            res.first &= (val == *(std::next(std::addressof(*first), res.second++)));
            return res;
        }).first);

        // assertion to check that each element is 1 byte long
6113 6114
        static_assert(sizeof(typename std::iterator_traits<IteratorType>::value_type) == 1,
                      "each element in the iterator range must have the size of 1 byte");
6115

6116 6117 6118 6119 6120 6121
        // if iterator range is empty, create a parser with an empty string
        // to generate "unexpected EOF" error message
        if (std::distance(first, last) <= 0)
        {
            return parser("").parse();
        }
6122 6123 6124 6125

        return parser(first, last, cb).parse();
    }

N
Niels 已提交
6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146
    /*!
    @brief deserialize from a container with contiguous storage

    This function reads from a container with contiguous storage of 1-byte
    values. Compatible container types include `std::vector`, `std::string`,
    `std::array`, and `std::initializer_list`. User-defined containers can be
    used as long as they implement random-access iterators and a contiguous
    storage.

    @pre The container storage is contiguous. Violating this precondition
    yields undefined behavior. **This precondition is enforced with an
    assertion.**
    @pre Each element of the container has a size of 1 byte. Violating this
    precondition yields undefined behavior. **This precondition is enforced
    with a static assertion.**

    @warning There is no way to enforce all preconditions at compile-time. If
             the function is called with a noncompliant container and with
             assertions switched off, the behavior is undefined and will most
             likely yield segmentation violation.

N
Niels 已提交
6147
    @tparam ContiguousContainer container type with contiguous storage
N
Niels 已提交
6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165
    @param[in] c  container to read from
    @param[in] cb  a parser callback function of type @ref parser_callback_t
    which is used to control the deserialization by filtering unwanted values
    (optional)

    @return result of the deserialization

    @complexity Linear in the length of the input. The parser is a predictive
    LL(1) parser. The complexity can be higher if the parser callback function
    @a cb has a super-linear complexity.

    @note A UTF-8 byte order mark is silently ignored.

    @liveexample{The example below demonstrates the `parse()` function reading
    from a contiguous container.,parse__contiguouscontainer__parser_callback_t}

    @since version 2.0.3
    */
N
Niels 已提交
6166
    template<class ContiguousContainer, typename std::enable_if<
N
Niels 已提交
6167
                 not std::is_pointer<ContiguousContainer>::value and
6168 6169
                 std::is_base_of<
                     std::random_access_iterator_tag,
N
Niels 已提交
6170
                     typename std::iterator_traits<decltype(std::begin(std::declval<ContiguousContainer const>()))>::iterator_category>::value
6171 6172 6173 6174 6175 6176 6177 6178
                 , int>::type = 0>
    static basic_json parse(const ContiguousContainer& c,
                            const parser_callback_t cb = nullptr)
    {
        // delegate the call to the iterator-range parse overload
        return parse(std::begin(c), std::end(c), cb);
    }

N
Niels 已提交
6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191
    /*!
    @brief deserialize from stream

    Deserializes an input stream to a JSON value.

    @param[in,out] i  input stream to read a serialized JSON value from
    @param[in,out] j  JSON value to write the deserialized input to

    @throw std::invalid_argument in case of parse errors

    @complexity Linear in the length of the input. The parser is a predictive
    LL(1) parser.

N
Niels 已提交
6192 6193
    @note A UTF-8 byte order mark is silently ignored.

N
Niels 已提交
6194 6195 6196
    @liveexample{The example below shows how a JSON value is constructed by
    reading a serialization from a stream.,operator_deserialize}

N
Niels 已提交
6197 6198
    @sa parse(std::istream&, const parser_callback_t) for a variant with a
    parser callback function to filter values while parsing
N
Niels 已提交
6199

N
Niels 已提交
6200
    @since version 1.0.0
N
Niels 已提交
6201 6202
    */
    friend std::istream& operator<<(basic_json& j, std::istream& i)
N
Niels 已提交
6203 6204 6205 6206 6207
    {
        j = parser(i).parse();
        return i;
    }

N
Niels 已提交
6208 6209 6210 6211 6212
    /*!
    @brief deserialize from stream
    @copydoc operator<<(basic_json&, std::istream&)
    */
    friend std::istream& operator>>(std::istream& i, basic_json& j)
N
Niels 已提交
6213 6214 6215 6216 6217
    {
        j = parser(i).parse();
        return i;
    }

N
Niels 已提交
6218 6219
    /// @}

N
Niels Lohmann 已提交
6220 6221 6222
    //////////////////////////////////////////
    // binary serialization/deserialization //
    //////////////////////////////////////////
N
Niels 已提交
6223

N
Niels Lohmann 已提交
6224
    /// @name binary serialization/deserialization support
N
Niels 已提交
6225 6226 6227
    /// @{

  private:
6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264
    template<typename T>
    static void add_to_vector(std::vector<uint8_t>& vec, size_t bytes, const T number)
    {
        assert(bytes == 1 or bytes == 2 or bytes == 4 or bytes == 8);

        switch (bytes)
        {
            case 8:
            {
                vec.push_back(static_cast<uint8_t>((number >> 070) & 0xff));
                vec.push_back(static_cast<uint8_t>((number >> 060) & 0xff));
                vec.push_back(static_cast<uint8_t>((number >> 050) & 0xff));
                vec.push_back(static_cast<uint8_t>((number >> 040) & 0xff));
                // intentional fall-through
            }

            case 4:
            {
                vec.push_back(static_cast<uint8_t>((number >> 030) & 0xff));
                vec.push_back(static_cast<uint8_t>((number >> 020) & 0xff));
                // intentional fall-through
            }

            case 2:
            {
                vec.push_back(static_cast<uint8_t>((number >> 010) & 0xff));
                // intentional fall-through
            }

            case 1:
            {
                vec.push_back(static_cast<uint8_t>(number & 0xff));
                break;
            }
        }
    }

6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281
    /*!
    @brief take sufficient bytes from a vector to fill an integer variable

    In the context of binary serialization formats, we need to read several
    bytes from a byte vector and combine them to multi-byte integral data
    types.

    @param[in] vec  byte vector to read from
    @param[in] current_index  the psition in the vector after which to read

    @return the next sizeof(T) bytes from @a vec, in reverse order as T

    @tparam T the integral return type

    @throw std::out_of_range if there are less than sizeof(T)+1 bytes in the
           vector @a vec to read

6282 6283 6284 6285
    Precondition:

    vec:   |   |   | a | b | c | d |   |   |        T: |   |   |   |   |
                 ^                   ^                   ^                ^
6286
           current_index            idx                 ptr        sizeof(T)
6287 6288 6289 6290 6291 6292 6293 6294

    Postcondition:

    vec:   |   |   | a | b | c | d |   |   |        T: | d | c | b | a |
                 ^   ^                                               ^
                 |  idx                                             ptr
           current_index

6295
    @sa Code from <http://stackoverflow.com/a/41031865/266378>.
6296 6297 6298
    */
    template<typename T>
    static T get_from_vector(const std::vector<uint8_t>& vec, const size_t current_index)
6299
    {
6300 6301 6302 6303 6304
        if (current_index + sizeof(T) + 1 > vec.size())
        {
            throw std::out_of_range("cannot read " + std::to_string(sizeof(T)) + " bytes from vector");
        }

6305 6306 6307 6308 6309 6310 6311 6312
        T result;
        uint8_t* ptr = reinterpret_cast<uint8_t*>(&result);
        size_t idx = current_index + 1 + sizeof(T);
        while (idx > current_index)
        {
            *ptr++ = vec[--idx];
        }
        return result;
6313 6314
    }

N
Niels 已提交
6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337
    static void to_msgpack_internal(const basic_json& j, std::vector<uint8_t>& v)
    {
        switch (j.type())
        {
            case value_t::null:
            {
                // nil
                v.push_back(0xc0);
                break;
            }

            case value_t::boolean:
            {
                // true and false
                v.push_back(j.m_value.boolean ? 0xc3 : 0xc2);
                break;
            }

            case value_t::number_integer:
            {
                if (j.m_value.number_integer >= -32 and j.m_value.number_integer < 128)
                {
                    // negative fixnum and positive fixnum
6338
                    add_to_vector(v, 1, j.m_value.number_integer);
N
Niels 已提交
6339 6340 6341 6342 6343
                }
                else if (j.m_value.number_integer >= INT8_MIN and j.m_value.number_integer <= INT8_MAX)
                {
                    // int 8
                    v.push_back(0xd0);
6344
                    add_to_vector(v, 1, j.m_value.number_integer);
N
Niels 已提交
6345 6346 6347 6348 6349
                }
                else if (j.m_value.number_integer >= INT16_MIN and j.m_value.number_integer <= INT16_MAX)
                {
                    // int 16
                    v.push_back(0xd1);
6350
                    add_to_vector(v, 2, j.m_value.number_integer);
N
Niels 已提交
6351 6352 6353 6354 6355
                }
                else if (j.m_value.number_integer >= INT32_MIN and j.m_value.number_integer <= INT32_MAX)
                {
                    // int 32
                    v.push_back(0xd2);
6356
                    add_to_vector(v, 4, j.m_value.number_integer);
N
Niels 已提交
6357 6358 6359 6360 6361
                }
                else if (j.m_value.number_integer >= INT64_MIN and j.m_value.number_integer <= INT64_MAX)
                {
                    // int 64
                    v.push_back(0xd3);
6362
                    add_to_vector(v, 8, j.m_value.number_integer);
N
Niels 已提交
6363 6364 6365 6366 6367 6368 6369 6370 6371
                }
                break;
            }

            case value_t::number_unsigned:
            {
                if (j.m_value.number_unsigned < 128)
                {
                    // positive fixnum
6372
                    add_to_vector(v, 1, j.m_value.number_unsigned);
N
Niels 已提交
6373 6374 6375 6376 6377
                }
                else if (j.m_value.number_unsigned <= UINT8_MAX)
                {
                    // uint 8
                    v.push_back(0xcc);
6378
                    add_to_vector(v, 1, j.m_value.number_unsigned);
N
Niels 已提交
6379 6380 6381 6382 6383
                }
                else if (j.m_value.number_unsigned <= UINT16_MAX)
                {
                    // uint 16
                    v.push_back(0xcd);
6384
                    add_to_vector(v, 2, j.m_value.number_unsigned);
N
Niels 已提交
6385 6386 6387 6388 6389
                }
                else if (j.m_value.number_unsigned <= UINT32_MAX)
                {
                    // uint 32
                    v.push_back(0xce);
6390
                    add_to_vector(v, 4, j.m_value.number_unsigned);
N
Niels 已提交
6391 6392 6393 6394 6395
                }
                else if (j.m_value.number_unsigned <= UINT64_MAX)
                {
                    // uint 64
                    v.push_back(0xcf);
6396
                    add_to_vector(v, 8, j.m_value.number_unsigned);
N
Niels 已提交
6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424
                }
                break;
            }

            case value_t::number_float:
            {
                // float 64
                v.push_back(0xcb);
                const uint8_t* helper = reinterpret_cast<const uint8_t*>(&(j.m_value.number_float));
                for (size_t i = 0; i < 8; ++i)
                {
                    v.push_back(helper[7 - i]);
                }
                break;
            }

            case value_t::string:
            {
                const auto N = j.m_value.string->size();
                if (N <= 31)
                {
                    // fixstr
                    v.push_back(static_cast<uint8_t>(0xa0 | N));
                }
                else if (N <= 255)
                {
                    // str 8
                    v.push_back(0xd9);
6425
                    add_to_vector(v, 1, N);
N
Niels 已提交
6426 6427 6428 6429 6430
                }
                else if (N <= 65535)
                {
                    // str 16
                    v.push_back(0xda);
6431
                    add_to_vector(v, 2, N);
N
Niels 已提交
6432 6433 6434 6435 6436
                }
                else if (N <= 4294967295)
                {
                    // str 32
                    v.push_back(0xdb);
6437
                    add_to_vector(v, 4, N);
N
Niels 已提交
6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457
                }

                // append string
                std::copy(j.m_value.string->begin(), j.m_value.string->end(),
                          std::back_inserter(v));
                break;
            }

            case value_t::array:
            {
                const auto N = j.m_value.array->size();
                if (N <= 15)
                {
                    // fixarray
                    v.push_back(static_cast<uint8_t>(0x90 | N));
                }
                else if (N <= 0xffff)
                {
                    // array 16
                    v.push_back(0xdc);
6458
                    add_to_vector(v, 2, N);
N
Niels 已提交
6459 6460 6461 6462 6463
                }
                else if (N <= 0xffffffff)
                {
                    // array 32
                    v.push_back(0xdd);
6464
                    add_to_vector(v, 4, N);
N
Niels 已提交
6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486
                }

                // append each element
                for (const auto& el : *j.m_value.array)
                {
                    to_msgpack_internal(el, v);
                }
                break;
            }

            case value_t::object:
            {
                const auto N = j.m_value.object->size();
                if (N <= 15)
                {
                    // fixmap
                    v.push_back(static_cast<uint8_t>(0x80 | (N & 0xf)));
                }
                else if (N <= 65535)
                {
                    // map 16
                    v.push_back(0xde);
6487
                    add_to_vector(v, 2, N);
N
Niels 已提交
6488 6489 6490 6491 6492
                }
                else if (N <= 4294967295)
                {
                    // map 32
                    v.push_back(0xdf);
6493
                    add_to_vector(v, 4, N);
N
Niels 已提交
6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511
                }

                // append each element
                for (const auto& el : *j.m_value.object)
                {
                    to_msgpack_internal(el.first, v);
                    to_msgpack_internal(el.second, v);
                }
                break;
            }

            default:
            {
                break;
            }
        }
    }

N
Niels Lohmann 已提交
6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534
    static void to_cbor_internal(const basic_json& j, std::vector<uint8_t>& v)
    {
        switch (j.type())
        {
            case value_t::null:
            {
                v.push_back(0xf6);
                break;
            }

            case value_t::boolean:
            {
                v.push_back(j.m_value.boolean ? 0xf5 : 0xf4);
                break;
            }

            case value_t::number_integer:
            {
                if (j.m_value.number_integer >= 0)
                {
                    // CBOR does not differentiate between positive signed
                    // integers and unsigned integers. Therefore, we used the
                    // code from the value_t::number_unsigned case here.
6535
                    if (j.m_value.number_integer <= 0x17)
N
Niels Lohmann 已提交
6536
                    {
6537
                        add_to_vector(v, 1, j.m_value.number_integer);
N
Niels Lohmann 已提交
6538 6539 6540 6541 6542
                    }
                    else if (j.m_value.number_integer <= UINT8_MAX)
                    {
                        v.push_back(0x18);
                        // one-byte uint8_t
6543
                        add_to_vector(v, 1, j.m_value.number_integer);
N
Niels Lohmann 已提交
6544 6545 6546 6547 6548
                    }
                    else if (j.m_value.number_integer <= UINT16_MAX)
                    {
                        v.push_back(0x19);
                        // two-byte uint16_t
6549
                        add_to_vector(v, 2, j.m_value.number_integer);
N
Niels Lohmann 已提交
6550 6551 6552 6553 6554
                    }
                    else if (j.m_value.number_integer <= UINT32_MAX)
                    {
                        v.push_back(0x1a);
                        // four-byte uint32_t
6555
                        add_to_vector(v, 4, j.m_value.number_integer);
N
Niels Lohmann 已提交
6556 6557 6558
                    }
                    else if (j.m_value.number_integer <= UINT64_MAX)
                    {
N
Niels Lohmann 已提交
6559
                        v.push_back(0x1b);
N
Niels Lohmann 已提交
6560
                        // eight-byte uint64_t
6561
                        add_to_vector(v, 8, j.m_value.number_integer);
N
Niels Lohmann 已提交
6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576
                    }
                }
                else
                {
                    // The conversions below encode the sign in the first byte,
                    // and the value is converted to a positive number.
                    const auto positive_number = -1 - j.m_value.number_integer;
                    if (j.m_value.number_integer <= -1 and j.m_value.number_integer >= -24)
                    {
                        v.push_back(static_cast<uint8_t>(0x20 + positive_number));
                    }
                    else if (positive_number <= UINT8_MAX)
                    {
                        // int 8
                        v.push_back(0x38);
6577
                        add_to_vector(v, 1, positive_number);
N
Niels Lohmann 已提交
6578 6579 6580 6581 6582
                    }
                    else if (positive_number <= UINT16_MAX)
                    {
                        // int 16
                        v.push_back(0x39);
6583
                        add_to_vector(v, 2, positive_number);
N
Niels Lohmann 已提交
6584 6585 6586 6587 6588
                    }
                    else if (positive_number <= UINT32_MAX)
                    {
                        // int 32
                        v.push_back(0x3a);
6589
                        add_to_vector(v, 4, positive_number);
N
Niels Lohmann 已提交
6590 6591 6592 6593 6594
                    }
                    else if (positive_number <= UINT64_MAX)
                    {
                        // int 64
                        v.push_back(0x3b);
6595
                        add_to_vector(v, 8, positive_number);
N
Niels Lohmann 已提交
6596 6597
                    }
                }
6598
                break;
N
Niels Lohmann 已提交
6599 6600 6601 6602
            }

            case value_t::number_unsigned:
            {
6603
                if (j.m_value.number_unsigned <= 0x17)
N
Niels Lohmann 已提交
6604 6605 6606 6607 6608 6609 6610
                {
                    v.push_back(static_cast<uint8_t>(j.m_value.number_unsigned));
                }
                else if (j.m_value.number_unsigned <= 0xff)
                {
                    v.push_back(0x18);
                    // one-byte uint8_t
6611
                    add_to_vector(v, 1, j.m_value.number_unsigned);
N
Niels Lohmann 已提交
6612 6613 6614 6615 6616
                }
                else if (j.m_value.number_unsigned <= 0xffff)
                {
                    v.push_back(0x19);
                    // two-byte uint16_t
6617
                    add_to_vector(v, 2, j.m_value.number_unsigned);
N
Niels Lohmann 已提交
6618 6619 6620 6621 6622
                }
                else if (j.m_value.number_unsigned <= 0xffffffff)
                {
                    v.push_back(0x1a);
                    // four-byte uint32_t
6623
                    add_to_vector(v, 4, j.m_value.number_unsigned);
N
Niels Lohmann 已提交
6624 6625 6626
                }
                else if (j.m_value.number_unsigned <= 0xffffffffffffffff)
                {
N
Niels Lohmann 已提交
6627
                    v.push_back(0x1b);
N
Niels Lohmann 已提交
6628
                    // eight-byte uint64_t
6629
                    add_to_vector(v, 8, j.m_value.number_unsigned);
N
Niels Lohmann 已提交
6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656
                }
                break;
            }

            case value_t::number_float:
            {
                // Double-Precision Float
                v.push_back(0xfb);
                const uint8_t* helper = reinterpret_cast<const uint8_t*>(&(j.m_value.number_float));
                for (size_t i = 0; i < 8; ++i)
                {
                    v.push_back(helper[7 - i]);
                }
                break;
            }

            case value_t::string:
            {
                const auto N = j.m_value.string->size();
                if (N <= 0x17)
                {
                    v.push_back(0x60 + N);
                }
                else if (N <= 0xff)
                {
                    v.push_back(0x78);
                    // one-byte uint8_t for N
6657
                    add_to_vector(v, 1, N);
N
Niels Lohmann 已提交
6658 6659 6660 6661 6662
                }
                else if (N <= 0xffff)
                {
                    v.push_back(0x79);
                    // two-byte uint16_t for N
6663
                    add_to_vector(v, 2, N);
N
Niels Lohmann 已提交
6664 6665 6666 6667 6668
                }
                else if (N <= 0xffffffff)
                {
                    v.push_back(0x7a);
                    // four-byte uint32_t for N
6669
                    add_to_vector(v, 4, N);
N
Niels Lohmann 已提交
6670 6671 6672 6673 6674
                }
                else if (N <= 0xffffffffffffffff)
                {
                    v.push_back(0x7b);
                    // eight-byte uint64_t for N
6675
                    add_to_vector(v, 8, N);
N
Niels Lohmann 已提交
6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695
                }

                // append string
                std::copy(j.m_value.string->begin(), j.m_value.string->end(),
                          std::back_inserter(v));
                break;
            }

            case value_t::array:
            {
                const auto N = j.m_value.array->size();
                if (N <= 0x17)
                {
                    // 1 byte for array + size
                    v.push_back(0x80 + N);
                }
                else if (N <= 0xff)
                {
                    v.push_back(0x98);
                    // one-byte uint8_t for N
6696
                    add_to_vector(v, 1, N);
N
Niels Lohmann 已提交
6697 6698 6699 6700 6701
                }
                else if (N <= 0xffff)
                {
                    v.push_back(0x99);
                    // two-byte uint16_t for N
6702
                    add_to_vector(v, 2, N);
N
Niels Lohmann 已提交
6703 6704 6705 6706 6707
                }
                else if (N <= 0xffffffff)
                {
                    v.push_back(0x9a);
                    // four-byte uint32_t for N
6708
                    add_to_vector(v, 4, N);
N
Niels Lohmann 已提交
6709 6710 6711 6712 6713
                }
                else if (N <= 0xffffffffffffffff)
                {
                    v.push_back(0x9b);
                    // eight-byte uint64_t for N
6714
                    add_to_vector(v, 8, N);
N
Niels Lohmann 已提交
6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729
                }

                // append each element
                for (const auto& el : *j.m_value.array)
                {
                    to_cbor_internal(el, v);
                }
                break;
            }

            case value_t::object:
            {
                const auto N = j.m_value.object->size();
                if (N <= 0x17)
                {
6730
                    // 1 byte for object + size
N
Niels Lohmann 已提交
6731 6732 6733 6734 6735 6736
                    v.push_back(0xa0 + N);
                }
                else if (N <= 0xff)
                {
                    v.push_back(0xb8);
                    // one-byte uint8_t for N
6737
                    add_to_vector(v, 1, N);
N
Niels Lohmann 已提交
6738 6739 6740 6741 6742
                }
                else if (N <= 0xffff)
                {
                    v.push_back(0xb9);
                    // two-byte uint16_t for N
6743
                    add_to_vector(v, 2, N);
N
Niels Lohmann 已提交
6744 6745 6746 6747 6748
                }
                else if (N <= 0xffffffff)
                {
                    v.push_back(0xba);
                    // four-byte uint32_t for N
6749
                    add_to_vector(v, 4, N);
N
Niels Lohmann 已提交
6750 6751 6752 6753 6754
                }
                else if (N <= 0xffffffffffffffff)
                {
                    v.push_back(0xbb);
                    // eight-byte uint64_t for N
6755
                    add_to_vector(v, 8, N);
N
Niels Lohmann 已提交
6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773
                }

                // append each element
                for (const auto& el : *j.m_value.object)
                {
                    to_cbor_internal(el.first, v);
                    to_cbor_internal(el.second, v);
                }
                break;
            }

            default:
            {
                break;
            }
        }
    }

N
Niels 已提交
6774 6775 6776 6777 6778 6779 6780 6781 6782
    /*!
    @param[in] v  MessagePack serialization
    @param[in] idx  byte index to start reading from @a v
    */
    static basic_json from_msgpack_internal(const std::vector<uint8_t>& v, size_t& idx)
    {
        // store and increment index
        const size_t current_idx = idx++;

N
Niels Lohmann 已提交
6783
        if (v[current_idx] <= 0xbf)
N
Niels 已提交
6784
        {
N
Niels Lohmann 已提交
6785
            if (v[current_idx] <= 0x7f) // positive fixint
N
Niels 已提交
6786
            {
N
Niels Lohmann 已提交
6787
                return v[current_idx];
N
Niels 已提交
6788
            }
N
Niels Lohmann 已提交
6789
            else if (v[current_idx] <= 0x8f) // fixmap
N
Niels 已提交
6790
            {
N
Niels Lohmann 已提交
6791 6792 6793 6794 6795 6796 6797 6798
                basic_json result = value_t::object;
                const size_t len = v[current_idx] & 0x0f;
                for (size_t i = 0; i < len; ++i)
                {
                    std::string key = from_msgpack_internal(v, idx);
                    result[key] = from_msgpack_internal(v, idx);
                }
                return result;
N
Niels 已提交
6799
            }
N
Niels Lohmann 已提交
6800
            else if (v[current_idx] <= 0x9f) // fixarray
N
Niels 已提交
6801
            {
N
Niels Lohmann 已提交
6802 6803 6804 6805 6806 6807 6808
                basic_json result = value_t::array;
                const size_t len = v[current_idx] & 0x0f;
                for (size_t i = 0; i < len; ++i)
                {
                    result.push_back(from_msgpack_internal(v, idx));
                }
                return result;
N
Niels 已提交
6809
            }
N
Niels Lohmann 已提交
6810
            else // fixstr
N
Niels 已提交
6811
            {
N
Niels Lohmann 已提交
6812 6813 6814 6815
                const size_t len = v[current_idx] & 0x1f;
                const size_t offset = current_idx + 1;
                idx += len; // skip content bytes
                return std::string(reinterpret_cast<const char*>(v.data()) + offset, len);
N
Niels 已提交
6816 6817
            }
        }
N
Niels Lohmann 已提交
6818
        else if (v[current_idx] >= 0xe0) // negative fixint
N
Niels 已提交
6819
        {
N
Niels Lohmann 已提交
6820
            return static_cast<int8_t>(v[current_idx]);
N
Niels 已提交
6821
        }
N
Niels Lohmann 已提交
6822
        else
N
Niels 已提交
6823
        {
N
Niels Lohmann 已提交
6824
            switch (v[current_idx])
N
Niels 已提交
6825
            {
N
Niels Lohmann 已提交
6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990
                case 0xc0: // nil
                {
                    return value_t::null;
                }

                case 0xc2: // false
                {
                    return false;
                }

                case 0xc3: // true
                {
                    return true;
                }

                case 0xca: // float 32
                {
                    // copy bytes in reverse order into the double variable
                    float res;
                    for (size_t byte = 0; byte < sizeof(float); ++byte)
                    {
                        reinterpret_cast<uint8_t*>(&res)[sizeof(float) - byte - 1] = v[current_idx + 1 + byte];
                    }
                    idx += sizeof(float); // skip content bytes
                    return res;
                }

                case 0xcb: // float 64
                {
                    // copy bytes in reverse order into the double variable
                    double res;
                    for (size_t byte = 0; byte < sizeof(double); ++byte)
                    {
                        reinterpret_cast<uint8_t*>(&res)[sizeof(double) - byte - 1] = v[current_idx + 1 + byte];
                    }
                    idx += sizeof(double); // skip content bytes
                    return res;
                }

                case 0xcc: // uint 8
                {
                    idx += 1; // skip content byte
                    return get_from_vector<uint8_t>(v, current_idx);
                }

                case 0xcd: // uint 16
                {
                    idx += 2; // skip 2 content bytes
                    return get_from_vector<uint16_t>(v, current_idx);
                }

                case 0xce: // uint 32
                {
                    idx += 4; // skip 4 content bytes
                    return get_from_vector<uint32_t>(v, current_idx);
                }

                case 0xcf: // uint 64
                {
                    idx += 8; // skip 8 content bytes
                    return get_from_vector<uint64_t>(v, current_idx);
                }

                case 0xd0: // int 8
                {
                    idx += 1; // skip content byte
                    return get_from_vector<int8_t>(v, current_idx);
                }

                case 0xd1: // int 16
                {
                    idx += 2; // skip 2 content bytes
                    return get_from_vector<int16_t>(v, current_idx);
                }

                case 0xd2: // int 32
                {
                    idx += 4; // skip 4 content bytes
                    return get_from_vector<int32_t>(v, current_idx);
                }

                case 0xd3: // int 64
                {
                    idx += 8; // skip 8 content bytes
                    return get_from_vector<int64_t>(v, current_idx);
                }

                case 0xd9: // str 8
                {
                    const auto len = get_from_vector<uint8_t>(v, current_idx);
                    const size_t offset = current_idx + 2;
                    idx += len + 1; // skip size byte + content bytes
                    return std::string(reinterpret_cast<const char*>(v.data()) + offset, len);
                }

                case 0xda: // str 16
                {
                    const auto len = get_from_vector<uint16_t>(v, current_idx);
                    const size_t offset = current_idx + 3;
                    idx += len + 2; // skip 2 size bytes + content bytes
                    return std::string(reinterpret_cast<const char*>(v.data()) + offset, len);
                }

                case 0xdb: // str 32
                {
                    const auto len = get_from_vector<uint32_t>(v, current_idx);
                    const size_t offset = current_idx + 5;
                    idx += len + 4; // skip 4 size bytes + content bytes
                    return std::string(reinterpret_cast<const char*>(v.data()) + offset, len);
                }

                case 0xdc: // array 16
                {
                    basic_json result = value_t::array;
                    const auto len = get_from_vector<uint16_t>(v, current_idx);
                    idx += 2; // skip 2 size bytes
                    for (size_t i = 0; i < len; ++i)
                    {
                        result.push_back(from_msgpack_internal(v, idx));
                    }
                    return result;
                }

                case 0xdd: // array 32
                {
                    basic_json result = value_t::array;
                    const auto len = get_from_vector<uint32_t>(v, current_idx);
                    idx += 4; // skip 4 size bytes
                    for (size_t i = 0; i < len; ++i)
                    {
                        result.push_back(from_msgpack_internal(v, idx));
                    }
                    return result;
                }

                case 0xde: // map 16
                {
                    basic_json result = value_t::object;
                    const auto len = get_from_vector<uint16_t>(v, current_idx);
                    idx += 2; // skip 2 size bytes
                    for (size_t i = 0; i < len; ++i)
                    {
                        std::string key = from_msgpack_internal(v, idx);
                        result[key] = from_msgpack_internal(v, idx);
                    }
                    return result;
                }

                case 0xdf: // map 32
                {
                    basic_json result = value_t::object;
                    const auto len = get_from_vector<uint32_t>(v, current_idx);
                    idx += 4; // skip 4 size bytes
                    for (size_t i = 0; i < len; ++i)
                    {
                        std::string key = from_msgpack_internal(v, idx);
                        result[key] = from_msgpack_internal(v, idx);
                    }
                    return result;
                }

                default:
                {
                    throw std::invalid_argument("error parsing a msgpack @ " + std::to_string(current_idx));
                }
N
Niels 已提交
6991 6992 6993 6994
            }
        }
    }

N
Niels Lohmann 已提交
6995 6996 6997 6998 6999
    static basic_json from_cbor_internal(const std::vector<uint8_t>& v, size_t& idx)
    {
        // store and increment index
        const size_t current_idx = idx++;

7000 7001
        switch (v[current_idx])
        {
N
Niels Lohmann 已提交
7002
            // Integer 0x00..0x17 (0..23)
7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026
            case 0x00:
            case 0x01:
            case 0x02:
            case 0x03:
            case 0x04:
            case 0x05:
            case 0x06:
            case 0x07:
            case 0x08:
            case 0x09:
            case 0x0a:
            case 0x0b:
            case 0x0c:
            case 0x0d:
            case 0x0e:
            case 0x0f:
            case 0x10:
            case 0x11:
            case 0x12:
            case 0x13:
            case 0x14:
            case 0x15:
            case 0x16:
            case 0x17:
7027
            {
7028
                return v[current_idx];
7029
            }
7030

N
Niels Lohmann 已提交
7031
            case 0x18: // Unsigned integer (one-byte uint8_t follows)
N
Niels Lohmann 已提交
7032
            {
7033 7034
                idx += 1; // skip content byte
                return get_from_vector<uint8_t>(v, current_idx);
N
Niels Lohmann 已提交
7035
            }
7036

N
Niels Lohmann 已提交
7037
            case 0x19: // Unsigned integer (two-byte uint16_t follows)
N
Niels Lohmann 已提交
7038
            {
7039 7040
                idx += 2; // skip 2 content bytes
                return get_from_vector<uint16_t>(v, current_idx);
N
Niels Lohmann 已提交
7041
            }
7042

N
Niels Lohmann 已提交
7043
            case 0x1a: // Unsigned integer (four-byte uint32_t follows)
N
Niels Lohmann 已提交
7044
            {
7045 7046
                idx += 4; // skip 4 content bytes
                return get_from_vector<uint32_t>(v, current_idx);
N
Niels Lohmann 已提交
7047
            }
7048

N
Niels Lohmann 已提交
7049
            case 0x1b: // Unsigned integer (eight-byte uint64_t follows)
N
Niels Lohmann 已提交
7050
            {
7051 7052
                idx += 8; // skip 8 content bytes
                return get_from_vector<uint64_t>(v, current_idx);
N
Niels Lohmann 已提交
7053
            }
7054

N
Niels Lohmann 已提交
7055
            // Negative integer -1-0x00..-1-0x17 (-1..-24)
7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079
            case 0x20:
            case 0x21:
            case 0x22:
            case 0x23:
            case 0x24:
            case 0x25:
            case 0x26:
            case 0x27:
            case 0x28:
            case 0x29:
            case 0x2a:
            case 0x2b:
            case 0x2c:
            case 0x2d:
            case 0x2e:
            case 0x2f:
            case 0x30:
            case 0x31:
            case 0x32:
            case 0x33:
            case 0x34:
            case 0x35:
            case 0x36:
            case 0x37:
N
Niels Lohmann 已提交
7080
            {
7081
                return static_cast<int8_t>(0x20 - 1 - v[current_idx]);
N
Niels Lohmann 已提交
7082
            }
7083

N
Niels Lohmann 已提交
7084
            case 0x38: // Negative integer (one-byte uint8_t follows)
7085
            {
7086 7087 7088
                idx += 1; // skip content byte
                // must be uint8_t !
                return -1 - get_from_vector<uint8_t>(v, current_idx);
7089
            }
7090

N
Niels Lohmann 已提交
7091
            case 0x39: // Negative integer -1-n (two-byte uint16_t follows)
N
Niels Lohmann 已提交
7092
            {
7093 7094
                idx += 2; // skip 2 content bytes
                return -1 - get_from_vector<int16_t>(v, current_idx);
N
Niels Lohmann 已提交
7095
            }
7096

N
Niels Lohmann 已提交
7097
            case 0x3a: // Negative integer -1-n (four-byte uint32_t follows)
N
Niels Lohmann 已提交
7098
            {
7099 7100
                idx += 4; // skip 4 content bytes
                return -1 - get_from_vector<int32_t>(v, current_idx);
N
Niels Lohmann 已提交
7101
            }
7102

N
Niels Lohmann 已提交
7103
            case 0x3b: // Negative integer -1-n (eight-byte uint64_t follows)
N
Niels Lohmann 已提交
7104
            {
7105 7106
                idx += 8; // skip 8 content bytes
                return -1 - get_from_vector<int64_t>(v, current_idx);
N
Niels Lohmann 已提交
7107
            }
7108

N
Niels Lohmann 已提交
7109
            // UTF-8 string (0x00..0x17 bytes follow)
7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133
            case 0x60:
            case 0x61:
            case 0x62:
            case 0x63:
            case 0x64:
            case 0x65:
            case 0x66:
            case 0x67:
            case 0x68:
            case 0x69:
            case 0x6a:
            case 0x6b:
            case 0x6c:
            case 0x6d:
            case 0x6e:
            case 0x6f:
            case 0x70:
            case 0x71:
            case 0x72:
            case 0x73:
            case 0x74:
            case 0x75:
            case 0x76:
            case 0x77:
N
Niels Lohmann 已提交
7134
            {
7135 7136 7137 7138
                const size_t len = v[current_idx] - 0x60;
                const size_t offset = current_idx + 1;
                idx += len; // skip content bytes
                return std::string(reinterpret_cast<const char*>(v.data()) + offset, len);
N
Niels Lohmann 已提交
7139
            }
7140

N
Niels Lohmann 已提交
7141
            case 0x78: // UTF-8 string (one-byte uint8_t for n follows)
N
Niels Lohmann 已提交
7142
            {
7143 7144 7145 7146
                const auto len = get_from_vector<uint8_t>(v, current_idx);
                const size_t offset = current_idx + 2;
                idx += len + 1; // skip size byte + content bytes
                return std::string(reinterpret_cast<const char*>(v.data()) + offset, len);
N
Niels Lohmann 已提交
7147
            }
7148

N
Niels Lohmann 已提交
7149
            case 0x79: // UTF-8 string (two-byte uint16_t for n follow)
7150
            {
7151 7152 7153 7154
                const auto len = get_from_vector<uint16_t>(v, current_idx);
                const size_t offset = current_idx + 3;
                idx += len + 2; // skip 2 size bytes + content bytes
                return std::string(reinterpret_cast<const char*>(v.data()) + offset, len);
7155
            }
7156

N
Niels Lohmann 已提交
7157
            case 0x7a: // UTF-8 string (four-byte uint32_t for n follow)
7158
            {
7159 7160 7161 7162
                const auto len = get_from_vector<uint32_t>(v, current_idx);
                const size_t offset = current_idx + 5;
                idx += len + 4; // skip 4 size bytes + content bytes
                return std::string(reinterpret_cast<const char*>(v.data()) + offset, len);
7163
            }
7164

N
Niels Lohmann 已提交
7165
            case 0x7b: // UTF-8 string (eight-byte uint64_t for n follow)
7166
            {
7167 7168 7169 7170
                const auto len = get_from_vector<uint64_t>(v, current_idx);
                const size_t offset = current_idx + 9;
                idx += len + 8; // skip 8 size bytes + content bytes
                return std::string(reinterpret_cast<const char*>(v.data()) + offset, len);
7171
            }
7172 7173

            case 0x7f: // UTF-8 string (indefinite length)
7174
            {
7175 7176 7177 7178 7179 7180 7181 7182 7183
                std::string result;
                while (v[idx] != 0xff)
                {
                    string_t s = from_cbor_internal(v, idx);
                    result += s;
                }
                // skip break byte (0xFF)
                idx += 1;
                return result;
7184
            }
7185

N
Niels Lohmann 已提交
7186
            // array (0x00..0x17 data items follow)
7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210
            case 0x80:
            case 0x81:
            case 0x82:
            case 0x83:
            case 0x84:
            case 0x85:
            case 0x86:
            case 0x87:
            case 0x88:
            case 0x89:
            case 0x8a:
            case 0x8b:
            case 0x8c:
            case 0x8d:
            case 0x8e:
            case 0x8f:
            case 0x90:
            case 0x91:
            case 0x92:
            case 0x93:
            case 0x94:
            case 0x95:
            case 0x96:
            case 0x97:
N
Niels Lohmann 已提交
7211
            {
7212 7213 7214 7215 7216 7217 7218
                basic_json result = value_t::array;
                const size_t len = v[current_idx] - 0x80;
                for (size_t i = 0; i < len; ++i)
                {
                    result.push_back(from_cbor_internal(v, idx));
                }
                return result;
N
Niels Lohmann 已提交
7219
            }
7220

N
Niels Lohmann 已提交
7221
            case 0x98: // array (one-byte uint8_t for n follows)
N
Niels Lohmann 已提交
7222
            {
7223 7224 7225 7226 7227 7228 7229 7230
                basic_json result = value_t::array;
                const auto len = get_from_vector<uint8_t>(v, current_idx);
                idx += 1; // skip 1 size byte
                for (size_t i = 0; i < len; ++i)
                {
                    result.push_back(from_cbor_internal(v, idx));
                }
                return result;
N
Niels Lohmann 已提交
7231 7232
            }

N
Niels Lohmann 已提交
7233
            case 0x99: // array (two-byte uint16_t for n follow)
7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244
            {
                basic_json result = value_t::array;
                const auto len = get_from_vector<uint16_t>(v, current_idx);
                idx += 2; // skip 4 size bytes
                for (size_t i = 0; i < len; ++i)
                {
                    result.push_back(from_cbor_internal(v, idx));
                }
                return result;
            }

N
Niels Lohmann 已提交
7245
            case 0x9a: // array (four-byte uint32_t for n follow)
7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256
            {
                basic_json result = value_t::array;
                const auto len = get_from_vector<uint32_t>(v, current_idx);
                idx += 4; // skip 4 size bytes
                for (size_t i = 0; i < len; ++i)
                {
                    result.push_back(from_cbor_internal(v, idx));
                }
                return result;
            }

N
Niels Lohmann 已提交
7257
            case 0x9b: // array (eight-byte uint64_t for n follow)
7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280
            {
                basic_json result = value_t::array;
                const auto len = get_from_vector<uint64_t>(v, current_idx);
                idx += 8; // skip 8 size bytes
                for (size_t i = 0; i < len; ++i)
                {
                    result.push_back(from_cbor_internal(v, idx));
                }
                return result;
            }

            case 0x9f: // array (indefinite length)
            {
                basic_json result = value_t::array;
                while (v[idx] != 0xff)
                {
                    result.push_back(from_cbor_internal(v, idx));
                }
                // skip break byte (0xFF)
                idx += 1;
                return result;
            }

N
Niels Lohmann 已提交
7281
            // map (0x00..0x17 pairs of data items follow)
7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316
            case 0xa0:
            case 0xa1:
            case 0xa2:
            case 0xa3:
            case 0xa4:
            case 0xa5:
            case 0xa6:
            case 0xa7:
            case 0xa8:
            case 0xa9:
            case 0xaa:
            case 0xab:
            case 0xac:
            case 0xad:
            case 0xae:
            case 0xaf:
            case 0xb0:
            case 0xb1:
            case 0xb2:
            case 0xb3:
            case 0xb4:
            case 0xb5:
            case 0xb6:
            case 0xb7:
            {
                basic_json result = value_t::object;
                const size_t len = v[current_idx] - 0xa0;
                for (size_t i = 0; i < len; ++i)
                {
                    std::string key = from_cbor_internal(v, idx);
                    result[key] = from_cbor_internal(v, idx);
                }
                return result;
            }

N
Niels Lohmann 已提交
7317
            case 0xb8: // map (one-byte uint8_t for n follows)
7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329
            {
                basic_json result = value_t::object;
                const auto len = get_from_vector<uint8_t>(v, current_idx);
                idx += 1; // skip 1 size byte
                for (size_t i = 0; i < len; ++i)
                {
                    std::string key = from_cbor_internal(v, idx);
                    result[key] = from_cbor_internal(v, idx);
                }
                return result;
            }

N
Niels Lohmann 已提交
7330
            case 0xb9: // map (two-byte uint16_t for n follow)
7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342
            {
                basic_json result = value_t::object;
                const auto len = get_from_vector<uint16_t>(v, current_idx);
                idx += 2; // skip 2 size bytes
                for (size_t i = 0; i < len; ++i)
                {
                    std::string key = from_cbor_internal(v, idx);
                    result[key] = from_cbor_internal(v, idx);
                }
                return result;
            }

N
Niels Lohmann 已提交
7343
            case 0xba: // map (four-byte uint32_t for n follow)
7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355
            {
                basic_json result = value_t::object;
                const auto len = get_from_vector<uint32_t>(v, current_idx);
                idx += 4; // skip 4 size bytes
                for (size_t i = 0; i < len; ++i)
                {
                    std::string key = from_cbor_internal(v, idx);
                    result[key] = from_cbor_internal(v, idx);
                }
                return result;
            }

N
Niels Lohmann 已提交
7356
            case 0xbb: // map (eight-byte uint64_t for n follow)
7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396
            {
                basic_json result = value_t::object;
                const auto len = get_from_vector<uint64_t>(v, current_idx);
                idx += 8; // skip 8 size bytes
                for (size_t i = 0; i < len; ++i)
                {
                    std::string key = from_cbor_internal(v, idx);
                    result[key] = from_cbor_internal(v, idx);
                }
                return result;
            }

            case 0xbf: // map (indefinite length)
            {
                basic_json result = value_t::object;
                while (v[idx] != 0xff)
                {
                    std::string key = from_cbor_internal(v, idx);
                    result[key] = from_cbor_internal(v, idx);
                }
                // skip break byte (0xFF)
                idx += 1;
                return result;
            }

            case 0xf4: // false
            {
                return false;
            }

            case 0xf5: // true
            {
                return true;
            }

            case 0xf6: // null
            {
                return value_t::null;
            }

N
Niels Lohmann 已提交
7397
            case 0xf9: // Half-Precision Float (two-byte IEEE 754)
7398 7399 7400 7401
            {
                idx += 2; // skip two content bytes

                // code from RFC 7049, Appendix D, Figure 3:
N
Niels Lohmann 已提交
7402 7403 7404 7405 7406 7407
                // As half-precision floating-point numbers were only added to
                // IEEE 754 in 2008, today's programming platforms often still
                // only have limited support for them. It is very easy to
                // include at least decoding support for them even without such
                // support. An example of a small decoder for half-precision
                // floating-point numbers in the C language is shown in Fig. 3.
7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426
                const int half = (v[current_idx + 1] << 8) + v[current_idx + 2];
                const int exp = (half >> 10) & 0x1f;
                const int mant = half & 0x3ff;
                double val;
                if (exp == 0)
                {
                    val = std::ldexp(mant, -24);
                }
                else if (exp != 31)
                {
                    val = std::ldexp(mant + 1024, exp - 25);
                }
                else
                {
                    val = mant == 0 ? INFINITY : NAN;
                }
                return half & 0x8000 ? -val : val;
            }

N
Niels Lohmann 已提交
7427
            case 0xfa: // Single-Precision Float (four-byte IEEE 754)
7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438
            {
                // copy bytes in reverse order into the float variable
                float res;
                for (size_t byte = 0; byte < sizeof(float); ++byte)
                {
                    reinterpret_cast<uint8_t*>(&res)[sizeof(float) - byte - 1] = v[current_idx + 1 + byte];
                }
                idx += sizeof(float); // skip content bytes
                return res;
            }

N
Niels Lohmann 已提交
7439
            case 0xfb: // Double-Precision Float (eight-byte IEEE 754)
7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450
            {
                // copy bytes in reverse order into the double variable
                double res;
                for (size_t byte = 0; byte < sizeof(double); ++byte)
                {
                    reinterpret_cast<uint8_t*>(&res)[sizeof(double) - byte - 1] = v[current_idx + 1 + byte];
                }
                idx += sizeof(double); // skip content bytes
                return res;
            }

N
Niels Lohmann 已提交
7451
            default: // anything else (0xFF is handled inside the other types)
7452 7453 7454 7455
            {
                throw std::invalid_argument("error parsing a CBOR @ " + std::to_string(current_idx) + ": " + std::to_string(v[current_idx]));
            }
        }
N
Niels Lohmann 已提交
7456 7457
    }

N
Niels 已提交
7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475
  public:
    /*!
    @param[in] j  JSON value to serialize
    @retuen MessagePack serialization as char vector
    */
    static std::vector<uint8_t> to_msgpack(const basic_json& j)
    {
        std::vector<uint8_t> result;
        to_msgpack_internal(j, result);
        return result;
    }

    static basic_json from_msgpack(const std::vector<uint8_t>& v)
    {
        size_t i = 0;
        return from_msgpack_internal(v, i);
    }

N
Niels Lohmann 已提交
7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492
    /*!
    @param[in] j  JSON value to serialize
    @retuen CBOR serialization as char vector
    */
    static std::vector<uint8_t> to_cbor(const basic_json& j)
    {
        std::vector<uint8_t> result;
        to_cbor_internal(j, result);
        return result;
    }

    static basic_json from_cbor(const std::vector<uint8_t>& v)
    {
        size_t i = 0;
        return from_cbor_internal(v, i);
    }

N
Niels 已提交
7493
    /// @}
N
Niels 已提交
7494 7495 7496 7497 7498 7499

  private:
    ///////////////////////////
    // convenience functions //
    ///////////////////////////

N
Niels 已提交
7500 7501 7502 7503 7504 7505
    /*!
    @brief return the type as string

    Returns the type name as string to be used in error messages - usually to
    indicate that a function was called on a wrong JSON type.

N
Niels 已提交
7506
    @return basically a string representation of a the @a m_type member
N
Niels 已提交
7507 7508 7509 7510 7511

    @complexity Constant.

    @since version 1.0.0
    */
N
Niels 已提交
7512
    std::string type_name() const
N
Niels 已提交
7513 7514 7515
    {
        switch (m_type)
        {
7516
            case value_t::null:
N
Niels 已提交
7517
                return "null";
7518
            case value_t::object:
N
Niels 已提交
7519
                return "object";
7520
            case value_t::array:
N
Niels 已提交
7521
                return "array";
7522
            case value_t::string:
N
Niels 已提交
7523
                return "string";
7524
            case value_t::boolean:
N
Niels 已提交
7525
                return "boolean";
7526
            case value_t::discarded:
N
Niels 已提交
7527
                return "discarded";
N
Niels 已提交
7528
            default:
N
Niels 已提交
7529 7530 7531 7532
                return "number";
        }
    }

N
Niels 已提交
7533 7534 7535 7536 7537 7538 7539 7540 7541 7542
    /*!
    @brief calculates the extra space to escape a JSON string

    @param[in] s  the string to escape
    @return the number of characters required to escape string @a s

    @complexity Linear in the length of string @a s.
    */
    static std::size_t extra_space(const string_t& s) noexcept
    {
N
Niels 已提交
7543 7544
        return std::accumulate(s.begin(), s.end(), size_t{},
                               [](size_t res, typename string_t::value_type c)
N
Niels 已提交
7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556
        {
            switch (c)
            {
                case '"':
                case '\\':
                case '\b':
                case '\f':
                case '\n':
                case '\r':
                case '\t':
                {
                    // from c (1 byte) to \x (2 bytes)
N
Niels 已提交
7557
                    return res + 1;
N
Niels 已提交
7558 7559 7560 7561 7562 7563 7564
                }

                default:
                {
                    if (c >= 0x00 and c <= 0x1f)
                    {
                        // from c (1 byte) to \uxxxx (6 bytes)
N
Niels 已提交
7565 7566 7567 7568 7569
                        return res + 5;
                    }
                    else
                    {
                        return res;
N
Niels 已提交
7570 7571 7572
                    }
                }
            }
N
Niels 已提交
7573
        });
N
Niels 已提交
7574 7575
    }

N
Niels 已提交
7576 7577
    /*!
    @brief escape a string
N
Niels 已提交
7578

N
Niels 已提交
7579 7580
    Escape a string by replacing certain special characters by a sequence of
    an escape character (backslash) and another character and other control
N
Niels 已提交
7581 7582 7583
    characters by a sequence of "\u" followed by a four-digit hex
    representation.

N
Niels 已提交
7584
    @param[in] s  the string to escape
N
Niels 已提交
7585 7586 7587
    @return  the escaped string

    @complexity Linear in the length of string @a s.
N
Niels 已提交
7588
    */
N
Niels 已提交
7589
    static string_t escape_string(const string_t& s)
N
Niels 已提交
7590
    {
N
Niels 已提交
7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601
        const auto space = extra_space(s);
        if (space == 0)
        {
            return s;
        }

        // create a result string of necessary size
        string_t result(s.size() + space, '\\');
        std::size_t pos = 0;

        for (const auto& c : s)
N
Niels 已提交
7602 7603 7604 7605 7606 7607
        {
            switch (c)
            {
                // quotation mark (0x22)
                case '"':
                {
N
Niels 已提交
7608 7609
                    result[pos + 1] = '"';
                    pos += 2;
N
Niels 已提交
7610 7611
                    break;
                }
N
Niels 已提交
7612

N
Niels 已提交
7613 7614 7615
                // reverse solidus (0x5c)
                case '\\':
                {
N
Niels 已提交
7616 7617
                    // nothing to change
                    pos += 2;
N
Niels 已提交
7618 7619
                    break;
                }
N
Niels 已提交
7620

N
Niels 已提交
7621 7622 7623
                // backspace (0x08)
                case '\b':
                {
N
Niels 已提交
7624 7625
                    result[pos + 1] = 'b';
                    pos += 2;
N
Niels 已提交
7626 7627
                    break;
                }
N
Niels 已提交
7628

N
Niels 已提交
7629 7630 7631
                // formfeed (0x0c)
                case '\f':
                {
N
Niels 已提交
7632 7633
                    result[pos + 1] = 'f';
                    pos += 2;
N
Niels 已提交
7634 7635
                    break;
                }
N
Niels 已提交
7636

N
Niels 已提交
7637 7638 7639
                // newline (0x0a)
                case '\n':
                {
N
Niels 已提交
7640 7641
                    result[pos + 1] = 'n';
                    pos += 2;
N
Niels 已提交
7642 7643
                    break;
                }
N
Niels 已提交
7644

N
Niels 已提交
7645 7646 7647
                // carriage return (0x0d)
                case '\r':
                {
N
Niels 已提交
7648 7649
                    result[pos + 1] = 'r';
                    pos += 2;
N
Niels 已提交
7650 7651
                    break;
                }
N
Niels 已提交
7652

N
Niels 已提交
7653 7654 7655
                // horizontal tab (0x09)
                case '\t':
                {
N
Niels 已提交
7656 7657
                    result[pos + 1] = 't';
                    pos += 2;
N
Niels 已提交
7658 7659 7660 7661 7662
                    break;
                }

                default:
                {
7663
                    if (c >= 0x00 and c <= 0x1f)
N
Niels 已提交
7664
                    {
N
Niels 已提交
7665 7666
                        // convert a number 0..15 to its hex representation
                        // (0..f)
N
Niels 已提交
7667
                        static const char hexify[16] =
7668
                        {
N
Niels 已提交
7669 7670
                            '0', '1', '2', '3', '4', '5', '6', '7',
                            '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
7671 7672
                        };

N
Niels 已提交
7673
                        // print character c as \uxxxx
N
Niels 已提交
7674
                        for (const char m :
N
Niels 已提交
7675
                    { 'u', '0', '0', hexify[c >> 4], hexify[c & 0x0f]
N
Niels 已提交
7676
                        })
7677 7678 7679 7680 7681
                        {
                            result[++pos] = m;
                        }

                        ++pos;
N
Niels 已提交
7682 7683 7684 7685
                    }
                    else
                    {
                        // all other characters are added as-is
N
Niels 已提交
7686
                        result[pos++] = c;
N
Niels 已提交
7687 7688 7689 7690 7691
                    }
                    break;
                }
            }
        }
N
Niels 已提交
7692 7693

        return result;
N
Niels 已提交
7694 7695 7696 7697
    }

    /*!
    @brief internal implementation of the serialization function
N
Niels 已提交
7698

N
Niels 已提交
7699
    This function is called by the public member function dump and organizes
N
Niels 已提交
7700
    the serialization internally. The indentation level is propagated as
N
Niels 已提交
7701 7702
    additional parameter. In case of arrays and objects, the function is
    called recursively. Note that
N
Niels 已提交
7703

N
Niels 已提交
7704 7705 7706
    - strings and object keys are escaped using `escape_string()`
    - integer numbers are converted implicitly via `operator<<`
    - floating-point numbers are converted to a string using `"%g"` format
N
Niels 已提交
7707

N
Niels 已提交
7708 7709 7710 7711
    @param[out] o              stream to write to
    @param[in] pretty_print    whether the output shall be pretty-printed
    @param[in] indent_step     the indent level
    @param[in] current_indent  the current indent level (only used internally)
N
Niels 已提交
7712
    */
N
Niels 已提交
7713 7714 7715
    void dump(std::ostream& o,
              const bool pretty_print,
              const unsigned int indent_step,
N
Niels 已提交
7716
              const unsigned int current_indent = 0) const
N
Niels 已提交
7717
    {
N
Niels 已提交
7718
        // variable to hold indentation for recursive calls
N
Niels 已提交
7719
        unsigned int new_indent = current_indent;
N
Niels 已提交
7720

N
Niels 已提交
7721 7722
        switch (m_type)
        {
7723
            case value_t::object:
N
Niels 已提交
7724 7725 7726
            {
                if (m_value.object->empty())
                {
N
Niels 已提交
7727 7728
                    o << "{}";
                    return;
N
Niels 已提交
7729 7730
                }

N
Niels 已提交
7731
                o << "{";
N
Niels 已提交
7732 7733

                // increase indentation
N
Niels 已提交
7734
                if (pretty_print)
N
Niels 已提交
7735
                {
N
Niels 已提交
7736
                    new_indent += indent_step;
N
Niels 已提交
7737
                    o << "\n";
N
Niels 已提交
7738 7739 7740 7741 7742 7743
                }

                for (auto i = m_value.object->cbegin(); i != m_value.object->cend(); ++i)
                {
                    if (i != m_value.object->cbegin())
                    {
N
Niels 已提交
7744
                        o << (pretty_print ? ",\n" : ",");
N
Niels 已提交
7745
                    }
N
Niels 已提交
7746 7747 7748
                    o << string_t(new_indent, ' ') << "\""
                      << escape_string(i->first) << "\":"
                      << (pretty_print ? " " : "");
N
Niels 已提交
7749
                    i->second.dump(o, pretty_print, indent_step, new_indent);
N
Niels 已提交
7750 7751 7752
                }

                // decrease indentation
N
Niels 已提交
7753
                if (pretty_print)
N
Niels 已提交
7754
                {
N
Niels 已提交
7755
                    new_indent -= indent_step;
N
Niels 已提交
7756
                    o << "\n";
N
Niels 已提交
7757 7758
                }

N
Niels 已提交
7759 7760
                o << string_t(new_indent, ' ') + "}";
                return;
N
Niels 已提交
7761 7762
            }

7763
            case value_t::array:
N
Niels 已提交
7764 7765 7766
            {
                if (m_value.array->empty())
                {
N
Niels 已提交
7767 7768
                    o << "[]";
                    return;
N
Niels 已提交
7769 7770
                }

N
Niels 已提交
7771
                o << "[";
N
Niels 已提交
7772 7773

                // increase indentation
N
Niels 已提交
7774
                if (pretty_print)
N
Niels 已提交
7775
                {
N
Niels 已提交
7776
                    new_indent += indent_step;
N
Niels 已提交
7777
                    o << "\n";
N
Niels 已提交
7778 7779 7780 7781 7782 7783
                }

                for (auto i = m_value.array->cbegin(); i != m_value.array->cend(); ++i)
                {
                    if (i != m_value.array->cbegin())
                    {
N
Niels 已提交
7784
                        o << (pretty_print ? ",\n" : ",");
N
Niels 已提交
7785
                    }
N
Niels 已提交
7786
                    o << string_t(new_indent, ' ');
N
Niels 已提交
7787
                    i->dump(o, pretty_print, indent_step, new_indent);
N
Niels 已提交
7788 7789 7790
                }

                // decrease indentation
N
Niels 已提交
7791
                if (pretty_print)
N
Niels 已提交
7792
                {
N
Niels 已提交
7793
                    new_indent -= indent_step;
N
Niels 已提交
7794
                    o << "\n";
N
Niels 已提交
7795 7796
                }

N
Niels 已提交
7797 7798
                o << string_t(new_indent, ' ') << "]";
                return;
N
Niels 已提交
7799 7800
            }

7801
            case value_t::string:
N
Niels 已提交
7802
            {
N
Niels 已提交
7803
                o << string_t("\"") << escape_string(*m_value.string) << "\"";
N
Niels 已提交
7804
                return;
N
Niels 已提交
7805 7806
            }

7807
            case value_t::boolean:
N
Niels 已提交
7808
            {
N
Niels 已提交
7809 7810
                o << (m_value.boolean ? "true" : "false");
                return;
N
Niels 已提交
7811 7812
            }

7813
            case value_t::number_integer:
N
Niels 已提交
7814
            {
N
Niels 已提交
7815 7816
                o << m_value.number_integer;
                return;
N
Niels 已提交
7817 7818
            }

7819 7820 7821 7822 7823 7824
            case value_t::number_unsigned:
            {
                o << m_value.number_unsigned;
                return;
            }

7825
            case value_t::number_float:
N
Niels 已提交
7826
            {
N
Niels 已提交
7827
                if (m_value.number_float == 0)
N
Niels 已提交
7828
                {
N
Niels 已提交
7829 7830
                    // special case for zero to get "0.0"/"-0.0"
                    o << (std::signbit(m_value.number_float) ? "-0.0" : "0.0");
N
Niels 已提交
7831
                }
N
Niels 已提交
7832
                else
N
Niels 已提交
7833
                {
7834
                    o << m_value.number_float;
N
Niels 已提交
7835
                }
N
Niels 已提交
7836
                return;
N
Niels 已提交
7837
            }
N
Niels 已提交
7838

7839
            case value_t::discarded:
N
Niels 已提交
7840
            {
N
Niels 已提交
7841 7842
                o << "<discarded>";
                return;
N
Niels 已提交
7843
            }
N
Niels 已提交
7844

7845
            case value_t::null:
N
Niels 已提交
7846
            {
N
Niels 已提交
7847 7848
                o << "null";
                return;
N
Niels 已提交
7849
            }
N
Niels 已提交
7850 7851 7852 7853 7854 7855 7856 7857 7858
        }
    }

  private:
    //////////////////////
    // member variables //
    //////////////////////

    /// the type of the current element
N
Niels 已提交
7859
    value_t m_type = value_t::null;
N
Niels 已提交
7860 7861 7862 7863

    /// the value of the current element
    json_value m_value = {};

N
Niels 已提交
7864

N
Niels 已提交
7865
  private:
N
Niels 已提交
7866 7867 7868 7869
    ///////////////
    // iterators //
    ///////////////

7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882
    /*!
    @brief an iterator for primitive JSON types

    This class models an iterator for primitive JSON types (boolean, number,
    string). It's only purpose is to allow the iterator/const_iterator classes
    to "iterate" over primitive values. Internally, the iterator is modeled by
    a `difference_type` variable. Value begin_value (`0`) models the begin,
    end_value (`1`) models past the end.
    */
    class primitive_iterator_t
    {
      public:
        /// set iterator to a defined beginning
N
Niels 已提交
7883
        void set_begin() noexcept
7884 7885 7886 7887 7888
        {
            m_it = begin_value;
        }

        /// set iterator to a defined past the end
N
Niels 已提交
7889
        void set_end() noexcept
7890 7891 7892 7893 7894
        {
            m_it = end_value;
        }

        /// return whether the iterator can be dereferenced
N
Niels 已提交
7895
        constexpr bool is_begin() const noexcept
7896 7897 7898 7899 7900
        {
            return (m_it == begin_value);
        }

        /// return whether the iterator is at end
N
Niels 已提交
7901
        constexpr bool is_end() const noexcept
7902 7903 7904 7905 7906
        {
            return (m_it == end_value);
        }

        /// return reference to the value to change and compare
N
Niels 已提交
7907
        operator difference_type& () noexcept
7908 7909 7910 7911 7912
        {
            return m_it;
        }

        /// return value to compare
N
Niels 已提交
7913
        constexpr operator difference_type () const noexcept
7914 7915 7916 7917 7918 7919 7920 7921 7922
        {
            return m_it;
        }

      private:
        static constexpr difference_type begin_value = 0;
        static constexpr difference_type end_value = begin_value + 1;

        /// iterator as signed integer type
N
Niels 已提交
7923
        difference_type m_it = std::numeric_limits<std::ptrdiff_t>::denorm_min();
7924 7925
    };

N
Niels 已提交
7926 7927 7928 7929 7930 7931 7932 7933
    /*!
    @brief an iterator value

    @note This structure could easily be a union, but MSVC currently does not
    allow unions members with complex constructors, see
    https://github.com/nlohmann/json/pull/105.
    */
    struct internal_iterator
N
Niels 已提交
7934 7935
    {
        /// iterator for JSON objects
N
Niels 已提交
7936
        typename object_t::iterator object_iterator;
N
Niels 已提交
7937
        /// iterator for JSON arrays
N
Niels 已提交
7938
        typename array_t::iterator array_iterator;
N
Niels 已提交
7939
        /// generic iterator for all other types
N
Niels 已提交
7940 7941 7942
        primitive_iterator_t primitive_iterator;

        /// create an uninitialized internal_iterator
N
Niels 已提交
7943
        internal_iterator() noexcept
N
Niels 已提交
7944 7945
            : object_iterator(), array_iterator(), primitive_iterator()
        {}
N
Niels 已提交
7946 7947
    };

N
cleanup  
Niels 已提交
7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962
    /// proxy class for the iterator_wrapper functions
    template<typename IteratorType>
    class iteration_proxy
    {
      private:
        /// helper class for iteration
        class iteration_proxy_internal
        {
          private:
            /// the iterator
            IteratorType anchor;
            /// an index for arrays (used to create key names)
            size_t array_index = 0;

          public:
N
Niels 已提交
7963
            explicit iteration_proxy_internal(IteratorType it) noexcept
N
cleanup  
Niels 已提交
7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982
                : anchor(it)
            {}

            /// dereference operator (needed for range-based for)
            iteration_proxy_internal& operator*()
            {
                return *this;
            }

            /// increment operator (needed for range-based for)
            iteration_proxy_internal& operator++()
            {
                ++anchor;
                ++array_index;

                return *this;
            }

            /// inequality operator (needed for range-based for)
N
Niels 已提交
7983
            bool operator!= (const iteration_proxy_internal& o) const
N
cleanup  
Niels 已提交
7984 7985 7986 7987 7988 7989 7990
            {
                return anchor != o.anchor;
            }

            /// return key of the iterator
            typename basic_json::string_t key() const
            {
N
Niels 已提交
7991 7992
                assert(anchor.m_object != nullptr);

N
cleanup  
Niels 已提交
7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026
                switch (anchor.m_object->type())
                {
                    // use integer array index as key
                    case value_t::array:
                    {
                        return std::to_string(array_index);
                    }

                    // use key from the object
                    case value_t::object:
                    {
                        return anchor.key();
                    }

                    // use an empty key for all primitive types
                    default:
                    {
                        return "";
                    }
                }
            }

            /// return value of the iterator
            typename IteratorType::reference value() const
            {
                return anchor.value();
            }
        };

        /// the container to iterate
        typename IteratorType::reference container;

      public:
        /// construct iteration proxy from a container
N
Niels 已提交
8027
        explicit iteration_proxy(typename IteratorType::reference cont)
N
cleanup  
Niels 已提交
8028 8029 8030 8031
            : container(cont)
        {}

        /// return iterator begin (needed for range-based for)
N
Niels 已提交
8032
        iteration_proxy_internal begin() noexcept
N
cleanup  
Niels 已提交
8033 8034 8035 8036 8037
        {
            return iteration_proxy_internal(container.begin());
        }

        /// return iterator end (needed for range-based for)
N
Niels 已提交
8038
        iteration_proxy_internal end() noexcept
N
cleanup  
Niels 已提交
8039 8040 8041 8042 8043
        {
            return iteration_proxy_internal(container.end());
        }
    };

N
Niels 已提交
8044
  public:
N
Niels 已提交
8045 8046 8047 8048 8049 8050
    /*!
    @brief a const random access iterator for the @ref basic_json class

    This class implements a const iterator for the @ref basic_json class. From
    this class, the @ref iterator class is derived.

N
Niels 已提交
8051 8052 8053
    @note An iterator is called *initialized* when a pointer to a JSON value
          has been set (e.g., by a constructor or a copy assignment). If the
          iterator is default-constructed, it is *uninitialized* and most
N
Niels 已提交
8054 8055
          methods are undefined. **The library uses assertions to detect calls
          on uninitialized iterators.**
N
Niels 已提交
8056

N
Niels 已提交
8057 8058 8059 8060
    @requirement The class satisfies the following concept requirements:
    - [RandomAccessIterator](http://en.cppreference.com/w/cpp/concept/RandomAccessIterator):
      The iterator that can be moved to point (forward and backward) to any
      element in constant time.
N
Niels 已提交
8061

N
Niels 已提交
8062
    @since version 1.0.0
N
Niels 已提交
8063
    */
N
Niels 已提交
8064
    class const_iterator : public std::iterator<std::random_access_iterator_tag, const basic_json>
N
Niels 已提交
8065
    {
N
Niels 已提交
8066
        /// allow basic_json to access private members
8067 8068
        friend class basic_json;

N
Niels 已提交
8069 8070
      public:
        /// the type of the values when the iterator is dereferenced
N
Niels 已提交
8071
        using value_type = typename basic_json::value_type;
N
Niels 已提交
8072
        /// a type to represent differences between iterators
N
Niels 已提交
8073
        using difference_type = typename basic_json::difference_type;
N
Niels 已提交
8074
        /// defines a pointer to the type iterated over (value_type)
N
Niels 已提交
8075
        using pointer = typename basic_json::const_pointer;
N
Niels 已提交
8076
        /// defines a reference to the type iterated over (value_type)
N
Niels 已提交
8077
        using reference = typename basic_json::const_reference;
N
Niels 已提交
8078
        /// the category of the iterator
N
Niels 已提交
8079
        using iterator_category = std::bidirectional_iterator_tag;
N
Niels 已提交
8080

8081
        /// default constructor
N
Niels 已提交
8082
        const_iterator() = default;
8083

N
Niels 已提交
8084 8085 8086 8087 8088 8089
        /*!
        @brief constructor for a given JSON instance
        @param[in] object  pointer to a JSON object for this iterator
        @pre object != nullptr
        @post The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8090 8091
        explicit const_iterator(pointer object) noexcept
            : m_object(object)
N
Niels 已提交
8092
        {
N
Niels 已提交
8093 8094
            assert(m_object != nullptr);

N
Niels 已提交
8095 8096
            switch (m_object->m_type)
            {
8097
                case basic_json::value_t::object:
N
Niels 已提交
8098 8099 8100 8101
                {
                    m_it.object_iterator = typename object_t::iterator();
                    break;
                }
8102 8103

                case basic_json::value_t::array:
N
Niels 已提交
8104 8105 8106 8107
                {
                    m_it.array_iterator = typename array_t::iterator();
                    break;
                }
8108

N
Niels 已提交
8109 8110
                default:
                {
8111
                    m_it.primitive_iterator = primitive_iterator_t();
N
Niels 已提交
8112 8113 8114 8115 8116
                    break;
                }
            }
        }

N
Niels 已提交
8117 8118 8119 8120 8121
        /*!
        @brief copy constructor given a non-const iterator
        @param[in] other  iterator to copy from
        @note It is not checked whether @a other is initialized.
        */
N
Niels 已提交
8122 8123
        explicit const_iterator(const iterator& other) noexcept
            : m_object(other.m_object)
N
Niels 已提交
8124
        {
N
Niels 已提交
8125
            if (m_object != nullptr)
N
Niels 已提交
8126
            {
N
Niels 已提交
8127
                switch (m_object->m_type)
N
Niels 已提交
8128
                {
N
Niels 已提交
8129 8130 8131 8132 8133
                    case basic_json::value_t::object:
                    {
                        m_it.object_iterator = other.m_it.object_iterator;
                        break;
                    }
N
Niels 已提交
8134

N
Niels 已提交
8135 8136 8137 8138 8139
                    case basic_json::value_t::array:
                    {
                        m_it.array_iterator = other.m_it.array_iterator;
                        break;
                    }
N
Niels 已提交
8140

N
Niels 已提交
8141 8142 8143 8144 8145
                    default:
                    {
                        m_it.primitive_iterator = other.m_it.primitive_iterator;
                        break;
                    }
N
Niels 已提交
8146 8147 8148 8149
                }
            }
        }

N
Niels 已提交
8150 8151 8152 8153 8154
        /*!
        @brief copy constructor
        @param[in] other  iterator to copy from
        @note It is not checked whether @a other is initialized.
        */
N
Niels 已提交
8155
        const_iterator(const const_iterator& other) noexcept
N
Niels 已提交
8156 8157 8158
            : m_object(other.m_object), m_it(other.m_it)
        {}

N
Niels 已提交
8159 8160 8161 8162 8163
        /*!
        @brief copy assignment
        @param[in,out] other  iterator to copy from
        @note It is not checked whether @a other is initialized.
        */
N
Niels 已提交
8164
        const_iterator& operator=(const_iterator other) noexcept(
N
Niels 已提交
8165 8166
            std::is_nothrow_move_constructible<pointer>::value and
            std::is_nothrow_move_assignable<pointer>::value and
N
Niels 已提交
8167 8168
            std::is_nothrow_move_constructible<internal_iterator>::value and
            std::is_nothrow_move_assignable<internal_iterator>::value
N
Niels 已提交
8169 8170 8171 8172
        )
        {
            std::swap(m_object, other.m_object);
            std::swap(m_it, other.m_it);
N
Niels 已提交
8173 8174 8175
            return *this;
        }

N
Niels 已提交
8176
      private:
N
Niels 已提交
8177 8178 8179 8180
        /*!
        @brief set the iterator to the first value
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8181
        void set_begin() noexcept
N
Niels 已提交
8182
        {
N
Niels 已提交
8183 8184
            assert(m_object != nullptr);

N
Niels 已提交
8185 8186
            switch (m_object->m_type)
            {
8187
                case basic_json::value_t::object:
N
Niels 已提交
8188 8189 8190 8191 8192
                {
                    m_it.object_iterator = m_object->m_value.object->begin();
                    break;
                }

8193
                case basic_json::value_t::array:
N
Niels 已提交
8194 8195 8196 8197 8198
                {
                    m_it.array_iterator = m_object->m_value.array->begin();
                    break;
                }

8199
                case basic_json::value_t::null:
N
Niels 已提交
8200
                {
N
Niels 已提交
8201
                    // set to end so begin()==end() is true: null is empty
8202
                    m_it.primitive_iterator.set_end();
N
Niels 已提交
8203 8204 8205 8206 8207
                    break;
                }

                default:
                {
8208
                    m_it.primitive_iterator.set_begin();
N
Niels 已提交
8209 8210 8211 8212 8213
                    break;
                }
            }
        }

N
Niels 已提交
8214 8215 8216 8217
        /*!
        @brief set the iterator past the last value
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8218
        void set_end() noexcept
N
Niels 已提交
8219
        {
N
Niels 已提交
8220 8221
            assert(m_object != nullptr);

N
Niels 已提交
8222 8223
            switch (m_object->m_type)
            {
8224
                case basic_json::value_t::object:
N
Niels 已提交
8225 8226 8227 8228 8229
                {
                    m_it.object_iterator = m_object->m_value.object->end();
                    break;
                }

8230
                case basic_json::value_t::array:
N
Niels 已提交
8231 8232 8233 8234 8235 8236 8237
                {
                    m_it.array_iterator = m_object->m_value.array->end();
                    break;
                }

                default:
                {
8238
                    m_it.primitive_iterator.set_end();
N
Niels 已提交
8239 8240 8241 8242 8243
                    break;
                }
            }
        }

N
Niels 已提交
8244
      public:
N
Niels 已提交
8245 8246 8247 8248
        /*!
        @brief return a reference to the value pointed to by the iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8249
        reference operator*() const
N
Niels 已提交
8250
        {
N
Niels 已提交
8251 8252
            assert(m_object != nullptr);

N
Niels 已提交
8253 8254
            switch (m_object->m_type)
            {
8255
                case basic_json::value_t::object:
N
Niels 已提交
8256
                {
N
Niels 已提交
8257
                    assert(m_it.object_iterator != m_object->m_value.object->end());
N
Niels 已提交
8258 8259 8260
                    return m_it.object_iterator->second;
                }

8261
                case basic_json::value_t::array:
N
Niels 已提交
8262
                {
N
Niels 已提交
8263
                    assert(m_it.array_iterator != m_object->m_value.array->end());
N
Niels 已提交
8264 8265 8266
                    return *m_it.array_iterator;
                }

8267
                case basic_json::value_t::null:
N
Niels 已提交
8268 8269 8270 8271 8272 8273
                {
                    throw std::out_of_range("cannot get value");
                }

                default:
                {
8274
                    if (m_it.primitive_iterator.is_begin())
N
Niels 已提交
8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285
                    {
                        return *m_object;
                    }
                    else
                    {
                        throw std::out_of_range("cannot get value");
                    }
                }
            }
        }

N
Niels 已提交
8286 8287 8288 8289
        /*!
        @brief dereference the iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8290
        pointer operator->() const
N
Niels 已提交
8291
        {
N
Niels 已提交
8292 8293
            assert(m_object != nullptr);

N
Niels 已提交
8294 8295
            switch (m_object->m_type)
            {
8296
                case basic_json::value_t::object:
N
Niels 已提交
8297
                {
N
Niels 已提交
8298
                    assert(m_it.object_iterator != m_object->m_value.object->end());
N
Niels 已提交
8299 8300 8301
                    return &(m_it.object_iterator->second);
                }

8302
                case basic_json::value_t::array:
N
Niels 已提交
8303
                {
N
Niels 已提交
8304
                    assert(m_it.array_iterator != m_object->m_value.array->end());
N
Niels 已提交
8305 8306 8307 8308 8309
                    return &*m_it.array_iterator;
                }

                default:
                {
8310
                    if (m_it.primitive_iterator.is_begin())
N
Niels 已提交
8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321
                    {
                        return m_object;
                    }
                    else
                    {
                        throw std::out_of_range("cannot get value");
                    }
                }
            }
        }

N
Niels 已提交
8322 8323 8324 8325
        /*!
        @brief post-increment (it++)
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8326
        const_iterator operator++(int)
N
Niels 已提交
8327
        {
N
Niels 已提交
8328
            auto result = *this;
N
Niels 已提交
8329
            ++(*this);
N
Niels 已提交
8330 8331 8332
            return result;
        }

N
Niels 已提交
8333 8334 8335 8336
        /*!
        @brief pre-increment (++it)
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8337
        const_iterator& operator++()
N
Niels 已提交
8338
        {
N
Niels 已提交
8339 8340
            assert(m_object != nullptr);

N
Niels 已提交
8341 8342
            switch (m_object->m_type)
            {
8343
                case basic_json::value_t::object:
N
Niels 已提交
8344
                {
N
Niels 已提交
8345
                    std::advance(m_it.object_iterator, 1);
N
Niels 已提交
8346 8347 8348
                    break;
                }

8349
                case basic_json::value_t::array:
N
Niels 已提交
8350
                {
N
Niels 已提交
8351
                    std::advance(m_it.array_iterator, 1);
N
Niels 已提交
8352 8353 8354 8355 8356
                    break;
                }

                default:
                {
8357
                    ++m_it.primitive_iterator;
N
Niels 已提交
8358 8359 8360 8361 8362 8363 8364
                    break;
                }
            }

            return *this;
        }

N
Niels 已提交
8365 8366 8367 8368
        /*!
        @brief post-decrement (it--)
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8369
        const_iterator operator--(int)
N
Niels 已提交
8370
        {
N
Niels 已提交
8371
            auto result = *this;
N
Niels 已提交
8372
            --(*this);
N
Niels 已提交
8373 8374 8375
            return result;
        }

N
Niels 已提交
8376 8377 8378 8379
        /*!
        @brief pre-decrement (--it)
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8380
        const_iterator& operator--()
N
Niels 已提交
8381
        {
N
Niels 已提交
8382 8383
            assert(m_object != nullptr);

N
Niels 已提交
8384 8385
            switch (m_object->m_type)
            {
8386
                case basic_json::value_t::object:
N
Niels 已提交
8387
                {
N
Niels 已提交
8388
                    std::advance(m_it.object_iterator, -1);
N
Niels 已提交
8389 8390 8391
                    break;
                }

8392
                case basic_json::value_t::array:
N
Niels 已提交
8393
                {
N
Niels 已提交
8394
                    std::advance(m_it.array_iterator, -1);
N
Niels 已提交
8395 8396 8397 8398 8399
                    break;
                }

                default:
                {
8400
                    --m_it.primitive_iterator;
N
Niels 已提交
8401 8402 8403 8404 8405 8406 8407
                    break;
                }
            }

            return *this;
        }

N
Niels 已提交
8408 8409 8410 8411
        /*!
        @brief  comparison: equal
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8412
        bool operator==(const const_iterator& other) const
N
Niels 已提交
8413
        {
N
Niels 已提交
8414 8415
            // if objects are not the same, the comparison is undefined
            if (m_object != other.m_object)
N
Niels 已提交
8416
            {
N
Niels 已提交
8417
                throw std::domain_error("cannot compare iterators of different containers");
N
Niels 已提交
8418 8419
            }

N
Niels 已提交
8420 8421
            assert(m_object != nullptr);

N
Niels 已提交
8422 8423
            switch (m_object->m_type)
            {
8424
                case basic_json::value_t::object:
N
Niels 已提交
8425 8426 8427 8428
                {
                    return (m_it.object_iterator == other.m_it.object_iterator);
                }

8429
                case basic_json::value_t::array:
N
Niels 已提交
8430 8431 8432 8433 8434 8435
                {
                    return (m_it.array_iterator == other.m_it.array_iterator);
                }

                default:
                {
8436
                    return (m_it.primitive_iterator == other.m_it.primitive_iterator);
N
Niels 已提交
8437 8438 8439 8440
                }
            }
        }

N
Niels 已提交
8441 8442 8443 8444
        /*!
        @brief  comparison: not equal
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8445
        bool operator!=(const const_iterator& other) const
N
Niels 已提交
8446 8447 8448 8449
        {
            return not operator==(other);
        }

N
Niels 已提交
8450 8451 8452 8453
        /*!
        @brief  comparison: smaller
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8454
        bool operator<(const const_iterator& other) const
N
Niels 已提交
8455 8456 8457 8458 8459 8460 8461
        {
            // if objects are not the same, the comparison is undefined
            if (m_object != other.m_object)
            {
                throw std::domain_error("cannot compare iterators of different containers");
            }

N
Niels 已提交
8462 8463
            assert(m_object != nullptr);

N
Niels 已提交
8464 8465
            switch (m_object->m_type)
            {
8466
                case basic_json::value_t::object:
N
Niels 已提交
8467
                {
N
Niels 已提交
8468
                    throw std::domain_error("cannot compare order of object iterators");
N
Niels 已提交
8469 8470
                }

8471
                case basic_json::value_t::array:
N
Niels 已提交
8472 8473 8474 8475 8476 8477
                {
                    return (m_it.array_iterator < other.m_it.array_iterator);
                }

                default:
                {
8478
                    return (m_it.primitive_iterator < other.m_it.primitive_iterator);
N
Niels 已提交
8479 8480 8481 8482
                }
            }
        }

N
Niels 已提交
8483 8484 8485 8486
        /*!
        @brief  comparison: less than or equal
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8487
        bool operator<=(const const_iterator& other) const
N
Niels 已提交
8488 8489 8490 8491
        {
            return not other.operator < (*this);
        }

N
Niels 已提交
8492 8493 8494 8495
        /*!
        @brief  comparison: greater than
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8496
        bool operator>(const const_iterator& other) const
N
Niels 已提交
8497 8498 8499 8500
        {
            return not operator<=(other);
        }

N
Niels 已提交
8501 8502 8503 8504
        /*!
        @brief  comparison: greater than or equal
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8505
        bool operator>=(const const_iterator& other) const
N
Niels 已提交
8506 8507 8508 8509
        {
            return not operator<(other);
        }

N
Niels 已提交
8510 8511 8512 8513
        /*!
        @brief  add to iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8514
        const_iterator& operator+=(difference_type i)
N
Niels 已提交
8515
        {
N
Niels 已提交
8516 8517
            assert(m_object != nullptr);

N
Niels 已提交
8518 8519
            switch (m_object->m_type)
            {
8520
                case basic_json::value_t::object:
N
Niels 已提交
8521
                {
N
Niels 已提交
8522
                    throw std::domain_error("cannot use offsets with object iterators");
N
Niels 已提交
8523 8524
                }

8525
                case basic_json::value_t::array:
N
Niels 已提交
8526
                {
N
Niels 已提交
8527
                    std::advance(m_it.array_iterator, i);
N
Niels 已提交
8528 8529 8530 8531 8532
                    break;
                }

                default:
                {
8533
                    m_it.primitive_iterator += i;
N
Niels 已提交
8534 8535 8536 8537 8538 8539 8540
                    break;
                }
            }

            return *this;
        }

N
Niels 已提交
8541 8542 8543 8544
        /*!
        @brief  subtract from iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8545
        const_iterator& operator-=(difference_type i)
N
Niels 已提交
8546 8547 8548 8549
        {
            return operator+=(-i);
        }

N
Niels 已提交
8550 8551 8552 8553
        /*!
        @brief  add to iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8554
        const_iterator operator+(difference_type i)
N
Niels 已提交
8555 8556 8557 8558 8559 8560
        {
            auto result = *this;
            result += i;
            return result;
        }

N
Niels 已提交
8561 8562 8563 8564
        /*!
        @brief  subtract from iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8565
        const_iterator operator-(difference_type i)
N
Niels 已提交
8566 8567 8568 8569 8570 8571
        {
            auto result = *this;
            result -= i;
            return result;
        }

N
Niels 已提交
8572 8573 8574 8575
        /*!
        @brief  return difference
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8576
        difference_type operator-(const const_iterator& other) const
N
Niels 已提交
8577
        {
N
Niels 已提交
8578 8579
            assert(m_object != nullptr);

N
Niels 已提交
8580 8581
            switch (m_object->m_type)
            {
8582
                case basic_json::value_t::object:
N
Niels 已提交
8583
                {
N
Niels 已提交
8584
                    throw std::domain_error("cannot use offsets with object iterators");
N
Niels 已提交
8585 8586
                }

8587
                case basic_json::value_t::array:
N
Niels 已提交
8588 8589 8590 8591 8592 8593
                {
                    return m_it.array_iterator - other.m_it.array_iterator;
                }

                default:
                {
8594
                    return m_it.primitive_iterator - other.m_it.primitive_iterator;
N
Niels 已提交
8595 8596 8597 8598
                }
            }
        }

N
Niels 已提交
8599 8600 8601 8602
        /*!
        @brief  access to successor
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8603
        reference operator[](difference_type n) const
N
Niels 已提交
8604
        {
N
Niels 已提交
8605 8606
            assert(m_object != nullptr);

N
Niels 已提交
8607 8608
            switch (m_object->m_type)
            {
8609
                case basic_json::value_t::object:
N
Niels 已提交
8610 8611 8612 8613
                {
                    throw std::domain_error("cannot use operator[] for object iterators");
                }

8614
                case basic_json::value_t::array:
N
Niels 已提交
8615
                {
N
Niels 已提交
8616
                    return *std::next(m_it.array_iterator, n);
N
Niels 已提交
8617 8618
                }

8619
                case basic_json::value_t::null:
N
Niels 已提交
8620 8621 8622 8623 8624 8625
                {
                    throw std::out_of_range("cannot get value");
                }

                default:
                {
8626
                    if (m_it.primitive_iterator == -n)
N
Niels 已提交
8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637
                    {
                        return *m_object;
                    }
                    else
                    {
                        throw std::out_of_range("cannot get value");
                    }
                }
            }
        }

N
Niels 已提交
8638 8639 8640 8641
        /*!
        @brief  return the key of an object iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8642
        typename object_t::key_type key() const
N
Niels 已提交
8643
        {
N
Niels 已提交
8644
            assert(m_object != nullptr);
N
Niels 已提交
8645

8646 8647 8648 8649 8650 8651 8652
            if (m_object->is_object())
            {
                return m_it.object_iterator->first;
            }
            else
            {
                throw std::domain_error("cannot use key() for non-object iterators");
N
Niels 已提交
8653 8654 8655
            }
        }

N
Niels 已提交
8656 8657 8658 8659
        /*!
        @brief  return the value of an iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
8660
        reference value() const
N
Niels 已提交
8661 8662 8663 8664
        {
            return operator*();
        }

N
Niels 已提交
8665 8666 8667 8668
      private:
        /// associated JSON instance
        pointer m_object = nullptr;
        /// the actual iterator of the associated instance
N
Niels 已提交
8669
        internal_iterator m_it = internal_iterator();
N
Niels 已提交
8670 8671
    };

N
Niels 已提交
8672 8673 8674 8675 8676 8677 8678 8679 8680
    /*!
    @brief a mutable random access iterator for the @ref basic_json class

    @requirement The class satisfies the following concept requirements:
    - [RandomAccessIterator](http://en.cppreference.com/w/cpp/concept/RandomAccessIterator):
      The iterator that can be moved to point (forward and backward) to any
      element in constant time.
    - [OutputIterator](http://en.cppreference.com/w/cpp/concept/OutputIterator):
      It is possible to write to the pointed-to element.
N
Niels 已提交
8681

N
Niels 已提交
8682
    @since version 1.0.0
N
Niels 已提交
8683
    */
N
Niels 已提交
8684
    class iterator : public const_iterator
N
Niels 已提交
8685 8686
    {
      public:
N
Niels 已提交
8687 8688 8689
        using base_iterator = const_iterator;
        using pointer = typename basic_json::pointer;
        using reference = typename basic_json::reference;
N
Niels 已提交
8690

8691
        /// default constructor
N
Niels 已提交
8692
        iterator() = default;
8693

N
Niels 已提交
8694
        /// constructor for a given JSON instance
N
Niels 已提交
8695
        explicit iterator(pointer object) noexcept
N
cleanup  
Niels 已提交
8696
            : base_iterator(object)
N
Niels 已提交
8697
        {}
N
Niels 已提交
8698

N
Niels 已提交
8699
        /// copy constructor
N
Niels 已提交
8700 8701
        iterator(const iterator& other) noexcept
            : base_iterator(other)
N
Niels 已提交
8702 8703
        {}

N
Niels 已提交
8704
        /// copy assignment
N
Niels 已提交
8705
        iterator& operator=(iterator other) noexcept(
N
Niels 已提交
8706 8707
            std::is_nothrow_move_constructible<pointer>::value and
            std::is_nothrow_move_assignable<pointer>::value and
N
Niels 已提交
8708 8709
            std::is_nothrow_move_constructible<internal_iterator>::value and
            std::is_nothrow_move_assignable<internal_iterator>::value
N
Niels 已提交
8710 8711
        )
        {
N
Niels 已提交
8712
            base_iterator::operator=(other);
N
Niels 已提交
8713 8714 8715
            return *this;
        }

N
Niels 已提交
8716
        /// return a reference to the value pointed to by the iterator
8717
        reference operator*() const
N
Niels 已提交
8718
        {
N
Niels 已提交
8719 8720
            return const_cast<reference>(base_iterator::operator*());
        }
N
Niels 已提交
8721

N
Niels 已提交
8722
        /// dereference the iterator
8723
        pointer operator->() const
N
Niels 已提交
8724 8725 8726
        {
            return const_cast<pointer>(base_iterator::operator->());
        }
N
Niels 已提交
8727

N
Niels 已提交
8728 8729 8730 8731 8732 8733 8734
        /// post-increment (it++)
        iterator operator++(int)
        {
            iterator result = *this;
            base_iterator::operator++();
            return result;
        }
N
Niels 已提交
8735

N
Niels 已提交
8736 8737 8738 8739 8740
        /// pre-increment (++it)
        iterator& operator++()
        {
            base_iterator::operator++();
            return *this;
N
Niels 已提交
8741 8742
        }

N
Niels 已提交
8743 8744
        /// post-decrement (it--)
        iterator operator--(int)
N
Niels 已提交
8745
        {
N
Niels 已提交
8746 8747 8748 8749
            iterator result = *this;
            base_iterator::operator--();
            return result;
        }
N
Niels 已提交
8750

N
Niels 已提交
8751 8752 8753 8754 8755 8756
        /// pre-decrement (--it)
        iterator& operator--()
        {
            base_iterator::operator--();
            return *this;
        }
N
Niels 已提交
8757 8758

        /// add to iterator
N
Niels 已提交
8759
        iterator& operator+=(difference_type i)
N
Niels 已提交
8760
        {
N
Niels 已提交
8761
            base_iterator::operator+=(i);
N
Niels 已提交
8762 8763 8764 8765
            return *this;
        }

        /// subtract from iterator
N
Niels 已提交
8766
        iterator& operator-=(difference_type i)
N
Niels 已提交
8767
        {
N
Niels 已提交
8768 8769
            base_iterator::operator-=(i);
            return *this;
N
Niels 已提交
8770 8771 8772
        }

        /// add to iterator
N
Niels 已提交
8773
        iterator operator+(difference_type i)
N
Niels 已提交
8774 8775 8776 8777 8778 8779 8780
        {
            auto result = *this;
            result += i;
            return result;
        }

        /// subtract from iterator
N
Niels 已提交
8781
        iterator operator-(difference_type i)
N
Niels 已提交
8782 8783 8784 8785 8786 8787
        {
            auto result = *this;
            result -= i;
            return result;
        }

N
Niels 已提交
8788
        /// return difference
N
Niels 已提交
8789
        difference_type operator-(const iterator& other) const
N
Niels 已提交
8790
        {
N
Niels 已提交
8791
            return base_iterator::operator-(other);
N
Niels 已提交
8792 8793 8794
        }

        /// access to successor
N
Niels 已提交
8795
        reference operator[](difference_type n) const
N
Niels 已提交
8796
        {
N
Niels 已提交
8797
            return const_cast<reference>(base_iterator::operator[](n));
N
Niels 已提交
8798 8799
        }

8800
        /// return the value of an iterator
N
Niels 已提交
8801
        reference value() const
N
Niels 已提交
8802
        {
N
Niels 已提交
8803
            return const_cast<reference>(base_iterator::value());
N
Niels 已提交
8804
        }
N
Niels 已提交
8805 8806
    };

N
Niels 已提交
8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820
    /*!
    @brief a template for a reverse iterator class

    @tparam Base the base iterator type to reverse. Valid types are @ref
    iterator (to create @ref reverse_iterator) and @ref const_iterator (to
    create @ref const_reverse_iterator).

    @requirement The class satisfies the following concept requirements:
    - [RandomAccessIterator](http://en.cppreference.com/w/cpp/concept/RandomAccessIterator):
      The iterator that can be moved to point (forward and backward) to any
      element in constant time.
    - [OutputIterator](http://en.cppreference.com/w/cpp/concept/OutputIterator):
      It is possible to write to the pointed-to element (only if @a Base is
      @ref iterator).
N
Niels 已提交
8821

N
Niels 已提交
8822
    @since version 1.0.0
N
Niels 已提交
8823
    */
N
Niels 已提交
8824 8825
    template<typename Base>
    class json_reverse_iterator : public std::reverse_iterator<Base>
8826 8827
    {
      public:
8828
        /// shortcut to the reverse iterator adaptor
N
Niels 已提交
8829
        using base_iterator = std::reverse_iterator<Base>;
N
Niels 已提交
8830
        /// the reference type for the pointed-to element
N
Niels 已提交
8831
        using reference = typename Base::reference;
8832

8833
        /// create reverse iterator from iterator
N
Niels 已提交
8834
        json_reverse_iterator(const typename base_iterator::iterator_type& it) noexcept
N
cleanup  
Niels 已提交
8835 8836
            : base_iterator(it)
        {}
8837 8838

        /// create reverse iterator from base class
N
Niels 已提交
8839
        json_reverse_iterator(const base_iterator& it) noexcept
N
cleanup  
Niels 已提交
8840 8841
            : base_iterator(it)
        {}
8842 8843

        /// post-increment (it++)
N
Niels 已提交
8844
        json_reverse_iterator operator++(int)
8845 8846 8847 8848 8849
        {
            return base_iterator::operator++(1);
        }

        /// pre-increment (++it)
N
Niels 已提交
8850
        json_reverse_iterator& operator++()
8851 8852 8853 8854 8855 8856
        {
            base_iterator::operator++();
            return *this;
        }

        /// post-decrement (it--)
N
Niels 已提交
8857
        json_reverse_iterator operator--(int)
8858 8859 8860 8861 8862
        {
            return base_iterator::operator--(1);
        }

        /// pre-decrement (--it)
N
Niels 已提交
8863
        json_reverse_iterator& operator--()
8864 8865 8866 8867 8868 8869
        {
            base_iterator::operator--();
            return *this;
        }

        /// add to iterator
N
Niels 已提交
8870
        json_reverse_iterator& operator+=(difference_type i)
8871 8872 8873 8874 8875 8876
        {
            base_iterator::operator+=(i);
            return *this;
        }

        /// add to iterator
N
Niels 已提交
8877
        json_reverse_iterator operator+(difference_type i) const
8878 8879 8880 8881 8882 8883 8884
        {
            auto result = *this;
            result += i;
            return result;
        }

        /// subtract from iterator
N
Niels 已提交
8885
        json_reverse_iterator operator-(difference_type i) const
8886 8887 8888 8889 8890 8891 8892
        {
            auto result = *this;
            result -= i;
            return result;
        }

        /// return difference
N
Niels 已提交
8893
        difference_type operator-(const json_reverse_iterator& other) const
8894 8895 8896 8897 8898 8899 8900 8901 8902
        {
            return this->base() - other.base();
        }

        /// access to successor
        reference operator[](difference_type n) const
        {
            return *(this->operator+(n));
        }
N
Niels 已提交
8903

8904
        /// return the key of an object iterator
N
Niels 已提交
8905
        typename object_t::key_type key() const
8906
        {
N
Niels 已提交
8907 8908
            auto it = --this->base();
            return it.key();
8909 8910 8911
        }

        /// return the value of an iterator
N
Niels 已提交
8912
        reference value() const
8913
        {
N
Niels 已提交
8914 8915
            auto it = --this->base();
            return it.operator * ();
8916 8917 8918
        }
    };

N
Niels 已提交
8919

N
Niels 已提交
8920
  private:
N
Niels 已提交
8921 8922 8923
    //////////////////////
    // lexer and parser //
    //////////////////////
N
Niels 已提交
8924

N
Niels 已提交
8925 8926 8927 8928
    /*!
    @brief lexical analysis

    This class organizes the lexical analysis during JSON deserialization. The
N
Niels 已提交
8929 8930
    core of it is a scanner generated by [re2c](http://re2c.org) that
    processes a buffer and recognizes tokens according to RFC 7159.
N
Niels 已提交
8931
    */
N
Niels 已提交
8932
    class lexer
N
Niels 已提交
8933
    {
N
Niels 已提交
8934
      public:
N
Niels 已提交
8935 8936 8937
        /// token types for the parser
        enum class token_type
        {
N
Niels 已提交
8938
            uninitialized,   ///< indicating the scanner is uninitialized
N
Niels 已提交
8939 8940 8941
            literal_true,    ///< the `true` literal
            literal_false,   ///< the `false` literal
            literal_null,    ///< the `null` literal
N
Niels 已提交
8942 8943
            value_string,    ///< a string -- use get_string() for actual value
            value_number,    ///< a number -- use get_number() for actual value
N
Niels 已提交
8944 8945 8946 8947 8948 8949
            begin_array,     ///< the character for array begin `[`
            begin_object,    ///< the character for object begin `{`
            end_array,       ///< the character for array end `]`
            end_object,      ///< the character for object end `}`
            name_separator,  ///< the name separator `:`
            value_separator, ///< the value separator `,`
N
Niels 已提交
8950 8951
            parse_error,     ///< indicating a parse error
            end_of_input     ///< indicating the end of the input buffer
N
Niels 已提交
8952 8953
        };

N
Niels 已提交
8954
        /// the char type to use in the lexer
N
Niels 已提交
8955
        using lexer_char_t = unsigned char;
N
Niels 已提交
8956

8957 8958
        /// a lexer from a buffer with given length
        lexer(const lexer_char_t* buff, const size_t len) noexcept
N
cleanup  
Niels 已提交
8959
            : m_content(buff)
N
Niels 已提交
8960
        {
N
Niels 已提交
8961
            assert(m_content != nullptr);
N
Niels 已提交
8962
            m_start = m_cursor = m_content;
8963
            m_limit = m_content + len;
N
Niels 已提交
8964
        }
N
Niels 已提交
8965

8966 8967
        /// a lexer from an input stream
        explicit lexer(std::istream& s)
N
cleanup  
Niels 已提交
8968
            : m_stream(&s), m_line_buffer()
N
Niels 已提交
8969
        {
8970 8971 8972 8973 8974 8975
            // immediately abort if stream is erroneous
            if (s.fail())
            {
                throw std::invalid_argument("stream error: " +  std::string(strerror(errno)));
            }

N
cleanup  
Niels 已提交
8976 8977
            // fill buffer
            fill_line_buffer();
N
Niels 已提交
8978 8979 8980 8981 8982 8983 8984 8985

            // skip UTF-8 byte-order mark
            if (m_line_buffer.size() >= 3 and m_line_buffer.substr(0, 3) == "\xEF\xBB\xBF")
            {
                m_line_buffer[0] = ' ';
                m_line_buffer[1] = ' ';
                m_line_buffer[2] = ' ';
            }
N
Niels 已提交
8986
        }
N
Niels 已提交
8987

N
Niels 已提交
8988
        // switch off unwanted functions (due to pointer members)
N
cleanup  
Niels 已提交
8989
        lexer() = delete;
N
Niels 已提交
8990 8991 8992
        lexer(const lexer&) = delete;
        lexer operator=(const lexer&) = delete;

N
Niels 已提交
8993
        /*!
N
Niels 已提交
8994 8995 8996 8997 8998 8999
        @brief create a string from one or two Unicode code points

        There are two cases: (1) @a codepoint1 is in the Basic Multilingual
        Plane (U+0000 through U+FFFF) and @a codepoint2 is 0, or (2)
        @a codepoint1 and @a codepoint2 are a UTF-16 surrogate pair to
        represent a code point above U+FFFF.
N
Niels 已提交
9000

N
Niels 已提交
9001 9002
        @param[in] codepoint1  the code point (can be high surrogate)
        @param[in] codepoint2  the code point (can be low surrogate or 0)
N
Niels 已提交
9003

N
Niels 已提交
9004 9005
        @return string representation of the code point; the length of the
        result string is between 1 and 4 characters.
N
Niels 已提交
9006

N
Niels 已提交
9007
        @throw std::out_of_range if code point is > 0x10ffff; example: `"code
N
Niels 已提交
9008
        points above 0x10FFFF are invalid"`
N
Niels 已提交
9009 9010
        @throw std::invalid_argument if the low surrogate is invalid; example:
        `""missing or wrong low surrogate""`
N
Niels 已提交
9011

N
Niels 已提交
9012 9013
        @complexity Constant.

N
Niels 已提交
9014 9015
        @see <http://en.wikipedia.org/wiki/UTF-8#Sample_code>
        */
N
Niels 已提交
9016 9017
        static string_t to_unicode(const std::size_t codepoint1,
                                   const std::size_t codepoint2 = 0)
N
Niels 已提交
9018
        {
N
Niels 已提交
9019
            // calculate the code point from the given code points
N
Niels 已提交
9020
            std::size_t codepoint = codepoint1;
N
Niels 已提交
9021 9022

            // check if codepoint1 is a high surrogate
N
Niels 已提交
9023 9024
            if (codepoint1 >= 0xD800 and codepoint1 <= 0xDBFF)
            {
N
Niels 已提交
9025
                // check if codepoint2 is a low surrogate
N
Niels 已提交
9026 9027 9028 9029 9030 9031 9032 9033
                if (codepoint2 >= 0xDC00 and codepoint2 <= 0xDFFF)
                {
                    codepoint =
                        // high surrogate occupies the most significant 22 bits
                        (codepoint1 << 10)
                        // low surrogate occupies the least significant 15 bits
                        + codepoint2
                        // there is still the 0xD800, 0xDC00 and 0x10000 noise
N
Niels 已提交
9034
                        // in the result so we have to subtract with:
N
Niels 已提交
9035 9036 9037 9038 9039 9040 9041 9042 9043
                        // (0xD800 << 10) + DC00 - 0x10000 = 0x35FDC00
                        - 0x35FDC00;
                }
                else
                {
                    throw std::invalid_argument("missing or wrong low surrogate");
                }
            }

N
Niels 已提交
9044 9045
            string_t result;

N
Niels 已提交
9046
            if (codepoint < 0x80)
N
Niels 已提交
9047
            {
N
Niels 已提交
9048
                // 1-byte characters: 0xxxxxxx (ASCII)
N
Niels 已提交
9049
                result.append(1, static_cast<typename string_t::value_type>(codepoint));
N
Niels 已提交
9050 9051 9052 9053
            }
            else if (codepoint <= 0x7ff)
            {
                // 2-byte characters: 110xxxxx 10xxxxxx
N
Niels 已提交
9054 9055
                result.append(1, static_cast<typename string_t::value_type>(0xC0 | ((codepoint >> 6) & 0x1F)));
                result.append(1, static_cast<typename string_t::value_type>(0x80 | (codepoint & 0x3F)));
N
Niels 已提交
9056 9057 9058 9059
            }
            else if (codepoint <= 0xffff)
            {
                // 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx
N
Niels 已提交
9060 9061 9062
                result.append(1, static_cast<typename string_t::value_type>(0xE0 | ((codepoint >> 12) & 0x0F)));
                result.append(1, static_cast<typename string_t::value_type>(0x80 | ((codepoint >> 6) & 0x3F)));
                result.append(1, static_cast<typename string_t::value_type>(0x80 | (codepoint & 0x3F)));
N
Niels 已提交
9063 9064 9065 9066
            }
            else if (codepoint <= 0x10ffff)
            {
                // 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
N
Niels 已提交
9067 9068 9069 9070
                result.append(1, static_cast<typename string_t::value_type>(0xF0 | ((codepoint >> 18) & 0x07)));
                result.append(1, static_cast<typename string_t::value_type>(0x80 | ((codepoint >> 12) & 0x3F)));
                result.append(1, static_cast<typename string_t::value_type>(0x80 | ((codepoint >> 6) & 0x3F)));
                result.append(1, static_cast<typename string_t::value_type>(0x80 | (codepoint & 0x3F)));
N
Niels 已提交
9071 9072 9073
            }
            else
            {
N
Niels 已提交
9074
                throw std::out_of_range("code points above 0x10FFFF are invalid");
N
Niels 已提交
9075 9076 9077 9078 9079
            }

            return result;
        }

9080
        /// return name of values of type token_type (only used for errors)
N
Niels 已提交
9081
        static std::string token_type_name(const token_type t)
N
cleanup  
Niels 已提交
9082 9083 9084
        {
            switch (t)
            {
9085
                case token_type::uninitialized:
N
cleanup  
Niels 已提交
9086
                    return "<uninitialized>";
9087
                case token_type::literal_true:
N
cleanup  
Niels 已提交
9088
                    return "true literal";
9089
                case token_type::literal_false:
N
cleanup  
Niels 已提交
9090
                    return "false literal";
9091
                case token_type::literal_null:
N
cleanup  
Niels 已提交
9092
                    return "null literal";
9093
                case token_type::value_string:
N
cleanup  
Niels 已提交
9094
                    return "string literal";
9095
                case token_type::value_number:
N
cleanup  
Niels 已提交
9096
                    return "number literal";
9097
                case token_type::begin_array:
N
Niels 已提交
9098
                    return "'['";
9099
                case token_type::begin_object:
N
Niels 已提交
9100
                    return "'{'";
9101
                case token_type::end_array:
N
Niels 已提交
9102
                    return "']'";
9103
                case token_type::end_object:
N
Niels 已提交
9104
                    return "'}'";
9105
                case token_type::name_separator:
N
Niels 已提交
9106
                    return "':'";
9107
                case token_type::value_separator:
N
Niels 已提交
9108
                    return "','";
9109
                case token_type::parse_error:
N
Niels 已提交
9110
                    return "<parse error>";
9111
                case token_type::end_of_input:
N
Niels 已提交
9112
                    return "end of input";
N
Niels 已提交
9113 9114 9115 9116 9117
                default:
                {
                    // catch non-enum values
                    return "unknown token"; // LCOV_EXCL_LINE
                }
N
cleanup  
Niels 已提交
9118 9119 9120
            }
        }

N
fixes  
Niels 已提交
9121 9122
        /*!
        This function implements a scanner for JSON. It is specified using
9123
        regular expressions that try to follow RFC 7159 as close as possible.
9124 9125 9126 9127
        These regular expressions are then translated into a minimized
        deterministic finite automaton (DFA) by the tool
        [re2c](http://re2c.org). As a result, the translated code for this
        function consists of a large block of code with `goto` jumps.
N
fixes  
Niels 已提交
9128 9129

        @return the class of the next token read from the buffer
N
Niels 已提交
9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140

        @complexity Linear in the length of the input.\n

        Proposition: The loop below will always terminate for finite input.\n

        Proof (by contradiction): Assume a finite input. To loop forever, the
        loop must never hit code with a `break` statement. The only code
        snippets without a `break` statement are the continue statements for
        whitespace and byte-order-marks. To loop forever, the input must be an
        infinite sequence of whitespace or byte-order-marks. This contradicts
        the assumption of finite input, q.e.d.
N
fixes  
Niels 已提交
9141
        */
N
cleanup  
Niels 已提交
9142
        token_type scan()
N
Niels 已提交
9143
        {
N
Niels 已提交
9144 9145 9146 9147
            while (true)
            {
                // pointer for backtracking information
                m_marker = nullptr;
N
Niels 已提交
9148

N
Niels 已提交
9149 9150 9151
                // remember the begin of the token
                m_start = m_cursor;
                assert(m_start != nullptr);
N
Niels 已提交
9152

N
Niels 已提交
9153

N
Niels 已提交
9154
                {
N
Niels 已提交
9155 9156 9157 9158 9159 9160
                    lexer_char_t yych;
                    unsigned int yyaccept = 0;
                    static const unsigned char yybm[] =
                    {
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,  32,  32,   0,   0,  32,   0,   0,
N
Niels 已提交
9161 9162
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
N
Niels 已提交
9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174
                        160, 128,   0, 128, 128, 128, 128, 128,
                        128, 128, 128, 128, 128, 128, 128, 128,
                        192, 192, 192, 192, 192, 192, 192, 192,
                        192, 192, 128, 128, 128, 128, 128, 128,
                        128, 128, 128, 128, 128, 128, 128, 128,
                        128, 128, 128, 128, 128, 128, 128, 128,
                        128, 128, 128, 128, 128, 128, 128, 128,
                        128, 128, 128, 128,   0, 128, 128, 128,
                        128, 128, 128, 128, 128, 128, 128, 128,
                        128, 128, 128, 128, 128, 128, 128, 128,
                        128, 128, 128, 128, 128, 128, 128, 128,
                        128, 128, 128, 128, 128, 128, 128, 128,
N
Niels 已提交
9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
N
Niels 已提交
9191
                    };
N
Niels 已提交
9192
                    if ((m_limit - m_cursor) < 5)
N
Niels 已提交
9193
                    {
N
cleanup  
Niels 已提交
9194
                        fill_line_buffer(5);    // LCOV_EXCL_LINE
N
Niels 已提交
9195 9196 9197
                    }
                    yych = *m_cursor;
                    if (yybm[0 + yych] & 32)
N
Niels 已提交
9198
                    {
N
Niels 已提交
9199 9200
                        goto basic_json_parser_6;
                    }
N
Niels 已提交
9201
                    if (yych <= '[')
N
Niels 已提交
9202 9203
                    {
                        if (yych <= '-')
N
Niels 已提交
9204
                        {
N
Niels 已提交
9205
                            if (yych <= '"')
N
Niels 已提交
9206
                            {
N
Niels 已提交
9207 9208 9209 9210 9211 9212 9213 9214 9215
                                if (yych <= 0x00)
                                {
                                    goto basic_json_parser_2;
                                }
                                if (yych <= '!')
                                {
                                    goto basic_json_parser_4;
                                }
                                goto basic_json_parser_9;
N
Niels 已提交
9216
                            }
N
Niels 已提交
9217
                            else
N
Niels 已提交
9218
                            {
N
Niels 已提交
9219 9220 9221 9222 9223 9224 9225 9226 9227
                                if (yych <= '+')
                                {
                                    goto basic_json_parser_4;
                                }
                                if (yych <= ',')
                                {
                                    goto basic_json_parser_10;
                                }
                                goto basic_json_parser_12;
N
Niels 已提交
9228 9229 9230 9231
                            }
                        }
                        else
                        {
N
Niels 已提交
9232
                            if (yych <= '9')
N
Niels 已提交
9233
                            {
N
Niels 已提交
9234 9235 9236 9237 9238 9239 9240 9241 9242
                                if (yych <= '/')
                                {
                                    goto basic_json_parser_4;
                                }
                                if (yych <= '0')
                                {
                                    goto basic_json_parser_13;
                                }
                                goto basic_json_parser_15;
N
Niels 已提交
9243
                            }
N
Niels 已提交
9244
                            else
N
Niels 已提交
9245
                            {
N
Niels 已提交
9246 9247 9248 9249
                                if (yych <= ':')
                                {
                                    goto basic_json_parser_17;
                                }
N
Niels 已提交
9250
                                if (yych <= 'Z')
N
Niels 已提交
9251
                                {
N
Niels 已提交
9252
                                    goto basic_json_parser_4;
N
Niels 已提交
9253
                                }
N
Niels 已提交
9254
                                goto basic_json_parser_19;
N
Niels 已提交
9255 9256 9257 9258 9259
                            }
                        }
                    }
                    else
                    {
N
Niels 已提交
9260
                        if (yych <= 'n')
N
Niels 已提交
9261
                        {
N
Niels 已提交
9262
                            if (yych <= 'e')
N
Niels 已提交
9263
                            {
N
Niels 已提交
9264
                                if (yych == ']')
N
Niels 已提交
9265 9266 9267
                                {
                                    goto basic_json_parser_21;
                                }
N
Niels 已提交
9268
                                goto basic_json_parser_4;
N
Niels 已提交
9269
                            }
N
Niels 已提交
9270
                            else
N
Niels 已提交
9271
                            {
N
Niels 已提交
9272
                                if (yych <= 'f')
N
Niels 已提交
9273
                                {
N
Niels 已提交
9274
                                    goto basic_json_parser_23;
N
Niels 已提交
9275
                                }
N
Niels 已提交
9276
                                if (yych <= 'm')
N
Niels 已提交
9277 9278 9279
                                {
                                    goto basic_json_parser_4;
                                }
N
Niels 已提交
9280
                                goto basic_json_parser_24;
N
Niels 已提交
9281 9282 9283 9284
                            }
                        }
                        else
                        {
N
Niels 已提交
9285
                            if (yych <= 'z')
N
Niels 已提交
9286
                            {
N
Niels 已提交
9287
                                if (yych == 't')
N
Niels 已提交
9288
                                {
N
Niels 已提交
9289
                                    goto basic_json_parser_25;
N
Niels 已提交
9290 9291
                                }
                                goto basic_json_parser_4;
N
Niels 已提交
9292
                            }
N
Niels 已提交
9293
                            else
N
Niels 已提交
9294
                            {
N
Niels 已提交
9295
                                if (yych <= '{')
N
Niels 已提交
9296
                                {
N
Niels 已提交
9297
                                    goto basic_json_parser_26;
N
Niels 已提交
9298
                                }
N
Niels 已提交
9299
                                if (yych == '}')
N
Niels 已提交
9300
                                {
N
Niels 已提交
9301
                                    goto basic_json_parser_28;
N
Niels 已提交
9302 9303
                                }
                                goto basic_json_parser_4;
N
Niels 已提交
9304 9305
                            }
                        }
N
Niels 已提交
9306
                    }
N
Niels 已提交
9307 9308
basic_json_parser_2:
                    ++m_cursor;
N
Niels 已提交
9309
                    {
N
Niels 已提交
9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323
                        last_token_type = token_type::end_of_input;
                        break;
                    }
basic_json_parser_4:
                    ++m_cursor;
basic_json_parser_5:
                    {
                        last_token_type = token_type::parse_error;
                        break;
                    }
basic_json_parser_6:
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9324
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336
                    }
                    yych = *m_cursor;
                    if (yybm[0 + yych] & 32)
                    {
                        goto basic_json_parser_6;
                    }
                    {
                        continue;
                    }
basic_json_parser_9:
                    yyaccept = 0;
                    yych = *(m_marker = ++m_cursor);
N
Niels 已提交
9337
                    if (yych <= 0x1F)
N
Niels 已提交
9338 9339 9340
                    {
                        goto basic_json_parser_5;
                    }
N
Niels 已提交
9341 9342
                    if (yych <= 0x7F)
                    {
N
Niels 已提交
9343
                        goto basic_json_parser_31;
N
Niels 已提交
9344 9345 9346 9347 9348 9349 9350
                    }
                    if (yych <= 0xC1)
                    {
                        goto basic_json_parser_5;
                    }
                    if (yych <= 0xF4)
                    {
N
Niels 已提交
9351
                        goto basic_json_parser_31;
N
Niels 已提交
9352 9353
                    }
                    goto basic_json_parser_5;
N
Niels 已提交
9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381
basic_json_parser_10:
                    ++m_cursor;
                    {
                        last_token_type = token_type::value_separator;
                        break;
                    }
basic_json_parser_12:
                    yych = *++m_cursor;
                    if (yych <= '/')
                    {
                        goto basic_json_parser_5;
                    }
                    if (yych <= '0')
                    {
                        goto basic_json_parser_13;
                    }
                    if (yych <= '9')
                    {
                        goto basic_json_parser_15;
                    }
                    goto basic_json_parser_5;
basic_json_parser_13:
                    yyaccept = 1;
                    yych = *(m_marker = ++m_cursor);
                    if (yych <= 'D')
                    {
                        if (yych == '.')
                        {
N
Niels 已提交
9382
                            goto basic_json_parser_43;
N
Niels 已提交
9383 9384 9385 9386 9387 9388
                        }
                    }
                    else
                    {
                        if (yych <= 'E')
                        {
N
Niels 已提交
9389
                            goto basic_json_parser_44;
N
Niels 已提交
9390 9391 9392
                        }
                        if (yych == 'e')
                        {
N
Niels 已提交
9393
                            goto basic_json_parser_44;
N
Niels 已提交
9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405
                        }
                    }
basic_json_parser_14:
                    {
                        last_token_type = token_type::value_number;
                        break;
                    }
basic_json_parser_15:
                    yyaccept = 1;
                    m_marker = ++m_cursor;
                    if ((m_limit - m_cursor) < 3)
                    {
N
cleanup  
Niels 已提交
9406
                        fill_line_buffer(3);    // LCOV_EXCL_LINE
N
Niels 已提交
9407 9408 9409 9410 9411 9412 9413 9414 9415 9416
                    }
                    yych = *m_cursor;
                    if (yybm[0 + yych] & 64)
                    {
                        goto basic_json_parser_15;
                    }
                    if (yych <= 'D')
                    {
                        if (yych == '.')
                        {
N
Niels 已提交
9417
                            goto basic_json_parser_43;
N
Niels 已提交
9418 9419 9420 9421 9422 9423 9424
                        }
                        goto basic_json_parser_14;
                    }
                    else
                    {
                        if (yych <= 'E')
                        {
N
Niels 已提交
9425
                            goto basic_json_parser_44;
N
Niels 已提交
9426 9427 9428
                        }
                        if (yych == 'e')
                        {
N
Niels 已提交
9429
                            goto basic_json_parser_44;
N
Niels 已提交
9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455
                        }
                        goto basic_json_parser_14;
                    }
basic_json_parser_17:
                    ++m_cursor;
                    {
                        last_token_type = token_type::name_separator;
                        break;
                    }
basic_json_parser_19:
                    ++m_cursor;
                    {
                        last_token_type = token_type::begin_array;
                        break;
                    }
basic_json_parser_21:
                    ++m_cursor;
                    {
                        last_token_type = token_type::end_array;
                        break;
                    }
basic_json_parser_23:
                    yyaccept = 0;
                    yych = *(m_marker = ++m_cursor);
                    if (yych == 'a')
                    {
N
Niels 已提交
9456
                        goto basic_json_parser_45;
N
Niels 已提交
9457 9458 9459 9460 9461 9462 9463
                    }
                    goto basic_json_parser_5;
basic_json_parser_24:
                    yyaccept = 0;
                    yych = *(m_marker = ++m_cursor);
                    if (yych == 'u')
                    {
N
Niels 已提交
9464
                        goto basic_json_parser_46;
N
Niels 已提交
9465 9466 9467 9468 9469 9470 9471
                    }
                    goto basic_json_parser_5;
basic_json_parser_25:
                    yyaccept = 0;
                    yych = *(m_marker = ++m_cursor);
                    if (yych == 'r')
                    {
N
Niels 已提交
9472
                        goto basic_json_parser_47;
N
Niels 已提交
9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490
                    }
                    goto basic_json_parser_5;
basic_json_parser_26:
                    ++m_cursor;
                    {
                        last_token_type = token_type::begin_object;
                        break;
                    }
basic_json_parser_28:
                    ++m_cursor;
                    {
                        last_token_type = token_type::end_object;
                        break;
                    }
basic_json_parser_30:
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9491
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9492 9493
                    }
                    yych = *m_cursor;
N
Niels 已提交
9494
basic_json_parser_31:
N
Niels 已提交
9495 9496
                    if (yybm[0 + yych] & 128)
                    {
N
Niels 已提交
9497
                        goto basic_json_parser_30;
N
Niels 已提交
9498
                    }
N
Niels 已提交
9499
                    if (yych <= 0xE0)
N
Niels 已提交
9500
                    {
N
Niels 已提交
9501 9502 9503 9504
                        if (yych <= '\\')
                        {
                            if (yych <= 0x1F)
                            {
N
Niels 已提交
9505
                                goto basic_json_parser_32;
N
Niels 已提交
9506 9507 9508
                            }
                            if (yych <= '"')
                            {
N
Niels 已提交
9509
                                goto basic_json_parser_33;
N
Niels 已提交
9510
                            }
N
Niels 已提交
9511
                            goto basic_json_parser_35;
N
Niels 已提交
9512 9513 9514 9515 9516
                        }
                        else
                        {
                            if (yych <= 0xC1)
                            {
N
Niels 已提交
9517
                                goto basic_json_parser_32;
N
Niels 已提交
9518 9519 9520
                            }
                            if (yych <= 0xDF)
                            {
N
Niels 已提交
9521
                                goto basic_json_parser_36;
N
Niels 已提交
9522
                            }
N
Niels 已提交
9523
                            goto basic_json_parser_37;
N
Niels 已提交
9524
                        }
N
Niels 已提交
9525
                    }
N
Niels 已提交
9526
                    else
N
Niels 已提交
9527
                    {
N
Niels 已提交
9528 9529 9530 9531
                        if (yych <= 0xEF)
                        {
                            if (yych == 0xED)
                            {
N
Niels 已提交
9532
                                goto basic_json_parser_39;
N
Niels 已提交
9533
                            }
N
Niels 已提交
9534
                            goto basic_json_parser_38;
N
Niels 已提交
9535 9536 9537 9538 9539
                        }
                        else
                        {
                            if (yych <= 0xF0)
                            {
N
Niels 已提交
9540
                                goto basic_json_parser_40;
N
Niels 已提交
9541 9542 9543
                            }
                            if (yych <= 0xF3)
                            {
N
Niels 已提交
9544
                                goto basic_json_parser_41;
N
Niels 已提交
9545 9546 9547
                            }
                            if (yych <= 0xF4)
                            {
N
Niels 已提交
9548
                                goto basic_json_parser_42;
N
Niels 已提交
9549 9550
                            }
                        }
N
Niels 已提交
9551
                    }
N
Niels 已提交
9552
basic_json_parser_32:
N
Niels 已提交
9553 9554 9555 9556 9557 9558 9559 9560 9561
                    m_cursor = m_marker;
                    if (yyaccept == 0)
                    {
                        goto basic_json_parser_5;
                    }
                    else
                    {
                        goto basic_json_parser_14;
                    }
N
Niels 已提交
9562
basic_json_parser_33:
N
Niels 已提交
9563 9564 9565 9566 9567
                    ++m_cursor;
                    {
                        last_token_type = token_type::value_string;
                        break;
                    }
N
Niels 已提交
9568
basic_json_parser_35:
N
Niels 已提交
9569 9570 9571
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9572
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9573 9574 9575 9576 9577
                    }
                    yych = *m_cursor;
                    if (yych <= 'e')
                    {
                        if (yych <= '/')
N
Niels 已提交
9578
                        {
N
Niels 已提交
9579
                            if (yych == '"')
N
Niels 已提交
9580
                            {
N
Niels 已提交
9581
                                goto basic_json_parser_30;
N
Niels 已提交
9582
                            }
N
Niels 已提交
9583
                            if (yych <= '.')
N
Niels 已提交
9584
                            {
N
Niels 已提交
9585
                                goto basic_json_parser_32;
N
Niels 已提交
9586
                            }
N
Niels 已提交
9587
                            goto basic_json_parser_30;
N
Niels 已提交
9588 9589 9590
                        }
                        else
                        {
N
Niels 已提交
9591
                            if (yych <= '\\')
N
Niels 已提交
9592
                            {
N
Niels 已提交
9593 9594
                                if (yych <= '[')
                                {
N
Niels 已提交
9595
                                    goto basic_json_parser_32;
N
Niels 已提交
9596
                                }
N
Niels 已提交
9597
                                goto basic_json_parser_30;
N
Niels 已提交
9598
                            }
N
Niels 已提交
9599
                            else
N
Niels 已提交
9600
                            {
N
Niels 已提交
9601 9602
                                if (yych == 'b')
                                {
N
Niels 已提交
9603
                                    goto basic_json_parser_30;
N
Niels 已提交
9604
                                }
N
Niels 已提交
9605
                                goto basic_json_parser_32;
N
Niels 已提交
9606 9607 9608 9609 9610
                            }
                        }
                    }
                    else
                    {
N
Niels 已提交
9611
                        if (yych <= 'q')
N
Niels 已提交
9612
                        {
N
Niels 已提交
9613
                            if (yych <= 'f')
N
Niels 已提交
9614
                            {
N
Niels 已提交
9615
                                goto basic_json_parser_30;
N
Niels 已提交
9616
                            }
N
Niels 已提交
9617 9618
                            if (yych == 'n')
                            {
N
Niels 已提交
9619
                                goto basic_json_parser_30;
N
Niels 已提交
9620
                            }
N
Niels 已提交
9621
                            goto basic_json_parser_32;
N
Niels 已提交
9622 9623 9624
                        }
                        else
                        {
N
Niels 已提交
9625
                            if (yych <= 's')
N
Niels 已提交
9626
                            {
N
Niels 已提交
9627 9628
                                if (yych <= 'r')
                                {
N
Niels 已提交
9629
                                    goto basic_json_parser_30;
N
Niels 已提交
9630
                                }
N
Niels 已提交
9631
                                goto basic_json_parser_32;
N
Niels 已提交
9632
                            }
N
Niels 已提交
9633
                            else
N
Niels 已提交
9634
                            {
N
Niels 已提交
9635 9636
                                if (yych <= 't')
                                {
N
Niels 已提交
9637
                                    goto basic_json_parser_30;
N
Niels 已提交
9638 9639 9640
                                }
                                if (yych <= 'u')
                                {
N
Niels 已提交
9641
                                    goto basic_json_parser_48;
N
Niels 已提交
9642
                                }
N
Niels 已提交
9643
                                goto basic_json_parser_32;
N
Niels 已提交
9644 9645
                            }
                        }
N
Niels 已提交
9646
                    }
N
Niels 已提交
9647
basic_json_parser_36:
N
Niels 已提交
9648 9649 9650
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9651
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9652 9653 9654 9655
                    }
                    yych = *m_cursor;
                    if (yych <= 0x7F)
                    {
N
Niels 已提交
9656
                        goto basic_json_parser_32;
N
Niels 已提交
9657 9658 9659
                    }
                    if (yych <= 0xBF)
                    {
N
Niels 已提交
9660
                        goto basic_json_parser_30;
N
Niels 已提交
9661
                    }
N
Niels 已提交
9662 9663
                    goto basic_json_parser_32;
basic_json_parser_37:
N
Niels 已提交
9664 9665 9666
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9667
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9668 9669 9670 9671
                    }
                    yych = *m_cursor;
                    if (yych <= 0x9F)
                    {
N
Niels 已提交
9672
                        goto basic_json_parser_32;
N
Niels 已提交
9673 9674 9675
                    }
                    if (yych <= 0xBF)
                    {
N
Niels 已提交
9676
                        goto basic_json_parser_36;
N
Niels 已提交
9677
                    }
N
Niels 已提交
9678 9679
                    goto basic_json_parser_32;
basic_json_parser_38:
N
Niels 已提交
9680 9681 9682
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9683
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9684 9685 9686 9687
                    }
                    yych = *m_cursor;
                    if (yych <= 0x7F)
                    {
N
Niels 已提交
9688
                        goto basic_json_parser_32;
N
Niels 已提交
9689 9690 9691
                    }
                    if (yych <= 0xBF)
                    {
N
Niels 已提交
9692
                        goto basic_json_parser_36;
N
Niels 已提交
9693
                    }
N
Niels 已提交
9694 9695
                    goto basic_json_parser_32;
basic_json_parser_39:
N
Niels 已提交
9696 9697 9698
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9699
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9700 9701 9702 9703
                    }
                    yych = *m_cursor;
                    if (yych <= 0x7F)
                    {
N
Niels 已提交
9704
                        goto basic_json_parser_32;
N
Niels 已提交
9705 9706 9707
                    }
                    if (yych <= 0x9F)
                    {
N
Niels 已提交
9708
                        goto basic_json_parser_36;
N
Niels 已提交
9709
                    }
N
Niels 已提交
9710 9711
                    goto basic_json_parser_32;
basic_json_parser_40:
N
Niels 已提交
9712 9713 9714
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9715
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9716 9717 9718 9719
                    }
                    yych = *m_cursor;
                    if (yych <= 0x8F)
                    {
N
Niels 已提交
9720
                        goto basic_json_parser_32;
N
Niels 已提交
9721 9722 9723
                    }
                    if (yych <= 0xBF)
                    {
N
Niels 已提交
9724
                        goto basic_json_parser_38;
N
Niels 已提交
9725
                    }
N
Niels 已提交
9726 9727
                    goto basic_json_parser_32;
basic_json_parser_41:
N
Niels 已提交
9728 9729 9730
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9731
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9732 9733 9734 9735
                    }
                    yych = *m_cursor;
                    if (yych <= 0x7F)
                    {
N
Niels 已提交
9736
                        goto basic_json_parser_32;
N
Niels 已提交
9737 9738 9739
                    }
                    if (yych <= 0xBF)
                    {
N
Niels 已提交
9740
                        goto basic_json_parser_38;
N
Niels 已提交
9741
                    }
N
Niels 已提交
9742 9743
                    goto basic_json_parser_32;
basic_json_parser_42:
N
Niels 已提交
9744 9745 9746
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9747
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9748 9749 9750 9751
                    }
                    yych = *m_cursor;
                    if (yych <= 0x7F)
                    {
N
Niels 已提交
9752
                        goto basic_json_parser_32;
N
Niels 已提交
9753 9754 9755
                    }
                    if (yych <= 0x8F)
                    {
N
Niels 已提交
9756
                        goto basic_json_parser_38;
N
Niels 已提交
9757
                    }
N
Niels 已提交
9758 9759
                    goto basic_json_parser_32;
basic_json_parser_43:
N
Niels 已提交
9760 9761
                    yych = *++m_cursor;
                    if (yych <= '/')
N
Niels 已提交
9762
                    {
N
Niels 已提交
9763
                        goto basic_json_parser_32;
N
Niels 已提交
9764
                    }
N
Niels 已提交
9765
                    if (yych <= '9')
N
Niels 已提交
9766
                    {
N
Niels 已提交
9767
                        goto basic_json_parser_49;
N
Niels 已提交
9768
                    }
N
Niels 已提交
9769 9770
                    goto basic_json_parser_32;
basic_json_parser_44:
N
Niels 已提交
9771 9772
                    yych = *++m_cursor;
                    if (yych <= ',')
N
Niels 已提交
9773
                    {
N
Niels 已提交
9774 9775
                        if (yych == '+')
                        {
N
Niels 已提交
9776
                            goto basic_json_parser_51;
N
Niels 已提交
9777
                        }
N
Niels 已提交
9778
                        goto basic_json_parser_32;
N
Niels 已提交
9779
                    }
N
Niels 已提交
9780
                    else
N
Niels 已提交
9781
                    {
N
Niels 已提交
9782 9783
                        if (yych <= '-')
                        {
N
Niels 已提交
9784
                            goto basic_json_parser_51;
N
Niels 已提交
9785 9786 9787
                        }
                        if (yych <= '/')
                        {
N
Niels 已提交
9788
                            goto basic_json_parser_32;
N
Niels 已提交
9789 9790 9791
                        }
                        if (yych <= '9')
                        {
N
Niels 已提交
9792
                            goto basic_json_parser_52;
N
Niels 已提交
9793
                        }
N
Niels 已提交
9794
                        goto basic_json_parser_32;
N
Niels 已提交
9795
                    }
N
Niels 已提交
9796
basic_json_parser_45:
N
Niels 已提交
9797 9798
                    yych = *++m_cursor;
                    if (yych == 'l')
N
Niels 已提交
9799
                    {
N
Niels 已提交
9800
                        goto basic_json_parser_54;
N
Niels 已提交
9801
                    }
N
Niels 已提交
9802 9803
                    goto basic_json_parser_32;
basic_json_parser_46:
N
Niels 已提交
9804 9805
                    yych = *++m_cursor;
                    if (yych == 'l')
N
Niels 已提交
9806
                    {
N
Niels 已提交
9807
                        goto basic_json_parser_55;
N
Niels 已提交
9808
                    }
N
Niels 已提交
9809 9810
                    goto basic_json_parser_32;
basic_json_parser_47:
N
Niels 已提交
9811 9812 9813
                    yych = *++m_cursor;
                    if (yych == 'u')
                    {
N
Niels 已提交
9814
                        goto basic_json_parser_56;
N
Niels 已提交
9815
                    }
N
Niels 已提交
9816 9817
                    goto basic_json_parser_32;
basic_json_parser_48:
N
Niels 已提交
9818 9819 9820
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
N
cleanup  
Niels 已提交
9821
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9822 9823 9824
                    }
                    yych = *m_cursor;
                    if (yych <= '@')
N
Niels 已提交
9825
                    {
N
Niels 已提交
9826
                        if (yych <= '/')
N
Niels 已提交
9827
                        {
N
Niels 已提交
9828
                            goto basic_json_parser_32;
N
Niels 已提交
9829
                        }
N
Niels 已提交
9830
                        if (yych <= '9')
N
Niels 已提交
9831
                        {
N
Niels 已提交
9832
                            goto basic_json_parser_57;
N
Niels 已提交
9833
                        }
N
Niels 已提交
9834
                        goto basic_json_parser_32;
N
Niels 已提交
9835 9836 9837
                    }
                    else
                    {
N
Niels 已提交
9838
                        if (yych <= 'F')
N
Niels 已提交
9839
                        {
N
Niels 已提交
9840
                            goto basic_json_parser_57;
N
Niels 已提交
9841
                        }
N
Niels 已提交
9842
                        if (yych <= '`')
N
Niels 已提交
9843
                        {
N
Niels 已提交
9844
                            goto basic_json_parser_32;
N
Niels 已提交
9845
                        }
N
Niels 已提交
9846 9847
                        if (yych <= 'f')
                        {
N
Niels 已提交
9848
                            goto basic_json_parser_57;
N
Niels 已提交
9849
                        }
N
Niels 已提交
9850
                        goto basic_json_parser_32;
N
Niels 已提交
9851
                    }
N
Niels 已提交
9852
basic_json_parser_49:
N
Niels 已提交
9853 9854 9855
                    yyaccept = 1;
                    m_marker = ++m_cursor;
                    if ((m_limit - m_cursor) < 3)
N
Niels 已提交
9856
                    {
N
cleanup  
Niels 已提交
9857
                        fill_line_buffer(3);    // LCOV_EXCL_LINE
N
Niels 已提交
9858 9859 9860 9861 9862
                    }
                    yych = *m_cursor;
                    if (yych <= 'D')
                    {
                        if (yych <= '/')
N
Niels 已提交
9863
                        {
N
Niels 已提交
9864
                            goto basic_json_parser_14;
N
Niels 已提交
9865
                        }
N
Niels 已提交
9866
                        if (yych <= '9')
N
Niels 已提交
9867
                        {
N
Niels 已提交
9868
                            goto basic_json_parser_49;
N
Niels 已提交
9869
                        }
N
Niels 已提交
9870
                        goto basic_json_parser_14;
N
Niels 已提交
9871 9872 9873
                    }
                    else
                    {
N
Niels 已提交
9874
                        if (yych <= 'E')
N
Niels 已提交
9875
                        {
N
Niels 已提交
9876
                            goto basic_json_parser_44;
N
Niels 已提交
9877
                        }
N
Niels 已提交
9878
                        if (yych == 'e')
N
Niels 已提交
9879
                        {
N
Niels 已提交
9880
                            goto basic_json_parser_44;
N
Niels 已提交
9881
                        }
N
Niels 已提交
9882
                        goto basic_json_parser_14;
N
Niels 已提交
9883
                    }
N
Niels 已提交
9884
basic_json_parser_51:
N
Niels 已提交
9885
                    yych = *++m_cursor;
N
Niels 已提交
9886 9887
                    if (yych <= '/')
                    {
N
Niels 已提交
9888
                        goto basic_json_parser_32;
N
Niels 已提交
9889
                    }
N
Niels 已提交
9890
                    if (yych >= ':')
N
Niels 已提交
9891
                    {
N
Niels 已提交
9892
                        goto basic_json_parser_32;
N
Niels 已提交
9893
                    }
N
Niels 已提交
9894
basic_json_parser_52:
N
Niels 已提交
9895 9896
                    ++m_cursor;
                    if (m_limit <= m_cursor)
N
Niels 已提交
9897
                    {
N
cleanup  
Niels 已提交
9898
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9899
                    }
N
Niels 已提交
9900
                    yych = *m_cursor;
N
Niels 已提交
9901
                    if (yych <= '/')
N
Niels 已提交
9902
                    {
N
Niels 已提交
9903
                        goto basic_json_parser_14;
N
Niels 已提交
9904
                    }
N
Niels 已提交
9905
                    if (yych <= '9')
N
Niels 已提交
9906
                    {
N
Niels 已提交
9907
                        goto basic_json_parser_52;
N
Niels 已提交
9908
                    }
N
Niels 已提交
9909
                    goto basic_json_parser_14;
N
Niels 已提交
9910
basic_json_parser_54:
N
Niels 已提交
9911 9912
                    yych = *++m_cursor;
                    if (yych == 's')
N
Niels 已提交
9913
                    {
N
Niels 已提交
9914
                        goto basic_json_parser_58;
N
Niels 已提交
9915
                    }
N
Niels 已提交
9916 9917
                    goto basic_json_parser_32;
basic_json_parser_55:
N
Niels 已提交
9918 9919
                    yych = *++m_cursor;
                    if (yych == 'l')
N
Niels 已提交
9920
                    {
N
Niels 已提交
9921
                        goto basic_json_parser_59;
N
Niels 已提交
9922
                    }
N
Niels 已提交
9923 9924
                    goto basic_json_parser_32;
basic_json_parser_56:
N
Niels 已提交
9925 9926 9927
                    yych = *++m_cursor;
                    if (yych == 'e')
                    {
N
Niels 已提交
9928
                        goto basic_json_parser_61;
N
Niels 已提交
9929
                    }
N
Niels 已提交
9930 9931
                    goto basic_json_parser_32;
basic_json_parser_57:
N
Niels 已提交
9932 9933
                    ++m_cursor;
                    if (m_limit <= m_cursor)
N
Niels 已提交
9934
                    {
N
cleanup  
Niels 已提交
9935
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9936
                    }
N
Niels 已提交
9937 9938
                    yych = *m_cursor;
                    if (yych <= '@')
N
Niels 已提交
9939
                    {
N
Niels 已提交
9940 9941
                        if (yych <= '/')
                        {
N
Niels 已提交
9942
                            goto basic_json_parser_32;
N
Niels 已提交
9943 9944 9945
                        }
                        if (yych <= '9')
                        {
N
Niels 已提交
9946
                            goto basic_json_parser_63;
N
Niels 已提交
9947
                        }
N
Niels 已提交
9948
                        goto basic_json_parser_32;
N
Niels 已提交
9949
                    }
N
Niels 已提交
9950
                    else
N
Niels 已提交
9951
                    {
N
Niels 已提交
9952 9953
                        if (yych <= 'F')
                        {
N
Niels 已提交
9954
                            goto basic_json_parser_63;
N
Niels 已提交
9955 9956 9957
                        }
                        if (yych <= '`')
                        {
N
Niels 已提交
9958
                            goto basic_json_parser_32;
N
Niels 已提交
9959 9960 9961
                        }
                        if (yych <= 'f')
                        {
N
Niels 已提交
9962
                            goto basic_json_parser_63;
N
Niels 已提交
9963
                        }
N
Niels 已提交
9964
                        goto basic_json_parser_32;
N
Niels 已提交
9965
                    }
N
Niels 已提交
9966
basic_json_parser_58:
N
Niels 已提交
9967 9968
                    yych = *++m_cursor;
                    if (yych == 'e')
N
Niels 已提交
9969
                    {
N
Niels 已提交
9970
                        goto basic_json_parser_64;
N
Niels 已提交
9971
                    }
N
Niels 已提交
9972 9973
                    goto basic_json_parser_32;
basic_json_parser_59:
N
Niels 已提交
9974
                    ++m_cursor;
N
Niels 已提交
9975
                    {
N
Niels 已提交
9976 9977
                        last_token_type = token_type::literal_null;
                        break;
N
Niels 已提交
9978
                    }
N
Niels 已提交
9979
basic_json_parser_61:
N
Niels 已提交
9980
                    ++m_cursor;
N
Niels 已提交
9981
                    {
N
Niels 已提交
9982 9983
                        last_token_type = token_type::literal_true;
                        break;
N
Niels 已提交
9984
                    }
N
Niels 已提交
9985
basic_json_parser_63:
N
Niels 已提交
9986 9987
                    ++m_cursor;
                    if (m_limit <= m_cursor)
N
Niels 已提交
9988
                    {
N
cleanup  
Niels 已提交
9989
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
9990
                    }
N
Niels 已提交
9991 9992
                    yych = *m_cursor;
                    if (yych <= '@')
N
Niels 已提交
9993
                    {
N
Niels 已提交
9994 9995
                        if (yych <= '/')
                        {
N
Niels 已提交
9996
                            goto basic_json_parser_32;
N
Niels 已提交
9997 9998 9999
                        }
                        if (yych <= '9')
                        {
N
Niels 已提交
10000
                            goto basic_json_parser_66;
N
Niels 已提交
10001
                        }
N
Niels 已提交
10002
                        goto basic_json_parser_32;
N
Niels 已提交
10003
                    }
N
Niels 已提交
10004
                    else
N
Niels 已提交
10005
                    {
N
Niels 已提交
10006 10007
                        if (yych <= 'F')
                        {
N
Niels 已提交
10008
                            goto basic_json_parser_66;
N
Niels 已提交
10009 10010 10011
                        }
                        if (yych <= '`')
                        {
N
Niels 已提交
10012
                            goto basic_json_parser_32;
N
Niels 已提交
10013 10014 10015
                        }
                        if (yych <= 'f')
                        {
N
Niels 已提交
10016
                            goto basic_json_parser_66;
N
Niels 已提交
10017
                        }
N
Niels 已提交
10018
                        goto basic_json_parser_32;
N
Niels 已提交
10019
                    }
N
Niels 已提交
10020
basic_json_parser_64:
N
Niels 已提交
10021
                    ++m_cursor;
N
Niels 已提交
10022
                    {
N
Niels 已提交
10023 10024
                        last_token_type = token_type::literal_false;
                        break;
N
Niels 已提交
10025
                    }
N
Niels 已提交
10026
basic_json_parser_66:
N
Niels 已提交
10027 10028
                    ++m_cursor;
                    if (m_limit <= m_cursor)
N
Niels 已提交
10029
                    {
N
cleanup  
Niels 已提交
10030
                        fill_line_buffer(1);    // LCOV_EXCL_LINE
N
Niels 已提交
10031
                    }
N
Niels 已提交
10032 10033
                    yych = *m_cursor;
                    if (yych <= '@')
N
Niels 已提交
10034
                    {
N
Niels 已提交
10035 10036
                        if (yych <= '/')
                        {
N
Niels 已提交
10037
                            goto basic_json_parser_32;
N
Niels 已提交
10038 10039 10040
                        }
                        if (yych <= '9')
                        {
N
Niels 已提交
10041
                            goto basic_json_parser_30;
N
Niels 已提交
10042
                        }
N
Niels 已提交
10043
                        goto basic_json_parser_32;
N
Niels 已提交
10044
                    }
N
Niels 已提交
10045
                    else
N
Niels 已提交
10046
                    {
N
Niels 已提交
10047 10048
                        if (yych <= 'F')
                        {
N
Niels 已提交
10049
                            goto basic_json_parser_30;
N
Niels 已提交
10050 10051 10052
                        }
                        if (yych <= '`')
                        {
N
Niels 已提交
10053
                            goto basic_json_parser_32;
N
Niels 已提交
10054 10055 10056
                        }
                        if (yych <= 'f')
                        {
N
Niels 已提交
10057
                            goto basic_json_parser_30;
N
Niels 已提交
10058
                        }
N
Niels 已提交
10059
                        goto basic_json_parser_32;
N
Niels 已提交
10060
                    }
N
Niels 已提交
10061
                }
N
Niels 已提交
10062

N
Niels 已提交
10063
            }
N
Niels 已提交
10064

N
Niels 已提交
10065
            return last_token_type;
N
Niels 已提交
10066 10067
        }

N
cleanup  
Niels 已提交
10068 10069 10070 10071 10072 10073 10074 10075
        /*!
        @brief append data from the stream to the line buffer

        This function is called by the scan() function when the end of the
        buffer (`m_limit`) is reached and the `m_cursor` pointer cannot be
        incremented without leaving the limits of the line buffer. Note re2c
        decides when to call this function.

10076 10077 10078 10079 10080 10081 10082
        If the lexer reads from contiguous storage, there is no trailing null
        byte. Therefore, this function must make sure to add these padding
        null bytes.

        If the lexer reads from an input stream, this function reads the next
        line of the input.

N
cleanup  
Niels 已提交
10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095
        @pre
            p p p p p p u u u u u x . . . . . .
            ^           ^       ^   ^
            m_content   m_start |   m_limit
                                m_cursor

        @post
            u u u u u x x x x x x x . . . . . .
            ^       ^               ^
            |       m_cursor        m_limit
            m_start
            m_content
        */
N
cleanup  
Niels 已提交
10096
        void fill_line_buffer(size_t n = 0)
N
Niels 已提交
10097
        {
N
Niels Lohmann 已提交
10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111
            // if line buffer is used, m_content points to its data
            assert(m_line_buffer.empty()
                   or m_content == reinterpret_cast<const lexer_char_t*>(m_line_buffer.data()));

            // if line buffer is used, m_limit is set past the end of its data
            assert(m_line_buffer.empty()
                   or m_limit == m_content + m_line_buffer.size());

            // pointer relationships
            assert(m_content <= m_start);
            assert(m_start <= m_cursor);
            assert(m_cursor <= m_limit);
            assert(m_marker == nullptr or m_marker  <= m_limit);

N
cleanup  
Niels 已提交
10112
            // number of processed characters (p)
N
Niels Lohmann 已提交
10113
            const size_t num_processed_chars = static_cast<size_t>(m_start - m_content);
N
cleanup  
Niels 已提交
10114
            // offset for m_marker wrt. to m_start
10115
            const auto offset_marker = (m_marker == nullptr) ? 0 : m_marker - m_start;
N
cleanup  
Niels 已提交
10116
            // number of unprocessed characters (u)
10117
            const auto offset_cursor = m_cursor - m_start;
N
Niels 已提交
10118

10119
            // no stream is used or end of file is reached
N
Niels 已提交
10120
            if (m_stream == nullptr or m_stream->eof())
10121
            {
N
Niels Lohmann 已提交
10122 10123 10124 10125
                // m_start may or may not be pointing into m_line_buffer at
                // this point. We trust the standand library to do the right
                // thing. See http://stackoverflow.com/q/28142011/266378
                m_line_buffer.assign(m_start, m_limit);
10126

N
cleanup  
Niels 已提交
10127 10128 10129
                // append n characters to make sure that there is sufficient
                // space between m_cursor and m_limit
                m_line_buffer.append(1, '\x00');
10130 10131 10132 10133
                if (n > 0)
                {
                    m_line_buffer.append(n - 1, '\x01');
                }
10134 10135 10136 10137
            }
            else
            {
                // delete processed characters from line buffer
N
Niels Lohmann 已提交
10138
                m_line_buffer.erase(0, num_processed_chars);
10139
                // read next line from input stream
N
Niels 已提交
10140 10141 10142
                m_line_buffer_tmp.clear();
                std::getline(*m_stream, m_line_buffer_tmp, '\n');

10143
                // add line with newline symbol to the line buffer
N
Niels 已提交
10144 10145
                m_line_buffer += m_line_buffer_tmp;
                m_line_buffer.push_back('\n');
10146
            }
N
Niels 已提交
10147

N
cleanup  
Niels 已提交
10148
            // set pointers
N
Niels Lohmann 已提交
10149
            m_content = reinterpret_cast<const lexer_char_t*>(m_line_buffer.data());
N
Niels 已提交
10150
            assert(m_content != nullptr);
N
Niels 已提交
10151 10152 10153
            m_start  = m_content;
            m_marker = m_start + offset_marker;
            m_cursor = m_start + offset_cursor;
10154
            m_limit  = m_start + m_line_buffer.size();
N
Niels 已提交
10155 10156
        }

N
Niels 已提交
10157
        /// return string representation of last read token
N
Niels 已提交
10158
        string_t get_token_string() const
N
Niels 已提交
10159
        {
N
Niels 已提交
10160
            assert(m_start != nullptr);
N
Niels 已提交
10161 10162
            return string_t(reinterpret_cast<typename string_t::const_pointer>(m_start),
                            static_cast<size_t>(m_cursor - m_start));
N
Niels 已提交
10163 10164 10165
        }

        /*!
N
Niels 已提交
10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176
        @brief return string value for string tokens

        The function iterates the characters between the opening and closing
        quotes of the string value. The complete string is the range
        [m_start,m_cursor). Consequently, we iterate from m_start+1 to
        m_cursor-1.

        We differentiate two cases:

        1. Escaped characters. In this case, a new character is constructed
           according to the nature of the escape. Some escapes create new
N
Niels 已提交
10177 10178
           characters (e.g., `"\\n"` is replaced by `"\n"`), some are copied
           as is (e.g., `"\\\\"`). Furthermore, Unicode escapes of the shape
N
Niels 已提交
10179 10180
           `"\\uxxxx"` need special care. In this case, to_unicode takes care
           of the construction of the values.
N
Niels 已提交
10181
        2. Unescaped characters are copied as is.
N
Niels 已提交
10182

N
Niels 已提交
10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197
        @pre `m_cursor - m_start >= 2`, meaning the length of the last token
        is at least 2 bytes which is trivially true for any string (which
        consists of at least two quotes).

            " c1 c2 c3 ... "
            ^                ^
            m_start          m_cursor

        @complexity Linear in the length of the string.\n

        Lemma: The loop body will always terminate.\n

        Proof (by contradiction): Assume the loop body does not terminate. As
        the loop body does not contain another loop, one of the called
        functions must never return. The called functions are `std::strtoul`
N
Niels 已提交
10198 10199 10200
        and to_unicode. Neither function can loop forever, so the loop body
        will never loop forever which contradicts the assumption that the loop
        body does not terminate, q.e.d.\n
N
Niels 已提交
10201 10202 10203 10204 10205 10206 10207

        Lemma: The loop condition for the for loop is eventually false.\n

        Proof (by contradiction): Assume the loop does not terminate. Due to
        the above lemma, this can only be due to a tautological loop
        condition; that is, the loop condition i < m_cursor - 1 must always be
        true. Let x be the change of i for any loop iteration. Then
N
Niels 已提交
10208 10209
        m_start + 1 + x < m_cursor - 1 must hold to loop indefinitely. This
        can be rephrased to m_cursor - m_start - 2 > x. With the
N
Niels 已提交
10210
        precondition, we x <= 0, meaning that the loop condition holds
N
Niels 已提交
10211 10212 10213 10214 10215 10216
        indefinitly if i is always decreased. However, observe that the value
        of i is strictly increasing with each iteration, as it is incremented
        by 1 in the iteration expression and never decremented inside the loop
        body. Hence, the loop condition will eventually be false which
        contradicts the assumption that the loop condition is a tautology,
        q.e.d.
N
Niels 已提交
10217

N
Niels 已提交
10218 10219
        @return string value of current token without opening and closing
        quotes
N
Niels 已提交
10220
        @throw std::out_of_range if to_unicode fails
N
Niels 已提交
10221
        */
N
Niels 已提交
10222
        string_t get_string() const
N
Niels 已提交
10223
        {
N
Niels 已提交
10224 10225
            assert(m_cursor - m_start >= 2);

N
Niels 已提交
10226
            string_t result;
N
Niels 已提交
10227 10228 10229
            result.reserve(static_cast<size_t>(m_cursor - m_start - 2));

            // iterate the result between the quotes
N
Niels 已提交
10230
            for (const lexer_char_t* i = m_start + 1; i < m_cursor - 1; ++i)
N
Niels 已提交
10231
            {
10232 10233 10234
                // find next escape character
                auto e = std::find(i, m_cursor - 1, '\\');
                if (e != i)
N
Niels 已提交
10235
                {
N
Niels Lohmann 已提交
10236 10237 10238 10239 10240
                    // see https://github.com/nlohmann/json/issues/365#issuecomment-262874705
                    for (auto k = i; k < e; k++)
                    {
                        result.push_back(static_cast<typename string_t::value_type>(*k));
                    }
10241
                    i = e - 1; // -1 because of ++i
N
Niels 已提交
10242 10243 10244 10245
                }
                else
                {
                    // processing escaped character
N
Niels 已提交
10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278
                    // read next character
                    ++i;

                    switch (*i)
                    {
                        // the default escapes
                        case 't':
                        {
                            result += "\t";
                            break;
                        }
                        case 'b':
                        {
                            result += "\b";
                            break;
                        }
                        case 'f':
                        {
                            result += "\f";
                            break;
                        }
                        case 'n':
                        {
                            result += "\n";
                            break;
                        }
                        case 'r':
                        {
                            result += "\r";
                            break;
                        }
                        case '\\':
                        {
N
Niels 已提交
10279
                            result += "\\";
N
Niels 已提交
10280 10281 10282 10283
                            break;
                        }
                        case '/':
                        {
N
Niels 已提交
10284
                            result += "/";
N
Niels 已提交
10285 10286 10287 10288
                            break;
                        }
                        case '"':
                        {
N
Niels 已提交
10289
                            result += "\"";
N
Niels 已提交
10290 10291 10292 10293 10294 10295
                            break;
                        }

                        // unicode
                        case 'u':
                        {
N
Niels 已提交
10296
                            // get code xxxx from uxxxx
N
Niels 已提交
10297 10298
                            auto codepoint = std::strtoul(std::string(reinterpret_cast<typename string_t::const_pointer>(i + 1),
                                                          4).c_str(), nullptr, 16);
N
Niels 已提交
10299

N
Niels 已提交
10300
                            // check if codepoint is a high surrogate
N
Niels 已提交
10301 10302
                            if (codepoint >= 0xD800 and codepoint <= 0xDBFF)
                            {
N
Niels 已提交
10303
                                // make sure there is a subsequent unicode
N
Niels 已提交
10304
                                if ((i + 6 >= m_limit) or * (i + 5) != '\\' or * (i + 6) != 'u')
N
Niels 已提交
10305 10306 10307 10308
                                {
                                    throw std::invalid_argument("missing low surrogate");
                                }

N
Niels 已提交
10309
                                // get code yyyy from uxxxx\uyyyy
N
Niels 已提交
10310 10311
                                auto codepoint2 = std::strtoul(std::string(reinterpret_cast<typename string_t::const_pointer>
                                                               (i + 7), 4).c_str(), nullptr, 16);
N
Niels 已提交
10312
                                result += to_unicode(codepoint, codepoint2);
10313 10314
                                // skip the next 10 characters (xxxx\uyyyy)
                                i += 10;
N
Niels 已提交
10315
                            }
N
Niels 已提交
10316 10317 10318 10319 10320
                            else if (codepoint >= 0xDC00 and codepoint <= 0xDFFF)
                            {
                                // we found a lone low surrogate
                                throw std::invalid_argument("missing high surrogate");
                            }
N
Niels 已提交
10321 10322 10323 10324 10325 10326 10327
                            else
                            {
                                // add unicode character(s)
                                result += to_unicode(codepoint);
                                // skip the next four characters (xxxx)
                                i += 4;
                            }
N
Niels 已提交
10328 10329 10330 10331 10332 10333 10334
                            break;
                        }
                    }
                }
            }

            return result;
N
Niels 已提交
10335 10336
        }

10337 10338 10339 10340
        /*!
        @brief parse floating point number

        This function (and its overloads) serves to select the most approprate
10341
        standard floating point number parsing function based on the type
N
Niels 已提交
10342 10343
        supplied via the first parameter.  Set this to @a
        static_cast<number_float_t*>(nullptr).
10344

N
Niels 已提交
10345
        @param[in] type  the @ref number_float_t in use
10346

N
Niels 已提交
10347 10348
        @param[in,out] endptr recieves a pointer to the first character after
        the number
10349 10350 10351

        @return the floating point number
        */
10352
        long double str_to_float_t(long double* /* type */, char** endptr) const
10353 10354 10355 10356
        {
            return std::strtold(reinterpret_cast<typename string_t::const_pointer>(m_start), endptr);
        }

10357 10358 10359 10360 10361
        /*!
        @brief parse floating point number

        This function (and its overloads) serves to select the most approprate
        standard floating point number parsing function based on the type
N
Niels 已提交
10362 10363
        supplied via the first parameter.  Set this to @a
        static_cast<number_float_t*>(nullptr).
10364

N
Niels 已提交
10365
        @param[in] type  the @ref number_float_t in use
10366

N
Niels 已提交
10367 10368
        @param[in,out] endptr  recieves a pointer to the first character after
        the number
10369 10370 10371

        @return the floating point number
        */
10372
        double str_to_float_t(double* /* type */, char** endptr) const
10373 10374 10375 10376
        {
            return std::strtod(reinterpret_cast<typename string_t::const_pointer>(m_start), endptr);
        }

10377 10378 10379 10380 10381
        /*!
        @brief parse floating point number

        This function (and its overloads) serves to select the most approprate
        standard floating point number parsing function based on the type
N
Niels 已提交
10382 10383
        supplied via the first parameter.  Set this to @a
        static_cast<number_float_t*>(nullptr).
10384

N
Niels 已提交
10385
        @param[in] type  the @ref number_float_t in use
10386

N
Niels 已提交
10387 10388
        @param[in,out] endptr  recieves a pointer to the first character after
        the number
10389 10390 10391

        @return the floating point number
        */
10392
        float str_to_float_t(float* /* type */, char** endptr) const
10393 10394 10395 10396
        {
            return std::strtof(reinterpret_cast<typename string_t::const_pointer>(m_start), endptr);
        }

10397 10398
        /*!
        @brief return number value for number tokens
N
Niels 已提交
10399

N
Niels 已提交
10400
        This function translates the last token into the most appropriate
N
Niels 已提交
10401 10402 10403 10404 10405 10406
        number type (either integer, unsigned integer or floating point),
        which is passed back to the caller via the result parameter.

        This function parses the integer component up to the radix point or
        exponent while collecting information about the 'floating point
        representation', which it stores in the result parameter. If there is
N
Niels 已提交
10407 10408 10409
        no radix point or exponent, and the number can fit into a @ref
        number_integer_t or @ref number_unsigned_t then it sets the result
        parameter accordingly.
N
Niels 已提交
10410 10411 10412 10413 10414

        If the number is a floating point number the number is then parsed
        using @a std:strtod (or @a std:strtof or @a std::strtold).

        @param[out] result  @ref basic_json object to receive the number, or
N
Niels 已提交
10415 10416
        NAN if the conversion read past the current token. The latter case
        needs to be treated by the caller function.
N
Niels 已提交
10417
        */
10418
        void get_number(basic_json& result) const
N
Niels 已提交
10419
        {
N
Niels 已提交
10420
            assert(m_start != nullptr);
N
Niels 已提交
10421

N
Niels 已提交
10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434
            const lexer::lexer_char_t* curptr = m_start;

            // accumulate the integer conversion result (unsigned for now)
            number_unsigned_t value = 0;

            // maximum absolute value of the relevant integer type
            number_unsigned_t max;

            // temporarily store the type to avoid unecessary bitfield access
            value_t type;

            // look for sign
            if (*curptr == '-')
10435
            {
N
Niels 已提交
10436
                type = value_t::number_integer;
N
Niels 已提交
10437
                max = static_cast<uint64_t>((std::numeric_limits<number_integer_t>::max)()) + 1;
N
Niels 已提交
10438 10439 10440 10441 10442
                curptr++;
            }
            else
            {
                type = value_t::number_unsigned;
T
Tom Needham 已提交
10443
                max = static_cast<uint64_t>((std::numeric_limits<number_unsigned_t>::max)());
10444
            }
N
Niels 已提交
10445 10446 10447

            // count the significant figures
            for (; curptr < m_cursor; curptr++)
10448
            {
N
Niels 已提交
10449 10450
                // quickly skip tests if a digit
                if (*curptr < '0' || *curptr > '9')
N
Niels 已提交
10451
                {
N
Niels 已提交
10452 10453 10454 10455 10456 10457 10458 10459 10460 10461
                    if (*curptr == '.')
                    {
                        // don't count '.' but change to float
                        type = value_t::number_float;
                        continue;
                    }
                    // assume exponent (if not then will fail parse): change to
                    // float, stop counting and record exponent details
                    type = value_t::number_float;
                    break;
N
Niels 已提交
10462
                }
N
Niels 已提交
10463 10464 10465

                // skip if definitely not an integer
                if (type != value_t::number_float)
N
Niels 已提交
10466
                {
N
Niels 已提交
10467
                    // multiply last value by ten and add the new digit
N
Niels 已提交
10468
                    auto temp = value * 10 + *curptr - '0';
N
Niels 已提交
10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480

                    // test for overflow
                    if (temp < value || temp > max)
                    {
                        // overflow
                        type = value_t::number_float;
                    }
                    else
                    {
                        // no overflow - save it
                        value = temp;
                    }
N
Niels 已提交
10481
                }
10482
            }
N
Niels 已提交
10483

N
Niels 已提交
10484 10485
            // save the value (if not a float)
            if (type == value_t::number_unsigned)
N
Niels 已提交
10486
            {
N
Niels 已提交
10487
                result.m_value.number_unsigned = value;
N
Niels 已提交
10488
            }
N
Niels 已提交
10489 10490 10491 10492 10493
            else if (type == value_t::number_integer)
            {
                result.m_value.number_integer = -static_cast<number_integer_t>(value);
            }
            else
10494
            {
N
Niels 已提交
10495
                // parse with strtod
N
Niels 已提交
10496
                result.m_value.number_float = str_to_float_t(static_cast<number_float_t*>(nullptr), NULL);
N
Niels 已提交
10497 10498 10499 10500 10501 10502 10503

                // replace infinity and NAN by null
                if (not std::isfinite(result.m_value.number_float))
                {
                    type = value_t::null;
                    result.m_value = basic_json::json_value();
                }
10504
            }
N
Niels 已提交
10505 10506 10507

            // save the type
            result.m_type = type;
N
Niels 已提交
10508 10509 10510
        }

      private:
N
Niels 已提交
10511
        /// optional input stream
N
Niels 已提交
10512
        std::istream* m_stream = nullptr;
N
cleanup  
Niels 已提交
10513 10514
        /// line buffer buffer for m_stream
        string_t m_line_buffer {};
N
Niels 已提交
10515 10516
        /// used for filling m_line_buffer
        string_t m_line_buffer_tmp {};
N
Niels 已提交
10517
        /// the buffer pointer
N
Niels 已提交
10518
        const lexer_char_t* m_content = nullptr;
N
Niels 已提交
10519
        /// pointer to the beginning of the current symbol
N
Niels 已提交
10520
        const lexer_char_t* m_start = nullptr;
N
Niels 已提交
10521 10522
        /// pointer for backtracking information
        const lexer_char_t* m_marker = nullptr;
N
fixes  
Niels 已提交
10523
        /// pointer to the current symbol
N
Niels 已提交
10524
        const lexer_char_t* m_cursor = nullptr;
N
fixes  
Niels 已提交
10525
        /// pointer to the end of the buffer
N
Niels 已提交
10526
        const lexer_char_t* m_limit = nullptr;
N
Niels 已提交
10527 10528
        /// the last token type
        token_type last_token_type = token_type::end_of_input;
N
Niels 已提交
10529 10530
    };

N
Niels 已提交
10531 10532
    /*!
    @brief syntax analysis
N
Niels 已提交
10533 10534

    This class implements a recursive decent parser.
N
Niels 已提交
10535
    */
N
Niels 已提交
10536 10537 10538
    class parser
    {
      public:
10539
        /// a parser reading from a string literal
N
Niels 已提交
10540
        parser(const char* buff, const parser_callback_t cb = nullptr)
N
cleanup  
Niels 已提交
10541
            : callback(cb),
N
Niels 已提交
10542
              m_lexer(reinterpret_cast<const typename lexer::lexer_char_t*>(buff), std::strlen(buff))
N
cleanup  
Niels 已提交
10543
        {}
10544

N
Niels 已提交
10545
        /// a parser reading from an input stream
N
cleanup  
Niels 已提交
10546
        parser(std::istream& is, const parser_callback_t cb = nullptr)
10547
            : callback(cb), m_lexer(is)
N
cleanup  
Niels 已提交
10548
        {}
10549

N
Niels 已提交
10550
        /// a parser reading from an iterator range with contiguous storage
N
Niels 已提交
10551 10552 10553 10554
        template<class IteratorType, typename std::enable_if<
                     std::is_same<typename std::iterator_traits<IteratorType>::iterator_category, std::random_access_iterator_tag>::value
                     , int>::type
                 = 0>
N
cleanup  
Niels 已提交
10555
        parser(IteratorType first, IteratorType last, const parser_callback_t cb = nullptr)
10556 10557 10558
            : callback(cb),
              m_lexer(reinterpret_cast<const typename lexer::lexer_char_t*>(&(*first)),
                      static_cast<size_t>(std::distance(first, last)))
10559
        {}
N
Niels 已提交
10560

N
Niels 已提交
10561
        /// public parser interface
N
Niels 已提交
10562
        basic_json parse()
N
Niels 已提交
10563
        {
N
cleanup  
Niels 已提交
10564 10565 10566
            // read first token
            get_token();

N
Niels 已提交
10567
            basic_json result = parse_internal(true);
10568
            result.assert_invariant();
N
Niels 已提交
10569 10570 10571

            expect(lexer::token_type::end_of_input);

N
Niels 已提交
10572 10573
            // return parser result and replace it with null in case the
            // top-level value was discarded by the callback function
10574
            return result.is_discarded() ? basic_json() : std::move(result);
N
Niels 已提交
10575 10576 10577 10578
        }

      private:
        /// the actual parser
N
Niels 已提交
10579
        basic_json parse_internal(bool keep)
N
Niels 已提交
10580
        {
N
Niels 已提交
10581 10582
            auto result = basic_json(value_t::discarded);

N
Niels 已提交
10583 10584
            switch (last_token)
            {
10585
                case lexer::token_type::begin_object:
N
Niels 已提交
10586
                {
N
Niels 已提交
10587 10588
                    if (keep and (not callback
                                  or ((keep = callback(depth++, parse_event_t::object_start, result)) != 0)))
N
Niels 已提交
10589 10590
                    {
                        // explicitly set result to object to cope with {}
N
Niels 已提交
10591
                        result.m_type = value_t::object;
10592
                        result.m_value = value_t::object;
N
Niels 已提交
10593
                    }
N
Niels 已提交
10594 10595 10596 10597 10598 10599 10600

                    // read next token
                    get_token();

                    // closing } -> we are done
                    if (last_token == lexer::token_type::end_object)
                    {
N
Niels 已提交
10601
                        get_token();
N
Niels 已提交
10602
                        if (keep and callback and not callback(--depth, parse_event_t::object_end, result))
N
Niels 已提交
10603 10604 10605
                        {
                            result = basic_json(value_t::discarded);
                        }
N
Niels 已提交
10606
                        return result;
N
Niels 已提交
10607 10608
                    }

N
Niels 已提交
10609 10610 10611
                    // no comma is expected here
                    unexpect(lexer::token_type::value_separator);

N
Niels 已提交
10612 10613 10614
                    // otherwise: parse key-value pairs
                    do
                    {
N
Niels 已提交
10615 10616 10617 10618 10619 10620
                        // ugly, but could be fixed with loop reorganization
                        if (last_token == lexer::token_type::value_separator)
                        {
                            get_token();
                        }

N
Niels 已提交
10621 10622 10623 10624
                        // store key
                        expect(lexer::token_type::value_string);
                        const auto key = m_lexer.get_string();

N
Niels 已提交
10625 10626 10627
                        bool keep_tag = false;
                        if (keep)
                        {
N
Niels 已提交
10628 10629 10630 10631 10632 10633 10634 10635 10636
                            if (callback)
                            {
                                basic_json k(key);
                                keep_tag = callback(depth, parse_event_t::key, k);
                            }
                            else
                            {
                                keep_tag = true;
                            }
N
Niels 已提交
10637 10638
                        }

N
Niels 已提交
10639 10640 10641 10642
                        // parse separator (:)
                        get_token();
                        expect(lexer::token_type::name_separator);

10643
                        // parse and add value
N
Niels 已提交
10644
                        get_token();
N
Niels 已提交
10645 10646 10647
                        auto value = parse_internal(keep);
                        if (keep and keep_tag and not value.is_discarded())
                        {
N
Niels 已提交
10648
                            result[key] = std::move(value);
N
Niels 已提交
10649
                        }
N
Niels 已提交
10650
                    }
N
Niels 已提交
10651
                    while (last_token == lexer::token_type::value_separator);
N
Niels 已提交
10652 10653 10654

                    // closing }
                    expect(lexer::token_type::end_object);
N
Niels 已提交
10655
                    get_token();
N
Niels 已提交
10656
                    if (keep and callback and not callback(--depth, parse_event_t::object_end, result))
N
Niels 已提交
10657 10658 10659
                    {
                        result = basic_json(value_t::discarded);
                    }
N
Niels 已提交
10660 10661

                    return result;
N
Niels 已提交
10662 10663
                }

10664
                case lexer::token_type::begin_array:
N
Niels 已提交
10665
                {
N
Niels 已提交
10666 10667
                    if (keep and (not callback
                                  or ((keep = callback(depth++, parse_event_t::array_start, result)) != 0)))
N
Niels 已提交
10668 10669
                    {
                        // explicitly set result to object to cope with []
N
Niels 已提交
10670
                        result.m_type = value_t::array;
10671
                        result.m_value = value_t::array;
N
Niels 已提交
10672
                    }
N
Niels 已提交
10673 10674 10675 10676 10677 10678 10679

                    // read next token
                    get_token();

                    // closing ] -> we are done
                    if (last_token == lexer::token_type::end_array)
                    {
N
Niels 已提交
10680
                        get_token();
N
Niels 已提交
10681
                        if (callback and not callback(--depth, parse_event_t::array_end, result))
N
Niels 已提交
10682 10683 10684
                        {
                            result = basic_json(value_t::discarded);
                        }
N
Niels 已提交
10685
                        return result;
N
Niels 已提交
10686 10687
                    }

N
Niels 已提交
10688 10689 10690
                    // no comma is expected here
                    unexpect(lexer::token_type::value_separator);

N
Niels 已提交
10691 10692 10693
                    // otherwise: parse values
                    do
                    {
N
Niels 已提交
10694 10695 10696 10697 10698
                        // ugly, but could be fixed with loop reorganization
                        if (last_token == lexer::token_type::value_separator)
                        {
                            get_token();
                        }
N
Niels 已提交
10699

N
Niels 已提交
10700 10701 10702 10703
                        // parse value
                        auto value = parse_internal(keep);
                        if (keep and not value.is_discarded())
                        {
N
Niels 已提交
10704
                            result.push_back(std::move(value));
N
Niels 已提交
10705
                        }
N
Niels 已提交
10706
                    }
N
Niels 已提交
10707
                    while (last_token == lexer::token_type::value_separator);
N
Niels 已提交
10708 10709 10710

                    // closing ]
                    expect(lexer::token_type::end_array);
N
Niels 已提交
10711
                    get_token();
N
Niels 已提交
10712
                    if (keep and callback and not callback(--depth, parse_event_t::array_end, result))
N
Niels 已提交
10713 10714 10715
                    {
                        result = basic_json(value_t::discarded);
                    }
N
Niels 已提交
10716 10717

                    return result;
N
Niels 已提交
10718 10719
                }

10720
                case lexer::token_type::literal_null:
N
Niels 已提交
10721
                {
N
Niels 已提交
10722
                    get_token();
N
Niels 已提交
10723
                    result.m_type = value_t::null;
N
Niels 已提交
10724
                    break;
N
Niels 已提交
10725 10726
                }

10727
                case lexer::token_type::value_string:
N
Niels 已提交
10728
                {
N
Niels 已提交
10729
                    const auto s = m_lexer.get_string();
N
Niels 已提交
10730
                    get_token();
N
Niels 已提交
10731 10732
                    result = basic_json(s);
                    break;
N
Niels 已提交
10733 10734
                }

10735
                case lexer::token_type::literal_true:
N
Niels 已提交
10736
                {
N
Niels 已提交
10737
                    get_token();
N
Niels 已提交
10738 10739
                    result.m_type = value_t::boolean;
                    result.m_value = true;
N
Niels 已提交
10740
                    break;
N
Niels 已提交
10741 10742
                }

10743
                case lexer::token_type::literal_false:
N
Niels 已提交
10744
                {
N
Niels 已提交
10745
                    get_token();
N
Niels 已提交
10746 10747
                    result.m_type = value_t::boolean;
                    result.m_value = false;
N
Niels 已提交
10748
                    break;
N
Niels 已提交
10749 10750
                }

10751
                case lexer::token_type::value_number:
N
Niels 已提交
10752
                {
10753
                    m_lexer.get_number(result);
N
Niels 已提交
10754
                    get_token();
N
Niels 已提交
10755
                    break;
N
Niels 已提交
10756 10757 10758 10759
                }

                default:
                {
N
Niels 已提交
10760 10761
                    // the last token was unexpected
                    unexpect(last_token);
N
Niels 已提交
10762 10763
                }
            }
N
Niels 已提交
10764

N
Niels 已提交
10765
            if (keep and callback and not callback(depth, parse_event_t::value, result))
N
Niels 已提交
10766 10767 10768 10769
            {
                result = basic_json(value_t::discarded);
            }
            return result;
N
Niels 已提交
10770 10771 10772
        }

        /// get next token from lexer
N
cleanup  
Niels 已提交
10773
        typename lexer::token_type get_token()
N
Niels 已提交
10774 10775 10776 10777 10778
        {
            last_token = m_lexer.scan();
            return last_token;
        }

N
Niels 已提交
10779
        void expect(typename lexer::token_type t) const
N
Niels 已提交
10780 10781 10782
        {
            if (t != last_token)
            {
N
Niels 已提交
10783
                std::string error_msg = "parse error - unexpected ";
N
Niels 已提交
10784 10785
                error_msg += (last_token == lexer::token_type::parse_error ? ("'" +  m_lexer.get_token_string() +
                              "'") :
N
Niels 已提交
10786 10787
                              lexer::token_type_name(last_token));
                error_msg += "; expected " + lexer::token_type_name(t);
N
Niels 已提交
10788 10789 10790 10791
                throw std::invalid_argument(error_msg);
            }
        }

N
Niels 已提交
10792
        void unexpect(typename lexer::token_type t) const
N
Niels 已提交
10793 10794 10795
        {
            if (t == last_token)
            {
N
Niels 已提交
10796
                std::string error_msg = "parse error - unexpected ";
N
Niels 已提交
10797 10798
                error_msg += (last_token == lexer::token_type::parse_error ? ("'" +  m_lexer.get_token_string() +
                              "'") :
N
Niels 已提交
10799
                              lexer::token_type_name(last_token));
N
Niels 已提交
10800 10801 10802 10803
                throw std::invalid_argument(error_msg);
            }
        }

N
Niels 已提交
10804
      private:
N
Niels 已提交
10805
        /// current level of recursion
N
Niels 已提交
10806 10807
        int depth = 0;
        /// callback function
N
Niels 已提交
10808
        const parser_callback_t callback = nullptr;
N
Niels 已提交
10809
        /// the type of the last read token
N
Niels 已提交
10810
        typename lexer::token_type last_token = lexer::token_type::uninitialized;
N
Niels 已提交
10811
        /// the lexer
N
Niels 已提交
10812
        lexer m_lexer;
N
Niels 已提交
10813
    };
N
Niels 已提交
10814 10815

  public:
N
Niels 已提交
10816 10817 10818
    /*!
    @brief JSON Pointer

N
Niels 已提交
10819 10820 10821 10822
    A JSON pointer defines a string syntax for identifying a specific value
    within a JSON document. It can be used with functions `at` and
    `operator[]`. Furthermore, JSON pointers are the base for JSON patches.

N
Niels 已提交
10823
    @sa [RFC 6901](https://tools.ietf.org/html/rfc6901)
N
Niels 已提交
10824 10825

    @since version 2.0.0
N
Niels 已提交
10826
    */
N
Niels 已提交
10827 10828
    class json_pointer
    {
N
Niels 已提交
10829 10830 10831
        /// allow basic_json to access private members
        friend class basic_json;

N
Niels 已提交
10832
      public:
N
Niels 已提交
10833 10834 10835 10836 10837 10838 10839 10840 10841 10842
        /*!
        @brief create JSON pointer

        Create a JSON pointer according to the syntax described in
        [Section 3 of RFC6901](https://tools.ietf.org/html/rfc6901#section-3).

        @param[in] s  string representing the JSON pointer; if omitted, the
                      empty string is assumed which references the whole JSON
                      value

N
Niels 已提交
10843 10844 10845 10846 10847 10848
        @throw std::domain_error if reference token is nonempty and does not
        begin with a slash (`/`); example: `"JSON pointer must be empty or
        begin with /"`
        @throw std::domain_error if a tilde (`~`) is not followed by `0`
        (representing `~`) or `1` (representing `/`); example: `"escape error:
        ~ must be followed with 0 or 1"`
N
Niels 已提交
10849 10850 10851

        @liveexample{The example shows the construction several valid JSON
        pointers as well as the exceptional behavior.,json_pointer}
N
Niels 已提交
10852

N
Niels 已提交
10853 10854 10855
        @since version 2.0.0
        */
        explicit json_pointer(const std::string& s = "")
N
Niels 已提交
10856 10857
            : reference_tokens(split(s))
        {}
N
Niels 已提交
10858

N
Niels 已提交
10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875
        /*!
        @brief return a string representation of the JSON pointer

        @invariant For each JSON pointer `ptr`, it holds:
        @code {.cpp}
        ptr == json_pointer(ptr.to_string());
        @endcode

        @return a string representation of the JSON pointer

        @liveexample{The example shows the result of `to_string`.,
        json_pointer__to_string}

        @since version 2.0.0
        */
        std::string to_string() const noexcept
        {
N
Niels 已提交
10876 10877
            return std::accumulate(reference_tokens.begin(),
                                   reference_tokens.end(), std::string{},
N
Niels 已提交
10878
                                   [](const std::string & a, const std::string & b)
N
Niels 已提交
10879
            {
N
Niels 已提交
10880 10881
                return a + "/" + escape(b);
            });
N
Niels 已提交
10882 10883 10884 10885
        }

        /// @copydoc to_string()
        operator std::string() const
N
Niels 已提交
10886
        {
N
Niels 已提交
10887
            return to_string();
N
Niels 已提交
10888 10889
        }

N
Niels 已提交
10890
      private:
N
Niels 已提交
10891
        /// remove and return last reference pointer
N
Niels 已提交
10892 10893
        std::string pop_back()
        {
N
Niels 已提交
10894
            if (is_root())
N
Niels 已提交
10895 10896 10897 10898 10899 10900 10901 10902 10903
            {
                throw std::domain_error("JSON pointer has no parent");
            }

            auto last = reference_tokens.back();
            reference_tokens.pop_back();
            return last;
        }

N
Niels 已提交
10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921
        /// return whether pointer points to the root document
        bool is_root() const
        {
            return reference_tokens.empty();
        }

        json_pointer top() const
        {
            if (is_root())
            {
                throw std::domain_error("JSON pointer has no parent");
            }

            json_pointer result = *this;
            result.reference_tokens = {reference_tokens[0]};
            return result;
        }

N
Niels 已提交
10922 10923
        /*!
        @brief create and return a reference to the pointed to value
N
Niels 已提交
10924 10925

        @complexity Linear in the number of reference tokens.
N
Niels 已提交
10926 10927
        */
        reference get_and_create(reference j) const
N
Niels 已提交
10928
        {
10929
            pointer result = &j;
N
Niels 已提交
10930

N
Niels 已提交
10931 10932
            // in case no reference tokens exist, return a reference to the
            // JSON value j which will be overwritten by a primitive value
N
Niels 已提交
10933 10934
            for (const auto& reference_token : reference_tokens)
            {
10935
                switch (result->m_type)
N
Niels 已提交
10936
                {
N
Niels 已提交
10937 10938 10939 10940
                    case value_t::null:
                    {
                        if (reference_token == "0")
                        {
N
Niels 已提交
10941
                            // start a new array if reference token is 0
N
Niels 已提交
10942 10943 10944 10945
                            result = &result->operator[](0);
                        }
                        else
                        {
N
Niels 已提交
10946
                            // start a new object otherwise
N
Niels 已提交
10947 10948
                            result = &result->operator[](reference_token);
                        }
N
Niels 已提交
10949
                        break;
N
Niels 已提交
10950 10951
                    }

N
Niels 已提交
10952
                    case value_t::object:
N
Niels 已提交
10953
                    {
N
Niels 已提交
10954
                        // create an entry in the object
N
Niels 已提交
10955
                        result = &result->operator[](reference_token);
N
Niels 已提交
10956
                        break;
N
Niels 已提交
10957
                    }
N
Niels 已提交
10958 10959

                    case value_t::array:
N
Niels 已提交
10960
                    {
N
Niels 已提交
10961
                        // create an entry in the array
N
Niels 已提交
10962
                        result = &result->operator[](static_cast<size_type>(std::stoi(reference_token)));
N
Niels 已提交
10963
                        break;
N
Niels 已提交
10964
                    }
N
Niels 已提交
10965

N
Niels 已提交
10966
                    /*
N
Niels 已提交
10967 10968 10969 10970 10971
                    The following code is only reached if there exists a
                    reference token _and_ the current value is primitive. In
                    this case, we have an error situation, because primitive
                    values may only occur as single value; that is, with an
                    empty list of reference tokens.
N
Niels 已提交
10972
                    */
N
Niels 已提交
10973
                    default:
N
Niels 已提交
10974
                    {
N
Niels 已提交
10975
                        throw std::domain_error("invalid value to unflatten");
N
Niels 已提交
10976
                    }
N
Niels 已提交
10977 10978 10979
                }
            }

10980 10981 10982
            return *result;
        }

N
Niels 已提交
10983 10984 10985
        /*!
        @brief return a reference to the pointed to value

N
Niels 已提交
10986 10987 10988 10989 10990 10991
        @note This version does not throw if a value is not present, but tries
        to create nested values instead. For instance, calling this function
        with pointer `"/this/that"` on a null value is equivalent to calling
        `operator[]("this").operator[]("that")` on that value, effectively
        changing the null value to an object.

N
Niels 已提交
10992 10993 10994 10995 10996 10997
        @param[in] ptr  a JSON value

        @return reference to the JSON value pointed to by the JSON pointer

        @complexity Linear in the length of the JSON pointer.

10998 10999 11000
        @throw std::out_of_range      if the JSON pointer can not be resolved
        @throw std::domain_error      if an array index begins with '0'
        @throw std::invalid_argument  if an array index was not a number
N
Niels 已提交
11001 11002
        */
        reference get_unchecked(pointer ptr) const
N
Niels 已提交
11003
        {
N
Niels 已提交
11004 11005
            for (const auto& reference_token : reference_tokens)
            {
N
Niels 已提交
11006 11007
                // convert null values to arrays or objects before continuing
                if (ptr->m_type == value_t::null)
N
Niels 已提交
11008
                {
N
Niels 已提交
11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026
                    // check if reference token is a number
                    const bool nums = std::all_of(reference_token.begin(),
                                                  reference_token.end(),
                                                  [](const char x)
                    {
                        return std::isdigit(x);
                    });

                    // change value to array for numbers or "-" or to object
                    // otherwise
                    if (nums or reference_token == "-")
                    {
                        *ptr = value_t::array;
                    }
                    else
                    {
                        *ptr = value_t::object;
                    }
N
Niels 已提交
11027 11028
                }

N
Niels 已提交
11029 11030 11031 11032
                switch (ptr->m_type)
                {
                    case value_t::object:
                    {
11033
                        // use unchecked object access
N
Niels 已提交
11034 11035 11036 11037 11038 11039
                        ptr = &ptr->operator[](reference_token);
                        break;
                    }

                    case value_t::array:
                    {
N
Niels 已提交
11040 11041 11042 11043 11044 11045
                        // error condition (cf. RFC 6901, Sect. 4)
                        if (reference_token.size() > 1 and reference_token[0] == '0')
                        {
                            throw std::domain_error("array index must not begin with '0'");
                        }

N
Niels 已提交
11046 11047
                        if (reference_token == "-")
                        {
11048
                            // explicityly treat "-" as index beyond the end
N
Niels 已提交
11049 11050 11051 11052
                            ptr = &ptr->operator[](ptr->m_value.array->size());
                        }
                        else
                        {
11053
                            // convert array index to number; unchecked access
N
Niels 已提交
11054
                            ptr = &ptr->operator[](static_cast<size_type>(std::stoi(reference_token)));
N
Niels 已提交
11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067
                        }
                        break;
                    }

                    default:
                    {
                        throw std::out_of_range("unresolved reference token '" + reference_token + "'");
                    }
                }
            }

            return *ptr;
        }
N
Niels 已提交
11068

N
Niels 已提交
11069 11070
        reference get_checked(pointer ptr) const
        {
N
Niels 已提交
11071 11072
            for (const auto& reference_token : reference_tokens)
            {
N
Niels 已提交
11073
                switch (ptr->m_type)
N
Niels 已提交
11074
                {
N
Niels 已提交
11075
                    case value_t::object:
N
Niels 已提交
11076
                    {
11077
                        // note: at performs range check
N
Niels 已提交
11078 11079 11080 11081 11082 11083 11084
                        ptr = &ptr->at(reference_token);
                        break;
                    }

                    case value_t::array:
                    {
                        if (reference_token == "-")
N
Niels 已提交
11085
                        {
11086 11087 11088 11089
                            // "-" always fails the range check
                            throw std::out_of_range("array index '-' (" +
                                                    std::to_string(ptr->m_value.array->size()) +
                                                    ") is out of range");
N
Niels 已提交
11090
                        }
11091 11092 11093

                        // error condition (cf. RFC 6901, Sect. 4)
                        if (reference_token.size() > 1 and reference_token[0] == '0')
N
Niels 已提交
11094
                        {
11095
                            throw std::domain_error("array index must not begin with '0'");
N
Niels 已提交
11096
                        }
11097 11098

                        // note: at performs range check
N
Niels 已提交
11099
                        ptr = &ptr->at(static_cast<size_type>(std::stoi(reference_token)));
N
Niels 已提交
11100 11101 11102 11103 11104 11105
                        break;
                    }

                    default:
                    {
                        throw std::out_of_range("unresolved reference token '" + reference_token + "'");
N
Niels 已提交
11106
                    }
N
Niels 已提交
11107 11108 11109 11110 11111 11112 11113 11114 11115 11116
                }
            }

            return *ptr;
        }

        /*!
        @brief return a const reference to the pointed to value

        @param[in] ptr  a JSON value
N
Niels 已提交
11117

N
Niels 已提交
11118 11119 11120 11121 11122 11123 11124 11125 11126
        @return const reference to the JSON value pointed to by the JSON
                pointer
        */
        const_reference get_unchecked(const_pointer ptr) const
        {
            for (const auto& reference_token : reference_tokens)
            {
                switch (ptr->m_type)
                {
N
Niels 已提交
11127 11128
                    case value_t::object:
                    {
11129
                        // use unchecked object access
N
Niels 已提交
11130
                        ptr = &ptr->operator[](reference_token);
N
Niels 已提交
11131
                        break;
N
Niels 已提交
11132 11133 11134 11135
                    }

                    case value_t::array:
                    {
N
Niels 已提交
11136 11137
                        if (reference_token == "-")
                        {
11138
                            // "-" cannot be used for const access
N
Niels 已提交
11139 11140 11141 11142
                            throw std::out_of_range("array index '-' (" +
                                                    std::to_string(ptr->m_value.array->size()) +
                                                    ") is out of range");
                        }
11143 11144 11145 11146 11147 11148 11149 11150

                        // error condition (cf. RFC 6901, Sect. 4)
                        if (reference_token.size() > 1 and reference_token[0] == '0')
                        {
                            throw std::domain_error("array index must not begin with '0'");
                        }

                        // use unchecked array access
N
Niels 已提交
11151
                        ptr = &ptr->operator[](static_cast<size_type>(std::stoi(reference_token)));
N
Niels 已提交
11152
                        break;
N
Niels 已提交
11153 11154 11155 11156
                    }

                    default:
                    {
N
Niels 已提交
11157
                        throw std::out_of_range("unresolved reference token '" + reference_token + "'");
N
Niels 已提交
11158 11159 11160 11161
                    }
                }
            }

N
Niels 已提交
11162
            return *ptr;
N
Niels 已提交
11163 11164
        }

N
Niels 已提交
11165
        const_reference get_checked(const_pointer ptr) const
11166 11167 11168
        {
            for (const auto& reference_token : reference_tokens)
            {
N
Niels 已提交
11169
                switch (ptr->m_type)
11170 11171
                {
                    case value_t::object:
N
Niels 已提交
11172
                    {
11173
                        // note: at performs range check
N
Niels 已提交
11174
                        ptr = &ptr->at(reference_token);
N
Niels 已提交
11175
                        break;
N
Niels 已提交
11176
                    }
11177 11178

                    case value_t::array:
N
Niels 已提交
11179 11180 11181
                    {
                        if (reference_token == "-")
                        {
11182
                            // "-" always fails the range check
N
Niels 已提交
11183 11184 11185 11186
                            throw std::out_of_range("array index '-' (" +
                                                    std::to_string(ptr->m_value.array->size()) +
                                                    ") is out of range");
                        }
11187 11188 11189 11190 11191 11192 11193 11194

                        // error condition (cf. RFC 6901, Sect. 4)
                        if (reference_token.size() > 1 and reference_token[0] == '0')
                        {
                            throw std::domain_error("array index must not begin with '0'");
                        }

                        // note: at performs range check
N
Niels 已提交
11195
                        ptr = &ptr->at(static_cast<size_type>(std::stoi(reference_token)));
N
Niels 已提交
11196
                        break;
N
Niels 已提交
11197
                    }
11198 11199

                    default:
N
Niels 已提交
11200 11201 11202
                    {
                        throw std::out_of_range("unresolved reference token '" + reference_token + "'");
                    }
11203 11204 11205
                }
            }

N
Niels 已提交
11206
            return *ptr;
N
Niels 已提交
11207 11208 11209
        }

        /// split the string input to reference tokens
11210
        static std::vector<std::string> split(const std::string& reference_string)
N
Niels 已提交
11211
        {
N
Niels 已提交
11212 11213
            std::vector<std::string> result;

N
Niels 已提交
11214 11215 11216
            // special case: empty reference string -> no reference tokens
            if (reference_string.empty())
            {
N
Niels 已提交
11217
                return result;
N
Niels 已提交
11218 11219 11220 11221 11222 11223 11224 11225
            }

            // check if nonempty reference string begins with slash
            if (reference_string[0] != '/')
            {
                throw std::domain_error("JSON pointer must be empty or begin with '/'");
            }

N
Niels 已提交
11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236
            // extract the reference tokens:
            // - slash: position of the last read slash (or end of string)
            // - start: position after the previous slash
            for (
                // search for the first slash after the first character
                size_t slash = reference_string.find_first_of("/", 1),
                // set the beginning of the first reference token
                start = 1;
                // we can stop if start == string::npos+1 = 0
                start != 0;
                // set the beginning of the next reference token
N
Niels 已提交
11237
                // (will eventually be 0 if slash == std::string::npos)
N
Niels 已提交
11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260
                start = slash + 1,
                // find next slash
                slash = reference_string.find_first_of("/", start))
            {
                // use the text between the beginning of the reference token
                // (start) and the last slash (slash).
                auto reference_token = reference_string.substr(start, slash - start);

                // check reference tokens are properly escaped
                for (size_t pos = reference_token.find_first_of("~");
                        pos != std::string::npos;
                        pos = reference_token.find_first_of("~", pos + 1))
                {
                    assert(reference_token[pos] == '~');

                    // ~ must be followed by 0 or 1
                    if (pos == reference_token.size() - 1 or
                            (reference_token[pos + 1] != '0' and
                             reference_token[pos + 1] != '1'))
                    {
                        throw std::domain_error("escape error: '~' must be followed with '0' or '1'");
                    }
                }
11261

N
Niels 已提交
11262
                // finally, store the reference token
N
Niels 已提交
11263
                unescape(reference_token);
N
Niels 已提交
11264
                result.push_back(reference_token);
11265
            }
N
Niels 已提交
11266 11267

            return result;
N
Niels 已提交
11268
        }
N
Niels 已提交
11269

N
Niels 已提交
11270
      private:
N
Niels 已提交
11271 11272 11273 11274 11275
        /*!
        @brief replace all occurrences of a substring by another string

        @param[in,out] s  the string to manipulate
        @param[in]     f  the substring to replace with @a t
N
Niels 已提交
11276
        @param[in]     t  the string to replace @a f
N
Niels 已提交
11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298

        @return The string @a s where all occurrences of @a f are replaced
                with @a t.

        @pre The search string @a f must not be empty.

        @since version 2.0.0
        */
        static void replace_substring(std::string& s,
                                      const std::string& f,
                                      const std::string& t)
        {
            assert(not f.empty());

            for (
                size_t pos = s.find(f);         // find first occurrence of f
                pos != std::string::npos;       // make sure f was found
                s.replace(pos, f.size(), t),    // replace with t
                pos = s.find(f, pos + t.size()) // find next occurrence of f
            );
        }

N
Niels 已提交
11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316
        /// escape tilde and slash
        static std::string escape(std::string s)
        {
            // escape "~"" to "~0" and "/" to "~1"
            replace_substring(s, "~", "~0");
            replace_substring(s, "/", "~1");
            return s;
        }

        /// unescape tilde and slash
        static void unescape(std::string& s)
        {
            // first transform any occurrence of the sequence '~1' to '/'
            replace_substring(s, "~1", "/");
            // then transform any occurrence of the sequence '~0' to '~'
            replace_substring(s, "~0", "~");
        }

N
Niels 已提交
11317 11318 11319 11320
        /*!
        @param[in] reference_string  the reference string to the current value
        @param[in] value             the value to consider
        @param[in,out] result        the result object to insert values to
N
Niels 已提交
11321 11322

        @note Empty objects or arrays are flattened to `null`.
N
Niels 已提交
11323
        */
N
Niels 已提交
11324
        static void flatten(const std::string& reference_string,
N
Niels 已提交
11325 11326 11327 11328 11329 11330 11331
                            const basic_json& value,
                            basic_json& result)
        {
            switch (value.m_type)
            {
                case value_t::array:
                {
N
Niels 已提交
11332
                    if (value.m_value.array->empty())
N
Niels 已提交
11333
                    {
N
Niels 已提交
11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344
                        // flatten empty array as null
                        result[reference_string] = nullptr;
                    }
                    else
                    {
                        // iterate array and use index as reference string
                        for (size_t i = 0; i < value.m_value.array->size(); ++i)
                        {
                            flatten(reference_string + "/" + std::to_string(i),
                                    value.m_value.array->operator[](i), result);
                        }
N
Niels 已提交
11345 11346 11347 11348 11349 11350
                    }
                    break;
                }

                case value_t::object:
                {
N
Niels 已提交
11351
                    if (value.m_value.object->empty())
N
Niels 已提交
11352
                    {
N
Niels 已提交
11353 11354 11355 11356 11357 11358 11359 11360
                        // flatten empty object as null
                        result[reference_string] = nullptr;
                    }
                    else
                    {
                        // iterate object and use keys as reference string
                        for (const auto& element : *value.m_value.object)
                        {
N
Niels 已提交
11361
                            flatten(reference_string + "/" + escape(element.first),
N
Niels 已提交
11362 11363
                                    element.second, result);
                        }
N
Niels 已提交
11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375
                    }
                    break;
                }

                default:
                {
                    // add primitive value with its reference string
                    result[reference_string] = value;
                    break;
                }
            }
        }
N
Niels 已提交
11376 11377 11378 11379

        /*!
        @param[in] value  flattened JSON

N
Niels 已提交
11380
        @return unflattened JSON
N
Niels 已提交
11381
        */
N
Niels 已提交
11382
        static basic_json unflatten(const basic_json& value)
N
Niels 已提交
11383 11384 11385
        {
            if (not value.is_object())
            {
N
Niels 已提交
11386
                throw std::domain_error("only objects can be unflattened");
N
Niels 已提交
11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398
            }

            basic_json result;

            // iterate the JSON object values
            for (const auto& element : *value.m_value.object)
            {
                if (not element.second.is_primitive())
                {
                    throw std::domain_error("values in object must be primitive");
                }

N
Niels 已提交
11399 11400 11401 11402 11403
                // assign value to reference pointed to by JSON pointer; Note
                // that if the JSON pointer is "" (i.e., points to the whole
                // value), function get_and_create returns a reference to
                // result itself. An assignment will then create a primitive
                // value.
N
Niels 已提交
11404
                json_pointer(element.first).get_and_create(result) = element.second;
N
Niels 已提交
11405 11406 11407 11408
            }

            return result;
        }
N
Niels 已提交
11409 11410 11411

      private:
        /// the reference tokens
N
Niels 已提交
11412
        std::vector<std::string> reference_tokens {};
N
Niels 已提交
11413
    };
N
Niels 已提交
11414

N
Niels 已提交
11415 11416 11417
    //////////////////////////
    // JSON Pointer support //
    //////////////////////////
N
Niels 已提交
11418 11419 11420 11421

    /// @name JSON Pointer functions
    /// @{

N
Niels 已提交
11422 11423 11424 11425
    /*!
    @brief access specified element via JSON Pointer

    Uses a JSON pointer to retrieve a reference to the respective JSON value.
N
Niels 已提交
11426 11427 11428
    No bound checking is performed. Similar to @ref operator[](const typename
    object_t::key_type&), `null` values are created in arrays and objects if
    necessary.
N
Niels 已提交
11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514

    In particular:
    - If the JSON pointer points to an object key that does not exist, it
      is created an filled with a `null` value before a reference to it
      is returned.
    - If the JSON pointer points to an array index that does not exist, it
      is created an filled with a `null` value before a reference to it
      is returned. All indices between the current maximum and the given
      index are also filled with `null`.
    - The special value `-` is treated as a synonym for the index past the
      end.

    @param[in] ptr  a JSON pointer

    @return reference to the element pointed to by @a ptr

    @complexity Constant.

    @throw std::out_of_range      if the JSON pointer can not be resolved
    @throw std::domain_error      if an array index begins with '0'
    @throw std::invalid_argument  if an array index was not a number

    @liveexample{The behavior is shown in the example.,operatorjson_pointer}

    @since version 2.0.0
    */
    reference operator[](const json_pointer& ptr)
    {
        return ptr.get_unchecked(this);
    }

    /*!
    @brief access specified element via JSON Pointer

    Uses a JSON pointer to retrieve a reference to the respective JSON value.
    No bound checking is performed. The function does not change the JSON
    value; no `null` values are created. In particular, the the special value
    `-` yields an exception.

    @param[in] ptr  JSON pointer to the desired element

    @return const reference to the element pointed to by @a ptr

    @complexity Constant.

    @throw std::out_of_range      if the JSON pointer can not be resolved
    @throw std::domain_error      if an array index begins with '0'
    @throw std::invalid_argument  if an array index was not a number

    @liveexample{The behavior is shown in the example.,operatorjson_pointer_const}

    @since version 2.0.0
    */
    const_reference operator[](const json_pointer& ptr) const
    {
        return ptr.get_unchecked(this);
    }

    /*!
    @brief access specified element via JSON Pointer

    Returns a reference to the element at with specified JSON pointer @a ptr,
    with bounds checking.

    @param[in] ptr  JSON pointer to the desired element

    @return reference to the element pointed to by @a ptr

    @complexity Constant.

    @throw std::out_of_range      if the JSON pointer can not be resolved
    @throw std::domain_error      if an array index begins with '0'
    @throw std::invalid_argument  if an array index was not a number

    @liveexample{The behavior is shown in the example.,at_json_pointer}

    @since version 2.0.0
    */
    reference at(const json_pointer& ptr)
    {
        return ptr.get_checked(this);
    }

    /*!
    @brief access specified element via JSON Pointer

N
Niels 已提交
11515 11516
    Returns a const reference to the element at with specified JSON pointer @a
    ptr, with bounds checking.
N
Niels 已提交
11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536

    @param[in] ptr  JSON pointer to the desired element

    @return reference to the element pointed to by @a ptr

    @complexity Constant.

    @throw std::out_of_range      if the JSON pointer can not be resolved
    @throw std::domain_error      if an array index begins with '0'
    @throw std::invalid_argument  if an array index was not a number

    @liveexample{The behavior is shown in the example.,at_json_pointer_const}

    @since version 2.0.0
    */
    const_reference at(const json_pointer& ptr) const
    {
        return ptr.get_checked(this);
    }

N
Niels 已提交
11537
    /*!
N
Niels 已提交
11538 11539
    @brief return flattened JSON value

N
Niels 已提交
11540 11541 11542 11543
    The function creates a JSON object whose keys are JSON pointers (see [RFC
    6901](https://tools.ietf.org/html/rfc6901)) and whose values are all
    primitive. The original JSON value can be restored using the @ref
    unflatten() function.
N
Niels 已提交
11544

N
Niels 已提交
11545
    @return an object that maps JSON pointers to primitve values
N
Niels 已提交
11546

N
Niels 已提交
11547 11548
    @note Empty objects and arrays are flattened to `null` and will not be
          reconstructed correctly by the @ref unflatten() function.
N
Niels 已提交
11549 11550 11551 11552 11553 11554 11555 11556 11557

    @complexity Linear in the size the JSON value.

    @liveexample{The following code shows how a JSON object is flattened to an
    object whose keys consist of JSON pointers.,flatten}

    @sa @ref unflatten() for the reverse function

    @since version 2.0.0
N
Niels 已提交
11558 11559 11560 11561 11562 11563 11564
    */
    basic_json flatten() const
    {
        basic_json result(value_t::object);
        json_pointer::flatten("", *this, result);
        return result;
    }
N
Niels 已提交
11565 11566

    /*!
N
Niels 已提交
11567 11568 11569 11570 11571 11572 11573 11574 11575 11576
    @brief unflatten a previously flattened JSON value

    The function restores the arbitrary nesting of a JSON value that has been
    flattened before using the @ref flatten() function. The JSON value must
    meet certain constraints:
    1. The value must be an object.
    2. The keys must be JSON pointers (see
       [RFC 6901](https://tools.ietf.org/html/rfc6901))
    3. The mapped values must be primitive JSON types.

N
Niels 已提交
11577
    @return the original JSON from a flattened version
N
Niels 已提交
11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591

    @note Empty objects and arrays are flattened by @ref flatten() to `null`
          values and can not unflattened to their original type. Apart from
          this example, for a JSON value `j`, the following is always true:
          `j == j.flatten().unflatten()`.

    @complexity Linear in the size the JSON value.

    @liveexample{The following code shows how a flattened JSON object is
    unflattened into the original nested JSON object.,unflatten}

    @sa @ref flatten() for the reverse function

    @since version 2.0.0
N
Niels 已提交
11592
    */
N
Niels 已提交
11593
    basic_json unflatten() const
N
Niels 已提交
11594
    {
N
Niels 已提交
11595
        return json_pointer::unflatten(*this);
N
Niels 已提交
11596
    }
N
Niels 已提交
11597 11598

    /// @}
11599

N
Niels 已提交
11600 11601 11602 11603 11604 11605 11606
    //////////////////////////
    // JSON Patch functions //
    //////////////////////////

    /// @name JSON Patch functions
    /// @{

11607 11608 11609
    /*!
    @brief applies a JSON patch

N
Niels 已提交
11610 11611 11612 11613 11614
    [JSON Patch](http://jsonpatch.com) defines a JSON document structure for
    expressing a sequence of operations to apply to a JSON) document. With
    this funcion, a JSON Patch is applied to the current JSON value by
    executing all operations from the patch.

N
Niels 已提交
11615
    @param[in] json_patch  JSON patch document
11616 11617
    @return patched document

N
Niels 已提交
11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631
    @note The application of a patch is atomic: Either all operations succeed
          and the patched document is returned or an exception is thrown. In
          any case, the original value is not changed: the patch is applied
          to a copy of the value.

    @throw std::out_of_range if a JSON pointer inside the patch could not
    be resolved successfully in the current JSON value; example: `"key baz
    not found"`
    @throw invalid_argument if the JSON patch is malformed (e.g., mandatory
    attributes are missing); example: `"operation add must have member path"`

    @complexity Linear in the size of the JSON value and the length of the
    JSON patch. As usually only a fraction of the JSON value is affected by
    the patch, the complexity can usually be neglected.
11632

N
Niels 已提交
11633 11634 11635 11636 11637 11638 11639 11640 11641
    @liveexample{The following code shows how a JSON patch is applied to a
    value.,patch}

    @sa @ref diff -- create a JSON patch by comparing two JSON values

    @sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902)
    @sa [RFC 6901 (JSON Pointer)](https://tools.ietf.org/html/rfc6901)

    @since version 2.0.0
11642
    */
N
Niels 已提交
11643
    basic_json patch(const basic_json& json_patch) const
11644
    {
N
Niels 已提交
11645
        // make a working copy to apply the patch to
11646 11647
        basic_json result = *this;

N
Niels 已提交
11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680
        // the valid JSON Patch operations
        enum class patch_operations {add, remove, replace, move, copy, test, invalid};

        const auto get_op = [](const std::string op)
        {
            if (op == "add")
            {
                return patch_operations::add;
            }
            if (op == "remove")
            {
                return patch_operations::remove;
            }
            if (op == "replace")
            {
                return patch_operations::replace;
            }
            if (op == "move")
            {
                return patch_operations::move;
            }
            if (op == "copy")
            {
                return patch_operations::copy;
            }
            if (op == "test")
            {
                return patch_operations::test;
            }

            return patch_operations::invalid;
        };

N
Niels 已提交
11681
        // wrapper for "add" operation; add value at ptr
N
Niels 已提交
11682
        const auto operation_add = [&result](json_pointer & ptr, basic_json val)
N
Niels 已提交
11683
        {
N
Niels 已提交
11684 11685
            // adding to the root of the target document means replacing it
            if (ptr.is_root())
N
Niels 已提交
11686
            {
N
Niels 已提交
11687
                result = val;
N
Niels 已提交
11688
            }
N
Niels 已提交
11689
            else
N
Niels 已提交
11690
            {
N
Niels 已提交
11691 11692 11693
                // make sure the top element of the pointer exists
                json_pointer top_pointer = ptr.top();
                if (top_pointer != ptr)
N
Niels 已提交
11694
                {
N
Niels 已提交
11695
                    result.at(top_pointer);
N
Niels 已提交
11696
                }
N
Niels 已提交
11697 11698 11699 11700 11701 11702

                // get reference to parent of JSON pointer ptr
                const auto last_path = ptr.pop_back();
                basic_json& parent = result[ptr];

                switch (parent.m_type)
N
Niels 已提交
11703
                {
N
Niels 已提交
11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737
                    case value_t::null:
                    case value_t::object:
                    {
                        // use operator[] to add value
                        parent[last_path] = val;
                        break;
                    }

                    case value_t::array:
                    {
                        if (last_path == "-")
                        {
                            // special case: append to back
                            parent.push_back(val);
                        }
                        else
                        {
                            const auto idx = std::stoi(last_path);
                            if (static_cast<size_type>(idx) > parent.size())
                            {
                                // avoid undefined behavior
                                throw std::out_of_range("array index " + std::to_string(idx) + " is out of range");
                            }
                            else
                            {
                                // default case: insert add offset
                                parent.insert(parent.begin() + static_cast<difference_type>(idx), val);
                            }
                        }
                        break;
                    }

                    default:
                    {
N
Niels 已提交
11738 11739
                        // if there exists a parent it cannot be primitive
                        assert(false);  // LCOV_EXCL_LINE
N
Niels 已提交
11740
                    }
N
Niels 已提交
11741 11742 11743 11744
                }
            }
        };

N
Niels 已提交
11745
        // wrapper for "remove" operation; remove value at ptr
N
Niels 已提交
11746 11747
        const auto operation_remove = [&result](json_pointer & ptr)
        {
N
Niels 已提交
11748
            // get reference to parent of JSON pointer ptr
N
Niels 已提交
11749 11750
            const auto last_path = ptr.pop_back();
            basic_json& parent = result.at(ptr);
N
Niels 已提交
11751 11752

            // remove child
N
Niels 已提交
11753 11754
            if (parent.is_object())
            {
N
Niels 已提交
11755 11756 11757 11758 11759 11760 11761 11762 11763 11764
                // perform range check
                auto it = parent.find(last_path);
                if (it != parent.end())
                {
                    parent.erase(it);
                }
                else
                {
                    throw std::out_of_range("key '" + last_path + "' not found");
                }
N
Niels 已提交
11765 11766 11767
            }
            else if (parent.is_array())
            {
N
Niels 已提交
11768 11769
                // note erase performs range check
                parent.erase(static_cast<size_type>(std::stoi(last_path)));
N
Niels 已提交
11770 11771 11772
            }
        };

N
Niels 已提交
11773
        // type check
N
Niels 已提交
11774
        if (not json_patch.is_array())
N
Niels 已提交
11775 11776
        {
            // a JSON patch must be an array of objects
N
Niels 已提交
11777
            throw std::invalid_argument("JSON patch must be an array of objects");
N
Niels 已提交
11778 11779 11780
        }

        // iterate and apply th eoperations
N
Niels 已提交
11781
        for (const auto& val : json_patch)
11782
        {
N
Niels 已提交
11783 11784 11785
            // wrapper to get a value for an operation
            const auto get_value = [&val](const std::string & op,
                                          const std::string & member,
N
Niels 已提交
11786
                                          bool string_type) -> basic_json&
11787
            {
N
Niels 已提交
11788 11789
                // find value
                auto it = val.m_value.object->find(member);
11790

N
Niels 已提交
11791 11792
                // context-sensitive error message
                const auto error_msg = (op == "op") ? "operation" : "operation '" + op + "'";
11793

N
Niels 已提交
11794 11795 11796
                // check if desired value is present
                if (it == val.m_value.object->end())
                {
N
Niels 已提交
11797
                    throw std::invalid_argument(error_msg + " must have member '" + member + "'");
N
Niels 已提交
11798
                }
11799

N
Niels 已提交
11800 11801 11802
                // check if result is of type string
                if (string_type and not it->second.is_string())
                {
N
Niels 已提交
11803
                    throw std::invalid_argument(error_msg + " must have string member '" + member + "'");
N
Niels 已提交
11804 11805 11806 11807 11808 11809 11810 11811
                }

                // no error: return value
                return it->second;
            };

            // type check
            if (not val.is_object())
11812
            {
N
Niels 已提交
11813
                throw std::invalid_argument("JSON patch must be an array of objects");
11814 11815
            }

N
Niels 已提交
11816 11817 11818
            // collect mandatory members
            const std::string op = get_value("op", "op", true);
            const std::string path = get_value(op, "path", true);
N
oops  
Niels 已提交
11819
            json_pointer ptr(path);
11820

N
Niels 已提交
11821
            switch (get_op(op))
11822
            {
N
Niels 已提交
11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897
                case patch_operations::add:
                {
                    operation_add(ptr, get_value("add", "value", false));
                    break;
                }

                case patch_operations::remove:
                {
                    operation_remove(ptr);
                    break;
                }

                case patch_operations::replace:
                {
                    // the "path" location must exist - use at()
                    result.at(ptr) = get_value("replace", "value", false);
                    break;
                }

                case patch_operations::move:
                {
                    const std::string from_path = get_value("move", "from", true);
                    json_pointer from_ptr(from_path);

                    // the "from" location must exist - use at()
                    basic_json v = result.at(from_ptr);

                    // The move operation is functionally identical to a
                    // "remove" operation on the "from" location, followed
                    // immediately by an "add" operation at the target
                    // location with the value that was just removed.
                    operation_remove(from_ptr);
                    operation_add(ptr, v);
                    break;
                }

                case patch_operations::copy:
                {
                    const std::string from_path = get_value("copy", "from", true);;
                    const json_pointer from_ptr(from_path);

                    // the "from" location must exist - use at()
                    result[ptr] = result.at(from_ptr);
                    break;
                }

                case patch_operations::test:
                {
                    bool success = false;
                    try
                    {
                        // check if "value" matches the one at "path"
                        // the "path" location must exist - use at()
                        success = (result.at(ptr) == get_value("test", "value", false));
                    }
                    catch (std::out_of_range&)
                    {
                        // ignore out of range errors: success remains false
                    }

                    // throw an exception if test fails
                    if (not success)
                    {
                        throw std::domain_error("unsuccessful: " + val.dump());
                    }

                    break;
                }

                case patch_operations::invalid:
                {
                    // op must be "add", "remove", "replace", "move", "copy", or
                    // "test"
                    throw std::invalid_argument("operation value '" + op + "' is invalid");
                }
11898
            }
N
Niels 已提交
11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937
        }

        return result;
    }

    /*!
    @brief creates a diff as a JSON patch

    Creates a [JSON Patch](http://jsonpatch.com) so that value @a source can
    be changed into the value @a target by calling @ref patch function.

    @invariant For two JSON values @a source and @a target, the following code
    yields always `true`:
    @code {.cpp}
    source.patch(diff(source, target)) == target;
    @endcode

    @note Currently, only `remove`, `add`, and `replace` operations are
          generated.

    @param[in] source  JSON value to copare from
    @param[in] target  JSON value to copare against
    @param[in] path    helper value to create JSON pointers

    @return a JSON patch to convert the @a source to @a target

    @complexity Linear in the lengths of @a source and @a target.

    @liveexample{The following code shows how a JSON patch is created as a
    diff for two JSON values.,diff}

    @sa @ref patch -- apply a JSON patch

    @sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902)

    @since version 2.0.0
    */
    static basic_json diff(const basic_json& source,
                           const basic_json& target,
11938
                           const std::string& path = "")
N
Niels 已提交
11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952
    {
        // the patch
        basic_json result(value_t::array);

        // if the values are the same, return empty patch
        if (source == target)
        {
            return result;
        }

        if (source.type() != target.type())
        {
            // different types: replace value
            result.push_back(
11953
            {
N
Niels 已提交
11954 11955 11956 11957 11958 11959 11960 11961
                {"op", "replace"},
                {"path", path},
                {"value", target}
            });
        }
        else
        {
            switch (source.type())
11962
            {
N
Niels 已提交
11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973
                case value_t::array:
                {
                    // first pass: traverse common elements
                    size_t i = 0;
                    while (i < source.size() and i < target.size())
                    {
                        // recursive call to compare array values at index i
                        auto temp_diff = diff(source[i], target[i], path + "/" + std::to_string(i));
                        result.insert(result.end(), temp_diff.begin(), temp_diff.end());
                        ++i;
                    }
N
Niels 已提交
11974

N
Niels 已提交
11975 11976
                    // i now reached the end of at least one array
                    // in a second pass, traverse the remaining elements
N
Niels 已提交
11977

N
Niels 已提交
11978
                    // remove my remaining elements
N
Niels 已提交
11979
                    const auto end_index = static_cast<difference_type>(result.size());
N
Niels 已提交
11980 11981
                    while (i < source.size())
                    {
N
Niels 已提交
11982 11983
                        // add operations in reverse order to avoid invalid
                        // indices
N
Niels 已提交
11984
                        result.insert(result.begin() + end_index, object(
N
Niels 已提交
11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007
                        {
                            {"op", "remove"},
                            {"path", path + "/" + std::to_string(i)}
                        }));
                        ++i;
                    }

                    // add other remaining elements
                    while (i < target.size())
                    {
                        result.push_back(
                        {
                            {"op", "add"},
                            {"path", path + "/" + std::to_string(i)},
                            {"value", target[i]}
                        });
                        ++i;
                    }

                    break;
                }

                case value_t::object:
12008
                {
N
Niels 已提交
12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060
                    // first pass: traverse this object's elements
                    for (auto it = source.begin(); it != source.end(); ++it)
                    {
                        // escape the key name to be used in a JSON patch
                        const auto key = json_pointer::escape(it.key());

                        if (target.find(it.key()) != target.end())
                        {
                            // recursive call to compare object values at key it
                            auto temp_diff = diff(it.value(), target[it.key()], path + "/" + key);
                            result.insert(result.end(), temp_diff.begin(), temp_diff.end());
                        }
                        else
                        {
                            // found a key that is not in o -> remove it
                            result.push_back(object(
                            {
                                {"op", "remove"},
                                {"path", path + "/" + key}
                            }));
                        }
                    }

                    // second pass: traverse other object's elements
                    for (auto it = target.begin(); it != target.end(); ++it)
                    {
                        if (source.find(it.key()) == source.end())
                        {
                            // found a key that is not in this -> add it
                            const auto key = json_pointer::escape(it.key());
                            result.push_back(
                            {
                                {"op", "add"},
                                {"path", path + "/" + key},
                                {"value", it.value()}
                            });
                        }
                    }

                    break;
                }

                default:
                {
                    // both primitive type: replace value
                    result.push_back(
                    {
                        {"op", "replace"},
                        {"path", path},
                        {"value", target}
                    });
                    break;
12061 12062 12063 12064 12065 12066
                }
            }
        }

        return result;
    }
N
Niels 已提交
12067 12068

    /// @}
N
Niels 已提交
12069 12070 12071 12072 12073 12074 12075
};


/////////////
// presets //
/////////////

N
Niels 已提交
12076 12077 12078
/*!
@brief default JSON class

N
Niels 已提交
12079 12080
This type is the default specialization of the @ref basic_json class which
uses the standard template types.
N
Niels 已提交
12081

N
Niels 已提交
12082
@since version 1.0.0
N
Niels 已提交
12083
*/
N
Niels 已提交
12084 12085 12086 12087
using json = basic_json<>;
}


N
Niels 已提交
12088 12089 12090
///////////////////////
// nonmember support //
///////////////////////
N
Niels 已提交
12091 12092 12093 12094

// specialization of std::swap, and std::hash
namespace std
{
N
Niels 已提交
12095 12096
/*!
@brief exchanges the values of two JSON objects
N
Niels 已提交
12097

N
Niels 已提交
12098
@since version 1.0.0
N
Niels 已提交
12099
*/
N
Niels 已提交
12100
template<>
N
Niels 已提交
12101 12102 12103 12104 12105 12106 12107 12108 12109 12110
inline void swap(nlohmann::json& j1,
                 nlohmann::json& j2) noexcept(
                     is_nothrow_move_constructible<nlohmann::json>::value and
                     is_nothrow_move_assignable<nlohmann::json>::value
                 )
{
    j1.swap(j2);
}

/// hash value for JSON objects
N
Niels 已提交
12111
template<>
N
Niels 已提交
12112 12113
struct hash<nlohmann::json>
{
N
Niels 已提交
12114 12115 12116
    /*!
    @brief return a hash value for a JSON object

N
Niels 已提交
12117
    @since version 1.0.0
N
Niels 已提交
12118
    */
N
Niels 已提交
12119
    std::size_t operator()(const nlohmann::json& j) const
N
Niels 已提交
12120 12121
    {
        // a naive hashing via the string representation
N
Niels 已提交
12122 12123
        const auto& h = hash<nlohmann::json::string_t>();
        return h(j.dump());
N
Niels 已提交
12124 12125 12126 12127 12128
    }
};
}

/*!
N
Niels 已提交
12129 12130
@brief user-defined string literal for JSON values

N
Niels 已提交
12131
This operator implements a user-defined string literal for JSON objects. It
N
Niels 已提交
12132
can be used by adding `"_json"` to a string literal and returns a JSON object
N
Niels 已提交
12133
if no parse error occurred.
N
Niels 已提交
12134

N
Niels 已提交
12135
@param[in] s  a string representation of a JSON object
12136
@param[in] n  the length of string @a s
N
Niels 已提交
12137
@return a JSON object
N
Niels 已提交
12138

N
Niels 已提交
12139
@since version 1.0.0
N
Niels 已提交
12140
*/
12141
inline nlohmann::json operator "" _json(const char* s, std::size_t n)
N
Niels 已提交
12142
{
12143
    return nlohmann::json::parse(s, s + n);
N
Niels 已提交
12144 12145
}

N
Niels 已提交
12146 12147 12148
/*!
@brief user-defined string literal for JSON pointer

N
Niels 已提交
12149
This operator implements a user-defined string literal for JSON Pointers. It
N
Niels 已提交
12150
can be used by adding `"_json_pointer"` to a string literal and returns a JSON pointer
N
Niels 已提交
12151 12152 12153
object if no parse error occurred.

@param[in] s  a string representation of a JSON Pointer
12154
@param[in] n  the length of string @a s
N
Niels 已提交
12155 12156
@return a JSON pointer object

N
Niels 已提交
12157 12158
@since version 2.0.0
*/
12159
inline nlohmann::json::json_pointer operator "" _json_pointer(const char* s, std::size_t n)
N
Niels 已提交
12160
{
12161
    return nlohmann::json::json_pointer(std::string(s, n));
N
Niels 已提交
12162 12163
}

12164 12165 12166 12167 12168
// restore GCC/clang diagnostic settings
#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__)
    #pragma GCC diagnostic pop
#endif

N
Niels 已提交
12169
#endif