json.hpp 338.9 KB
Newer Older
1 2 3
/*
    __ _____ _____ _____
 __|  |   __|     |   | |  JSON for Modern C++
N
Niels 已提交
4
|  |  |__   |  |  | | | |  version 2.0.2
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 32

#include <algorithm>
33
#include <array>
N
Niels 已提交
34
#include <cassert>
N
Niels 已提交
35
#include <ciso646>
N
Niels 已提交
36
#include <cmath>
N
Niels 已提交
37
#include <cstddef>
38
#include <cstdint>
N
Niels 已提交
39
#include <cstdlib>
N
Niels 已提交
40 41
#include <functional>
#include <initializer_list>
N
Niels 已提交
42
#include <iomanip>
N
Niels 已提交
43 44 45
#include <iostream>
#include <iterator>
#include <limits>
N
Niels 已提交
46
#include <locale>
N
Niels 已提交
47 48
#include <map>
#include <memory>
N
Niels 已提交
49
#include <numeric>
N
Niels 已提交
50
#include <sstream>
N
Niels 已提交
51
#include <stdexcept>
N
Niels 已提交
52 53 54 55 56
#include <string>
#include <type_traits>
#include <utility>
#include <vector>

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

70 71 72 73 74 75
// 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 已提交
76
/*!
N
Niels 已提交
77
@brief namespace for Niels Lohmann
N
Niels 已提交
78
@see https://github.com/nlohmann
N
Niels 已提交
79
@since version 1.0.0
N
Niels 已提交
80 81 82 83
*/
namespace nlohmann
{

N
Niels 已提交
84

85 86
/*!
@brief unnamed namespace with internal helper functions
N
Niels 已提交
87
@since version 1.0.0
88 89
*/
namespace
N
Niels 已提交
90
{
91 92
/*!
@brief Helper to determine whether there's a key_type for T.
N
Niels 已提交
93 94 95 96 97

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.

98
@sa http://stackoverflow.com/a/7728728/266378
N
Niels 已提交
99
@since version 1.0.0
100
*/
N
Niels 已提交
101
template<typename T>
N
Niels 已提交
102
struct has_mapped_type
N
Niels 已提交
103 104
{
  private:
N
Niels 已提交
105
    template<typename C> static char test(typename C::mapped_type*);
N
Niels 已提交
106
    template<typename C> static char (&test(...))[2];
N
Niels 已提交
107
  public:
N
Niels 已提交
108
    static constexpr bool value = sizeof(test<T>(0)) == 1;
N
Niels 已提交
109
};
110

N
Niels 已提交
111 112
/*!
@brief helper class to create locales with decimal point
N
Niels 已提交
113 114 115 116 117 118 119

This struct is used a default locale during the JSON serialization. JSON
requires the decimal point to be `.`, so this function overloads the
`do_decimal_point()` function to return `.`. This function is called by
float-to-string conversions to retrieve the decimal separator between integer
and fractional parts.

N
Niels 已提交
120
@sa https://github.com/nlohmann/json/issues/51#issuecomment-86869315
N
Niels 已提交
121
@since version 2.0.0
N
Niels 已提交
122
*/
N
Niels 已提交
123
struct DecimalSeparator : std::numpunct<char>
N
Niels 已提交
124 125 126 127 128 129 130
{
    char do_decimal_point() const
    {
        return '.';
    }
};

N
Niels 已提交
131
}
N
Niels 已提交
132

N
Niels 已提交
133
/*!
N
Niels 已提交
134
@brief a class to store JSON values
N
Niels 已提交
135

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

N
Niels 已提交
153 154
@requirement The class satisfies the following concept requirements:
- Basic
N
Niels 已提交
155 156 157 158 159
 - [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 已提交
160
   A JSON value can be copy-constructed from an lvalue expression.
N
Niels 已提交
161 162 163 164 165 166
 - [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 已提交
167
- Layout
N
Niels 已提交
168 169 170 171 172
 - [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 已提交
173
- Library-wide
N
Niels 已提交
174 175 176 177 178 179 180 181 182 183 184 185
 - [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 已提交
186
- Container
N
Niels 已提交
187 188 189 190 191
 - [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 已提交
192

193 194 195 196 197 198 199
@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 已提交
200
@internal
N
Niels 已提交
201
@note ObjectType trick from http://stackoverflow.com/a/9860911
N
Niels 已提交
202
@endinternal
N
Niels 已提交
203

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

N
Niels 已提交
207
@since version 1.0.0
N
Niels 已提交
208 209

@nosubgrouping
N
Niels 已提交
210 211 212 213 214 215
*/
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,
216 217
    class NumberIntegerType = std::int64_t,
    class NumberUnsignedType = std::uint64_t,
N
Niels 已提交
218
    class NumberFloatType = double,
N
Niels 已提交
219
    template<typename U> class AllocatorType = std::allocator
N
Niels 已提交
220 221 222
    >
class basic_json
{
223 224
  private:
    /// workaround type for MSVC
N
Niels 已提交
225 226
    using basic_json_t = basic_json<ObjectType, ArrayType, StringType,
          BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType,
N
Niels 已提交
227
          AllocatorType>;
228 229

  public:
N
Niels 已提交
230 231 232
    // forward declarations
    template<typename Base> class json_reverse_iterator;
    class json_pointer;
233

N
Niels 已提交
234 235 236 237
    /////////////////////
    // container types //
    /////////////////////

N
Niels 已提交
238
    /// @name container types
N
Niels 已提交
239 240
    /// The canonic container types to use @ref basic_json like any other STL
    /// container.
N
Niels 已提交
241 242
    /// @{

N
Niels 已提交
243
    /// the type of elements in a basic_json container
N
Niels 已提交
244
    using value_type = basic_json;
N
Niels 已提交
245

N
Niels 已提交
246
    /// the type of an element reference
N
Niels 已提交
247
    using reference = value_type&;
N
Niels 已提交
248
    /// the type of an element const reference
N
Niels 已提交
249
    using const_reference = const value_type&;
N
Niels 已提交
250

N
Niels 已提交
251
    /// a type to represent differences between iterators
N
Niels 已提交
252
    using difference_type = std::ptrdiff_t;
N
Niels 已提交
253
    /// a type to represent container sizes
N
Niels 已提交
254 255 256
    using size_type = std::size_t;

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

N
Niels 已提交
259
    /// the type of an element pointer
N
Niels 已提交
260
    using pointer = typename std::allocator_traits<allocator_type>::pointer;
N
Niels 已提交
261
    /// the type of an element const pointer
N
Niels 已提交
262
    using const_pointer = typename std::allocator_traits<allocator_type>::const_pointer;
N
Niels 已提交
263

N
Niels 已提交
264 265 266 267 268
    /// 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 已提交
269
    using reverse_iterator = json_reverse_iterator<typename basic_json::iterator>;
N
Niels 已提交
270
    /// a const reverse iterator for a basic_json container
N
Niels 已提交
271
    using const_reverse_iterator = json_reverse_iterator<typename basic_json::const_iterator>;
N
Niels 已提交
272

N
Niels 已提交
273 274 275
    /// @}


N
Niels 已提交
276 277 278
    /*!
    @brief returns the allocator associated with the container
    */
N
Niels 已提交
279
    static allocator_type get_allocator()
N
Niels 已提交
280 281 282 283 284
    {
        return allocator_type();
    }


N
Niels 已提交
285 286 287 288
    ///////////////////////////
    // JSON value data types //
    ///////////////////////////

N
Niels 已提交
289
    /// @name JSON value data types
N
Niels 已提交
290 291
    /// The data types to store a JSON value. These types are derived from
    /// the template arguments passed to class @ref basic_json.
N
Niels 已提交
292 293
    /// @{

N
Niels 已提交
294 295 296 297 298 299 300 301
    /*!
    @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 已提交
302 303 304 305 306
    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 已提交
307 308
    @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 已提交
309 310 311
    inside the container.
    @tparam AllocatorType the allocator to use for objects (e.g.,
    `std::allocator`)
N
Niels 已提交
312 313 314 315

    #### Default type

    With the default values for @a ObjectType (`std::map`), @a StringType
N
Niels 已提交
316 317
    (`std::string`), and @a AllocatorType (`std::allocator`), the default
    value for @a object_t is:
N
Niels 已提交
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333

    @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 已提交
334 335
      that all software implementations receiving that object will agree on
      the name-value mappings.
N
Niels 已提交
336 337 338 339 340
    - 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 已提交
341 342 343
      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 已提交
344 345 346 347 348 349 350 351 352 353 354 355
    - 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 已提交
356 357
    runtime environment. A theoretical limit can be queried by calling the
    @ref max_size function of a JSON object.
N
Niels 已提交
358 359 360

    #### Storage

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

365 366
    @sa @ref array_t -- type for an array value

N
Niels 已提交
367
    @since version 1.0.0
N
Niels 已提交
368

N
Niels 已提交
369 370 371 372 373
    @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 已提交
374 375
    7159](http://rfc7159.net/rfc7159), because any order implements the
    specified "unordered" nature of JSON objects.
N
Niels 已提交
376
    */
N
Niels 已提交
377 378 379 380 381
    using object_t = ObjectType<StringType,
          basic_json,
          std::less<StringType>,
          AllocatorType<std::pair<const StringType,
          basic_json>>>;
N
Niels 已提交
382 383 384 385 386 387 388

    /*!
    @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 已提交
389 390 391 392 393
    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 已提交
394
    @tparam AllocatorType allocator to use for arrays (e.g., `std::allocator`)
N
Niels 已提交
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414

    #### 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 已提交
415 416
    runtime environment. A theoretical limit can be queried by calling the
    @ref max_size function of a JSON array.
N
Niels 已提交
417 418 419

    #### Storage

420
    Arrays are stored as pointers in a @ref basic_json type. That is, for any
N
Niels 已提交
421
    access to array values, a pointer of type `array_t*` must be dereferenced.
422 423 424

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

N
Niels 已提交
425
    @since version 1.0.0
N
Niels 已提交
426
    */
N
Niels 已提交
427
    using array_t = ArrayType<basic_json, AllocatorType<basic_json>>;
N
Niels 已提交
428 429 430 431 432 433 434

    /*!
    @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 已提交
435
    To store objects in C++, a type is defined by the template parameter
N
Niels 已提交
436 437
    described below. Unicode values are split by the JSON class into
    byte-sized characters during deserialization.
N
Niels 已提交
438

N
Niels 已提交
439 440
    @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 已提交
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467

    #### 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

468 469
    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 已提交
470
    dereferenced.
471

N
Niels 已提交
472
    @since version 1.0.0
N
Niels 已提交
473
    */
N
Niels 已提交
474
    using string_t = StringType;
N
Niels 已提交
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495

    /*!
    @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

496 497
    Boolean values are stored directly inside a @ref basic_json type.

N
Niels 已提交
498
    @since version 1.0.0
N
Niels 已提交
499
    */
N
Niels 已提交
500
    using boolean_t = BooleanType;
N
Niels 已提交
501 502 503 504 505

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

    [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
N
Niels 已提交
506 507 508 509 510 511 512 513 514 515 516 517 518
    > 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 已提交
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536

    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 已提交
537 538
      instance, the C++ integer literal `010` will be serialized to `8`.
      During deserialization, leading zeros yield an error.
N
Niels 已提交
539 540 541 542 543 544 545 546 547 548
    - 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 已提交
549 550 551 552
    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 已提交
553 554 555 556 557 558 559 560 561 562 563

    [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

564 565 566 567
    Integer number values are stored directly inside a @ref basic_json type.

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

568 569
    @sa @ref number_unsigned_t -- type for number values (unsigned integer)

N
Niels 已提交
570
    @since version 1.0.0
N
Niels 已提交
571
    */
N
Niels 已提交
572
    using number_integer_t = NumberIntegerType;
N
Niels 已提交
573

574 575 576 577
    /*!
    @brief a type for a number (unsigned)

    [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
N
Niels 已提交
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
    > 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.
594 595 596

    #### Default type

N
Niels 已提交
597 598
    With the default values for @a NumberUnsignedType (`uint64_t`), the
    default value for @a number_unsigned_t is:
599 600 601 602 603 604 605 606 607 608

    @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 已提交
609 610
      instance, the C++ integer literal `010` will be serialized to `8`.
      During deserialization, leading zeros yield an error.
611 612 613 614 615 616 617 618
    - 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 已提交
619 620 621 622 623
    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.
624 625 626 627 628 629 630

    [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 已提交
631 632
    number_integer_t type) of the exactly supported range [0, UINT64_MAX],
    this class's integer type is interoperable.
633 634 635 636 637 638 639 640 641 642 643

    #### 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 已提交
644

N
Niels 已提交
645 646 647 648
    /*!
    @brief a type for a number (floating-point)

    [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
N
Niels 已提交
649 650 651 652 653 654 655 656 657 658 659 660 661
    > 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 已提交
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677

    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 已提交
678 679
      leading zeros in floating-point literals will be ignored. Internally,
      the value will be stored as decimal number. For instance, the C++
N
Niels 已提交
680 681 682 683 684 685 686 687 688 689
      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 已提交
690 691 692
    > 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 已提交
693 694 695 696
    > precision.

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

    #### Storage

702 703 704 705 706
    Floating-point number values are stored directly inside a @ref basic_json
    type.

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

707 708
    @sa @ref number_unsigned_t -- type for number values (unsigned integer)

N
Niels 已提交
709
    @since version 1.0.0
N
Niels 已提交
710
    */
N
Niels 已提交
711 712
    using number_float_t = NumberFloatType;

N
Niels 已提交
713 714
    /// @}

N
Niels 已提交
715

N
Niels 已提交
716 717 718
    ///////////////////////////
    // JSON type enumeration //
    ///////////////////////////
N
Niels 已提交
719

N
Niels 已提交
720
    /*!
N
Niels 已提交
721
    @brief the JSON type enumeration
N
Niels 已提交
722

N
Niels 已提交
723
    This enumeration collects the different JSON types. It is internally used
724 725
    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 已提交
726 727 728 729 730 731 732 733 734 735 736 737 738
    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
739

N
Niels 已提交
740
    @since version 1.0.0
N
Niels 已提交
741
    */
N
Niels 已提交
742 743
    enum class value_t : uint8_t
    {
N
Niels 已提交
744 745 746 747 748
        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 已提交
749
        number_integer,  ///< number value (signed integer)
N
Niels 已提交
750 751 752
        number_unsigned, ///< number value (unsigned integer)
        number_float,    ///< number value (floating-point)
        discarded        ///< discarded by the the parser callback function
N
Niels 已提交
753 754
    };

N
Niels 已提交
755

N
Niels 已提交
756
  private:
N
Niels 已提交
757

N
Cleanup  
Niels 已提交
758 759
    /// helper for exception-safe object creation
    template<typename T, typename... Args>
N
cleanup  
Niels 已提交
760
    static T* create(Args&& ... args)
N
Cleanup  
Niels 已提交
761 762 763 764 765 766 767 768
    {
        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 已提交
769
        assert(object.get() != nullptr);
N
Cleanup  
Niels 已提交
770 771 772
        return object.release();
    }

N
Niels 已提交
773 774 775 776
    ////////////////////////
    // JSON value storage //
    ////////////////////////

777 778 779
    /*!
    @brief a JSON value

N
Niels 已提交
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
    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.
798

N
Niels 已提交
799
    @since version 1.0.0
800
    */
N
Niels 已提交
801 802 803 804 805 806 807 808
    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 已提交
809
        /// boolean
N
Niels 已提交
810 811 812
        boolean_t boolean;
        /// number (integer)
        number_integer_t number_integer;
813 814
        /// number (unsigned integer)
        number_unsigned_t number_unsigned;
N
Niels 已提交
815
        /// number (floating-point)
N
Niels 已提交
816 817 818
        number_float_t number_float;

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

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

845
                case value_t::string:
N
Niels 已提交
846
                {
N
Cleanup  
Niels 已提交
847
                    string = create<string_t>("");
N
Niels 已提交
848 849
                    break;
                }
N
Niels 已提交
850

851
                case value_t::boolean:
N
Niels 已提交
852 853 854 855 856
                {
                    boolean = boolean_t(false);
                    break;
                }

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

863 864 865 866 867
                case value_t::number_unsigned:
                {
                    number_unsigned = number_unsigned_t(0);
                    break;
                }
N
Niels 已提交
868

869
                case value_t::number_float:
N
Niels 已提交
870 871 872 873
                {
                    number_float = number_float_t(0.0);
                    break;
                }
874 875 876 877 878

                default:
                {
                    break;
                }
N
Niels 已提交
879 880
            }
        }
N
Niels 已提交
881 882

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

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

        /// constructor for arrays
N
Niels 已提交
895
        json_value(const array_t& value)
N
Niels 已提交
896
        {
N
Cleanup  
Niels 已提交
897
            array = create<array_t>(value);
N
Niels 已提交
898
        }
N
Niels 已提交
899 900
    };

901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
    /*!
    @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 已提交
916 917

  public:
N
Niels 已提交
918 919 920 921
    //////////////////////////
    // JSON parser callback //
    //////////////////////////

N
Niels 已提交
922 923 924 925 926
    /*!
    @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.
927

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

N
Niels 已提交
930
    @since version 1.0.0
N
Niels 已提交
931
    */
N
Niels 已提交
932 933
    enum class parse_event_t : uint8_t
    {
N
Niels 已提交
934 935 936 937 938 939 940 941 942 943 944 945
        /// 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 已提交
946 947
    };

N
Niels 已提交
948 949 950 951
    /*!
    @brief per-element parser callback type

    With a parser callback function, the result of parsing a JSON text can be
N
Niels 已提交
952 953 954 955 956 957 958
    influenced. When passed to @ref parse(std::istream&, const
    parser_callback_t) or @ref parse(const string_t&, const parser_callback_t),
    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 已提交
959 960 961 962 963 964 965 966 967 968 969 970 971 972

    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 已提交
973 974
    @image html callback_events.png "Example when certain parse events are triggered"

N
Niels 已提交
975 976
    Discarding a value (i.e., returning `false`) has different effects
    depending on the context in which function was called:
N
Niels 已提交
977 978 979

    - Discarded values in structured types are skipped. That is, the parser
      will behave as if the discarded value was never read.
N
Niels 已提交
980 981
    - 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 已提交
982

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

N
Niels 已提交
985
    @param[in] event  an event of type parse_event_t indicating the context in
N
Niels 已提交
986 987 988 989 990 991 992 993 994 995 996
    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
    @ref parse(const string_t&, parser_callback_t) for examples
997

N
Niels 已提交
998
    @since version 1.0.0
N
Niels 已提交
999
    */
N
Niels 已提交
1000 1001 1002
    using parser_callback_t = std::function<bool(int depth,
                              parse_event_t event,
                              basic_json& parsed)>;
N
Niels 已提交
1003

N
Niels 已提交
1004 1005 1006 1007 1008

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

N
Niels 已提交
1009
    /// @name constructors and destructors
N
Niels 已提交
1010 1011
    /// Constructors of class @ref basic_json, copy/move constructor, copy
    /// assignment, static functions creating objects, and the destructor.
N
Niels 已提交
1012 1013
    /// @{

N
Niels 已提交
1014 1015 1016
    /*!
    @brief create an empty value with a given type

N
Niels 已提交
1017 1018 1019 1020 1021
    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 已提交
1022 1023 1024 1025 1026 1027
    null        | `null`
    boolean     | `false`
    string      | `""`
    number      | `0`
    object      | `{}`
    array       | `[]`
N
Niels 已提交
1028

1029
    @param[in] value_type  the type of the value to create
N
Niels 已提交
1030 1031 1032

    @complexity Constant.

N
Niels 已提交
1033
    @throw std::bad_alloc if allocation for object, array, or string value
N
Niels 已提交
1034
    fails
N
Niels 已提交
1035 1036 1037

    @liveexample{The following code shows the constructor for different @ref
    value_t values,basic_json__value_t}
1038 1039 1040 1041 1042 1043

    @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 已提交
1044 1045 1046 1047
    @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
1048 1049
    @sa @ref basic_json(const number_unsigned_t) -- create a number (unsigned)
    value
1050

N
Niels 已提交
1051
    @since version 1.0.0
N
Niels 已提交
1052
    */
1053 1054
    basic_json(const value_t value_type)
        : m_type(value_type), m_value(value_type)
1055 1056 1057
    {
        assert_invariant();
    }
N
Niels 已提交
1058

N
Niels 已提交
1059 1060
    /*!
    @brief create a null object (implicitly)
N
Niels 已提交
1061 1062 1063 1064

    Create a `null` JSON value. This is the implicit version of the `null`
    value constructor as it takes no parameters.

1065 1066 1067
    @note The class invariant is satisfied, because it poses no requirements
    for null values.

N
Niels 已提交
1068 1069
    @complexity Constant.

N
Niels 已提交
1070 1071 1072
    @exceptionsafety No-throw guarantee: this constructor never throws
    exceptions.

N
Niels 已提交
1073 1074 1075
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
1076 1077 1078 1079 1080 1081
    - The complexity is constant.
    - As postcondition, it holds: `basic_json().empty() == true`.

    @liveexample{The following code shows the constructor for a `null` JSON
    value.,basic_json}

1082 1083
    @sa @ref basic_json(std::nullptr_t) -- create a `null` value

N
Niels 已提交
1084
    @since version 1.0.0
N
Niels 已提交
1085
    */
N
Niels 已提交
1086
    basic_json() = default;
N
Niels 已提交
1087

N
Niels 已提交
1088 1089 1090 1091 1092
    /*!
    @brief create a null object (explicitly)

    Create a `null` JSON value. This is the explicitly version of the `null`
    value constructor as it takes a null pointer as parameter. It allows to
N
Niels 已提交
1093
    create `null` values by explicitly assigning a `nullptr` to a JSON value.
N
Niels 已提交
1094 1095
    The passed null pointer itself is not read -- it is only used to choose
    the right constructor.
N
Niels 已提交
1096 1097 1098

    @complexity Constant.

N
Niels 已提交
1099 1100 1101
    @exceptionsafety No-throw guarantee: this constructor never throws
    exceptions.

N
Niels 已提交
1102 1103 1104
    @liveexample{The following code shows the constructor with null pointer
    parameter.,basic_json__nullptr_t}

1105 1106 1107
    @sa @ref basic_json() -- default constructor (implicitly creating a `null`
    value)

N
Niels 已提交
1108
    @since version 1.0.0
N
Niels 已提交
1109
    */
N
Niels 已提交
1110
    basic_json(std::nullptr_t) noexcept
N
Niels 已提交
1111
        : basic_json(value_t::null)
1112 1113 1114
    {
        assert_invariant();
    }
N
Niels 已提交
1115

N
Niels 已提交
1116 1117 1118 1119 1120
    /*!
    @brief create an object (explicit)

    Create an object JSON value with a given content.

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

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

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

N
Niels 已提交
1127 1128
    @liveexample{The following code shows the constructor with an @ref
    object_t parameter.,basic_json__object_t}
N
Niels 已提交
1129

1130 1131 1132
    @sa @ref basic_json(const CompatibleObjectType&) -- create an object value
    from a compatible STL container

N
Niels 已提交
1133
    @since version 1.0.0
N
Niels 已提交
1134
    */
1135 1136
    basic_json(const object_t& val)
        : m_type(value_t::object), m_value(val)
1137 1138 1139
    {
        assert_invariant();
    }
N
Niels 已提交
1140

N
Niels 已提交
1141 1142 1143 1144
    /*!
    @brief create an object (implicit)

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

N
Niels 已提交
1148 1149 1150 1151 1152
    @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 已提交
1153

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

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

N
Niels 已提交
1158
    @throw std::bad_alloc if allocation for object value fails
N
Niels 已提交
1159 1160 1161 1162

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

1163 1164
    @sa @ref basic_json(const object_t&) -- create an object value

N
Niels 已提交
1165
    @since version 1.0.0
N
Niels 已提交
1166 1167
    */
    template <class CompatibleObjectType, typename
N
Niels 已提交
1168
              std::enable_if<
N
Niels 已提交
1169 1170
                  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
N
Niels 已提交
1171
              = 0>
1172
    basic_json(const CompatibleObjectType& val)
N
Niels 已提交
1173 1174
        : m_type(value_t::object)
    {
1175 1176
        using std::begin;
        using std::end;
1177
        m_value.object = create<object_t>(begin(val), end(val));
1178
        assert_invariant();
N
Niels 已提交
1179
    }
N
Niels 已提交
1180

N
Niels 已提交
1181 1182 1183 1184 1185
    /*!
    @brief create an array (explicit)

    Create an array JSON value with a given content.

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

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

N
Niels 已提交
1190
    @throw std::bad_alloc if allocation for array value fails
N
Niels 已提交
1191 1192 1193 1194

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

1195 1196 1197
    @sa @ref basic_json(const CompatibleArrayType&) -- create an array value
    from a compatible STL containers

N
Niels 已提交
1198
    @since version 1.0.0
N
Niels 已提交
1199
    */
1200 1201
    basic_json(const array_t& val)
        : m_type(value_t::array), m_value(val)
1202 1203 1204
    {
        assert_invariant();
    }
N
Niels 已提交
1205

N
Niels 已提交
1206 1207 1208 1209
    /*!
    @brief create an array (implicit)

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

N
Niels 已提交
1213 1214 1215 1216 1217
    @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 已提交
1218

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

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

N
Niels 已提交
1223
    @throw std::bad_alloc if allocation for array value fails
N
Niels 已提交
1224 1225 1226 1227

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

1228 1229
    @sa @ref basic_json(const array_t&) -- create an array value

N
Niels 已提交
1230
    @since version 1.0.0
N
Niels 已提交
1231 1232
    */
    template <class CompatibleArrayType, typename
N
Niels 已提交
1233
              std::enable_if<
N
Niels 已提交
1234 1235 1236 1237
                  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
N
Niels 已提交
1238 1239 1240
                  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
N
Niels 已提交
1241
              = 0>
1242
    basic_json(const CompatibleArrayType& val)
N
Niels 已提交
1243 1244
        : m_type(value_t::array)
    {
1245 1246
        using std::begin;
        using std::end;
1247
        m_value.array = create<array_t>(begin(val), end(val));
1248
        assert_invariant();
N
Niels 已提交
1249
    }
N
Niels 已提交
1250

N
Niels 已提交
1251 1252 1253 1254 1255
    /*!
    @brief create a string (explicit)

    Create an string JSON value with a given content.

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

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

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

N
Niels 已提交
1262 1263
    @liveexample{The following code shows the constructor with an @ref
    string_t parameter.,basic_json__string_t}
N
Niels 已提交
1264

1265 1266 1267 1268 1269
    @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 已提交
1270
    @since version 1.0.0
N
Niels 已提交
1271
    */
1272 1273
    basic_json(const string_t& val)
        : m_type(value_t::string), m_value(val)
1274 1275 1276
    {
        assert_invariant();
    }
N
Niels 已提交
1277

N
Niels 已提交
1278 1279 1280
    /*!
    @brief create a string (explicit)

N
Niels 已提交
1281
    Create a string JSON value with a given content.
N
Niels 已提交
1282

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

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

N
Niels 已提交
1287
    @throw std::bad_alloc if allocation for string value fails
N
Niels 已提交
1288 1289 1290 1291

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

1292 1293 1294 1295
    @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 已提交
1296
    @since version 1.0.0
N
Niels 已提交
1297
    */
1298 1299
    basic_json(const typename string_t::value_type* val)
        : basic_json(string_t(val))
1300 1301 1302
    {
        assert_invariant();
    }
N
Niels 已提交
1303

N
Niels 已提交
1304 1305 1306 1307 1308
    /*!
    @brief create a string (implicit)

    Create a string JSON value with a given content.

1309
    @param[in] val  a value for the string
N
Niels 已提交
1310 1311

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

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

N
Niels 已提交
1316
    @throw std::bad_alloc if allocation for string value fails
N
Niels 已提交
1317 1318 1319 1320

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

1321 1322 1323 1324
    @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 已提交
1325
    @since version 1.0.0
N
Niels 已提交
1326
    */
N
Niels 已提交
1327
    template <class CompatibleStringType, typename
N
Niels 已提交
1328
              std::enable_if<
N
Niels 已提交
1329
                  std::is_constructible<string_t, CompatibleStringType>::value, int>::type
N
Niels 已提交
1330
              = 0>
1331 1332
    basic_json(const CompatibleStringType& val)
        : basic_json(string_t(val))
1333 1334 1335
    {
        assert_invariant();
    }
N
Niels 已提交
1336

N
Niels 已提交
1337 1338 1339 1340 1341
    /*!
    @brief create a boolean (explicit)

    Creates a JSON boolean type from a given value.

1342
    @param[in] val  a boolean value to store
N
Niels 已提交
1343 1344 1345 1346 1347

    @complexity Constant.

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

N
Niels 已提交
1349
    @since version 1.0.0
N
Niels 已提交
1350
    */
N
Niels 已提交
1351
    basic_json(boolean_t val) noexcept
1352
        : m_type(value_t::boolean), m_value(val)
1353 1354 1355
    {
        assert_invariant();
    }
N
Niels 已提交
1356

N
Niels 已提交
1357 1358 1359
    /*!
    @brief create an integer number (explicit)

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

N
Niels 已提交
1362
    @tparam T A helper type to remove this function via SFINAE in case @ref
N
Niels 已提交
1363 1364 1365
    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 已提交
1366

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

N
Niels 已提交
1369 1370
    @complexity Constant.

N
Niels 已提交
1371
    @liveexample{The example below shows the construction of an integer
N
Niels 已提交
1372
    number value.,basic_json__number_integer_t}
N
Niels 已提交
1373

1374 1375 1376 1377
    @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 已提交
1378
    @since version 1.0.0
N
Niels 已提交
1379 1380 1381 1382 1383
    */
    template<typename T,
             typename std::enable_if<
                 not (std::is_same<T, int>::value)
                 and std::is_same<T, number_integer_t>::value
1384 1385
                 , int>::type
             = 0>
N
Niels 已提交
1386
    basic_json(const number_integer_t val) noexcept
1387
        : m_type(value_t::number_integer), m_value(val)
1388 1389 1390
    {
        assert_invariant();
    }
N
Niels 已提交
1391

N
Niels 已提交
1392
    /*!
N
Niels 已提交
1393 1394
    @brief create an integer number from an enum type (explicit)

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

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

N
Niels 已提交
1399 1400 1401
    @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 已提交
1402 1403
    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 已提交
1404 1405 1406

    @complexity Constant.

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

1410 1411 1412 1413 1414
    @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 已提交
1415
    @since version 1.0.0
N
Niels 已提交
1416
    */
N
Niels 已提交
1417
    basic_json(const int val) noexcept
N
Niels 已提交
1418
        : m_type(value_t::number_integer),
1419
          m_value(static_cast<number_integer_t>(val))
1420 1421 1422
    {
        assert_invariant();
    }
N
Niels 已提交
1423

N
Niels 已提交
1424 1425 1426
    /*!
    @brief create an integer number (implicit)

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

N
Niels 已提交
1431
    @tparam CompatibleNumberIntegerType An integer type which is compatible to
N
Niels 已提交
1432 1433
    @ref number_integer_t. Examples include the types `int`, `int32_t`,
    `long`, and `short`.
N
Niels 已提交
1434

1435
    @param[in] val  an integer to create a JSON number from
N
Niels 已提交
1436 1437 1438

    @complexity Constant.

N
Niels 已提交
1439 1440
    @liveexample{The example below shows the construction of several integer
    number values from compatible
N
Niels 已提交
1441 1442
    types.,basic_json__CompatibleIntegerNumberType}

1443 1444 1445 1446
    @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 已提交
1447
    @since version 1.0.0
N
Niels 已提交
1448 1449
    */
    template<typename CompatibleNumberIntegerType, typename
N
Niels 已提交
1450
             std::enable_if<
N
Niels 已提交
1451
                 std::is_constructible<number_integer_t, CompatibleNumberIntegerType>::value and
N
Niels 已提交
1452 1453
                 std::numeric_limits<CompatibleNumberIntegerType>::is_integer and
                 std::numeric_limits<CompatibleNumberIntegerType>::is_signed,
1454
                 CompatibleNumberIntegerType>::type
N
Niels 已提交
1455
             = 0>
1456
    basic_json(const CompatibleNumberIntegerType val) noexcept
N
Niels 已提交
1457
        : m_type(value_t::number_integer),
1458
          m_value(static_cast<number_integer_t>(val))
1459 1460 1461
    {
        assert_invariant();
    }
N
Niels 已提交
1462

1463 1464 1465 1466 1467
    /*!
    @brief create an unsigned integer number (explicit)

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

N
Niels 已提交
1468 1469
    @tparam T  helper type to compare number_unsigned_t and unsigned int (not
    visible in) the interface.
1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485

    @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
    */
    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 已提交
1486
    basic_json(const number_unsigned_t val) noexcept
1487
        : m_type(value_t::number_unsigned), m_value(val)
1488 1489 1490
    {
        assert_invariant();
    }
N
Niels 已提交
1491

1492 1493 1494
    /*!
    @brief create an unsigned number (implicit)

N
Niels 已提交
1495 1496 1497
    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.
1498

N
Niels 已提交
1499 1500
    @tparam CompatibleNumberUnsignedType An integer type which is compatible
    to @ref number_unsigned_t. Examples may include the types `unsigned int`,
N
Niels 已提交
1501
    `uint32_t`, or `unsigned short`.
1502 1503 1504 1505 1506 1507 1508 1509 1510 1511

    @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 已提交
1512 1513 1514 1515 1516 1517 1518
    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>
1519 1520 1521
    basic_json(const CompatibleNumberUnsignedType val) noexcept
        : m_type(value_t::number_unsigned),
          m_value(static_cast<number_unsigned_t>(val))
1522 1523 1524
    {
        assert_invariant();
    }
1525

N
Niels 已提交
1526 1527 1528 1529 1530
    /*!
    @brief create a floating-point number (explicit)

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

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

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

N
Niels 已提交
1540
    @complexity Constant.
N
Niels 已提交
1541 1542 1543

    @liveexample{The following example creates several floating-point
    values.,basic_json__number_float_t}
1544 1545 1546 1547

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

N
Niels 已提交
1548
    @since version 1.0.0
N
Niels 已提交
1549
    */
N
Niels 已提交
1550
    basic_json(const number_float_t val) noexcept
1551
        : m_type(value_t::number_float), m_value(val)
N
Niels 已提交
1552 1553
    {
        // replace infinity and NAN by null
1554
        if (not std::isfinite(val))
N
Niels 已提交
1555 1556 1557 1558
        {
            m_type = value_t::null;
            m_value = json_value();
        }
1559 1560

        assert_invariant();
N
Niels 已提交
1561
    }
N
Niels 已提交
1562

N
Niels 已提交
1563 1564 1565 1566
    /*!
    @brief create an floating-point number (implicit)

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

N
Niels 已提交
1570 1571 1572
    @tparam CompatibleNumberFloatType A floating-point type which is
    compatible to @ref number_float_t. Examples may include the types `float`
    or `double`.
N
Niels 已提交
1573

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

1576
    @note [RFC 7159](http://www.rfc-editor.org/rfc/rfc7159.txt), section 6
N
Niels 已提交
1577
    disallows NaN values:
N
Niels 已提交
1578 1579
    > Numeric values that cannot be represented in the grammar below (such as
    > Infinity and NaN) are not permitted.
N
Niels 已提交
1580 1581
    In case the parameter @a val is not a number, a JSON null value is
    created instead.
N
Niels 已提交
1582 1583 1584

    @complexity Constant.

N
Niels 已提交
1585
    @liveexample{The example below shows the construction of several
N
Niels 已提交
1586 1587 1588
    floating-point number values from compatible
    types.,basic_json__CompatibleNumberFloatType}

1589 1590 1591
    @sa @ref basic_json(const number_float_t) -- create a number value
    (floating-point)

N
Niels 已提交
1592
    @since version 1.0.0
N
Niels 已提交
1593
    */
N
Niels 已提交
1594
    template<typename CompatibleNumberFloatType, typename = typename
N
Niels 已提交
1595
             std::enable_if<
N
Niels 已提交
1596 1597
                 std::is_constructible<number_float_t, CompatibleNumberFloatType>::value and
                 std::is_floating_point<CompatibleNumberFloatType>::value>::type
N
Niels 已提交
1598
             >
1599 1600
    basic_json(const CompatibleNumberFloatType val) noexcept
        : basic_json(number_float_t(val))
1601 1602 1603
    {
        assert_invariant();
    }
N
Niels 已提交
1604

N
Niels 已提交
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
    /*!
    @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 已提交
1615 1616
       object value is created where the first elements of the pairs are
       treated as keys and the second elements are as values.
N
Niels 已提交
1617 1618 1619
    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 已提交
1620
    JSON values. The rationale is as follows:
N
Niels 已提交
1621 1622

    1. The empty initializer list is written as `{}` which is exactly an empty
N
Niels 已提交
1623
       JSON object.
N
Niels 已提交
1624
    2. C++ has now way of describing mapped types other than to list a list of
N
Niels 已提交
1625 1626 1627
       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 已提交
1628
    3. In all other cases, the initializer list could not be interpreted as
N
Niels 已提交
1629
       JSON object type, so interpreting it as JSON array type is safe.
N
Niels 已提交
1630

N
Niels 已提交
1631 1632
    With the rules described above, the following JSON values cannot be
    expressed by an initializer list:
N
Niels 已提交
1633

N
Niels 已提交
1634 1635 1636 1637 1638
    - 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 已提交
1639 1640 1641 1642 1643

    @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 已提交
1644
    @param[in] init  initializer list with JSON values
N
Niels 已提交
1645

N
Niels 已提交
1646 1647 1648
    @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 已提交
1649 1650
    used by the functions @ref array(std::initializer_list<basic_json>) and
    @ref object(std::initializer_list<basic_json>).
N
Niels 已提交
1651

N
Niels 已提交
1652 1653
    @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 已提交
1654 1655 1656
    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 已提交
1657 1658
    @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 已提交
1659 1660
    whose first element is a string; example: `"cannot create object from
    initializer list"`
N
Niels 已提交
1661 1662 1663 1664

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

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

N
Niels 已提交
1667
    @sa @ref array(std::initializer_list<basic_json>) -- create a JSON array
1668
    value from an initializer list
N
Niels 已提交
1669
    @sa @ref object(std::initializer_list<basic_json>) -- create a JSON object
1670 1671
    value from an initializer list

N
Niels 已提交
1672
    @since version 1.0.0
N
Niels 已提交
1673
    */
N
Niels 已提交
1674 1675
    basic_json(std::initializer_list<basic_json> init,
               bool type_deduction = true,
N
Niels 已提交
1676
               value_t manual_type = value_t::array)
N
Niels 已提交
1677
    {
N
Niels 已提交
1678 1679
        // check if each element is an array with two elements whose first
        // element is a string
N
Niels 已提交
1680 1681
        bool is_an_object = std::all_of(init.begin(), init.end(),
                                        [](const basic_json & element)
N
Niels 已提交
1682
        {
N
Niels 已提交
1683 1684
            return element.is_array() and element.size() == 2 and element[0].is_string();
        });
N
Niels 已提交
1685 1686 1687 1688 1689 1690 1691

        // 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)
            {
1692
                is_an_object = false;
N
Niels 已提交
1693 1694 1695
            }

            // if object is wanted but impossible, throw an exception
1696
            if (manual_type == value_t::object and not is_an_object)
N
Niels 已提交
1697
            {
N
Niels 已提交
1698
                throw std::domain_error("cannot create object from initializer list");
N
Niels 已提交
1699 1700 1701
            }
        }

1702
        if (is_an_object)
N
Niels 已提交
1703 1704 1705
        {
            // the initializer list is a list of pairs -> create object
            m_type = value_t::object;
N
Niels 已提交
1706
            m_value = value_t::object;
N
Niels 已提交
1707

N
Niels 已提交
1708
            std::for_each(init.begin(), init.end(), [this](const basic_json & element)
N
Niels 已提交
1709
            {
N
Niels 已提交
1710
                m_value.object->emplace(*(element[0].m_value.string), element[1]);
N
Niels 已提交
1711
            });
N
Niels 已提交
1712 1713 1714 1715 1716
        }
        else
        {
            // the initializer list describes an array -> create array
            m_type = value_t::array;
N
Niels 已提交
1717
            m_value.array = create<array_t>(init);
N
Niels 已提交
1718
        }
1719 1720

        assert_invariant();
N
Niels 已提交
1721 1722
    }

N
Niels 已提交
1723 1724 1725 1726 1727 1728 1729
    /*!
    @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 已提交
1730 1731
    @note This function is only needed to express two edge cases that cannot
    be realized with the initializer list constructor (@ref
N
Niels 已提交
1732 1733
    basic_json(std::initializer_list<basic_json>, bool, value_t)). These cases
    are:
N
Niels 已提交
1734
    1. creating an array whose elements are all pairs whose first element is a
N
Niels 已提交
1735
    string -- in this case, the initializer list constructor would create an
N
Niels 已提交
1736
    object, taking the first elements as keys
N
Niels 已提交
1737
    2. creating an empty array -- passing the empty initializer list to the
N
Niels 已提交
1738 1739
    initializer list constructor yields an empty object

N
Niels 已提交
1740
    @param[in] init  initializer list with JSON values to create an array from
N
Niels 已提交
1741 1742 1743 1744 1745 1746
    (optional)

    @return JSON array value

    @complexity Linear in the size of @a init.

N
Niels 已提交
1747
    @liveexample{The following code shows an example for the `array`
N
Niels 已提交
1748 1749
    function.,array}

1750 1751 1752 1753 1754
    @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 已提交
1755
    @since version 1.0.0
N
Niels 已提交
1756
    */
N
Niels 已提交
1757 1758
    static basic_json array(std::initializer_list<basic_json> init =
                                std::initializer_list<basic_json>())
N
Niels 已提交
1759
    {
N
Niels 已提交
1760
        return basic_json(init, false, value_t::array);
N
Niels 已提交
1761 1762
    }

N
Niels 已提交
1763 1764 1765 1766
    /*!
    @brief explicitly create an object from an initializer list

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

    @note This function is only added for symmetry reasons. In contrast to the
1771 1772 1773
    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 已提交
1774 1775
    constructor @ref basic_json(std::initializer_list<basic_json>, bool,
    value_t).
N
Niels 已提交
1776

N
Niels 已提交
1777
    @param[in] init  initializer list to create an object from (optional)
N
Niels 已提交
1778 1779 1780 1781

    @return JSON object value

    @throw std::domain_error if @a init is not a pair whose first elements are
1782 1783
    strings; thrown by
    @ref basic_json(std::initializer_list<basic_json>, bool, value_t)
N
Niels 已提交
1784 1785 1786

    @complexity Linear in the size of @a init.

N
Niels 已提交
1787
    @liveexample{The following code shows an example for the `object`
N
Niels 已提交
1788 1789
    function.,object}

1790 1791 1792 1793 1794
    @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 已提交
1795
    @since version 1.0.0
N
Niels 已提交
1796
    */
N
Niels 已提交
1797 1798
    static basic_json object(std::initializer_list<basic_json> init =
                                 std::initializer_list<basic_json>())
N
Niels 已提交
1799
    {
N
Niels 已提交
1800
        return basic_json(init, false, value_t::object);
N
Niels 已提交
1801 1802
    }

N
Niels 已提交
1803 1804 1805
    /*!
    @brief construct an array with count copies of given value

N
Niels 已提交
1806 1807
    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,
1808
    `std::distance(begin(),end()) == cnt` holds.
N
Niels 已提交
1809

1810 1811
    @param[in] cnt  the number of JSON copies of @a val to create
    @param[in] val  the JSON value to copy
N
Niels 已提交
1812

1813
    @complexity Linear in @a cnt.
N
Niels 已提交
1814 1815 1816 1817

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

N
Niels 已提交
1819
    @since version 1.0.0
N
Niels 已提交
1820
    */
1821
    basic_json(size_type cnt, const basic_json& val)
N
Niels 已提交
1822 1823
        : m_type(value_t::array)
    {
1824
        m_value.array = create<array_t>(cnt, val);
1825
        assert_invariant();
N
Niels 已提交
1826
    }
N
Niels 已提交
1827

N
Niels 已提交
1828 1829 1830 1831 1832
    /*!
    @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 已提交
1833
    - In case of primitive types (number, boolean, or string), @a first must
N
Niels 已提交
1834 1835
      be `begin()` and @a last must be `end()`. In this case, the value is
      copied. Otherwise, std::out_of_range is thrown.
N
Niels 已提交
1836 1837
    - In case of structured types (array, object), the constructor behaves as
      similar versions for `std::vector`.
N
Niels 已提交
1838
    - In case of a null type, std::domain_error is thrown.
N
Niels 已提交
1839 1840 1841 1842 1843 1844 1845

    @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 已提交
1846 1847
    @pre Iterators @a first and @a last must be initialized. **This
         precondition is enforced with an assertion.**
N
Niels 已提交
1848

N
Niels 已提交
1849
    @throw std::domain_error if iterators are not compatible; that is, do not
N
Niels 已提交
1850
    belong to the same JSON value; example: `"iterators are not compatible"`
N
Niels 已提交
1851
    @throw std::out_of_range if iterators are for a primitive type (number,
N
Niels 已提交
1852 1853
    boolean, or string) where an out of range error can be detected easily;
    example: `"iterators out of range"`
N
Niels 已提交
1854
    @throw std::bad_alloc if allocation for object, array, or string fails
N
Niels 已提交
1855 1856
    @throw std::domain_error if called with a null value; example: `"cannot
    use construct with iterators from null"`
N
Niels 已提交
1857 1858 1859 1860 1861

    @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}
1862

N
Niels 已提交
1863
    @since version 1.0.0
N
Niels 已提交
1864 1865
    */
    template <class InputIT, typename
N
Niels 已提交
1866
              std::enable_if<
N
Niels 已提交
1867 1868
                  std::is_same<InputIT, typename basic_json_t::iterator>::value or
                  std::is_same<InputIT, typename basic_json_t::const_iterator>::value
N
Niels 已提交
1869 1870
                  , int>::type
              = 0>
N
Niels 已提交
1871
    basic_json(InputIT first, InputIT last)
N
Niels 已提交
1872
    {
N
Niels 已提交
1873 1874 1875
        assert(first.m_object != nullptr);
        assert(last.m_object != nullptr);

N
Niels 已提交
1876
        // make sure iterator fits the current value
N
Niels 已提交
1877
        if (first.m_object != last.m_object)
N
Niels 已提交
1878
        {
N
Niels 已提交
1879
            throw std::domain_error("iterators are not compatible");
N
Niels 已提交
1880 1881
        }

N
Niels 已提交
1882 1883 1884
        // copy type from first iterator
        m_type = first.m_object->m_type;

N
Niels 已提交
1885
        // check if iterator range is complete for primitive values
N
Niels 已提交
1886 1887 1888
        switch (m_type)
        {
            case value_t::boolean:
1889 1890
            case value_t::number_float:
            case value_t::number_integer:
1891
            case value_t::number_unsigned:
N
Niels 已提交
1892 1893
            case value_t::string:
            {
1894
                if (not first.m_it.primitive_iterator.is_begin() or not last.m_it.primitive_iterator.is_end())
N
Niels 已提交
1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913
                {
                    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 已提交
1914

1915 1916 1917 1918 1919
            case value_t::number_unsigned:
            {
                m_value.number_unsigned = first.m_object->m_value.number_unsigned;
                break;
            }
N
Niels 已提交
1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934

            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 已提交
1935
                m_value = *first.m_object->m_value.string;
N
Niels 已提交
1936 1937 1938 1939 1940
                break;
            }

            case value_t::object:
            {
N
Cleanup  
Niels 已提交
1941
                m_value.object = create<object_t>(first.m_it.object_iterator, last.m_it.object_iterator);
N
Niels 已提交
1942 1943 1944 1945 1946
                break;
            }

            case value_t::array:
            {
N
Cleanup  
Niels 已提交
1947
                m_value.array = create<array_t>(first.m_it.array_iterator, last.m_it.array_iterator);
N
Niels 已提交
1948 1949 1950 1951 1952
                break;
            }

            default:
            {
N
Niels 已提交
1953
                throw std::domain_error("cannot use construct with iterators from " + first.m_object->type_name());
N
Niels 已提交
1954 1955
            }
        }
1956 1957

        assert_invariant();
N
Niels 已提交
1958 1959
    }

N
Niels 已提交
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979
    /*!
    @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.

    @liveexample{The example below demonstrates constructing a JSON value from
    a `std::stringstream` with and without callback
    function.,basic_json__istream}

    @since version 2.0.0
    */
N
Niels 已提交
1980
    explicit basic_json(std::istream& i, const parser_callback_t cb = nullptr)
N
Niels 已提交
1981 1982
    {
        *this = parser(i, cb).parse();
1983
        assert_invariant();
N
Niels 已提交
1984 1985
    }

N
Niels 已提交
1986 1987 1988 1989
    ///////////////////////////////////////
    // other constructors and destructor //
    ///////////////////////////////////////

N
Niels 已提交
1990 1991
    /*!
    @brief copy constructor
N
Niels 已提交
1992

N
Niels 已提交
1993 1994
    Creates a copy of a given JSON value.

N
Niels 已提交
1995
    @param[in] other  the JSON value to copy
N
Niels 已提交
1996 1997 1998

    @complexity Linear in the size of @a other.

N
Niels 已提交
1999 2000 2001
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
2002 2003 2004
    - The complexity is linear.
    - As postcondition, it holds: `other == basic_json(other)`.

N
Niels 已提交
2005
    @throw std::bad_alloc if allocation for object, array, or string fails.
N
Niels 已提交
2006 2007

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

N
Niels 已提交
2010
    @since version 1.0.0
N
Niels 已提交
2011
    */
N
Niels 已提交
2012
    basic_json(const basic_json& other)
N
Niels 已提交
2013 2014
        : m_type(other.m_type)
    {
2015 2016 2017
        // check of passed value is valid
        other.assert_invariant();

N
Niels 已提交
2018 2019
        switch (m_type)
        {
2020
            case value_t::object:
N
Niels 已提交
2021
            {
N
Niels 已提交
2022
                m_value = *other.m_value.object;
N
Niels 已提交
2023 2024
                break;
            }
N
Niels 已提交
2025

2026
            case value_t::array:
N
Niels 已提交
2027
            {
N
Niels 已提交
2028
                m_value = *other.m_value.array;
N
Niels 已提交
2029 2030
                break;
            }
N
Niels 已提交
2031

2032
            case value_t::string:
N
Niels 已提交
2033
            {
N
Niels 已提交
2034
                m_value = *other.m_value.string;
N
Niels 已提交
2035 2036
                break;
            }
N
Niels 已提交
2037

2038
            case value_t::boolean:
N
Niels 已提交
2039
            {
N
Niels 已提交
2040
                m_value = other.m_value.boolean;
N
Niels 已提交
2041 2042
                break;
            }
N
Niels 已提交
2043

2044
            case value_t::number_integer:
N
Niels 已提交
2045
            {
N
Niels 已提交
2046
                m_value = other.m_value.number_integer;
N
Niels 已提交
2047 2048
                break;
            }
N
Niels 已提交
2049

2050 2051 2052 2053 2054
            case value_t::number_unsigned:
            {
                m_value = other.m_value.number_unsigned;
                break;
            }
N
Niels 已提交
2055

2056
            case value_t::number_float:
N
Niels 已提交
2057
            {
N
Niels 已提交
2058
                m_value = other.m_value.number_float;
N
Niels 已提交
2059 2060
                break;
            }
2061 2062 2063 2064 2065

            default:
            {
                break;
            }
N
Niels 已提交
2066
        }
2067 2068

        assert_invariant();
N
Niels 已提交
2069 2070
    }

N
Niels 已提交
2071 2072 2073 2074 2075 2076 2077
    /*!
    @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 已提交
2078
    @param[in,out] other  value to move to this object
N
Niels 已提交
2079 2080 2081 2082 2083 2084 2085

    @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}
2086

N
Niels 已提交
2087
    @since version 1.0.0
N
Niels 已提交
2088
    */
N
Niels 已提交
2089
    basic_json(basic_json&& other) noexcept
N
Niels 已提交
2090 2091
        : m_type(std::move(other.m_type)),
          m_value(std::move(other.m_value))
N
Niels 已提交
2092
    {
2093 2094 2095
        // check that passed value is valid
        other.assert_invariant();

N
Niels 已提交
2096
        // invalidate payload
N
Niels 已提交
2097 2098
        other.m_type = value_t::null;
        other.m_value = {};
2099 2100

        assert_invariant();
N
Niels 已提交
2101 2102
    }

N
Niels 已提交
2103 2104
    /*!
    @brief copy assignment
N
Niels 已提交
2105

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

N
Niels 已提交
2110
    @param[in] other  value to copy from
N
Niels 已提交
2111 2112 2113

    @complexity Linear.

N
Niels 已提交
2114 2115 2116
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
2117 2118
    - The complexity is linear.

N
Niels 已提交
2119 2120 2121 2122
    @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 已提交
2123

N
Niels 已提交
2124
    @since version 1.0.0
N
Niels 已提交
2125
    */
N
Niels 已提交
2126
    reference& operator=(basic_json other) noexcept (
N
Niels 已提交
2127 2128 2129 2130 2131
        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 已提交
2132
    {
2133 2134 2135
        // check that passed value is valid
        other.assert_invariant();

N
Niels 已提交
2136
        using std::swap;
N
Cleanup  
Niels 已提交
2137 2138
        swap(m_type, other.m_type);
        swap(m_value, other.m_value);
2139 2140

        assert_invariant();
N
Niels 已提交
2141 2142 2143
        return *this;
    }

N
Niels 已提交
2144 2145
    /*!
    @brief destructor
N
Niels 已提交
2146

N
Niels 已提交
2147
    Destroys the JSON value and frees all allocated memory.
N
Niels 已提交
2148 2149 2150

    @complexity Linear.

N
Niels 已提交
2151 2152 2153
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
2154 2155
    - The complexity is linear.
    - All stored elements are destroyed and all memory is freed.
2156

N
Niels 已提交
2157
    @since version 1.0.0
N
Niels 已提交
2158
    */
N
Niels 已提交
2159
    ~basic_json()
N
Niels 已提交
2160
    {
2161 2162
        assert_invariant();

N
Niels 已提交
2163 2164
        switch (m_type)
        {
2165
            case value_t::object:
N
Niels 已提交
2166
            {
N
Niels 已提交
2167
                AllocatorType<object_t> alloc;
N
Niels 已提交
2168 2169
                alloc.destroy(m_value.object);
                alloc.deallocate(m_value.object, 1);
N
Niels 已提交
2170 2171
                break;
            }
N
Niels 已提交
2172

2173
            case value_t::array:
N
Niels 已提交
2174
            {
N
Niels 已提交
2175
                AllocatorType<array_t> alloc;
N
Niels 已提交
2176 2177
                alloc.destroy(m_value.array);
                alloc.deallocate(m_value.array, 1);
N
Niels 已提交
2178 2179
                break;
            }
N
Niels 已提交
2180

2181
            case value_t::string:
N
Niels 已提交
2182
            {
N
Niels 已提交
2183
                AllocatorType<string_t> alloc;
N
Niels 已提交
2184
                alloc.destroy(m_value.string);
N
Niels 已提交
2185
                alloc.deallocate(m_value.string, 1);
N
Niels 已提交
2186 2187
                break;
            }
N
Niels 已提交
2188 2189

            default:
N
Niels 已提交
2190
            {
N
Niels 已提交
2191
                // all other types need no specific destructor
N
Niels 已提交
2192 2193 2194 2195 2196
                break;
            }
        }
    }

N
Niels 已提交
2197
    /// @}
N
Niels 已提交
2198 2199 2200 2201 2202 2203

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

N
Niels 已提交
2204
    /// @name object inspection
N
Niels 已提交
2205
    /// Functions to inspect the type of a JSON value.
N
Niels 已提交
2206 2207
    /// @{

N
Niels 已提交
2208
    /*!
N
Niels 已提交
2209 2210
    @brief serialization

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

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

N
Niels 已提交
2220 2221 2222 2223 2224
    @return string containing the serialization of the JSON value

    @complexity Linear.

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

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

N
Niels 已提交
2229
    @since version 1.0.0
N
Niels 已提交
2230
    */
N
Niels 已提交
2231
    string_t dump(const int indent = -1) const
N
Niels 已提交
2232
    {
N
Niels 已提交
2233
        std::stringstream ss;
N
Niels 已提交
2234 2235
        // fix locale problems
        ss.imbue(std::locale(std::locale(), new DecimalSeparator));
N
Niels 已提交
2236

2237 2238 2239 2240 2241 2242
        // 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 已提交
2243 2244
        if (indent >= 0)
        {
N
Niels 已提交
2245
            dump(ss, true, static_cast<unsigned int>(indent));
N
Niels 已提交
2246 2247 2248
        }
        else
        {
N
Niels 已提交
2249
            dump(ss, false, 0);
N
Niels 已提交
2250
        }
N
Niels 已提交
2251 2252

        return ss.str();
N
Niels 已提交
2253 2254
    }

N
Niels 已提交
2255 2256 2257 2258 2259 2260 2261
    /*!
    @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 已提交
2262 2263 2264

    @complexity Constant.

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

N
Niels 已提交
2268
    @liveexample{The following code exemplifies `type()` for all JSON
N
Niels 已提交
2269
    types.,type}
N
Niels 已提交
2270

N
Niels 已提交
2271
    @since version 1.0.0
N
Niels 已提交
2272
    */
N
Niels 已提交
2273
    constexpr value_t type() const noexcept
N
Niels 已提交
2274 2275 2276 2277
    {
        return m_type;
    }

N
Niels 已提交
2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288
    /*!
    @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 已提交
2289 2290 2291
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2292
    @liveexample{The following code exemplifies `is_primitive()` for all JSON
N
Niels 已提交
2293
    types.,is_primitive}
N
Niels 已提交
2294

N
Niels 已提交
2295 2296 2297 2298 2299 2300
    @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 已提交
2301
    @since version 1.0.0
N
Niels 已提交
2302
    */
N
Niels 已提交
2303
    constexpr bool is_primitive() const noexcept
N
Niels 已提交
2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317
    {
        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 已提交
2318 2319 2320
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2321
    @liveexample{The following code exemplifies `is_structured()` for all JSON
N
Niels 已提交
2322
    types.,is_structured}
N
Niels 已提交
2323

N
Niels 已提交
2324 2325 2326 2327
    @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 已提交
2328
    @since version 1.0.0
N
Niels 已提交
2329
    */
N
Niels 已提交
2330
    constexpr bool is_structured() const noexcept
N
Niels 已提交
2331 2332 2333 2334
    {
        return is_array() or is_object();
    }

N
Niels 已提交
2335 2336 2337 2338 2339
    /*!
    @brief return whether value is null

    This function returns true iff the JSON value is null.

N
Niels 已提交
2340
    @return `true` if type is null, `false` otherwise.
N
Niels 已提交
2341 2342 2343

    @complexity Constant.

N
Niels 已提交
2344 2345 2346
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2347
    @liveexample{The following code exemplifies `is_null()` for all JSON
N
Niels 已提交
2348
    types.,is_null}
N
Niels 已提交
2349

N
Niels 已提交
2350
    @since version 1.0.0
N
Niels 已提交
2351
    */
N
Niels 已提交
2352
    constexpr bool is_null() const noexcept
N
Niels 已提交
2353 2354 2355 2356
    {
        return m_type == value_t::null;
    }

N
Niels 已提交
2357 2358 2359 2360 2361
    /*!
    @brief return whether value is a boolean

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

N
Niels 已提交
2362
    @return `true` if type is boolean, `false` otherwise.
N
Niels 已提交
2363 2364 2365

    @complexity Constant.

N
Niels 已提交
2366 2367 2368
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2369
    @liveexample{The following code exemplifies `is_boolean()` for all JSON
N
Niels 已提交
2370
    types.,is_boolean}
N
Niels 已提交
2371

N
Niels 已提交
2372
    @since version 1.0.0
N
Niels 已提交
2373
    */
N
Niels 已提交
2374
    constexpr bool is_boolean() const noexcept
N
Niels 已提交
2375 2376 2377 2378
    {
        return m_type == value_t::boolean;
    }

N
Niels 已提交
2379 2380 2381 2382 2383 2384
    /*!
    @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.

2385 2386
    @return `true` if type is number (regardless whether integer, unsigned
    integer or floating-type), `false` otherwise.
N
Niels 已提交
2387 2388 2389

    @complexity Constant.

N
Niels 已提交
2390 2391 2392
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2393
    @liveexample{The following code exemplifies `is_number()` for all JSON
N
Niels 已提交
2394
    types.,is_number}
N
Niels 已提交
2395

N
Niels 已提交
2396
    @sa @ref is_number_integer() -- check if value is an integer or unsigned
2397
    integer number
N
Niels 已提交
2398 2399
    @sa @ref is_number_unsigned() -- check if value is an unsigned integer
    number
N
Niels 已提交
2400 2401
    @sa @ref is_number_float() -- check if value is a floating-point number

N
Niels 已提交
2402
    @since version 1.0.0
N
Niels 已提交
2403
    */
N
Niels 已提交
2404
    constexpr bool is_number() const noexcept
N
Niels 已提交
2405
    {
N
Niels 已提交
2406
        return is_number_integer() or is_number_float();
N
Niels 已提交
2407 2408
    }

N
Niels 已提交
2409 2410 2411
    /*!
    @brief return whether value is an integer number

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

N
Niels 已提交
2415
    @return `true` if type is an integer or unsigned integer number, `false`
2416
    otherwise.
N
Niels 已提交
2417 2418 2419

    @complexity Constant.

N
Niels 已提交
2420 2421 2422
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2423
    @liveexample{The following code exemplifies `is_number_integer()` for all
N
Niels 已提交
2424
    JSON types.,is_number_integer}
N
Niels 已提交
2425 2426

    @sa @ref is_number() -- check if value is a number
N
Niels 已提交
2427 2428
    @sa @ref is_number_unsigned() -- check if value is an unsigned integer
    number
N
Niels 已提交
2429 2430
    @sa @ref is_number_float() -- check if value is a floating-point number

N
Niels 已提交
2431
    @since version 1.0.0
N
Niels 已提交
2432
    */
N
Niels 已提交
2433
    constexpr bool is_number_integer() const noexcept
N
Niels 已提交
2434
    {
2435 2436
        return m_type == value_t::number_integer or m_type == value_t::number_unsigned;
    }
N
Niels 已提交
2437

2438 2439 2440
    /*!
    @brief return whether value is an unsigned integer number

N
Niels 已提交
2441 2442
    This function returns true iff the JSON value is an unsigned integer
    number. This excludes floating-point and (signed) integer values.
2443 2444 2445 2446 2447

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

    @complexity Constant.

N
Niels 已提交
2448 2449 2450
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2451
    @liveexample{The following code exemplifies `is_number_unsigned()` for all
N
Niels 已提交
2452 2453
    JSON types.,is_number_unsigned}

2454
    @sa @ref is_number() -- check if value is a number
N
Niels 已提交
2455
    @sa @ref is_number_integer() -- check if value is an integer or unsigned
2456 2457 2458 2459 2460
    integer number
    @sa @ref is_number_float() -- check if value is a floating-point number

    @since version 2.0.0
    */
N
Niels 已提交
2461
    constexpr bool is_number_unsigned() const noexcept
2462 2463
    {
        return m_type == value_t::number_unsigned;
N
Niels 已提交
2464 2465
    }

N
Niels 已提交
2466 2467 2468 2469
    /*!
    @brief return whether value is a floating-point number

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

N
Niels 已提交
2472
    @return `true` if type is a floating-point number, `false` otherwise.
N
Niels 已提交
2473 2474 2475

    @complexity Constant.

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

N
Niels 已提交
2479
    @liveexample{The following code exemplifies `is_number_float()` for all
N
Niels 已提交
2480
    JSON types.,is_number_float}
N
Niels 已提交
2481 2482 2483

    @sa @ref is_number() -- check if value is number
    @sa @ref is_number_integer() -- check if value is an integer number
N
Niels 已提交
2484 2485
    @sa @ref is_number_unsigned() -- check if value is an unsigned integer
    number
N
Niels 已提交
2486

N
Niels 已提交
2487
    @since version 1.0.0
N
Niels 已提交
2488
    */
N
Niels 已提交
2489
    constexpr bool is_number_float() const noexcept
N
Niels 已提交
2490 2491 2492 2493
    {
        return m_type == value_t::number_float;
    }

N
Niels 已提交
2494 2495 2496 2497 2498
    /*!
    @brief return whether value is an object

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

N
Niels 已提交
2499
    @return `true` if type is object, `false` otherwise.
N
Niels 已提交
2500 2501 2502

    @complexity Constant.

N
Niels 已提交
2503 2504 2505
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2506
    @liveexample{The following code exemplifies `is_object()` for all JSON
N
Niels 已提交
2507
    types.,is_object}
N
Niels 已提交
2508

N
Niels 已提交
2509
    @since version 1.0.0
N
Niels 已提交
2510
    */
N
Niels 已提交
2511
    constexpr bool is_object() const noexcept
N
Niels 已提交
2512 2513 2514 2515
    {
        return m_type == value_t::object;
    }

N
Niels 已提交
2516 2517 2518 2519 2520
    /*!
    @brief return whether value is an array

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

N
Niels 已提交
2521
    @return `true` if type is array, `false` otherwise.
N
Niels 已提交
2522 2523 2524

    @complexity Constant.

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

N
Niels 已提交
2528
    @liveexample{The following code exemplifies `is_array()` for all JSON
N
Niels 已提交
2529
    types.,is_array}
N
Niels 已提交
2530

N
Niels 已提交
2531
    @since version 1.0.0
N
Niels 已提交
2532
    */
N
Niels 已提交
2533
    constexpr bool is_array() const noexcept
N
Niels 已提交
2534 2535 2536 2537
    {
        return m_type == value_t::array;
    }

N
Niels 已提交
2538 2539 2540 2541 2542
    /*!
    @brief return whether value is a string

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

N
Niels 已提交
2543
    @return `true` if type is string, `false` otherwise.
N
Niels 已提交
2544 2545 2546

    @complexity Constant.

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

N
Niels 已提交
2550
    @liveexample{The following code exemplifies `is_string()` for all JSON
N
Niels 已提交
2551
    types.,is_string}
N
Niels 已提交
2552

N
Niels 已提交
2553
    @since version 1.0.0
N
Niels 已提交
2554
    */
N
Niels 已提交
2555
    constexpr bool is_string() const noexcept
N
Niels 已提交
2556 2557 2558 2559
    {
        return m_type == value_t::string;
    }

N
Niels 已提交
2560 2561 2562 2563 2564 2565
    /*!
    @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 已提交
2566 2567 2568 2569
    @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 已提交
2570 2571 2572 2573
    @return `true` if type is discarded, `false` otherwise.

    @complexity Constant.

N
Niels 已提交
2574 2575 2576
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

N
Niels 已提交
2577
    @liveexample{The following code exemplifies `is_discarded()` for all JSON
N
Niels 已提交
2578
    types.,is_discarded}
N
Niels 已提交
2579

N
Niels 已提交
2580
    @since version 1.0.0
N
Niels 已提交
2581
    */
N
Niels 已提交
2582
    constexpr bool is_discarded() const noexcept
N
Niels 已提交
2583 2584 2585 2586
    {
        return m_type == value_t::discarded;
    }

N
Niels 已提交
2587 2588 2589 2590 2591 2592 2593 2594 2595 2596
    /*!
    @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 已提交
2597 2598 2599
    @exceptionsafety No-throw guarantee: this member function never throws
    exceptions.

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

N
Niels 已提交
2603
    @since version 1.0.0
N
Niels 已提交
2604
    */
N
Niels 已提交
2605
    constexpr operator value_t() const noexcept
N
Niels 已提交
2606 2607 2608 2609
    {
        return m_type;
    }

N
Niels 已提交
2610 2611
    /// @}

N
Niels 已提交
2612
  private:
N
Niels 已提交
2613 2614 2615
    //////////////////
    // value access //
    //////////////////
N
Niels 已提交
2616

N
Niels 已提交
2617
    /// get an object (explicit)
N
Niels 已提交
2618 2619
    template <class T, typename
              std::enable_if<
N
Niels 已提交
2620
                  std::is_convertible<typename object_t::key_type, typename T::key_type>::value and
N
Niels 已提交
2621
                  std::is_convertible<basic_json_t, typename T::mapped_type>::value
N
Niels 已提交
2622
                  , int>::type = 0>
N
Niels 已提交
2623
    T get_impl(T*) const
N
Niels 已提交
2624
    {
N
Niels 已提交
2625 2626 2627 2628 2629 2630 2631 2632
        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 已提交
2633 2634 2635
    }

    /// get an object (explicit)
N
Niels 已提交
2636
    object_t get_impl(object_t*) const
N
Niels 已提交
2637
    {
N
Niels 已提交
2638 2639 2640 2641 2642 2643 2644 2645
        if (is_object())
        {
            return *(m_value.object);
        }
        else
        {
            throw std::domain_error("type must be object, but is " + type_name());
        }
N
Niels 已提交
2646 2647
    }

N
Niels 已提交
2648
    /// get an array (explicit)
N
Niels 已提交
2649 2650
    template <class T, typename
              std::enable_if<
N
Niels 已提交
2651 2652
                  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
N
Niels 已提交
2653 2654
                  not std::is_arithmetic<T>::value and
                  not std::is_convertible<std::string, T>::value and
2655
                  not has_mapped_type<T>::value
N
Niels 已提交
2656
                  , int>::type = 0>
N
Niels 已提交
2657
    T get_impl(T*) const
N
Niels 已提交
2658
    {
N
cleanup  
Niels 已提交
2659
        if (is_array())
N
Niels 已提交
2660
        {
2661 2662 2663
            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 已提交
2664
            {
2665 2666 2667 2668 2669 2670 2671
                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 已提交
2672 2673 2674
        }
    }

N
Niels 已提交
2675 2676
    /// get an array (explicit)
    template <class T, typename
N
Niels 已提交
2677
              std::enable_if<
N
Niels 已提交
2678 2679
                  std::is_convertible<basic_json_t, T>::value and
                  not std::is_same<basic_json_t, T>::value
N
Niels 已提交
2680
                  , int>::type = 0>
N
Niels 已提交
2681
    std::vector<T> get_impl(std::vector<T>*) const
N
Niels 已提交
2682
    {
N
cleanup  
Niels 已提交
2683
        if (is_array())
N
Niels 已提交
2684
        {
2685 2686 2687 2688
            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 已提交
2689
            {
2690 2691 2692 2693 2694 2695 2696
                return i.get<T>();
            });
            return to_vector;
        }
        else
        {
            throw std::domain_error("type must be array, but is " + type_name());
N
Niels 已提交
2697 2698 2699
        }
    }

N
Niels 已提交
2700 2701 2702 2703
    /// get an array (explicit)
    template <class T, typename
              std::enable_if<
                  std::is_same<basic_json, typename T::value_type>::value and
2704
                  not has_mapped_type<T>::value
N
Niels 已提交
2705
                  , int>::type = 0>
N
Niels 已提交
2706
    T get_impl(T*) const
N
Niels 已提交
2707
    {
N
Niels 已提交
2708 2709 2710 2711 2712 2713 2714 2715
        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 已提交
2716 2717
    }

N
Niels 已提交
2718
    /// get an array (explicit)
N
Niels 已提交
2719
    array_t get_impl(array_t*) const
N
Niels 已提交
2720
    {
N
Niels 已提交
2721 2722 2723 2724 2725 2726 2727 2728
        if (is_array())
        {
            return *(m_value.array);
        }
        else
        {
            throw std::domain_error("type must be array, but is " + type_name());
        }
N
Niels 已提交
2729 2730 2731
    }

    /// get a string (explicit)
N
Niels 已提交
2732 2733
    template <typename T, typename
              std::enable_if<
N
Niels 已提交
2734 2735
                  std::is_convertible<string_t, T>::value
                  , int>::type = 0>
N
Niels 已提交
2736
    T get_impl(T*) const
N
Niels 已提交
2737
    {
N
Niels 已提交
2738 2739 2740 2741 2742 2743 2744 2745
        if (is_string())
        {
            return *m_value.string;
        }
        else
        {
            throw std::domain_error("type must be string, but is " + type_name());
        }
N
Niels 已提交
2746 2747
    }

N
Niels 已提交
2748
    /// get a number (explicit)
N
Niels 已提交
2749 2750
    template<typename T, typename
             std::enable_if<
N
Niels 已提交
2751 2752
                 std::is_arithmetic<T>::value
                 , int>::type = 0>
N
Niels 已提交
2753
    T get_impl(T*) const
N
Niels 已提交
2754 2755 2756
    {
        switch (m_type)
        {
2757
            case value_t::number_integer:
N
Niels 已提交
2758
            {
N
Niels 已提交
2759
                return static_cast<T>(m_value.number_integer);
N
Niels 已提交
2760
            }
N
Niels 已提交
2761

2762 2763 2764 2765
            case value_t::number_unsigned:
            {
                return static_cast<T>(m_value.number_unsigned);
            }
2766 2767

            case value_t::number_float:
N
Niels 已提交
2768
            {
N
Niels 已提交
2769
                return static_cast<T>(m_value.number_float);
N
Niels 已提交
2770
            }
2771

N
Niels 已提交
2772
            default:
N
Niels 已提交
2773
            {
N
Niels 已提交
2774
                throw std::domain_error("type must be number, but is " + type_name());
N
Niels 已提交
2775 2776 2777 2778 2779
            }
        }
    }

    /// get a boolean (explicit)
N
Niels 已提交
2780
    constexpr boolean_t get_impl(boolean_t*) const
N
Niels 已提交
2781
    {
N
Niels 已提交
2782 2783 2784
        return is_boolean()
               ? m_value.boolean
               : throw std::domain_error("type must be boolean, but is " + type_name());
N
Niels 已提交
2785 2786
    }

N
Niels 已提交
2787
    /// get a pointer to the value (object)
N
Niels 已提交
2788
    object_t* get_impl_ptr(object_t*) noexcept
N
Niels 已提交
2789 2790 2791 2792
    {
        return is_object() ? m_value.object : nullptr;
    }

N
Niels 已提交
2793
    /// get a pointer to the value (object)
N
Niels 已提交
2794
    constexpr const object_t* get_impl_ptr(const object_t*) const noexcept
N
Niels 已提交
2795 2796 2797 2798 2799 2800 2801 2802 2803 2804
    {
        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 已提交
2805
    /// get a pointer to the value (array)
N
Niels 已提交
2806
    constexpr const array_t* get_impl_ptr(const array_t*) const noexcept
N
Niels 已提交
2807 2808 2809 2810 2811
    {
        return is_array() ? m_value.array : nullptr;
    }

    /// get a pointer to the value (string)
N
Niels 已提交
2812 2813 2814 2815 2816 2817
    string_t* get_impl_ptr(string_t*) noexcept
    {
        return is_string() ? m_value.string : nullptr;
    }

    /// get a pointer to the value (string)
N
Niels 已提交
2818
    constexpr const string_t* get_impl_ptr(const string_t*) const noexcept
N
Niels 已提交
2819 2820 2821 2822 2823
    {
        return is_string() ? m_value.string : nullptr;
    }

    /// get a pointer to the value (boolean)
N
Niels 已提交
2824 2825 2826 2827 2828 2829
    boolean_t* get_impl_ptr(boolean_t*) noexcept
    {
        return is_boolean() ? &m_value.boolean : nullptr;
    }

    /// get a pointer to the value (boolean)
N
Niels 已提交
2830
    constexpr const boolean_t* get_impl_ptr(const boolean_t*) const noexcept
N
Niels 已提交
2831 2832 2833 2834 2835
    {
        return is_boolean() ? &m_value.boolean : nullptr;
    }

    /// get a pointer to the value (integer number)
N
Niels 已提交
2836 2837 2838 2839 2840 2841
    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 已提交
2842
    constexpr const number_integer_t* get_impl_ptr(const number_integer_t*) const noexcept
N
Niels 已提交
2843 2844 2845
    {
        return is_number_integer() ? &m_value.number_integer : nullptr;
    }
N
Niels 已提交
2846

2847 2848 2849 2850 2851
    /// 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 已提交
2852

2853
    /// get a pointer to the value (unsigned number)
N
Niels 已提交
2854
    constexpr const number_unsigned_t* get_impl_ptr(const number_unsigned_t*) const noexcept
2855 2856 2857
    {
        return is_number_unsigned() ? &m_value.number_unsigned : nullptr;
    }
N
Niels 已提交
2858

N
Niels 已提交
2859
    /// get a pointer to the value (floating-point number)
N
Niels 已提交
2860 2861 2862 2863 2864 2865
    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 已提交
2866
    constexpr const number_float_t* get_impl_ptr(const number_float_t*) const noexcept
N
Niels 已提交
2867 2868 2869 2870
    {
        return is_number_float() ? &m_value.number_float : nullptr;
    }

N
Niels 已提交
2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882
    /*!
    @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>
2883
    static ReferenceType get_ref_impl(ThisType& obj)
D
dariomt 已提交
2884
    {
N
Niels 已提交
2885
        // helper type
N
Niels 已提交
2886 2887
        using PointerType = typename std::add_pointer<ReferenceType>::type;

N
Niels 已提交
2888
        // delegate the call to get_ptr<>()
2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899
        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 已提交
2900 2901
    }

N
Niels 已提交
2902
  public:
N
Niels 已提交
2903 2904

    /// @name value access
N
Niels 已提交
2905
    /// Direct access to the stored value of a JSON value.
N
Niels 已提交
2906 2907
    /// @{

N
Niels 已提交
2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919
    /*!
    @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 已提交
2920
    to JSON; example: `"type must be object, but is null"`
N
Niels 已提交
2921 2922 2923

    @complexity Linear in the size of the JSON value.

N
Niels 已提交
2924
    @liveexample{The example below shows several conversions from JSON values
N
Niels 已提交
2925 2926 2927
    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 已提交
2928
    associative containers such as `std::unordered_map<std::string\,
N
Niels 已提交
2929 2930 2931 2932 2933 2934 2935 2936 2937
    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 已提交
2938

N
Niels 已提交
2939
    @since version 1.0.0
N
Niels 已提交
2940 2941 2942 2943 2944 2945
    */
    template<typename ValueType, typename
             std::enable_if<
                 not std::is_pointer<ValueType>::value
                 , int>::type = 0>
    ValueType get() const
N
Niels 已提交
2946
    {
N
Niels 已提交
2947
        return get_impl(static_cast<ValueType*>(nullptr));
N
Niels 已提交
2948 2949
    }

N
Niels 已提交
2950 2951 2952 2953 2954 2955
    /*!
    @brief get a pointer value (explicit)

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

N
Niels 已提交
2956 2957
    @warning The pointer becomes invalid if the underlying JSON object
    changes.
N
Niels 已提交
2958 2959

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

N
Niels 已提交
2963 2964
    @return pointer to the internally stored JSON value if the requested
    pointer type @a PointerType fits to the JSON value; `nullptr` otherwise
N
Niels 已提交
2965 2966 2967 2968 2969 2970 2971 2972 2973

    @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 已提交
2974

N
Niels 已提交
2975
    @since version 1.0.0
N
Niels 已提交
2976 2977 2978 2979 2980
    */
    template<typename PointerType, typename
             std::enable_if<
                 std::is_pointer<PointerType>::value
                 , int>::type = 0>
N
Niels 已提交
2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994
    PointerType get() noexcept
    {
        // delegate the call to get_ptr
        return get_ptr<PointerType>();
    }

    /*!
    @brief get a pointer value (explicit)
    @copydoc get()
    */
    template<typename PointerType, typename
             std::enable_if<
                 std::is_pointer<PointerType>::value
                 , int>::type = 0>
N
Niels 已提交
2995
    constexpr const PointerType get() const noexcept
N
Niels 已提交
2996 2997 2998 2999 3000 3001 3002 3003
    {
        // delegate the call to get_ptr
        return get_ptr<PointerType>();
    }

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

N
Niels 已提交
3004
    Implicit pointer access to the internally stored JSON value. No copies are
N
Niels 已提交
3005 3006 3007 3008 3009 3010
    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 已提交
3011
    object_t, @ref string_t, @ref boolean_t, @ref number_integer_t,
N
Niels 已提交
3012 3013
    @ref number_unsigned_t, or @ref number_float_t. Enforced by a static
    assertion.
N
Niels 已提交
3014

N
Niels 已提交
3015 3016
    @return pointer to the internally stored JSON value if the requested
    pointer type @a PointerType fits to the JSON value; `nullptr` otherwise
N
Niels 已提交
3017 3018 3019 3020 3021 3022 3023

    @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 已提交
3024

N
Niels 已提交
3025
    @since version 1.0.0
N
Niels 已提交
3026 3027 3028 3029 3030
    */
    template<typename PointerType, typename
             std::enable_if<
                 std::is_pointer<PointerType>::value
                 , int>::type = 0>
N
Niels 已提交
3031 3032
    PointerType get_ptr() noexcept
    {
N
Niels 已提交
3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047
        // 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 已提交
3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058
        // delegate the call to get_impl_ptr<>()
        return get_impl_ptr(static_cast<PointerType>(nullptr));
    }

    /*!
    @brief get a pointer value (implicit)
    @copydoc get_ptr()
    */
    template<typename PointerType, typename
             std::enable_if<
                 std::is_pointer<PointerType>::value
N
Niels 已提交
3059
                 and std::is_const<typename std::remove_pointer<PointerType>::type>::value
N
Niels 已提交
3060
                 , int>::type = 0>
N
Niels 已提交
3061
    constexpr const PointerType get_ptr() const noexcept
N
Niels 已提交
3062
    {
N
Niels 已提交
3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077
        // 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 已提交
3078
        // delegate the call to get_impl_ptr<>() const
D
dariomt 已提交
3079
        return get_impl_ptr(static_cast<const PointerType>(nullptr));
D
dariomt 已提交
3080 3081
    }

N
Niels 已提交
3082
    /*!
D
dariomt 已提交
3083 3084
    @brief get a reference value (implicit)

N
Niels 已提交
3085 3086
    Implict reference access to the internally stored JSON value. No copies
    are made.
D
dariomt 已提交
3087 3088 3089 3090

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

N
Niels 已提交
3091 3092
    @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 已提交
3093
    @ref number_float_t. Enforced by static assertion.
D
dariomt 已提交
3094

N
Niels 已提交
3095 3096 3097
    @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 已提交
3098

N
Niels 已提交
3099 3100
    @throw std::domain_error in case passed type @a ReferenceType is
    incompatible with the stored JSON value
D
dariomt 已提交
3101 3102

    @complexity Constant.
N
Niels 已提交
3103 3104 3105

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

N
Niels 已提交
3106
    @since version 1.1.0
D
dariomt 已提交
3107 3108 3109 3110 3111 3112 3113
    */
    template<typename ReferenceType, typename
             std::enable_if<
                 std::is_reference<ReferenceType>::value
                 , int>::type = 0>
    ReferenceType get_ref()
    {
N
Niels 已提交
3114 3115
        // delegate call to get_ref_impl
        return get_ref_impl<ReferenceType>(*this);
D
dariomt 已提交
3116 3117 3118 3119 3120 3121 3122 3123 3124
    }

    /*!
    @brief get a reference value (implicit)
    @copydoc get_ref()
    */
    template<typename ReferenceType, typename
             std::enable_if<
                 std::is_reference<ReferenceType>::value
N
Niels 已提交
3125
                 and std::is_const<typename std::remove_reference<ReferenceType>::type>::value
D
dariomt 已提交
3126
                 , int>::type = 0>
3127
    ReferenceType get_ref() const
D
dariomt 已提交
3128
    {
N
Niels 已提交
3129 3130
        // delegate call to get_ref_impl
        return get_ref_impl<ReferenceType>(*this);
N
Niels 已提交
3131 3132 3133 3134 3135
    }

    /*!
    @brief get a value (implicit)

N
Niels 已提交
3136 3137
    Implicit type conversion between the JSON value and a compatible value.
    The call is realized by calling @ref get() const.
N
Niels 已提交
3138 3139 3140

    @tparam ValueType non-pointer type compatible to the JSON value, for
    instance `int` for JSON integer numbers, `bool` for JSON booleans, or
N
Niels 已提交
3141 3142 3143
    `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 已提交
3144 3145 3146 3147 3148 3149 3150 3151

    @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 已提交
3152
    @liveexample{The example below shows several conversions from JSON values
N
Niels 已提交
3153 3154 3155
    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 已提交
3156
    associative containers such as `std::unordered_map<std::string\,
N
Niels 已提交
3157
    json>`.,operator__ValueType}
N
Niels 已提交
3158

N
Niels 已提交
3159
    @since version 1.0.0
N
Niels 已提交
3160
    */
N
Niels 已提交
3161 3162 3163 3164
    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
3165
#ifndef _MSC_VER  // Fix for issue #167 operator<< abiguity under VS2015
N
Niels 已提交
3166
                   and not std::is_same<ValueType, std::initializer_list<typename string_t::value_type>>::value
3167
#endif
N
Niels 已提交
3168
                   , int >::type = 0 >
N
Niels 已提交
3169
    operator ValueType() const
N
Niels 已提交
3170
    {
N
Niels 已提交
3171 3172
        // delegate the call to get<>() const
        return get<ValueType>();
N
Niels 已提交
3173 3174
    }

N
Niels 已提交
3175 3176
    /// @}

N
Niels 已提交
3177 3178 3179 3180 3181

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

N
Niels 已提交
3182
    /// @name element access
N
Niels 已提交
3183
    /// Access to the JSON value.
N
Niels 已提交
3184 3185
    /// @{

N
Niels 已提交
3186 3187 3188 3189 3190 3191 3192 3193 3194 3195
    /*!
    @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 已提交
3196 3197
    @throw std::domain_error if the JSON value is not an array; example:
    `"cannot use at() with string"`
N
Niels 已提交
3198
    @throw std::out_of_range if the index @a idx is out of range of the array;
N
Niels 已提交
3199
    that is, `idx >= size()`; example: `"array index 7 is out of range"`
N
Niels 已提交
3200 3201 3202 3203

    @complexity Constant.

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

N
Niels 已提交
3206
    @since version 1.0.0
N
Niels 已提交
3207
    */
N
Niels 已提交
3208
    reference at(size_type idx)
N
Niels 已提交
3209 3210
    {
        // at only works for arrays
3211 3212
        if (is_array())
        {
N
Niels 已提交
3213 3214 3215 3216
            try
            {
                return m_value.array->at(idx);
            }
3217
            catch (std::out_of_range&)
N
Niels 已提交
3218 3219 3220 3221
            {
                // create better exception explanation
                throw std::out_of_range("array index " + std::to_string(idx) + " is out of range");
            }
3222 3223
        }
        else
N
Niels 已提交
3224
        {
N
Niels 已提交
3225
            throw std::domain_error("cannot use at() with " + type_name());
N
Niels 已提交
3226 3227 3228
        }
    }

N
Niels 已提交
3229 3230 3231
    /*!
    @brief access specified array element with bounds checking

N
Niels 已提交
3232 3233
    Returns a const reference to the element at specified location @a idx,
    with bounds checking.
N
Niels 已提交
3234 3235 3236 3237 3238

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

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

N
Niels 已提交
3239 3240
    @throw std::domain_error if the JSON value is not an array; example:
    `"cannot use at() with string"`
N
Niels 已提交
3241
    @throw std::out_of_range if the index @a idx is out of range of the array;
N
Niels 已提交
3242
    that is, `idx >= size()`; example: `"array index 7 is out of range"`
N
Niels 已提交
3243 3244 3245 3246

    @complexity Constant.

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

N
Niels 已提交
3249
    @since version 1.0.0
N
Niels 已提交
3250
    */
N
Niels 已提交
3251
    const_reference at(size_type idx) const
N
Niels 已提交
3252 3253
    {
        // at only works for arrays
3254 3255
        if (is_array())
        {
N
Niels 已提交
3256 3257 3258 3259
            try
            {
                return m_value.array->at(idx);
            }
3260
            catch (std::out_of_range&)
N
Niels 已提交
3261 3262 3263 3264
            {
                // create better exception explanation
                throw std::out_of_range("array index " + std::to_string(idx) + " is out of range");
            }
3265 3266
        }
        else
N
Niels 已提交
3267
        {
N
Niels 已提交
3268
            throw std::domain_error("cannot use at() with " + type_name());
N
Niels 已提交
3269
        }
3270 3271
    }

N
Niels 已提交
3272 3273 3274 3275 3276 3277 3278 3279 3280 3281
    /*!
    @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 已提交
3282 3283
    @throw std::domain_error if the JSON value is not an object; example:
    `"cannot use at() with boolean"`
N
Niels 已提交
3284
    @throw std::out_of_range if the key @a key is is not stored in the object;
N
Niels 已提交
3285
    that is, `find(key) == end()`; example: `"key "the fast" not found"`
N
Niels 已提交
3286 3287 3288 3289

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
N
Niels 已提交
3290
    written using `at()`.,at__object_t_key_type}
N
Niels 已提交
3291 3292 3293 3294

    @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 已提交
3295

N
Niels 已提交
3296
    @since version 1.0.0
N
Niels 已提交
3297
    */
N
Niels 已提交
3298
    reference at(const typename object_t::key_type& key)
3299 3300
    {
        // at only works for objects
3301 3302
        if (is_object())
        {
N
Niels 已提交
3303 3304 3305 3306
            try
            {
                return m_value.object->at(key);
            }
3307
            catch (std::out_of_range&)
N
Niels 已提交
3308 3309 3310 3311
            {
                // create better exception explanation
                throw std::out_of_range("key '" + key + "' not found");
            }
3312 3313
        }
        else
3314
        {
N
Niels 已提交
3315
            throw std::domain_error("cannot use at() with " + type_name());
3316 3317 3318
        }
    }

N
Niels 已提交
3319 3320 3321
    /*!
    @brief access specified object element with bounds checking

N
Niels 已提交
3322 3323
    Returns a const reference to the element at with specified key @a key,
    with bounds checking.
N
Niels 已提交
3324 3325 3326 3327 3328

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

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

N
Niels 已提交
3329 3330
    @throw std::domain_error if the JSON value is not an object; example:
    `"cannot use at() with boolean"`
N
Niels 已提交
3331
    @throw std::out_of_range if the key @a key is is not stored in the object;
N
Niels 已提交
3332
    that is, `find(key) == end()`; example: `"key "the fast" not found"`
N
Niels 已提交
3333 3334 3335 3336

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read using
N
Niels 已提交
3337
    `at()`.,at__object_t_key_type_const}
N
Niels 已提交
3338 3339 3340 3341

    @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 已提交
3342

N
Niels 已提交
3343
    @since version 1.0.0
N
Niels 已提交
3344
    */
N
Niels 已提交
3345
    const_reference at(const typename object_t::key_type& key) const
3346 3347
    {
        // at only works for objects
3348 3349
        if (is_object())
        {
N
Niels 已提交
3350 3351 3352 3353
            try
            {
                return m_value.object->at(key);
            }
3354
            catch (std::out_of_range&)
N
Niels 已提交
3355 3356 3357 3358
            {
                // create better exception explanation
                throw std::out_of_range("key '" + key + "' not found");
            }
3359 3360
        }
        else
3361
        {
N
Niels 已提交
3362
            throw std::domain_error("cannot use at() with " + type_name());
3363
        }
N
Niels 已提交
3364 3365
    }

N
Niels 已提交
3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378
    /*!
    @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 已提交
3379 3380
    @throw std::domain_error if JSON is not an array or null; example:
    `"cannot use operator[] with string"`
N
Niels 已提交
3381 3382 3383 3384 3385

    @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 已提交
3386
    written using `[]` operator. Note the addition of `null`
N
Niels 已提交
3387
    values.,operatorarray__size_type}
N
Niels 已提交
3388

N
Niels 已提交
3389
    @since version 1.0.0
N
Niels 已提交
3390
    */
N
Niels 已提交
3391
    reference operator[](size_type idx)
N
Niels 已提交
3392
    {
N
Niels 已提交
3393
        // implicitly convert null value to an empty array
N
cleanup  
Niels 已提交
3394
        if (is_null())
N
Niels 已提交
3395 3396
        {
            m_type = value_t::array;
N
Cleanup  
Niels 已提交
3397
            m_value.array = create<array_t>();
3398
            assert_invariant();
N
Niels 已提交
3399 3400
        }

N
Niels 已提交
3401
        // operator[] only works for arrays
N
cleanup  
Niels 已提交
3402
        if (is_array())
N
Niels 已提交
3403
        {
N
Niels 已提交
3404 3405
            // fill up array with null values if given idx is outside range
            if (idx >= m_value.array->size())
N
cleanup  
Niels 已提交
3406
            {
N
Niels 已提交
3407 3408 3409
                m_value.array->insert(m_value.array->end(),
                                      idx - m_value.array->size() + 1,
                                      basic_json());
N
cleanup  
Niels 已提交
3410
            }
N
Niels 已提交
3411

N
cleanup  
Niels 已提交
3412 3413 3414
            return m_value.array->operator[](idx);
        }
        else
N
Niels 已提交
3415
        {
N
cleanup  
Niels 已提交
3416
            throw std::domain_error("cannot use operator[] with " + type_name());
N
Niels 已提交
3417
        }
N
Niels 已提交
3418 3419
    }

N
Niels 已提交
3420 3421 3422 3423 3424 3425 3426 3427 3428
    /*!
    @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 已提交
3429 3430
    @throw std::domain_error if JSON is not an array; example: `"cannot use
    operator[] with null"`
N
Niels 已提交
3431 3432 3433 3434

    @complexity Constant.

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

N
Niels 已提交
3437
    @since version 1.0.0
N
Niels 已提交
3438
    */
N
Niels 已提交
3439
    const_reference operator[](size_type idx) const
N
Niels 已提交
3440
    {
N
Niels 已提交
3441
        // const operator[] only works for arrays
N
Niels 已提交
3442 3443 3444 3445 3446 3447 3448 3449
        if (is_array())
        {
            return m_value.array->operator[](idx);
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
N
Niels 已提交
3450 3451
    }

N
Niels 已提交
3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464
    /*!
    @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 已提交
3465
    @throw std::domain_error if JSON is not an object or null; example:
N
Niels 已提交
3466
    `"cannot use operator[] with string"`
N
Niels 已提交
3467 3468 3469 3470

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
N
Niels 已提交
3471
    written using the `[]` operator.,operatorarray__key_type}
N
Niels 已提交
3472 3473 3474 3475

    @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 已提交
3476

N
Niels 已提交
3477
    @since version 1.0.0
N
Niels 已提交
3478
    */
N
Niels 已提交
3479
    reference operator[](const typename object_t::key_type& key)
N
Niels 已提交
3480
    {
N
Niels 已提交
3481
        // implicitly convert null value to an empty object
N
cleanup  
Niels 已提交
3482
        if (is_null())
N
Niels 已提交
3483 3484
        {
            m_type = value_t::object;
N
Cleanup  
Niels 已提交
3485
            m_value.object = create<object_t>();
3486
            assert_invariant();
N
Niels 已提交
3487 3488
        }

N
Niels 已提交
3489
        // operator[] only works for objects
N
Niels 已提交
3490 3491 3492 3493 3494 3495 3496 3497
        if (is_object())
        {
            return m_value.object->operator[](key);
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
N
Niels 已提交
3498 3499
    }

N
Niels 已提交
3500
    /*!
3501
    @brief read-only access specified object element
N
Niels 已提交
3502

3503 3504 3505 3506 3507
    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 已提交
3508 3509 3510

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

3511
    @return const reference to the element at key @a key
N
Niels 已提交
3512

N
Niels 已提交
3513 3514 3515
    @pre The element with key @a key must exist. **This precondition is
         enforced with an assertion.**

N
Niels 已提交
3516 3517
    @throw std::domain_error if JSON is not an object; example: `"cannot use
    operator[] with null"`
N
Niels 已提交
3518 3519 3520 3521

    @complexity Logarithmic in the size of the container.

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

    @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 已提交
3528
    @since version 1.0.0
N
Niels 已提交
3529
    */
N
Niels 已提交
3530
    const_reference operator[](const typename object_t::key_type& key) const
3531
    {
N
Niels 已提交
3532
        // const operator[] only works for objects
N
Niels 已提交
3533 3534 3535 3536 3537 3538 3539 3540 3541
        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());
        }
3542 3543
    }

N
Niels 已提交
3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556
    /*!
    @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 已提交
3557
    @throw std::domain_error if JSON is not an object or null; example:
N
Niels 已提交
3558
    `"cannot use operator[] with string"`
N
Niels 已提交
3559 3560 3561 3562

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
N
Niels 已提交
3563
    written using the `[]` operator.,operatorarray__key_type}
N
Niels 已提交
3564 3565 3566 3567

    @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 已提交
3568

N
Niels 已提交
3569
    @since version 1.0.0
N
Niels 已提交
3570
    */
N
Niels 已提交
3571
    template<typename T, std::size_t n>
N
Niels 已提交
3572
    reference operator[](T * (&key)[n])
3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597
    {
        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 已提交
3598
    the `[]` operator.,operatorarray__key_type_const}
3599 3600 3601 3602 3603 3604 3605 3606

    @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 已提交
3607
    const_reference operator[](T * (&key)[n]) const
3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625
    {
        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 已提交
3626
    `"cannot use operator[] with string"`
3627 3628 3629 3630

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
N
Niels 已提交
3631
    written using the `[]` operator.,operatorarray__key_type}
3632 3633 3634 3635 3636

    @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 已提交
3637
    @since version 1.1.0
3638 3639 3640
    */
    template<typename T>
    reference operator[](T* key)
N
Niels 已提交
3641
    {
N
Niels 已提交
3642
        // implicitly convert null to object
N
cleanup  
Niels 已提交
3643
        if (is_null())
N
Niels 已提交
3644 3645
        {
            m_type = value_t::object;
N
Niels 已提交
3646
            m_value = value_t::object;
3647
            assert_invariant();
N
Niels 已提交
3648 3649
        }

N
Niels 已提交
3650
        // at only works for objects
N
Niels 已提交
3651 3652 3653 3654 3655 3656 3657 3658
        if (is_object())
        {
            return m_value.object->operator[](key);
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
N
Niels 已提交
3659 3660
    }

N
Niels 已提交
3661
    /*!
3662
    @brief read-only access specified object element
N
Niels 已提交
3663

3664 3665 3666 3667 3668
    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 已提交
3669 3670 3671

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

3672
    @return const reference to the element at key @a key
N
Niels 已提交
3673

N
Niels 已提交
3674 3675 3676
    @pre The element with key @a key must exist. **This precondition is
         enforced with an assertion.**

N
Niels 已提交
3677 3678
    @throw std::domain_error if JSON is not an object; example: `"cannot use
    operator[] with null"`
N
Niels 已提交
3679 3680 3681 3682

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read using
N
Niels 已提交
3683
    the `[]` operator.,operatorarray__key_type_const}
3684 3685 3686 3687 3688

    @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 已提交
3689
    @since version 1.1.0
N
Niels 已提交
3690
    */
3691 3692
    template<typename T>
    const_reference operator[](T* key) const
3693 3694
    {
        // at only works for objects
N
Niels 已提交
3695 3696 3697 3698 3699 3700 3701 3702 3703
        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());
        }
3704 3705
    }

N
Niels 已提交
3706 3707 3708
    /*!
    @brief access specified object element with default value

N
Niels 已提交
3709 3710
    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.
3711

N
Niels 已提交
3712
    The function is basically equivalent to executing
3713
    @code {.cpp}
N
Niels 已提交
3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738
    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 已提交
3739 3740
    @throw std::domain_error if JSON is not an object; example: `"cannot use
    value() with null"`
N
Niels 已提交
3741 3742 3743 3744 3745 3746 3747 3748 3749 3750

    @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 已提交
3751

N
Niels 已提交
3752
    @since version 1.0.0
N
Niels 已提交
3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780
    */
    template <class ValueType, typename
              std::enable_if<
                  std::is_convertible<basic_json_t, ValueType>::value
                  , int>::type = 0>
    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 已提交
3781
    @brief overload for a default value of type const char*
N
Niels 已提交
3782
    @copydoc basic_json::value(const typename object_t::key_type&, ValueType) const
N
Niels 已提交
3783 3784 3785 3786
    */
    string_t value(const typename object_t::key_type& key, const char* default_value) const
    {
        return value(key, string_t(default_value));
3787 3788
    }

N
Niels 已提交
3789 3790 3791
    /*!
    @brief access specified object element via JSON Pointer with default value

N
Niels 已提交
3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806
    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 已提交
3807 3808 3809 3810 3811 3812 3813 3814
    @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 已提交
3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825
    @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 已提交
3826
    @sa @ref operator[](const json_pointer&) for unchecked access by reference
N
Niels 已提交
3827

N
Niels 已提交
3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856
    @since version 2.0.2
    */
    template <class ValueType, typename
              std::enable_if<
                  std::is_convertible<basic_json_t, ValueType>::value
                  , int>::type = 0>
    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 已提交
3857
    @copydoc basic_json::value(const json_pointer&, ValueType) const
N
Niels 已提交
3858 3859 3860 3861 3862 3863
    */
    string_t value(const json_pointer& ptr, const char* default_value) const
    {
        return value(ptr, string_t(default_value));
    }

N
Niels 已提交
3864 3865 3866 3867 3868 3869
    /*!
    @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 已提交
3870
    @return In case of a structured type (array or object), a reference to the
N
Niels 已提交
3871 3872 3873 3874 3875
    first element is returned. In cast of number, string, or boolean values, a
    reference to the value is returned.

    @complexity Constant.

N
Niels 已提交
3876
    @pre The JSON value must not be `null` (would throw `std::out_of_range`)
N
Niels 已提交
3877 3878
    or an empty array or object (undefined behavior, **guarded by
    assertions**).
N
Niels 已提交
3879 3880 3881
    @post The JSON value remains unchanged.

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

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

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

N
Niels 已提交
3887
    @since version 1.0.0
N
Niels 已提交
3888
    */
N
Niels 已提交
3889
    reference front()
N
Niels 已提交
3890 3891 3892 3893
    {
        return *begin();
    }

N
Niels 已提交
3894 3895 3896
    /*!
    @copydoc basic_json::front()
    */
N
Niels 已提交
3897
    const_reference front() const
N
Niels 已提交
3898 3899 3900 3901
    {
        return *cbegin();
    }

N
Niels 已提交
3902 3903 3904 3905
    /*!
    @brief access the last element

    Returns a reference to the last element in the container. For a JSON
N
Niels 已提交
3906 3907 3908 3909 3910 3911
    container `c`, the expression `c.back()` is equivalent to
    @code {.cpp}
    auto tmp = c.end();
    --tmp;
    return *tmp;
    @endcode
N
Niels 已提交
3912

N
Niels 已提交
3913
    @return In case of a structured type (array or object), a reference to the
N
Niels 已提交
3914 3915 3916 3917 3918
    last element is returned. In cast of number, string, or boolean values, a
    reference to the value is returned.

    @complexity Constant.

N
Niels 已提交
3919
    @pre The JSON value must not be `null` (would throw `std::out_of_range`)
N
Niels 已提交
3920 3921
    or an empty array or object (undefined behavior, **guarded by
    assertions**).
N
Niels 已提交
3922
    @post The JSON value remains unchanged.
N
Niels 已提交
3923

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

N
Niels 已提交
3926 3927 3928
    @liveexample{The following code shows an example for `back()`.,back}

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

N
Niels 已提交
3930
    @since version 1.0.0
N
Niels 已提交
3931
    */
N
Niels 已提交
3932
    reference back()
N
Niels 已提交
3933 3934 3935 3936 3937 3938
    {
        auto tmp = end();
        --tmp;
        return *tmp;
    }

N
Niels 已提交
3939 3940 3941
    /*!
    @copydoc basic_json::back()
    */
N
Niels 已提交
3942
    const_reference back() const
N
Niels 已提交
3943 3944 3945 3946 3947 3948
    {
        auto tmp = cend();
        --tmp;
        return *tmp;
    }

N
Niels 已提交
3949 3950 3951
    /*!
    @brief remove element given an iterator

N
Niels 已提交
3952 3953 3954
    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 已提交
3955

N
Niels 已提交
3956
    If called on a primitive type other than `null`, the resulting JSON value
N
Niels 已提交
3957 3958 3959
    will be `null`.

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

    @tparam InteratorType an @ref iterator or @ref const_iterator

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

N
Niels 已提交
3968 3969
    @throw std::domain_error if called on a `null` value; example: `"cannot
    use erase() with null"`
N
Niels 已提交
3970
    @throw std::domain_error if called on an iterator which does not belong to
N
Niels 已提交
3971
    the current JSON value; example: `"iterator does not fit current value"`
N
Niels 已提交
3972
    @throw std::out_of_range if called on a primitive type with invalid
N
Niels 已提交
3973 3974
    iterator (i.e., any iterator which is not `begin()`); example: `"iterator
    out of range"`
N
Niels 已提交
3975 3976 3977 3978 3979 3980 3981

    @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 已提交
3982
    @liveexample{The example shows the result of `erase()` for different JSON
N
Niels 已提交
3983
    types.,erase__IteratorType}
N
Niels 已提交
3984

N
Niels 已提交
3985 3986
    @sa @ref erase(InteratorType, InteratorType) -- removes the elements in
    the given range
N
Niels 已提交
3987
    @sa @ref erase(const typename object_t::key_type&) -- removes the element
N
Niels 已提交
3988
    from an object at the given key
N
Niels 已提交
3989 3990
    @sa @ref erase(const size_type) -- removes the element from an array at
    the given index
N
Niels 已提交
3991

N
Niels 已提交
3992
    @since version 1.0.0
N
Niels 已提交
3993 3994
    */
    template <class InteratorType, typename
3995
              std::enable_if<
N
Niels 已提交
3996 3997
                  std::is_same<InteratorType, typename basic_json_t::iterator>::value or
                  std::is_same<InteratorType, typename basic_json_t::const_iterator>::value
3998 3999
                  , int>::type
              = 0>
N
Niels 已提交
4000
    InteratorType erase(InteratorType pos)
4001 4002
    {
        // make sure iterator fits the current value
N
Niels 已提交
4003
        if (this != pos.m_object)
4004
        {
N
Niels 已提交
4005
            throw std::domain_error("iterator does not fit current value");
4006 4007
        }

N
Niels 已提交
4008
        InteratorType result = end();
4009 4010 4011 4012

        switch (m_type)
        {
            case value_t::boolean:
4013 4014
            case value_t::number_float:
            case value_t::number_integer:
4015
            case value_t::number_unsigned:
4016 4017
            case value_t::string:
            {
4018
                if (not pos.m_it.primitive_iterator.is_begin())
4019 4020 4021 4022
                {
                    throw std::out_of_range("iterator out of range");
                }

N
cleanup  
Niels 已提交
4023
                if (is_string())
4024
                {
4025 4026 4027
                    AllocatorType<string_t> alloc;
                    alloc.destroy(m_value.string);
                    alloc.deallocate(m_value.string, 1);
4028 4029 4030 4031
                    m_value.string = nullptr;
                }

                m_type = value_t::null;
4032
                assert_invariant();
4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049
                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 已提交
4050
                throw std::domain_error("cannot use erase() with " + type_name());
4051 4052 4053 4054 4055 4056
            }
        }

        return result;
    }

N
Niels 已提交
4057 4058 4059
    /*!
    @brief remove elements given an iterator range

N
Niels 已提交
4060 4061 4062
    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 已提交
4063

N
Niels 已提交
4064
    If called on a primitive type other than `null`, the resulting JSON value
N
Niels 已提交
4065 4066 4067 4068 4069
    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 已提交
4070
    second refers to the last element, the `end()` iterator is returned.
N
Niels 已提交
4071 4072 4073

    @tparam InteratorType an @ref iterator or @ref const_iterator

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

N
Niels 已提交
4077 4078
    @throw std::domain_error if called on a `null` value; example: `"cannot
    use erase() with null"`
N
Niels 已提交
4079
    @throw std::domain_error if called on iterators which does not belong to
N
Niels 已提交
4080
    the current JSON value; example: `"iterators do not fit current value"`
N
Niels 已提交
4081
    @throw std::out_of_range if called on a primitive type with invalid
N
Niels 已提交
4082 4083
    iterators (i.e., if `first != begin()` and `last != end()`); example:
    `"iterators out of range"`
N
Niels 已提交
4084 4085 4086 4087 4088 4089 4090 4091

    @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 已提交
4092
    @liveexample{The example shows the result of `erase()` for different JSON
N
Niels 已提交
4093
    types.,erase__IteratorType_IteratorType}
N
Niels 已提交
4094 4095

    @sa @ref erase(InteratorType) -- removes the element at a given position
N
Niels 已提交
4096
    @sa @ref erase(const typename object_t::key_type&) -- removes the element
N
Niels 已提交
4097
    from an object at the given key
N
Niels 已提交
4098 4099
    @sa @ref erase(const size_type) -- removes the element from an array at
    the given index
N
Niels 已提交
4100

N
Niels 已提交
4101
    @since version 1.0.0
N
Niels 已提交
4102 4103
    */
    template <class InteratorType, typename
4104
              std::enable_if<
N
Niels 已提交
4105 4106
                  std::is_same<InteratorType, typename basic_json_t::iterator>::value or
                  std::is_same<InteratorType, typename basic_json_t::const_iterator>::value
4107 4108
                  , int>::type
              = 0>
N
Niels 已提交
4109
    InteratorType erase(InteratorType first, InteratorType last)
4110 4111
    {
        // make sure iterator fits the current value
N
Niels 已提交
4112
        if (this != first.m_object or this != last.m_object)
4113
        {
N
Niels 已提交
4114
            throw std::domain_error("iterators do not fit current value");
4115 4116
        }

N
Niels 已提交
4117
        InteratorType result = end();
4118 4119 4120 4121

        switch (m_type)
        {
            case value_t::boolean:
4122 4123
            case value_t::number_float:
            case value_t::number_integer:
4124
            case value_t::number_unsigned:
4125 4126
            case value_t::string:
            {
4127
                if (not first.m_it.primitive_iterator.is_begin() or not last.m_it.primitive_iterator.is_end())
4128 4129 4130 4131
                {
                    throw std::out_of_range("iterators out of range");
                }

N
cleanup  
Niels 已提交
4132
                if (is_string())
4133
                {
4134 4135 4136
                    AllocatorType<string_t> alloc;
                    alloc.destroy(m_value.string);
                    alloc.deallocate(m_value.string, 1);
4137 4138 4139 4140
                    m_value.string = nullptr;
                }

                m_type = value_t::null;
4141
                assert_invariant();
4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160
                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 已提交
4161
                throw std::domain_error("cannot use erase() with " + type_name());
4162 4163 4164 4165 4166 4167
            }
        }

        return result;
    }

N
Niels 已提交
4168 4169 4170 4171 4172 4173 4174
    /*!
    @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 已提交
4175
    @return Number of elements removed. If @a ObjectType is the default
N
Niels 已提交
4176 4177
    `std::map` type, the return value will always be `0` (@a key was not
    found) or `1` (@a key was found).
N
Niels 已提交
4178 4179 4180

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

N
Niels 已提交
4182 4183
    @throw std::domain_error when called on a type other than JSON object;
    example: `"cannot use erase() with null"`
N
Niels 已提交
4184 4185 4186

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

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

    @sa @ref erase(InteratorType) -- removes the element at a given position
N
Niels 已提交
4190 4191 4192 4193
    @sa @ref erase(InteratorType, InteratorType) -- removes the elements in
    the given range
    @sa @ref erase(const size_type) -- removes the element from an array at
    the given index
N
Niels 已提交
4194

N
Niels 已提交
4195
    @since version 1.0.0
N
Niels 已提交
4196
    */
N
Niels 已提交
4197
    size_type erase(const typename object_t::key_type& key)
4198
    {
N
Niels 已提交
4199
        // this erase only works for objects
N
Niels 已提交
4200 4201 4202 4203 4204 4205 4206 4207
        if (is_object())
        {
            return m_value.object->erase(key);
        }
        else
        {
            throw std::domain_error("cannot use erase() with " + type_name());
        }
4208 4209
    }

N
Niels 已提交
4210 4211 4212 4213 4214 4215 4216
    /*!
    @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 已提交
4217 4218
    @throw std::domain_error when called on a type other than JSON array;
    example: `"cannot use erase() with null"`
N
Niels 已提交
4219 4220
    @throw std::out_of_range when `idx >= size()`; example: `"array index 17
    is out of range"`
N
Niels 已提交
4221 4222 4223

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

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

    @sa @ref erase(InteratorType) -- removes the element at a given position
N
Niels 已提交
4227 4228
    @sa @ref erase(InteratorType, InteratorType) -- removes the elements in
    the given range
N
Niels 已提交
4229
    @sa @ref erase(const typename object_t::key_type&) -- removes the element
N
Niels 已提交
4230 4231
    from an object at the given key

N
Niels 已提交
4232
    @since version 1.0.0
N
Niels 已提交
4233
    */
N
Niels 已提交
4234
    void erase(const size_type idx)
N
Niels 已提交
4235 4236
    {
        // this erase only works for arrays
N
cleanup  
Niels 已提交
4237
        if (is_array())
N
Niels 已提交
4238
        {
N
cleanup  
Niels 已提交
4239 4240
            if (idx >= size())
            {
N
Niels 已提交
4241
                throw std::out_of_range("array index " + std::to_string(idx) + " is out of range");
N
cleanup  
Niels 已提交
4242
            }
N
Niels 已提交
4243

N
cleanup  
Niels 已提交
4244 4245 4246
            m_value.array->erase(m_value.array->begin() + static_cast<difference_type>(idx));
        }
        else
N
Niels 已提交
4247
        {
N
cleanup  
Niels 已提交
4248
            throw std::domain_error("cannot use erase() with " + type_name());
N
Niels 已提交
4249 4250 4251
        }
    }

N
Niels 已提交
4252 4253 4254 4255 4256 4257 4258 4259 4260 4261
    /// @}


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

    /// @name lookup
    /// @{

N
Niels 已提交
4262 4263 4264 4265
    /*!
    @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 已提交
4266 4267
    element is not found or the JSON value is not an object, end() is
    returned.
N
Niels 已提交
4268 4269 4270 4271 4272 4273 4274 4275

    @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 已提交
4276
    @liveexample{The example shows how `find()` is used.,find__key_type}
N
Niels 已提交
4277

N
Niels 已提交
4278
    @since version 1.0.0
N
Niels 已提交
4279
    */
N
Niels 已提交
4280
    iterator find(typename object_t::key_type key)
N
Niels 已提交
4281 4282 4283
    {
        auto result = end();

N
cleanup  
Niels 已提交
4284
        if (is_object())
N
Niels 已提交
4285 4286 4287 4288 4289 4290 4291
        {
            result.m_it.object_iterator = m_value.object->find(key);
        }

        return result;
    }

N
Niels 已提交
4292 4293 4294 4295
    /*!
    @brief find an element in a JSON object
    @copydoc find(typename object_t::key_type)
    */
N
Niels 已提交
4296
    const_iterator find(typename object_t::key_type key) const
N
Niels 已提交
4297 4298 4299
    {
        auto result = cend();

N
cleanup  
Niels 已提交
4300
        if (is_object())
N
Niels 已提交
4301 4302 4303 4304 4305 4306 4307
        {
            result.m_it.object_iterator = m_value.object->find(key);
        }

        return result;
    }

N
Niels 已提交
4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321
    /*!
    @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 已提交
4322
    @liveexample{The example shows how `count()` is used.,count}
N
Niels 已提交
4323

N
Niels 已提交
4324
    @since version 1.0.0
N
Niels 已提交
4325
    */
N
Niels 已提交
4326
    size_type count(typename object_t::key_type key) const
4327 4328
    {
        // return 0 for all nonobject types
N
Niels 已提交
4329
        return is_object() ? m_value.object->count(key) : 0;
4330 4331
    }

N
Niels 已提交
4332 4333
    /// @}

N
Niels 已提交
4334

N
Niels 已提交
4335 4336 4337 4338
    ///////////////
    // iterators //
    ///////////////

N
Niels 已提交
4339 4340 4341
    /// @name iterators
    /// @{

N
Niels 已提交
4342 4343
    /*!
    @brief returns an iterator to the first element
N
Niels 已提交
4344 4345 4346 4347 4348 4349 4350 4351 4352

    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 已提交
4353 4354 4355
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4356 4357
    - The complexity is constant.

N
Niels 已提交
4358 4359 4360 4361 4362
    @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 已提交
4363

N
Niels 已提交
4364
    @since version 1.0.0
N
Niels 已提交
4365
    */
N
Niels 已提交
4366
    iterator begin() noexcept
N
Niels 已提交
4367 4368 4369 4370 4371 4372
    {
        iterator result(this);
        result.set_begin();
        return result;
    }

N
Niels 已提交
4373
    /*!
N
Niels 已提交
4374
    @copydoc basic_json::cbegin()
N
Niels 已提交
4375
    */
N
Niels 已提交
4376
    const_iterator begin() const noexcept
N
Niels 已提交
4377
    {
N
Niels 已提交
4378
        return cbegin();
N
Niels 已提交
4379 4380
    }

N
Niels 已提交
4381 4382
    /*!
    @brief returns a const iterator to the first element
N
Niels 已提交
4383 4384 4385 4386 4387 4388 4389 4390 4391

    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 已提交
4392 4393 4394
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4395 4396 4397
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).begin()`.

N
Niels 已提交
4398 4399 4400 4401 4402
    @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 已提交
4403

N
Niels 已提交
4404
    @since version 1.0.0
N
Niels 已提交
4405
    */
N
Niels 已提交
4406
    const_iterator cbegin() const noexcept
N
Niels 已提交
4407 4408 4409 4410 4411 4412
    {
        const_iterator result(this);
        result.set_begin();
        return result;
    }

N
Niels 已提交
4413 4414
    /*!
    @brief returns an iterator to one past the last element
N
Niels 已提交
4415 4416 4417 4418 4419 4420 4421 4422 4423

    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 已提交
4424 4425 4426
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4427 4428
    - The complexity is constant.

N
Niels 已提交
4429 4430 4431 4432 4433
    @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 已提交
4434

N
Niels 已提交
4435
    @since version 1.0.0
N
Niels 已提交
4436
    */
N
Niels 已提交
4437
    iterator end() noexcept
N
Niels 已提交
4438 4439 4440 4441 4442 4443
    {
        iterator result(this);
        result.set_end();
        return result;
    }

N
Niels 已提交
4444
    /*!
N
Niels 已提交
4445
    @copydoc basic_json::cend()
N
Niels 已提交
4446
    */
N
Niels 已提交
4447
    const_iterator end() const noexcept
N
Niels 已提交
4448
    {
N
Niels 已提交
4449
        return cend();
N
Niels 已提交
4450 4451
    }

N
Niels 已提交
4452 4453
    /*!
    @brief returns a const iterator to one past the last element
N
Niels 已提交
4454 4455 4456 4457 4458 4459 4460 4461 4462

    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 已提交
4463 4464 4465
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4466 4467 4468
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).end()`.

N
Niels 已提交
4469 4470 4471 4472 4473
    @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 已提交
4474

N
Niels 已提交
4475
    @since version 1.0.0
N
Niels 已提交
4476
    */
N
Niels 已提交
4477
    const_iterator cend() const noexcept
N
Niels 已提交
4478 4479 4480 4481 4482 4483
    {
        const_iterator result(this);
        result.set_end();
        return result;
    }

N
Niels 已提交
4484
    /*!
N
Niels 已提交
4485 4486 4487 4488 4489 4490 4491 4492
    @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 已提交
4493 4494 4495
    @requirement This function helps `basic_json` satisfying the
    [ReversibleContainer](http://en.cppreference.com/w/cpp/concept/ReversibleContainer)
    requirements:
N
Niels 已提交
4496 4497 4498
    - The complexity is constant.
    - Has the semantics of `reverse_iterator(end())`.

N
Niels 已提交
4499 4500 4501 4502 4503
    @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 已提交
4504

N
Niels 已提交
4505
    @since version 1.0.0
N
Niels 已提交
4506
    */
N
Niels 已提交
4507
    reverse_iterator rbegin() noexcept
N
Niels 已提交
4508 4509 4510 4511
    {
        return reverse_iterator(end());
    }

N
Niels 已提交
4512
    /*!
N
Niels 已提交
4513
    @copydoc basic_json::crbegin()
N
Niels 已提交
4514
    */
N
Niels 已提交
4515
    const_reverse_iterator rbegin() const noexcept
N
Niels 已提交
4516
    {
N
Niels 已提交
4517
        return crbegin();
N
Niels 已提交
4518 4519
    }

N
Niels 已提交
4520
    /*!
N
Niels 已提交
4521 4522 4523 4524 4525 4526 4527 4528 4529
    @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 已提交
4530 4531 4532
    @requirement This function helps `basic_json` satisfying the
    [ReversibleContainer](http://en.cppreference.com/w/cpp/concept/ReversibleContainer)
    requirements:
N
Niels 已提交
4533 4534 4535
    - The complexity is constant.
    - Has the semantics of `reverse_iterator(begin())`.

N
Niels 已提交
4536 4537 4538 4539 4540
    @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 已提交
4541

N
Niels 已提交
4542
    @since version 1.0.0
N
Niels 已提交
4543
    */
N
Niels 已提交
4544
    reverse_iterator rend() noexcept
N
Niels 已提交
4545 4546 4547 4548
    {
        return reverse_iterator(begin());
    }

N
Niels 已提交
4549
    /*!
N
Niels 已提交
4550
    @copydoc basic_json::crend()
N
Niels 已提交
4551
    */
N
Niels 已提交
4552
    const_reverse_iterator rend() const noexcept
N
Niels 已提交
4553
    {
N
Niels 已提交
4554
        return crend();
N
Niels 已提交
4555 4556
    }

N
Niels 已提交
4557
    /*!
N
Niels 已提交
4558 4559 4560 4561 4562 4563 4564 4565 4566
    @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 已提交
4567 4568 4569
    @requirement This function helps `basic_json` satisfying the
    [ReversibleContainer](http://en.cppreference.com/w/cpp/concept/ReversibleContainer)
    requirements:
N
Niels 已提交
4570 4571 4572
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).rbegin()`.

N
Niels 已提交
4573 4574 4575 4576 4577
    @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 已提交
4578

N
Niels 已提交
4579
    @since version 1.0.0
N
Niels 已提交
4580
    */
N
Niels 已提交
4581
    const_reverse_iterator crbegin() const noexcept
N
Niels 已提交
4582 4583 4584 4585
    {
        return const_reverse_iterator(cend());
    }

N
Niels 已提交
4586
    /*!
N
Niels 已提交
4587 4588 4589 4590 4591 4592 4593 4594 4595
    @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 已提交
4596 4597 4598
    @requirement This function helps `basic_json` satisfying the
    [ReversibleContainer](http://en.cppreference.com/w/cpp/concept/ReversibleContainer)
    requirements:
N
Niels 已提交
4599 4600 4601
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).rend()`.

N
Niels 已提交
4602 4603 4604 4605 4606
    @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 已提交
4607

N
Niels 已提交
4608
    @since version 1.0.0
N
Niels 已提交
4609
    */
N
Niels 已提交
4610
    const_reverse_iterator crend() const noexcept
N
Niels 已提交
4611 4612 4613 4614
    {
        return const_reverse_iterator(cbegin());
    }

N
cleanup  
Niels 已提交
4615 4616 4617 4618 4619 4620 4621 4622
  private:
    // forward declaration
    template<typename IteratorType> class iteration_proxy;

  public:
    /*!
    @brief wrapper to access iterator member functions in range-based for

N
Niels 已提交
4623
    This function allows to access @ref iterator::key() and @ref
N
Niels 已提交
4624 4625 4626
    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 已提交
4627 4628 4629

    @note The name of this function is not yet final and may change in the
    future.
N
cleanup  
Niels 已提交
4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643
    */
    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 已提交
4644 4645
    /// @}

N
Niels 已提交
4646 4647 4648 4649 4650

    //////////////
    // capacity //
    //////////////

N
Niels 已提交
4651 4652 4653
    /// @name capacity
    /// @{

N
Niels 已提交
4654 4655
    /*!
    @brief checks whether the container is empty
N
Niels 已提交
4656 4657 4658

    Checks if a JSON value has no elements.

N
Niels 已提交
4659
    @return The return value depends on the different types and is
N
Niels 已提交
4660 4661 4662
            defined as follows:
            Value type  | return value
            ----------- | -------------
N
Niels 已提交
4663 4664 4665 4666 4667 4668
            null        | `true`
            boolean     | `false`
            string      | `false`
            number      | `false`
            object      | result of function `object_t::empty()`
            array       | result of function `array_t::empty()`
N
Niels 已提交
4669

N
Niels 已提交
4670 4671 4672 4673
    @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 已提交
4674 4675
    @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 已提交
4676
    complexity.
N
Niels 已提交
4677

N
Niels 已提交
4678 4679 4680
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4681 4682 4683
    - The complexity is constant.
    - Has the semantics of `begin() == end()`.

N
Niels 已提交
4684
    @liveexample{The following code uses `empty()` to check if a JSON
N
Niels 已提交
4685
    object contains any elements.,empty}
N
Niels 已提交
4686

N
Niels 已提交
4687 4688
    @sa @ref size() -- returns the number of elements

N
Niels 已提交
4689
    @since version 1.0.0
N
Niels 已提交
4690
    */
N
Niels 已提交
4691
    bool empty() const noexcept
N
Niels 已提交
4692 4693 4694
    {
        switch (m_type)
        {
4695
            case value_t::null:
N
Niels 已提交
4696
            {
N
Niels 已提交
4697
                // null values are empty
N
Niels 已提交
4698 4699
                return true;
            }
N
Niels 已提交
4700

4701
            case value_t::array:
N
Niels 已提交
4702
            {
N
Niels 已提交
4703
                // delegate call to array_t::empty()
N
Niels 已提交
4704 4705
                return m_value.array->empty();
            }
N
Niels 已提交
4706

4707
            case value_t::object:
N
Niels 已提交
4708
            {
N
Niels 已提交
4709
                // delegate call to object_t::empty()
N
Niels 已提交
4710 4711
                return m_value.object->empty();
            }
N
Niels 已提交
4712

N
Niels 已提交
4713 4714 4715 4716 4717 4718
            default:
            {
                // all other types are nonempty
                return false;
            }
        }
N
Niels 已提交
4719 4720
    }

N
Niels 已提交
4721 4722
    /*!
    @brief returns the number of elements
N
Niels 已提交
4723 4724 4725

    Returns the number of elements in a JSON value.

N
Niels 已提交
4726
    @return The return value depends on the different types and is
N
Niels 已提交
4727 4728 4729
            defined as follows:
            Value type  | return value
            ----------- | -------------
N
Niels 已提交
4730 4731 4732 4733
            null        | `0`
            boolean     | `1`
            string      | `1`
            number      | `1`
N
Niels 已提交
4734 4735 4736
            object      | result of function object_t::size()
            array       | result of function array_t::size()

N
Niels 已提交
4737 4738 4739 4740
    @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 已提交
4741 4742 4743
    @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 已提交
4744

N
Niels 已提交
4745 4746 4747
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4748 4749 4750
    - The complexity is constant.
    - Has the semantics of `std::distance(begin(), end())`.

N
Niels 已提交
4751
    @liveexample{The following code calls `size()` on the different value
N
Niels 已提交
4752
    types.,size}
N
Niels 已提交
4753

N
Niels 已提交
4754 4755 4756
    @sa @ref empty() -- checks whether the container is empty
    @sa @ref max_size() -- returns the maximal number of elements

N
Niels 已提交
4757
    @since version 1.0.0
N
Niels 已提交
4758
    */
N
Niels 已提交
4759
    size_type size() const noexcept
N
Niels 已提交
4760 4761 4762
    {
        switch (m_type)
        {
4763
            case value_t::null:
N
Niels 已提交
4764
            {
N
Niels 已提交
4765
                // null values are empty
N
Niels 已提交
4766 4767
                return 0;
            }
N
Niels 已提交
4768

4769
            case value_t::array:
N
Niels 已提交
4770
            {
N
Niels 已提交
4771
                // delegate call to array_t::size()
N
Niels 已提交
4772 4773
                return m_value.array->size();
            }
N
Niels 已提交
4774

4775
            case value_t::object:
N
Niels 已提交
4776
            {
N
Niels 已提交
4777
                // delegate call to object_t::size()
N
Niels 已提交
4778 4779
                return m_value.object->size();
            }
N
Niels 已提交
4780

N
Niels 已提交
4781 4782 4783 4784 4785 4786
            default:
            {
                // all other types have size 1
                return 1;
            }
        }
N
Niels 已提交
4787 4788
    }

N
Niels 已提交
4789 4790
    /*!
    @brief returns the maximum possible number of elements
N
Niels 已提交
4791 4792 4793 4794 4795

    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 已提交
4796
    @return The return value depends on the different types and is
N
Niels 已提交
4797 4798 4799
            defined as follows:
            Value type  | return value
            ----------- | -------------
N
Niels 已提交
4800 4801 4802 4803 4804 4805
            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 已提交
4806

N
Niels 已提交
4807 4808
    @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 已提交
4809
    complexity.
N
Niels 已提交
4810

N
Niels 已提交
4811 4812 4813
    @requirement This function helps `basic_json` satisfying the
    [Container](http://en.cppreference.com/w/cpp/concept/Container)
    requirements:
N
Niels 已提交
4814 4815 4816 4817
    - The complexity is constant.
    - Has the semantics of returning `b.size()` where `b` is the largest
      possible JSON value.

N
Niels 已提交
4818
    @liveexample{The following code calls `max_size()` on the different value
N
Niels 已提交
4819
    types. Note the output is implementation specific.,max_size}
N
Niels 已提交
4820

N
Niels 已提交
4821 4822
    @sa @ref size() -- returns the number of elements

N
Niels 已提交
4823
    @since version 1.0.0
N
Niels 已提交
4824
    */
N
Niels 已提交
4825
    size_type max_size() const noexcept
N
Niels 已提交
4826 4827 4828
    {
        switch (m_type)
        {
4829
            case value_t::array:
N
Niels 已提交
4830
            {
N
Niels 已提交
4831
                // delegate call to array_t::max_size()
N
Niels 已提交
4832 4833
                return m_value.array->max_size();
            }
N
Niels 已提交
4834

4835
            case value_t::object:
N
Niels 已提交
4836
            {
N
Niels 已提交
4837
                // delegate call to object_t::max_size()
N
Niels 已提交
4838 4839
                return m_value.object->max_size();
            }
N
Niels 已提交
4840

N
Niels 已提交
4841 4842
            default:
            {
4843 4844
                // all other types have max_size() == size()
                return size();
N
Niels 已提交
4845 4846
            }
        }
N
Niels 已提交
4847 4848
    }

N
Niels 已提交
4849 4850
    /// @}

N
Niels 已提交
4851 4852 4853 4854 4855

    ///////////////
    // modifiers //
    ///////////////

N
Niels 已提交
4856 4857 4858
    /// @name modifiers
    /// @{

N
Niels 已提交
4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878
    /*!
    @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 已提交
4879
    @liveexample{The example below shows the effect of `clear()` to different
N
Niels 已提交
4880
    JSON types.,clear}
N
Niels 已提交
4881

N
Niels 已提交
4882
    @since version 1.0.0
N
Niels 已提交
4883
    */
N
Niels 已提交
4884
    void clear() noexcept
N
Niels 已提交
4885 4886 4887
    {
        switch (m_type)
        {
4888
            case value_t::number_integer:
N
Niels 已提交
4889
            {
N
Niels 已提交
4890
                m_value.number_integer = 0;
N
Niels 已提交
4891 4892
                break;
            }
N
Niels 已提交
4893

4894 4895 4896 4897 4898 4899
            case value_t::number_unsigned:
            {
                m_value.number_unsigned = 0;
                break;
            }

4900
            case value_t::number_float:
N
Niels 已提交
4901
            {
N
Niels 已提交
4902
                m_value.number_float = 0.0;
N
Niels 已提交
4903 4904
                break;
            }
N
Niels 已提交
4905

4906
            case value_t::boolean:
N
Niels 已提交
4907
            {
N
Niels 已提交
4908
                m_value.boolean = false;
N
Niels 已提交
4909 4910
                break;
            }
N
Niels 已提交
4911

4912
            case value_t::string:
N
Niels 已提交
4913 4914 4915 4916
            {
                m_value.string->clear();
                break;
            }
N
Niels 已提交
4917

4918
            case value_t::array:
N
Niels 已提交
4919 4920 4921 4922
            {
                m_value.array->clear();
                break;
            }
N
Niels 已提交
4923

4924
            case value_t::object:
N
Niels 已提交
4925 4926 4927 4928
            {
                m_value.object->clear();
                break;
            }
4929 4930 4931 4932 4933

            default:
            {
                break;
            }
N
Niels 已提交
4934 4935 4936
        }
    }

4937 4938 4939
    /*!
    @brief add an object to an array

4940
    Appends the given element @a val to the end of the JSON value. If the
4941
    function is called on a JSON null value, an empty array is created before
4942
    appending @a val.
4943

N
Niels 已提交
4944
    @param[in] val the value to add to the JSON array
4945

N
Niels 已提交
4946 4947
    @throw std::domain_error when called on a type other than JSON array or
    null; example: `"cannot use push_back() with number"`
4948 4949 4950

    @complexity Amortized constant.

N
Niels 已提交
4951 4952 4953
    @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 已提交
4954

N
Niels 已提交
4955
    @since version 1.0.0
4956
    */
4957
    void push_back(basic_json&& val)
N
Niels 已提交
4958 4959
    {
        // push_back only works for null objects or arrays
N
cleanup  
Niels 已提交
4960
        if (not(is_null() or is_array()))
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 array
N
cleanup  
Niels 已提交
4966
        if (is_null())
N
Niels 已提交
4967 4968
        {
            m_type = value_t::array;
N
Niels 已提交
4969
            m_value = value_t::array;
4970
            assert_invariant();
N
Niels 已提交
4971 4972 4973
        }

        // add element to array (move semantics)
4974
        m_value.array->push_back(std::move(val));
N
Niels 已提交
4975
        // invalidate object
4976
        val.m_type = value_t::null;
N
Niels 已提交
4977 4978
    }

4979 4980 4981 4982
    /*!
    @brief add an object to an array
    @copydoc push_back(basic_json&&)
    */
4983
    reference operator+=(basic_json&& val)
N
Niels 已提交
4984
    {
4985
        push_back(std::move(val));
N
Niels 已提交
4986 4987 4988
        return *this;
    }

4989 4990 4991 4992
    /*!
    @brief add an object to an array
    @copydoc push_back(basic_json&&)
    */
4993
    void push_back(const basic_json& val)
N
Niels 已提交
4994 4995
    {
        // push_back only works for null objects or arrays
N
cleanup  
Niels 已提交
4996
        if (not(is_null() or is_array()))
N
Niels 已提交
4997
        {
N
Niels 已提交
4998
            throw std::domain_error("cannot use push_back() with " + type_name());
N
Niels 已提交
4999 5000 5001
        }

        // transform null object into an array
N
cleanup  
Niels 已提交
5002
        if (is_null())
N
Niels 已提交
5003 5004
        {
            m_type = value_t::array;
N
Niels 已提交
5005
            m_value = value_t::array;
5006
            assert_invariant();
N
Niels 已提交
5007 5008 5009
        }

        // add element to array
5010
        m_value.array->push_back(val);
N
Niels 已提交
5011 5012
    }

5013 5014 5015 5016
    /*!
    @brief add an object to an array
    @copydoc push_back(basic_json&&)
    */
5017
    reference operator+=(const basic_json& val)
N
Niels 已提交
5018
    {
5019
        push_back(val);
N
Niels 已提交
5020 5021 5022
        return *this;
    }

5023 5024 5025
    /*!
    @brief add an object to an object

5026
    Inserts the given element @a val to the JSON object. If the function is
N
Niels 已提交
5027 5028
    called on a JSON null value, an empty object is created before inserting
    @a val.
5029

5030
    @param[in] val the value to add to the JSON object
5031 5032

    @throw std::domain_error when called on a type other than JSON object or
N
Niels 已提交
5033
    null; example: `"cannot use push_back() with number"`
5034 5035 5036

    @complexity Logarithmic in the size of the container, O(log(`size()`)).

N
Niels 已提交
5037 5038 5039
    @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 已提交
5040

N
Niels 已提交
5041
    @since version 1.0.0
5042
    */
5043
    void push_back(const typename object_t::value_type& val)
N
Niels 已提交
5044 5045
    {
        // push_back only works for null objects or objects
N
cleanup  
Niels 已提交
5046
        if (not(is_null() or is_object()))
N
Niels 已提交
5047
        {
N
Niels 已提交
5048
            throw std::domain_error("cannot use push_back() with " + type_name());
N
Niels 已提交
5049 5050 5051
        }

        // transform null object into an object
N
cleanup  
Niels 已提交
5052
        if (is_null())
N
Niels 已提交
5053 5054
        {
            m_type = value_t::object;
N
Niels 已提交
5055
            m_value = value_t::object;
5056
            assert_invariant();
N
Niels 已提交
5057 5058 5059
        }

        // add element to array
5060
        m_value.object->insert(val);
N
Niels 已提交
5061 5062
    }

5063 5064 5065 5066
    /*!
    @brief add an object to an object
    @copydoc push_back(const typename object_t::value_type&)
    */
5067
    reference operator+=(const typename object_t::value_type& val)
N
Niels 已提交
5068
    {
5069
        push_back(val);
N
Niels 已提交
5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118
        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 已提交
5119 5120
    }

N
Niels 已提交
5121 5122 5123
    /*!
    @brief inserts element

5124
    Inserts element @a val before iterator @a pos.
N
Niels 已提交
5125 5126 5127

    @param[in] pos iterator before which the content will be inserted; may be
    the end() iterator
5128 5129
    @param[in] val element to insert
    @return iterator pointing to the inserted @a val.
N
Niels 已提交
5130

N
Niels 已提交
5131 5132
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
5133 5134
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
5135 5136 5137 5138

    @complexity Constant plus linear in the distance between pos and end of the
    container.

N
Niels 已提交
5139
    @liveexample{The example shows how `insert()` is used.,insert}
N
Niels 已提交
5140

N
Niels 已提交
5141
    @since version 1.0.0
N
Niels 已提交
5142
    */
5143
    iterator insert(const_iterator pos, const basic_json& val)
N
Niels 已提交
5144 5145
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
5146
        if (is_array())
N
Niels 已提交
5147
        {
N
cleanup  
Niels 已提交
5148 5149 5150 5151 5152
            // 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 已提交
5153

N
cleanup  
Niels 已提交
5154 5155
            // insert to array and return iterator
            iterator result(this);
5156
            result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, val);
N
cleanup  
Niels 已提交
5157 5158 5159
            return result;
        }
        else
N
Niels 已提交
5160
        {
N
cleanup  
Niels 已提交
5161
            throw std::domain_error("cannot use insert() with " + type_name());
N
Niels 已提交
5162 5163 5164 5165 5166 5167 5168
        }
    }

    /*!
    @brief inserts element
    @copydoc insert(const_iterator, const basic_json&)
    */
5169
    iterator insert(const_iterator pos, basic_json&& val)
N
Niels 已提交
5170
    {
5171
        return insert(pos, val);
N
Niels 已提交
5172 5173 5174 5175 5176
    }

    /*!
    @brief inserts elements

5177
    Inserts @a cnt copies of @a val before iterator @a pos.
N
Niels 已提交
5178 5179 5180

    @param[in] pos iterator before which the content will be inserted; may be
    the end() iterator
5181 5182
    @param[in] cnt number of copies of @a val to insert
    @param[in] val element to insert
N
Niels 已提交
5183
    @return iterator pointing to the first element inserted, or @a pos if
5184
    `cnt==0`
N
Niels 已提交
5185

N
Niels 已提交
5186 5187
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
5188 5189
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
5190

5191
    @complexity Linear in @a cnt plus linear in the distance between @a pos
N
Niels 已提交
5192 5193
    and end of the container.

N
Niels 已提交
5194
    @liveexample{The example shows how `insert()` is used.,insert__count}
N
Niels 已提交
5195

N
Niels 已提交
5196
    @since version 1.0.0
N
Niels 已提交
5197
    */
5198
    iterator insert(const_iterator pos, size_type cnt, const basic_json& val)
N
Niels 已提交
5199 5200
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
5201
        if (is_array())
N
Niels 已提交
5202
        {
N
cleanup  
Niels 已提交
5203 5204 5205 5206 5207
            // 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 已提交
5208

N
cleanup  
Niels 已提交
5209 5210
            // insert to array and return iterator
            iterator result(this);
5211
            result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, cnt, val);
N
cleanup  
Niels 已提交
5212 5213 5214
            return result;
        }
        else
N
Niels 已提交
5215
        {
N
cleanup  
Niels 已提交
5216
            throw std::domain_error("cannot use insert() with " + type_name());
N
Niels 已提交
5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229
        }
    }

    /*!
    @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 已提交
5230 5231
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
5232 5233
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
5234
    @throw std::domain_error if @a first and @a last do not belong to the same
N
Niels 已提交
5235
    JSON value; example: `"iterators do not fit"`
N
Niels 已提交
5236
    @throw std::domain_error if @a first or @a last are iterators into
N
Niels 已提交
5237 5238 5239
    container for which insert is called; example: `"passed iterators may not
    belong to container"`

N
Niels 已提交
5240 5241 5242 5243 5244 5245
    @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 已提交
5246
    @liveexample{The example shows how `insert()` is used.,insert__range}
N
Niels 已提交
5247

N
Niels 已提交
5248
    @since version 1.0.0
N
Niels 已提交
5249 5250 5251 5252
    */
    iterator insert(const_iterator pos, const_iterator first, const_iterator last)
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
5253
        if (not is_array())
N
Niels 已提交
5254 5255 5256 5257 5258 5259 5260 5261 5262 5263
        {
            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 已提交
5264
        // check if range iterators belong to the same JSON object
N
Niels 已提交
5265 5266
        if (first.m_object != last.m_object)
        {
N
Niels 已提交
5267
            throw std::domain_error("iterators do not fit");
N
Niels 已提交
5268 5269 5270 5271 5272 5273 5274 5275 5276
        }

        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 已提交
5277 5278 5279 5280
        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 已提交
5281 5282 5283
        return result;
    }

N
Niels 已提交
5284 5285 5286 5287 5288 5289 5290 5291 5292
    /*!
    @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 已提交
5293 5294
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
5295 5296
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
5297

N
Niels 已提交
5298 5299 5300
    @return iterator pointing to the first element inserted, or @a pos if
    `ilist` is empty

N
Niels 已提交
5301 5302
    @complexity Linear in `ilist.size()` plus linear in the distance between
    @a pos and end of the container.
N
Niels 已提交
5303

N
Niels 已提交
5304
    @liveexample{The example shows how `insert()` is used.,insert__ilist}
N
Niels 已提交
5305

N
Niels 已提交
5306
    @since version 1.0.0
N
Niels 已提交
5307 5308 5309 5310
    */
    iterator insert(const_iterator pos, std::initializer_list<basic_json> ilist)
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
5311
        if (not is_array())
N
Niels 已提交
5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327
        {
            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 已提交
5328 5329
    /*!
    @brief exchanges the values
N
Niels 已提交
5330 5331 5332 5333 5334 5335 5336 5337 5338 5339

    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 已提交
5340 5341
    @liveexample{The example below shows how JSON values can be swapped with
    `swap()`.,swap__reference}
N
Niels 已提交
5342

N
Niels 已提交
5343
    @since version 1.0.0
N
Niels 已提交
5344
    */
N
Niels 已提交
5345
    void swap(reference other) noexcept (
N
Niels 已提交
5346 5347 5348 5349 5350
        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 已提交
5351 5352 5353
    {
        std::swap(m_type, other.m_type);
        std::swap(m_value, other.m_value);
5354
        assert_invariant();
N
Niels 已提交
5355 5356
    }

N
Niels 已提交
5357 5358 5359 5360 5361 5362 5363 5364 5365 5366
    /*!
    @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 已提交
5367 5368
    @throw std::domain_error when JSON value is not an array; example: `"cannot
    use swap() with string"`
N
Niels 已提交
5369 5370 5371

    @complexity Constant.

N
Niels 已提交
5372 5373
    @liveexample{The example below shows how arrays can be swapped with
    `swap()`.,swap__array_t}
N
Niels 已提交
5374

N
Niels 已提交
5375
    @since version 1.0.0
N
Niels 已提交
5376
    */
N
Niels 已提交
5377
    void swap(array_t& other)
N
Niels 已提交
5378 5379
    {
        // swap only works for arrays
N
cleanup  
Niels 已提交
5380 5381 5382 5383 5384
        if (is_array())
        {
            std::swap(*(m_value.array), other);
        }
        else
N
Niels 已提交
5385
        {
N
Niels 已提交
5386
            throw std::domain_error("cannot use swap() with " + type_name());
N
Niels 已提交
5387 5388 5389
        }
    }

5390 5391 5392 5393 5394 5395 5396 5397 5398 5399
    /*!
    @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 已提交
5400 5401
    @throw std::domain_error when JSON value is not an object; example:
    `"cannot use swap() with string"`
5402 5403 5404

    @complexity Constant.

N
Niels 已提交
5405 5406
    @liveexample{The example below shows how objects can be swapped with
    `swap()`.,swap__object_t}
N
Niels 已提交
5407

N
Niels 已提交
5408
    @since version 1.0.0
5409
    */
N
Niels 已提交
5410
    void swap(object_t& other)
N
Niels 已提交
5411 5412
    {
        // swap only works for objects
N
cleanup  
Niels 已提交
5413 5414 5415 5416 5417
        if (is_object())
        {
            std::swap(*(m_value.object), other);
        }
        else
N
Niels 已提交
5418
        {
N
Niels 已提交
5419
            throw std::domain_error("cannot use swap() with " + type_name());
N
Niels 已提交
5420 5421 5422
        }
    }

5423 5424 5425 5426 5427 5428 5429 5430 5431 5432
    /*!
    @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 已提交
5433 5434
    @throw std::domain_error when JSON value is not a string; example: `"cannot
    use swap() with boolean"`
5435 5436 5437

    @complexity Constant.

N
Niels 已提交
5438 5439
    @liveexample{The example below shows how strings can be swapped with
    `swap()`.,swap__string_t}
N
Niels 已提交
5440

N
Niels 已提交
5441
    @since version 1.0.0
5442
    */
N
Niels 已提交
5443
    void swap(string_t& other)
N
Niels 已提交
5444 5445
    {
        // swap only works for strings
N
cleanup  
Niels 已提交
5446 5447 5448 5449 5450
        if (is_string())
        {
            std::swap(*(m_value.string), other);
        }
        else
N
Niels 已提交
5451
        {
N
Niels 已提交
5452
            throw std::domain_error("cannot use swap() with " + type_name());
N
Niels 已提交
5453 5454 5455
        }
    }

N
Niels 已提交
5456 5457
    /// @}

N
Niels 已提交
5458 5459 5460 5461 5462

    //////////////////////////////////////////
    // lexicographical comparison operators //
    //////////////////////////////////////////

N
Niels 已提交
5463 5464 5465
    /// @name lexicographical comparison operators
    /// @{

N
Niels 已提交
5466 5467 5468 5469 5470 5471 5472
  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 已提交
5473

N
Niels 已提交
5474
    @since version 1.0.0
N
Niels 已提交
5475
    */
N
Niels 已提交
5476
    friend bool operator<(const value_t lhs, const value_t rhs) noexcept
N
Niels 已提交
5477
    {
5478
        static constexpr std::array<uint8_t, 8> order = {{
N
Niels 已提交
5479 5480 5481 5482 5483 5484
                0, // null
                3, // object
                4, // array
                5, // string
                1, // boolean
                2, // integer
5485 5486
                2, // unsigned
                2, // float
N
Niels 已提交
5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499
            }
        };

        // 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 已提交
5500 5501
    /*!
    @brief comparison: equal
N
Niels 已提交
5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517

    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.

5518 5519
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__equal}
N
Niels 已提交
5520

N
Niels 已提交
5521
    @since version 1.0.0
N
Niels 已提交
5522
    */
N
Niels 已提交
5523
    friend bool operator==(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5524
    {
F
Florian Weber 已提交
5525 5526
        const auto lhs_type = lhs.type();
        const auto rhs_type = rhs.type();
N
Niels 已提交
5527

F
Florian Weber 已提交
5528
        if (lhs_type == rhs_type)
N
Niels 已提交
5529
        {
F
Florian Weber 已提交
5530
            switch (lhs_type)
N
Niels 已提交
5531
            {
5532
                case value_t::array:
N
Niels 已提交
5533
                {
N
Niels 已提交
5534
                    return *lhs.m_value.array == *rhs.m_value.array;
N
Niels 已提交
5535
                }
5536
                case value_t::object:
N
Niels 已提交
5537
                {
N
Niels 已提交
5538
                    return *lhs.m_value.object == *rhs.m_value.object;
N
Niels 已提交
5539
                }
5540
                case value_t::null:
N
Niels 已提交
5541
                {
N
Niels 已提交
5542
                    return true;
N
Niels 已提交
5543
                }
5544
                case value_t::string:
N
Niels 已提交
5545
                {
N
Niels 已提交
5546
                    return *lhs.m_value.string == *rhs.m_value.string;
N
Niels 已提交
5547
                }
5548
                case value_t::boolean:
N
Niels 已提交
5549
                {
N
Niels 已提交
5550
                    return lhs.m_value.boolean == rhs.m_value.boolean;
N
Niels 已提交
5551
                }
5552
                case value_t::number_integer:
N
Niels 已提交
5553
                {
N
Niels 已提交
5554
                    return lhs.m_value.number_integer == rhs.m_value.number_integer;
N
Niels 已提交
5555
                }
5556 5557 5558 5559
                case value_t::number_unsigned:
                {
                    return lhs.m_value.number_unsigned == rhs.m_value.number_unsigned;
                }
5560
                case value_t::number_float:
N
Niels 已提交
5561
                {
5562
                    return lhs.m_value.number_float == rhs.m_value.number_float;
N
Niels 已提交
5563
                }
5564
                default:
N
Niels 已提交
5565
                {
N
Niels 已提交
5566
                    return false;
N
Niels 已提交
5567
                }
N
Niels 已提交
5568 5569
            }
        }
F
Florian Weber 已提交
5570 5571
        else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
        {
N
Niels 已提交
5572
            return static_cast<number_float_t>(lhs.m_value.number_integer) == rhs.m_value.number_float;
F
Florian Weber 已提交
5573 5574 5575
        }
        else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
        {
5576
            return lhs.m_value.number_float == static_cast<number_float_t>(rhs.m_value.number_integer);
F
Florian Weber 已提交
5577
        }
5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592
        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 已提交
5593
        }
5594

N
Niels 已提交
5595 5596 5597
        return false;
    }

N
Niels 已提交
5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612
    /*!
    @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 已提交
5613

N
Niels 已提交
5614
    @since version 1.0.0
N
Niels 已提交
5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629
    */
    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 已提交
5630 5631
    /*!
    @brief comparison: not equal
N
Niels 已提交
5632 5633 5634 5635 5636 5637 5638 5639 5640

    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.

5641 5642
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__notequal}
N
Niels 已提交
5643

N
Niels 已提交
5644
    @since version 1.0.0
N
Niels 已提交
5645
    */
N
Niels 已提交
5646
    friend bool operator!=(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5647 5648 5649 5650
    {
        return not (lhs == rhs);
    }

N
Niels 已提交
5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665
    /*!
    @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 已提交
5666

N
Niels 已提交
5667
    @since version 1.0.0
N
Niels 已提交
5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682
    */
    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 已提交
5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701
    /*!
    @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.

5702 5703
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__less}
N
Niels 已提交
5704

N
Niels 已提交
5705
    @since version 1.0.0
N
Niels 已提交
5706
    */
N
Niels 已提交
5707
    friend bool operator<(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5708
    {
F
Florian Weber 已提交
5709 5710
        const auto lhs_type = lhs.type();
        const auto rhs_type = rhs.type();
N
Niels 已提交
5711

F
Florian Weber 已提交
5712
        if (lhs_type == rhs_type)
N
Niels 已提交
5713
        {
F
Florian Weber 已提交
5714
            switch (lhs_type)
N
Niels 已提交
5715
            {
5716
                case value_t::array:
N
Niels 已提交
5717
                {
N
Niels 已提交
5718
                    return *lhs.m_value.array < *rhs.m_value.array;
N
Niels 已提交
5719
                }
5720
                case value_t::object:
N
Niels 已提交
5721
                {
N
Niels 已提交
5722
                    return *lhs.m_value.object < *rhs.m_value.object;
N
Niels 已提交
5723
                }
5724
                case value_t::null:
N
Niels 已提交
5725
                {
N
Niels 已提交
5726
                    return false;
N
Niels 已提交
5727
                }
5728
                case value_t::string:
N
Niels 已提交
5729
                {
N
Niels 已提交
5730
                    return *lhs.m_value.string < *rhs.m_value.string;
N
Niels 已提交
5731
                }
5732
                case value_t::boolean:
N
Niels 已提交
5733
                {
N
Niels 已提交
5734
                    return lhs.m_value.boolean < rhs.m_value.boolean;
N
Niels 已提交
5735
                }
5736
                case value_t::number_integer:
N
Niels 已提交
5737
                {
N
Niels 已提交
5738
                    return lhs.m_value.number_integer < rhs.m_value.number_integer;
N
Niels 已提交
5739
                }
5740 5741 5742 5743
                case value_t::number_unsigned:
                {
                    return lhs.m_value.number_unsigned < rhs.m_value.number_unsigned;
                }
5744
                case value_t::number_float:
N
Niels 已提交
5745
                {
N
Niels 已提交
5746
                    return lhs.m_value.number_float < rhs.m_value.number_float;
N
Niels 已提交
5747
                }
5748
                default:
N
Niels 已提交
5749
                {
N
Niels 已提交
5750
                    return false;
N
Niels 已提交
5751
                }
N
Niels 已提交
5752 5753
            }
        }
F
Florian Weber 已提交
5754 5755
        else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
        {
5756
            return static_cast<number_float_t>(lhs.m_value.number_integer) < rhs.m_value.number_float;
F
Florian Weber 已提交
5757 5758 5759
        }
        else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
        {
5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776
            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 已提交
5777
        }
N
Niels 已提交
5778

N
Niels 已提交
5779
        // We only reach this line if we cannot compare values. In that case,
N
Niels 已提交
5780 5781 5782
        // we compare types. Note we have to call the operator explicitly,
        // because MSVC has problems otherwise.
        return operator<(lhs_type, rhs_type);
N
Niels 已提交
5783 5784
    }

N
Niels 已提交
5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796
    /*!
    @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.

5797 5798
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__greater}
N
Niels 已提交
5799

N
Niels 已提交
5800
    @since version 1.0.0
N
Niels 已提交
5801
    */
N
Niels 已提交
5802
    friend bool operator<=(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5803 5804 5805 5806
    {
        return not (rhs < lhs);
    }

N
Niels 已提交
5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818
    /*!
    @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.

5819 5820
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__lessequal}
N
Niels 已提交
5821

N
Niels 已提交
5822
    @since version 1.0.0
N
Niels 已提交
5823
    */
N
Niels 已提交
5824
    friend bool operator>(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5825 5826 5827 5828
    {
        return not (lhs <= rhs);
    }

N
Niels 已提交
5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840
    /*!
    @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.

5841 5842
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__greaterequal}
N
Niels 已提交
5843

N
Niels 已提交
5844
    @since version 1.0.0
N
Niels 已提交
5845
    */
N
Niels 已提交
5846
    friend bool operator>=(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
5847 5848 5849 5850
    {
        return not (lhs < rhs);
    }

N
Niels 已提交
5851 5852
    /// @}

N
Niels 已提交
5853 5854 5855 5856 5857

    ///////////////////
    // serialization //
    ///////////////////

N
Niels 已提交
5858 5859 5860
    /// @name serialization
    /// @{

N
Niels 已提交
5861 5862 5863 5864 5865 5866 5867 5868 5869 5870
    /*!
    @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)`.

5871 5872 5873 5874
    @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 已提交
5875 5876 5877 5878 5879 5880 5881
    @param[in,out] o  stream to serialize to
    @param[in] j  JSON value to serialize

    @return the stream @a o

    @complexity Linear.

N
Niels 已提交
5882 5883
    @liveexample{The example below shows the serialization with different
    parameters to `width` to adjust the indentation level.,operator_serialize}
N
Niels 已提交
5884

N
Niels 已提交
5885
    @since version 1.0.0
N
Niels 已提交
5886
    */
N
Niels 已提交
5887 5888
    friend std::ostream& operator<<(std::ostream& o, const basic_json& j)
    {
N
Niels 已提交
5889
        // read width member and use it as indentation parameter if nonzero
N
Niels 已提交
5890 5891
        const bool pretty_print = (o.width() > 0);
        const auto indentation = (pretty_print ? o.width() : 0);
N
Niels 已提交
5892

N
Niels 已提交
5893 5894
        // reset width to 0 for subsequent calls to this stream
        o.width(0);
5895

N
Niels 已提交
5896
        // fix locale problems
5897 5898 5899 5900 5901 5902 5903
        const auto old_locale = o.imbue(std::locale(std::locale(), new DecimalSeparator));
        // 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 已提交
5904
        const auto old_precision = o.precision(std::numeric_limits<double>::digits10);
N
Niels 已提交
5905 5906

        // do the actual serialization
N
Niels 已提交
5907
        j.dump(o, pretty_print, static_cast<unsigned int>(indentation));
N
Niels 已提交
5908

5909
        // reset locale and precision
N
Niels 已提交
5910
        o.imbue(old_locale);
N
Niels 已提交
5911
        o.precision(old_precision);
N
Niels 已提交
5912 5913 5914
        return o;
    }

N
Niels 已提交
5915 5916 5917 5918
    /*!
    @brief serialize to stream
    @copydoc operator<<(std::ostream&, const basic_json&)
    */
N
Niels 已提交
5919 5920
    friend std::ostream& operator>>(const basic_json& j, std::ostream& o)
    {
N
Niels 已提交
5921
        return o << j;
N
Niels 已提交
5922 5923
    }

N
Niels 已提交
5924 5925
    /// @}

N
Niels 已提交
5926 5927 5928 5929 5930

    /////////////////////
    // deserialization //
    /////////////////////

N
Niels 已提交
5931 5932 5933
    /// @name deserialization
    /// @{

N
Niels 已提交
5934 5935 5936 5937
    /*!
    @brief deserialize from string

    @param[in] s  string to read a serialized JSON value from
N
Niels 已提交
5938 5939 5940
    @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 已提交
5941 5942 5943 5944 5945 5946 5947

    @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 已提交
5948 5949
    @note A UTF-8 byte order mark is silently ignored.

N
Niels 已提交
5950 5951
    @liveexample{The example below demonstrates the `parse()` function with
    and without callback function.,parse__string__parser_callback_t}
N
Niels 已提交
5952

N
Niels 已提交
5953 5954
    @sa @ref parse(std::istream&, const parser_callback_t) for a version that
    reads from an input stream
N
Niels 已提交
5955

N
Niels 已提交
5956
    @since version 1.0.0
N
Niels 已提交
5957
    */
N
Niels 已提交
5958 5959
    static basic_json parse(const string_t& s,
                            const parser_callback_t cb = nullptr)
N
Niels 已提交
5960
    {
N
Niels 已提交
5961
        return parser(s, cb).parse();
N
Niels 已提交
5962 5963
    }

N
Niels 已提交
5964 5965 5966 5967
    /*!
    @brief deserialize from stream

    @param[in,out] i  stream to read a serialized JSON value from
N
Niels 已提交
5968 5969 5970
    @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 已提交
5971 5972 5973 5974 5975 5976 5977

    @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 已提交
5978 5979
    @note A UTF-8 byte order mark is silently ignored.

N
Niels 已提交
5980 5981
    @liveexample{The example below demonstrates the `parse()` function with
    and without callback function.,parse__istream__parser_callback_t}
N
Niels 已提交
5982

N
Niels 已提交
5983 5984
    @sa @ref parse(const string_t&, const parser_callback_t) for a version
    that reads from a string
N
Niels 已提交
5985

N
Niels 已提交
5986
    @since version 1.0.0
N
Niels 已提交
5987
    */
N
Niels 已提交
5988 5989
    static basic_json parse(std::istream& i,
                            const parser_callback_t cb = nullptr)
N
Niels 已提交
5990
    {
N
Niels 已提交
5991
        return parser(i, cb).parse();
N
Niels 已提交
5992 5993
    }

N
Niels 已提交
5994
    /*!
N
Niels 已提交
5995
    @copydoc parse(std::istream&, const parser_callback_t)
N
Niels 已提交
5996
    */
N
Niels 已提交
5997 5998
    static basic_json parse(std::istream&& i,
                            const parser_callback_t cb = nullptr)
N
Cleanup  
Niels 已提交
5999 6000 6001 6002
    {
        return parser(i, cb).parse();
    }

N
Niels 已提交
6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015
    /*!
    @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 已提交
6016 6017
    @note A UTF-8 byte order mark is silently ignored.

N
Niels 已提交
6018 6019 6020
    @liveexample{The example below shows how a JSON value is constructed by
    reading a serialization from a stream.,operator_deserialize}

N
Niels 已提交
6021 6022
    @sa parse(std::istream&, const parser_callback_t) for a variant with a
    parser callback function to filter values while parsing
N
Niels 已提交
6023

N
Niels 已提交
6024
    @since version 1.0.0
N
Niels 已提交
6025 6026
    */
    friend std::istream& operator<<(basic_json& j, std::istream& i)
N
Niels 已提交
6027 6028 6029 6030 6031
    {
        j = parser(i).parse();
        return i;
    }

N
Niels 已提交
6032 6033 6034 6035 6036
    /*!
    @brief deserialize from stream
    @copydoc operator<<(basic_json&, std::istream&)
    */
    friend std::istream& operator>>(std::istream& i, basic_json& j)
N
Niels 已提交
6037 6038 6039 6040 6041
    {
        j = parser(i).parse();
        return i;
    }

N
Niels 已提交
6042 6043
    /// @}

N
Niels 已提交
6044 6045 6046 6047 6048 6049

  private:
    ///////////////////////////
    // convenience functions //
    ///////////////////////////

N
Niels 已提交
6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061
    /*!
    @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.

    @return basically a string representation of a the @ref m_type member

    @complexity Constant.

    @since version 1.0.0
    */
N
Niels 已提交
6062
    std::string type_name() const
N
Niels 已提交
6063 6064 6065
    {
        switch (m_type)
        {
6066
            case value_t::null:
N
Niels 已提交
6067
                return "null";
6068
            case value_t::object:
N
Niels 已提交
6069
                return "object";
6070
            case value_t::array:
N
Niels 已提交
6071
                return "array";
6072
            case value_t::string:
N
Niels 已提交
6073
                return "string";
6074
            case value_t::boolean:
N
Niels 已提交
6075
                return "boolean";
6076
            case value_t::discarded:
N
Niels 已提交
6077
                return "discarded";
N
Niels 已提交
6078
            default:
N
Niels 已提交
6079 6080 6081 6082
                return "number";
        }
    }

N
Niels 已提交
6083 6084 6085 6086 6087 6088 6089 6090 6091 6092
    /*!
    @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 已提交
6093 6094
        return std::accumulate(s.begin(), s.end(), size_t{},
                               [](size_t res, typename string_t::value_type c)
N
Niels 已提交
6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106
        {
            switch (c)
            {
                case '"':
                case '\\':
                case '\b':
                case '\f':
                case '\n':
                case '\r':
                case '\t':
                {
                    // from c (1 byte) to \x (2 bytes)
N
Niels 已提交
6107
                    return res + 1;
N
Niels 已提交
6108 6109 6110 6111 6112 6113 6114
                }

                default:
                {
                    if (c >= 0x00 and c <= 0x1f)
                    {
                        // from c (1 byte) to \uxxxx (6 bytes)
N
Niels 已提交
6115 6116 6117 6118 6119
                        return res + 5;
                    }
                    else
                    {
                        return res;
N
Niels 已提交
6120 6121 6122
                    }
                }
            }
N
Niels 已提交
6123
        });
N
Niels 已提交
6124 6125
    }

N
Niels 已提交
6126 6127
    /*!
    @brief escape a string
N
Niels 已提交
6128

N
Niels 已提交
6129 6130
    Escape a string by replacing certain special characters by a sequence of
    an escape character (backslash) and another character and other control
N
Niels 已提交
6131 6132 6133
    characters by a sequence of "\u" followed by a four-digit hex
    representation.

N
Niels 已提交
6134
    @param[in] s  the string to escape
N
Niels 已提交
6135 6136 6137
    @return  the escaped string

    @complexity Linear in the length of string @a s.
N
Niels 已提交
6138
    */
N
Niels 已提交
6139
    static string_t escape_string(const string_t& s)
N
Niels 已提交
6140
    {
N
Niels 已提交
6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151
        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 已提交
6152 6153 6154 6155 6156 6157
        {
            switch (c)
            {
                // quotation mark (0x22)
                case '"':
                {
N
Niels 已提交
6158 6159
                    result[pos + 1] = '"';
                    pos += 2;
N
Niels 已提交
6160 6161
                    break;
                }
N
Niels 已提交
6162

N
Niels 已提交
6163 6164 6165
                // reverse solidus (0x5c)
                case '\\':
                {
N
Niels 已提交
6166 6167
                    // nothing to change
                    pos += 2;
N
Niels 已提交
6168 6169
                    break;
                }
N
Niels 已提交
6170

N
Niels 已提交
6171 6172 6173
                // backspace (0x08)
                case '\b':
                {
N
Niels 已提交
6174 6175
                    result[pos + 1] = 'b';
                    pos += 2;
N
Niels 已提交
6176 6177
                    break;
                }
N
Niels 已提交
6178

N
Niels 已提交
6179 6180 6181
                // formfeed (0x0c)
                case '\f':
                {
N
Niels 已提交
6182 6183
                    result[pos + 1] = 'f';
                    pos += 2;
N
Niels 已提交
6184 6185
                    break;
                }
N
Niels 已提交
6186

N
Niels 已提交
6187 6188 6189
                // newline (0x0a)
                case '\n':
                {
N
Niels 已提交
6190 6191
                    result[pos + 1] = 'n';
                    pos += 2;
N
Niels 已提交
6192 6193
                    break;
                }
N
Niels 已提交
6194

N
Niels 已提交
6195 6196 6197
                // carriage return (0x0d)
                case '\r':
                {
N
Niels 已提交
6198 6199
                    result[pos + 1] = 'r';
                    pos += 2;
N
Niels 已提交
6200 6201
                    break;
                }
N
Niels 已提交
6202

N
Niels 已提交
6203 6204 6205
                // horizontal tab (0x09)
                case '\t':
                {
N
Niels 已提交
6206 6207
                    result[pos + 1] = 't';
                    pos += 2;
N
Niels 已提交
6208 6209 6210 6211 6212
                    break;
                }

                default:
                {
6213
                    if (c >= 0x00 and c <= 0x1f)
N
Niels 已提交
6214
                    {
N
Niels 已提交
6215 6216
                        // convert a number 0..15 to its hex representation
                        // (0..f)
N
Niels 已提交
6217
                        static const char hexify[16] =
6218
                        {
N
Niels 已提交
6219 6220
                            '0', '1', '2', '3', '4', '5', '6', '7',
                            '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
6221 6222
                        };

N
Niels 已提交
6223
                        // print character c as \uxxxx
N
Niels 已提交
6224
                        for (const char m :
N
Niels 已提交
6225
                    { 'u', '0', '0', hexify[c >> 4], hexify[c & 0x0f]
N
Niels 已提交
6226
                        })
6227 6228 6229 6230 6231
                        {
                            result[++pos] = m;
                        }

                        ++pos;
N
Niels 已提交
6232 6233 6234 6235
                    }
                    else
                    {
                        // all other characters are added as-is
N
Niels 已提交
6236
                        result[pos++] = c;
N
Niels 已提交
6237 6238 6239 6240 6241
                    }
                    break;
                }
            }
        }
N
Niels 已提交
6242 6243

        return result;
N
Niels 已提交
6244 6245 6246 6247
    }

    /*!
    @brief internal implementation of the serialization function
N
Niels 已提交
6248

N
Niels 已提交
6249
    This function is called by the public member function dump and organizes
N
Niels 已提交
6250
    the serialization internally. The indentation level is propagated as
N
Niels 已提交
6251 6252
    additional parameter. In case of arrays and objects, the function is
    called recursively. Note that
N
Niels 已提交
6253

N
Niels 已提交
6254 6255 6256
    - 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 已提交
6257

N
Niels 已提交
6258 6259 6260 6261
    @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 已提交
6262
    */
N
Niels 已提交
6263 6264 6265
    void dump(std::ostream& o,
              const bool pretty_print,
              const unsigned int indent_step,
N
Niels 已提交
6266
              const unsigned int current_indent = 0) const
N
Niels 已提交
6267
    {
N
Niels 已提交
6268
        // variable to hold indentation for recursive calls
N
Niels 已提交
6269
        unsigned int new_indent = current_indent;
N
Niels 已提交
6270

N
Niels 已提交
6271 6272
        switch (m_type)
        {
6273
            case value_t::object:
N
Niels 已提交
6274 6275 6276
            {
                if (m_value.object->empty())
                {
N
Niels 已提交
6277 6278
                    o << "{}";
                    return;
N
Niels 已提交
6279 6280
                }

N
Niels 已提交
6281
                o << "{";
N
Niels 已提交
6282 6283

                // increase indentation
N
Niels 已提交
6284
                if (pretty_print)
N
Niels 已提交
6285
                {
N
Niels 已提交
6286
                    new_indent += indent_step;
N
Niels 已提交
6287
                    o << "\n";
N
Niels 已提交
6288 6289 6290 6291 6292 6293
                }

                for (auto i = m_value.object->cbegin(); i != m_value.object->cend(); ++i)
                {
                    if (i != m_value.object->cbegin())
                    {
N
Niels 已提交
6294
                        o << (pretty_print ? ",\n" : ",");
N
Niels 已提交
6295
                    }
N
Niels 已提交
6296 6297 6298
                    o << string_t(new_indent, ' ') << "\""
                      << escape_string(i->first) << "\":"
                      << (pretty_print ? " " : "");
N
Niels 已提交
6299
                    i->second.dump(o, pretty_print, indent_step, new_indent);
N
Niels 已提交
6300 6301 6302
                }

                // decrease indentation
N
Niels 已提交
6303
                if (pretty_print)
N
Niels 已提交
6304
                {
N
Niels 已提交
6305
                    new_indent -= indent_step;
N
Niels 已提交
6306
                    o << "\n";
N
Niels 已提交
6307 6308
                }

N
Niels 已提交
6309 6310
                o << string_t(new_indent, ' ') + "}";
                return;
N
Niels 已提交
6311 6312
            }

6313
            case value_t::array:
N
Niels 已提交
6314 6315 6316
            {
                if (m_value.array->empty())
                {
N
Niels 已提交
6317 6318
                    o << "[]";
                    return;
N
Niels 已提交
6319 6320
                }

N
Niels 已提交
6321
                o << "[";
N
Niels 已提交
6322 6323

                // increase indentation
N
Niels 已提交
6324
                if (pretty_print)
N
Niels 已提交
6325
                {
N
Niels 已提交
6326
                    new_indent += indent_step;
N
Niels 已提交
6327
                    o << "\n";
N
Niels 已提交
6328 6329 6330 6331 6332 6333
                }

                for (auto i = m_value.array->cbegin(); i != m_value.array->cend(); ++i)
                {
                    if (i != m_value.array->cbegin())
                    {
N
Niels 已提交
6334
                        o << (pretty_print ? ",\n" : ",");
N
Niels 已提交
6335
                    }
N
Niels 已提交
6336
                    o << string_t(new_indent, ' ');
N
Niels 已提交
6337
                    i->dump(o, pretty_print, indent_step, new_indent);
N
Niels 已提交
6338 6339 6340
                }

                // decrease indentation
N
Niels 已提交
6341
                if (pretty_print)
N
Niels 已提交
6342
                {
N
Niels 已提交
6343
                    new_indent -= indent_step;
N
Niels 已提交
6344
                    o << "\n";
N
Niels 已提交
6345 6346
                }

N
Niels 已提交
6347 6348
                o << string_t(new_indent, ' ') << "]";
                return;
N
Niels 已提交
6349 6350
            }

6351
            case value_t::string:
N
Niels 已提交
6352
            {
N
Niels 已提交
6353
                o << string_t("\"") << escape_string(*m_value.string) << "\"";
N
Niels 已提交
6354
                return;
N
Niels 已提交
6355 6356
            }

6357
            case value_t::boolean:
N
Niels 已提交
6358
            {
N
Niels 已提交
6359 6360
                o << (m_value.boolean ? "true" : "false");
                return;
N
Niels 已提交
6361 6362
            }

6363
            case value_t::number_integer:
N
Niels 已提交
6364
            {
N
Niels 已提交
6365 6366
                o << m_value.number_integer;
                return;
N
Niels 已提交
6367 6368
            }

6369 6370 6371 6372 6373 6374
            case value_t::number_unsigned:
            {
                o << m_value.number_unsigned;
                return;
            }

6375
            case value_t::number_float:
N
Niels 已提交
6376
            {
N
Niels 已提交
6377
                if (m_value.number_float == 0)
N
Niels 已提交
6378
                {
N
Niels 已提交
6379 6380
                    // special case for zero to get "0.0"/"-0.0"
                    o << (std::signbit(m_value.number_float) ? "-0.0" : "0.0");
N
Niels 已提交
6381
                }
N
Niels 已提交
6382
                else
N
Niels 已提交
6383
                {
6384
                    o << m_value.number_float;
N
Niels 已提交
6385
                }
N
Niels 已提交
6386
                return;
N
Niels 已提交
6387
            }
N
Niels 已提交
6388

6389
            case value_t::discarded:
N
Niels 已提交
6390
            {
N
Niels 已提交
6391 6392
                o << "<discarded>";
                return;
N
Niels 已提交
6393
            }
N
Niels 已提交
6394

6395
            case value_t::null:
N
Niels 已提交
6396
            {
N
Niels 已提交
6397 6398
                o << "null";
                return;
N
Niels 已提交
6399
            }
N
Niels 已提交
6400 6401 6402 6403 6404 6405 6406 6407 6408
        }
    }

  private:
    //////////////////////
    // member variables //
    //////////////////////

    /// the type of the current element
N
Niels 已提交
6409
    value_t m_type = value_t::null;
N
Niels 已提交
6410 6411 6412 6413

    /// the value of the current element
    json_value m_value = {};

N
Niels 已提交
6414

N
Niels 已提交
6415
  private:
N
Niels 已提交
6416 6417 6418 6419
    ///////////////
    // iterators //
    ///////////////

6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432
    /*!
    @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 已提交
6433
        void set_begin() noexcept
6434 6435 6436 6437 6438
        {
            m_it = begin_value;
        }

        /// set iterator to a defined past the end
N
Niels 已提交
6439
        void set_end() noexcept
6440 6441 6442 6443 6444
        {
            m_it = end_value;
        }

        /// return whether the iterator can be dereferenced
N
Niels 已提交
6445
        constexpr bool is_begin() const noexcept
6446 6447 6448 6449 6450
        {
            return (m_it == begin_value);
        }

        /// return whether the iterator is at end
N
Niels 已提交
6451
        constexpr bool is_end() const noexcept
6452 6453 6454 6455 6456
        {
            return (m_it == end_value);
        }

        /// return reference to the value to change and compare
N
Niels 已提交
6457
        operator difference_type& () noexcept
6458 6459 6460 6461 6462
        {
            return m_it;
        }

        /// return value to compare
N
Niels 已提交
6463
        constexpr operator difference_type () const noexcept
6464 6465 6466 6467 6468 6469 6470 6471 6472
        {
            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 已提交
6473
        difference_type m_it = std::numeric_limits<std::ptrdiff_t>::denorm_min();
6474 6475
    };

N
Niels 已提交
6476 6477 6478 6479 6480 6481 6482 6483
    /*!
    @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 已提交
6484 6485
    {
        /// iterator for JSON objects
N
Niels 已提交
6486
        typename object_t::iterator object_iterator;
N
Niels 已提交
6487
        /// iterator for JSON arrays
N
Niels 已提交
6488
        typename array_t::iterator array_iterator;
N
Niels 已提交
6489
        /// generic iterator for all other types
N
Niels 已提交
6490 6491 6492
        primitive_iterator_t primitive_iterator;

        /// create an uninitialized internal_iterator
N
Niels 已提交
6493
        internal_iterator() noexcept
N
Niels 已提交
6494 6495
            : object_iterator(), array_iterator(), primitive_iterator()
        {}
N
Niels 已提交
6496 6497
    };

N
cleanup  
Niels 已提交
6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512
    /// 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 已提交
6513
            explicit iteration_proxy_internal(IteratorType it) noexcept
N
cleanup  
Niels 已提交
6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532
                : 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 已提交
6533
            bool operator!= (const iteration_proxy_internal& o) const
N
cleanup  
Niels 已提交
6534 6535 6536 6537 6538 6539 6540
            {
                return anchor != o.anchor;
            }

            /// return key of the iterator
            typename basic_json::string_t key() const
            {
N
Niels 已提交
6541 6542
                assert(anchor.m_object != nullptr);

N
cleanup  
Niels 已提交
6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576
                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 已提交
6577
        explicit iteration_proxy(typename IteratorType::reference cont)
N
cleanup  
Niels 已提交
6578 6579 6580 6581
            : container(cont)
        {}

        /// return iterator begin (needed for range-based for)
N
Niels 已提交
6582
        iteration_proxy_internal begin() noexcept
N
cleanup  
Niels 已提交
6583 6584 6585 6586 6587
        {
            return iteration_proxy_internal(container.begin());
        }

        /// return iterator end (needed for range-based for)
N
Niels 已提交
6588
        iteration_proxy_internal end() noexcept
N
cleanup  
Niels 已提交
6589 6590 6591 6592 6593
        {
            return iteration_proxy_internal(container.end());
        }
    };

N
Niels 已提交
6594
  public:
N
Niels 已提交
6595 6596 6597 6598 6599 6600
    /*!
    @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 已提交
6601 6602 6603
    @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 已提交
6604 6605
          methods are undefined. **The library uses assertions to detect calls
          on uninitialized iterators.**
N
Niels 已提交
6606

N
Niels 已提交
6607 6608 6609 6610
    @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 已提交
6611

N
Niels 已提交
6612
    @since version 1.0.0
N
Niels 已提交
6613
    */
N
Niels 已提交
6614
    class const_iterator : public std::iterator<std::random_access_iterator_tag, const basic_json>
N
Niels 已提交
6615
    {
N
Niels 已提交
6616
        /// allow basic_json to access private members
6617 6618
        friend class basic_json;

N
Niels 已提交
6619 6620
      public:
        /// the type of the values when the iterator is dereferenced
N
Niels 已提交
6621
        using value_type = typename basic_json::value_type;
N
Niels 已提交
6622
        /// a type to represent differences between iterators
N
Niels 已提交
6623
        using difference_type = typename basic_json::difference_type;
N
Niels 已提交
6624
        /// defines a pointer to the type iterated over (value_type)
N
Niels 已提交
6625
        using pointer = typename basic_json::const_pointer;
N
Niels 已提交
6626
        /// defines a reference to the type iterated over (value_type)
N
Niels 已提交
6627
        using reference = typename basic_json::const_reference;
N
Niels 已提交
6628
        /// the category of the iterator
N
Niels 已提交
6629
        using iterator_category = std::bidirectional_iterator_tag;
N
Niels 已提交
6630

6631
        /// default constructor
N
Niels 已提交
6632
        const_iterator() = default;
6633

N
Niels 已提交
6634 6635 6636 6637 6638 6639
        /*!
        @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 已提交
6640 6641
        explicit const_iterator(pointer object) noexcept
            : m_object(object)
N
Niels 已提交
6642
        {
N
Niels 已提交
6643 6644
            assert(m_object != nullptr);

N
Niels 已提交
6645 6646
            switch (m_object->m_type)
            {
6647
                case basic_json::value_t::object:
N
Niels 已提交
6648 6649 6650 6651
                {
                    m_it.object_iterator = typename object_t::iterator();
                    break;
                }
6652 6653

                case basic_json::value_t::array:
N
Niels 已提交
6654 6655 6656 6657
                {
                    m_it.array_iterator = typename array_t::iterator();
                    break;
                }
6658

N
Niels 已提交
6659 6660
                default:
                {
6661
                    m_it.primitive_iterator = primitive_iterator_t();
N
Niels 已提交
6662 6663 6664 6665 6666
                    break;
                }
            }
        }

N
Niels 已提交
6667 6668 6669 6670 6671
        /*!
        @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 已提交
6672 6673
        explicit const_iterator(const iterator& other) noexcept
            : m_object(other.m_object)
N
Niels 已提交
6674
        {
N
Niels 已提交
6675
            if (m_object != nullptr)
N
Niels 已提交
6676
            {
N
Niels 已提交
6677
                switch (m_object->m_type)
N
Niels 已提交
6678
                {
N
Niels 已提交
6679 6680 6681 6682 6683
                    case basic_json::value_t::object:
                    {
                        m_it.object_iterator = other.m_it.object_iterator;
                        break;
                    }
N
Niels 已提交
6684

N
Niels 已提交
6685 6686 6687 6688 6689
                    case basic_json::value_t::array:
                    {
                        m_it.array_iterator = other.m_it.array_iterator;
                        break;
                    }
N
Niels 已提交
6690

N
Niels 已提交
6691 6692 6693 6694 6695
                    default:
                    {
                        m_it.primitive_iterator = other.m_it.primitive_iterator;
                        break;
                    }
N
Niels 已提交
6696 6697 6698 6699
                }
            }
        }

N
Niels 已提交
6700 6701 6702 6703 6704
        /*!
        @brief copy constructor
        @param[in] other  iterator to copy from
        @note It is not checked whether @a other is initialized.
        */
N
Niels 已提交
6705
        const_iterator(const const_iterator& other) noexcept
N
Niels 已提交
6706 6707 6708
            : m_object(other.m_object), m_it(other.m_it)
        {}

N
Niels 已提交
6709 6710 6711 6712 6713
        /*!
        @brief copy assignment
        @param[in,out] other  iterator to copy from
        @note It is not checked whether @a other is initialized.
        */
N
Niels 已提交
6714
        const_iterator& operator=(const_iterator other) noexcept(
N
Niels 已提交
6715 6716
            std::is_nothrow_move_constructible<pointer>::value and
            std::is_nothrow_move_assignable<pointer>::value and
N
Niels 已提交
6717 6718
            std::is_nothrow_move_constructible<internal_iterator>::value and
            std::is_nothrow_move_assignable<internal_iterator>::value
N
Niels 已提交
6719 6720 6721 6722
        )
        {
            std::swap(m_object, other.m_object);
            std::swap(m_it, other.m_it);
N
Niels 已提交
6723 6724 6725
            return *this;
        }

N
Niels 已提交
6726
      private:
N
Niels 已提交
6727 6728 6729 6730
        /*!
        @brief set the iterator to the first value
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
6731
        void set_begin() noexcept
N
Niels 已提交
6732
        {
N
Niels 已提交
6733 6734
            assert(m_object != nullptr);

N
Niels 已提交
6735 6736
            switch (m_object->m_type)
            {
6737
                case basic_json::value_t::object:
N
Niels 已提交
6738 6739 6740 6741 6742
                {
                    m_it.object_iterator = m_object->m_value.object->begin();
                    break;
                }

6743
                case basic_json::value_t::array:
N
Niels 已提交
6744 6745 6746 6747 6748
                {
                    m_it.array_iterator = m_object->m_value.array->begin();
                    break;
                }

6749
                case basic_json::value_t::null:
N
Niels 已提交
6750
                {
N
Niels 已提交
6751
                    // set to end so begin()==end() is true: null is empty
6752
                    m_it.primitive_iterator.set_end();
N
Niels 已提交
6753 6754 6755 6756 6757
                    break;
                }

                default:
                {
6758
                    m_it.primitive_iterator.set_begin();
N
Niels 已提交
6759 6760 6761 6762 6763
                    break;
                }
            }
        }

N
Niels 已提交
6764 6765 6766 6767
        /*!
        @brief set the iterator past the last value
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
6768
        void set_end() noexcept
N
Niels 已提交
6769
        {
N
Niels 已提交
6770 6771
            assert(m_object != nullptr);

N
Niels 已提交
6772 6773
            switch (m_object->m_type)
            {
6774
                case basic_json::value_t::object:
N
Niels 已提交
6775 6776 6777 6778 6779
                {
                    m_it.object_iterator = m_object->m_value.object->end();
                    break;
                }

6780
                case basic_json::value_t::array:
N
Niels 已提交
6781 6782 6783 6784 6785 6786 6787
                {
                    m_it.array_iterator = m_object->m_value.array->end();
                    break;
                }

                default:
                {
6788
                    m_it.primitive_iterator.set_end();
N
Niels 已提交
6789 6790 6791 6792 6793
                    break;
                }
            }
        }

N
Niels 已提交
6794
      public:
N
Niels 已提交
6795 6796 6797 6798
        /*!
        @brief return a reference to the value pointed to by the iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
6799
        reference operator*() const
N
Niels 已提交
6800
        {
N
Niels 已提交
6801 6802
            assert(m_object != nullptr);

N
Niels 已提交
6803 6804
            switch (m_object->m_type)
            {
6805
                case basic_json::value_t::object:
N
Niels 已提交
6806
                {
N
Niels 已提交
6807
                    assert(m_it.object_iterator != m_object->m_value.object->end());
N
Niels 已提交
6808 6809 6810
                    return m_it.object_iterator->second;
                }

6811
                case basic_json::value_t::array:
N
Niels 已提交
6812
                {
N
Niels 已提交
6813
                    assert(m_it.array_iterator != m_object->m_value.array->end());
N
Niels 已提交
6814 6815 6816
                    return *m_it.array_iterator;
                }

6817
                case basic_json::value_t::null:
N
Niels 已提交
6818 6819 6820 6821 6822 6823
                {
                    throw std::out_of_range("cannot get value");
                }

                default:
                {
6824
                    if (m_it.primitive_iterator.is_begin())
N
Niels 已提交
6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835
                    {
                        return *m_object;
                    }
                    else
                    {
                        throw std::out_of_range("cannot get value");
                    }
                }
            }
        }

N
Niels 已提交
6836 6837 6838 6839
        /*!
        @brief dereference the iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
6840
        pointer operator->() const
N
Niels 已提交
6841
        {
N
Niels 已提交
6842 6843
            assert(m_object != nullptr);

N
Niels 已提交
6844 6845
            switch (m_object->m_type)
            {
6846
                case basic_json::value_t::object:
N
Niels 已提交
6847
                {
N
Niels 已提交
6848
                    assert(m_it.object_iterator != m_object->m_value.object->end());
N
Niels 已提交
6849 6850 6851
                    return &(m_it.object_iterator->second);
                }

6852
                case basic_json::value_t::array:
N
Niels 已提交
6853
                {
N
Niels 已提交
6854
                    assert(m_it.array_iterator != m_object->m_value.array->end());
N
Niels 已提交
6855 6856 6857 6858 6859
                    return &*m_it.array_iterator;
                }

                default:
                {
6860
                    if (m_it.primitive_iterator.is_begin())
N
Niels 已提交
6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871
                    {
                        return m_object;
                    }
                    else
                    {
                        throw std::out_of_range("cannot get value");
                    }
                }
            }
        }

N
Niels 已提交
6872 6873 6874 6875
        /*!
        @brief post-increment (it++)
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
6876
        const_iterator operator++(int)
N
Niels 已提交
6877
        {
N
Niels 已提交
6878
            auto result = *this;
N
Niels 已提交
6879
            ++(*this);
N
Niels 已提交
6880 6881 6882
            return result;
        }

N
Niels 已提交
6883 6884 6885 6886
        /*!
        @brief pre-increment (++it)
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
6887
        const_iterator& operator++()
N
Niels 已提交
6888
        {
N
Niels 已提交
6889 6890
            assert(m_object != nullptr);

N
Niels 已提交
6891 6892
            switch (m_object->m_type)
            {
6893
                case basic_json::value_t::object:
N
Niels 已提交
6894
                {
N
Niels 已提交
6895
                    std::advance(m_it.object_iterator, 1);
N
Niels 已提交
6896 6897 6898
                    break;
                }

6899
                case basic_json::value_t::array:
N
Niels 已提交
6900
                {
N
Niels 已提交
6901
                    std::advance(m_it.array_iterator, 1);
N
Niels 已提交
6902 6903 6904 6905 6906
                    break;
                }

                default:
                {
6907
                    ++m_it.primitive_iterator;
N
Niels 已提交
6908 6909 6910 6911 6912 6913 6914
                    break;
                }
            }

            return *this;
        }

N
Niels 已提交
6915 6916 6917 6918
        /*!
        @brief post-decrement (it--)
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
6919
        const_iterator operator--(int)
N
Niels 已提交
6920
        {
N
Niels 已提交
6921
            auto result = *this;
N
Niels 已提交
6922
            --(*this);
N
Niels 已提交
6923 6924 6925
            return result;
        }

N
Niels 已提交
6926 6927 6928 6929
        /*!
        @brief pre-decrement (--it)
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
6930
        const_iterator& operator--()
N
Niels 已提交
6931
        {
N
Niels 已提交
6932 6933
            assert(m_object != nullptr);

N
Niels 已提交
6934 6935
            switch (m_object->m_type)
            {
6936
                case basic_json::value_t::object:
N
Niels 已提交
6937
                {
N
Niels 已提交
6938
                    std::advance(m_it.object_iterator, -1);
N
Niels 已提交
6939 6940 6941
                    break;
                }

6942
                case basic_json::value_t::array:
N
Niels 已提交
6943
                {
N
Niels 已提交
6944
                    std::advance(m_it.array_iterator, -1);
N
Niels 已提交
6945 6946 6947 6948 6949
                    break;
                }

                default:
                {
6950
                    --m_it.primitive_iterator;
N
Niels 已提交
6951 6952 6953 6954 6955 6956 6957
                    break;
                }
            }

            return *this;
        }

N
Niels 已提交
6958 6959 6960 6961
        /*!
        @brief  comparison: equal
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
6962
        bool operator==(const const_iterator& other) const
N
Niels 已提交
6963
        {
N
Niels 已提交
6964 6965
            // if objects are not the same, the comparison is undefined
            if (m_object != other.m_object)
N
Niels 已提交
6966
            {
N
Niels 已提交
6967
                throw std::domain_error("cannot compare iterators of different containers");
N
Niels 已提交
6968 6969
            }

N
Niels 已提交
6970 6971
            assert(m_object != nullptr);

N
Niels 已提交
6972 6973
            switch (m_object->m_type)
            {
6974
                case basic_json::value_t::object:
N
Niels 已提交
6975 6976 6977 6978
                {
                    return (m_it.object_iterator == other.m_it.object_iterator);
                }

6979
                case basic_json::value_t::array:
N
Niels 已提交
6980 6981 6982 6983 6984 6985
                {
                    return (m_it.array_iterator == other.m_it.array_iterator);
                }

                default:
                {
6986
                    return (m_it.primitive_iterator == other.m_it.primitive_iterator);
N
Niels 已提交
6987 6988 6989 6990
                }
            }
        }

N
Niels 已提交
6991 6992 6993 6994
        /*!
        @brief  comparison: not equal
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
6995
        bool operator!=(const const_iterator& other) const
N
Niels 已提交
6996 6997 6998 6999
        {
            return not operator==(other);
        }

N
Niels 已提交
7000 7001 7002 7003
        /*!
        @brief  comparison: smaller
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7004
        bool operator<(const const_iterator& other) const
N
Niels 已提交
7005 7006 7007 7008 7009 7010 7011
        {
            // 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 已提交
7012 7013
            assert(m_object != nullptr);

N
Niels 已提交
7014 7015
            switch (m_object->m_type)
            {
7016
                case basic_json::value_t::object:
N
Niels 已提交
7017
                {
N
Niels 已提交
7018
                    throw std::domain_error("cannot compare order of object iterators");
N
Niels 已提交
7019 7020
                }

7021
                case basic_json::value_t::array:
N
Niels 已提交
7022 7023 7024 7025 7026 7027
                {
                    return (m_it.array_iterator < other.m_it.array_iterator);
                }

                default:
                {
7028
                    return (m_it.primitive_iterator < other.m_it.primitive_iterator);
N
Niels 已提交
7029 7030 7031 7032
                }
            }
        }

N
Niels 已提交
7033 7034 7035 7036
        /*!
        @brief  comparison: less than or equal
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7037
        bool operator<=(const const_iterator& other) const
N
Niels 已提交
7038 7039 7040 7041
        {
            return not other.operator < (*this);
        }

N
Niels 已提交
7042 7043 7044 7045
        /*!
        @brief  comparison: greater than
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7046
        bool operator>(const const_iterator& other) const
N
Niels 已提交
7047 7048 7049 7050
        {
            return not operator<=(other);
        }

N
Niels 已提交
7051 7052 7053 7054
        /*!
        @brief  comparison: greater than or equal
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7055
        bool operator>=(const const_iterator& other) const
N
Niels 已提交
7056 7057 7058 7059
        {
            return not operator<(other);
        }

N
Niels 已提交
7060 7061 7062 7063
        /*!
        @brief  add to iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7064
        const_iterator& operator+=(difference_type i)
N
Niels 已提交
7065
        {
N
Niels 已提交
7066 7067
            assert(m_object != nullptr);

N
Niels 已提交
7068 7069
            switch (m_object->m_type)
            {
7070
                case basic_json::value_t::object:
N
Niels 已提交
7071
                {
N
Niels 已提交
7072
                    throw std::domain_error("cannot use offsets with object iterators");
N
Niels 已提交
7073 7074
                }

7075
                case basic_json::value_t::array:
N
Niels 已提交
7076
                {
N
Niels 已提交
7077
                    std::advance(m_it.array_iterator, i);
N
Niels 已提交
7078 7079 7080 7081 7082
                    break;
                }

                default:
                {
7083
                    m_it.primitive_iterator += i;
N
Niels 已提交
7084 7085 7086 7087 7088 7089 7090
                    break;
                }
            }

            return *this;
        }

N
Niels 已提交
7091 7092 7093 7094
        /*!
        @brief  subtract from iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7095
        const_iterator& operator-=(difference_type i)
N
Niels 已提交
7096 7097 7098 7099
        {
            return operator+=(-i);
        }

N
Niels 已提交
7100 7101 7102 7103
        /*!
        @brief  add to iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7104
        const_iterator operator+(difference_type i)
N
Niels 已提交
7105 7106 7107 7108 7109 7110
        {
            auto result = *this;
            result += i;
            return result;
        }

N
Niels 已提交
7111 7112 7113 7114
        /*!
        @brief  subtract from iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7115
        const_iterator operator-(difference_type i)
N
Niels 已提交
7116 7117 7118 7119 7120 7121
        {
            auto result = *this;
            result -= i;
            return result;
        }

N
Niels 已提交
7122 7123 7124 7125
        /*!
        @brief  return difference
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7126
        difference_type operator-(const const_iterator& other) const
N
Niels 已提交
7127
        {
N
Niels 已提交
7128 7129
            assert(m_object != nullptr);

N
Niels 已提交
7130 7131
            switch (m_object->m_type)
            {
7132
                case basic_json::value_t::object:
N
Niels 已提交
7133
                {
N
Niels 已提交
7134
                    throw std::domain_error("cannot use offsets with object iterators");
N
Niels 已提交
7135 7136
                }

7137
                case basic_json::value_t::array:
N
Niels 已提交
7138 7139 7140 7141 7142 7143
                {
                    return m_it.array_iterator - other.m_it.array_iterator;
                }

                default:
                {
7144
                    return m_it.primitive_iterator - other.m_it.primitive_iterator;
N
Niels 已提交
7145 7146 7147 7148
                }
            }
        }

N
Niels 已提交
7149 7150 7151 7152
        /*!
        @brief  access to successor
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7153
        reference operator[](difference_type n) const
N
Niels 已提交
7154
        {
N
Niels 已提交
7155 7156
            assert(m_object != nullptr);

N
Niels 已提交
7157 7158
            switch (m_object->m_type)
            {
7159
                case basic_json::value_t::object:
N
Niels 已提交
7160 7161 7162 7163
                {
                    throw std::domain_error("cannot use operator[] for object iterators");
                }

7164
                case basic_json::value_t::array:
N
Niels 已提交
7165
                {
N
Niels 已提交
7166
                    return *std::next(m_it.array_iterator, n);
N
Niels 已提交
7167 7168
                }

7169
                case basic_json::value_t::null:
N
Niels 已提交
7170 7171 7172 7173 7174 7175
                {
                    throw std::out_of_range("cannot get value");
                }

                default:
                {
7176
                    if (m_it.primitive_iterator == -n)
N
Niels 已提交
7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187
                    {
                        return *m_object;
                    }
                    else
                    {
                        throw std::out_of_range("cannot get value");
                    }
                }
            }
        }

N
Niels 已提交
7188 7189 7190 7191
        /*!
        @brief  return the key of an object iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7192
        typename object_t::key_type key() const
N
Niels 已提交
7193
        {
N
Niels 已提交
7194
            assert(m_object != nullptr);
N
Niels 已提交
7195

7196 7197 7198 7199 7200 7201 7202
            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 已提交
7203 7204 7205
            }
        }

N
Niels 已提交
7206 7207 7208 7209
        /*!
        @brief  return the value of an iterator
        @pre The iterator is initialized; i.e. `m_object != nullptr`.
        */
N
Niels 已提交
7210
        reference value() const
N
Niels 已提交
7211 7212 7213 7214
        {
            return operator*();
        }

N
Niels 已提交
7215 7216 7217 7218
      private:
        /// associated JSON instance
        pointer m_object = nullptr;
        /// the actual iterator of the associated instance
N
Niels 已提交
7219
        internal_iterator m_it = internal_iterator();
N
Niels 已提交
7220 7221
    };

N
Niels 已提交
7222 7223 7224 7225 7226 7227 7228 7229 7230
    /*!
    @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 已提交
7231

N
Niels 已提交
7232
    @since version 1.0.0
N
Niels 已提交
7233
    */
N
Niels 已提交
7234
    class iterator : public const_iterator
N
Niels 已提交
7235 7236
    {
      public:
N
Niels 已提交
7237 7238 7239
        using base_iterator = const_iterator;
        using pointer = typename basic_json::pointer;
        using reference = typename basic_json::reference;
N
Niels 已提交
7240

7241
        /// default constructor
N
Niels 已提交
7242
        iterator() = default;
7243

N
Niels 已提交
7244
        /// constructor for a given JSON instance
N
Niels 已提交
7245
        explicit iterator(pointer object) noexcept
N
cleanup  
Niels 已提交
7246
            : base_iterator(object)
N
Niels 已提交
7247
        {}
N
Niels 已提交
7248

N
Niels 已提交
7249
        /// copy constructor
N
Niels 已提交
7250 7251
        iterator(const iterator& other) noexcept
            : base_iterator(other)
N
Niels 已提交
7252 7253
        {}

N
Niels 已提交
7254
        /// copy assignment
N
Niels 已提交
7255
        iterator& operator=(iterator other) noexcept(
N
Niels 已提交
7256 7257
            std::is_nothrow_move_constructible<pointer>::value and
            std::is_nothrow_move_assignable<pointer>::value and
N
Niels 已提交
7258 7259
            std::is_nothrow_move_constructible<internal_iterator>::value and
            std::is_nothrow_move_assignable<internal_iterator>::value
N
Niels 已提交
7260 7261
        )
        {
N
Niels 已提交
7262
            base_iterator::operator=(other);
N
Niels 已提交
7263 7264 7265
            return *this;
        }

N
Niels 已提交
7266
        /// return a reference to the value pointed to by the iterator
7267
        reference operator*() const
N
Niels 已提交
7268
        {
N
Niels 已提交
7269 7270
            return const_cast<reference>(base_iterator::operator*());
        }
N
Niels 已提交
7271

N
Niels 已提交
7272
        /// dereference the iterator
7273
        pointer operator->() const
N
Niels 已提交
7274 7275 7276
        {
            return const_cast<pointer>(base_iterator::operator->());
        }
N
Niels 已提交
7277

N
Niels 已提交
7278 7279 7280 7281 7282 7283 7284
        /// post-increment (it++)
        iterator operator++(int)
        {
            iterator result = *this;
            base_iterator::operator++();
            return result;
        }
N
Niels 已提交
7285

N
Niels 已提交
7286 7287 7288 7289 7290
        /// pre-increment (++it)
        iterator& operator++()
        {
            base_iterator::operator++();
            return *this;
N
Niels 已提交
7291 7292
        }

N
Niels 已提交
7293 7294
        /// post-decrement (it--)
        iterator operator--(int)
N
Niels 已提交
7295
        {
N
Niels 已提交
7296 7297 7298 7299
            iterator result = *this;
            base_iterator::operator--();
            return result;
        }
N
Niels 已提交
7300

N
Niels 已提交
7301 7302 7303 7304 7305 7306
        /// pre-decrement (--it)
        iterator& operator--()
        {
            base_iterator::operator--();
            return *this;
        }
N
Niels 已提交
7307 7308

        /// add to iterator
N
Niels 已提交
7309
        iterator& operator+=(difference_type i)
N
Niels 已提交
7310
        {
N
Niels 已提交
7311
            base_iterator::operator+=(i);
N
Niels 已提交
7312 7313 7314 7315
            return *this;
        }

        /// subtract from iterator
N
Niels 已提交
7316
        iterator& operator-=(difference_type i)
N
Niels 已提交
7317
        {
N
Niels 已提交
7318 7319
            base_iterator::operator-=(i);
            return *this;
N
Niels 已提交
7320 7321 7322
        }

        /// add to iterator
N
Niels 已提交
7323
        iterator operator+(difference_type i)
N
Niels 已提交
7324 7325 7326 7327 7328 7329 7330
        {
            auto result = *this;
            result += i;
            return result;
        }

        /// subtract from iterator
N
Niels 已提交
7331
        iterator operator-(difference_type i)
N
Niels 已提交
7332 7333 7334 7335 7336 7337
        {
            auto result = *this;
            result -= i;
            return result;
        }

N
Niels 已提交
7338
        /// return difference
N
Niels 已提交
7339
        difference_type operator-(const iterator& other) const
N
Niels 已提交
7340
        {
N
Niels 已提交
7341
            return base_iterator::operator-(other);
N
Niels 已提交
7342 7343 7344
        }

        /// access to successor
N
Niels 已提交
7345
        reference operator[](difference_type n) const
N
Niels 已提交
7346
        {
N
Niels 已提交
7347
            return const_cast<reference>(base_iterator::operator[](n));
N
Niels 已提交
7348 7349
        }

7350
        /// return the value of an iterator
N
Niels 已提交
7351
        reference value() const
N
Niels 已提交
7352
        {
N
Niels 已提交
7353
            return const_cast<reference>(base_iterator::value());
N
Niels 已提交
7354
        }
N
Niels 已提交
7355 7356
    };

N
Niels 已提交
7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370
    /*!
    @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 已提交
7371

N
Niels 已提交
7372
    @since version 1.0.0
N
Niels 已提交
7373
    */
N
Niels 已提交
7374 7375
    template<typename Base>
    class json_reverse_iterator : public std::reverse_iterator<Base>
7376 7377
    {
      public:
7378
        /// shortcut to the reverse iterator adaptor
N
Niels 已提交
7379
        using base_iterator = std::reverse_iterator<Base>;
N
Niels 已提交
7380
        /// the reference type for the pointed-to element
N
Niels 已提交
7381
        using reference = typename Base::reference;
7382

7383
        /// create reverse iterator from iterator
N
Niels 已提交
7384
        json_reverse_iterator(const typename base_iterator::iterator_type& it) noexcept
N
cleanup  
Niels 已提交
7385 7386
            : base_iterator(it)
        {}
7387 7388

        /// create reverse iterator from base class
N
Niels 已提交
7389
        json_reverse_iterator(const base_iterator& it) noexcept
N
cleanup  
Niels 已提交
7390 7391
            : base_iterator(it)
        {}
7392 7393

        /// post-increment (it++)
N
Niels 已提交
7394
        json_reverse_iterator operator++(int)
7395 7396 7397 7398 7399
        {
            return base_iterator::operator++(1);
        }

        /// pre-increment (++it)
N
Niels 已提交
7400
        json_reverse_iterator& operator++()
7401 7402 7403 7404 7405 7406
        {
            base_iterator::operator++();
            return *this;
        }

        /// post-decrement (it--)
N
Niels 已提交
7407
        json_reverse_iterator operator--(int)
7408 7409 7410 7411 7412
        {
            return base_iterator::operator--(1);
        }

        /// pre-decrement (--it)
N
Niels 已提交
7413
        json_reverse_iterator& operator--()
7414 7415 7416 7417 7418 7419
        {
            base_iterator::operator--();
            return *this;
        }

        /// add to iterator
N
Niels 已提交
7420
        json_reverse_iterator& operator+=(difference_type i)
7421 7422 7423 7424 7425 7426
        {
            base_iterator::operator+=(i);
            return *this;
        }

        /// add to iterator
N
Niels 已提交
7427
        json_reverse_iterator operator+(difference_type i) const
7428 7429 7430 7431 7432 7433 7434
        {
            auto result = *this;
            result += i;
            return result;
        }

        /// subtract from iterator
N
Niels 已提交
7435
        json_reverse_iterator operator-(difference_type i) const
7436 7437 7438 7439 7440 7441 7442
        {
            auto result = *this;
            result -= i;
            return result;
        }

        /// return difference
N
Niels 已提交
7443
        difference_type operator-(const json_reverse_iterator& other) const
7444 7445 7446 7447 7448 7449 7450 7451 7452
        {
            return this->base() - other.base();
        }

        /// access to successor
        reference operator[](difference_type n) const
        {
            return *(this->operator+(n));
        }
N
Niels 已提交
7453

7454
        /// return the key of an object iterator
N
Niels 已提交
7455
        typename object_t::key_type key() const
7456
        {
N
Niels 已提交
7457 7458
            auto it = --this->base();
            return it.key();
7459 7460 7461
        }

        /// return the value of an iterator
N
Niels 已提交
7462
        reference value() const
7463
        {
N
Niels 已提交
7464 7465
            auto it = --this->base();
            return it.operator * ();
7466 7467 7468
        }
    };

N
Niels 已提交
7469

N
Niels 已提交
7470
  private:
N
Niels 已提交
7471 7472 7473
    //////////////////////
    // lexer and parser //
    //////////////////////
N
Niels 已提交
7474

N
Niels 已提交
7475 7476 7477 7478
    /*!
    @brief lexical analysis

    This class organizes the lexical analysis during JSON deserialization. The
N
Niels 已提交
7479 7480
    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 已提交
7481
    */
N
Niels 已提交
7482
    class lexer
N
Niels 已提交
7483
    {
N
Niels 已提交
7484
      public:
N
Niels 已提交
7485 7486 7487
        /// token types for the parser
        enum class token_type
        {
N
Niels 已提交
7488
            uninitialized,   ///< indicating the scanner is uninitialized
N
Niels 已提交
7489 7490 7491
            literal_true,    ///< the `true` literal
            literal_false,   ///< the `false` literal
            literal_null,    ///< the `null` literal
N
Niels 已提交
7492 7493
            value_string,    ///< a string -- use get_string() for actual value
            value_number,    ///< a number -- use get_number() for actual value
N
Niels 已提交
7494 7495 7496 7497 7498 7499
            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 已提交
7500 7501
            parse_error,     ///< indicating a parse error
            end_of_input     ///< indicating the end of the input buffer
N
Niels 已提交
7502 7503
        };

N
Niels 已提交
7504
        /// the char type to use in the lexer
N
Niels 已提交
7505
        using lexer_char_t = unsigned char;
N
Niels 已提交
7506

N
Niels 已提交
7507
        /// constructor with a given buffer
N
Niels 已提交
7508
        explicit lexer(const string_t& s) noexcept
N
Niels 已提交
7509
            : m_stream(nullptr), m_buffer(s)
N
Niels 已提交
7510
        {
7511
            m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str());
N
Niels 已提交
7512
            assert(m_content != nullptr);
N
Niels 已提交
7513
            m_start = m_cursor = m_content;
N
Niels 已提交
7514
            m_limit = m_content + s.size();
N
Niels 已提交
7515
        }
N
Niels 已提交
7516 7517

        /// constructor with a given stream
N
Niels 已提交
7518
        explicit lexer(std::istream* s) noexcept
N
Niels 已提交
7519
            : m_stream(s), m_buffer()
N
Niels 已提交
7520
        {
N
Niels 已提交
7521
            assert(m_stream != nullptr);
N
Niels 已提交
7522
            std::getline(*m_stream, m_buffer);
N
Niels 已提交
7523
            m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str());
N
Niels 已提交
7524
            assert(m_content != nullptr);
N
Niels 已提交
7525 7526 7527
            m_start = m_cursor = m_content;
            m_limit = m_content + m_buffer.size();
        }
N
Niels 已提交
7528

N
Niels 已提交
7529
        /// default constructor
N
Niels 已提交
7530
        lexer() = default;
N
Niels 已提交
7531

N
Niels 已提交
7532
        // switch off unwanted functions
N
Niels 已提交
7533 7534 7535
        lexer(const lexer&) = delete;
        lexer operator=(const lexer&) = delete;

N
Niels 已提交
7536
        /*!
N
Niels 已提交
7537 7538 7539 7540 7541 7542
        @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 已提交
7543

N
Niels 已提交
7544 7545
        @param[in] codepoint1  the code point (can be high surrogate)
        @param[in] codepoint2  the code point (can be low surrogate or 0)
N
Niels 已提交
7546

N
Niels 已提交
7547 7548
        @return string representation of the code point; the length of the
        result string is between 1 and 4 characters.
N
Niels 已提交
7549

N
Niels 已提交
7550
        @throw std::out_of_range if code point is > 0x10ffff; example: `"code
N
Niels 已提交
7551
        points above 0x10FFFF are invalid"`
N
Niels 已提交
7552 7553
        @throw std::invalid_argument if the low surrogate is invalid; example:
        `""missing or wrong low surrogate""`
N
Niels 已提交
7554

N
Niels 已提交
7555 7556
        @complexity Constant.

N
Niels 已提交
7557 7558
        @see <http://en.wikipedia.org/wiki/UTF-8#Sample_code>
        */
N
Niels 已提交
7559 7560
        static string_t to_unicode(const std::size_t codepoint1,
                                   const std::size_t codepoint2 = 0)
N
Niels 已提交
7561
        {
N
Niels 已提交
7562
            // calculate the code point from the given code points
N
Niels 已提交
7563
            std::size_t codepoint = codepoint1;
N
Niels 已提交
7564 7565

            // check if codepoint1 is a high surrogate
N
Niels 已提交
7566 7567
            if (codepoint1 >= 0xD800 and codepoint1 <= 0xDBFF)
            {
N
Niels 已提交
7568
                // check if codepoint2 is a low surrogate
N
Niels 已提交
7569 7570 7571 7572 7573 7574 7575 7576
                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 已提交
7577
                        // in the result so we have to subtract with:
N
Niels 已提交
7578 7579 7580 7581 7582 7583 7584 7585 7586
                        // (0xD800 << 10) + DC00 - 0x10000 = 0x35FDC00
                        - 0x35FDC00;
                }
                else
                {
                    throw std::invalid_argument("missing or wrong low surrogate");
                }
            }

N
Niels 已提交
7587 7588
            string_t result;

N
Niels 已提交
7589
            if (codepoint < 0x80)
N
Niels 已提交
7590
            {
N
Niels 已提交
7591
                // 1-byte characters: 0xxxxxxx (ASCII)
N
Niels 已提交
7592
                result.append(1, static_cast<typename string_t::value_type>(codepoint));
N
Niels 已提交
7593 7594 7595 7596
            }
            else if (codepoint <= 0x7ff)
            {
                // 2-byte characters: 110xxxxx 10xxxxxx
N
Niels 已提交
7597 7598
                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 已提交
7599 7600 7601 7602
            }
            else if (codepoint <= 0xffff)
            {
                // 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx
N
Niels 已提交
7603 7604 7605
                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 已提交
7606 7607 7608 7609
            }
            else if (codepoint <= 0x10ffff)
            {
                // 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
N
Niels 已提交
7610 7611 7612 7613
                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 已提交
7614 7615 7616
            }
            else
            {
N
Niels 已提交
7617
                throw std::out_of_range("code points above 0x10FFFF are invalid");
N
Niels 已提交
7618 7619 7620 7621 7622
            }

            return result;
        }

7623
        /// return name of values of type token_type (only used for errors)
N
Niels 已提交
7624
        static std::string token_type_name(const token_type t)
N
cleanup  
Niels 已提交
7625 7626 7627
        {
            switch (t)
            {
7628
                case token_type::uninitialized:
N
cleanup  
Niels 已提交
7629
                    return "<uninitialized>";
7630
                case token_type::literal_true:
N
cleanup  
Niels 已提交
7631
                    return "true literal";
7632
                case token_type::literal_false:
N
cleanup  
Niels 已提交
7633
                    return "false literal";
7634
                case token_type::literal_null:
N
cleanup  
Niels 已提交
7635
                    return "null literal";
7636
                case token_type::value_string:
N
cleanup  
Niels 已提交
7637
                    return "string literal";
7638
                case token_type::value_number:
N
cleanup  
Niels 已提交
7639
                    return "number literal";
7640
                case token_type::begin_array:
N
Niels 已提交
7641
                    return "'['";
7642
                case token_type::begin_object:
N
Niels 已提交
7643
                    return "'{'";
7644
                case token_type::end_array:
N
Niels 已提交
7645
                    return "']'";
7646
                case token_type::end_object:
N
Niels 已提交
7647
                    return "'}'";
7648
                case token_type::name_separator:
N
Niels 已提交
7649
                    return "':'";
7650
                case token_type::value_separator:
N
Niels 已提交
7651
                    return "','";
7652
                case token_type::parse_error:
N
Niels 已提交
7653
                    return "<parse error>";
7654
                case token_type::end_of_input:
N
Niels 已提交
7655
                    return "end of input";
N
Niels 已提交
7656 7657 7658 7659 7660
                default:
                {
                    // catch non-enum values
                    return "unknown token"; // LCOV_EXCL_LINE
                }
N
cleanup  
Niels 已提交
7661 7662 7663
            }
        }

N
fixes  
Niels 已提交
7664 7665
        /*!
        This function implements a scanner for JSON. It is specified using
7666
        regular expressions that try to follow RFC 7159 as close as possible.
7667 7668 7669 7670
        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 已提交
7671 7672

        @return the class of the next token read from the buffer
N
Niels 已提交
7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683

        @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 已提交
7684
        */
N
Niels 已提交
7685
        token_type scan() noexcept
N
Niels 已提交
7686
        {
N
Niels 已提交
7687 7688 7689 7690
            while (true)
            {
                // pointer for backtracking information
                m_marker = nullptr;
N
Niels 已提交
7691

N
Niels 已提交
7692 7693 7694
                // remember the begin of the token
                m_start = m_cursor;
                assert(m_start != nullptr);
N
Niels 已提交
7695

N
Niels 已提交
7696

N
Niels 已提交
7697
                {
N
Niels 已提交
7698 7699 7700 7701 7702 7703
                    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 已提交
7704 7705
                        0,   0,   0,   0,   0,   0,   0,   0,
                        0,   0,   0,   0,   0,   0,   0,   0,
N
Niels 已提交
7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740
                        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,
                        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, 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, 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, 128, 128, 128, 128, 128, 128, 128,
                        128, 128, 128, 128, 128, 128, 128, 128,
                        128, 128, 128, 128, 128, 128, 128, 128,
                    };
                    if ((m_limit - m_cursor) < 5)
                    {
                        yyfill();    // LCOV_EXCL_LINE;
                    }
                    yych = *m_cursor;
                    if (yybm[0 + yych] & 32)
N
Niels 已提交
7741
                    {
N
Niels 已提交
7742 7743 7744 7745 7746
                        goto basic_json_parser_6;
                    }
                    if (yych <= '\\')
                    {
                        if (yych <= '-')
N
Niels 已提交
7747
                        {
N
Niels 已提交
7748
                            if (yych <= '"')
N
Niels 已提交
7749
                            {
N
Niels 已提交
7750 7751 7752 7753 7754 7755 7756 7757 7758
                                if (yych <= 0x00)
                                {
                                    goto basic_json_parser_2;
                                }
                                if (yych <= '!')
                                {
                                    goto basic_json_parser_4;
                                }
                                goto basic_json_parser_9;
N
Niels 已提交
7759
                            }
N
Niels 已提交
7760
                            else
N
Niels 已提交
7761
                            {
N
Niels 已提交
7762 7763 7764 7765 7766 7767 7768 7769 7770
                                if (yych <= '+')
                                {
                                    goto basic_json_parser_4;
                                }
                                if (yych <= ',')
                                {
                                    goto basic_json_parser_10;
                                }
                                goto basic_json_parser_12;
N
Niels 已提交
7771 7772 7773 7774
                            }
                        }
                        else
                        {
N
Niels 已提交
7775
                            if (yych <= '9')
N
Niels 已提交
7776
                            {
N
Niels 已提交
7777 7778 7779 7780 7781 7782 7783 7784 7785
                                if (yych <= '/')
                                {
                                    goto basic_json_parser_4;
                                }
                                if (yych <= '0')
                                {
                                    goto basic_json_parser_13;
                                }
                                goto basic_json_parser_15;
N
Niels 已提交
7786
                            }
N
Niels 已提交
7787
                            else
N
Niels 已提交
7788
                            {
N
Niels 已提交
7789 7790 7791 7792 7793 7794 7795 7796 7797
                                if (yych <= ':')
                                {
                                    goto basic_json_parser_17;
                                }
                                if (yych == '[')
                                {
                                    goto basic_json_parser_19;
                                }
                                goto basic_json_parser_4;
N
Niels 已提交
7798 7799 7800 7801 7802
                            }
                        }
                    }
                    else
                    {
N
Niels 已提交
7803
                        if (yych <= 't')
N
Niels 已提交
7804
                        {
N
Niels 已提交
7805
                            if (yych <= 'f')
N
Niels 已提交
7806
                            {
N
Niels 已提交
7807 7808 7809 7810 7811 7812 7813 7814 7815
                                if (yych <= ']')
                                {
                                    goto basic_json_parser_21;
                                }
                                if (yych <= 'e')
                                {
                                    goto basic_json_parser_4;
                                }
                                goto basic_json_parser_23;
N
Niels 已提交
7816
                            }
N
Niels 已提交
7817
                            else
N
Niels 已提交
7818
                            {
N
Niels 已提交
7819 7820 7821 7822 7823 7824 7825 7826 7827
                                if (yych == 'n')
                                {
                                    goto basic_json_parser_24;
                                }
                                if (yych <= 's')
                                {
                                    goto basic_json_parser_4;
                                }
                                goto basic_json_parser_25;
N
Niels 已提交
7828 7829 7830 7831
                            }
                        }
                        else
                        {
N
Niels 已提交
7832
                            if (yych <= '|')
N
Niels 已提交
7833
                            {
N
Niels 已提交
7834 7835 7836 7837 7838
                                if (yych == '{')
                                {
                                    goto basic_json_parser_26;
                                }
                                goto basic_json_parser_4;
N
Niels 已提交
7839
                            }
N
Niels 已提交
7840
                            else
N
Niels 已提交
7841
                            {
N
Niels 已提交
7842 7843 7844 7845 7846 7847 7848 7849 7850
                                if (yych <= '}')
                                {
                                    goto basic_json_parser_28;
                                }
                                if (yych == 0xEF)
                                {
                                    goto basic_json_parser_30;
                                }
                                goto basic_json_parser_4;
N
Niels 已提交
7851 7852
                            }
                        }
N
Niels 已提交
7853
                    }
N
Niels 已提交
7854 7855
basic_json_parser_2:
                    ++m_cursor;
N
Niels 已提交
7856
                    {
N
Niels 已提交
7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883
                        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)
                    {
                        yyfill();    // LCOV_EXCL_LINE;
                    }
                    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 已提交
7884
                    if (yych <= 0x1F)
N
Niels 已提交
7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 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 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041
                    {
                        goto basic_json_parser_5;
                    }
                    goto basic_json_parser_32;
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 == '.')
                        {
                            goto basic_json_parser_37;
                        }
                    }
                    else
                    {
                        if (yych <= 'E')
                        {
                            goto basic_json_parser_38;
                        }
                        if (yych == 'e')
                        {
                            goto basic_json_parser_38;
                        }
                    }
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)
                    {
                        yyfill();    // LCOV_EXCL_LINE;
                    }
                    yych = *m_cursor;
                    if (yybm[0 + yych] & 64)
                    {
                        goto basic_json_parser_15;
                    }
                    if (yych <= 'D')
                    {
                        if (yych == '.')
                        {
                            goto basic_json_parser_37;
                        }
                        goto basic_json_parser_14;
                    }
                    else
                    {
                        if (yych <= 'E')
                        {
                            goto basic_json_parser_38;
                        }
                        if (yych == 'e')
                        {
                            goto basic_json_parser_38;
                        }
                        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')
                    {
                        goto basic_json_parser_39;
                    }
                    goto basic_json_parser_5;
basic_json_parser_24:
                    yyaccept = 0;
                    yych = *(m_marker = ++m_cursor);
                    if (yych == 'u')
                    {
                        goto basic_json_parser_40;
                    }
                    goto basic_json_parser_5;
basic_json_parser_25:
                    yyaccept = 0;
                    yych = *(m_marker = ++m_cursor);
                    if (yych == 'r')
                    {
                        goto basic_json_parser_41;
                    }
                    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:
                    yyaccept = 0;
                    yych = *(m_marker = ++m_cursor);
                    if (yych == 0xBB)
                    {
                        goto basic_json_parser_42;
                    }
                    goto basic_json_parser_5;
basic_json_parser_31:
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
                        yyfill();    // LCOV_EXCL_LINE;
                    }
                    yych = *m_cursor;
basic_json_parser_32:
                    if (yybm[0 + yych] & 128)
                    {
                        goto basic_json_parser_31;
                    }
N
Niels 已提交
8042
                    if (yych <= 0x1F)
N
Niels 已提交
8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076
                    {
                        goto basic_json_parser_33;
                    }
                    if (yych <= '"')
                    {
                        goto basic_json_parser_34;
                    }
                    goto basic_json_parser_36;
basic_json_parser_33:
                    m_cursor = m_marker;
                    if (yyaccept == 0)
                    {
                        goto basic_json_parser_5;
                    }
                    else
                    {
                        goto basic_json_parser_14;
                    }
basic_json_parser_34:
                    ++m_cursor;
                    {
                        last_token_type = token_type::value_string;
                        break;
                    }
basic_json_parser_36:
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
                        yyfill();    // LCOV_EXCL_LINE;
                    }
                    yych = *m_cursor;
                    if (yych <= 'e')
                    {
                        if (yych <= '/')
N
Niels 已提交
8077
                        {
N
Niels 已提交
8078
                            if (yych == '"')
N
Niels 已提交
8079
                            {
N
Niels 已提交
8080
                                goto basic_json_parser_31;
N
Niels 已提交
8081
                            }
N
Niels 已提交
8082
                            if (yych <= '.')
N
Niels 已提交
8083
                            {
N
Niels 已提交
8084
                                goto basic_json_parser_33;
N
Niels 已提交
8085
                            }
N
Niels 已提交
8086
                            goto basic_json_parser_31;
N
Niels 已提交
8087 8088 8089
                        }
                        else
                        {
N
Niels 已提交
8090
                            if (yych <= '\\')
N
Niels 已提交
8091
                            {
N
Niels 已提交
8092 8093 8094 8095 8096
                                if (yych <= '[')
                                {
                                    goto basic_json_parser_33;
                                }
                                goto basic_json_parser_31;
N
Niels 已提交
8097
                            }
N
Niels 已提交
8098
                            else
N
Niels 已提交
8099
                            {
N
Niels 已提交
8100 8101 8102 8103 8104
                                if (yych == 'b')
                                {
                                    goto basic_json_parser_31;
                                }
                                goto basic_json_parser_33;
N
Niels 已提交
8105 8106 8107 8108 8109
                            }
                        }
                    }
                    else
                    {
N
Niels 已提交
8110
                        if (yych <= 'q')
N
Niels 已提交
8111
                        {
N
Niels 已提交
8112
                            if (yych <= 'f')
N
Niels 已提交
8113
                            {
N
Niels 已提交
8114
                                goto basic_json_parser_31;
N
Niels 已提交
8115
                            }
N
Niels 已提交
8116 8117 8118 8119 8120
                            if (yych == 'n')
                            {
                                goto basic_json_parser_31;
                            }
                            goto basic_json_parser_33;
N
Niels 已提交
8121 8122 8123
                        }
                        else
                        {
N
Niels 已提交
8124
                            if (yych <= 's')
N
Niels 已提交
8125
                            {
N
Niels 已提交
8126 8127 8128 8129 8130
                                if (yych <= 'r')
                                {
                                    goto basic_json_parser_31;
                                }
                                goto basic_json_parser_33;
N
Niels 已提交
8131
                            }
N
Niels 已提交
8132
                            else
N
Niels 已提交
8133
                            {
N
Niels 已提交
8134 8135 8136 8137 8138 8139 8140 8141 8142
                                if (yych <= 't')
                                {
                                    goto basic_json_parser_31;
                                }
                                if (yych <= 'u')
                                {
                                    goto basic_json_parser_43;
                                }
                                goto basic_json_parser_33;
N
Niels 已提交
8143 8144
                            }
                        }
N
Niels 已提交
8145
                    }
N
Niels 已提交
8146 8147 8148
basic_json_parser_37:
                    yych = *++m_cursor;
                    if (yych <= '/')
N
Niels 已提交
8149
                    {
N
Niels 已提交
8150
                        goto basic_json_parser_33;
N
Niels 已提交
8151
                    }
N
Niels 已提交
8152
                    if (yych <= '9')
N
Niels 已提交
8153
                    {
N
Niels 已提交
8154
                        goto basic_json_parser_44;
N
Niels 已提交
8155
                    }
N
Niels 已提交
8156 8157 8158 8159
                    goto basic_json_parser_33;
basic_json_parser_38:
                    yych = *++m_cursor;
                    if (yych <= ',')
N
Niels 已提交
8160
                    {
N
Niels 已提交
8161 8162 8163 8164 8165
                        if (yych == '+')
                        {
                            goto basic_json_parser_46;
                        }
                        goto basic_json_parser_33;
N
Niels 已提交
8166
                    }
N
Niels 已提交
8167
                    else
N
Niels 已提交
8168
                    {
N
Niels 已提交
8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181
                        if (yych <= '-')
                        {
                            goto basic_json_parser_46;
                        }
                        if (yych <= '/')
                        {
                            goto basic_json_parser_33;
                        }
                        if (yych <= '9')
                        {
                            goto basic_json_parser_47;
                        }
                        goto basic_json_parser_33;
N
Niels 已提交
8182
                    }
N
Niels 已提交
8183 8184 8185
basic_json_parser_39:
                    yych = *++m_cursor;
                    if (yych == 'l')
N
Niels 已提交
8186
                    {
N
Niels 已提交
8187
                        goto basic_json_parser_49;
N
Niels 已提交
8188
                    }
N
Niels 已提交
8189 8190 8191 8192
                    goto basic_json_parser_33;
basic_json_parser_40:
                    yych = *++m_cursor;
                    if (yych == 'l')
N
Niels 已提交
8193
                    {
N
Niels 已提交
8194
                        goto basic_json_parser_50;
N
Niels 已提交
8195
                    }
T
Trevor Welsby 已提交
8196
                    goto basic_json_parser_33;
N
Niels 已提交
8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218
basic_json_parser_41:
                    yych = *++m_cursor;
                    if (yych == 'u')
                    {
                        goto basic_json_parser_51;
                    }
                    goto basic_json_parser_33;
basic_json_parser_42:
                    yych = *++m_cursor;
                    if (yych == 0xBF)
                    {
                        goto basic_json_parser_52;
                    }
                    goto basic_json_parser_33;
basic_json_parser_43:
                    ++m_cursor;
                    if (m_limit <= m_cursor)
                    {
                        yyfill();    // LCOV_EXCL_LINE;
                    }
                    yych = *m_cursor;
                    if (yych <= '@')
N
Niels 已提交
8219
                    {
N
Niels 已提交
8220
                        if (yych <= '/')
N
Niels 已提交
8221
                        {
N
Niels 已提交
8222
                            goto basic_json_parser_33;
N
Niels 已提交
8223
                        }
N
Niels 已提交
8224
                        if (yych <= '9')
N
Niels 已提交
8225
                        {
N
Niels 已提交
8226
                            goto basic_json_parser_54;
N
Niels 已提交
8227
                        }
N
Niels 已提交
8228
                        goto basic_json_parser_33;
N
Niels 已提交
8229 8230 8231
                    }
                    else
                    {
N
Niels 已提交
8232
                        if (yych <= 'F')
N
Niels 已提交
8233
                        {
N
Niels 已提交
8234
                            goto basic_json_parser_54;
N
Niels 已提交
8235
                        }
N
Niels 已提交
8236
                        if (yych <= '`')
N
Niels 已提交
8237 8238 8239
                        {
                            goto basic_json_parser_33;
                        }
N
Niels 已提交
8240 8241 8242 8243 8244
                        if (yych <= 'f')
                        {
                            goto basic_json_parser_54;
                        }
                        goto basic_json_parser_33;
N
Niels 已提交
8245
                    }
N
Niels 已提交
8246 8247 8248 8249
basic_json_parser_44:
                    yyaccept = 1;
                    m_marker = ++m_cursor;
                    if ((m_limit - m_cursor) < 3)
N
Niels 已提交
8250
                    {
N
Niels 已提交
8251 8252 8253 8254 8255 8256
                        yyfill();    // LCOV_EXCL_LINE;
                    }
                    yych = *m_cursor;
                    if (yych <= 'D')
                    {
                        if (yych <= '/')
N
Niels 已提交
8257
                        {
N
Niels 已提交
8258
                            goto basic_json_parser_14;
N
Niels 已提交
8259
                        }
N
Niels 已提交
8260
                        if (yych <= '9')
N
Niels 已提交
8261
                        {
N
Niels 已提交
8262
                            goto basic_json_parser_44;
N
Niels 已提交
8263
                        }
N
Niels 已提交
8264
                        goto basic_json_parser_14;
N
Niels 已提交
8265 8266 8267
                    }
                    else
                    {
N
Niels 已提交
8268
                        if (yych <= 'E')
N
Niels 已提交
8269
                        {
N
Niels 已提交
8270
                            goto basic_json_parser_38;
N
Niels 已提交
8271
                        }
N
Niels 已提交
8272
                        if (yych == 'e')
N
Niels 已提交
8273
                        {
N
Niels 已提交
8274
                            goto basic_json_parser_38;
N
Niels 已提交
8275
                        }
N
Niels 已提交
8276
                        goto basic_json_parser_14;
N
Niels 已提交
8277
                    }
N
Niels 已提交
8278 8279
basic_json_parser_46:
                    yych = *++m_cursor;
N
Niels 已提交
8280 8281 8282 8283
                    if (yych <= '/')
                    {
                        goto basic_json_parser_33;
                    }
N
Niels 已提交
8284
                    if (yych >= ':')
N
Niels 已提交
8285 8286 8287
                    {
                        goto basic_json_parser_33;
                    }
N
Niels 已提交
8288 8289 8290
basic_json_parser_47:
                    ++m_cursor;
                    if (m_limit <= m_cursor)
N
Niels 已提交
8291
                    {
N
Niels 已提交
8292
                        yyfill();    // LCOV_EXCL_LINE;
N
Niels 已提交
8293
                    }
N
Niels 已提交
8294
                    yych = *m_cursor;
N
Niels 已提交
8295
                    if (yych <= '/')
N
Niels 已提交
8296
                    {
N
Niels 已提交
8297
                        goto basic_json_parser_14;
N
Niels 已提交
8298
                    }
N
Niels 已提交
8299
                    if (yych <= '9')
N
Niels 已提交
8300
                    {
N
Niels 已提交
8301
                        goto basic_json_parser_47;
N
Niels 已提交
8302
                    }
N
Niels 已提交
8303
                    goto basic_json_parser_14;
N
Niels 已提交
8304 8305 8306
basic_json_parser_49:
                    yych = *++m_cursor;
                    if (yych == 's')
N
Niels 已提交
8307
                    {
N
Niels 已提交
8308
                        goto basic_json_parser_55;
N
Niels 已提交
8309
                    }
N
Niels 已提交
8310 8311 8312 8313
                    goto basic_json_parser_33;
basic_json_parser_50:
                    yych = *++m_cursor;
                    if (yych == 'l')
N
Niels 已提交
8314
                    {
N
Niels 已提交
8315
                        goto basic_json_parser_56;
N
Niels 已提交
8316
                    }
N
Niels 已提交
8317
                    goto basic_json_parser_33;
N
Niels 已提交
8318
basic_json_parser_51:
N
Niels 已提交
8319 8320 8321 8322 8323 8324
                    yych = *++m_cursor;
                    if (yych == 'e')
                    {
                        goto basic_json_parser_58;
                    }
                    goto basic_json_parser_33;
N
Niels 已提交
8325
basic_json_parser_52:
N
Niels 已提交
8326
                    ++m_cursor;
N
Niels 已提交
8327
                    {
N
Niels 已提交
8328
                        continue;
N
Niels 已提交
8329
                    }
N
Niels 已提交
8330 8331 8332
basic_json_parser_54:
                    ++m_cursor;
                    if (m_limit <= m_cursor)
N
Niels 已提交
8333
                    {
N
Niels 已提交
8334
                        yyfill();    // LCOV_EXCL_LINE;
N
Niels 已提交
8335
                    }
N
Niels 已提交
8336 8337
                    yych = *m_cursor;
                    if (yych <= '@')
N
Niels 已提交
8338
                    {
N
Niels 已提交
8339 8340 8341 8342 8343 8344 8345 8346 8347
                        if (yych <= '/')
                        {
                            goto basic_json_parser_33;
                        }
                        if (yych <= '9')
                        {
                            goto basic_json_parser_60;
                        }
                        goto basic_json_parser_33;
N
Niels 已提交
8348
                    }
N
Niels 已提交
8349
                    else
N
Niels 已提交
8350
                    {
N
Niels 已提交
8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362
                        if (yych <= 'F')
                        {
                            goto basic_json_parser_60;
                        }
                        if (yych <= '`')
                        {
                            goto basic_json_parser_33;
                        }
                        if (yych <= 'f')
                        {
                            goto basic_json_parser_60;
                        }
N
Niels 已提交
8363
                        goto basic_json_parser_33;
N
Niels 已提交
8364
                    }
N
Niels 已提交
8365 8366 8367
basic_json_parser_55:
                    yych = *++m_cursor;
                    if (yych == 'e')
N
Niels 已提交
8368
                    {
N
Niels 已提交
8369
                        goto basic_json_parser_61;
N
Niels 已提交
8370 8371
                    }
                    goto basic_json_parser_33;
N
Niels 已提交
8372
basic_json_parser_56:
N
Niels 已提交
8373
                    ++m_cursor;
N
Niels 已提交
8374
                    {
N
Niels 已提交
8375 8376
                        last_token_type = token_type::literal_null;
                        break;
N
Niels 已提交
8377
                    }
N
Niels 已提交
8378 8379
basic_json_parser_58:
                    ++m_cursor;
N
Niels 已提交
8380
                    {
N
Niels 已提交
8381 8382
                        last_token_type = token_type::literal_true;
                        break;
N
Niels 已提交
8383
                    }
N
Niels 已提交
8384 8385 8386
basic_json_parser_60:
                    ++m_cursor;
                    if (m_limit <= m_cursor)
N
Niels 已提交
8387
                    {
N
Niels 已提交
8388
                        yyfill();    // LCOV_EXCL_LINE;
N
Niels 已提交
8389
                    }
N
Niels 已提交
8390 8391
                    yych = *m_cursor;
                    if (yych <= '@')
N
Niels 已提交
8392
                    {
N
Niels 已提交
8393 8394 8395 8396 8397 8398 8399 8400
                        if (yych <= '/')
                        {
                            goto basic_json_parser_33;
                        }
                        if (yych <= '9')
                        {
                            goto basic_json_parser_63;
                        }
N
Niels 已提交
8401 8402
                        goto basic_json_parser_33;
                    }
N
Niels 已提交
8403
                    else
N
Niels 已提交
8404
                    {
N
Niels 已提交
8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416
                        if (yych <= 'F')
                        {
                            goto basic_json_parser_63;
                        }
                        if (yych <= '`')
                        {
                            goto basic_json_parser_33;
                        }
                        if (yych <= 'f')
                        {
                            goto basic_json_parser_63;
                        }
N
Niels 已提交
8417 8418
                        goto basic_json_parser_33;
                    }
N
Niels 已提交
8419 8420
basic_json_parser_61:
                    ++m_cursor;
N
Niels 已提交
8421
                    {
N
Niels 已提交
8422 8423
                        last_token_type = token_type::literal_false;
                        break;
N
Niels 已提交
8424
                    }
N
Niels 已提交
8425 8426 8427
basic_json_parser_63:
                    ++m_cursor;
                    if (m_limit <= m_cursor)
N
Niels 已提交
8428
                    {
N
Niels 已提交
8429
                        yyfill();    // LCOV_EXCL_LINE;
N
Niels 已提交
8430
                    }
N
Niels 已提交
8431 8432
                    yych = *m_cursor;
                    if (yych <= '@')
N
Niels 已提交
8433
                    {
N
Niels 已提交
8434 8435 8436 8437 8438 8439 8440 8441
                        if (yych <= '/')
                        {
                            goto basic_json_parser_33;
                        }
                        if (yych <= '9')
                        {
                            goto basic_json_parser_31;
                        }
N
Niels 已提交
8442 8443
                        goto basic_json_parser_33;
                    }
N
Niels 已提交
8444
                    else
N
Niels 已提交
8445
                    {
N
Niels 已提交
8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458
                        if (yych <= 'F')
                        {
                            goto basic_json_parser_31;
                        }
                        if (yych <= '`')
                        {
                            goto basic_json_parser_33;
                        }
                        if (yych <= 'f')
                        {
                            goto basic_json_parser_31;
                        }
                        goto basic_json_parser_33;
N
Niels 已提交
8459
                    }
N
Niels 已提交
8460
                }
N
Niels 已提交
8461

N
Niels 已提交
8462
            }
N
Niels 已提交
8463

N
Niels 已提交
8464
            return last_token_type;
N
Niels 已提交
8465 8466 8467
        }

        /// append data from the stream to the internal buffer
N
Niels 已提交
8468
        void yyfill() noexcept
N
Niels 已提交
8469
        {
N
Niels 已提交
8470
            if (m_stream == nullptr or not * m_stream)
N
Niels 已提交
8471 8472 8473 8474
            {
                return;
            }

8475 8476 8477
            const auto offset_start = m_start - m_content;
            const auto offset_marker = m_marker - m_start;
            const auto offset_cursor = m_cursor - m_start;
N
Niels 已提交
8478 8479 8480

            m_buffer.erase(0, static_cast<size_t>(offset_start));
            std::string line;
N
Niels 已提交
8481
            assert(m_stream != nullptr);
N
Niels 已提交
8482
            std::getline(*m_stream, line);
N
Niels 已提交
8483
            m_buffer += "\n" + line; // add line with newline symbol
N
Niels 已提交
8484 8485

            m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str());
N
Niels 已提交
8486
            assert(m_content != nullptr);
N
Niels 已提交
8487 8488 8489 8490
            m_start  = m_content;
            m_marker = m_start + offset_marker;
            m_cursor = m_start + offset_cursor;
            m_limit  = m_start + m_buffer.size() - 1;
N
Niels 已提交
8491 8492
        }

N
Niels 已提交
8493
        /// return string representation of last read token
N
Niels 已提交
8494
        string_t get_token_string() const
N
Niels 已提交
8495
        {
N
Niels 已提交
8496
            assert(m_start != nullptr);
N
Niels 已提交
8497 8498
            return string_t(reinterpret_cast<typename string_t::const_pointer>(m_start),
                            static_cast<size_t>(m_cursor - m_start));
N
Niels 已提交
8499 8500 8501
        }

        /*!
N
Niels 已提交
8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512
        @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 已提交
8513 8514
           characters (e.g., `"\\n"` is replaced by `"\n"`), some are copied
           as is (e.g., `"\\\\"`). Furthermore, Unicode escapes of the shape
N
Niels 已提交
8515 8516
           `"\\uxxxx"` need special care. In this case, to_unicode takes care
           of the construction of the values.
N
Niels 已提交
8517
        2. Unescaped characters are copied as is.
N
Niels 已提交
8518

N
Niels 已提交
8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533
        @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 已提交
8534 8535 8536
        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 已提交
8537 8538 8539 8540 8541 8542 8543

        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 已提交
8544 8545
        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 已提交
8546
        precondition, we x <= 0, meaning that the loop condition holds
N
Niels 已提交
8547 8548 8549 8550 8551 8552
        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 已提交
8553

N
Niels 已提交
8554 8555
        @return string value of current token without opening and closing
        quotes
N
Niels 已提交
8556
        @throw std::out_of_range if to_unicode fails
N
Niels 已提交
8557
        */
N
Niels 已提交
8558
        string_t get_string() const
N
Niels 已提交
8559
        {
N
Niels 已提交
8560 8561
            assert(m_cursor - m_start >= 2);

N
Niels 已提交
8562
            string_t result;
N
Niels 已提交
8563 8564 8565
            result.reserve(static_cast<size_t>(m_cursor - m_start - 2));

            // iterate the result between the quotes
N
Niels 已提交
8566
            for (const lexer_char_t* i = m_start + 1; i < m_cursor - 1; ++i)
N
Niels 已提交
8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603
            {
                // process escaped characters
                if (*i == '\\')
                {
                    // 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 已提交
8604
                            result += "\\";
N
Niels 已提交
8605 8606 8607 8608
                            break;
                        }
                        case '/':
                        {
N
Niels 已提交
8609
                            result += "/";
N
Niels 已提交
8610 8611 8612 8613
                            break;
                        }
                        case '"':
                        {
N
Niels 已提交
8614
                            result += "\"";
N
Niels 已提交
8615 8616 8617 8618 8619 8620
                            break;
                        }

                        // unicode
                        case 'u':
                        {
N
Niels 已提交
8621
                            // get code xxxx from uxxxx
N
Niels 已提交
8622 8623
                            auto codepoint = std::strtoul(std::string(reinterpret_cast<typename string_t::const_pointer>(i + 1),
                                                          4).c_str(), nullptr, 16);
N
Niels 已提交
8624

N
Niels 已提交
8625
                            // check if codepoint is a high surrogate
N
Niels 已提交
8626 8627
                            if (codepoint >= 0xD800 and codepoint <= 0xDBFF)
                            {
N
Niels 已提交
8628
                                // make sure there is a subsequent unicode
N
Niels 已提交
8629
                                if ((i + 6 >= m_limit) or * (i + 5) != '\\' or * (i + 6) != 'u')
N
Niels 已提交
8630 8631 8632 8633
                                {
                                    throw std::invalid_argument("missing low surrogate");
                                }

N
Niels 已提交
8634
                                // get code yyyy from uxxxx\uyyyy
N
Niels 已提交
8635 8636
                                auto codepoint2 = std::strtoul(std::string(reinterpret_cast<typename string_t::const_pointer>
                                                               (i + 7), 4).c_str(), nullptr, 16);
N
Niels 已提交
8637
                                result += to_unicode(codepoint, codepoint2);
8638 8639
                                // skip the next 10 characters (xxxx\uyyyy)
                                i += 10;
N
Niels 已提交
8640 8641 8642 8643 8644 8645 8646 8647
                            }
                            else
                            {
                                // add unicode character(s)
                                result += to_unicode(codepoint);
                                // skip the next four characters (xxxx)
                                i += 4;
                            }
N
Niels 已提交
8648 8649 8650 8651 8652 8653 8654 8655
                            break;
                        }
                    }
                }
                else
                {
                    // all other characters are just copied to the end of the
                    // string
N
Niels 已提交
8656
                    result.append(1, static_cast<typename string_t::value_type>(*i));
N
Niels 已提交
8657 8658 8659 8660
                }
            }

            return result;
N
Niels 已提交
8661 8662
        }

8663 8664 8665 8666
        /*!
        @brief parse floating point number

        This function (and its overloads) serves to select the most approprate
8667
        standard floating point number parsing function based on the type
N
Niels 已提交
8668 8669
        supplied via the first parameter.  Set this to @a
        static_cast<number_float_t*>(nullptr).
8670

N
Niels 已提交
8671
        @param[in] type  the @ref number_float_t in use
8672

N
Niels 已提交
8673 8674
        @param[in,out] endptr recieves a pointer to the first character after
        the number
8675 8676 8677

        @return the floating point number
        */
8678
        long double str_to_float_t(long double* /* type */, char** endptr) const
8679 8680 8681 8682
        {
            return std::strtold(reinterpret_cast<typename string_t::const_pointer>(m_start), endptr);
        }

8683 8684 8685 8686 8687
        /*!
        @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 已提交
8688 8689
        supplied via the first parameter.  Set this to @a
        static_cast<number_float_t*>(nullptr).
8690

N
Niels 已提交
8691
        @param[in] type  the @ref number_float_t in use
8692

N
Niels 已提交
8693 8694
        @param[in,out] endptr  recieves a pointer to the first character after
        the number
8695 8696 8697

        @return the floating point number
        */
8698
        double str_to_float_t(double* /* type */, char** endptr) const
8699 8700 8701 8702
        {
            return std::strtod(reinterpret_cast<typename string_t::const_pointer>(m_start), endptr);
        }

8703 8704 8705 8706 8707
        /*!
        @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 已提交
8708 8709
        supplied via the first parameter.  Set this to @a
        static_cast<number_float_t*>(nullptr).
8710

N
Niels 已提交
8711
        @param[in] type  the @ref number_float_t in use
8712

N
Niels 已提交
8713 8714
        @param[in,out] endptr  recieves a pointer to the first character after
        the number
8715 8716 8717

        @return the floating point number
        */
8718
        float str_to_float_t(float* /* type */, char** endptr) const
8719 8720 8721 8722
        {
            return std::strtof(reinterpret_cast<typename string_t::const_pointer>(m_start), endptr);
        }

8723 8724
        /*!
        @brief return number value for number tokens
N
Niels 已提交
8725

N
Niels 已提交
8726
        This function translates the last token into the most appropriate
N
Niels 已提交
8727 8728 8729 8730 8731 8732
        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 已提交
8733 8734 8735
        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 已提交
8736 8737 8738 8739 8740

        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 已提交
8741 8742
        NAN if the conversion read past the current token. The latter case
        needs to be treated by the caller function.
N
Niels 已提交
8743
        */
8744
        void get_number(basic_json& result) const
N
Niels 已提交
8745
        {
N
Niels 已提交
8746
            assert(m_start != nullptr);
N
Niels 已提交
8747

N
Niels 已提交
8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760
            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 == '-')
8761
            {
N
Niels 已提交
8762
                type = value_t::number_integer;
N
Niels 已提交
8763
                max = static_cast<uint64_t>((std::numeric_limits<number_integer_t>::max)()) + 1;
N
Niels 已提交
8764 8765 8766 8767 8768
                curptr++;
            }
            else
            {
                type = value_t::number_unsigned;
T
Tom Needham 已提交
8769
                max = static_cast<uint64_t>((std::numeric_limits<number_unsigned_t>::max)());
8770
            }
N
Niels 已提交
8771 8772 8773

            // count the significant figures
            for (; curptr < m_cursor; curptr++)
8774
            {
N
Niels 已提交
8775 8776
                // quickly skip tests if a digit
                if (*curptr < '0' || *curptr > '9')
N
Niels 已提交
8777
                {
N
Niels 已提交
8778 8779 8780 8781 8782 8783 8784 8785 8786 8787
                    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 已提交
8788
                }
N
Niels 已提交
8789 8790 8791

                // skip if definitely not an integer
                if (type != value_t::number_float)
N
Niels 已提交
8792
                {
N
Niels 已提交
8793
                    // multiply last value by ten and add the new digit
N
Niels 已提交
8794
                    auto temp = value * 10 + *curptr - '0';
N
Niels 已提交
8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806

                    // test for overflow
                    if (temp < value || temp > max)
                    {
                        // overflow
                        type = value_t::number_float;
                    }
                    else
                    {
                        // no overflow - save it
                        value = temp;
                    }
N
Niels 已提交
8807
                }
8808
            }
N
Niels 已提交
8809

N
Niels 已提交
8810 8811
            // save the value (if not a float)
            if (type == value_t::number_unsigned)
N
Niels 已提交
8812
            {
N
Niels 已提交
8813
                result.m_value.number_unsigned = value;
N
Niels 已提交
8814
            }
N
Niels 已提交
8815 8816 8817 8818 8819
            else if (type == value_t::number_integer)
            {
                result.m_value.number_integer = -static_cast<number_integer_t>(value);
            }
            else
8820
            {
N
Niels 已提交
8821
                // parse with strtod
N
Niels 已提交
8822
                result.m_value.number_float = str_to_float_t(static_cast<number_float_t*>(nullptr), NULL);
8823
            }
N
Niels 已提交
8824 8825 8826

            // save the type
            result.m_type = type;
N
Niels 已提交
8827 8828 8829
        }

      private:
N
Niels 已提交
8830
        /// optional input stream
N
Niels 已提交
8831
        std::istream* m_stream = nullptr;
N
fixes  
Niels 已提交
8832
        /// the buffer
N
Niels 已提交
8833 8834
        string_t m_buffer;
        /// the buffer pointer
N
Niels 已提交
8835
        const lexer_char_t* m_content = nullptr;
N
Niels 已提交
8836
        /// pointer to the beginning of the current symbol
N
Niels 已提交
8837
        const lexer_char_t* m_start = nullptr;
N
Niels 已提交
8838 8839
        /// pointer for backtracking information
        const lexer_char_t* m_marker = nullptr;
N
fixes  
Niels 已提交
8840
        /// pointer to the current symbol
N
Niels 已提交
8841
        const lexer_char_t* m_cursor = nullptr;
N
fixes  
Niels 已提交
8842
        /// pointer to the end of the buffer
N
Niels 已提交
8843
        const lexer_char_t* m_limit = nullptr;
N
Niels 已提交
8844 8845
        /// the last token type
        token_type last_token_type = token_type::end_of_input;
N
Niels 已提交
8846 8847
    };

N
Niels 已提交
8848 8849
    /*!
    @brief syntax analysis
N
Niels 已提交
8850 8851

    This class implements a recursive decent parser.
N
Niels 已提交
8852
    */
N
Niels 已提交
8853 8854 8855 8856
    class parser
    {
      public:
        /// constructor for strings
N
Niels 已提交
8857
        parser(const string_t& s, const parser_callback_t cb = nullptr) noexcept
N
Niels 已提交
8858
            : callback(cb), m_lexer(s)
N
Niels 已提交
8859 8860 8861 8862 8863 8864
        {
            // read first token
            get_token();
        }

        /// a parser reading from an input stream
N
Niels 已提交
8865
        parser(std::istream& _is, const parser_callback_t cb = nullptr) noexcept
N
Niels 已提交
8866
            : callback(cb), m_lexer(&_is)
N
Niels 已提交
8867 8868 8869 8870 8871
        {
            // read first token
            get_token();
        }

N
Niels 已提交
8872
        /// public parser interface
N
Niels 已提交
8873
        basic_json parse()
N
Niels 已提交
8874
        {
N
Niels 已提交
8875
            basic_json result = parse_internal(true);
8876
            result.assert_invariant();
N
Niels 已提交
8877 8878 8879

            expect(lexer::token_type::end_of_input);

N
Niels 已提交
8880 8881
            // return parser result and replace it with null in case the
            // top-level value was discarded by the callback function
8882
            return result.is_discarded() ? basic_json() : std::move(result);
N
Niels 已提交
8883 8884 8885 8886
        }

      private:
        /// the actual parser
N
Niels 已提交
8887
        basic_json parse_internal(bool keep)
N
Niels 已提交
8888
        {
N
Niels 已提交
8889 8890
            auto result = basic_json(value_t::discarded);

N
Niels 已提交
8891 8892
            switch (last_token)
            {
8893
                case lexer::token_type::begin_object:
N
Niels 已提交
8894
                {
N
Niels 已提交
8895 8896
                    if (keep and (not callback
                                  or ((keep = callback(depth++, parse_event_t::object_start, result)) != 0)))
N
Niels 已提交
8897 8898
                    {
                        // explicitly set result to object to cope with {}
N
Niels 已提交
8899
                        result.m_type = value_t::object;
8900
                        result.m_value = value_t::object;
N
Niels 已提交
8901
                    }
N
Niels 已提交
8902 8903 8904 8905 8906 8907 8908

                    // read next token
                    get_token();

                    // closing } -> we are done
                    if (last_token == lexer::token_type::end_object)
                    {
N
Niels 已提交
8909
                        get_token();
N
Niels 已提交
8910
                        if (keep and callback and not callback(--depth, parse_event_t::object_end, result))
N
Niels 已提交
8911 8912 8913
                        {
                            result = basic_json(value_t::discarded);
                        }
N
Niels 已提交
8914
                        return result;
N
Niels 已提交
8915 8916
                    }

N
Niels 已提交
8917 8918 8919
                    // no comma is expected here
                    unexpect(lexer::token_type::value_separator);

N
Niels 已提交
8920 8921 8922
                    // otherwise: parse key-value pairs
                    do
                    {
N
Niels 已提交
8923 8924 8925 8926 8927 8928
                        // ugly, but could be fixed with loop reorganization
                        if (last_token == lexer::token_type::value_separator)
                        {
                            get_token();
                        }

N
Niels 已提交
8929 8930 8931 8932
                        // store key
                        expect(lexer::token_type::value_string);
                        const auto key = m_lexer.get_string();

N
Niels 已提交
8933 8934 8935
                        bool keep_tag = false;
                        if (keep)
                        {
N
Niels 已提交
8936 8937 8938 8939 8940 8941 8942 8943 8944
                            if (callback)
                            {
                                basic_json k(key);
                                keep_tag = callback(depth, parse_event_t::key, k);
                            }
                            else
                            {
                                keep_tag = true;
                            }
N
Niels 已提交
8945 8946
                        }

N
Niels 已提交
8947 8948 8949 8950
                        // parse separator (:)
                        get_token();
                        expect(lexer::token_type::name_separator);

8951
                        // parse and add value
N
Niels 已提交
8952
                        get_token();
N
Niels 已提交
8953 8954 8955
                        auto value = parse_internal(keep);
                        if (keep and keep_tag and not value.is_discarded())
                        {
N
Niels 已提交
8956
                            result[key] = std::move(value);
N
Niels 已提交
8957
                        }
N
Niels 已提交
8958
                    }
N
Niels 已提交
8959
                    while (last_token == lexer::token_type::value_separator);
N
Niels 已提交
8960 8961 8962

                    // closing }
                    expect(lexer::token_type::end_object);
N
Niels 已提交
8963
                    get_token();
N
Niels 已提交
8964
                    if (keep and callback and not callback(--depth, parse_event_t::object_end, result))
N
Niels 已提交
8965 8966 8967
                    {
                        result = basic_json(value_t::discarded);
                    }
N
Niels 已提交
8968 8969

                    return result;
N
Niels 已提交
8970 8971
                }

8972
                case lexer::token_type::begin_array:
N
Niels 已提交
8973
                {
N
Niels 已提交
8974 8975
                    if (keep and (not callback
                                  or ((keep = callback(depth++, parse_event_t::array_start, result)) != 0)))
N
Niels 已提交
8976 8977
                    {
                        // explicitly set result to object to cope with []
N
Niels 已提交
8978
                        result.m_type = value_t::array;
8979
                        result.m_value = value_t::array;
N
Niels 已提交
8980
                    }
N
Niels 已提交
8981 8982 8983 8984 8985 8986 8987

                    // read next token
                    get_token();

                    // closing ] -> we are done
                    if (last_token == lexer::token_type::end_array)
                    {
N
Niels 已提交
8988
                        get_token();
N
Niels 已提交
8989
                        if (callback and not callback(--depth, parse_event_t::array_end, result))
N
Niels 已提交
8990 8991 8992
                        {
                            result = basic_json(value_t::discarded);
                        }
N
Niels 已提交
8993
                        return result;
N
Niels 已提交
8994 8995
                    }

N
Niels 已提交
8996 8997 8998
                    // no comma is expected here
                    unexpect(lexer::token_type::value_separator);

N
Niels 已提交
8999 9000 9001
                    // otherwise: parse values
                    do
                    {
N
Niels 已提交
9002 9003 9004 9005 9006
                        // ugly, but could be fixed with loop reorganization
                        if (last_token == lexer::token_type::value_separator)
                        {
                            get_token();
                        }
N
Niels 已提交
9007

N
Niels 已提交
9008 9009 9010 9011
                        // parse value
                        auto value = parse_internal(keep);
                        if (keep and not value.is_discarded())
                        {
N
Niels 已提交
9012
                            result.push_back(std::move(value));
N
Niels 已提交
9013
                        }
N
Niels 已提交
9014
                    }
N
Niels 已提交
9015
                    while (last_token == lexer::token_type::value_separator);
N
Niels 已提交
9016 9017 9018

                    // closing ]
                    expect(lexer::token_type::end_array);
N
Niels 已提交
9019
                    get_token();
N
Niels 已提交
9020
                    if (keep and callback and not callback(--depth, parse_event_t::array_end, result))
N
Niels 已提交
9021 9022 9023
                    {
                        result = basic_json(value_t::discarded);
                    }
N
Niels 已提交
9024 9025

                    return result;
N
Niels 已提交
9026 9027
                }

9028
                case lexer::token_type::literal_null:
N
Niels 已提交
9029
                {
N
Niels 已提交
9030
                    get_token();
N
Niels 已提交
9031
                    result.m_type = value_t::null;
N
Niels 已提交
9032
                    break;
N
Niels 已提交
9033 9034
                }

9035
                case lexer::token_type::value_string:
N
Niels 已提交
9036
                {
N
Niels 已提交
9037
                    const auto s = m_lexer.get_string();
N
Niels 已提交
9038
                    get_token();
N
Niels 已提交
9039 9040
                    result = basic_json(s);
                    break;
N
Niels 已提交
9041 9042
                }

9043
                case lexer::token_type::literal_true:
N
Niels 已提交
9044
                {
N
Niels 已提交
9045
                    get_token();
N
Niels 已提交
9046 9047
                    result.m_type = value_t::boolean;
                    result.m_value = true;
N
Niels 已提交
9048
                    break;
N
Niels 已提交
9049 9050
                }

9051
                case lexer::token_type::literal_false:
N
Niels 已提交
9052
                {
N
Niels 已提交
9053
                    get_token();
N
Niels 已提交
9054 9055
                    result.m_type = value_t::boolean;
                    result.m_value = false;
N
Niels 已提交
9056
                    break;
N
Niels 已提交
9057 9058
                }

9059
                case lexer::token_type::value_number:
N
Niels 已提交
9060
                {
9061
                    m_lexer.get_number(result);
N
Niels 已提交
9062
                    get_token();
N
Niels 已提交
9063
                    break;
N
Niels 已提交
9064 9065 9066 9067
                }

                default:
                {
N
Niels 已提交
9068 9069
                    // the last token was unexpected
                    unexpect(last_token);
N
Niels 已提交
9070 9071
                }
            }
N
Niels 已提交
9072

N
Niels 已提交
9073
            if (keep and callback and not callback(depth, parse_event_t::value, result))
N
Niels 已提交
9074 9075 9076 9077
            {
                result = basic_json(value_t::discarded);
            }
            return result;
N
Niels 已提交
9078 9079 9080
        }

        /// get next token from lexer
N
Niels 已提交
9081
        typename lexer::token_type get_token() noexcept
N
Niels 已提交
9082 9083 9084 9085 9086
        {
            last_token = m_lexer.scan();
            return last_token;
        }

N
Niels 已提交
9087
        void expect(typename lexer::token_type t) const
N
Niels 已提交
9088 9089 9090
        {
            if (t != last_token)
            {
N
Niels 已提交
9091
                std::string error_msg = "parse error - unexpected ";
N
Niels 已提交
9092 9093
                error_msg += (last_token == lexer::token_type::parse_error ? ("'" +  m_lexer.get_token_string() +
                              "'") :
N
Niels 已提交
9094 9095
                              lexer::token_type_name(last_token));
                error_msg += "; expected " + lexer::token_type_name(t);
N
Niels 已提交
9096 9097 9098 9099
                throw std::invalid_argument(error_msg);
            }
        }

N
Niels 已提交
9100
        void unexpect(typename lexer::token_type t) const
N
Niels 已提交
9101 9102 9103
        {
            if (t == last_token)
            {
N
Niels 已提交
9104
                std::string error_msg = "parse error - unexpected ";
N
Niels 已提交
9105 9106
                error_msg += (last_token == lexer::token_type::parse_error ? ("'" +  m_lexer.get_token_string() +
                              "'") :
N
Niels 已提交
9107
                              lexer::token_type_name(last_token));
N
Niels 已提交
9108 9109 9110 9111
                throw std::invalid_argument(error_msg);
            }
        }

N
Niels 已提交
9112
      private:
N
Niels 已提交
9113
        /// current level of recursion
N
Niels 已提交
9114 9115
        int depth = 0;
        /// callback function
N
Niels 已提交
9116
        const parser_callback_t callback = nullptr;
N
Niels 已提交
9117
        /// the type of the last read token
N
Niels 已提交
9118
        typename lexer::token_type last_token = lexer::token_type::uninitialized;
N
Niels 已提交
9119
        /// the lexer
N
Niels 已提交
9120
        lexer m_lexer;
N
Niels 已提交
9121
    };
N
Niels 已提交
9122 9123

  public:
N
Niels 已提交
9124 9125 9126
    /*!
    @brief JSON Pointer

N
Niels 已提交
9127 9128 9129 9130
    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 已提交
9131
    @sa [RFC 6901](https://tools.ietf.org/html/rfc6901)
N
Niels 已提交
9132 9133

    @since version 2.0.0
N
Niels 已提交
9134
    */
N
Niels 已提交
9135 9136
    class json_pointer
    {
N
Niels 已提交
9137 9138 9139
        /// allow basic_json to access private members
        friend class basic_json;

N
Niels 已提交
9140
      public:
N
Niels 已提交
9141 9142 9143 9144 9145 9146 9147 9148 9149 9150
        /*!
        @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 已提交
9151 9152 9153 9154 9155 9156
        @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 已提交
9157 9158 9159

        @liveexample{The example shows the construction several valid JSON
        pointers as well as the exceptional behavior.,json_pointer}
N
Niels 已提交
9160

N
Niels 已提交
9161 9162 9163
        @since version 2.0.0
        */
        explicit json_pointer(const std::string& s = "")
N
Niels 已提交
9164 9165
            : reference_tokens(split(s))
        {}
N
Niels 已提交
9166

N
Niels 已提交
9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183
        /*!
        @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 已提交
9184 9185
            return std::accumulate(reference_tokens.begin(),
                                   reference_tokens.end(), std::string{},
N
Niels 已提交
9186
                                   [](const std::string & a, const std::string & b)
N
Niels 已提交
9187
            {
N
Niels 已提交
9188 9189
                return a + "/" + escape(b);
            });
N
Niels 已提交
9190 9191 9192 9193
        }

        /// @copydoc to_string()
        operator std::string() const
N
Niels 已提交
9194
        {
N
Niels 已提交
9195
            return to_string();
N
Niels 已提交
9196 9197
        }

N
Niels 已提交
9198
      private:
N
Niels 已提交
9199
        /// remove and return last reference pointer
N
Niels 已提交
9200 9201
        std::string pop_back()
        {
N
Niels 已提交
9202
            if (is_root())
N
Niels 已提交
9203 9204 9205 9206 9207 9208 9209 9210 9211
            {
                throw std::domain_error("JSON pointer has no parent");
            }

            auto last = reference_tokens.back();
            reference_tokens.pop_back();
            return last;
        }

N
Niels 已提交
9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229
        /// 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 已提交
9230 9231
        /*!
        @brief create and return a reference to the pointed to value
N
Niels 已提交
9232 9233

        @complexity Linear in the number of reference tokens.
N
Niels 已提交
9234 9235
        */
        reference get_and_create(reference j) const
N
Niels 已提交
9236
        {
9237
            pointer result = &j;
N
Niels 已提交
9238

N
Niels 已提交
9239 9240
            // in case no reference tokens exist, return a reference to the
            // JSON value j which will be overwritten by a primitive value
N
Niels 已提交
9241 9242
            for (const auto& reference_token : reference_tokens)
            {
9243
                switch (result->m_type)
N
Niels 已提交
9244
                {
N
Niels 已提交
9245 9246 9247 9248
                    case value_t::null:
                    {
                        if (reference_token == "0")
                        {
N
Niels 已提交
9249
                            // start a new array if reference token is 0
N
Niels 已提交
9250 9251 9252 9253
                            result = &result->operator[](0);
                        }
                        else
                        {
N
Niels 已提交
9254
                            // start a new object otherwise
N
Niels 已提交
9255 9256
                            result = &result->operator[](reference_token);
                        }
N
Niels 已提交
9257
                        break;
N
Niels 已提交
9258 9259
                    }

N
Niels 已提交
9260
                    case value_t::object:
N
Niels 已提交
9261
                    {
N
Niels 已提交
9262
                        // create an entry in the object
N
Niels 已提交
9263
                        result = &result->operator[](reference_token);
N
Niels 已提交
9264
                        break;
N
Niels 已提交
9265
                    }
N
Niels 已提交
9266 9267

                    case value_t::array:
N
Niels 已提交
9268
                    {
N
Niels 已提交
9269
                        // create an entry in the array
N
Niels 已提交
9270
                        result = &result->operator[](static_cast<size_type>(std::stoi(reference_token)));
N
Niels 已提交
9271
                        break;
N
Niels 已提交
9272
                    }
N
Niels 已提交
9273

N
Niels 已提交
9274
                    /*
N
Niels 已提交
9275 9276 9277 9278 9279
                    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 已提交
9280
                    */
N
Niels 已提交
9281
                    default:
N
Niels 已提交
9282
                    {
N
Niels 已提交
9283
                        throw std::domain_error("invalid value to unflatten");
N
Niels 已提交
9284
                    }
N
Niels 已提交
9285 9286 9287
                }
            }

9288 9289 9290
            return *result;
        }

N
Niels 已提交
9291 9292 9293 9294 9295 9296 9297 9298 9299
        /*!
        @brief return a reference to the pointed to value

        @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.

9300 9301 9302
        @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 已提交
9303 9304
        */
        reference get_unchecked(pointer ptr) const
N
Niels 已提交
9305
        {
N
Niels 已提交
9306 9307 9308 9309 9310 9311
            for (const auto& reference_token : reference_tokens)
            {
                switch (ptr->m_type)
                {
                    case value_t::object:
                    {
9312
                        // use unchecked object access
N
Niels 已提交
9313 9314 9315 9316 9317 9318
                        ptr = &ptr->operator[](reference_token);
                        break;
                    }

                    case value_t::array:
                    {
9319 9320 9321 9322 9323 9324
                        // 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 已提交
9325 9326
                        if (reference_token == "-")
                        {
9327
                            // explicityly treat "-" as index beyond the end
N
Niels 已提交
9328 9329 9330 9331
                            ptr = &ptr->operator[](ptr->m_value.array->size());
                        }
                        else
                        {
9332
                            // convert array index to number; unchecked access
N
Niels 已提交
9333
                            ptr = &ptr->operator[](static_cast<size_type>(std::stoi(reference_token)));
N
Niels 已提交
9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346
                        }
                        break;
                    }

                    default:
                    {
                        throw std::out_of_range("unresolved reference token '" + reference_token + "'");
                    }
                }
            }

            return *ptr;
        }
N
Niels 已提交
9347

N
Niels 已提交
9348 9349
        reference get_checked(pointer ptr) const
        {
N
Niels 已提交
9350 9351
            for (const auto& reference_token : reference_tokens)
            {
N
Niels 已提交
9352
                switch (ptr->m_type)
N
Niels 已提交
9353
                {
N
Niels 已提交
9354
                    case value_t::object:
N
Niels 已提交
9355
                    {
9356
                        // note: at performs range check
N
Niels 已提交
9357 9358 9359 9360 9361 9362 9363
                        ptr = &ptr->at(reference_token);
                        break;
                    }

                    case value_t::array:
                    {
                        if (reference_token == "-")
N
Niels 已提交
9364
                        {
9365 9366 9367 9368
                            // "-" 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 已提交
9369
                        }
9370 9371 9372

                        // error condition (cf. RFC 6901, Sect. 4)
                        if (reference_token.size() > 1 and reference_token[0] == '0')
N
Niels 已提交
9373
                        {
9374
                            throw std::domain_error("array index must not begin with '0'");
N
Niels 已提交
9375
                        }
9376 9377

                        // note: at performs range check
N
Niels 已提交
9378
                        ptr = &ptr->at(static_cast<size_type>(std::stoi(reference_token)));
N
Niels 已提交
9379 9380 9381 9382 9383 9384
                        break;
                    }

                    default:
                    {
                        throw std::out_of_range("unresolved reference token '" + reference_token + "'");
N
Niels 已提交
9385
                    }
N
Niels 已提交
9386 9387 9388 9389 9390 9391 9392 9393 9394 9395
                }
            }

            return *ptr;
        }

        /*!
        @brief return a const reference to the pointed to value

        @param[in] ptr  a JSON value
N
Niels 已提交
9396

N
Niels 已提交
9397 9398 9399 9400 9401 9402 9403 9404 9405
        @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 已提交
9406 9407
                    case value_t::object:
                    {
9408
                        // use unchecked object access
N
Niels 已提交
9409
                        ptr = &ptr->operator[](reference_token);
N
Niels 已提交
9410
                        break;
N
Niels 已提交
9411 9412 9413 9414
                    }

                    case value_t::array:
                    {
N
Niels 已提交
9415 9416
                        if (reference_token == "-")
                        {
9417
                            // "-" cannot be used for const access
N
Niels 已提交
9418 9419 9420 9421
                            throw std::out_of_range("array index '-' (" +
                                                    std::to_string(ptr->m_value.array->size()) +
                                                    ") is out of range");
                        }
9422 9423 9424 9425 9426 9427 9428 9429

                        // 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 已提交
9430
                        ptr = &ptr->operator[](static_cast<size_type>(std::stoi(reference_token)));
N
Niels 已提交
9431
                        break;
N
Niels 已提交
9432 9433 9434 9435
                    }

                    default:
                    {
N
Niels 已提交
9436
                        throw std::out_of_range("unresolved reference token '" + reference_token + "'");
N
Niels 已提交
9437 9438 9439 9440
                    }
                }
            }

N
Niels 已提交
9441
            return *ptr;
N
Niels 已提交
9442 9443
        }

N
Niels 已提交
9444
        const_reference get_checked(const_pointer ptr) const
9445 9446 9447
        {
            for (const auto& reference_token : reference_tokens)
            {
N
Niels 已提交
9448
                switch (ptr->m_type)
9449 9450
                {
                    case value_t::object:
N
Niels 已提交
9451
                    {
9452
                        // note: at performs range check
N
Niels 已提交
9453
                        ptr = &ptr->at(reference_token);
N
Niels 已提交
9454
                        break;
N
Niels 已提交
9455
                    }
9456 9457

                    case value_t::array:
N
Niels 已提交
9458 9459 9460
                    {
                        if (reference_token == "-")
                        {
9461
                            // "-" always fails the range check
N
Niels 已提交
9462 9463 9464 9465
                            throw std::out_of_range("array index '-' (" +
                                                    std::to_string(ptr->m_value.array->size()) +
                                                    ") is out of range");
                        }
9466 9467 9468 9469 9470 9471 9472 9473

                        // 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 已提交
9474
                        ptr = &ptr->at(static_cast<size_type>(std::stoi(reference_token)));
N
Niels 已提交
9475
                        break;
N
Niels 已提交
9476
                    }
9477 9478

                    default:
N
Niels 已提交
9479 9480 9481
                    {
                        throw std::out_of_range("unresolved reference token '" + reference_token + "'");
                    }
9482 9483 9484
                }
            }

N
Niels 已提交
9485
            return *ptr;
N
Niels 已提交
9486 9487 9488
        }

        /// split the string input to reference tokens
9489
        static std::vector<std::string> split(const std::string& reference_string)
N
Niels 已提交
9490
        {
N
Niels 已提交
9491 9492
            std::vector<std::string> result;

N
Niels 已提交
9493 9494 9495
            // special case: empty reference string -> no reference tokens
            if (reference_string.empty())
            {
N
Niels 已提交
9496
                return result;
N
Niels 已提交
9497 9498 9499 9500 9501 9502 9503 9504
            }

            // 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 已提交
9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515
            // 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 已提交
9516
                // (will eventually be 0 if slash == std::string::npos)
N
Niels 已提交
9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539
                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'");
                    }
                }
9540

N
Niels 已提交
9541
                // finally, store the reference token
N
Niels 已提交
9542
                unescape(reference_token);
N
Niels 已提交
9543
                result.push_back(reference_token);
9544
            }
N
Niels 已提交
9545 9546

            return result;
N
Niels 已提交
9547
        }
N
Niels 已提交
9548

N
Niels 已提交
9549
      private:
N
Niels 已提交
9550 9551 9552 9553 9554
        /*!
        @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 已提交
9555
        @param[in]     t  the string to replace @a f
N
Niels 已提交
9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577

        @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 已提交
9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595
        /// 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 已提交
9596 9597 9598 9599
        /*!
        @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 已提交
9600 9601

        @note Empty objects or arrays are flattened to `null`.
N
Niels 已提交
9602
        */
N
Niels 已提交
9603
        static void flatten(const std::string& reference_string,
N
Niels 已提交
9604 9605 9606 9607 9608 9609 9610
                            const basic_json& value,
                            basic_json& result)
        {
            switch (value.m_type)
            {
                case value_t::array:
                {
N
Niels 已提交
9611
                    if (value.m_value.array->empty())
N
Niels 已提交
9612
                    {
N
Niels 已提交
9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623
                        // 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 已提交
9624 9625 9626 9627 9628 9629
                    }
                    break;
                }

                case value_t::object:
                {
N
Niels 已提交
9630
                    if (value.m_value.object->empty())
N
Niels 已提交
9631
                    {
N
Niels 已提交
9632 9633 9634 9635 9636 9637 9638 9639
                        // 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 已提交
9640
                            flatten(reference_string + "/" + escape(element.first),
N
Niels 已提交
9641 9642
                                    element.second, result);
                        }
N
Niels 已提交
9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654
                    }
                    break;
                }

                default:
                {
                    // add primitive value with its reference string
                    result[reference_string] = value;
                    break;
                }
            }
        }
N
Niels 已提交
9655 9656 9657 9658

        /*!
        @param[in] value  flattened JSON

N
Niels 已提交
9659
        @return unflattened JSON
N
Niels 已提交
9660
        */
N
Niels 已提交
9661
        static basic_json unflatten(const basic_json& value)
N
Niels 已提交
9662 9663 9664
        {
            if (not value.is_object())
            {
N
Niels 已提交
9665
                throw std::domain_error("only objects can be unflattened");
N
Niels 已提交
9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677
            }

            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 已提交
9678 9679 9680 9681 9682
                // 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 已提交
9683
                json_pointer(element.first).get_and_create(result) = element.second;
N
Niels 已提交
9684 9685 9686 9687
            }

            return result;
        }
N
Niels 已提交
9688 9689 9690

      private:
        /// the reference tokens
N
Niels 已提交
9691
        std::vector<std::string> reference_tokens {};
N
Niels 已提交
9692
    };
N
Niels 已提交
9693

N
Niels 已提交
9694 9695 9696
    //////////////////////////
    // JSON Pointer support //
    //////////////////////////
N
Niels 已提交
9697 9698 9699 9700

    /// @name JSON Pointer functions
    /// @{

N
Niels 已提交
9701 9702 9703 9704
    /*!
    @brief access specified element via JSON Pointer

    Uses a JSON pointer to retrieve a reference to the respective JSON value.
N
Niels 已提交
9705 9706 9707
    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 已提交
9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793

    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 已提交
9794 9795
    Returns a const reference to the element at with specified JSON pointer @a
    ptr, with bounds checking.
N
Niels 已提交
9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815

    @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 已提交
9816
    /*!
N
Niels 已提交
9817 9818
    @brief return flattened JSON value

N
Niels 已提交
9819 9820 9821 9822
    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 已提交
9823

N
Niels 已提交
9824
    @return an object that maps JSON pointers to primitve values
N
Niels 已提交
9825

N
Niels 已提交
9826 9827
    @note Empty objects and arrays are flattened to `null` and will not be
          reconstructed correctly by the @ref unflatten() function.
N
Niels 已提交
9828 9829 9830 9831 9832 9833 9834 9835 9836

    @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 已提交
9837 9838 9839 9840 9841 9842 9843
    */
    basic_json flatten() const
    {
        basic_json result(value_t::object);
        json_pointer::flatten("", *this, result);
        return result;
    }
N
Niels 已提交
9844 9845

    /*!
N
Niels 已提交
9846 9847 9848 9849 9850 9851 9852 9853 9854 9855
    @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 已提交
9856
    @return the original JSON from a flattened version
N
Niels 已提交
9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870

    @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 已提交
9871
    */
N
Niels 已提交
9872
    basic_json unflatten() const
N
Niels 已提交
9873
    {
N
Niels 已提交
9874
        return json_pointer::unflatten(*this);
N
Niels 已提交
9875
    }
N
Niels 已提交
9876 9877

    /// @}
9878

N
Niels 已提交
9879 9880 9881 9882 9883 9884 9885
    //////////////////////////
    // JSON Patch functions //
    //////////////////////////

    /// @name JSON Patch functions
    /// @{

9886 9887 9888
    /*!
    @brief applies a JSON patch

N
Niels 已提交
9889 9890 9891 9892 9893
    [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 已提交
9894
    @param[in] json_patch  JSON patch document
9895 9896
    @return patched document

N
Niels 已提交
9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910
    @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.
9911

N
Niels 已提交
9912 9913 9914 9915 9916 9917 9918 9919 9920
    @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
9921
    */
N
Niels 已提交
9922
    basic_json patch(const basic_json& json_patch) const
9923
    {
N
Niels 已提交
9924
        // make a working copy to apply the patch to
9925 9926
        basic_json result = *this;

N
Niels 已提交
9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959
        // 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 已提交
9960
        // wrapper for "add" operation; add value at ptr
N
Niels 已提交
9961
        const auto operation_add = [&result](json_pointer & ptr, basic_json val)
N
Niels 已提交
9962
        {
N
Niels 已提交
9963 9964
            // adding to the root of the target document means replacing it
            if (ptr.is_root())
N
Niels 已提交
9965
            {
N
Niels 已提交
9966
                result = val;
N
Niels 已提交
9967
            }
N
Niels 已提交
9968
            else
N
Niels 已提交
9969
            {
N
Niels 已提交
9970 9971 9972
                // make sure the top element of the pointer exists
                json_pointer top_pointer = ptr.top();
                if (top_pointer != ptr)
N
Niels 已提交
9973
                {
N
Niels 已提交
9974
                    basic_json& x = result.at(top_pointer);
N
Niels 已提交
9975
                }
N
Niels 已提交
9976 9977 9978 9979 9980 9981

                // 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 已提交
9982
                {
N
Niels 已提交
9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016
                    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 已提交
10017 10018
                        // if there exists a parent it cannot be primitive
                        assert(false);  // LCOV_EXCL_LINE
N
Niels 已提交
10019
                    }
N
Niels 已提交
10020 10021 10022 10023
                }
            }
        };

N
Niels 已提交
10024
        // wrapper for "remove" operation; remove value at ptr
N
Niels 已提交
10025 10026
        const auto operation_remove = [&result](json_pointer & ptr)
        {
N
Niels 已提交
10027
            // get reference to parent of JSON pointer ptr
N
Niels 已提交
10028 10029
            const auto last_path = ptr.pop_back();
            basic_json& parent = result.at(ptr);
N
Niels 已提交
10030 10031

            // remove child
N
Niels 已提交
10032 10033
            if (parent.is_object())
            {
N
Niels 已提交
10034 10035 10036 10037 10038 10039 10040 10041 10042 10043
                // 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 已提交
10044 10045 10046
            }
            else if (parent.is_array())
            {
N
Niels 已提交
10047 10048
                // note erase performs range check
                parent.erase(static_cast<size_type>(std::stoi(last_path)));
N
Niels 已提交
10049 10050 10051
            }
        };

N
Niels 已提交
10052
        // type check
N
Niels 已提交
10053
        if (not json_patch.is_array())
N
Niels 已提交
10054 10055
        {
            // a JSON patch must be an array of objects
N
Niels 已提交
10056
            throw std::invalid_argument("JSON patch must be an array of objects");
N
Niels 已提交
10057 10058 10059
        }

        // iterate and apply th eoperations
N
Niels 已提交
10060
        for (const auto& val : json_patch)
10061
        {
N
Niels 已提交
10062 10063 10064
            // wrapper to get a value for an operation
            const auto get_value = [&val](const std::string & op,
                                          const std::string & member,
N
Niels 已提交
10065
                                          bool string_type) -> basic_json&
10066
            {
N
Niels 已提交
10067 10068
                // find value
                auto it = val.m_value.object->find(member);
10069

N
Niels 已提交
10070 10071
                // context-sensitive error message
                const auto error_msg = (op == "op") ? "operation" : "operation '" + op + "'";
10072

N
Niels 已提交
10073 10074 10075
                // check if desired value is present
                if (it == val.m_value.object->end())
                {
N
Niels 已提交
10076
                    throw std::invalid_argument(error_msg + " must have member '" + member + "'");
N
Niels 已提交
10077
                }
10078

N
Niels 已提交
10079 10080 10081
                // check if result is of type string
                if (string_type and not it->second.is_string())
                {
N
Niels 已提交
10082
                    throw std::invalid_argument(error_msg + " must have string member '" + member + "'");
N
Niels 已提交
10083 10084 10085 10086 10087 10088 10089 10090
                }

                // no error: return value
                return it->second;
            };

            // type check
            if (not val.is_object())
10091
            {
N
Niels 已提交
10092
                throw std::invalid_argument("JSON patch must be an array of objects");
10093 10094
            }

N
Niels 已提交
10095 10096 10097
            // collect mandatory members
            const std::string op = get_value("op", "op", true);
            const std::string path = get_value(op, "path", true);
N
oops  
Niels 已提交
10098
            json_pointer ptr(path);
10099

N
Niels 已提交
10100
            switch (get_op(op))
10101
            {
N
Niels 已提交
10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176
                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");
                }
10177
            }
N
Niels 已提交
10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216
        }

        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,
10217
                           const std::string& path = "")
N
Niels 已提交
10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231
    {
        // 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(
10232
            {
N
Niels 已提交
10233 10234 10235 10236 10237 10238 10239 10240
                {"op", "replace"},
                {"path", path},
                {"value", target}
            });
        }
        else
        {
            switch (source.type())
10241
            {
N
Niels 已提交
10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252
                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 已提交
10253

N
Niels 已提交
10254 10255
                    // i now reached the end of at least one array
                    // in a second pass, traverse the remaining elements
N
Niels 已提交
10256

N
Niels 已提交
10257
                    // remove my remaining elements
N
Niels 已提交
10258
                    const auto end_index = static_cast<difference_type>(result.size());
N
Niels 已提交
10259 10260
                    while (i < source.size())
                    {
N
Niels 已提交
10261 10262
                        // add operations in reverse order to avoid invalid
                        // indices
N
Niels 已提交
10263
                        result.insert(result.begin() + end_index, object(
N
Niels 已提交
10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286
                        {
                            {"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:
10287
                {
N
Niels 已提交
10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339
                    // 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;
10340 10341 10342 10343 10344 10345
                }
            }
        }

        return result;
    }
N
Niels 已提交
10346 10347

    /// @}
N
Niels 已提交
10348 10349 10350 10351 10352 10353 10354
};


/////////////
// presets //
/////////////

N
Niels 已提交
10355 10356 10357
/*!
@brief default JSON class

N
Niels 已提交
10358 10359
This type is the default specialization of the @ref basic_json class which
uses the standard template types.
N
Niels 已提交
10360

N
Niels 已提交
10361
@since version 1.0.0
N
Niels 已提交
10362
*/
N
Niels 已提交
10363 10364 10365 10366
using json = basic_json<>;
}


N
Niels 已提交
10367 10368 10369
///////////////////////
// nonmember support //
///////////////////////
N
Niels 已提交
10370 10371 10372 10373

// specialization of std::swap, and std::hash
namespace std
{
N
Niels 已提交
10374 10375
/*!
@brief exchanges the values of two JSON objects
N
Niels 已提交
10376

N
Niels 已提交
10377
@since version 1.0.0
N
Niels 已提交
10378
*/
N
Niels 已提交
10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392
template <>
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
template <>
struct hash<nlohmann::json>
{
N
Niels 已提交
10393 10394 10395
    /*!
    @brief return a hash value for a JSON object

N
Niels 已提交
10396
    @since version 1.0.0
N
Niels 已提交
10397
    */
N
Niels 已提交
10398
    std::size_t operator()(const nlohmann::json& j) const
N
Niels 已提交
10399 10400
    {
        // a naive hashing via the string representation
N
Niels 已提交
10401 10402
        const auto& h = hash<nlohmann::json::string_t>();
        return h(j.dump());
N
Niels 已提交
10403 10404 10405 10406 10407
    }
};
}

/*!
N
Niels 已提交
10408 10409
@brief user-defined string literal for JSON values

N
Niels 已提交
10410
This operator implements a user-defined string literal for JSON objects. It
N
Niels 已提交
10411
can be used by adding `"_json"` to a string literal and returns a JSON object
N
Niels 已提交
10412
if no parse error occurred.
N
Niels 已提交
10413

N
Niels 已提交
10414
@param[in] s  a string representation of a JSON object
N
Niels 已提交
10415
@return a JSON object
N
Niels 已提交
10416

N
Niels 已提交
10417
@since version 1.0.0
N
Niels 已提交
10418
*/
N
Niels 已提交
10419
inline nlohmann::json operator "" _json(const char* s, std::size_t)
N
Niels 已提交
10420
{
N
Niels 已提交
10421
    return nlohmann::json::parse(reinterpret_cast<const nlohmann::json::string_t::value_type*>(s));
N
Niels 已提交
10422 10423
}

N
Niels 已提交
10424 10425 10426
/*!
@brief user-defined string literal for JSON pointer

N
Niels 已提交
10427 10428 10429 10430 10431 10432 10433
This operator implements a user-defined string literal for JSON Pointers. It
can be used by adding `"_json"` to a string literal and returns a JSON pointer
object if no parse error occurred.

@param[in] s  a string representation of a JSON Pointer
@return a JSON pointer object

N
Niels 已提交
10434 10435 10436 10437 10438 10439 10440
@since version 2.0.0
*/
inline nlohmann::json::json_pointer operator "" _json_pointer(const char* s, std::size_t)
{
    return nlohmann::json::json_pointer(s);
}

10441 10442 10443 10444 10445
// restore GCC/clang diagnostic settings
#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__)
    #pragma GCC diagnostic pop
#endif

N
Niels 已提交
10446
#endif