json.hpp 243.7 KB
Newer Older
N
Niels 已提交
1
/*!
N
Niels 已提交
2 3 4 5 6 7 8
@mainpage

These pages contain the API documentation of JSON for Modern C++, a C++11
header-only JSON class.

Class @ref nlohmann::basic_json is a good entry point for the documentation.

N
Niels 已提交
9
@copyright The code is licensed under the [MIT
N
Niels 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
  License](http://opensource.org/licenses/MIT):
  <br>
  Copyright &copy; 2013-2015 Niels Lohmann.
  <br>
  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:
  <br>
  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.
  <br>
  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 已提交
31 32

@author [Niels Lohmann](http://nlohmann.me)
N
Niels 已提交
33
@see https://github.com/nlohmann/json to download the source code
N
Niels 已提交
34

N
Niels 已提交
35
@version 1.0.0
N
Niels 已提交
36 37
*/

N
Niels 已提交
38 39
#ifndef NLOHMANN_JSON_HPP
#define NLOHMANN_JSON_HPP
N
Niels 已提交
40 41

#include <algorithm>
42
#include <array>
N
Niels 已提交
43
#include <ciso646>
N
Niels 已提交
44
#include <cmath>
N
Niels 已提交
45
#include <cstdio>
N
Niels 已提交
46 47
#include <functional>
#include <initializer_list>
N
Niels 已提交
48
#include <iomanip>
N
Niels 已提交
49 50 51 52 53
#include <iostream>
#include <iterator>
#include <limits>
#include <map>
#include <memory>
N
Niels 已提交
54
#include <sstream>
N
Niels 已提交
55 56 57 58 59
#include <string>
#include <type_traits>
#include <utility>
#include <vector>

N
Niels 已提交
60 61 62 63 64 65 66
// enable ssize_t on MinGW
#ifdef __GNUC__
    #ifdef __MINGW32__
        #include <sys/types.h>
    #endif
#endif

N
Niels 已提交
67 68
// enable ssize_t for MSVC
#ifdef _MSC_VER
N
Niels 已提交
69
    #include <basetsd.h>
N
Niels 已提交
70 71 72
    using ssize_t = SSIZE_T;
#endif

N
Niels 已提交
73
/*!
N
Niels 已提交
74
@brief namespace for Niels Lohmann
N
Niels 已提交
75
@see https://github.com/nlohmann
N
Niels 已提交
76
@since version 1.0.0
N
Niels 已提交
77 78 79 80
*/
namespace nlohmann
{

N
Niels 已提交
81

82 83
/*!
@brief unnamed namespace with internal helper functions
N
Niels 已提交
84
@since version 1.0.0
85 86
*/
namespace
N
Niels 已提交
87
{
88 89 90 91
/*!
@brief Helper to determine whether there's a key_type for T.
@sa http://stackoverflow.com/a/7728728/266378
*/
N
Niels 已提交
92
template<typename T>
N
Niels 已提交
93
struct has_mapped_type
N
Niels 已提交
94 95
{
  private:
N
Niels 已提交
96
    template<typename C> static char test(typename C::mapped_type*);
N
Niels 已提交
97 98 99 100
    template<typename C> static int  test(...);
  public:
    enum { value = sizeof(test<T>(0)) == sizeof(char) };
};
101 102 103 104 105 106 107

/// "equality" comparison for floating point numbers
template<typename T>
static bool approx(const T a, const T b)
{
    return not (a > b or a < b);
}
N
Niels 已提交
108
}
N
Niels 已提交
109

N
Niels 已提交
110
/*!
N
Niels 已提交
111
@brief a class to store JSON values
N
Niels 已提交
112

N
Niels 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126
@tparam ObjectType type for JSON objects (@c std::map by default; will be used
in @ref object_t)
@tparam ArrayType type for JSON arrays (@c std::vector by default; will be used
in @ref array_t)
@tparam StringType type for JSON strings and object keys (@c std::string by
default; will be used in @ref string_t)
@tparam BooleanType type for JSON booleans (@c `bool` by default; will be used
in @ref boolean_t)
@tparam NumberIntegerType type for JSON integer numbers (@c `int64_t` by
default; will be used in @ref number_integer_t)
@tparam NumberFloatType type for JSON floating-point numbers (@c `double` by
default; will be used in @ref number_float_t)
@tparam AllocatorType type of the allocator to use (@c `std::allocator` by
default)
N
Niels 已提交
127

N
Niels 已提交
128 129
@requirement The class satisfies the following concept requirements:
- Basic
N
Niels 已提交
130 131 132 133 134 135 136 137 138 139 140 141
 - [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):
   A JSON value can be copy-constrcuted from an lvalue expression.
 - [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 已提交
142
- Layout
N
Niels 已提交
143 144 145 146 147
 - [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 已提交
148
- Library-wide
N
Niels 已提交
149 150 151 152 153 154 155 156 157 158 159 160
 - [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 已提交
161
- Container
N
Niels 已提交
162 163 164 165 166
 - [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 已提交
167

N
Niels 已提交
168
@internal
N
Niels 已提交
169
@note ObjectType trick from http://stackoverflow.com/a/9860911
N
Niels 已提交
170
@endinternal
N
Niels 已提交
171

N
Niels 已提交
172
@see RFC 7159 <http://rfc7159.net/rfc7159>
N
Niels 已提交
173

N
Niels 已提交
174
@since version 1.0.0
N
Niels 已提交
175 176

@nosubgrouping
N
Niels 已提交
177 178 179 180 181 182 183
*/
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,
    class NumberIntegerType = int64_t,
N
Niels 已提交
184
    class NumberFloatType = double,
N
Niels 已提交
185
    template<typename U> class AllocatorType = std::allocator
N
Niels 已提交
186 187 188
    >
class basic_json
{
189 190
  private:
    /// workaround type for MSVC
N
Niels 已提交
191 192 193 194 195 196 197
    using basic_json_t = basic_json<ObjectType,
          ArrayType,
          StringType,
          BooleanType,
          NumberIntegerType,
          NumberFloatType,
          AllocatorType>;
198 199 200

  public:

N
Niels 已提交
201 202 203 204
    /////////////////////
    // container types //
    /////////////////////

N
Niels 已提交
205 206 207
    /// @name container types
    /// @{

N
Niels 已提交
208
    /// the type of elements in a basic_json container
N
Niels 已提交
209
    using value_type = basic_json;
N
Niels 已提交
210

N
Niels 已提交
211
    /// the type of an element reference
N
Niels 已提交
212
    using reference = value_type&;
N
Niels 已提交
213

N
Niels 已提交
214
    /// the type of an element const reference
N
Niels 已提交
215
    using const_reference = const value_type&;
N
Niels 已提交
216

N
Niels 已提交
217
    /// a type to represent differences between iterators
N
Niels 已提交
218 219
    using difference_type = std::ptrdiff_t;

N
Niels 已提交
220
    /// a type to represent container sizes
N
Niels 已提交
221 222 223
    using size_type = std::size_t;

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

N
Niels 已提交
226
    /// the type of an element pointer
N
Niels 已提交
227
    using pointer = typename std::allocator_traits<allocator_type>::pointer;
N
Niels 已提交
228
    /// the type of an element const pointer
N
Niels 已提交
229
    using const_pointer = typename std::allocator_traits<allocator_type>::const_pointer;
N
Niels 已提交
230

N
Niels 已提交
231 232 233
    // forward declaration
    template<typename Base> class json_reverse_iterator;

N
Niels 已提交
234 235 236 237 238
    /// 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 已提交
239
    using reverse_iterator = json_reverse_iterator<typename basic_json::iterator>;
N
Niels 已提交
240
    /// a const reverse iterator for a basic_json container
N
Niels 已提交
241
    using const_reverse_iterator = json_reverse_iterator<typename basic_json::const_iterator>;
N
Niels 已提交
242

N
Niels 已提交
243 244 245
    /// @}


N
Niels 已提交
246 247 248
    /*!
    @brief returns the allocator associated with the container
    */
N
Niels 已提交
249
    static allocator_type get_allocator()
N
Niels 已提交
250 251 252 253 254
    {
        return allocator_type();
    }


N
Niels 已提交
255 256 257 258
    ///////////////////////////
    // JSON value data types //
    ///////////////////////////

N
Niels 已提交
259 260 261
    /// @name JSON value data types
    /// @{

N
Niels 已提交
262 263 264 265 266 267 268 269
    /*!
    @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 已提交
270 271 272 273 274 275 276 277 278 279
    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`)
    @tparam StringType the type of the keys or names (e.g., `std::string`). The
    comparison function `std::less<StringType>` is used to order elements
    inside the container.
    @tparam AllocatorType the allocator to use for objects (e.g.,
    `std::allocator`)
N
Niels 已提交
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328

    #### Default type

    With the default values for @a ObjectType (`std::map`), @a StringType
    (`std::string`), and @a AllocatorType (`std::allocator`), the default value
    for @a object_t is:

    @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
      that all software implementations receiving that object will agree on the
      name-value mappings.
    - 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
      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}`.
    - 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
    runtime environment. A theoretical limit can be queried by calling the @ref
    max_size function of a JSON object.

    #### Storage

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

332 333
    @sa @ref array_t -- type for an array value

N
Niels 已提交
334
    @since version 1.0.0
N
Niels 已提交
335
    */
N
Niels 已提交
336 337 338 339 340
    using object_t = ObjectType<StringType,
          basic_json,
          std::less<StringType>,
          AllocatorType<std::pair<const StringType,
          basic_json>>>;
N
Niels 已提交
341 342 343 344 345 346 347

    /*!
    @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 已提交
348 349 350 351 352 353
    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`)
    @tparam AllocatorType  allocator to use for arrays (e.g., `std::allocator`)
N
Niels 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378

    #### 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
    runtime environment. A theoretical limit can be queried by calling the @ref
    max_size function of a JSON array.

    #### Storage

379
    Arrays are stored as pointers in a @ref basic_json type. That is, for any
N
Niels 已提交
380
    access to array values, a pointer of type `array_t*` must be dereferenced.
381 382 383

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

N
Niels 已提交
384
    @since version 1.0.0
N
Niels 已提交
385
    */
N
Niels 已提交
386
    using array_t = ArrayType<basic_json, AllocatorType<basic_json>>;
N
Niels 已提交
387 388 389 390 391 392 393

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

N
Niels 已提交
398 399
    @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 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426

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

427 428
    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 已提交
429
    dereferenced.
430

N
Niels 已提交
431
    @since version 1.0.0
N
Niels 已提交
432
    */
N
Niels 已提交
433
    using string_t = StringType;
N
Niels 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454

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

455 456
    Boolean values are stored directly inside a @ref basic_json type.

N
Niels 已提交
457
    @since version 1.0.0
N
Niels 已提交
458
    */
N
Niels 已提交
459
    using boolean_t = BooleanType;
N
Niels 已提交
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520

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

    [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
    > 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 an
    integer or a floating-point number. Therefore, two different types, @ref
    number_integer_t and @ref number_float_t are used.

    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
      instance, the C++ integer literal `010` will be serialized to `8`. During
      deserialization, leading zeros yield an error.
    - 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
    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_float_t.

    [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

521 522 523 524
    Integer number values are stored directly inside a @ref basic_json type.

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

N
Niels 已提交
525
    @since version 1.0.0
N
Niels 已提交
526
    */
N
Niels 已提交
527
    using number_integer_t = NumberIntegerType;
N
Niels 已提交
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584

    /*!
    @brief a type for a number (floating-point)

    [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows:
    > 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 an
    integer or a floating-point number. Therefore, two different types, @ref
    number_integer_t and @ref number_float_t are used.

    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,
      leading zeros in floating-point literals will be ignored. Internally, the
      value will be stored as decimal number. For instance, the C++
      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
    > 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
    > precision.

    This implementation does exactly follow this approach, as it uses double
    precision floating-point numbers. Note values smaller than
    `-1.79769313486232e+308` and values greather than `1.79769313486232e+308`
    will be stored as NaN internally and be serialized to `null`.

    #### Storage

585 586 587 588 589
    Floating-point number values are stored directly inside a @ref basic_json
    type.

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

N
Niels 已提交
590
    @since version 1.0.0
N
Niels 已提交
591
    */
N
Niels 已提交
592 593
    using number_float_t = NumberFloatType;

N
Niels 已提交
594 595
    /// @}

N
Niels 已提交
596

N
Niels 已提交
597 598 599
    ///////////////////////////
    // JSON type enumeration //
    ///////////////////////////
N
Niels 已提交
600

N
Niels 已提交
601
    /*!
N
Niels 已提交
602
    @brief the JSON type enumeration
N
Niels 已提交
603

N
Niels 已提交
604
    This enumeration collects the different JSON types. It is internally used
605 606 607 608
    to distinguish the stored values, and the functions @ref is_null(), @ref
    is_object(), @ref is_array(), @ref is_string(), @ref is_boolean(), @ref
    is_number(), and @ref is_discarded() rely on it.

N
Niels 已提交
609
    @since version 1.0.0
N
Niels 已提交
610
    */
N
Niels 已提交
611 612 613 614 615 616 617 618 619
    enum class value_t : uint8_t
    {
        null,           ///< null value
        object,         ///< object (unordered set of name/value pairs)
        array,          ///< array (ordered collection of values)
        string,         ///< string value
        boolean,        ///< boolean value
        number_integer, ///< number value (integer)
        number_float,   ///< number value (floating-point)
N
Niels 已提交
620
        discarded       ///< discarded by the the parser callback function
N
Niels 已提交
621 622
    };

N
Niels 已提交
623

N
Niels 已提交
624
  private:
N
Cleanup  
Niels 已提交
625 626
    /// helper for exception-safe object creation
    template<typename T, typename... Args>
N
cleanup  
Niels 已提交
627
    static T* create(Args&& ... args)
N
Cleanup  
Niels 已提交
628 629 630 631 632 633 634 635 636 637 638
    {
        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)...);
        return object.release();
    }

N
Niels 已提交
639 640 641 642
    ////////////////////////
    // JSON value storage //
    ////////////////////////

643 644 645 646 647
    /*!
    @brief a JSON value

    The actual storage for a JSON value of the @ref basic_json class.

N
Niels 已提交
648
    @since version 1.0.0
649
    */
N
Niels 已提交
650 651 652 653 654 655 656 657
    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 已提交
658
        /// boolean
N
Niels 已提交
659 660 661
        boolean_t boolean;
        /// number (integer)
        number_integer_t number_integer;
N
Niels 已提交
662
        /// number (floating-point)
N
Niels 已提交
663 664 665
        number_float_t number_float;

        /// default constructor (for null values)
N
Niels 已提交
666
        json_value() noexcept = default;
N
Niels 已提交
667
        /// constructor for booleans
N
Niels 已提交
668
        json_value(boolean_t v) noexcept : boolean(v) {}
N
Niels 已提交
669
        /// constructor for numbers (integer)
N
Niels 已提交
670
        json_value(number_integer_t v) noexcept : number_integer(v) {}
N
Niels 已提交
671
        /// constructor for numbers (floating-point)
N
Niels 已提交
672
        json_value(number_float_t v) noexcept : number_float(v) {}
N
Niels 已提交
673
        /// constructor for empty values of a given type
N
Niels 已提交
674
        json_value(value_t t)
N
Niels 已提交
675 676 677
        {
            switch (t)
            {
678
                case value_t::object:
N
Niels 已提交
679
                {
N
Cleanup  
Niels 已提交
680
                    object = create<object_t>();
N
Niels 已提交
681 682
                    break;
                }
N
Niels 已提交
683

684
                case value_t::array:
N
Niels 已提交
685
                {
N
Cleanup  
Niels 已提交
686
                    array = create<array_t>();
N
Niels 已提交
687 688
                    break;
                }
N
Niels 已提交
689

690
                case value_t::string:
N
Niels 已提交
691
                {
N
Cleanup  
Niels 已提交
692
                    string = create<string_t>("");
N
Niels 已提交
693 694
                    break;
                }
N
Niels 已提交
695

696
                case value_t::boolean:
N
Niels 已提交
697 698 699 700 701
                {
                    boolean = boolean_t(false);
                    break;
                }

702
                case value_t::number_integer:
N
Niels 已提交
703 704 705 706 707
                {
                    number_integer = number_integer_t(0);
                    break;
                }

708
                case value_t::number_float:
N
Niels 已提交
709 710 711 712
                {
                    number_float = number_float_t(0.0);
                    break;
                }
713 714 715 716 717

                default:
                {
                    break;
                }
N
Niels 已提交
718 719
            }
        }
N
Niels 已提交
720 721

        /// constructor for strings
N
Niels 已提交
722
        json_value(const string_t& value)
N
Niels 已提交
723
        {
N
Cleanup  
Niels 已提交
724
            string = create<string_t>(value);
N
Niels 已提交
725 726 727
        }

        /// constructor for objects
N
Niels 已提交
728
        json_value(const object_t& value)
N
Niels 已提交
729
        {
N
Cleanup  
Niels 已提交
730
            object = create<object_t>(value);
N
Niels 已提交
731 732 733
        }

        /// constructor for arrays
N
Niels 已提交
734
        json_value(const array_t& value)
N
Niels 已提交
735
        {
N
Cleanup  
Niels 已提交
736
            array = create<array_t>(value);
N
Niels 已提交
737
        }
N
Niels 已提交
738 739
    };

N
Niels 已提交
740 741

  public:
N
Niels 已提交
742 743 744 745
    //////////////////////////
    // JSON parser callback //
    //////////////////////////

N
Niels 已提交
746 747 748 749 750
    /*!
    @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.
751

N
Niels 已提交
752
    @since version 1.0.0
N
Niels 已提交
753
    */
N
Niels 已提交
754 755
    enum class parse_event_t : uint8_t
    {
N
Niels 已提交
756 757 758 759 760 761 762 763 764 765 766 767
        /// 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 已提交
768 769
    };

N
Niels 已提交
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
    /*!
    @brief per-element parser callback type

    With a parser callback function, the result of parsing a JSON text can be
    influenced. When passed to @ref parse(std::istream&, parser_callback_t) or
    @ref parse(const string_t&, 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.

    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 已提交
794 795
    Discarding a value (i.e., returning `false`) has different effects
    depending on the context in which function was called:
N
Niels 已提交
796 797 798 799 800 801

    - Discarded values in structured types are skipped. That is, the parser
      will behave as if the discarded value was never read.
    - 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 已提交
802
    @param[in] depth  the depth of the recursion during parsing
N
Niels 已提交
803

N
Niels 已提交
804
    @param[in] event  an event of type parse_event_t indicating the context in
N
Niels 已提交
805 806 807 808 809 810 811 812 813 814 815
    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
816

N
Niels 已提交
817
    @since version 1.0.0
N
Niels 已提交
818
    */
819
    using parser_callback_t = std::function<bool(int depth, parse_event_t event, basic_json& parsed)>;
N
Niels 已提交
820

N
Niels 已提交
821 822 823 824 825

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

N
Niels 已提交
826 827 828
    /// @name constructors and destructors
    /// @{

N
Niels 已提交
829 830 831
    /*!
    @brief create an empty value with a given type

N
Niels 已提交
832 833 834 835 836
    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 已提交
837 838 839 840 841 842
    null        | `null`
    boolean     | `false`
    string      | `""`
    number      | `0`
    object      | `{}`
    array       | `[]`
N
Niels 已提交
843

844
    @param[in] value_type  the type of the value to create
N
Niels 已提交
845 846 847

    @complexity Constant.

N
Niels 已提交
848
    @throw std::bad_alloc if allocation for object, array, or string value
N
Niels 已提交
849
    fails
N
Niels 已提交
850 851 852

    @liveexample{The following code shows the constructor for different @ref
    value_t values,basic_json__value_t}
853 854 855 856 857 858

    @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 已提交
859 860 861 862
    @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
863

N
Niels 已提交
864
    @since version 1.0.0
N
Niels 已提交
865
    */
866 867
    basic_json(const value_t value_type)
        : m_type(value_type), m_value(value_type)
N
Niels 已提交
868
    {}
N
Niels 已提交
869

N
Niels 已提交
870 871
    /*!
    @brief create a null object (implicitly)
N
Niels 已提交
872 873 874 875 876 877 878 879 880 881 882 883 884

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

    @complexity Constant.

    @requirement This function satisfies the Container requirements:
    - 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}

885 886
    @sa @ref basic_json(std::nullptr_t) -- create a `null` value

N
Niels 已提交
887
    @since version 1.0.0
N
Niels 已提交
888
    */
N
Niels 已提交
889
    basic_json() noexcept = default;
N
Niels 已提交
890

N
Niels 已提交
891 892 893 894 895 896
    /*!
    @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
    create `null` values by explicitly assigning a @c nullptr to a JSON value.
N
Niels 已提交
897
    The passed null pointer itself is not read -- it is only used to choose the
N
Niels 已提交
898 899 900 901 902 903 904
    right constructor.

    @complexity Constant.

    @liveexample{The following code shows the constructor with null pointer
    parameter.,basic_json__nullptr_t}

905 906 907
    @sa @ref basic_json() -- default constructor (implicitly creating a `null`
    value)

N
Niels 已提交
908
    @since version 1.0.0
N
Niels 已提交
909
    */
N
Niels 已提交
910
    basic_json(std::nullptr_t) noexcept
N
Niels 已提交
911
        : basic_json(value_t::null)
N
Niels 已提交
912 913
    {}

N
Niels 已提交
914 915 916 917 918
    /*!
    @brief create an object (explicit)

    Create an object JSON value with a given content.

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

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

N
Niels 已提交
923
    @throw std::bad_alloc if allocation for object value fails
N
Niels 已提交
924 925 926 927

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

928 929 930
    @sa @ref basic_json(const CompatibleObjectType&) -- create an object value
    from a compatible STL container

N
Niels 已提交
931
    @since version 1.0.0
N
Niels 已提交
932
    */
933 934
    basic_json(const object_t& val)
        : m_type(value_t::object), m_value(val)
N
Niels 已提交
935
    {}
N
Niels 已提交
936

N
Niels 已提交
937 938 939 940 941 942 943 944 945 946
    /*!
    @brief create an object (implicit)

    Create an object JSON value with a given content. This constructor allows
    any type that can be used to construct values of type @ref object_t.
    Examples include the types `std::map` and `std::unordered_map`.

    @tparam CompatibleObjectType an object type whose `key_type` and
    `value_type` is compatible to @ref object_t

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

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

N
Niels 已提交
951
    @throw std::bad_alloc if allocation for object value fails
N
Niels 已提交
952 953 954 955

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

956 957
    @sa @ref basic_json(const object_t&) -- create an object value

N
Niels 已提交
958
    @since version 1.0.0
N
Niels 已提交
959 960
    */
    template <class CompatibleObjectType, typename
N
Niels 已提交
961
              std::enable_if<
N
Niels 已提交
962 963
                  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 已提交
964
              = 0>
965
    basic_json(const CompatibleObjectType& val)
N
Niels 已提交
966 967
        : m_type(value_t::object)
    {
968 969
        using std::begin;
        using std::end;
970
        m_value.object = create<object_t>(begin(val), end(val));
N
Niels 已提交
971
    }
N
Niels 已提交
972

N
Niels 已提交
973 974 975 976 977
    /*!
    @brief create an array (explicit)

    Create an array JSON value with a given content.

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

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

N
Niels 已提交
982
    @throw std::bad_alloc if allocation for array value fails
N
Niels 已提交
983 984 985 986

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

987 988 989
    @sa @ref basic_json(const CompatibleArrayType&) -- create an array value
    from a compatible STL containers

N
Niels 已提交
990
    @since version 1.0.0
N
Niels 已提交
991
    */
992 993
    basic_json(const array_t& val)
        : m_type(value_t::array), m_value(val)
N
Niels 已提交
994
    {}
N
Niels 已提交
995

N
Niels 已提交
996 997 998 999 1000 1001 1002 1003 1004 1005
    /*!
    @brief create an array (implicit)

    Create an array JSON value with a given content. This constructor allows
    any type that can be used to construct values of type @ref array_t.
    Examples include the types `std::vector`, `std::list`, and `std::set`.

    @tparam CompatibleArrayType an object type whose `value_type` is compatible
    to @ref array_t

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

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

N
Niels 已提交
1010
    @throw std::bad_alloc if allocation for array value fails
N
Niels 已提交
1011 1012 1013 1014

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

1015 1016
    @sa @ref basic_json(const array_t&) -- create an array value

N
Niels 已提交
1017
    @since version 1.0.0
N
Niels 已提交
1018 1019
    */
    template <class CompatibleArrayType, typename
N
Niels 已提交
1020
              std::enable_if<
N
Niels 已提交
1021 1022 1023 1024
                  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 已提交
1025 1026 1027
                  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 已提交
1028
              = 0>
1029
    basic_json(const CompatibleArrayType& val)
N
Niels 已提交
1030 1031
        : m_type(value_t::array)
    {
1032 1033
        using std::begin;
        using std::end;
1034
        m_value.array = create<array_t>(begin(val), end(val));
N
Niels 已提交
1035
    }
N
Niels 已提交
1036

N
Niels 已提交
1037 1038 1039 1040 1041
    /*!
    @brief create a string (explicit)

    Create an string JSON value with a given content.

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

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

N
Niels 已提交
1046
    @throw std::bad_alloc if allocation for string value fails
N
Niels 已提交
1047 1048 1049 1050

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

1051 1052 1053 1054 1055
    @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 已提交
1056
    @since version 1.0.0
N
Niels 已提交
1057
    */
1058 1059
    basic_json(const string_t& val)
        : m_type(value_t::string), m_value(val)
N
Niels 已提交
1060
    {}
N
Niels 已提交
1061

N
Niels 已提交
1062 1063 1064
    /*!
    @brief create a string (explicit)

N
Niels 已提交
1065
    Create a string JSON value with a given content.
N
Niels 已提交
1066

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

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

N
Niels 已提交
1071
    @throw std::bad_alloc if allocation for string value fails
N
Niels 已提交
1072 1073 1074 1075

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

1076 1077 1078 1079
    @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 已提交
1080
    @since version 1.0.0
N
Niels 已提交
1081
    */
1082 1083
    basic_json(const typename string_t::value_type* val)
        : basic_json(string_t(val))
N
Niels 已提交
1084
    {}
N
Niels 已提交
1085

N
Niels 已提交
1086 1087 1088 1089 1090
    /*!
    @brief create a string (implicit)

    Create a string JSON value with a given content.

1091
    @param[in] val  a value for the string
N
Niels 已提交
1092 1093 1094 1095

    @tparam CompatibleStringType an string type which is compatible to @ref
    string_t

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

N
Niels 已提交
1098
    @throw std::bad_alloc if allocation for string value fails
N
Niels 已提交
1099 1100 1101 1102

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

1103 1104 1105 1106
    @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 已提交
1107
    @since version 1.0.0
N
Niels 已提交
1108
    */
N
Niels 已提交
1109
    template <class CompatibleStringType, typename
N
Niels 已提交
1110
              std::enable_if<
N
Niels 已提交
1111
                  std::is_constructible<string_t, CompatibleStringType>::value, int>::type
N
Niels 已提交
1112
              = 0>
1113 1114
    basic_json(const CompatibleStringType& val)
        : basic_json(string_t(val))
N
Niels 已提交
1115 1116
    {}

N
Niels 已提交
1117 1118 1119 1120 1121
    /*!
    @brief create a boolean (explicit)

    Creates a JSON boolean type from a given value.

1122
    @param[in] val  a boolean value to store
N
Niels 已提交
1123 1124 1125 1126 1127

    @complexity Constant.

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

N
Niels 已提交
1129
    @since version 1.0.0
N
Niels 已提交
1130
    */
1131 1132
    basic_json(boolean_t val)
        : m_type(value_t::boolean), m_value(val)
N
Niels 已提交
1133 1134
    {}

N
Niels 已提交
1135 1136 1137
    /*!
    @brief create an integer number (explicit)

N
Niels 已提交
1138 1139 1140 1141 1142
    Create an interger number JSON value with a given content.

    @tparam T  helper type to compare number_integer_t and int (not visible in)
    the interface.

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

N
Niels 已提交
1145 1146 1147 1148 1149 1150
    @note This constructor would have the same signature as @ref
    basic_json(const int value), so we need to switch this one off in case
    number_integer_t is the same as int. This is done via the helper type @a T.

    @complexity Constant.

N
Niels 已提交
1151 1152
    @liveexample{The example below shows the construction of a JSON integer
    number value.,basic_json__number_integer_t}
N
Niels 已提交
1153

1154 1155 1156 1157
    @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 已提交
1158
    @since version 1.0.0
N
Niels 已提交
1159 1160 1161 1162 1163 1164
    */
    template<typename T,
             typename std::enable_if<
                 not (std::is_same<T, int>::value)
                 and std::is_same<T, number_integer_t>::value
                 , int>::type = 0>
1165 1166
    basic_json(const number_integer_t val)
        : m_type(value_t::number_integer), m_value(val)
N
Niels 已提交
1167
    {}
N
Niels 已提交
1168

N
Niels 已提交
1169
    /*!
N
Niels 已提交
1170 1171
    @brief create an integer number from an enum type (explicit)

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

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

N
Niels 已提交
1176 1177 1178 1179 1180 1181 1182 1183 1184
    @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
    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).

    @complexity Constant.

    @liveexample{The example below shows the construction of a JSON integer
N
Niels 已提交
1185
    number value from an anonymous enum.,basic_json__const_int}
N
Niels 已提交
1186

1187 1188 1189 1190 1191
    @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 已提交
1192
    @since version 1.0.0
N
Niels 已提交
1193
    */
1194
    basic_json(const int val)
N
Niels 已提交
1195
        : m_type(value_t::number_integer),
1196
          m_value(static_cast<number_integer_t>(val))
易思龙 已提交
1197
    {}
N
Niels 已提交
1198

N
Niels 已提交
1199 1200 1201
    /*!
    @brief create an integer number (implicit)

N
Niels 已提交
1202
    Create an integer number JSON value with a given content. This constructor
N
Niels 已提交
1203 1204 1205 1206 1207 1208 1209
    allows any type that can be used to construct values of type @ref
    number_integer_t. Examples may include the types `int`, `int32_t`, or
    `short`.

    @tparam CompatibleNumberIntegerType an integer type which is compatible to
    @ref number_integer_t.

1210
    @param[in] val  an integer to create a JSON number from
N
Niels 已提交
1211 1212 1213 1214 1215 1216 1217

    @complexity Constant.

    @liveexample{The example below shows the construction of several JSON
    integer number values from compatible
    types.,basic_json__CompatibleIntegerNumberType}

1218 1219 1220 1221
    @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 已提交
1222
    @since version 1.0.0
N
Niels 已提交
1223 1224
    */
    template<typename CompatibleNumberIntegerType, typename
N
Niels 已提交
1225
             std::enable_if<
N
Niels 已提交
1226 1227
                 std::is_constructible<number_integer_t, CompatibleNumberIntegerType>::value and
                 std::numeric_limits<CompatibleNumberIntegerType>::is_integer, CompatibleNumberIntegerType>::type
N
Niels 已提交
1228
             = 0>
1229
    basic_json(const CompatibleNumberIntegerType val) noexcept
N
Niels 已提交
1230
        : m_type(value_t::number_integer),
1231
          m_value(static_cast<number_integer_t>(val))
N
Niels 已提交
1232 1233
    {}

N
Niels 已提交
1234 1235 1236 1237 1238
    /*!
    @brief create a floating-point number (explicit)

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

1239
    @param[in] val  a floating-point value to create a JSON number from
N
Niels 已提交
1240 1241 1242 1243 1244

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

N
Niels 已提交
1248
    @complexity Constant.
N
Niels 已提交
1249 1250 1251

    @liveexample{The following example creates several floating-point
    values.,basic_json__number_float_t}
1252 1253 1254 1255

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

N
Niels 已提交
1256
    @since version 1.0.0
N
Niels 已提交
1257
    */
1258 1259
    basic_json(const number_float_t val)
        : m_type(value_t::number_float), m_value(val)
N
Niels 已提交
1260 1261
    {
        // replace infinity and NAN by null
1262
        if (not std::isfinite(val))
N
Niels 已提交
1263 1264 1265 1266 1267
        {
            m_type = value_t::null;
            m_value = json_value();
        }
    }
N
Niels 已提交
1268

N
Niels 已提交
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
    /*!
    @brief create an floating-point number (implicit)

    Create an floating-point number JSON value with a given content. This
    constructor allows any type that can be used to construct values of type
    @ref number_float_t. Examples may include the types `float`.

    @tparam CompatibleNumberFloatType a floating-point type which is compatible
    to @ref number_float_t.

1279
    @param[in] val  a floating-point to create a JSON number from
N
Niels 已提交
1280 1281 1282 1283 1284

    @note RFC 7159 <http://www.rfc-editor.org/rfc/rfc7159.txt>, section 6
    disallows NaN values:
    > Numeric values that cannot be represented in the grammar below (such
    > as Infinity and NaN) are not permitted.
1285
    In case the parameter @a val is not a number, a JSON null value is
N
Niels 已提交
1286 1287 1288 1289 1290 1291 1292 1293
    created instead.

    @complexity Constant.

    @liveexample{The example below shows the construction of several JSON
    floating-point number values from compatible
    types.,basic_json__CompatibleNumberFloatType}

1294 1295 1296
    @sa @ref basic_json(const number_float_t) -- create a number value
    (floating-point)

N
Niels 已提交
1297
    @since version 1.0.0
N
Niels 已提交
1298
    */
N
Niels 已提交
1299
    template<typename CompatibleNumberFloatType, typename = typename
N
Niels 已提交
1300
             std::enable_if<
N
Niels 已提交
1301 1302
                 std::is_constructible<number_float_t, CompatibleNumberFloatType>::value and
                 std::is_floating_point<CompatibleNumberFloatType>::value>::type
N
Niels 已提交
1303
             >
1304 1305
    basic_json(const CompatibleNumberFloatType val) noexcept
        : basic_json(number_float_t(val))
N
Niels 已提交
1306
    {}
N
Niels 已提交
1307

N
Niels 已提交
1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333
    /*!
    @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
    object value is created where the first elements of the pairs are treated
    as keys and the second elements are as values.
    3. In all other cases, an array is created.

    The rules aim to create the best fit between a C++ initializer list and
    JSON values. The ratioinale is as follows:

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

N
Niels 已提交
1334 1335
    With the rules described above, the following JSON values cannot be
    expressed by an initializer list:
N
Niels 已提交
1336

N
Niels 已提交
1337 1338 1339 1340 1341
    - 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 已提交
1342 1343 1344 1345 1346

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

N
Niels 已提交
1349 1350 1351
    @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 已提交
1352 1353
    used by the functions @ref array(std::initializer_list<basic_json>) and
    @ref object(std::initializer_list<basic_json>).
N
Niels 已提交
1354

N
Niels 已提交
1355
    @param[in] manual_type internal parameter; when @a type_deduction is set to
N
Niels 已提交
1356 1357 1358 1359 1360 1361
    `false`, the created JSON value will use the provided type (only @ref
    value_t::array and @ref value_t::object are valid); when @a type_deduction
    is set to `true`, this parameter has no effect

    @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 已提交
1362 1363
    whose first element is a string; example: `"cannot create object from
    initializer list"`
N
Niels 已提交
1364 1365 1366 1367 1368 1369

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

    @liveexample{The example below shows how JSON values are created from
    initializer lists,basic_json__list_init_t}

N
Niels 已提交
1370
    @sa @ref array(std::initializer_list<basic_json>) -- create a JSON array
1371
    value from an initializer list
N
Niels 已提交
1372
    @sa @ref object(std::initializer_list<basic_json>) -- create a JSON object
1373 1374
    value from an initializer list

N
Niels 已提交
1375
    @since version 1.0.0
N
Niels 已提交
1376
    */
N
Niels 已提交
1377 1378
    basic_json(std::initializer_list<basic_json> init,
               bool type_deduction = true,
N
Niels 已提交
1379
               value_t manual_type = value_t::array)
N
Niels 已提交
1380 1381
    {
        // the initializer list could describe an object
1382
        bool is_an_object = true;
N
Niels 已提交
1383

N
Niels 已提交
1384 1385
        // check if each element is an array with two elements whose first
        // element is a string
N
Niels 已提交
1386
        for (const auto& element : init)
N
Niels 已提交
1387
        {
N
cleanup  
Niels 已提交
1388 1389
            if (not element.is_array() or element.size() != 2
                    or not element[0].is_string())
N
Niels 已提交
1390 1391 1392
            {
                // we found an element that makes it impossible to use the
                // initializer list as object
1393
                is_an_object = false;
N
Niels 已提交
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
                break;
            }
        }

        // 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)
            {
1404
                is_an_object = false;
N
Niels 已提交
1405 1406 1407
            }

            // if object is wanted but impossible, throw an exception
1408
            if (manual_type == value_t::object and not is_an_object)
N
Niels 已提交
1409
            {
N
Niels 已提交
1410
                throw std::domain_error("cannot create object from initializer list");
N
Niels 已提交
1411 1412 1413
            }
        }

1414
        if (is_an_object)
N
Niels 已提交
1415 1416 1417
        {
            // the initializer list is a list of pairs -> create object
            m_type = value_t::object;
N
Niels 已提交
1418
            m_value = value_t::object;
N
Niels 已提交
1419

N
Niels 已提交
1420
            for (auto& element : init)
N
Niels 已提交
1421 1422 1423 1424 1425 1426 1427 1428
            {
                m_value.object->emplace(std::move(*(element[0].m_value.string)), std::move(element[1]));
            }
        }
        else
        {
            // the initializer list describes an array -> create array
            m_type = value_t::array;
N
Cleanup  
Niels 已提交
1429
            m_value.array = create<array_t>(std::move(init));
N
Niels 已提交
1430 1431 1432
        }
    }

N
Niels 已提交
1433 1434 1435 1436 1437 1438 1439 1440 1441
    /*!
    @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.

    @note This function is only needed to express two edge cases that cannot be
    realized with the initializer list constructor (@ref
N
Niels 已提交
1442 1443
    basic_json(std::initializer_list<basic_json>, bool, value_t)). These cases
    are:
N
Niels 已提交
1444
    1. creating an array whose elements are all pairs whose first element is a
N
Niels 已提交
1445
    string -- in this case, the initializer list constructor would create an
N
Niels 已提交
1446
    object, taking the first elements as keys
N
Niels 已提交
1447
    2. creating an empty array -- passing the empty initializer list to the
N
Niels 已提交
1448 1449
    initializer list constructor yields an empty object

N
Niels 已提交
1450
    @param[in] init  initializer list with JSON values to create an array from
N
Niels 已提交
1451 1452 1453 1454 1455 1456 1457 1458 1459
    (optional)

    @return JSON array value

    @complexity Linear in the size of @a init.

    @liveexample{The following code shows an example for the @ref array
    function.,array}

1460 1461 1462 1463 1464
    @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 已提交
1465
    @since version 1.0.0
N
Niels 已提交
1466
    */
N
Niels 已提交
1467 1468
    static basic_json array(std::initializer_list<basic_json> init =
                                std::initializer_list<basic_json>())
N
Niels 已提交
1469
    {
N
Niels 已提交
1470
        return basic_json(init, false, value_t::array);
N
Niels 已提交
1471 1472
    }

N
Niels 已提交
1473 1474 1475 1476 1477 1478 1479 1480
    /*!
    @brief explicitly create an object from an initializer list

    Creates a JSON object value from a given initializer list. The initializer
    lists elements must be pairs, and their first elments must be strings. If
    the initializer list is empty, the empty object `{}` is created.

    @note This function is only added for symmetry reasons. In contrast to the
1481 1482 1483 1484 1485
    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
    constructor
    @ref basic_json(std::initializer_list<basic_json>, bool, value_t).
N
Niels 已提交
1486

N
Niels 已提交
1487
    @param[in] init  initializer list to create an object from (optional)
N
Niels 已提交
1488 1489 1490 1491

    @return JSON object value

    @throw std::domain_error if @a init is not a pair whose first elements are
1492 1493
    strings; thrown by
    @ref basic_json(std::initializer_list<basic_json>, bool, value_t)
N
Niels 已提交
1494 1495 1496 1497 1498 1499

    @complexity Linear in the size of @a init.

    @liveexample{The following code shows an example for the @ref object
    function.,object}

1500 1501 1502 1503 1504
    @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 已提交
1505
    @since version 1.0.0
N
Niels 已提交
1506
    */
N
Niels 已提交
1507 1508
    static basic_json object(std::initializer_list<basic_json> init =
                                 std::initializer_list<basic_json>())
N
Niels 已提交
1509
    {
N
Niels 已提交
1510
        return basic_json(init, false, value_t::object);
N
Niels 已提交
1511 1512
    }

N
Niels 已提交
1513 1514 1515
    /*!
    @brief construct an array with count copies of given value

1516 1517 1518
    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,
    `std::distance(begin(),end()) == cnt` holds.
N
Niels 已提交
1519

1520 1521
    @param[in] cnt  the number of JSON copies of @a val to create
    @param[in] val  the JSON value to copy
N
Niels 已提交
1522

1523
    @complexity Linear in @a cnt.
N
Niels 已提交
1524 1525 1526 1527

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

N
Niels 已提交
1529
    @since version 1.0.0
N
Niels 已提交
1530
    */
1531
    basic_json(size_type cnt, const basic_json& val)
N
Niels 已提交
1532 1533
        : m_type(value_t::array)
    {
1534
        m_value.array = create<array_t>(cnt, val);
N
Niels 已提交
1535
    }
N
Niels 已提交
1536

N
Niels 已提交
1537 1538 1539 1540 1541
    /*!
    @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 已提交
1542
    - In case of primitive types (number, boolean, or string), @a first must
N
Niels 已提交
1543 1544
      be `begin()` and @a last must be `end()`. In this case, the value is
      copied. Otherwise, std::out_of_range is thrown.
N
Niels 已提交
1545
    - In case of structured types (array, object), the constructor behaves
N
Niels 已提交
1546
      as similar versions for `std::vector`.
N
Niels 已提交
1547
    - In case of a null type, std::domain_error is thrown.
N
Niels 已提交
1548 1549 1550 1551 1552 1553 1554 1555

    @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)

    @throw std::domain_error if iterators are not compatible; that is, do not
N
Niels 已提交
1556
    belong to the same JSON value; example: `"iterators are not compatible"`
N
Niels 已提交
1557
    @throw std::out_of_range if iterators are for a primitive type (number,
N
Niels 已提交
1558 1559
    boolean, or string) where an out of range error can be detected easily;
    example: `"iterators out of range"`
N
Niels 已提交
1560
    @throw std::bad_alloc if allocation for object, array, or string fails
N
Niels 已提交
1561 1562
    @throw std::domain_error if called with a null value; example: `"cannot use
    construct with iterators from null"`
N
Niels 已提交
1563 1564 1565 1566 1567

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

N
Niels 已提交
1569
    @since version 1.0.0
N
Niels 已提交
1570 1571
    */
    template <class InputIT, typename
N
Niels 已提交
1572
              std::enable_if<
N
Niels 已提交
1573 1574
                  std::is_same<InputIT, typename basic_json_t::iterator>::value or
                  std::is_same<InputIT, typename basic_json_t::const_iterator>::value
N
Niels 已提交
1575 1576
                  , int>::type
              = 0>
N
Niels 已提交
1577
    basic_json(InputIT first, InputIT last) : m_type(first.m_object->m_type)
N
Niels 已提交
1578 1579
    {
        // make sure iterator fits the current value
N
Niels 已提交
1580
        if (first.m_object != last.m_object)
N
Niels 已提交
1581
        {
N
Niels 已提交
1582
            throw std::domain_error("iterators are not compatible");
N
Niels 已提交
1583 1584
        }

N
Niels 已提交
1585
        // check if iterator range is complete for primitive values
N
Niels 已提交
1586 1587 1588
        switch (m_type)
        {
            case value_t::boolean:
1589 1590
            case value_t::number_float:
            case value_t::number_integer:
N
Niels 已提交
1591 1592
            case value_t::string:
            {
1593
                if (not first.m_it.primitive_iterator.is_begin() or not last.m_it.primitive_iterator.is_end())
N
Niels 已提交
1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627
                {
                    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;
            }

            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 已提交
1628
                m_value = *first.m_object->m_value.string;
N
Niels 已提交
1629 1630 1631 1632 1633
                break;
            }

            case value_t::object:
            {
N
Cleanup  
Niels 已提交
1634
                m_value.object = create<object_t>(first.m_it.object_iterator, last.m_it.object_iterator);
N
Niels 已提交
1635 1636 1637 1638 1639
                break;
            }

            case value_t::array:
            {
N
Cleanup  
Niels 已提交
1640
                m_value.array = create<array_t>(first.m_it.array_iterator, last.m_it.array_iterator);
N
Niels 已提交
1641 1642 1643 1644 1645
                break;
            }

            default:
            {
N
Niels 已提交
1646
                throw std::domain_error("cannot use construct with iterators from " + first.m_object->type_name());
N
Niels 已提交
1647 1648 1649 1650
            }
        }
    }

N
Niels 已提交
1651 1652 1653 1654
    ///////////////////////////////////////
    // other constructors and destructor //
    ///////////////////////////////////////

N
Niels 已提交
1655 1656
    /*!
    @brief copy constructor
N
Niels 已提交
1657

N
Niels 已提交
1658 1659
    Creates a copy of a given JSON value.

N
Niels 已提交
1660
    @param[in] other  the JSON value to copy
N
Niels 已提交
1661 1662 1663 1664 1665 1666 1667

    @complexity Linear in the size of @a other.

    @requirement This function satisfies the Container requirements:
    - The complexity is linear.
    - As postcondition, it holds: `other == basic_json(other)`.

N
Niels 已提交
1668
    @throw std::bad_alloc if allocation for object, array, or string fails.
N
Niels 已提交
1669 1670

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

N
Niels 已提交
1673
    @since version 1.0.0
N
Niels 已提交
1674
    */
N
Niels 已提交
1675
    basic_json(const basic_json& other)
N
Niels 已提交
1676 1677 1678 1679
        : m_type(other.m_type)
    {
        switch (m_type)
        {
1680
            case value_t::object:
N
Niels 已提交
1681
            {
N
Niels 已提交
1682
                m_value = *other.m_value.object;
N
Niels 已提交
1683 1684
                break;
            }
N
Niels 已提交
1685

1686
            case value_t::array:
N
Niels 已提交
1687
            {
N
Niels 已提交
1688
                m_value = *other.m_value.array;
N
Niels 已提交
1689 1690
                break;
            }
N
Niels 已提交
1691

1692
            case value_t::string:
N
Niels 已提交
1693
            {
N
Niels 已提交
1694
                m_value = *other.m_value.string;
N
Niels 已提交
1695 1696
                break;
            }
N
Niels 已提交
1697

1698
            case value_t::boolean:
N
Niels 已提交
1699
            {
N
Niels 已提交
1700
                m_value = other.m_value.boolean;
N
Niels 已提交
1701 1702
                break;
            }
N
Niels 已提交
1703

1704
            case value_t::number_integer:
N
Niels 已提交
1705
            {
N
Niels 已提交
1706
                m_value = other.m_value.number_integer;
N
Niels 已提交
1707 1708
                break;
            }
N
Niels 已提交
1709

1710
            case value_t::number_float:
N
Niels 已提交
1711
            {
N
Niels 已提交
1712
                m_value = other.m_value.number_float;
N
Niels 已提交
1713 1714
                break;
            }
1715 1716 1717 1718 1719

            default:
            {
                break;
            }
N
Niels 已提交
1720 1721 1722
        }
    }

N
Niels 已提交
1723 1724 1725 1726 1727 1728 1729
    /*!
    @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 已提交
1730
    @param[in,out] other  value to move to this object
N
Niels 已提交
1731 1732 1733 1734 1735 1736 1737

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

N
Niels 已提交
1739
    @since version 1.0.0
N
Niels 已提交
1740
    */
N
Niels 已提交
1741
    basic_json(basic_json&& other) noexcept
N
Niels 已提交
1742 1743 1744
        : m_type(std::move(other.m_type)),
          m_value(std::move(other.m_value))
    {
N
Niels 已提交
1745
        // invalidate payload
N
Niels 已提交
1746 1747 1748 1749
        other.m_type = value_t::null;
        other.m_value = {};
    }

N
Niels 已提交
1750 1751
    /*!
    @brief copy assignment
N
Niels 已提交
1752

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

N
Niels 已提交
1757
    @param[in] other  value to copy from
N
Niels 已提交
1758 1759 1760 1761 1762 1763

    @complexity Linear.

    @requirement This function satisfies the Container requirements:
    - The complexity is linear.

N
Niels 已提交
1764 1765 1766 1767
    @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 已提交
1768

N
Niels 已提交
1769
    @since version 1.0.0
N
Niels 已提交
1770
    */
N
Niels 已提交
1771
    reference& operator=(basic_json other) noexcept (
N
Niels 已提交
1772 1773 1774 1775 1776
        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 已提交
1777
    {
N
Niels 已提交
1778
        using std::swap;
N
Cleanup  
Niels 已提交
1779 1780
        swap(m_type, other.m_type);
        swap(m_value, other.m_value);
N
Niels 已提交
1781 1782 1783
        return *this;
    }

N
Niels 已提交
1784 1785
    /*!
    @brief destructor
N
Niels 已提交
1786

N
Niels 已提交
1787
    Destroys the JSON value and frees all allocated memory.
N
Niels 已提交
1788 1789 1790 1791 1792 1793

    @complexity Linear.

    @requirement This function satisfies the Container requirements:
    - The complexity is linear.
    - All stored elements are destroyed and all memory is freed.
1794

N
Niels 已提交
1795
    @since version 1.0.0
N
Niels 已提交
1796
    */
N
Niels 已提交
1797
    ~basic_json()
N
Niels 已提交
1798 1799 1800
    {
        switch (m_type)
        {
1801
            case value_t::object:
N
Niels 已提交
1802
            {
N
Niels 已提交
1803
                AllocatorType<object_t> alloc;
N
Niels 已提交
1804 1805
                alloc.destroy(m_value.object);
                alloc.deallocate(m_value.object, 1);
N
Niels 已提交
1806 1807
                break;
            }
N
Niels 已提交
1808

1809
            case value_t::array:
N
Niels 已提交
1810
            {
N
Niels 已提交
1811
                AllocatorType<array_t> alloc;
N
Niels 已提交
1812 1813
                alloc.destroy(m_value.array);
                alloc.deallocate(m_value.array, 1);
N
Niels 已提交
1814 1815
                break;
            }
N
Niels 已提交
1816

1817
            case value_t::string:
N
Niels 已提交
1818
            {
N
Niels 已提交
1819
                AllocatorType<string_t> alloc;
N
Niels 已提交
1820
                alloc.destroy(m_value.string);
N
Niels 已提交
1821
                alloc.deallocate(m_value.string, 1);
N
Niels 已提交
1822 1823
                break;
            }
N
Niels 已提交
1824 1825

            default:
N
Niels 已提交
1826
            {
N
Niels 已提交
1827
                // all other types need no specific destructor
N
Niels 已提交
1828 1829 1830 1831 1832
                break;
            }
        }
    }

N
Niels 已提交
1833
    /// @}
N
Niels 已提交
1834 1835 1836 1837 1838 1839

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

N
Niels 已提交
1840 1841 1842
    /// @name object inspection
    /// @{

N
Niels 已提交
1843
    /*!
N
Niels 已提交
1844 1845
    @brief serialization

N
Niels 已提交
1846
    Serialization function for JSON values. The function tries to mimick
N
Niels 已提交
1847 1848
    Python's @p json.dumps() function, and currently supports its @p indent
    parameter.
N
Niels 已提交
1849

N
Niels 已提交
1850
    @param[in] indent if indent is nonnegative, then array elements and object
N
Niels 已提交
1851 1852 1853
    members will be pretty-printed with that indent level. An indent level of 0
    will only insert newlines. -1 (the default) selects the most compact
    representation
N
Niels 已提交
1854

N
Niels 已提交
1855 1856 1857 1858 1859 1860 1861
    @return string containing the serialization of the JSON value

    @complexity Linear.

    @liveexample{The following example shows the effect of different @a indent
    parameters to the result of the serializaion.,dump}

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

N
Niels 已提交
1864
    @since version 1.0.0
N
Niels 已提交
1865
    */
N
Niels 已提交
1866
    string_t dump(const int indent = -1) const
N
Niels 已提交
1867
    {
N
Niels 已提交
1868 1869
        std::stringstream ss;

N
Niels 已提交
1870 1871
        if (indent >= 0)
        {
N
Niels 已提交
1872
            dump(ss, true, static_cast<unsigned int>(indent));
N
Niels 已提交
1873 1874 1875
        }
        else
        {
N
Niels 已提交
1876
            dump(ss, false, 0);
N
Niels 已提交
1877
        }
N
Niels 已提交
1878 1879

        return ss.str();
N
Niels 已提交
1880 1881
    }

N
Niels 已提交
1882 1883 1884 1885 1886 1887 1888
    /*!
    @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 已提交
1889 1890 1891 1892 1893

    @complexity Constant.

    @liveexample{The following code exemplifies @ref type() for all JSON
    types.,type}
N
Niels 已提交
1894

N
Niels 已提交
1895
    @since version 1.0.0
N
Niels 已提交
1896
    */
N
Niels 已提交
1897
    value_t type() const noexcept
N
Niels 已提交
1898 1899 1900 1901
    {
        return m_type;
    }

N
Niels 已提交
1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
    /*!
    @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.

    @liveexample{The following code exemplifies @ref is_primitive for all JSON
    types.,is_primitive}
N
Niels 已提交
1915

N
Niels 已提交
1916
    @since version 1.0.0
N
Niels 已提交
1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934
    */
    bool is_primitive() const noexcept
    {
        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.

    @liveexample{The following code exemplifies @ref is_structured for all JSON
    types.,is_structured}
N
Niels 已提交
1935

N
Niels 已提交
1936
    @since version 1.0.0
N
Niels 已提交
1937 1938 1939 1940 1941 1942
    */
    bool is_structured() const noexcept
    {
        return is_array() or is_object();
    }

N
Niels 已提交
1943 1944 1945 1946 1947
    /*!
    @brief return whether value is null

    This function returns true iff the JSON value is null.

N
Niels 已提交
1948
    @return `true` if type is null, `false` otherwise.
N
Niels 已提交
1949 1950 1951 1952

    @complexity Constant.

    @liveexample{The following code exemplifies @ref is_null for all JSON
N
Niels 已提交
1953
    types.,is_null}
N
Niels 已提交
1954

N
Niels 已提交
1955
    @since version 1.0.0
N
Niels 已提交
1956
    */
N
Niels 已提交
1957
    bool is_null() const noexcept
N
Niels 已提交
1958 1959 1960 1961
    {
        return m_type == value_t::null;
    }

N
Niels 已提交
1962 1963 1964 1965 1966
    /*!
    @brief return whether value is a boolean

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

N
Niels 已提交
1967
    @return `true` if type is boolean, `false` otherwise.
N
Niels 已提交
1968 1969 1970 1971

    @complexity Constant.

    @liveexample{The following code exemplifies @ref is_boolean for all JSON
N
Niels 已提交
1972
    types.,is_boolean}
N
Niels 已提交
1973

N
Niels 已提交
1974
    @since version 1.0.0
N
Niels 已提交
1975
    */
N
Niels 已提交
1976
    bool is_boolean() const noexcept
N
Niels 已提交
1977 1978 1979 1980
    {
        return m_type == value_t::boolean;
    }

N
Niels 已提交
1981 1982 1983 1984 1985 1986
    /*!
    @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.

N
Niels 已提交
1987 1988
    @return `true` if type is number (regardless whether integer or
    floating-type), `false` otherwise.
N
Niels 已提交
1989 1990 1991 1992

    @complexity Constant.

    @liveexample{The following code exemplifies @ref is_number for all JSON
N
Niels 已提交
1993
    types.,is_number}
N
Niels 已提交
1994 1995 1996 1997

    @sa @ref is_number_integer() -- check if value is an integer number
    @sa @ref is_number_float() -- check if value is a floating-point number

N
Niels 已提交
1998
    @since version 1.0.0
N
Niels 已提交
1999
    */
N
Niels 已提交
2000
    bool is_number() const noexcept
N
Niels 已提交
2001
    {
N
Niels 已提交
2002
        return is_number_integer() or is_number_float();
N
Niels 已提交
2003 2004
    }

N
Niels 已提交
2005 2006 2007 2008 2009 2010
    /*!
    @brief return whether value is an integer number

    This function returns true iff the JSON value is an integer number. This
    excludes floating-point values.

N
Niels 已提交
2011
    @return `true` if type is an integer number, `false` otherwise.
N
Niels 已提交
2012 2013 2014 2015

    @complexity Constant.

    @liveexample{The following code exemplifies @ref is_number_integer for all
N
Niels 已提交
2016
    JSON types.,is_number_integer}
N
Niels 已提交
2017 2018 2019 2020

    @sa @ref is_number() -- check if value is a number
    @sa @ref is_number_float() -- check if value is a floating-point number

N
Niels 已提交
2021
    @since version 1.0.0
N
Niels 已提交
2022
    */
N
Niels 已提交
2023 2024 2025 2026 2027
    bool is_number_integer() const noexcept
    {
        return m_type == value_t::number_integer;
    }

N
Niels 已提交
2028 2029 2030 2031 2032 2033
    /*!
    @brief return whether value is a floating-point number

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

N
Niels 已提交
2034
    @return `true` if type is a floating-point number, `false` otherwise.
N
Niels 已提交
2035 2036 2037 2038

    @complexity Constant.

    @liveexample{The following code exemplifies @ref is_number_float for all
N
Niels 已提交
2039
    JSON types.,is_number_float}
N
Niels 已提交
2040 2041 2042 2043

    @sa @ref is_number() -- check if value is number
    @sa @ref is_number_integer() -- check if value is an integer number

N
Niels 已提交
2044
    @since version 1.0.0
N
Niels 已提交
2045
    */
N
Niels 已提交
2046 2047 2048 2049 2050
    bool is_number_float() const noexcept
    {
        return m_type == value_t::number_float;
    }

N
Niels 已提交
2051 2052 2053 2054 2055
    /*!
    @brief return whether value is an object

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

N
Niels 已提交
2056
    @return `true` if type is object, `false` otherwise.
N
Niels 已提交
2057 2058 2059 2060

    @complexity Constant.

    @liveexample{The following code exemplifies @ref is_object for all JSON
N
Niels 已提交
2061
    types.,is_object}
N
Niels 已提交
2062

N
Niels 已提交
2063
    @since version 1.0.0
N
Niels 已提交
2064
    */
N
Niels 已提交
2065
    bool is_object() const noexcept
N
Niels 已提交
2066 2067 2068 2069
    {
        return m_type == value_t::object;
    }

N
Niels 已提交
2070 2071 2072 2073 2074
    /*!
    @brief return whether value is an array

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

N
Niels 已提交
2075
    @return `true` if type is array, `false` otherwise.
N
Niels 已提交
2076 2077 2078 2079

    @complexity Constant.

    @liveexample{The following code exemplifies @ref is_array for all JSON
N
Niels 已提交
2080
    types.,is_array}
N
Niels 已提交
2081

N
Niels 已提交
2082
    @since version 1.0.0
N
Niels 已提交
2083
    */
N
Niels 已提交
2084
    bool is_array() const noexcept
N
Niels 已提交
2085 2086 2087 2088
    {
        return m_type == value_t::array;
    }

N
Niels 已提交
2089 2090 2091 2092 2093
    /*!
    @brief return whether value is a string

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

N
Niels 已提交
2094
    @return `true` if type is string, `false` otherwise.
N
Niels 已提交
2095 2096 2097 2098

    @complexity Constant.

    @liveexample{The following code exemplifies @ref is_string for all JSON
N
Niels 已提交
2099
    types.,is_string}
N
Niels 已提交
2100

N
Niels 已提交
2101
    @since version 1.0.0
N
Niels 已提交
2102
    */
N
Niels 已提交
2103
    bool is_string() const noexcept
N
Niels 已提交
2104 2105 2106 2107
    {
        return m_type == value_t::string;
    }

N
Niels 已提交
2108 2109 2110 2111 2112 2113
    /*!
    @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 已提交
2114 2115 2116 2117
    @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 已提交
2118 2119 2120 2121
    @return `true` if type is discarded, `false` otherwise.

    @complexity Constant.

N
Niels 已提交
2122 2123
    @liveexample{The following code exemplifies @ref is_discarded for all JSON
    types.,is_discarded}
N
Niels 已提交
2124

N
Niels 已提交
2125
    @since version 1.0.0
N
Niels 已提交
2126
    */
N
Niels 已提交
2127
    bool is_discarded() const noexcept
N
Niels 已提交
2128 2129 2130 2131
    {
        return m_type == value_t::discarded;
    }

N
Niels 已提交
2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143
    /*!
    @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.

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

N
Niels 已提交
2145
    @since version 1.0.0
N
Niels 已提交
2146
    */
N
Niels 已提交
2147
    operator value_t() const noexcept
N
Niels 已提交
2148 2149 2150 2151
    {
        return m_type;
    }

N
Niels 已提交
2152 2153
    /// @}

N
Niels 已提交
2154
  private:
N
Niels 已提交
2155 2156 2157
    //////////////////
    // value access //
    //////////////////
N
Niels 已提交
2158

N
Niels 已提交
2159
    /// get an object (explicit)
N
Niels 已提交
2160 2161
    template <class T, typename
              std::enable_if<
N
Niels 已提交
2162
                  std::is_convertible<typename object_t::key_type, typename T::key_type>::value and
N
Niels 已提交
2163
                  std::is_convertible<basic_json_t, typename T::mapped_type>::value
N
Niels 已提交
2164
                  , int>::type = 0>
N
Niels 已提交
2165
    T get_impl(T*) const
N
Niels 已提交
2166
    {
2167 2168 2169 2170 2171 2172 2173 2174
        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 已提交
2175 2176 2177
    }

    /// get an object (explicit)
N
Niels 已提交
2178
    object_t get_impl(object_t*) const
N
Niels 已提交
2179
    {
2180 2181 2182 2183 2184 2185 2186 2187
        if (is_object())
        {
            return *(m_value.object);
        }
        else
        {
            throw std::domain_error("type must be object, but is " + type_name());
        }
N
Niels 已提交
2188 2189
    }

N
Niels 已提交
2190
    /// get an array (explicit)
N
Niels 已提交
2191 2192
    template <class T, typename
              std::enable_if<
N
Niels 已提交
2193 2194
                  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 已提交
2195 2196
                  not std::is_arithmetic<T>::value and
                  not std::is_convertible<std::string, T>::value and
2197
                  not has_mapped_type<T>::value
N
Niels 已提交
2198
                  , int>::type = 0>
N
Niels 已提交
2199
    T get_impl(T*) const
N
Niels 已提交
2200
    {
N
cleanup  
Niels 已提交
2201
        if (is_array())
N
Niels 已提交
2202
        {
2203 2204 2205
            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 已提交
2206
            {
2207 2208 2209 2210 2211 2212 2213
                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 已提交
2214 2215 2216
        }
    }

N
Niels 已提交
2217 2218
    /// get an array (explicit)
    template <class T, typename
N
Niels 已提交
2219
              std::enable_if<
N
Niels 已提交
2220 2221
                  std::is_convertible<basic_json_t, T>::value and
                  not std::is_same<basic_json_t, T>::value
N
Niels 已提交
2222
                  , int>::type = 0>
N
Niels 已提交
2223
    std::vector<T> get_impl(std::vector<T>*) const
N
Niels 已提交
2224
    {
N
cleanup  
Niels 已提交
2225
        if (is_array())
N
Niels 已提交
2226
        {
2227 2228 2229 2230
            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 已提交
2231
            {
2232 2233 2234 2235 2236 2237 2238
                return i.get<T>();
            });
            return to_vector;
        }
        else
        {
            throw std::domain_error("type must be array, but is " + type_name());
N
Niels 已提交
2239 2240 2241
        }
    }

N
Niels 已提交
2242 2243 2244 2245
    /// get an array (explicit)
    template <class T, typename
              std::enable_if<
                  std::is_same<basic_json, typename T::value_type>::value and
2246
                  not has_mapped_type<T>::value
N
Niels 已提交
2247
                  , int>::type = 0>
N
Niels 已提交
2248
    T get_impl(T*) const
N
Niels 已提交
2249
    {
2250 2251 2252 2253 2254 2255 2256 2257
        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 已提交
2258 2259
    }

N
Niels 已提交
2260
    /// get an array (explicit)
N
Niels 已提交
2261
    array_t get_impl(array_t*) const
N
Niels 已提交
2262
    {
2263 2264 2265 2266 2267 2268 2269 2270
        if (is_array())
        {
            return *(m_value.array);
        }
        else
        {
            throw std::domain_error("type must be array, but is " + type_name());
        }
N
Niels 已提交
2271 2272 2273
    }

    /// get a string (explicit)
N
Niels 已提交
2274 2275
    template <typename T, typename
              std::enable_if<
N
Niels 已提交
2276 2277
                  std::is_convertible<string_t, T>::value
                  , int>::type = 0>
N
Niels 已提交
2278
    T get_impl(T*) const
N
Niels 已提交
2279
    {
2280 2281 2282 2283 2284 2285 2286 2287
        if (is_string())
        {
            return *m_value.string;
        }
        else
        {
            throw std::domain_error("type must be string, but is " + type_name());
        }
N
Niels 已提交
2288 2289
    }

N
Niels 已提交
2290
    /// get a number (explicit)
N
Niels 已提交
2291 2292
    template<typename T, typename
             std::enable_if<
N
Niels 已提交
2293 2294
                 std::is_arithmetic<T>::value
                 , int>::type = 0>
N
Niels 已提交
2295
    T get_impl(T*) const
N
Niels 已提交
2296 2297 2298
    {
        switch (m_type)
        {
2299
            case value_t::number_integer:
N
Niels 已提交
2300
            {
N
Niels 已提交
2301
                return static_cast<T>(m_value.number_integer);
N
Niels 已提交
2302
            }
2303 2304

            case value_t::number_float:
N
Niels 已提交
2305
            {
N
Niels 已提交
2306
                return static_cast<T>(m_value.number_float);
N
Niels 已提交
2307
            }
2308

N
Niels 已提交
2309
            default:
N
Niels 已提交
2310
            {
N
Niels 已提交
2311
                throw std::domain_error("type must be number, but is " + type_name());
N
Niels 已提交
2312 2313 2314 2315 2316
            }
        }
    }

    /// get a boolean (explicit)
N
Niels 已提交
2317
    boolean_t get_impl(boolean_t*) const
N
Niels 已提交
2318
    {
2319 2320 2321 2322 2323 2324 2325 2326
        if (is_boolean())
        {
            return m_value.boolean;
        }
        else
        {
            throw std::domain_error("type must be boolean, but is " + type_name());
        }
N
Niels 已提交
2327 2328
    }

N
Niels 已提交
2329
    /// get a pointer to the value (object)
N
Niels 已提交
2330
    object_t* get_impl_ptr(object_t*) noexcept
N
Niels 已提交
2331 2332 2333 2334
    {
        return is_object() ? m_value.object : nullptr;
    }

N
Niels 已提交
2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346
    /// get a pointer to the value (object)
    const object_t* get_impl_ptr(const object_t*) const noexcept
    {
        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 已提交
2347
    /// get a pointer to the value (array)
N
Niels 已提交
2348
    const array_t* get_impl_ptr(const array_t*) const noexcept
N
Niels 已提交
2349 2350 2351 2352 2353
    {
        return is_array() ? m_value.array : nullptr;
    }

    /// get a pointer to the value (string)
N
Niels 已提交
2354 2355 2356 2357 2358 2359 2360
    string_t* get_impl_ptr(string_t*) noexcept
    {
        return is_string() ? m_value.string : nullptr;
    }

    /// get a pointer to the value (string)
    const string_t* get_impl_ptr(const string_t*) const noexcept
N
Niels 已提交
2361 2362 2363 2364 2365
    {
        return is_string() ? m_value.string : nullptr;
    }

    /// get a pointer to the value (boolean)
N
Niels 已提交
2366 2367 2368 2369 2370 2371 2372
    boolean_t* get_impl_ptr(boolean_t*) noexcept
    {
        return is_boolean() ? &m_value.boolean : nullptr;
    }

    /// get a pointer to the value (boolean)
    const boolean_t* get_impl_ptr(const boolean_t*) const noexcept
N
Niels 已提交
2373 2374 2375 2376 2377
    {
        return is_boolean() ? &m_value.boolean : nullptr;
    }

    /// get a pointer to the value (integer number)
N
Niels 已提交
2378 2379 2380 2381 2382 2383 2384
    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)
    const number_integer_t* get_impl_ptr(const number_integer_t*) const noexcept
N
Niels 已提交
2385 2386 2387 2388 2389
    {
        return is_number_integer() ? &m_value.number_integer : nullptr;
    }

    /// get a pointer to the value (floating-point number)
N
Niels 已提交
2390 2391 2392 2393 2394 2395 2396
    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)
    const number_float_t* get_impl_ptr(const number_float_t*) const noexcept
N
Niels 已提交
2397 2398 2399 2400
    {
        return is_number_float() ? &m_value.number_float : nullptr;
    }

N
Niels 已提交
2401
  public:
N
Niels 已提交
2402 2403 2404 2405

    /// @name value access
    /// @{

N
Niels 已提交
2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417
    /*!
    @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 已提交
2418
    to JSON; example: `"type must be object, but is null"`
N
Niels 已提交
2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435

    @complexity Linear in the size of the JSON value.

    @liveexample{The example below shows serveral conversions from JSON values
    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++
    assiciative containers such as `std::unordered_map<std::string\,
    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 已提交
2436

N
Niels 已提交
2437
    @since version 1.0.0
N
Niels 已提交
2438 2439 2440 2441 2442 2443
    */
    template<typename ValueType, typename
             std::enable_if<
                 not std::is_pointer<ValueType>::value
                 , int>::type = 0>
    ValueType get() const
N
Niels 已提交
2444
    {
N
Niels 已提交
2445
        return get_impl(static_cast<ValueType*>(nullptr));
N
Niels 已提交
2446 2447
    }

N
Niels 已提交
2448 2449 2450 2451 2452 2453
    /*!
    @brief get a pointer value (explicit)

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

N
Niels 已提交
2454
    @warning The pointer becomes invalid if the underlying JSON object changes.
N
Niels 已提交
2455 2456 2457 2458 2459

    @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref
    object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, or @ref
    number_float_t.

N
Niels 已提交
2460 2461
    @return pointer to the internally stored JSON value if the requested
    pointer type @a PointerType fits to the JSON value; `nullptr` otherwise
N
Niels 已提交
2462 2463 2464 2465 2466 2467 2468 2469 2470

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

N
Niels 已提交
2472
    @since version 1.0.0
N
Niels 已提交
2473 2474 2475 2476 2477
    */
    template<typename PointerType, typename
             std::enable_if<
                 std::is_pointer<PointerType>::value
                 , int>::type = 0>
N
Niels 已提交
2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492
    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>
    const PointerType get() const noexcept
N
Niels 已提交
2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510
    {
        // delegate the call to get_ptr
        return get_ptr<PointerType>();
    }

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

    Implict pointer access to the internally stored JSON value. No copies are
    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
    object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, or @ref
    number_float_t.

N
Niels 已提交
2511 2512
    @return pointer to the internally stored JSON value if the requested
    pointer type @a PointerType fits to the JSON value; `nullptr` otherwise
N
Niels 已提交
2513 2514 2515 2516 2517 2518 2519

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

N
Niels 已提交
2521
    @since version 1.0.0
N
Niels 已提交
2522 2523 2524 2525 2526
    */
    template<typename PointerType, typename
             std::enable_if<
                 std::is_pointer<PointerType>::value
                 , int>::type = 0>
N
Niels 已提交
2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539
    PointerType get_ptr() noexcept
    {
        // 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 已提交
2540
                 and std::is_const<typename std::remove_pointer<PointerType>::type>::value
N
Niels 已提交
2541 2542 2543 2544 2545
                 , int>::type = 0>
    const PointerType get_ptr() const noexcept
    {
        // delegate the call to get_impl_ptr<>() const
        return get_impl_ptr(static_cast<const PointerType>(nullptr));
N
Niels 已提交
2546 2547 2548 2549 2550 2551 2552 2553 2554 2555
    }

    /*!
    @brief get a value (implicit)

    Implict type conversion between the JSON value and a compatible value. The
    call is realized by calling @ref get() const.

    @tparam ValueType non-pointer type compatible to the JSON value, for
    instance `int` for JSON integer numbers, `bool` for JSON booleans, or
N
Niels 已提交
2556 2557 2558
    `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 已提交
2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572

    @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.

    @liveexample{The example below shows serveral conversions from JSON values
    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++
    assiciative containers such as `std::unordered_map<std::string\,
    json>`.,operator__ValueType}
N
Niels 已提交
2573

N
Niels 已提交
2574
    @since version 1.0.0
N
Niels 已提交
2575 2576 2577 2578
    */
    template<typename ValueType, typename
             std::enable_if<
                 not std::is_pointer<ValueType>::value
N
Niels 已提交
2579 2580
                 and not std::is_same<ValueType, typename string_t::value_type>::value
                 and not std::is_same<ValueType, std::initializer_list<typename string_t::value_type>>::value
N
Niels 已提交
2581 2582
                 , int>::type = 0>
    operator ValueType() const
N
Niels 已提交
2583
    {
N
Niels 已提交
2584 2585
        // delegate the call to get<>() const
        return get<ValueType>();
N
Niels 已提交
2586 2587
    }

N
Niels 已提交
2588 2589
    /// @}

N
Niels 已提交
2590 2591 2592 2593 2594

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

N
Niels 已提交
2595 2596 2597
    /// @name element access
    /// @{

N
Niels 已提交
2598 2599 2600 2601 2602 2603 2604 2605 2606 2607
    /*!
    @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 已提交
2608 2609
    @throw std::domain_error if the JSON value is not an array; example:
    `"cannot use at() with string"`
N
Niels 已提交
2610
    @throw std::out_of_range if the index @a idx is out of range of the array;
N
Niels 已提交
2611
    that is, `idx >= size()`; example: `"array index 7 is out of range"`
N
Niels 已提交
2612 2613 2614 2615 2616

    @complexity Constant.

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

N
Niels 已提交
2618
    @since version 1.0.0
N
Niels 已提交
2619
    */
N
Niels 已提交
2620
    reference at(size_type idx)
N
Niels 已提交
2621 2622
    {
        // at only works for arrays
2623 2624
        if (is_array())
        {
N
Niels 已提交
2625 2626 2627 2628 2629 2630 2631 2632 2633
            try
            {
                return m_value.array->at(idx);
            }
            catch (std::out_of_range& e)
            {
                // create better exception explanation
                throw std::out_of_range("array index " + std::to_string(idx) + " is out of range");
            }
2634 2635 2636 2637 2638
        }
        else
        {
            throw std::domain_error("cannot use at() with " + type_name());
        }
N
Niels 已提交
2639 2640
    }

N
Niels 已提交
2641 2642 2643 2644 2645 2646 2647 2648 2649 2650
    /*!
    @brief access specified array element with bounds checking

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

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

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

N
Niels 已提交
2651 2652
    @throw std::domain_error if the JSON value is not an array; example:
    `"cannot use at() with string"`
N
Niels 已提交
2653
    @throw std::out_of_range if the index @a idx is out of range of the array;
N
Niels 已提交
2654
    that is, `idx >= size()`; example: `"array index 7 is out of range"`
N
Niels 已提交
2655 2656 2657 2658 2659

    @complexity Constant.

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

N
Niels 已提交
2661
    @since version 1.0.0
N
Niels 已提交
2662
    */
N
Niels 已提交
2663
    const_reference at(size_type idx) const
N
Niels 已提交
2664 2665
    {
        // at only works for arrays
2666 2667
        if (is_array())
        {
N
Niels 已提交
2668 2669 2670 2671 2672 2673 2674 2675 2676
            try
            {
                return m_value.array->at(idx);
            }
            catch (std::out_of_range& e)
            {
                // create better exception explanation
                throw std::out_of_range("array index " + std::to_string(idx) + " is out of range");
            }
2677 2678 2679 2680 2681
        }
        else
        {
            throw std::domain_error("cannot use at() with " + type_name());
        }
2682 2683
    }

N
Niels 已提交
2684 2685 2686 2687 2688 2689 2690 2691 2692 2693
    /*!
    @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 已提交
2694 2695
    @throw std::domain_error if the JSON value is not an object; example:
    `"cannot use at() with boolean"`
N
Niels 已提交
2696
    @throw std::out_of_range if the key @a key is is not stored in the object;
N
Niels 已提交
2697
    that is, `find(key) == end()`; example: `"key "the fast" not found"`
N
Niels 已提交
2698 2699 2700 2701 2702

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
    written using at.,at__object_t_key_type}
N
Niels 已提交
2703 2704 2705 2706

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

N
Niels 已提交
2708
    @since version 1.0.0
N
Niels 已提交
2709
    */
N
Niels 已提交
2710
    reference at(const typename object_t::key_type& key)
2711 2712
    {
        // at only works for objects
2713 2714
        if (is_object())
        {
N
Niels 已提交
2715 2716 2717 2718 2719 2720 2721 2722 2723
            try
            {
                return m_value.object->at(key);
            }
            catch (std::out_of_range& e)
            {
                // create better exception explanation
                throw std::out_of_range("key '" + key + "' not found");
            }
2724 2725 2726 2727 2728
        }
        else
        {
            throw std::domain_error("cannot use at() with " + type_name());
        }
2729 2730
    }

N
Niels 已提交
2731 2732 2733 2734 2735 2736 2737 2738 2739 2740
    /*!
    @brief access specified object element with bounds checking

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

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

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

N
Niels 已提交
2741 2742
    @throw std::domain_error if the JSON value is not an object; example:
    `"cannot use at() with boolean"`
N
Niels 已提交
2743
    @throw std::out_of_range if the key @a key is is not stored in the object;
N
Niels 已提交
2744
    that is, `find(key) == end()`; example: `"key "the fast" not found"`
N
Niels 已提交
2745 2746 2747 2748 2749

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read using
    at.,at__object_t_key_type_const}
N
Niels 已提交
2750 2751 2752 2753

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

N
Niels 已提交
2755
    @since version 1.0.0
N
Niels 已提交
2756
    */
N
Niels 已提交
2757
    const_reference at(const typename object_t::key_type& key) const
2758 2759
    {
        // at only works for objects
2760 2761
        if (is_object())
        {
N
Niels 已提交
2762 2763 2764 2765 2766 2767 2768 2769 2770
            try
            {
                return m_value.object->at(key);
            }
            catch (std::out_of_range& e)
            {
                // create better exception explanation
                throw std::out_of_range("key '" + key + "' not found");
            }
2771 2772 2773 2774 2775
        }
        else
        {
            throw std::domain_error("cannot use at() with " + type_name());
        }
N
Niels 已提交
2776 2777
    }

N
Niels 已提交
2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790
    /*!
    @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 已提交
2791 2792
    @throw std::domain_error if JSON is not an array or null; example: `"cannot
    use operator[] with null"`
N
Niels 已提交
2793 2794 2795 2796 2797 2798 2799

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

N
Niels 已提交
2801
    @since version 1.0.0
N
Niels 已提交
2802
    */
N
Niels 已提交
2803
    reference operator[](size_type idx)
N
Niels 已提交
2804
    {
N
Niels 已提交
2805
        // implicitly convert null to object
N
cleanup  
Niels 已提交
2806
        if (is_null())
N
Niels 已提交
2807 2808
        {
            m_type = value_t::array;
N
Cleanup  
Niels 已提交
2809
            m_value.array = create<array_t>();
N
Niels 已提交
2810 2811 2812
        }

        // [] only works for arrays
N
cleanup  
Niels 已提交
2813
        if (is_array())
N
Niels 已提交
2814
        {
N
cleanup  
Niels 已提交
2815 2816 2817 2818
            for (size_t i = m_value.array->size(); i <= idx; ++i)
            {
                m_value.array->push_back(basic_json());
            }
N
Niels 已提交
2819

N
cleanup  
Niels 已提交
2820 2821 2822
            return m_value.array->operator[](idx);
        }
        else
N
Niels 已提交
2823
        {
N
cleanup  
Niels 已提交
2824
            throw std::domain_error("cannot use operator[] with " + type_name());
N
Niels 已提交
2825
        }
N
Niels 已提交
2826 2827
    }

N
Niels 已提交
2828 2829 2830 2831 2832 2833 2834 2835 2836
    /*!
    @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 已提交
2837 2838
    @throw std::domain_error if JSON is not an array; example: `"cannot use
    operator[] with null"`
N
Niels 已提交
2839 2840 2841 2842 2843

    @complexity Constant.

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

N
Niels 已提交
2845
    @since version 1.0.0
N
Niels 已提交
2846
    */
N
Niels 已提交
2847
    const_reference operator[](size_type idx) const
N
Niels 已提交
2848 2849
    {
        // at only works for arrays
2850 2851 2852 2853 2854 2855 2856 2857
        if (is_array())
        {
            return m_value.array->operator[](idx);
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
N
Niels 已提交
2858 2859
    }

N
Niels 已提交
2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872
    /*!
    @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 已提交
2873 2874
    @throw std::domain_error if JSON is not an object or null; example:
    `"cannot use operator[] with null"`
N
Niels 已提交
2875 2876 2877 2878 2879

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
    written using the [] operator.,operatorarray__key_type}
N
Niels 已提交
2880 2881 2882 2883

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

N
Niels 已提交
2885
    @since version 1.0.0
N
Niels 已提交
2886
    */
N
Niels 已提交
2887
    reference operator[](const typename object_t::key_type& key)
N
Niels 已提交
2888
    {
N
Niels 已提交
2889
        // implicitly convert null to object
N
cleanup  
Niels 已提交
2890
        if (is_null())
N
Niels 已提交
2891 2892
        {
            m_type = value_t::object;
N
Cleanup  
Niels 已提交
2893
            m_value.object = create<object_t>();
N
Niels 已提交
2894 2895
        }

N
Niels 已提交
2896
        // [] only works for objects
2897 2898 2899 2900 2901 2902 2903 2904
        if (is_object())
        {
            return m_value.object->operator[](key);
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
N
Niels 已提交
2905 2906
    }

2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919
    /*!
    @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.

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

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

N
Niels 已提交
2920 2921
    @throw std::domain_error if JSON is not an object; example: `"cannot use
    operator[] with null"`
2922 2923 2924 2925 2926 2927 2928 2929 2930 2931

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read using
    the [] operator.,operatorarray__key_type_const}

    @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 已提交
2932
    @since version 1.0.0
2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946
    */
    const_reference operator[](const typename object_t::key_type& key) const
    {
        // [] only works for objects
        if (is_object())
        {
            return m_value.object->find(key)->second;
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
    }

N
Niels 已提交
2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961
    /*!
    @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.

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

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

    @return reference to the element at key @a key

N
Niels 已提交
2962 2963
    @throw std::domain_error if JSON is not an object or null; example:
    `"cannot use operator[] with null"`
N
Niels 已提交
2964 2965 2966 2967 2968

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read and
    written using the [] operator.,operatorarray__key_type}
N
Niels 已提交
2969 2970 2971 2972

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

N
Niels 已提交
2974
    @since version 1.0.0
N
Niels 已提交
2975
    */
N
Niels 已提交
2976
    template<typename T, std::size_t n>
N
Niels 已提交
2977
    reference operator[](const T (&key)[n])
N
Niels 已提交
2978
    {
N
Niels 已提交
2979
        // implicitly convert null to object
N
cleanup  
Niels 已提交
2980
        if (is_null())
N
Niels 已提交
2981 2982
        {
            m_type = value_t::object;
N
Niels 已提交
2983
            m_value = value_t::object;
N
Niels 已提交
2984 2985
        }

N
Niels 已提交
2986
        // at only works for objects
2987 2988 2989 2990 2991 2992 2993 2994
        if (is_object())
        {
            return m_value.object->operator[](key);
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
N
Niels 已提交
2995 2996
    }

2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011
    /*!
    @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

N
Niels 已提交
3012 3013
    @throw std::domain_error if JSON is not an object; example: `"cannot use
    operator[] with null"`
3014 3015 3016 3017 3018 3019 3020 3021 3022 3023

    @complexity Logarithmic in the size of the container.

    @liveexample{The example below shows how object elements can be read using
    the [] operator.,operatorarray__key_type_const}

    @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 已提交
3024
    @since version 1.0.0
3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039
    */
    template<typename T, std::size_t n>
    const_reference operator[](const T (&key)[n]) const
    {
        // at only works for objects
        if (is_object())
        {
            return m_value.object->find(key)->second;
        }
        else
        {
            throw std::domain_error("cannot use operator[] with " + type_name());
        }
    }

N
Niels 已提交
3040 3041 3042 3043 3044 3045 3046
    /*!
    @brief access specified object element with default value

    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
3047
    @code {.cpp}
N
Niels 已提交
3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072
    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 已提交
3073 3074
    @throw std::domain_error if JSON is not an object; example: `"cannot use
    value() with null"`
N
Niels 已提交
3075 3076 3077 3078 3079 3080 3081 3082 3083 3084

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

N
Niels 已提交
3086
    @since version 1.0.0
N
Niels 已提交
3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114
    */
    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 已提交
3115
    @brief overload for a default value of type const char*
N
Niels 已提交
3116 3117 3118 3119 3120 3121 3122
    @copydoc basic_json::value()
    */
    string_t value(const typename object_t::key_type& key, const char* default_value) const
    {
        return value(key, string_t(default_value));
    }

N
Niels 已提交
3123 3124 3125 3126 3127 3128
    /*!
    @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 已提交
3129
    @return In case of a structured type (array or object), a reference to the
N
Niels 已提交
3130 3131 3132 3133 3134 3135 3136
    first element is returned. In cast of number, string, or boolean values, a
    reference to the value is returned.

    @complexity Constant.

    @note Calling `front` on an empty container is undefined.

N
Niels 已提交
3137
    @throw std::out_of_range when called on null value
N
Niels 已提交
3138 3139

    @liveexample{The following code shows an example for @ref front.,front}
N
Niels 已提交
3140

N
Niels 已提交
3141
    @since version 1.0.0
N
Niels 已提交
3142
    */
N
Niels 已提交
3143
    reference front()
N
Niels 已提交
3144 3145 3146 3147
    {
        return *begin();
    }

N
Niels 已提交
3148 3149 3150
    /*!
    @copydoc basic_json::front()
    */
N
Niels 已提交
3151
    const_reference front() const
N
Niels 已提交
3152 3153 3154 3155
    {
        return *cbegin();
    }

N
Niels 已提交
3156 3157 3158 3159 3160 3161 3162
    /*!
    @brief access the last element

    Returns a reference to the last element in the container. For a JSON
    container `c`, the expression `c.back()` is equivalent to `{ auto tmp =
    c.end(); --tmp; return *tmp; }`.

N
Niels 已提交
3163
    @return In case of a structured type (array or object), a reference to the
N
Niels 已提交
3164 3165 3166 3167 3168 3169 3170 3171 3172 3173
    last element is returned. In cast of number, string, or boolean values, a
    reference to the value is returned.

    @complexity Constant.

    @note Calling `back` on an empty container is undefined.

    @throw std::out_of_range when called on null value.

    @liveexample{The following code shows an example for @ref back.,back}
N
Niels 已提交
3174

N
Niels 已提交
3175
    @since version 1.0.0
N
Niels 已提交
3176
    */
N
Niels 已提交
3177
    reference back()
N
Niels 已提交
3178 3179 3180 3181 3182 3183
    {
        auto tmp = end();
        --tmp;
        return *tmp;
    }

N
Niels 已提交
3184 3185 3186
    /*!
    @copydoc basic_json::back()
    */
N
Niels 已提交
3187
    const_reference back() const
N
Niels 已提交
3188 3189 3190 3191 3192 3193
    {
        auto tmp = cend();
        --tmp;
        return *tmp;
    }

N
Niels 已提交
3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211
    /*!
    @brief remove element given an iterator

    Removes the element specified by iterator @a pos. Invalidates iterators and
    references at or after the point of the erase, including the end()
    iterator. The iterator @a pos must be valid and dereferenceable. Thus the
    end() iterator (which is valid, but is not dereferencable) cannot be used
    as a value for @a pos.

    If called on a primitive type other than null, the resulting JSON value
    will be `null`.

    @param[in] pos iterator to the element to remove
    @return Iterator following the last removed element. If the iterator @a pos
    refers to the last element, the end() iterator is returned.

    @tparam InteratorType an @ref iterator or @ref const_iterator

N
Niels 已提交
3212 3213
    @throw std::domain_error if called on a `null` value; example: `"cannot use
    erase() with null"`
N
Niels 已提交
3214
    @throw std::domain_error if called on an iterator which does not belong to
N
Niels 已提交
3215
    the current JSON value; example: `"iterator does not fit current value"`
N
Niels 已提交
3216
    @throw std::out_of_range if called on a primitive type with invalid
N
Niels 已提交
3217 3218
    iterator (i.e., any iterator which is not end()); example: `"iterator out
    of range"`
N
Niels 已提交
3219 3220 3221 3222 3223 3224 3225 3226 3227

    @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

    @liveexample{The example shows the result of erase for different JSON
    types.,erase__IteratorType}
N
Niels 已提交
3228 3229 3230 3231 3232 3233 3234 3235

    @sa @ref erase(InteratorType, InteratorType) -- removes the elements in the
    given range
    @sa @ref erase(const typename object_t::key_type&) -- remvoes the element
    from an object at the given key
    @sa @ref erase(const size_type) -- removes the element from an array at the
    given index

N
Niels 已提交
3236
    @since version 1.0.0
N
Niels 已提交
3237 3238
    */
    template <class InteratorType, typename
3239
              std::enable_if<
N
Niels 已提交
3240 3241
                  std::is_same<InteratorType, typename basic_json_t::iterator>::value or
                  std::is_same<InteratorType, typename basic_json_t::const_iterator>::value
3242 3243
                  , int>::type
              = 0>
N
Niels 已提交
3244
    InteratorType erase(InteratorType pos)
3245 3246
    {
        // make sure iterator fits the current value
N
Niels 已提交
3247
        if (this != pos.m_object)
3248
        {
N
Niels 已提交
3249
            throw std::domain_error("iterator does not fit current value");
3250 3251
        }

N
Niels 已提交
3252
        InteratorType result = end();
3253 3254 3255 3256

        switch (m_type)
        {
            case value_t::boolean:
3257 3258
            case value_t::number_float:
            case value_t::number_integer:
3259 3260
            case value_t::string:
            {
3261
                if (not pos.m_it.primitive_iterator.is_begin())
3262 3263 3264 3265
                {
                    throw std::out_of_range("iterator out of range");
                }

N
cleanup  
Niels 已提交
3266
                if (is_string())
3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289
                {
                    delete m_value.string;
                    m_value.string = nullptr;
                }

                m_type = value_t::null;
                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 已提交
3290
                throw std::domain_error("cannot use erase() with " + type_name());
3291 3292 3293 3294 3295 3296
            }
        }

        return result;
    }

N
Niels 已提交
3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314
    /*!
    @brief remove elements given an iterator range

    Removes the element specified by the range `[first; last)`. Invalidates
    iterators and references at or after the point of the erase, including the
    end() iterator. The iterator @a first does not need to be dereferenceable
    if `first == last`: erasing an empty range is a no-op.

    If called on a primitive type other than null, the resulting JSON value
    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
    second refers to the last element, the end() iterator is returned.

    @tparam InteratorType an @ref iterator or @ref const_iterator

N
Niels 已提交
3315 3316
    @throw std::domain_error if called on a `null` value; example: `"cannot use
    erase() with null"`
N
Niels 已提交
3317
    @throw std::domain_error if called on iterators which does not belong to
N
Niels 已提交
3318
    the current JSON value; example: `"iterators do not fit current value"`
N
Niels 已提交
3319
    @throw std::out_of_range if called on a primitive type with invalid
N
Niels 已提交
3320 3321
    iterators (i.e., if `first != begin()` and `last != end()`); example:
    `"iterators out of range"`
N
Niels 已提交
3322 3323 3324 3325 3326 3327 3328 3329 3330 3331

    @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

    @liveexample{The example shows the result of erase for different JSON
    types.,erase__IteratorType_IteratorType}
N
Niels 已提交
3332 3333 3334 3335 3336 3337 3338

    @sa @ref erase(InteratorType) -- removes the element at a given position
    @sa @ref erase(const typename object_t::key_type&) -- remvoes the element
    from an object at the given key
    @sa @ref erase(const size_type) -- removes the element from an array at the
    given index

N
Niels 已提交
3339
    @since version 1.0.0
N
Niels 已提交
3340 3341
    */
    template <class InteratorType, typename
3342
              std::enable_if<
N
Niels 已提交
3343 3344
                  std::is_same<InteratorType, typename basic_json_t::iterator>::value or
                  std::is_same<InteratorType, typename basic_json_t::const_iterator>::value
3345 3346
                  , int>::type
              = 0>
N
Niels 已提交
3347
    InteratorType erase(InteratorType first, InteratorType last)
3348 3349
    {
        // make sure iterator fits the current value
N
Niels 已提交
3350
        if (this != first.m_object or this != last.m_object)
3351
        {
N
Niels 已提交
3352
            throw std::domain_error("iterators do not fit current value");
3353 3354
        }

N
Niels 已提交
3355
        InteratorType result = end();
3356 3357 3358 3359

        switch (m_type)
        {
            case value_t::boolean:
3360 3361
            case value_t::number_float:
            case value_t::number_integer:
3362 3363
            case value_t::string:
            {
3364
                if (not first.m_it.primitive_iterator.is_begin() or not last.m_it.primitive_iterator.is_end())
3365 3366 3367 3368
                {
                    throw std::out_of_range("iterators out of range");
                }

N
cleanup  
Niels 已提交
3369
                if (is_string())
3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394
                {
                    delete m_value.string;
                    m_value.string = nullptr;
                }

                m_type = value_t::null;
                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 已提交
3395
                throw std::domain_error("cannot use erase() with " + type_name());
3396 3397 3398 3399 3400 3401
            }
        }

        return result;
    }

N
Niels 已提交
3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412
    /*!
    @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

    @return Number of elements removed. 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).

N
Niels 已提交
3413 3414
    @throw std::domain_error when called on a type other than JSON object;
    example: `"cannot use erase() with null"`
N
Niels 已提交
3415 3416 3417 3418

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

    @liveexample{The example shows the effect of erase.,erase__key_type}
N
Niels 已提交
3419 3420 3421 3422 3423 3424 3425

    @sa @ref erase(InteratorType) -- removes the element at a given position
    @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 已提交
3426
    @since version 1.0.0
N
Niels 已提交
3427
    */
N
Niels 已提交
3428
    size_type erase(const typename object_t::key_type& key)
3429
    {
N
Niels 已提交
3430
        // this erase only works for objects
3431 3432 3433 3434 3435 3436 3437 3438
        if (is_object())
        {
            return m_value.object->erase(key);
        }
        else
        {
            throw std::domain_error("cannot use erase() with " + type_name());
        }
3439 3440
    }

N
Niels 已提交
3441 3442 3443 3444 3445 3446 3447
    /*!
    @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 已提交
3448 3449 3450 3451
    @throw std::domain_error when called on a type other than JSON array;
    example: `"cannot use erase() with null"`
    @throw std::out_of_range when `idx >= size()`; example: `"index out of
    range"`
N
Niels 已提交
3452 3453 3454 3455

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

    @liveexample{The example shows the effect of erase.,erase__size_type}
N
Niels 已提交
3456 3457 3458 3459 3460 3461 3462

    @sa @ref erase(InteratorType) -- removes the element at a given position
    @sa @ref erase(InteratorType, InteratorType) -- removes the elements in the
    given range
    @sa @ref erase(const typename object_t::key_type&) -- remvoes the element
    from an object at the given key

N
Niels 已提交
3463
    @since version 1.0.0
N
Niels 已提交
3464
    */
N
Niels 已提交
3465
    void erase(const size_type idx)
N
Niels 已提交
3466 3467
    {
        // this erase only works for arrays
N
cleanup  
Niels 已提交
3468
        if (is_array())
N
Niels 已提交
3469
        {
N
cleanup  
Niels 已提交
3470 3471 3472 3473
            if (idx >= size())
            {
                throw std::out_of_range("index out of range");
            }
N
Niels 已提交
3474

N
cleanup  
Niels 已提交
3475 3476 3477
            m_value.array->erase(m_value.array->begin() + static_cast<difference_type>(idx));
        }
        else
N
Niels 已提交
3478
        {
N
cleanup  
Niels 已提交
3479
            throw std::domain_error("cannot use erase() with " + type_name());
N
Niels 已提交
3480 3481 3482
        }
    }

N
Niels 已提交
3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496
    /*!
    @brief find an element in a JSON object

    Finds an element in a JSON object with key equivalent to @a key. If the
    element is not found or the JSON value is not an object, end() is returned.

    @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.

    @liveexample{The example shows how find is used.,find__key_type}
N
Niels 已提交
3497

N
Niels 已提交
3498
    @since version 1.0.0
N
Niels 已提交
3499
    */
N
Niels 已提交
3500
    iterator find(typename object_t::key_type key)
N
Niels 已提交
3501 3502 3503
    {
        auto result = end();

N
cleanup  
Niels 已提交
3504
        if (is_object())
N
Niels 已提交
3505 3506 3507 3508 3509 3510 3511
        {
            result.m_it.object_iterator = m_value.object->find(key);
        }

        return result;
    }

N
Niels 已提交
3512 3513 3514 3515
    /*!
    @brief find an element in a JSON object
    @copydoc find(typename object_t::key_type)
    */
N
Niels 已提交
3516
    const_iterator find(typename object_t::key_type key) const
N
Niels 已提交
3517 3518 3519
    {
        auto result = cend();

N
cleanup  
Niels 已提交
3520
        if (is_object())
N
Niels 已提交
3521 3522 3523 3524 3525 3526 3527
        {
            result.m_it.object_iterator = m_value.object->find(key);
        }

        return result;
    }

N
Niels 已提交
3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542
    /*!
    @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.

    @liveexample{The example shows how count is used.,count}
N
Niels 已提交
3543

N
Niels 已提交
3544
    @since version 1.0.0
N
Niels 已提交
3545
    */
N
Niels 已提交
3546
    size_type count(typename object_t::key_type key) const
3547 3548
    {
        // return 0 for all nonobject types
N
Niels 已提交
3549
        return is_object() ? m_value.object->count(key) : 0;
3550 3551
    }

N
Niels 已提交
3552 3553
    /// @}

N
Niels 已提交
3554

N
Niels 已提交
3555 3556 3557 3558
    ///////////////
    // iterators //
    ///////////////

N
Niels 已提交
3559 3560 3561
    /// @name iterators
    /// @{

N
Niels 已提交
3562 3563
    /*!
    @brief returns an iterator to the first element
N
Niels 已提交
3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576

    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.

    @requirement This function satisfies the Container requirements:
    - The complexity is constant.

    @liveexample{The following code shows an example for @ref begin.,begin}
N
Niels 已提交
3577

N
Niels 已提交
3578
    @since version 1.0.0
N
Niels 已提交
3579
    */
N
Niels 已提交
3580
    iterator begin()
N
Niels 已提交
3581 3582 3583 3584 3585 3586
    {
        iterator result(this);
        result.set_begin();
        return result;
    }

N
Niels 已提交
3587
    /*!
N
Niels 已提交
3588
    @copydoc basic_json::cbegin()
N
Niels 已提交
3589
    */
N
Niels 已提交
3590
    const_iterator begin() const
N
Niels 已提交
3591
    {
N
Niels 已提交
3592
        return cbegin();
N
Niels 已提交
3593 3594
    }

N
Niels 已提交
3595 3596
    /*!
    @brief returns a const iterator to the first element
N
Niels 已提交
3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610

    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.

    @requirement This function satisfies the Container requirements:
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).begin()`.

    @liveexample{The following code shows an example for @ref cbegin.,cbegin}
N
Niels 已提交
3611

N
Niels 已提交
3612
    @since version 1.0.0
N
Niels 已提交
3613
    */
N
Niels 已提交
3614
    const_iterator cbegin() const
N
Niels 已提交
3615 3616 3617 3618 3619 3620
    {
        const_iterator result(this);
        result.set_begin();
        return result;
    }

N
Niels 已提交
3621 3622
    /*!
    @brief returns an iterator to one past the last element
N
Niels 已提交
3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635

    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.

    @requirement This function satisfies the Container requirements:
    - The complexity is constant.

    @liveexample{The following code shows an example for @ref end.,end}
N
Niels 已提交
3636

N
Niels 已提交
3637
    @since version 1.0.0
N
Niels 已提交
3638
    */
N
Niels 已提交
3639
    iterator end()
N
Niels 已提交
3640 3641 3642 3643 3644 3645
    {
        iterator result(this);
        result.set_end();
        return result;
    }

N
Niels 已提交
3646
    /*!
N
Niels 已提交
3647
    @copydoc basic_json::cend()
N
Niels 已提交
3648
    */
N
Niels 已提交
3649
    const_iterator end() const
N
Niels 已提交
3650
    {
N
Niels 已提交
3651
        return cend();
N
Niels 已提交
3652 3653
    }

N
Niels 已提交
3654 3655
    /*!
    @brief returns a const iterator to one past the last element
N
Niels 已提交
3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669

    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.

    @requirement This function satisfies the Container requirements:
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).end()`.

    @liveexample{The following code shows an example for @ref cend.,cend}
N
Niels 已提交
3670

N
Niels 已提交
3671
    @since version 1.0.0
N
Niels 已提交
3672
    */
N
Niels 已提交
3673
    const_iterator cend() const
N
Niels 已提交
3674 3675 3676 3677 3678 3679
    {
        const_iterator result(this);
        result.set_end();
        return result;
    }

N
Niels 已提交
3680
    /*!
N
Niels 已提交
3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693
    @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.

    @requirement This function satisfies the ReversibleContainer requirements:
    - The complexity is constant.
    - Has the semantics of `reverse_iterator(end())`.

    @liveexample{The following code shows an example for @ref rbegin.,rbegin}
N
Niels 已提交
3694

N
Niels 已提交
3695
    @since version 1.0.0
N
Niels 已提交
3696
    */
N
Niels 已提交
3697
    reverse_iterator rbegin()
N
Niels 已提交
3698 3699 3700 3701
    {
        return reverse_iterator(end());
    }

N
Niels 已提交
3702
    /*!
N
Niels 已提交
3703
    @copydoc basic_json::crbegin()
N
Niels 已提交
3704
    */
N
Niels 已提交
3705
    const_reverse_iterator rbegin() const
N
Niels 已提交
3706
    {
N
Niels 已提交
3707
        return crbegin();
N
Niels 已提交
3708 3709
    }

N
Niels 已提交
3710
    /*!
N
Niels 已提交
3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724
    @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.

    @requirement This function satisfies the ReversibleContainer requirements:
    - The complexity is constant.
    - Has the semantics of `reverse_iterator(begin())`.

    @liveexample{The following code shows an example for @ref rend.,rend}
N
Niels 已提交
3725

N
Niels 已提交
3726
    @since version 1.0.0
N
Niels 已提交
3727
    */
N
Niels 已提交
3728
    reverse_iterator rend()
N
Niels 已提交
3729 3730 3731 3732
    {
        return reverse_iterator(begin());
    }

N
Niels 已提交
3733
    /*!
N
Niels 已提交
3734
    @copydoc basic_json::crend()
N
Niels 已提交
3735
    */
N
Niels 已提交
3736
    const_reverse_iterator rend() const
N
Niels 已提交
3737
    {
N
Niels 已提交
3738
        return crend();
N
Niels 已提交
3739 3740
    }

N
Niels 已提交
3741
    /*!
N
Niels 已提交
3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755
    @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.

    @requirement This function satisfies the ReversibleContainer requirements:
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).rbegin()`.

    @liveexample{The following code shows an example for @ref crbegin.,crbegin}
N
Niels 已提交
3756

N
Niels 已提交
3757
    @since version 1.0.0
N
Niels 已提交
3758
    */
N
Niels 已提交
3759
    const_reverse_iterator crbegin() const
N
Niels 已提交
3760 3761 3762 3763
    {
        return const_reverse_iterator(cend());
    }

N
Niels 已提交
3764
    /*!
N
Niels 已提交
3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778
    @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.

    @requirement This function satisfies the ReversibleContainer requirements:
    - The complexity is constant.
    - Has the semantics of `const_cast<const basic_json&>(*this).rend()`.

    @liveexample{The following code shows an example for @ref crend.,crend}
N
Niels 已提交
3779

N
Niels 已提交
3780
    @since version 1.0.0
N
Niels 已提交
3781
    */
N
Niels 已提交
3782
    const_reverse_iterator crend() const
N
Niels 已提交
3783 3784 3785 3786
    {
        return const_reverse_iterator(cbegin());
    }

N
cleanup  
Niels 已提交
3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798
  private:
    // forward declaration
    template<typename IteratorType> class iteration_proxy;

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

    This functuion allows to access @ref iterator::key() and @ref
    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 已提交
3799 3800 3801

    @note The name of this function is not yet final and may change in the
    future.
N
cleanup  
Niels 已提交
3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815
    */
    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 已提交
3816 3817
    /// @}

N
Niels 已提交
3818 3819 3820 3821 3822

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

N
Niels 已提交
3823 3824 3825
    /// @name capacity
    /// @{

N
Niels 已提交
3826 3827
    /*!
    @brief checks whether the container is empty
N
Niels 已提交
3828 3829 3830

    Checks if a JSON value has no elements.

N
Niels 已提交
3831
    @return The return value depends on the different types and is
N
Niels 已提交
3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842
            defined as follows:
            Value type  | return value
            ----------- | -------------
            null        | @c true
            boolean     | @c false
            string      | @c false
            number      | @c false
            object      | result of function object_t::empty()
            array       | result of function array_t::empty()

    @complexity Constant, as long as @ref array_t and @ref object_t satisfy the
N
Niels 已提交
3843 3844
    Container concept; that is, their empty() functions have constant
    complexity.
N
Niels 已提交
3845 3846 3847 3848 3849 3850 3851

    @requirement This function satisfies the Container requirements:
    - The complexity is constant.
    - Has the semantics of `begin() == end()`.

    @liveexample{The following code uses @ref empty to check if a @ref json
    object contains any elements.,empty}
N
Niels 已提交
3852

N
Niels 已提交
3853
    @since version 1.0.0
N
Niels 已提交
3854
    */
N
Niels 已提交
3855
    bool empty() const noexcept
N
Niels 已提交
3856 3857 3858
    {
        switch (m_type)
        {
3859
            case value_t::null:
N
Niels 已提交
3860
            {
N
Niels 已提交
3861
                // null values are empty
N
Niels 已提交
3862 3863
                return true;
            }
N
Niels 已提交
3864

3865
            case value_t::array:
N
Niels 已提交
3866 3867 3868
            {
                return m_value.array->empty();
            }
N
Niels 已提交
3869

3870
            case value_t::object:
N
Niels 已提交
3871 3872 3873
            {
                return m_value.object->empty();
            }
N
Niels 已提交
3874

N
Niels 已提交
3875 3876 3877 3878 3879 3880
            default:
            {
                // all other types are nonempty
                return false;
            }
        }
N
Niels 已提交
3881 3882
    }

N
Niels 已提交
3883 3884
    /*!
    @brief returns the number of elements
N
Niels 已提交
3885 3886 3887

    Returns the number of elements in a JSON value.

N
Niels 已提交
3888
    @return The return value depends on the different types and is
N
Niels 已提交
3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899
            defined as follows:
            Value type  | return value
            ----------- | -------------
            null        | @c 0
            boolean     | @c 1
            string      | @c 1
            number      | @c 1
            object      | result of function object_t::size()
            array       | result of function array_t::size()

    @complexity Constant, as long as @ref array_t and @ref object_t satisfy the
N
Niels 已提交
3900
    Container concept; that is, their size() functions have constant complexity.
N
Niels 已提交
3901 3902 3903 3904 3905 3906 3907

    @requirement This function satisfies the Container requirements:
    - The complexity is constant.
    - Has the semantics of `std::distance(begin(), end())`.

    @liveexample{The following code calls @ref size on the different value
    types.,size}
N
Niels 已提交
3908

N
Niels 已提交
3909
    @since version 1.0.0
N
Niels 已提交
3910
    */
N
Niels 已提交
3911
    size_type size() const noexcept
N
Niels 已提交
3912 3913 3914
    {
        switch (m_type)
        {
3915
            case value_t::null:
N
Niels 已提交
3916
            {
N
Niels 已提交
3917
                // null values are empty
N
Niels 已提交
3918 3919
                return 0;
            }
N
Niels 已提交
3920

3921
            case value_t::array:
N
Niels 已提交
3922 3923 3924
            {
                return m_value.array->size();
            }
N
Niels 已提交
3925

3926
            case value_t::object:
N
Niels 已提交
3927 3928 3929
            {
                return m_value.object->size();
            }
N
Niels 已提交
3930

N
Niels 已提交
3931 3932 3933 3934 3935 3936
            default:
            {
                // all other types have size 1
                return 1;
            }
        }
N
Niels 已提交
3937 3938
    }

N
Niels 已提交
3939 3940
    /*!
    @brief returns the maximum possible number of elements
N
Niels 已提交
3941 3942 3943 3944 3945

    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 已提交
3946
    @return The return value depends on the different types and is
N
Niels 已提交
3947 3948 3949
            defined as follows:
            Value type  | return value
            ----------- | -------------
3950 3951 3952 3953
            null        | @c 0 (same as size())
            boolean     | @c 1 (same as size())
            string      | @c 1 (same as size())
            number      | @c 1 (same as size())
N
Niels 已提交
3954 3955 3956 3957
            object      | result of function object_t::max_size()
            array       | result of function array_t::max_size()

    @complexity Constant, as long as @ref array_t and @ref object_t satisfy the
N
Niels 已提交
3958 3959
    Container concept; that is, their max_size() functions have constant
    complexity.
N
Niels 已提交
3960 3961 3962 3963 3964 3965 3966 3967

    @requirement This function satisfies the Container requirements:
    - The complexity is constant.
    - Has the semantics of returning `b.size()` where `b` is the largest
      possible JSON value.

    @liveexample{The following code calls @ref max_size on the different value
    types. Note the output is implementation specific.,max_size}
N
Niels 已提交
3968

N
Niels 已提交
3969
    @since version 1.0.0
N
Niels 已提交
3970
    */
N
Niels 已提交
3971
    size_type max_size() const noexcept
N
Niels 已提交
3972 3973 3974
    {
        switch (m_type)
        {
3975
            case value_t::array:
N
Niels 已提交
3976 3977 3978
            {
                return m_value.array->max_size();
            }
N
Niels 已提交
3979

3980
            case value_t::object:
N
Niels 已提交
3981 3982 3983
            {
                return m_value.object->max_size();
            }
N
Niels 已提交
3984

N
Niels 已提交
3985 3986
            default:
            {
3987 3988
                // all other types have max_size() == size()
                return size();
N
Niels 已提交
3989 3990
            }
        }
N
Niels 已提交
3991 3992
    }

N
Niels 已提交
3993 3994
    /// @}

N
Niels 已提交
3995 3996 3997 3998 3999

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

N
Niels 已提交
4000 4001 4002
    /// @name modifiers
    /// @{

N
Niels 已提交
4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023
    /*!
    @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.

    @liveexample{The example below shows the effect of @ref clear to different
N
Niels 已提交
4024
    JSON types.,clear}
N
Niels 已提交
4025

N
Niels 已提交
4026
    @since version 1.0.0
N
Niels 已提交
4027
    */
N
Niels 已提交
4028
    void clear() noexcept
N
Niels 已提交
4029 4030 4031
    {
        switch (m_type)
        {
4032
            case value_t::number_integer:
N
Niels 已提交
4033
            {
N
Niels 已提交
4034
                m_value.number_integer = 0;
N
Niels 已提交
4035 4036
                break;
            }
N
Niels 已提交
4037

4038
            case value_t::number_float:
N
Niels 已提交
4039
            {
N
Niels 已提交
4040
                m_value.number_float = 0.0;
N
Niels 已提交
4041 4042
                break;
            }
N
Niels 已提交
4043

4044
            case value_t::boolean:
N
Niels 已提交
4045
            {
N
Niels 已提交
4046
                m_value.boolean = false;
N
Niels 已提交
4047 4048
                break;
            }
N
Niels 已提交
4049

4050
            case value_t::string:
N
Niels 已提交
4051 4052 4053 4054
            {
                m_value.string->clear();
                break;
            }
N
Niels 已提交
4055

4056
            case value_t::array:
N
Niels 已提交
4057 4058 4059 4060
            {
                m_value.array->clear();
                break;
            }
N
Niels 已提交
4061

4062
            case value_t::object:
N
Niels 已提交
4063 4064 4065 4066
            {
                m_value.object->clear();
                break;
            }
4067 4068 4069 4070 4071

            default:
            {
                break;
            }
N
Niels 已提交
4072 4073 4074
        }
    }

4075 4076 4077
    /*!
    @brief add an object to an array

4078
    Appends the given element @a val to the end of the JSON value. If the
4079
    function is called on a JSON null value, an empty array is created before
4080
    appending @a val.
4081

4082
    @param val the value to add to the JSON array
4083

N
Niels 已提交
4084 4085
    @throw std::domain_error when called on a type other than JSON array or
    null; example: `"cannot use push_back() with number"`
4086 4087 4088 4089 4090 4091

    @complexity Amortized constant.

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

N
Niels 已提交
4093
    @since version 1.0.0
4094
    */
4095
    void push_back(basic_json&& val)
N
Niels 已提交
4096 4097
    {
        // push_back only works for null objects or arrays
N
cleanup  
Niels 已提交
4098
        if (not(is_null() or is_array()))
N
Niels 已提交
4099
        {
N
Niels 已提交
4100
            throw std::domain_error("cannot use push_back() with " + type_name());
N
Niels 已提交
4101 4102 4103
        }

        // transform null object into an array
N
cleanup  
Niels 已提交
4104
        if (is_null())
N
Niels 已提交
4105 4106
        {
            m_type = value_t::array;
N
Niels 已提交
4107
            m_value = value_t::array;
N
Niels 已提交
4108 4109 4110
        }

        // add element to array (move semantics)
4111
        m_value.array->push_back(std::move(val));
N
Niels 已提交
4112
        // invalidate object
4113
        val.m_type = value_t::null;
N
Niels 已提交
4114 4115
    }

4116 4117 4118 4119
    /*!
    @brief add an object to an array
    @copydoc push_back(basic_json&&)
    */
4120
    reference operator+=(basic_json&& val)
N
Niels 已提交
4121
    {
4122
        push_back(std::move(val));
N
Niels 已提交
4123 4124 4125
        return *this;
    }

4126 4127 4128 4129
    /*!
    @brief add an object to an array
    @copydoc push_back(basic_json&&)
    */
4130
    void push_back(const basic_json& val)
N
Niels 已提交
4131 4132
    {
        // push_back only works for null objects or arrays
N
cleanup  
Niels 已提交
4133
        if (not(is_null() or is_array()))
N
Niels 已提交
4134
        {
N
Niels 已提交
4135
            throw std::domain_error("cannot use push_back() with " + type_name());
N
Niels 已提交
4136 4137 4138
        }

        // transform null object into an array
N
cleanup  
Niels 已提交
4139
        if (is_null())
N
Niels 已提交
4140 4141
        {
            m_type = value_t::array;
N
Niels 已提交
4142
            m_value = value_t::array;
N
Niels 已提交
4143 4144 4145
        }

        // add element to array
4146
        m_value.array->push_back(val);
N
Niels 已提交
4147 4148
    }

4149 4150 4151 4152
    /*!
    @brief add an object to an array
    @copydoc push_back(basic_json&&)
    */
4153
    reference operator+=(const basic_json& val)
N
Niels 已提交
4154
    {
4155
        push_back(val);
N
Niels 已提交
4156 4157 4158
        return *this;
    }

4159 4160 4161
    /*!
    @brief add an object to an object

4162
    Inserts the given element @a val to the JSON object. If the function is
4163
    called on a JSON null value, an empty object is created before inserting @a
4164
    val.
4165

4166
    @param[in] val the value to add to the JSON object
4167 4168

    @throw std::domain_error when called on a type other than JSON object or
N
Niels 已提交
4169
    null; example: `"cannot use push_back() with number"`
4170 4171 4172 4173 4174 4175

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

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

N
Niels 已提交
4177
    @since version 1.0.0
4178
    */
4179
    void push_back(const typename object_t::value_type& val)
N
Niels 已提交
4180 4181
    {
        // push_back only works for null objects or objects
N
cleanup  
Niels 已提交
4182
        if (not(is_null() or is_object()))
N
Niels 已提交
4183
        {
N
Niels 已提交
4184
            throw std::domain_error("cannot use push_back() with " + type_name());
N
Niels 已提交
4185 4186 4187
        }

        // transform null object into an object
N
cleanup  
Niels 已提交
4188
        if (is_null())
N
Niels 已提交
4189 4190
        {
            m_type = value_t::object;
N
Niels 已提交
4191
            m_value = value_t::object;
N
Niels 已提交
4192 4193 4194
        }

        // add element to array
4195
        m_value.object->insert(val);
N
Niels 已提交
4196 4197
    }

4198 4199 4200 4201
    /*!
    @brief add an object to an object
    @copydoc push_back(const typename object_t::value_type&)
    */
4202
    reference operator+=(const typename object_t::value_type& val)
N
Niels 已提交
4203
    {
4204 4205
        push_back(val);
        return operator[](val.first);
N
Niels 已提交
4206 4207
    }

N
Niels 已提交
4208 4209 4210
    /*!
    @brief inserts element

4211
    Inserts element @a val before iterator @a pos.
N
Niels 已提交
4212 4213 4214

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

N
Niels 已提交
4218 4219
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
4220 4221
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
4222 4223 4224 4225 4226

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

    @liveexample{The example shows how insert is used.,insert}
N
Niels 已提交
4227

N
Niels 已提交
4228
    @since version 1.0.0
N
Niels 已提交
4229
    */
4230
    iterator insert(const_iterator pos, const basic_json& val)
N
Niels 已提交
4231 4232
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
4233
        if (is_array())
N
Niels 已提交
4234
        {
N
cleanup  
Niels 已提交
4235 4236 4237 4238 4239
            // 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 已提交
4240

N
cleanup  
Niels 已提交
4241 4242
            // insert to array and return iterator
            iterator result(this);
4243
            result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, val);
N
cleanup  
Niels 已提交
4244 4245 4246
            return result;
        }
        else
N
Niels 已提交
4247
        {
N
cleanup  
Niels 已提交
4248
            throw std::domain_error("cannot use insert() with " + type_name());
N
Niels 已提交
4249 4250 4251 4252 4253 4254 4255
        }
    }

    /*!
    @brief inserts element
    @copydoc insert(const_iterator, const basic_json&)
    */
4256
    iterator insert(const_iterator pos, basic_json&& val)
N
Niels 已提交
4257
    {
4258
        return insert(pos, val);
N
Niels 已提交
4259 4260 4261 4262 4263
    }

    /*!
    @brief inserts elements

4264
    Inserts @a cnt copies of @a val before iterator @a pos.
N
Niels 已提交
4265 4266 4267

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

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

4278
    @complexity Linear in @a cnt plus linear in the distance between @a pos
N
Niels 已提交
4279 4280 4281
    and end of the container.

    @liveexample{The example shows how insert is used.,insert__count}
N
Niels 已提交
4282

N
Niels 已提交
4283
    @since version 1.0.0
N
Niels 已提交
4284
    */
4285
    iterator insert(const_iterator pos, size_type cnt, const basic_json& val)
N
Niels 已提交
4286 4287
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
4288
        if (is_array())
N
Niels 已提交
4289
        {
N
cleanup  
Niels 已提交
4290 4291 4292 4293 4294
            // 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 已提交
4295

N
cleanup  
Niels 已提交
4296 4297
            // insert to array and return iterator
            iterator result(this);
4298
            result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, cnt, val);
N
cleanup  
Niels 已提交
4299 4300 4301
            return result;
        }
        else
N
Niels 已提交
4302
        {
N
cleanup  
Niels 已提交
4303
            throw std::domain_error("cannot use insert() with " + type_name());
N
Niels 已提交
4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316
        }
    }

    /*!
    @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 已提交
4317 4318
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
4319 4320
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
4321
    @throw std::domain_error if @a first and @a last do not belong to the same
N
Niels 已提交
4322
    JSON value; example: `"iterators do not fit"`
N
Niels 已提交
4323
    @throw std::domain_error if @a first or @a last are iterators into
N
Niels 已提交
4324 4325 4326
    container for which insert is called; example: `"passed iterators may not
    belong to container"`

N
Niels 已提交
4327 4328 4329 4330 4331 4332 4333
    @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.

    @liveexample{The example shows how insert is used.,insert__range}
N
Niels 已提交
4334

N
Niels 已提交
4335
    @since version 1.0.0
N
Niels 已提交
4336 4337 4338 4339
    */
    iterator insert(const_iterator pos, const_iterator first, const_iterator last)
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
4340
        if (not is_array())
N
Niels 已提交
4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352
        {
            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");
        }

        if (first.m_object != last.m_object)
        {
N
Niels 已提交
4353
            throw std::domain_error("iterators do not fit");
N
Niels 已提交
4354 4355 4356 4357 4358 4359 4360 4361 4362
        }

        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 已提交
4363 4364 4365 4366
        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 已提交
4367 4368 4369
        return result;
    }

N
Niels 已提交
4370 4371 4372 4373 4374 4375 4376 4377 4378
    /*!
    @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 已提交
4379 4380
    @throw std::domain_error if called on JSON values other than arrays;
    example: `"cannot use insert() with string"`
N
Niels 已提交
4381 4382
    @throw std::domain_error if @a pos is not an iterator of *this; example:
    `"iterator does not fit current value"`
N
Niels 已提交
4383

N
Niels 已提交
4384 4385 4386 4387 4388 4389 4390
    @return iterator pointing to the first element inserted, or @a pos if
    `ilist` is empty

    @complexity Linear in `ilist.size()` plus linear in the distance between @a
    pos and end of the container.

    @liveexample{The example shows how insert is used.,insert__ilist}
N
Niels 已提交
4391

N
Niels 已提交
4392
    @since version 1.0.0
N
Niels 已提交
4393 4394 4395 4396
    */
    iterator insert(const_iterator pos, std::initializer_list<basic_json> ilist)
    {
        // insert only works for arrays
N
cleanup  
Niels 已提交
4397
        if (not is_array())
N
Niels 已提交
4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413
        {
            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 已提交
4414 4415
    /*!
    @brief exchanges the values
N
Niels 已提交
4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427

    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.

    @liveexample{The example below shows how JSON arrays can be
    swapped.,swap__reference}
N
Niels 已提交
4428

N
Niels 已提交
4429
    @since version 1.0.0
N
Niels 已提交
4430
    */
N
Niels 已提交
4431
    void swap(reference other) noexcept (
N
Niels 已提交
4432 4433 4434 4435 4436
        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 已提交
4437 4438 4439 4440 4441
    {
        std::swap(m_type, other.m_type);
        std::swap(m_value, other.m_value);
    }

N
Niels 已提交
4442 4443 4444 4445 4446 4447 4448 4449 4450 4451
    /*!
    @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 已提交
4452 4453
    @throw std::domain_error when JSON value is not an array; example: `"cannot
    use swap() with string"`
N
Niels 已提交
4454 4455 4456 4457 4458

    @complexity Constant.

    @liveexample{The example below shows how JSON values can be
    swapped.,swap__array_t}
N
Niels 已提交
4459

N
Niels 已提交
4460
    @since version 1.0.0
N
Niels 已提交
4461
    */
N
Niels 已提交
4462
    void swap(array_t& other)
N
Niels 已提交
4463 4464
    {
        // swap only works for arrays
N
cleanup  
Niels 已提交
4465 4466 4467 4468 4469
        if (is_array())
        {
            std::swap(*(m_value.array), other);
        }
        else
N
Niels 已提交
4470
        {
N
Niels 已提交
4471
            throw std::domain_error("cannot use swap() with " + type_name());
N
Niels 已提交
4472 4473 4474
        }
    }

4475 4476 4477 4478 4479 4480 4481 4482 4483 4484
    /*!
    @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 已提交
4485 4486
    @throw std::domain_error when JSON value is not an object; example:
    `"cannot use swap() with string"`
4487 4488 4489 4490 4491

    @complexity Constant.

    @liveexample{The example below shows how JSON values can be
    swapped.,swap__object_t}
N
Niels 已提交
4492

N
Niels 已提交
4493
    @since version 1.0.0
4494
    */
N
Niels 已提交
4495
    void swap(object_t& other)
N
Niels 已提交
4496 4497
    {
        // swap only works for objects
N
cleanup  
Niels 已提交
4498 4499 4500 4501 4502
        if (is_object())
        {
            std::swap(*(m_value.object), other);
        }
        else
N
Niels 已提交
4503
        {
N
Niels 已提交
4504
            throw std::domain_error("cannot use swap() with " + type_name());
N
Niels 已提交
4505 4506 4507
        }
    }

4508 4509 4510 4511 4512 4513 4514 4515 4516 4517
    /*!
    @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 已提交
4518 4519
    @throw std::domain_error when JSON value is not a string; example: `"cannot
    use swap() with boolean"`
4520 4521 4522 4523 4524

    @complexity Constant.

    @liveexample{The example below shows how JSON values can be
    swapped.,swap__string_t}
N
Niels 已提交
4525

N
Niels 已提交
4526
    @since version 1.0.0
4527
    */
N
Niels 已提交
4528
    void swap(string_t& other)
N
Niels 已提交
4529 4530
    {
        // swap only works for strings
N
cleanup  
Niels 已提交
4531 4532 4533 4534 4535
        if (is_string())
        {
            std::swap(*(m_value.string), other);
        }
        else
N
Niels 已提交
4536
        {
N
Niels 已提交
4537
            throw std::domain_error("cannot use swap() with " + type_name());
N
Niels 已提交
4538 4539 4540
        }
    }

N
Niels 已提交
4541 4542
    /// @}

N
Niels 已提交
4543 4544 4545 4546 4547

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

N
Niels 已提交
4548 4549 4550
    /// @name lexicographical comparison operators
    /// @{

N
Niels 已提交
4551 4552 4553 4554 4555 4556 4557
  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 已提交
4558

N
Niels 已提交
4559
    @since version 1.0.0
N
Niels 已提交
4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583
    */
    friend bool operator<(const value_t lhs, const value_t rhs)
    {
        static constexpr std::array<uint8_t, 7> order = {{
                0, // null
                3, // object
                4, // array
                5, // string
                1, // boolean
                2, // integer
                2  // float
            }
        };

        // 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 已提交
4584 4585
    /*!
    @brief comparison: equal
N
Niels 已提交
4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601

    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.

4602 4603
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__equal}
N
Niels 已提交
4604

N
Niels 已提交
4605
    @since version 1.0.0
N
Niels 已提交
4606
    */
N
Niels 已提交
4607
    friend bool operator==(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
4608
    {
F
Florian Weber 已提交
4609 4610
        const auto lhs_type = lhs.type();
        const auto rhs_type = rhs.type();
N
Niels 已提交
4611

F
Florian Weber 已提交
4612
        if (lhs_type == rhs_type)
N
Niels 已提交
4613
        {
F
Florian Weber 已提交
4614
            switch (lhs_type)
N
Niels 已提交
4615
            {
4616
                case value_t::array:
N
Niels 已提交
4617
                    return *lhs.m_value.array == *rhs.m_value.array;
4618
                case value_t::object:
N
Niels 已提交
4619
                    return *lhs.m_value.object == *rhs.m_value.object;
4620
                case value_t::null:
N
Niels 已提交
4621
                    return true;
4622
                case value_t::string:
N
Niels 已提交
4623
                    return *lhs.m_value.string == *rhs.m_value.string;
4624
                case value_t::boolean:
N
Niels 已提交
4625
                    return lhs.m_value.boolean == rhs.m_value.boolean;
4626
                case value_t::number_integer:
N
Niels 已提交
4627
                    return lhs.m_value.number_integer == rhs.m_value.number_integer;
4628
                case value_t::number_float:
4629
                    return approx(lhs.m_value.number_float, rhs.m_value.number_float);
4630
                default:
N
Niels 已提交
4631
                    return false;
N
Niels 已提交
4632 4633
            }
        }
F
Florian Weber 已提交
4634 4635
        else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
        {
4636 4637
            return approx(static_cast<number_float_t>(lhs.m_value.number_integer),
                          rhs.m_value.number_float);
F
Florian Weber 已提交
4638 4639 4640 4641 4642 4643
        }
        else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
        {
            return approx(lhs.m_value.number_float,
                          static_cast<number_float_t>(rhs.m_value.number_integer));
        }
N
Niels 已提交
4644 4645 4646
        return false;
    }

N
Niels 已提交
4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661
    /*!
    @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 已提交
4662

N
Niels 已提交
4663
    @since version 1.0.0
N
Niels 已提交
4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678
    */
    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 已提交
4679 4680
    /*!
    @brief comparison: not equal
N
Niels 已提交
4681 4682 4683 4684 4685 4686 4687 4688 4689

    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.

4690 4691
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__notequal}
N
Niels 已提交
4692

N
Niels 已提交
4693
    @since version 1.0.0
N
Niels 已提交
4694
    */
N
Niels 已提交
4695
    friend bool operator!=(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
4696 4697 4698 4699
    {
        return not (lhs == rhs);
    }

N
Niels 已提交
4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714
    /*!
    @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 已提交
4715

N
Niels 已提交
4716
    @since version 1.0.0
N
Niels 已提交
4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731
    */
    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 已提交
4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750
    /*!
    @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.

4751 4752
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__less}
N
Niels 已提交
4753

N
Niels 已提交
4754
    @since version 1.0.0
N
Niels 已提交
4755
    */
N
Niels 已提交
4756
    friend bool operator<(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
4757
    {
F
Florian Weber 已提交
4758 4759
        const auto lhs_type = lhs.type();
        const auto rhs_type = rhs.type();
N
Niels 已提交
4760

F
Florian Weber 已提交
4761
        if (lhs_type == rhs_type)
N
Niels 已提交
4762
        {
F
Florian Weber 已提交
4763
            switch (lhs_type)
N
Niels 已提交
4764
            {
4765
                case value_t::array:
N
Niels 已提交
4766
                    return *lhs.m_value.array < *rhs.m_value.array;
4767
                case value_t::object:
N
Niels 已提交
4768
                    return *lhs.m_value.object < *rhs.m_value.object;
4769
                case value_t::null:
N
Niels 已提交
4770
                    return false;
4771
                case value_t::string:
N
Niels 已提交
4772
                    return *lhs.m_value.string < *rhs.m_value.string;
4773
                case value_t::boolean:
N
Niels 已提交
4774
                    return lhs.m_value.boolean < rhs.m_value.boolean;
4775
                case value_t::number_integer:
N
Niels 已提交
4776
                    return lhs.m_value.number_integer < rhs.m_value.number_integer;
4777
                case value_t::number_float:
N
Niels 已提交
4778
                    return lhs.m_value.number_float < rhs.m_value.number_float;
4779
                default:
N
Niels 已提交
4780
                    return false;
N
Niels 已提交
4781 4782
            }
        }
F
Florian Weber 已提交
4783 4784
        else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float)
        {
4785 4786
            return static_cast<number_float_t>(lhs.m_value.number_integer) <
                   rhs.m_value.number_float;
F
Florian Weber 已提交
4787 4788 4789 4790 4791 4792
        }
        else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer)
        {
            return lhs.m_value.number_float <
                   static_cast<number_float_t>(rhs.m_value.number_integer);
        }
N
Niels 已提交
4793

N
Niels 已提交
4794
        // We only reach this line if we cannot compare values. In that case,
N
Niels 已提交
4795 4796 4797
        // we compare types. Note we have to call the operator explicitly,
        // because MSVC has problems otherwise.
        return operator<(lhs_type, rhs_type);
N
Niels 已提交
4798 4799
    }

N
Niels 已提交
4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811
    /*!
    @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.

4812 4813
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__greater}
N
Niels 已提交
4814

N
Niels 已提交
4815
    @since version 1.0.0
N
Niels 已提交
4816
    */
N
Niels 已提交
4817
    friend bool operator<=(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
4818 4819 4820 4821
    {
        return not (rhs < lhs);
    }

N
Niels 已提交
4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833
    /*!
    @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.

4834 4835
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__lessequal}
N
Niels 已提交
4836

N
Niels 已提交
4837
    @since version 1.0.0
N
Niels 已提交
4838
    */
N
Niels 已提交
4839
    friend bool operator>(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
4840 4841 4842 4843
    {
        return not (lhs <= rhs);
    }

N
Niels 已提交
4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855
    /*!
    @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.

4856 4857
    @liveexample{The example demonstrates comparing several JSON
    types.,operator__greaterequal}
N
Niels 已提交
4858

N
Niels 已提交
4859
    @since version 1.0.0
N
Niels 已提交
4860
    */
N
Niels 已提交
4861
    friend bool operator>=(const_reference lhs, const_reference rhs) noexcept
N
Niels 已提交
4862 4863 4864 4865
    {
        return not (lhs < rhs);
    }

N
Niels 已提交
4866 4867
    /// @}

N
Niels 已提交
4868 4869 4870 4871 4872

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

N
Niels 已提交
4873 4874 4875
    /// @name serialization
    /// @{

N
Niels 已提交
4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892
    /*!
    @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)`.

    @param[in,out] o  stream to serialize to
    @param[in] j  JSON value to serialize

    @return the stream @a o

    @complexity Linear.

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

N
Niels 已提交
4896
    @since version 1.0.0
N
Niels 已提交
4897
    */
N
Niels 已提交
4898 4899
    friend std::ostream& operator<<(std::ostream& o, const basic_json& j)
    {
N
Niels 已提交
4900
        // read width member and use it as indentation parameter if nonzero
N
Niels 已提交
4901 4902
        const bool pretty_print = (o.width() > 0);
        const auto indentation = (pretty_print ? o.width() : 0);
N
Niels 已提交
4903

N
Niels 已提交
4904 4905 4906 4907
        // reset width to 0 for subsequent calls to this stream
        o.width(0);

        // do the actual serialization
N
Niels 已提交
4908
        j.dump(o, pretty_print, static_cast<unsigned int>(indentation));
N
Niels 已提交
4909 4910 4911
        return o;
    }

N
Niels 已提交
4912 4913 4914 4915
    /*!
    @brief serialize to stream
    @copydoc operator<<(std::ostream&, const basic_json&)
    */
N
Niels 已提交
4916 4917
    friend std::ostream& operator>>(const basic_json& j, std::ostream& o)
    {
N
Niels 已提交
4918
        return o << j;
N
Niels 已提交
4919 4920
    }

N
Niels 已提交
4921 4922
    /// @}

N
Niels 已提交
4923 4924 4925 4926 4927

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

N
Niels 已提交
4928 4929 4930
    /// @name deserialization
    /// @{

N
Niels 已提交
4931 4932 4933 4934
    /*!
    @brief deserialize from string

    @param[in] s  string to read a serialized JSON value from
N
Niels 已提交
4935 4936 4937
    @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 已提交
4938 4939 4940 4941 4942 4943 4944

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

N
Niels 已提交
4947 4948
    @liveexample{The example below demonstrates the parse function with and
    without callback function.,parse__string__parser_callback_t}
N
Niels 已提交
4949

N
Niels 已提交
4950 4951 4952
    @sa @ref parse(std::istream&, parser_callback_t) for a version that reads
    from an input stream

N
Niels 已提交
4953
    @since version 1.0.0
N
Niels 已提交
4954
    */
N
Niels 已提交
4955
    static basic_json parse(const string_t& s, parser_callback_t cb = nullptr)
N
Niels 已提交
4956
    {
N
Niels 已提交
4957
        return parser(s, cb).parse();
N
Niels 已提交
4958 4959
    }

N
Niels 已提交
4960 4961 4962 4963
    /*!
    @brief deserialize from stream

    @param[in,out] i  stream to read a serialized JSON value from
N
Niels 已提交
4964 4965 4966
    @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 已提交
4967 4968 4969 4970 4971 4972 4973

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

N
Niels 已提交
4976 4977
    @liveexample{The example below demonstrates the parse function with and
    without callback function.,parse__istream__parser_callback_t}
N
Niels 已提交
4978

N
Niels 已提交
4979
    @sa @ref parse(const string_t&, parser_callback_t) for a version that reads
N
Niels 已提交
4980
    from a string
N
Niels 已提交
4981

N
Niels 已提交
4982
    @since version 1.0.0
N
Niels 已提交
4983
    */
N
Niels 已提交
4984
    static basic_json parse(std::istream& i, parser_callback_t cb = nullptr)
N
Niels 已提交
4985
    {
N
Niels 已提交
4986
        return parser(i, cb).parse();
N
Niels 已提交
4987 4988
    }

N
Niels 已提交
4989 4990 4991
    /*!
    @copydoc parse(std::istream&, parser_callback_t)
    */
N
Cleanup  
Niels 已提交
4992 4993 4994 4995 4996
    static basic_json parse(std::istream&& i, parser_callback_t cb = nullptr)
    {
        return parser(i, cb).parse();
    }

N
Niels 已提交
4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009
    /*!
    @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 已提交
5010 5011
    @note A UTF-8 byte order mark is silently ignored.

N
Niels 已提交
5012 5013 5014 5015 5016
    @liveexample{The example below shows how a JSON value is constructed by
    reading a serialization from a stream.,operator_deserialize}

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

N
Niels 已提交
5018
    @since version 1.0.0
N
Niels 已提交
5019 5020
    */
    friend std::istream& operator<<(basic_json& j, std::istream& i)
N
Niels 已提交
5021 5022 5023 5024 5025
    {
        j = parser(i).parse();
        return i;
    }

N
Niels 已提交
5026 5027 5028 5029 5030
    /*!
    @brief deserialize from stream
    @copydoc operator<<(basic_json&, std::istream&)
    */
    friend std::istream& operator>>(std::istream& i, basic_json& j)
N
Niels 已提交
5031 5032 5033 5034 5035
    {
        j = parser(i).parse();
        return i;
    }

N
Niels 已提交
5036 5037
    /// @}

N
Niels 已提交
5038 5039 5040 5041 5042 5043 5044

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

    /// return the type as string
N
Niels 已提交
5045
    string_t type_name() const
N
Niels 已提交
5046 5047 5048
    {
        switch (m_type)
        {
5049
            case value_t::null:
N
Niels 已提交
5050
                return "null";
5051
            case value_t::object:
N
Niels 已提交
5052
                return "object";
5053
            case value_t::array:
N
Niels 已提交
5054
                return "array";
5055
            case value_t::string:
N
Niels 已提交
5056
                return "string";
5057
            case value_t::boolean:
N
Niels 已提交
5058
                return "boolean";
5059
            case value_t::discarded:
N
Niels 已提交
5060
                return "discarded";
N
Niels 已提交
5061
            default:
N
Niels 已提交
5062 5063 5064 5065
                return "number";
        }
    }

N
Niels 已提交
5066 5067 5068 5069 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
    /*!
    @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
    {
        std::size_t result = 0;

        for (const auto& c : s)
        {
            switch (c)
            {
                case '"':
                case '\\':
                case '\b':
                case '\f':
                case '\n':
                case '\r':
                case '\t':
                {
                    // from c (1 byte) to \x (2 bytes)
                    result += 1;
                    break;
                }

                default:
                {
                    if (c >= 0x00 and c <= 0x1f)
                    {
                        // from c (1 byte) to \uxxxx (6 bytes)
                        result += 5;
                    }
                    break;
                }
            }
        }

        return result;
    }

N
Niels 已提交
5110 5111
    /*!
    @brief escape a string
N
Niels 已提交
5112

N
Niels 已提交
5113 5114 5115 5116 5117
    Escape a string by replacing certain special characters by a sequence of an
    escape character (backslash) and another character and other control
    characters by a sequence of "\u" followed by a four-digit hex
    representation.

N
Niels 已提交
5118
    @param[in] s  the string to escape
N
Niels 已提交
5119 5120 5121
    @return  the escaped string

    @complexity Linear in the length of string @a s.
N
Niels 已提交
5122
    */
N
Niels 已提交
5123
    static string_t escape_string(const string_t& s) noexcept
N
Niels 已提交
5124
    {
N
Niels 已提交
5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135
        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 已提交
5136 5137 5138 5139 5140 5141
        {
            switch (c)
            {
                // quotation mark (0x22)
                case '"':
                {
N
Niels 已提交
5142 5143
                    result[pos + 1] = '"';
                    pos += 2;
N
Niels 已提交
5144 5145
                    break;
                }
N
Niels 已提交
5146

N
Niels 已提交
5147 5148 5149
                // reverse solidus (0x5c)
                case '\\':
                {
N
Niels 已提交
5150 5151
                    // nothing to change
                    pos += 2;
N
Niels 已提交
5152 5153
                    break;
                }
N
Niels 已提交
5154

N
Niels 已提交
5155 5156 5157
                // backspace (0x08)
                case '\b':
                {
N
Niels 已提交
5158 5159
                    result[pos + 1] = 'b';
                    pos += 2;
N
Niels 已提交
5160 5161
                    break;
                }
N
Niels 已提交
5162

N
Niels 已提交
5163 5164 5165
                // formfeed (0x0c)
                case '\f':
                {
N
Niels 已提交
5166 5167
                    result[pos + 1] = 'f';
                    pos += 2;
N
Niels 已提交
5168 5169
                    break;
                }
N
Niels 已提交
5170

N
Niels 已提交
5171 5172 5173
                // newline (0x0a)
                case '\n':
                {
N
Niels 已提交
5174 5175
                    result[pos + 1] = 'n';
                    pos += 2;
N
Niels 已提交
5176 5177
                    break;
                }
N
Niels 已提交
5178

N
Niels 已提交
5179 5180 5181
                // carriage return (0x0d)
                case '\r':
                {
N
Niels 已提交
5182 5183
                    result[pos + 1] = 'r';
                    pos += 2;
N
Niels 已提交
5184 5185
                    break;
                }
N
Niels 已提交
5186

N
Niels 已提交
5187 5188 5189
                // horizontal tab (0x09)
                case '\t':
                {
N
Niels 已提交
5190 5191
                    result[pos + 1] = 't';
                    pos += 2;
N
Niels 已提交
5192 5193 5194 5195 5196
                    break;
                }

                default:
                {
5197
                    if (c >= 0x00 and c <= 0x1f)
N
Niels 已提交
5198
                    {
5199 5200 5201 5202 5203 5204
                        // convert a number 0..15 to its hex representation (0..f)
                        auto hexify = [](const char v) -> char
                        {
                            return (v < 10) ? ('0' + v) : ('a' + v - 10);
                        };

N
Niels 已提交
5205
                        // print character c as \uxxxx
N
Niels 已提交
5206 5207 5208
                        for (const char m :
                    { 'u', '0', '0', hexify(c >> 4), hexify(c & 0x0f)
                        })
5209 5210 5211 5212 5213
                        {
                            result[++pos] = m;
                        }

                        ++pos;
N
Niels 已提交
5214 5215 5216 5217
                    }
                    else
                    {
                        // all other characters are added as-is
N
Niels 已提交
5218
                        result[pos++] = c;
N
Niels 已提交
5219 5220 5221 5222 5223
                    }
                    break;
                }
            }
        }
N
Niels 已提交
5224 5225

        return result;
N
Niels 已提交
5226 5227 5228 5229
    }

    /*!
    @brief internal implementation of the serialization function
N
Niels 已提交
5230

N
Niels 已提交
5231 5232 5233 5234
    This function is called by the public member function dump and organizes
    the serializaion internally. The indentation level is propagated as
    additional parameter. In case of arrays and objects, the function is called
    recursively. Note that
N
Niels 已提交
5235

N
Niels 已提交
5236
    - strings and object keys are escaped using escape_string()
N
Niels 已提交
5237
    - integer numbers are converted implictly via operator<<
5238
    - floating-point numbers are converted to a string using "%g" format
N
Niels 已提交
5239

N
Niels 已提交
5240 5241 5242 5243
    @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 已提交
5244
    */
N
Niels 已提交
5245 5246 5247
    void dump(std::ostream& o,
              const bool pretty_print,
              const unsigned int indent_step,
N
Niels 已提交
5248
              const unsigned int current_indent = 0) const
N
Niels 已提交
5249
    {
N
Niels 已提交
5250
        // variable to hold indentation for recursive calls
N
Niels 已提交
5251
        unsigned int new_indent = current_indent;
N
Niels 已提交
5252

N
Niels 已提交
5253 5254
        switch (m_type)
        {
5255
            case value_t::object:
N
Niels 已提交
5256 5257 5258
            {
                if (m_value.object->empty())
                {
N
Niels 已提交
5259 5260
                    o << "{}";
                    return;
N
Niels 已提交
5261 5262
                }

N
Niels 已提交
5263
                o << "{";
N
Niels 已提交
5264 5265

                // increase indentation
N
Niels 已提交
5266
                if (pretty_print)
N
Niels 已提交
5267
                {
N
Niels 已提交
5268
                    new_indent += indent_step;
N
Niels 已提交
5269
                    o << "\n";
N
Niels 已提交
5270 5271 5272 5273 5274 5275
                }

                for (auto i = m_value.object->cbegin(); i != m_value.object->cend(); ++i)
                {
                    if (i != m_value.object->cbegin())
                    {
N
Niels 已提交
5276
                        o << (pretty_print ? ",\n" : ",");
N
Niels 已提交
5277
                    }
N
Niels 已提交
5278 5279 5280
                    o << string_t(new_indent, ' ') << "\""
                      << escape_string(i->first) << "\":"
                      << (pretty_print ? " " : "");
N
Niels 已提交
5281
                    i->second.dump(o, pretty_print, indent_step, new_indent);
N
Niels 已提交
5282 5283 5284
                }

                // decrease indentation
N
Niels 已提交
5285
                if (pretty_print)
N
Niels 已提交
5286
                {
N
Niels 已提交
5287
                    new_indent -= indent_step;
N
Niels 已提交
5288
                    o << "\n";
N
Niels 已提交
5289 5290
                }

N
Niels 已提交
5291 5292
                o << string_t(new_indent, ' ') + "}";
                return;
N
Niels 已提交
5293 5294
            }

5295
            case value_t::array:
N
Niels 已提交
5296 5297 5298
            {
                if (m_value.array->empty())
                {
N
Niels 已提交
5299 5300
                    o << "[]";
                    return;
N
Niels 已提交
5301 5302
                }

N
Niels 已提交
5303
                o << "[";
N
Niels 已提交
5304 5305

                // increase indentation
N
Niels 已提交
5306
                if (pretty_print)
N
Niels 已提交
5307
                {
N
Niels 已提交
5308
                    new_indent += indent_step;
N
Niels 已提交
5309
                    o << "\n";
N
Niels 已提交
5310 5311 5312 5313 5314 5315
                }

                for (auto i = m_value.array->cbegin(); i != m_value.array->cend(); ++i)
                {
                    if (i != m_value.array->cbegin())
                    {
N
Niels 已提交
5316
                        o << (pretty_print ? ",\n" : ",");
N
Niels 已提交
5317
                    }
N
Niels 已提交
5318
                    o << string_t(new_indent, ' ');
N
Niels 已提交
5319
                    i->dump(o, pretty_print, indent_step, new_indent);
N
Niels 已提交
5320 5321 5322
                }

                // decrease indentation
N
Niels 已提交
5323
                if (pretty_print)
N
Niels 已提交
5324
                {
N
Niels 已提交
5325
                    new_indent -= indent_step;
N
Niels 已提交
5326
                    o << "\n";
N
Niels 已提交
5327 5328
                }

N
Niels 已提交
5329 5330
                o << string_t(new_indent, ' ') << "]";
                return;
N
Niels 已提交
5331 5332
            }

5333
            case value_t::string:
N
Niels 已提交
5334
            {
N
Niels 已提交
5335
                o << string_t("\"") << escape_string(*m_value.string) << "\"";
N
Niels 已提交
5336
                return;
N
Niels 已提交
5337 5338
            }

5339
            case value_t::boolean:
N
Niels 已提交
5340
            {
N
Niels 已提交
5341 5342
                o << (m_value.boolean ? "true" : "false");
                return;
N
Niels 已提交
5343 5344
            }

5345
            case value_t::number_integer:
N
Niels 已提交
5346
            {
N
Niels 已提交
5347 5348
                o << m_value.number_integer;
                return;
N
Niels 已提交
5349 5350
            }

5351
            case value_t::number_float:
N
Niels 已提交
5352
            {
N
Niels 已提交
5353
                // 15 digits of precision allows round-trip IEEE 754
N
Niels 已提交
5354 5355 5356
                // string->double->string; to be safe, we read this value from
                // std::numeric_limits<number_float_t>::digits10
                o << std::setprecision(std::numeric_limits<number_float_t>::digits10) << m_value.number_float;
N
Niels 已提交
5357
                return;
N
Niels 已提交
5358
            }
N
Niels 已提交
5359

5360
            case value_t::discarded:
N
Niels 已提交
5361
            {
N
Niels 已提交
5362 5363
                o << "<discarded>";
                return;
N
Niels 已提交
5364
            }
N
Niels 已提交
5365

5366
            case value_t::null:
N
Niels 已提交
5367
            {
N
Niels 已提交
5368 5369
                o << "null";
                return;
N
Niels 已提交
5370
            }
N
Niels 已提交
5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384
        }
    }

  private:
    //////////////////////
    // member variables //
    //////////////////////

    /// the type of the current element
    value_t m_type = value_t::null;

    /// the value of the current element
    json_value m_value = {};

N
Niels 已提交
5385

N
Niels 已提交
5386
  private:
N
Niels 已提交
5387 5388 5389 5390
    ///////////////
    // iterators //
    ///////////////

5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433
    /*!
    @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
        void set_begin()
        {
            m_it = begin_value;
        }

        /// set iterator to a defined past the end
        void set_end()
        {
            m_it = end_value;
        }

        /// return whether the iterator can be dereferenced
        bool is_begin() const
        {
            return (m_it == begin_value);
        }

        /// return whether the iterator is at end
        bool is_end() const
        {
            return (m_it == end_value);
        }

        /// return reference to the value to change and compare
        operator difference_type& ()
        {
            return m_it;
        }

        /// return value to compare
N
Niels 已提交
5434
        operator difference_type () const
5435 5436 5437 5438 5439 5440 5441 5442 5443
        {
            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 已提交
5444
        difference_type m_it = std::numeric_limits<std::ptrdiff_t>::denorm_min();
5445 5446
    };

N
Niels 已提交
5447 5448 5449 5450 5451 5452 5453 5454
    /*!
    @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 已提交
5455 5456
    {
        /// iterator for JSON objects
N
Niels 已提交
5457
        typename object_t::iterator object_iterator;
N
Niels 已提交
5458
        /// iterator for JSON arrays
N
Niels 已提交
5459
        typename array_t::iterator array_iterator;
N
Niels 已提交
5460
        /// generic iterator for all other types
N
Niels 已提交
5461 5462 5463 5464 5465 5466
        primitive_iterator_t primitive_iterator;

        /// create an uninitialized internal_iterator
        internal_iterator()
            : object_iterator(), array_iterator(), primitive_iterator()
        {}
N
Niels 已提交
5467 5468
    };

N
cleanup  
Niels 已提交
5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503
    /// 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:
            iteration_proxy_internal(IteratorType it)
                : 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 已提交
5504
            bool operator!= (const iteration_proxy_internal& o) const
N
cleanup  
Niels 已提交
5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562
            {
                return anchor != o.anchor;
            }

            /// return key of the iterator
            typename basic_json::string_t key() const
            {
                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
        iteration_proxy(typename IteratorType::reference cont)
            : container(cont)
        {}

        /// return iterator begin (needed for range-based for)
        iteration_proxy_internal begin()
        {
            return iteration_proxy_internal(container.begin());
        }

        /// return iterator end (needed for range-based for)
        iteration_proxy_internal end()
        {
            return iteration_proxy_internal(container.end());
        }
    };

N
Niels 已提交
5563
  public:
N
Niels 已提交
5564 5565 5566 5567 5568 5569 5570 5571 5572 5573
    /*!
    @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.

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

N
Niels 已提交
5575
    @since version 1.0.0
N
Niels 已提交
5576
    */
N
Niels 已提交
5577
    class const_iterator : public std::iterator<std::random_access_iterator_tag, const basic_json>
N
Niels 已提交
5578
    {
N
Niels 已提交
5579
        /// allow basic_json to access private members
5580 5581
        friend class basic_json;

N
Niels 已提交
5582 5583
      public:
        /// the type of the values when the iterator is dereferenced
N
Niels 已提交
5584
        using value_type = typename basic_json::value_type;
N
Niels 已提交
5585
        /// a type to represent differences between iterators
N
Niels 已提交
5586
        using difference_type = typename basic_json::difference_type;
N
Niels 已提交
5587
        /// defines a pointer to the type iterated over (value_type)
N
Niels 已提交
5588
        using pointer = typename basic_json::const_pointer;
N
Niels 已提交
5589
        /// defines a reference to the type iterated over (value_type)
N
Niels 已提交
5590
        using reference = typename basic_json::const_reference;
N
Niels 已提交
5591
        /// the category of the iterator
N
Niels 已提交
5592
        using iterator_category = std::bidirectional_iterator_tag;
N
Niels 已提交
5593

5594
        /// default constructor
N
Niels 已提交
5595
        const_iterator() = default;
5596

N
Niels 已提交
5597
        /// constructor for a given JSON instance
N
Niels 已提交
5598
        const_iterator(pointer object) : m_object(object)
N
Niels 已提交
5599 5600 5601
        {
            switch (m_object->m_type)
            {
5602
                case basic_json::value_t::object:
N
Niels 已提交
5603 5604 5605 5606
                {
                    m_it.object_iterator = typename object_t::iterator();
                    break;
                }
5607 5608

                case basic_json::value_t::array:
N
Niels 已提交
5609 5610 5611 5612
                {
                    m_it.array_iterator = typename array_t::iterator();
                    break;
                }
5613

N
Niels 已提交
5614 5615
                default:
                {
5616
                    m_it.primitive_iterator = primitive_iterator_t();
N
Niels 已提交
5617 5618 5619 5620 5621
                    break;
                }
            }
        }

N
Niels 已提交
5622 5623 5624 5625 5626
        /// copy constructor given a nonconst iterator
        const_iterator(const iterator& other) : m_object(other.m_object)
        {
            switch (m_object->m_type)
            {
5627
                case basic_json::value_t::object:
N
Niels 已提交
5628 5629 5630 5631 5632
                {
                    m_it.object_iterator = other.m_it.object_iterator;
                    break;
                }

5633
                case basic_json::value_t::array:
N
Niels 已提交
5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646
                {
                    m_it.array_iterator = other.m_it.array_iterator;
                    break;
                }

                default:
                {
                    m_it.primitive_iterator = other.m_it.primitive_iterator;
                    break;
                }
            }
        }

N
Niels 已提交
5647
        /// copy constructor
N
Niels 已提交
5648
        const_iterator(const const_iterator& other) noexcept
N
Niels 已提交
5649 5650 5651
            : m_object(other.m_object), m_it(other.m_it)
        {}

N
Niels 已提交
5652
        /// copy assignment
N
Niels 已提交
5653
        const_iterator& operator=(const_iterator other) noexcept(
N
Niels 已提交
5654 5655
            std::is_nothrow_move_constructible<pointer>::value and
            std::is_nothrow_move_assignable<pointer>::value and
N
Niels 已提交
5656 5657
            std::is_nothrow_move_constructible<internal_iterator>::value and
            std::is_nothrow_move_assignable<internal_iterator>::value
N
Niels 已提交
5658 5659 5660 5661
        )
        {
            std::swap(m_object, other.m_object);
            std::swap(m_it, other.m_it);
N
Niels 已提交
5662 5663 5664
            return *this;
        }

N
Niels 已提交
5665
      private:
N
Niels 已提交
5666
        /// set the iterator to the first value
N
Niels 已提交
5667
        void set_begin()
N
Niels 已提交
5668 5669 5670
        {
            switch (m_object->m_type)
            {
5671
                case basic_json::value_t::object:
N
Niels 已提交
5672 5673 5674 5675 5676
                {
                    m_it.object_iterator = m_object->m_value.object->begin();
                    break;
                }

5677
                case basic_json::value_t::array:
N
Niels 已提交
5678 5679 5680 5681 5682
                {
                    m_it.array_iterator = m_object->m_value.array->begin();
                    break;
                }

5683
                case basic_json::value_t::null:
N
Niels 已提交
5684
                {
N
Niels 已提交
5685
                    // set to end so begin()==end() is true: null is empty
5686
                    m_it.primitive_iterator.set_end();
N
Niels 已提交
5687 5688 5689 5690 5691
                    break;
                }

                default:
                {
5692
                    m_it.primitive_iterator.set_begin();
N
Niels 已提交
5693 5694 5695 5696 5697 5698
                    break;
                }
            }
        }

        /// set the iterator past the last value
N
Niels 已提交
5699
        void set_end()
N
Niels 已提交
5700 5701 5702
        {
            switch (m_object->m_type)
            {
5703
                case basic_json::value_t::object:
N
Niels 已提交
5704 5705 5706 5707 5708
                {
                    m_it.object_iterator = m_object->m_value.object->end();
                    break;
                }

5709
                case basic_json::value_t::array:
N
Niels 已提交
5710 5711 5712 5713 5714 5715 5716
                {
                    m_it.array_iterator = m_object->m_value.array->end();
                    break;
                }

                default:
                {
5717
                    m_it.primitive_iterator.set_end();
N
Niels 已提交
5718 5719 5720 5721 5722
                    break;
                }
            }
        }

N
Niels 已提交
5723
      public:
N
Niels 已提交
5724
        /// return a reference to the value pointed to by the iterator
N
Niels 已提交
5725
        reference operator*() const
N
Niels 已提交
5726 5727 5728
        {
            switch (m_object->m_type)
            {
5729
                case basic_json::value_t::object:
N
Niels 已提交
5730 5731 5732 5733
                {
                    return m_it.object_iterator->second;
                }

5734
                case basic_json::value_t::array:
N
Niels 已提交
5735 5736 5737 5738
                {
                    return *m_it.array_iterator;
                }

5739
                case basic_json::value_t::null:
N
Niels 已提交
5740 5741 5742 5743 5744 5745
                {
                    throw std::out_of_range("cannot get value");
                }

                default:
                {
5746 5747 5748 5749 5750 5751 5752 5753
                    if (m_it.primitive_iterator.is_begin())
                    {
                        return *m_object;
                    }
                    else
                    {
                        throw std::out_of_range("cannot get value");
                    }
N
Niels 已提交
5754 5755 5756 5757 5758
                }
            }
        }

        /// dereference the iterator
N
Niels 已提交
5759
        pointer operator->() const
N
Niels 已提交
5760 5761 5762
        {
            switch (m_object->m_type)
            {
5763
                case basic_json::value_t::object:
N
Niels 已提交
5764 5765 5766 5767
                {
                    return &(m_it.object_iterator->second);
                }

5768
                case basic_json::value_t::array:
N
Niels 已提交
5769 5770 5771 5772 5773 5774
                {
                    return &*m_it.array_iterator;
                }

                default:
                {
5775 5776 5777 5778 5779 5780 5781 5782
                    if (m_it.primitive_iterator.is_begin())
                    {
                        return m_object;
                    }
                    else
                    {
                        throw std::out_of_range("cannot get value");
                    }
N
Niels 已提交
5783 5784 5785 5786 5787
                }
            }
        }

        /// post-increment (it++)
N
Niels 已提交
5788
        const_iterator operator++(int)
N
Niels 已提交
5789
        {
N
Niels 已提交
5790
            auto result = *this;
N
Niels 已提交
5791
            ++(*this);
N
Niels 已提交
5792 5793 5794 5795
            return result;
        }

        /// pre-increment (++it)
N
Niels 已提交
5796
        const_iterator& operator++()
N
Niels 已提交
5797 5798 5799
        {
            switch (m_object->m_type)
            {
5800
                case basic_json::value_t::object:
N
Niels 已提交
5801 5802 5803 5804 5805
                {
                    ++m_it.object_iterator;
                    break;
                }

5806
                case basic_json::value_t::array:
N
Niels 已提交
5807 5808 5809 5810 5811 5812 5813
                {
                    ++m_it.array_iterator;
                    break;
                }

                default:
                {
5814
                    ++m_it.primitive_iterator;
N
Niels 已提交
5815 5816 5817 5818 5819 5820 5821 5822
                    break;
                }
            }

            return *this;
        }

        /// post-decrement (it--)
N
Niels 已提交
5823
        const_iterator operator--(int)
N
Niels 已提交
5824
        {
N
Niels 已提交
5825
            auto result = *this;
N
Niels 已提交
5826
            --(*this);
N
Niels 已提交
5827 5828 5829 5830
            return result;
        }

        /// pre-decrement (--it)
N
Niels 已提交
5831
        const_iterator& operator--()
N
Niels 已提交
5832 5833 5834
        {
            switch (m_object->m_type)
            {
5835
                case basic_json::value_t::object:
N
Niels 已提交
5836 5837 5838 5839 5840
                {
                    --m_it.object_iterator;
                    break;
                }

5841
                case basic_json::value_t::array:
N
Niels 已提交
5842 5843 5844 5845 5846 5847 5848
                {
                    --m_it.array_iterator;
                    break;
                }

                default:
                {
5849
                    --m_it.primitive_iterator;
N
Niels 已提交
5850 5851 5852 5853 5854 5855 5856 5857
                    break;
                }
            }

            return *this;
        }

        /// comparison: equal
N
Niels 已提交
5858
        bool operator==(const const_iterator& other) const
N
Niels 已提交
5859
        {
N
Niels 已提交
5860 5861
            // if objects are not the same, the comparison is undefined
            if (m_object != other.m_object)
N
Niels 已提交
5862
            {
N
Niels 已提交
5863
                throw std::domain_error("cannot compare iterators of different containers");
N
Niels 已提交
5864 5865 5866 5867
            }

            switch (m_object->m_type)
            {
5868
                case basic_json::value_t::object:
N
Niels 已提交
5869 5870 5871 5872
                {
                    return (m_it.object_iterator == other.m_it.object_iterator);
                }

5873
                case basic_json::value_t::array:
N
Niels 已提交
5874 5875 5876 5877 5878 5879
                {
                    return (m_it.array_iterator == other.m_it.array_iterator);
                }

                default:
                {
5880
                    return (m_it.primitive_iterator == other.m_it.primitive_iterator);
N
Niels 已提交
5881 5882 5883 5884 5885
                }
            }
        }

        /// comparison: not equal
N
Niels 已提交
5886
        bool operator!=(const const_iterator& other) const
N
Niels 已提交
5887 5888 5889 5890
        {
            return not operator==(other);
        }

N
Niels 已提交
5891
        /// comparison: smaller
N
Niels 已提交
5892
        bool operator<(const const_iterator& other) const
N
Niels 已提交
5893 5894 5895 5896 5897 5898 5899 5900 5901
        {
            // 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");
            }

            switch (m_object->m_type)
            {
5902
                case basic_json::value_t::object:
N
Niels 已提交
5903
                {
N
Niels 已提交
5904
                    throw std::domain_error("cannot compare order of object iterators");
N
Niels 已提交
5905 5906
                }

5907
                case basic_json::value_t::array:
N
Niels 已提交
5908 5909 5910 5911 5912 5913
                {
                    return (m_it.array_iterator < other.m_it.array_iterator);
                }

                default:
                {
5914
                    return (m_it.primitive_iterator < other.m_it.primitive_iterator);
N
Niels 已提交
5915 5916 5917 5918 5919
                }
            }
        }

        /// comparison: less than or equal
N
Niels 已提交
5920
        bool operator<=(const const_iterator& other) const
N
Niels 已提交
5921 5922 5923 5924 5925
        {
            return not other.operator < (*this);
        }

        /// comparison: greater than
N
Niels 已提交
5926
        bool operator>(const const_iterator& other) const
N
Niels 已提交
5927 5928 5929 5930 5931
        {
            return not operator<=(other);
        }

        /// comparison: greater than or equal
N
Niels 已提交
5932
        bool operator>=(const const_iterator& other) const
N
Niels 已提交
5933 5934 5935 5936 5937
        {
            return not operator<(other);
        }

        /// add to iterator
N
Niels 已提交
5938
        const_iterator& operator+=(difference_type i)
N
Niels 已提交
5939 5940 5941
        {
            switch (m_object->m_type)
            {
5942
                case basic_json::value_t::object:
N
Niels 已提交
5943
                {
N
Niels 已提交
5944
                    throw std::domain_error("cannot use offsets with object iterators");
N
Niels 已提交
5945 5946
                }

5947
                case basic_json::value_t::array:
N
Niels 已提交
5948 5949 5950 5951 5952 5953 5954
                {
                    m_it.array_iterator += i;
                    break;
                }

                default:
                {
5955
                    m_it.primitive_iterator += i;
N
Niels 已提交
5956 5957 5958 5959 5960 5961 5962 5963
                    break;
                }
            }

            return *this;
        }

        /// subtract from iterator
N
Niels 已提交
5964
        const_iterator& operator-=(difference_type i)
N
Niels 已提交
5965 5966 5967 5968 5969
        {
            return operator+=(-i);
        }

        /// add to iterator
N
Niels 已提交
5970
        const_iterator operator+(difference_type i)
N
Niels 已提交
5971 5972 5973 5974 5975 5976 5977
        {
            auto result = *this;
            result += i;
            return result;
        }

        /// subtract from iterator
N
Niels 已提交
5978
        const_iterator operator-(difference_type i)
N
Niels 已提交
5979 5980 5981 5982 5983 5984 5985
        {
            auto result = *this;
            result -= i;
            return result;
        }

        /// return difference
N
Niels 已提交
5986
        difference_type operator-(const const_iterator& other) const
N
Niels 已提交
5987 5988 5989
        {
            switch (m_object->m_type)
            {
5990
                case basic_json::value_t::object:
N
Niels 已提交
5991
                {
N
Niels 已提交
5992
                    throw std::domain_error("cannot use offsets with object iterators");
N
Niels 已提交
5993 5994
                }

5995
                case basic_json::value_t::array:
N
Niels 已提交
5996 5997 5998 5999 6000 6001
                {
                    return m_it.array_iterator - other.m_it.array_iterator;
                }

                default:
                {
6002
                    return m_it.primitive_iterator - other.m_it.primitive_iterator;
N
Niels 已提交
6003 6004 6005 6006 6007
                }
            }
        }

        /// access to successor
N
Niels 已提交
6008
        reference operator[](difference_type n) const
N
Niels 已提交
6009 6010 6011
        {
            switch (m_object->m_type)
            {
6012
                case basic_json::value_t::object:
N
Niels 已提交
6013 6014 6015 6016
                {
                    throw std::domain_error("cannot use operator[] for object iterators");
                }

6017
                case basic_json::value_t::array:
N
Niels 已提交
6018 6019 6020 6021
                {
                    return *(m_it.array_iterator + n);
                }

6022
                case basic_json::value_t::null:
N
Niels 已提交
6023 6024 6025 6026 6027 6028
                {
                    throw std::out_of_range("cannot get value");
                }

                default:
                {
6029 6030 6031 6032 6033 6034 6035 6036
                    if (m_it.primitive_iterator == -n)
                    {
                        return *m_object;
                    }
                    else
                    {
                        throw std::out_of_range("cannot get value");
                    }
N
Niels 已提交
6037 6038 6039 6040
                }
            }
        }

6041
        /// return the key of an object iterator
N
Niels 已提交
6042
        typename object_t::key_type key() const
N
Niels 已提交
6043
        {
6044 6045 6046 6047 6048 6049 6050 6051
            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 已提交
6052 6053
        }

N
Niels 已提交
6054 6055
        /// return the value of an iterator
        reference value() const
N
Niels 已提交
6056 6057 6058 6059
        {
            return operator*();
        }

N
Niels 已提交
6060 6061 6062 6063
      private:
        /// associated JSON instance
        pointer m_object = nullptr;
        /// the actual iterator of the associated instance
N
Niels 已提交
6064
        internal_iterator m_it = internal_iterator();
N
Niels 已提交
6065 6066
    };

N
Niels 已提交
6067 6068 6069 6070 6071 6072 6073 6074 6075
    /*!
    @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 已提交
6076

N
Niels 已提交
6077
    @since version 1.0.0
N
Niels 已提交
6078
    */
N
Niels 已提交
6079
    class iterator : public const_iterator
N
Niels 已提交
6080 6081
    {
      public:
N
Niels 已提交
6082 6083 6084
        using base_iterator = const_iterator;
        using pointer = typename basic_json::pointer;
        using reference = typename basic_json::reference;
N
Niels 已提交
6085

6086
        /// default constructor
N
Niels 已提交
6087
        iterator() = default;
6088

N
Niels 已提交
6089
        /// constructor for a given JSON instance
N
cleanup  
Niels 已提交
6090 6091
        iterator(pointer object) noexcept
            : base_iterator(object)
N
Niels 已提交
6092
        {}
N
Niels 已提交
6093

N
Niels 已提交
6094
        /// copy constructor
N
Niels 已提交
6095 6096
        iterator(const iterator& other) noexcept
            : base_iterator(other)
N
Niels 已提交
6097 6098
        {}

N
Niels 已提交
6099
        /// copy assignment
N
Niels 已提交
6100
        iterator& operator=(iterator other) noexcept(
N
Niels 已提交
6101 6102
            std::is_nothrow_move_constructible<pointer>::value and
            std::is_nothrow_move_assignable<pointer>::value and
N
Niels 已提交
6103 6104
            std::is_nothrow_move_constructible<internal_iterator>::value and
            std::is_nothrow_move_assignable<internal_iterator>::value
N
Niels 已提交
6105 6106
        )
        {
N
Niels 已提交
6107
            base_iterator::operator=(other);
N
Niels 已提交
6108 6109 6110
            return *this;
        }

N
Niels 已提交
6111 6112
        /// return a reference to the value pointed to by the iterator
        reference operator*()
N
Niels 已提交
6113
        {
N
Niels 已提交
6114 6115
            return const_cast<reference>(base_iterator::operator*());
        }
N
Niels 已提交
6116

N
Niels 已提交
6117 6118 6119 6120 6121
        /// dereference the iterator
        pointer operator->()
        {
            return const_cast<pointer>(base_iterator::operator->());
        }
N
Niels 已提交
6122

N
Niels 已提交
6123 6124 6125 6126 6127 6128 6129
        /// post-increment (it++)
        iterator operator++(int)
        {
            iterator result = *this;
            base_iterator::operator++();
            return result;
        }
N
Niels 已提交
6130

N
Niels 已提交
6131 6132 6133 6134 6135
        /// pre-increment (++it)
        iterator& operator++()
        {
            base_iterator::operator++();
            return *this;
N
Niels 已提交
6136 6137
        }

N
Niels 已提交
6138 6139
        /// post-decrement (it--)
        iterator operator--(int)
N
Niels 已提交
6140
        {
N
Niels 已提交
6141 6142 6143 6144
            iterator result = *this;
            base_iterator::operator--();
            return result;
        }
N
Niels 已提交
6145

N
Niels 已提交
6146 6147 6148 6149 6150 6151
        /// pre-decrement (--it)
        iterator& operator--()
        {
            base_iterator::operator--();
            return *this;
        }
N
Niels 已提交
6152 6153

        /// add to iterator
N
Niels 已提交
6154
        iterator& operator+=(difference_type i)
N
Niels 已提交
6155
        {
N
Niels 已提交
6156
            base_iterator::operator+=(i);
N
Niels 已提交
6157 6158 6159 6160
            return *this;
        }

        /// subtract from iterator
N
Niels 已提交
6161
        iterator& operator-=(difference_type i)
N
Niels 已提交
6162
        {
N
Niels 已提交
6163 6164
            base_iterator::operator-=(i);
            return *this;
N
Niels 已提交
6165 6166 6167
        }

        /// add to iterator
N
Niels 已提交
6168
        iterator operator+(difference_type i)
N
Niels 已提交
6169 6170 6171 6172 6173 6174 6175
        {
            auto result = *this;
            result += i;
            return result;
        }

        /// subtract from iterator
N
Niels 已提交
6176
        iterator operator-(difference_type i)
N
Niels 已提交
6177 6178 6179 6180 6181 6182
        {
            auto result = *this;
            result -= i;
            return result;
        }

N
Niels 已提交
6183
        difference_type operator-(const iterator& other) const
N
Niels 已提交
6184
        {
N
Niels 已提交
6185
            return base_iterator::operator-(other);
N
Niels 已提交
6186 6187 6188
        }

        /// access to successor
N
Niels 已提交
6189
        reference operator[](difference_type n) const
N
Niels 已提交
6190
        {
N
Niels 已提交
6191
            return const_cast<reference>(base_iterator::operator[](n));
N
Niels 已提交
6192 6193
        }

6194
        /// return the value of an iterator
N
Niels 已提交
6195
        reference value() const
N
Niels 已提交
6196
        {
N
Niels 已提交
6197
            return const_cast<reference>(base_iterator::value());
N
Niels 已提交
6198
        }
N
Niels 已提交
6199 6200
    };

N
Niels 已提交
6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214
    /*!
    @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 已提交
6215

N
Niels 已提交
6216
    @since version 1.0.0
N
Niels 已提交
6217
    */
N
Niels 已提交
6218 6219
    template<typename Base>
    class json_reverse_iterator : public std::reverse_iterator<Base>
6220 6221
    {
      public:
6222
        /// shortcut to the reverse iterator adaptor
N
Niels 已提交
6223
        using base_iterator = std::reverse_iterator<Base>;
N
Niels 已提交
6224
        /// the reference type for the pointed-to element
N
Niels 已提交
6225
        using reference = typename Base::reference;
6226

6227
        /// create reverse iterator from iterator
N
Niels 已提交
6228
        json_reverse_iterator(const typename base_iterator::iterator_type& it)
N
cleanup  
Niels 已提交
6229 6230
            : base_iterator(it)
        {}
6231 6232

        /// create reverse iterator from base class
N
cleanup  
Niels 已提交
6233 6234 6235
        json_reverse_iterator(const base_iterator& it)
            : base_iterator(it)
        {}
6236 6237

        /// post-increment (it++)
N
Niels 已提交
6238
        json_reverse_iterator operator++(int)
6239 6240 6241 6242 6243
        {
            return base_iterator::operator++(1);
        }

        /// pre-increment (++it)
N
Niels 已提交
6244
        json_reverse_iterator& operator++()
6245 6246 6247 6248 6249 6250
        {
            base_iterator::operator++();
            return *this;
        }

        /// post-decrement (it--)
N
Niels 已提交
6251
        json_reverse_iterator operator--(int)
6252 6253 6254 6255 6256
        {
            return base_iterator::operator--(1);
        }

        /// pre-decrement (--it)
N
Niels 已提交
6257
        json_reverse_iterator& operator--()
6258 6259 6260 6261 6262 6263
        {
            base_iterator::operator--();
            return *this;
        }

        /// add to iterator
N
Niels 已提交
6264
        json_reverse_iterator& operator+=(difference_type i)
6265 6266 6267 6268 6269 6270
        {
            base_iterator::operator+=(i);
            return *this;
        }

        /// add to iterator
N
Niels 已提交
6271
        json_reverse_iterator operator+(difference_type i) const
6272 6273 6274 6275 6276 6277 6278
        {
            auto result = *this;
            result += i;
            return result;
        }

        /// subtract from iterator
N
Niels 已提交
6279
        json_reverse_iterator operator-(difference_type i) const
6280 6281 6282 6283 6284 6285 6286
        {
            auto result = *this;
            result -= i;
            return result;
        }

        /// return difference
N
Niels 已提交
6287
        difference_type operator-(const json_reverse_iterator& other) const
6288 6289 6290 6291 6292 6293 6294 6295 6296
        {
            return this->base() - other.base();
        }

        /// access to successor
        reference operator[](difference_type n) const
        {
            return *(this->operator+(n));
        }
N
Niels 已提交
6297

6298
        /// return the key of an object iterator
N
Niels 已提交
6299
        typename object_t::key_type key() const
6300
        {
N
Niels 已提交
6301 6302
            auto it = --this->base();
            return it.key();
6303 6304 6305
        }

        /// return the value of an iterator
N
Niels 已提交
6306
        reference value() const
6307
        {
N
Niels 已提交
6308 6309
            auto it = --this->base();
            return it.operator * ();
6310 6311 6312
        }
    };

N
Niels 已提交
6313

N
Niels 已提交
6314
  private:
N
Niels 已提交
6315 6316 6317
    //////////////////////
    // lexer and parser //
    //////////////////////
N
Niels 已提交
6318

N
Niels 已提交
6319 6320 6321 6322 6323
    /*!
    @brief lexical analysis

    This class organizes the lexical analysis during JSON deserialization. The
    core of it is a scanner generated by re2c <http://re2c.org> that processes
6324
    a buffer and recognizes tokens according to RFC 7159.
N
Niels 已提交
6325
    */
N
Niels 已提交
6326
    class lexer
N
Niels 已提交
6327
    {
N
Niels 已提交
6328
      public:
N
Niels 已提交
6329 6330 6331
        /// token types for the parser
        enum class token_type
        {
N
Niels 已提交
6332 6333 6334 6335
            uninitialized,    ///< indicating the scanner is uninitialized
            literal_true,     ///< the "true" literal
            literal_false,    ///< the "false" literal
            literal_null,     ///< the "null" literal
N
Niels 已提交
6336 6337
            value_string,     ///< a string -- use get_string() for actual value
            value_number,     ///< a number -- use get_number() for actual value
N
Niels 已提交
6338 6339 6340 6341 6342 6343 6344 6345
            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 ","
            parse_error,      ///< indicating a parse error
            end_of_input      ///< indicating the end of the input buffer
N
Niels 已提交
6346 6347
        };

N
Niels 已提交
6348
        /// the char type to use in the lexer
N
Niels 已提交
6349
        using lexer_char_t = unsigned char;
N
Niels 已提交
6350

N
Niels 已提交
6351
        /// constructor with a given buffer
N
Niels 已提交
6352
        explicit lexer(const string_t& s) noexcept
N
Niels 已提交
6353
            : m_stream(nullptr), m_buffer(s)
N
Niels 已提交
6354
        {
N
Niels 已提交
6355
            m_content = reinterpret_cast<const lexer_char_t*>(s.c_str());
N
Niels 已提交
6356
            m_start = m_cursor = m_content;
N
Niels 已提交
6357
            m_limit = m_content + s.size();
N
Niels 已提交
6358
        }
N
Niels 已提交
6359 6360

        /// constructor with a given stream
N
Niels 已提交
6361
        explicit lexer(std::istream* s) noexcept
N
Niels 已提交
6362
            : m_stream(s), m_buffer()
N
Niels 已提交
6363 6364 6365 6366 6367 6368
        {
            getline(*m_stream, m_buffer);
            m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str());
            m_start = m_cursor = m_content;
            m_limit = m_content + m_buffer.size();
        }
N
Niels 已提交
6369

N
Niels 已提交
6370
        /// default constructor
N
Niels 已提交
6371
        lexer() = default;
N
Niels 已提交
6372

N
Niels 已提交
6373
        // switch off unwanted functions
N
Niels 已提交
6374 6375 6376
        lexer(const lexer&) = delete;
        lexer operator=(const lexer&) = delete;

N
Niels 已提交
6377 6378 6379
        /*!
        @brief create a string from a Unicode code point

N
Niels 已提交
6380 6381
        @param[in] codepoint1  the code point (can be high surrogate)
        @param[in] codepoint2  the code point (can be low surrogate or 0)
N
Niels 已提交
6382

N
Niels 已提交
6383
        @return string representation of the code point
N
Niels 已提交
6384

N
Niels 已提交
6385 6386
        @throw std::out_of_range if code point is >0x10ffff; example: `"code
        points above 0x10FFFF are invalid"`
N
Niels 已提交
6387 6388
        @throw std::invalid_argument if the low surrogate is invalid; example:
        `""missing or wrong low surrogate""`
N
Niels 已提交
6389 6390 6391

        @see <http://en.wikipedia.org/wiki/UTF-8#Sample_code>
        */
N
Niels 已提交
6392 6393
        static string_t to_unicode(const std::size_t codepoint1,
                                   const std::size_t codepoint2 = 0)
N
Niels 已提交
6394
        {
N
Niels 已提交
6395
            string_t result;
N
Niels 已提交
6396

N
Niels 已提交
6397
            // calculate the codepoint from the given code points
N
Niels 已提交
6398
            std::size_t codepoint = codepoint1;
N
Niels 已提交
6399 6400

            // check if codepoint1 is a high surrogate
N
Niels 已提交
6401 6402
            if (codepoint1 >= 0xD800 and codepoint1 <= 0xDBFF)
            {
N
Niels 已提交
6403
                // check if codepoint2 is a low surrogate
N
Niels 已提交
6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421
                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
                        // in the result so we have to substract with:
                        // (0xD800 << 10) + DC00 - 0x10000 = 0x35FDC00
                        - 0x35FDC00;
                }
                else
                {
                    throw std::invalid_argument("missing or wrong low surrogate");
                }
            }

N
Niels 已提交
6422
            if (codepoint < 0x80)
N
Niels 已提交
6423
            {
N
Niels 已提交
6424
                // 1-byte characters: 0xxxxxxx (ASCII)
N
Niels 已提交
6425
                result.append(1, static_cast<typename string_t::value_type>(codepoint));
N
Niels 已提交
6426 6427 6428 6429
            }
            else if (codepoint <= 0x7ff)
            {
                // 2-byte characters: 110xxxxx 10xxxxxx
N
Niels 已提交
6430 6431
                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 已提交
6432 6433 6434 6435
            }
            else if (codepoint <= 0xffff)
            {
                // 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx
N
Niels 已提交
6436 6437 6438
                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 已提交
6439 6440 6441 6442
            }
            else if (codepoint <= 0x10ffff)
            {
                // 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
N
Niels 已提交
6443 6444 6445 6446
                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 已提交
6447 6448 6449
            }
            else
            {
N
Niels 已提交
6450
                throw std::out_of_range("code points above 0x10FFFF are invalid");
N
Niels 已提交
6451 6452 6453 6454 6455
            }

            return result;
        }

6456
        /// return name of values of type token_type (only used for errors)
N
Niels 已提交
6457
        static std::string token_type_name(token_type t)
N
cleanup  
Niels 已提交
6458 6459 6460
        {
            switch (t)
            {
6461
                case token_type::uninitialized:
N
cleanup  
Niels 已提交
6462
                    return "<uninitialized>";
6463
                case token_type::literal_true:
N
cleanup  
Niels 已提交
6464
                    return "true literal";
6465
                case token_type::literal_false:
N
cleanup  
Niels 已提交
6466
                    return "false literal";
6467
                case token_type::literal_null:
N
cleanup  
Niels 已提交
6468
                    return "null literal";
6469
                case token_type::value_string:
N
cleanup  
Niels 已提交
6470
                    return "string literal";
6471
                case token_type::value_number:
N
cleanup  
Niels 已提交
6472
                    return "number literal";
6473
                case token_type::begin_array:
N
Niels 已提交
6474
                    return "'['";
6475
                case token_type::begin_object:
N
Niels 已提交
6476
                    return "'{'";
6477
                case token_type::end_array:
N
Niels 已提交
6478
                    return "']'";
6479
                case token_type::end_object:
N
Niels 已提交
6480
                    return "'}'";
6481
                case token_type::name_separator:
N
Niels 已提交
6482
                    return "':'";
6483
                case token_type::value_separator:
N
Niels 已提交
6484
                    return "','";
6485
                case token_type::parse_error:
N
Niels 已提交
6486
                    return "<parse error>";
6487
                case token_type::end_of_input:
N
Niels 已提交
6488
                    return "end of input";
N
Niels 已提交
6489 6490 6491 6492 6493
                default:
                {
                    // catch non-enum values
                    return "unknown token"; // LCOV_EXCL_LINE
                }
N
cleanup  
Niels 已提交
6494 6495 6496
            }
        }

N
fixes  
Niels 已提交
6497 6498
        /*!
        This function implements a scanner for JSON. It is specified using
6499 6500 6501 6502 6503
        regular expressions that try to follow RFC 7159 as close as possible.
        These regular expressions are then translated into a 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 已提交
6504 6505 6506

        @return the class of the next token read from the buffer
        */
N
Niels 已提交
6507
        token_type scan() noexcept
N
Niels 已提交
6508
        {
N
cleanup  
Niels 已提交
6509
            // pointer for backtracking information
N
Niels 已提交
6510
            m_marker = nullptr;
N
Niels 已提交
6511 6512 6513 6514 6515

            // remember the begin of the token
            m_start = m_cursor;


N
Niels 已提交
6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556
            {
                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,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    96,  64,   0,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    192, 192, 192, 192, 192, 192, 192, 192,
                    192, 192,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,   0,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                    64,  64,  64,  64,  64,  64,  64,  64,
                };
                if ((m_limit - m_cursor) < 5)
                {
                    yyfill();    // LCOV_EXCL_LINE;
N
Niels 已提交
6557
                }
N
Niels 已提交
6558
                yych = *m_cursor;
N
Niels 已提交
6559
                if (yych <= ':')
N
Niels 已提交
6560 6561 6562 6563 6564 6565 6566
                {
                    if (yych <= ' ')
                    {
                        if (yych <= '\n')
                        {
                            if (yych <= 0x00)
                            {
N
Niels 已提交
6567
                                goto basic_json_parser_28;
N
Niels 已提交
6568 6569 6570
                            }
                            if (yych <= 0x08)
                            {
N
Niels 已提交
6571
                                goto basic_json_parser_30;
N
Niels 已提交
6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585
                            }
                            if (yych >= '\n')
                            {
                                goto basic_json_parser_4;
                            }
                        }
                        else
                        {
                            if (yych == '\r')
                            {
                                goto basic_json_parser_2;
                            }
                            if (yych <= 0x1F)
                            {
N
Niels 已提交
6586
                                goto basic_json_parser_30;
N
Niels 已提交
6587 6588 6589 6590 6591 6592 6593 6594 6595
                            }
                        }
                    }
                    else
                    {
                        if (yych <= ',')
                        {
                            if (yych == '"')
                            {
N
Niels 已提交
6596
                                goto basic_json_parser_27;
N
Niels 已提交
6597 6598 6599
                            }
                            if (yych <= '+')
                            {
N
Niels 已提交
6600
                                goto basic_json_parser_30;
N
Niels 已提交
6601
                            }
N
Niels 已提交
6602
                            goto basic_json_parser_16;
N
Niels 已提交
6603 6604 6605 6606 6607
                        }
                        else
                        {
                            if (yych <= '/')
                            {
N
Niels 已提交
6608 6609 6610 6611 6612
                                if (yych <= '-')
                                {
                                    goto basic_json_parser_23;
                                }
                                goto basic_json_parser_30;
N
Niels 已提交
6613
                            }
N
Niels 已提交
6614
                            else
N
Niels 已提交
6615
                            {
N
Niels 已提交
6616 6617 6618 6619 6620 6621 6622 6623 6624
                                if (yych <= '0')
                                {
                                    goto basic_json_parser_24;
                                }
                                if (yych <= '9')
                                {
                                    goto basic_json_parser_26;
                                }
                                goto basic_json_parser_18;
N
Niels 已提交
6625 6626 6627 6628 6629 6630
                            }
                        }
                    }
                }
                else
                {
N
Niels 已提交
6631
                    if (yych <= 'n')
N
Niels 已提交
6632
                    {
N
Niels 已提交
6633
                        if (yych <= ']')
N
Niels 已提交
6634
                        {
N
Niels 已提交
6635
                            if (yych == '[')
N
Niels 已提交
6636
                            {
N
Niels 已提交
6637
                                goto basic_json_parser_8;
N
Niels 已提交
6638
                            }
N
Niels 已提交
6639
                            if (yych <= '\\')
N
Niels 已提交
6640
                            {
N
Niels 已提交
6641
                                goto basic_json_parser_30;
N
Niels 已提交
6642
                            }
N
Niels 已提交
6643
                            goto basic_json_parser_10;
N
Niels 已提交
6644 6645 6646
                        }
                        else
                        {
N
Niels 已提交
6647
                            if (yych == 'f')
N
Niels 已提交
6648
                            {
N
Niels 已提交
6649
                                goto basic_json_parser_22;
N
Niels 已提交
6650
                            }
N
Niels 已提交
6651
                            if (yych <= 'm')
N
Niels 已提交
6652
                            {
N
Niels 已提交
6653
                                goto basic_json_parser_30;
N
Niels 已提交
6654
                            }
N
Niels 已提交
6655
                            goto basic_json_parser_20;
N
Niels 已提交
6656 6657 6658 6659
                        }
                    }
                    else
                    {
N
Niels 已提交
6660
                        if (yych <= '{')
N
Niels 已提交
6661
                        {
N
Niels 已提交
6662
                            if (yych == 't')
N
Niels 已提交
6663
                            {
N
Niels 已提交
6664
                                goto basic_json_parser_21;
N
Niels 已提交
6665
                            }
N
Niels 已提交
6666
                            if (yych <= 'z')
N
Niels 已提交
6667
                            {
N
Niels 已提交
6668
                                goto basic_json_parser_30;
N
Niels 已提交
6669
                            }
N
Niels 已提交
6670
                            goto basic_json_parser_12;
N
Niels 已提交
6671 6672 6673
                        }
                        else
                        {
N
Niels 已提交
6674
                            if (yych <= '}')
N
Niels 已提交
6675
                            {
N
Niels 已提交
6676 6677 6678 6679 6680
                                if (yych <= '|')
                                {
                                    goto basic_json_parser_30;
                                }
                                goto basic_json_parser_14;
N
Niels 已提交
6681
                            }
N
Niels 已提交
6682
                            else
N
Niels 已提交
6683
                            {
N
Niels 已提交
6684 6685 6686 6687 6688
                                if (yych == 0xEF)
                                {
                                    goto basic_json_parser_6;
                                }
                                goto basic_json_parser_30;
N
Niels 已提交
6689 6690 6691
                            }
                        }
                    }
N
Niels 已提交
6692 6693
                }
basic_json_parser_2:
N
Niels 已提交
6694 6695 6696
                ++m_cursor;
                yych = *m_cursor;
                goto basic_json_parser_5;
N
Niels 已提交
6697
basic_json_parser_3:
N
Niels 已提交
6698 6699 6700
                {
                    return scan();
                }
N
Niels 已提交
6701
basic_json_parser_4:
N
Niels 已提交
6702 6703 6704 6705 6706 6707
                ++m_cursor;
                if (m_limit <= m_cursor)
                {
                    yyfill();    // LCOV_EXCL_LINE;
                }
                yych = *m_cursor;
N
Niels 已提交
6708
basic_json_parser_5:
N
Niels 已提交
6709 6710 6711 6712 6713
                if (yybm[0 + yych] & 32)
                {
                    goto basic_json_parser_4;
                }
                goto basic_json_parser_3;
N
Niels 已提交
6714
basic_json_parser_6:
N
Niels 已提交
6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725
                yyaccept = 0;
                yych = *(m_marker = ++m_cursor);
                if (yych == 0xBB)
                {
                    goto basic_json_parser_64;
                }
basic_json_parser_7:
                {
                    return token_type::parse_error;
                }
basic_json_parser_8:
N
Niels 已提交
6726 6727 6728 6729
                ++m_cursor;
                {
                    return token_type::begin_array;
                }
N
Niels 已提交
6730
basic_json_parser_10:
N
Niels 已提交
6731 6732 6733 6734
                ++m_cursor;
                {
                    return token_type::end_array;
                }
N
Niels 已提交
6735
basic_json_parser_12:
N
Niels 已提交
6736 6737 6738 6739
                ++m_cursor;
                {
                    return token_type::begin_object;
                }
N
Niels 已提交
6740
basic_json_parser_14:
N
Niels 已提交
6741 6742 6743 6744
                ++m_cursor;
                {
                    return token_type::end_object;
                }
N
Niels 已提交
6745
basic_json_parser_16:
N
Niels 已提交
6746 6747 6748 6749
                ++m_cursor;
                {
                    return token_type::value_separator;
                }
N
Niels 已提交
6750
basic_json_parser_18:
N
Niels 已提交
6751 6752 6753 6754
                ++m_cursor;
                {
                    return token_type::name_separator;
                }
N
Niels 已提交
6755
basic_json_parser_20:
N
Niels 已提交
6756 6757 6758 6759
                yyaccept = 0;
                yych = *(m_marker = ++m_cursor);
                if (yych == 'u')
                {
N
Niels 已提交
6760
                    goto basic_json_parser_60;
N
Niels 已提交
6761
                }
N
Niels 已提交
6762 6763
                goto basic_json_parser_7;
basic_json_parser_21:
N
Niels 已提交
6764 6765 6766 6767
                yyaccept = 0;
                yych = *(m_marker = ++m_cursor);
                if (yych == 'r')
                {
N
Niels 已提交
6768
                    goto basic_json_parser_56;
N
Niels 已提交
6769
                }
N
Niels 已提交
6770 6771
                goto basic_json_parser_7;
basic_json_parser_22:
N
Niels 已提交
6772 6773 6774 6775
                yyaccept = 0;
                yych = *(m_marker = ++m_cursor);
                if (yych == 'a')
                {
N
Niels 已提交
6776
                    goto basic_json_parser_51;
N
Niels 已提交
6777
                }
N
Niels 已提交
6778 6779
                goto basic_json_parser_7;
basic_json_parser_23:
N
Niels 已提交
6780 6781 6782
                yych = *++m_cursor;
                if (yych <= '/')
                {
N
Niels 已提交
6783
                    goto basic_json_parser_7;
N
Niels 已提交
6784 6785 6786
                }
                if (yych <= '0')
                {
N
Niels 已提交
6787
                    goto basic_json_parser_50;
N
Niels 已提交
6788 6789 6790
                }
                if (yych <= '9')
                {
N
Niels 已提交
6791
                    goto basic_json_parser_41;
N
Niels 已提交
6792
                }
N
Niels 已提交
6793 6794
                goto basic_json_parser_7;
basic_json_parser_24:
N
Niels 已提交
6795 6796 6797 6798 6799 6800
                yyaccept = 1;
                yych = *(m_marker = ++m_cursor);
                if (yych <= 'D')
                {
                    if (yych == '.')
                    {
N
Niels 已提交
6801
                        goto basic_json_parser_43;
N
Niels 已提交
6802 6803 6804 6805 6806 6807
                    }
                }
                else
                {
                    if (yych <= 'E')
                    {
N
Niels 已提交
6808
                        goto basic_json_parser_44;
N
Niels 已提交
6809 6810 6811
                    }
                    if (yych == 'e')
                    {
N
Niels 已提交
6812
                        goto basic_json_parser_44;
N
Niels 已提交
6813 6814
                    }
                }
N
Niels 已提交
6815
basic_json_parser_25:
N
Niels 已提交
6816 6817 6818
                {
                    return token_type::value_number;
                }
N
Niels 已提交
6819
basic_json_parser_26:
N
Niels 已提交
6820 6821
                yyaccept = 1;
                yych = *(m_marker = ++m_cursor);
N
Niels 已提交
6822 6823
                goto basic_json_parser_42;
basic_json_parser_27:
N
Niels 已提交
6824 6825 6826 6827
                yyaccept = 0;
                yych = *(m_marker = ++m_cursor);
                if (yych <= 0x0F)
                {
N
Niels 已提交
6828
                    goto basic_json_parser_7;
N
Niels 已提交
6829
                }
N
Niels 已提交
6830 6831
                goto basic_json_parser_32;
basic_json_parser_28:
N
Niels 已提交
6832 6833 6834 6835
                ++m_cursor;
                {
                    return token_type::end_of_input;
                }
N
Niels 已提交
6836
basic_json_parser_30:
N
Niels 已提交
6837 6838 6839
                yych = *++m_cursor;
                goto basic_json_parser_7;
basic_json_parser_31:
N
Niels 已提交
6840 6841 6842 6843 6844 6845
                ++m_cursor;
                if (m_limit <= m_cursor)
                {
                    yyfill();    // LCOV_EXCL_LINE;
                }
                yych = *m_cursor;
N
Niels 已提交
6846
basic_json_parser_32:
N
Niels 已提交
6847 6848
                if (yybm[0 + yych] & 64)
                {
N
Niels 已提交
6849
                    goto basic_json_parser_31;
N
Niels 已提交
6850
                }
N
Niels 已提交
6851 6852
                if (yych <= 0x0F)
                {
N
Niels 已提交
6853
                    goto basic_json_parser_33;
N
Niels 已提交
6854
                }
N
Niels 已提交
6855 6856
                if (yych <= '"')
                {
N
Niels 已提交
6857
                    goto basic_json_parser_35;
N
Niels 已提交
6858
                }
N
Niels 已提交
6859 6860
                goto basic_json_parser_34;
basic_json_parser_33:
N
Niels 已提交
6861 6862 6863
                m_cursor = m_marker;
                if (yyaccept == 0)
                {
N
Niels 已提交
6864
                    goto basic_json_parser_7;
N
Niels 已提交
6865 6866 6867
                }
                else
                {
N
Niels 已提交
6868
                    goto basic_json_parser_25;
N
Niels 已提交
6869
                }
N
Niels 已提交
6870
basic_json_parser_34:
N
Niels 已提交
6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882
                ++m_cursor;
                if (m_limit <= m_cursor)
                {
                    yyfill();    // LCOV_EXCL_LINE;
                }
                yych = *m_cursor;
                if (yych <= 'e')
                {
                    if (yych <= '/')
                    {
                        if (yych == '"')
                        {
N
Niels 已提交
6883
                            goto basic_json_parser_31;
N
Niels 已提交
6884 6885 6886
                        }
                        if (yych <= '.')
                        {
N
Niels 已提交
6887
                            goto basic_json_parser_33;
N
Niels 已提交
6888
                        }
N
Niels 已提交
6889
                        goto basic_json_parser_31;
N
Niels 已提交
6890 6891 6892 6893 6894 6895 6896
                    }
                    else
                    {
                        if (yych <= '\\')
                        {
                            if (yych <= '[')
                            {
N
Niels 已提交
6897
                                goto basic_json_parser_33;
N
Niels 已提交
6898
                            }
N
Niels 已提交
6899
                            goto basic_json_parser_31;
N
Niels 已提交
6900 6901 6902 6903 6904
                        }
                        else
                        {
                            if (yych == 'b')
                            {
N
Niels 已提交
6905
                                goto basic_json_parser_31;
N
Niels 已提交
6906
                            }
N
Niels 已提交
6907
                            goto basic_json_parser_33;
N
Niels 已提交
6908 6909 6910 6911 6912 6913 6914 6915 6916
                        }
                    }
                }
                else
                {
                    if (yych <= 'q')
                    {
                        if (yych <= 'f')
                        {
N
Niels 已提交
6917
                            goto basic_json_parser_31;
N
Niels 已提交
6918 6919 6920
                        }
                        if (yych == 'n')
                        {
N
Niels 已提交
6921
                            goto basic_json_parser_31;
N
Niels 已提交
6922
                        }
N
Niels 已提交
6923
                        goto basic_json_parser_33;
N
Niels 已提交
6924 6925 6926 6927 6928 6929 6930
                    }
                    else
                    {
                        if (yych <= 's')
                        {
                            if (yych <= 'r')
                            {
N
Niels 已提交
6931
                                goto basic_json_parser_31;
N
Niels 已提交
6932
                            }
N
Niels 已提交
6933
                            goto basic_json_parser_33;
N
Niels 已提交
6934 6935 6936 6937 6938
                        }
                        else
                        {
                            if (yych <= 't')
                            {
N
Niels 已提交
6939
                                goto basic_json_parser_31;
N
Niels 已提交
6940 6941 6942
                            }
                            if (yych <= 'u')
                            {
N
Niels 已提交
6943
                                goto basic_json_parser_37;
N
Niels 已提交
6944
                            }
N
Niels 已提交
6945
                            goto basic_json_parser_33;
N
Niels 已提交
6946 6947 6948
                        }
                    }
                }
N
Niels 已提交
6949
basic_json_parser_35:
N
Niels 已提交
6950 6951 6952 6953
                ++m_cursor;
                {
                    return token_type::value_string;
                }
N
Niels 已提交
6954
basic_json_parser_37:
N
Niels 已提交
6955 6956 6957 6958 6959 6960 6961 6962 6963 6964
                ++m_cursor;
                if (m_limit <= m_cursor)
                {
                    yyfill();    // LCOV_EXCL_LINE;
                }
                yych = *m_cursor;
                if (yych <= '@')
                {
                    if (yych <= '/')
                    {
N
Niels 已提交
6965
                        goto basic_json_parser_33;
N
Niels 已提交
6966 6967 6968
                    }
                    if (yych >= ':')
                    {
N
Niels 已提交
6969
                        goto basic_json_parser_33;
N
Niels 已提交
6970 6971 6972 6973 6974 6975
                    }
                }
                else
                {
                    if (yych <= 'F')
                    {
N
Niels 已提交
6976
                        goto basic_json_parser_38;
N
Niels 已提交
6977 6978 6979
                    }
                    if (yych <= '`')
                    {
N
Niels 已提交
6980
                        goto basic_json_parser_33;
N
Niels 已提交
6981 6982 6983
                    }
                    if (yych >= 'g')
                    {
N
Niels 已提交
6984
                        goto basic_json_parser_33;
N
Niels 已提交
6985 6986
                    }
                }
N
Niels 已提交
6987
basic_json_parser_38:
N
Niels 已提交
6988 6989 6990 6991 6992 6993 6994 6995 6996 6997
                ++m_cursor;
                if (m_limit <= m_cursor)
                {
                    yyfill();    // LCOV_EXCL_LINE;
                }
                yych = *m_cursor;
                if (yych <= '@')
                {
                    if (yych <= '/')
                    {
N
Niels 已提交
6998
                        goto basic_json_parser_33;
N
Niels 已提交
6999 7000 7001
                    }
                    if (yych >= ':')
                    {
N
Niels 已提交
7002
                        goto basic_json_parser_33;
N
Niels 已提交
7003 7004 7005 7006 7007 7008
                    }
                }
                else
                {
                    if (yych <= 'F')
                    {
N
Niels 已提交
7009
                        goto basic_json_parser_39;
N
Niels 已提交
7010 7011 7012
                    }
                    if (yych <= '`')
                    {
N
Niels 已提交
7013
                        goto basic_json_parser_33;
N
Niels 已提交
7014 7015 7016
                    }
                    if (yych >= 'g')
                    {
N
Niels 已提交
7017
                        goto basic_json_parser_33;
N
Niels 已提交
7018 7019
                    }
                }
N
Niels 已提交
7020
basic_json_parser_39:
N
Niels 已提交
7021 7022 7023 7024 7025 7026 7027 7028 7029 7030
                ++m_cursor;
                if (m_limit <= m_cursor)
                {
                    yyfill();    // LCOV_EXCL_LINE;
                }
                yych = *m_cursor;
                if (yych <= '@')
                {
                    if (yych <= '/')
                    {
N
Niels 已提交
7031
                        goto basic_json_parser_33;
N
Niels 已提交
7032 7033 7034
                    }
                    if (yych >= ':')
                    {
N
Niels 已提交
7035
                        goto basic_json_parser_33;
N
Niels 已提交
7036 7037 7038 7039 7040 7041
                    }
                }
                else
                {
                    if (yych <= 'F')
                    {
N
Niels 已提交
7042
                        goto basic_json_parser_40;
N
Niels 已提交
7043 7044 7045
                    }
                    if (yych <= '`')
                    {
N
Niels 已提交
7046
                        goto basic_json_parser_33;
N
Niels 已提交
7047 7048 7049
                    }
                    if (yych >= 'g')
                    {
N
Niels 已提交
7050
                        goto basic_json_parser_33;
N
Niels 已提交
7051 7052
                    }
                }
N
Niels 已提交
7053
basic_json_parser_40:
N
Niels 已提交
7054 7055 7056 7057 7058 7059 7060 7061 7062 7063
                ++m_cursor;
                if (m_limit <= m_cursor)
                {
                    yyfill();    // LCOV_EXCL_LINE;
                }
                yych = *m_cursor;
                if (yych <= '@')
                {
                    if (yych <= '/')
                    {
N
Niels 已提交
7064
                        goto basic_json_parser_33;
N
Niels 已提交
7065 7066 7067
                    }
                    if (yych <= '9')
                    {
N
Niels 已提交
7068
                        goto basic_json_parser_31;
N
Niels 已提交
7069
                    }
N
Niels 已提交
7070
                    goto basic_json_parser_33;
N
Niels 已提交
7071 7072 7073 7074 7075
                }
                else
                {
                    if (yych <= 'F')
                    {
N
Niels 已提交
7076
                        goto basic_json_parser_31;
N
Niels 已提交
7077 7078 7079
                    }
                    if (yych <= '`')
                    {
N
Niels 已提交
7080
                        goto basic_json_parser_33;
N
Niels 已提交
7081 7082 7083
                    }
                    if (yych <= 'f')
                    {
N
Niels 已提交
7084
                        goto basic_json_parser_31;
N
Niels 已提交
7085
                    }
N
Niels 已提交
7086
                    goto basic_json_parser_33;
N
Niels 已提交
7087
                }
N
Niels 已提交
7088
basic_json_parser_41:
N
Niels 已提交
7089 7090 7091 7092 7093 7094 7095
                yyaccept = 1;
                m_marker = ++m_cursor;
                if ((m_limit - m_cursor) < 3)
                {
                    yyfill();    // LCOV_EXCL_LINE;
                }
                yych = *m_cursor;
N
Niels 已提交
7096
basic_json_parser_42:
N
Niels 已提交
7097 7098
                if (yybm[0 + yych] & 128)
                {
N
Niels 已提交
7099
                    goto basic_json_parser_41;
N
Niels 已提交
7100 7101 7102 7103 7104
                }
                if (yych <= 'D')
                {
                    if (yych != '.')
                    {
N
Niels 已提交
7105
                        goto basic_json_parser_25;
N
Niels 已提交
7106 7107 7108 7109 7110 7111
                    }
                }
                else
                {
                    if (yych <= 'E')
                    {
N
Niels 已提交
7112
                        goto basic_json_parser_44;
N
Niels 已提交
7113 7114 7115
                    }
                    if (yych == 'e')
                    {
N
Niels 已提交
7116
                        goto basic_json_parser_44;
N
Niels 已提交
7117
                    }
N
Niels 已提交
7118
                    goto basic_json_parser_25;
N
Niels 已提交
7119
                }
N
Niels 已提交
7120
basic_json_parser_43:
N
Niels 已提交
7121 7122 7123
                yych = *++m_cursor;
                if (yych <= '/')
                {
N
Niels 已提交
7124
                    goto basic_json_parser_33;
N
Niels 已提交
7125 7126 7127
                }
                if (yych <= '9')
                {
N
Niels 已提交
7128
                    goto basic_json_parser_48;
N
Niels 已提交
7129
                }
N
Niels 已提交
7130 7131
                goto basic_json_parser_33;
basic_json_parser_44:
N
Niels 已提交
7132 7133 7134 7135 7136
                yych = *++m_cursor;
                if (yych <= ',')
                {
                    if (yych != '+')
                    {
N
Niels 已提交
7137
                        goto basic_json_parser_33;
N
Niels 已提交
7138 7139 7140 7141 7142 7143
                    }
                }
                else
                {
                    if (yych <= '-')
                    {
N
Niels 已提交
7144
                        goto basic_json_parser_45;
N
Niels 已提交
7145 7146 7147
                    }
                    if (yych <= '/')
                    {
N
Niels 已提交
7148
                        goto basic_json_parser_33;
N
Niels 已提交
7149 7150 7151
                    }
                    if (yych <= '9')
                    {
N
Niels 已提交
7152
                        goto basic_json_parser_46;
N
Niels 已提交
7153
                    }
N
Niels 已提交
7154
                    goto basic_json_parser_33;
N
Niels 已提交
7155
                }
N
Niels 已提交
7156
basic_json_parser_45:
N
Niels 已提交
7157 7158 7159
                yych = *++m_cursor;
                if (yych <= '/')
                {
N
Niels 已提交
7160
                    goto basic_json_parser_33;
N
Niels 已提交
7161 7162 7163
                }
                if (yych >= ':')
                {
N
Niels 已提交
7164
                    goto basic_json_parser_33;
N
Niels 已提交
7165
                }
N
Niels 已提交
7166
basic_json_parser_46:
N
Niels 已提交
7167 7168 7169 7170 7171 7172 7173 7174
                ++m_cursor;
                if (m_limit <= m_cursor)
                {
                    yyfill();    // LCOV_EXCL_LINE;
                }
                yych = *m_cursor;
                if (yych <= '/')
                {
N
Niels 已提交
7175
                    goto basic_json_parser_25;
N
Niels 已提交
7176 7177 7178
                }
                if (yych <= '9')
                {
N
Niels 已提交
7179
                    goto basic_json_parser_46;
N
Niels 已提交
7180
                }
N
Niels 已提交
7181 7182
                goto basic_json_parser_25;
basic_json_parser_48:
N
Niels 已提交
7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193
                yyaccept = 1;
                m_marker = ++m_cursor;
                if ((m_limit - m_cursor) < 3)
                {
                    yyfill();    // LCOV_EXCL_LINE;
                }
                yych = *m_cursor;
                if (yych <= 'D')
                {
                    if (yych <= '/')
                    {
N
Niels 已提交
7194
                        goto basic_json_parser_25;
N
Niels 已提交
7195 7196 7197
                    }
                    if (yych <= '9')
                    {
N
Niels 已提交
7198
                        goto basic_json_parser_48;
N
Niels 已提交
7199
                    }
N
Niels 已提交
7200
                    goto basic_json_parser_25;
N
Niels 已提交
7201 7202 7203 7204 7205
                }
                else
                {
                    if (yych <= 'E')
                    {
N
Niels 已提交
7206
                        goto basic_json_parser_44;
N
Niels 已提交
7207 7208 7209
                    }
                    if (yych == 'e')
                    {
N
Niels 已提交
7210
                        goto basic_json_parser_44;
N
Niels 已提交
7211
                    }
N
Niels 已提交
7212
                    goto basic_json_parser_25;
N
Niels 已提交
7213
                }
N
Niels 已提交
7214
basic_json_parser_50:
N
Niels 已提交
7215 7216 7217 7218 7219 7220
                yyaccept = 1;
                yych = *(m_marker = ++m_cursor);
                if (yych <= 'D')
                {
                    if (yych == '.')
                    {
N
Niels 已提交
7221
                        goto basic_json_parser_43;
N
Niels 已提交
7222
                    }
N
Niels 已提交
7223
                    goto basic_json_parser_25;
N
Niels 已提交
7224 7225 7226 7227 7228
                }
                else
                {
                    if (yych <= 'E')
                    {
N
Niels 已提交
7229
                        goto basic_json_parser_44;
N
Niels 已提交
7230 7231 7232
                    }
                    if (yych == 'e')
                    {
N
Niels 已提交
7233
                        goto basic_json_parser_44;
N
Niels 已提交
7234
                    }
N
Niels 已提交
7235
                    goto basic_json_parser_25;
N
Niels 已提交
7236
                }
N
Niels 已提交
7237
basic_json_parser_51:
N
Niels 已提交
7238 7239 7240
                yych = *++m_cursor;
                if (yych != 'l')
                {
N
Niels 已提交
7241
                    goto basic_json_parser_33;
N
Niels 已提交
7242 7243 7244 7245
                }
                yych = *++m_cursor;
                if (yych != 's')
                {
N
Niels 已提交
7246
                    goto basic_json_parser_33;
N
Niels 已提交
7247 7248 7249 7250
                }
                yych = *++m_cursor;
                if (yych != 'e')
                {
N
Niels 已提交
7251
                    goto basic_json_parser_33;
N
Niels 已提交
7252 7253 7254 7255 7256
                }
                ++m_cursor;
                {
                    return token_type::literal_false;
                }
N
Niels 已提交
7257
basic_json_parser_56:
N
Niels 已提交
7258 7259 7260
                yych = *++m_cursor;
                if (yych != 'u')
                {
N
Niels 已提交
7261
                    goto basic_json_parser_33;
N
Niels 已提交
7262 7263 7264 7265
                }
                yych = *++m_cursor;
                if (yych != 'e')
                {
N
Niels 已提交
7266
                    goto basic_json_parser_33;
N
Niels 已提交
7267 7268 7269 7270 7271
                }
                ++m_cursor;
                {
                    return token_type::literal_true;
                }
N
Niels 已提交
7272
basic_json_parser_60:
N
Niels 已提交
7273 7274 7275
                yych = *++m_cursor;
                if (yych != 'l')
                {
N
Niels 已提交
7276
                    goto basic_json_parser_33;
N
Niels 已提交
7277 7278 7279 7280
                }
                yych = *++m_cursor;
                if (yych != 'l')
                {
N
Niels 已提交
7281
                    goto basic_json_parser_33;
N
Niels 已提交
7282 7283 7284 7285 7286
                }
                ++m_cursor;
                {
                    return token_type::literal_null;
                }
N
Niels 已提交
7287 7288 7289 7290 7291 7292 7293 7294 7295 7296
basic_json_parser_64:
                yych = *++m_cursor;
                if (yych != 0xBF)
                {
                    goto basic_json_parser_33;
                }
                ++m_cursor;
                {
                    return scan();
                }
N
Niels 已提交
7297
            }
N
Niels 已提交
7298

N
Niels 已提交
7299 7300 7301 7302

        }

        /// append data from the stream to the internal buffer
N
Niels 已提交
7303
        void yyfill() noexcept
N
Niels 已提交
7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316
        {
            if (not m_stream or not * m_stream)
            {
                return;
            }

            const ssize_t offset_start = m_start - m_content;
            const ssize_t offset_marker = m_marker - m_start;
            const ssize_t offset_cursor = m_cursor - m_start;

            m_buffer.erase(0, static_cast<size_t>(offset_start));
            std::string line;
            std::getline(*m_stream, line);
N
Niels 已提交
7317
            m_buffer += "\n" + line; // add line with newline symbol
N
Niels 已提交
7318 7319 7320 7321 7322 7323

            m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str());
            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 已提交
7324 7325
        }

N
Niels 已提交
7326
        /// return string representation of last read token
N
Niels 已提交
7327
        string_t get_token() const noexcept
N
Niels 已提交
7328
        {
N
Niels 已提交
7329 7330
            return string_t(reinterpret_cast<typename string_t::const_pointer>(m_start),
                            static_cast<size_t>(m_cursor - m_start));
N
Niels 已提交
7331 7332 7333
        }

        /*!
N
Niels 已提交
7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349
        @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
           characters (e.g., @c "\\n" is replaced by @c "\n"), some are copied
           as is (e.g., @c "\\\\"). Furthermore, Unicode escapes of the shape
           @c "\\uxxxx" need special care. In this case, to_unicode takes care
           of the construction of the values.
        2. Unescaped characters are copied as is.
N
Niels 已提交
7350 7351

        @return string value of current token without opening and closing quotes
N
Niels 已提交
7352
        @throw std::out_of_range if to_unicode fails
N
Niels 已提交
7353
        */
N
Niels 已提交
7354
        string_t get_string() const
N
Niels 已提交
7355
        {
N
Niels 已提交
7356
            string_t result;
N
Niels 已提交
7357 7358 7359
            result.reserve(static_cast<size_t>(m_cursor - m_start - 2));

            // iterate the result between the quotes
N
Niels 已提交
7360
            for (const lexer_char_t* i = m_start + 1; i < m_cursor - 1; ++i)
N
Niels 已提交
7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397
            {
                // 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 已提交
7398
                            result += "\\";
N
Niels 已提交
7399 7400 7401 7402
                            break;
                        }
                        case '/':
                        {
N
Niels 已提交
7403
                            result += "/";
N
Niels 已提交
7404 7405 7406 7407
                            break;
                        }
                        case '"':
                        {
N
Niels 已提交
7408
                            result += "\"";
N
Niels 已提交
7409 7410 7411 7412 7413 7414
                            break;
                        }

                        // unicode
                        case 'u':
                        {
N
Niels 已提交
7415
                            // get code xxxx from uxxxx
N
Niels 已提交
7416 7417
                            auto codepoint = std::strtoul(std::string(reinterpret_cast<typename string_t::const_pointer>(i + 1),
                                                          4).c_str(), nullptr, 16);
N
Niels 已提交
7418

N
Niels 已提交
7419
                            // check if codepoint is a high surrogate
N
Niels 已提交
7420 7421
                            if (codepoint >= 0xD800 and codepoint <= 0xDBFF)
                            {
N
Niels 已提交
7422
                                // make sure there is a subsequent unicode
N
Niels 已提交
7423
                                if ((i + 6 >= m_limit) or * (i + 5) != '\\' or * (i + 6) != 'u')
N
Niels 已提交
7424 7425 7426 7427
                                {
                                    throw std::invalid_argument("missing low surrogate");
                                }

N
Niels 已提交
7428
                                // get code yyyy from uxxxx\uyyyy
N
Niels 已提交
7429 7430
                                auto codepoint2 = std::strtoul(std::string(reinterpret_cast<typename string_t::const_pointer>
                                                               (i + 7), 4).c_str(), nullptr, 16);
N
Niels 已提交
7431
                                result += to_unicode(codepoint, codepoint2);
7432 7433
                                // skip the next 10 characters (xxxx\uyyyy)
                                i += 10;
N
Niels 已提交
7434 7435 7436 7437 7438 7439 7440 7441
                            }
                            else
                            {
                                // add unicode character(s)
                                result += to_unicode(codepoint);
                                // skip the next four characters (xxxx)
                                i += 4;
                            }
N
Niels 已提交
7442 7443 7444 7445 7446 7447 7448 7449
                            break;
                        }
                    }
                }
                else
                {
                    // all other characters are just copied to the end of the
                    // string
N
Niels 已提交
7450
                    result.append(1, static_cast<typename string_t::value_type>(*i));
N
Niels 已提交
7451 7452 7453 7454
                }
            }

            return result;
N
Niels 已提交
7455 7456
        }

N
Niels 已提交
7457 7458 7459 7460
        /*!
        @brief return number value for number tokens

        This function translates the last token into a floating point number.
N
Cleanup  
Niels 已提交
7461
        The pointer m_start points to the beginning of the parsed number. We
N
Niels 已提交
7462 7463 7464 7465 7466 7467 7468 7469 7470 7471
        pass this pointer to std::strtod which sets endptr to the first
        character past the converted number. If this pointer is not the same as
        m_cursor, then either more or less characters have been used during the
        comparison. This can happen for inputs like "01" which will be treated
        like number 0 followed by number 1.

        @return the result of the number conversion or NAN if the conversion
        read past the current token. The latter case needs to be treated by the
        caller function.

N
Niels 已提交
7472
        @throw std::range_error if passed value is out of range
N
Niels 已提交
7473
        */
N
Niels 已提交
7474
        long double get_number() const
N
Niels 已提交
7475
        {
N
Niels 已提交
7476 7477 7478 7479 7480 7481 7482 7483
            // conversion
            typename string_t::value_type* endptr;
            const auto float_val = std::strtold(reinterpret_cast<typename string_t::const_pointer>(m_start),
                                                &endptr);

            // return float_val if the whole number was translated and NAN
            // otherwise
            return (reinterpret_cast<lexer_char_t*>(endptr) == m_cursor) ? float_val : NAN;
N
Niels 已提交
7484 7485 7486
        }

      private:
N
Niels 已提交
7487 7488
        /// optional input stream
        std::istream* m_stream;
N
fixes  
Niels 已提交
7489
        /// the buffer
N
Niels 已提交
7490 7491
        string_t m_buffer;
        /// the buffer pointer
N
Niels 已提交
7492
        const lexer_char_t* m_content = nullptr;
N
Niels 已提交
7493
        /// pointer to the beginning of the current symbol
N
Niels 已提交
7494
        const lexer_char_t* m_start = nullptr;
N
Niels 已提交
7495 7496
        /// pointer for backtracking information
        const lexer_char_t* m_marker = nullptr;
N
fixes  
Niels 已提交
7497
        /// pointer to the current symbol
N
Niels 已提交
7498
        const lexer_char_t* m_cursor = nullptr;
N
fixes  
Niels 已提交
7499
        /// pointer to the end of the buffer
N
Niels 已提交
7500
        const lexer_char_t* m_limit = nullptr;
N
Niels 已提交
7501 7502
    };

N
Niels 已提交
7503 7504
    /*!
    @brief syntax analysis
N
Niels 已提交
7505 7506

    This class implements a recursive decent parser.
N
Niels 已提交
7507
    */
N
Niels 已提交
7508 7509 7510 7511
    class parser
    {
      public:
        /// constructor for strings
N
Niels 已提交
7512 7513
        parser(const string_t& s, parser_callback_t cb = nullptr)
            : callback(cb), m_lexer(s)
N
Niels 已提交
7514 7515 7516 7517 7518 7519
        {
            // read first token
            get_token();
        }

        /// a parser reading from an input stream
N
Niels 已提交
7520 7521
        parser(std::istream& _is, parser_callback_t cb = nullptr)
            : callback(cb), m_lexer(&_is)
N
Niels 已提交
7522 7523 7524 7525 7526
        {
            // read first token
            get_token();
        }

N
Niels 已提交
7527
        /// public parser interface
N
Niels 已提交
7528
        basic_json parse()
N
Niels 已提交
7529
        {
N
Niels 已提交
7530
            basic_json result = parse_internal(true);
N
Niels 已提交
7531 7532 7533

            expect(lexer::token_type::end_of_input);

N
Niels 已提交
7534 7535 7536
            // return parser result and replace it with null in case the
            // top-level value was discarded by the callback function
            return result.is_discarded() ? basic_json() : result;
N
Niels 已提交
7537 7538 7539 7540
        }

      private:
        /// the actual parser
N
Niels 已提交
7541
        basic_json parse_internal(bool keep)
N
Niels 已提交
7542
        {
N
Niels 已提交
7543 7544
            auto result = basic_json(value_t::discarded);

N
Niels 已提交
7545 7546
            switch (last_token)
            {
7547
                case lexer::token_type::begin_object:
N
Niels 已提交
7548
                {
N
Niels 已提交
7549
                    if (keep and (not callback or (keep = callback(depth++, parse_event_t::object_start, result))))
N
Niels 已提交
7550 7551
                    {
                        // explicitly set result to object to cope with {}
N
Niels 已提交
7552 7553
                        result.m_type = value_t::object;
                        result.m_value = json_value(value_t::object);
N
Niels 已提交
7554
                    }
N
Niels 已提交
7555 7556 7557 7558 7559 7560 7561

                    // read next token
                    get_token();

                    // closing } -> we are done
                    if (last_token == lexer::token_type::end_object)
                    {
N
Niels 已提交
7562
                        get_token();
N
Niels 已提交
7563
                        if (keep and callback and not callback(--depth, parse_event_t::object_end, result))
N
Niels 已提交
7564 7565 7566
                        {
                            result = basic_json(value_t::discarded);
                        }
N
Niels 已提交
7567
                        return result;
N
Niels 已提交
7568 7569
                    }

N
Niels 已提交
7570 7571 7572
                    // no comma is expected here
                    unexpect(lexer::token_type::value_separator);

N
Niels 已提交
7573 7574 7575
                    // otherwise: parse key-value pairs
                    do
                    {
N
Niels 已提交
7576 7577 7578 7579 7580 7581
                        // ugly, but could be fixed with loop reorganization
                        if (last_token == lexer::token_type::value_separator)
                        {
                            get_token();
                        }

N
Niels 已提交
7582 7583 7584 7585
                        // store key
                        expect(lexer::token_type::value_string);
                        const auto key = m_lexer.get_string();

N
Niels 已提交
7586 7587 7588
                        bool keep_tag = false;
                        if (keep)
                        {
N
Niels 已提交
7589 7590 7591 7592 7593 7594 7595 7596 7597
                            if (callback)
                            {
                                basic_json k(key);
                                keep_tag = callback(depth, parse_event_t::key, k);
                            }
                            else
                            {
                                keep_tag = true;
                            }
N
Niels 已提交
7598 7599
                        }

N
Niels 已提交
7600 7601 7602 7603
                        // parse separator (:)
                        get_token();
                        expect(lexer::token_type::name_separator);

7604
                        // parse and add value
N
Niels 已提交
7605
                        get_token();
N
Niels 已提交
7606 7607 7608
                        auto value = parse_internal(keep);
                        if (keep and keep_tag and not value.is_discarded())
                        {
N
Niels 已提交
7609
                            result[key] = std::move(value);
N
Niels 已提交
7610
                        }
N
Niels 已提交
7611
                    }
N
Niels 已提交
7612
                    while (last_token == lexer::token_type::value_separator);
N
Niels 已提交
7613 7614 7615

                    // closing }
                    expect(lexer::token_type::end_object);
N
Niels 已提交
7616
                    get_token();
N
Niels 已提交
7617
                    if (keep and callback and not callback(--depth, parse_event_t::object_end, result))
N
Niels 已提交
7618 7619 7620
                    {
                        result = basic_json(value_t::discarded);
                    }
N
Niels 已提交
7621 7622

                    return result;
N
Niels 已提交
7623 7624
                }

7625
                case lexer::token_type::begin_array:
N
Niels 已提交
7626
                {
N
Niels 已提交
7627
                    if (keep and (not callback or (keep = callback(depth++, parse_event_t::array_start, result))))
N
Niels 已提交
7628 7629
                    {
                        // explicitly set result to object to cope with []
N
Niels 已提交
7630 7631
                        result.m_type = value_t::array;
                        result.m_value = json_value(value_t::array);
N
Niels 已提交
7632
                    }
N
Niels 已提交
7633 7634 7635 7636 7637 7638 7639

                    // read next token
                    get_token();

                    // closing ] -> we are done
                    if (last_token == lexer::token_type::end_array)
                    {
N
Niels 已提交
7640
                        get_token();
N
Niels 已提交
7641
                        if (callback and not callback(--depth, parse_event_t::array_end, result))
N
Niels 已提交
7642 7643 7644
                        {
                            result = basic_json(value_t::discarded);
                        }
N
Niels 已提交
7645
                        return result;
N
Niels 已提交
7646 7647
                    }

N
Niels 已提交
7648 7649 7650
                    // no comma is expected here
                    unexpect(lexer::token_type::value_separator);

N
Niels 已提交
7651 7652 7653
                    // otherwise: parse values
                    do
                    {
N
Niels 已提交
7654 7655 7656 7657 7658
                        // ugly, but could be fixed with loop reorganization
                        if (last_token == lexer::token_type::value_separator)
                        {
                            get_token();
                        }
N
Niels 已提交
7659

N
Niels 已提交
7660 7661 7662 7663
                        // parse value
                        auto value = parse_internal(keep);
                        if (keep and not value.is_discarded())
                        {
N
Niels 已提交
7664
                            result.push_back(std::move(value));
N
Niels 已提交
7665
                        }
N
Niels 已提交
7666
                    }
N
Niels 已提交
7667
                    while (last_token == lexer::token_type::value_separator);
N
Niels 已提交
7668 7669 7670

                    // closing ]
                    expect(lexer::token_type::end_array);
N
Niels 已提交
7671
                    get_token();
N
Niels 已提交
7672
                    if (keep and callback and not callback(--depth, parse_event_t::array_end, result))
N
Niels 已提交
7673 7674 7675
                    {
                        result = basic_json(value_t::discarded);
                    }
N
Niels 已提交
7676 7677

                    return result;
N
Niels 已提交
7678 7679
                }

7680
                case lexer::token_type::literal_null:
N
Niels 已提交
7681
                {
N
Niels 已提交
7682
                    get_token();
N
Niels 已提交
7683
                    result.m_type = value_t::null;
N
Niels 已提交
7684
                    break;
N
Niels 已提交
7685 7686
                }

7687
                case lexer::token_type::value_string:
N
Niels 已提交
7688
                {
N
Niels 已提交
7689
                    const auto s = m_lexer.get_string();
N
Niels 已提交
7690
                    get_token();
N
Niels 已提交
7691 7692
                    result = basic_json(s);
                    break;
N
Niels 已提交
7693 7694
                }

7695
                case lexer::token_type::literal_true:
N
Niels 已提交
7696
                {
N
Niels 已提交
7697
                    get_token();
N
Niels 已提交
7698 7699
                    result.m_type = value_t::boolean;
                    result.m_value = true;
N
Niels 已提交
7700
                    break;
N
Niels 已提交
7701 7702
                }

7703
                case lexer::token_type::literal_false:
N
Niels 已提交
7704
                {
N
Niels 已提交
7705
                    get_token();
N
Niels 已提交
7706 7707
                    result.m_type = value_t::boolean;
                    result.m_value = false;
N
Niels 已提交
7708
                    break;
N
Niels 已提交
7709 7710
                }

7711
                case lexer::token_type::value_number:
N
Niels 已提交
7712 7713 7714
                {
                    auto float_val = m_lexer.get_number();

N
Niels 已提交
7715 7716
                    // NAN is returned if token could not be translated
                    // completely
N
Niels 已提交
7717 7718 7719
                    if (std::isnan(float_val))
                    {
                        throw std::invalid_argument(std::string("parse error - ") +
N
Niels 已提交
7720
                                                    m_lexer.get_token() + " is not a number");
N
Niels 已提交
7721 7722
                    }

N
Niels 已提交
7723 7724
                    get_token();

N
Niels 已提交
7725 7726
                    // check if conversion loses precision
                    const auto int_val = static_cast<number_integer_t>(float_val);
N
Niels 已提交
7727
                    if (approx(float_val, static_cast<long double>(int_val)))
N
Niels 已提交
7728
                    {
N
Niels 已提交
7729
                        // we would not lose precision -> return int
N
Niels 已提交
7730 7731
                        result.m_type = value_t::number_integer;
                        result.m_value = int_val;
N
Niels 已提交
7732 7733 7734
                    }
                    else
                    {
N
Niels 已提交
7735
                        // we would lose precision -> return float
N
Niels 已提交
7736
                        result.m_type = value_t::number_float;
N
Niels 已提交
7737
                        result.m_value = static_cast<number_float_t>(float_val);
N
Niels 已提交
7738
                    }
N
Niels 已提交
7739
                    break;
N
Niels 已提交
7740 7741 7742 7743
                }

                default:
                {
N
Niels 已提交
7744 7745
                    // the last token was unexpected
                    unexpect(last_token);
N
Niels 已提交
7746 7747
                }
            }
N
Niels 已提交
7748

N
Niels 已提交
7749
            if (keep and callback and not callback(depth, parse_event_t::value, result))
N
Niels 已提交
7750 7751 7752 7753
            {
                result = basic_json(value_t::discarded);
            }
            return result;
N
Niels 已提交
7754 7755 7756
        }

        /// get next token from lexer
N
Niels 已提交
7757
        typename lexer::token_type get_token()
N
Niels 已提交
7758 7759 7760 7761 7762
        {
            last_token = m_lexer.scan();
            return last_token;
        }

N
Niels 已提交
7763
        void expect(typename lexer::token_type t) const
N
Niels 已提交
7764 7765 7766
        {
            if (t != last_token)
            {
N
Niels 已提交
7767 7768 7769 7770
                std::string error_msg = "parse error - unexpected ";
                error_msg += (last_token == lexer::token_type::parse_error ? ("'" +  m_lexer.get_token() + "'") :
                              lexer::token_type_name(last_token));
                error_msg += "; expected " + lexer::token_type_name(t);
N
Niels 已提交
7771 7772 7773 7774
                throw std::invalid_argument(error_msg);
            }
        }

N
Niels 已提交
7775
        void unexpect(typename lexer::token_type t) const
N
Niels 已提交
7776 7777 7778
        {
            if (t == last_token)
            {
N
Niels 已提交
7779 7780 7781
                std::string error_msg = "parse error - unexpected ";
                error_msg += (last_token == lexer::token_type::parse_error ? ("'" +  m_lexer.get_token() + "'") :
                              lexer::token_type_name(last_token));
N
Niels 已提交
7782 7783 7784 7785
                throw std::invalid_argument(error_msg);
            }
        }

N
Niels 已提交
7786
      private:
N
Niels 已提交
7787
        /// current level of recursion
N
Niels 已提交
7788 7789 7790
        int depth = 0;
        /// callback function
        parser_callback_t callback;
N
Niels 已提交
7791
        /// the type of the last read token
N
Niels 已提交
7792
        typename lexer::token_type last_token = lexer::token_type::uninitialized;
N
Niels 已提交
7793
        /// the lexer
N
Niels 已提交
7794
        lexer m_lexer;
N
Niels 已提交
7795 7796 7797 7798 7799 7800 7801 7802
    };
};


/////////////
// presets //
/////////////

N
Niels 已提交
7803 7804 7805 7806 7807
/*!
@brief default JSON class

This type is the default specialization of the @ref basic_json class which uses
the standard template types.
N
Niels 已提交
7808

N
Niels 已提交
7809
@since version 1.0.0
N
Niels 已提交
7810
*/
N
Niels 已提交
7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821
using json = basic_json<>;
}


/////////////////////////
// nonmember functions //
/////////////////////////

// specialization of std::swap, and std::hash
namespace std
{
N
Niels 已提交
7822 7823
/*!
@brief exchanges the values of two JSON objects
N
Niels 已提交
7824

N
Niels 已提交
7825
@since version 1.0.0
N
Niels 已提交
7826
*/
N
Niels 已提交
7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840
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 已提交
7841 7842 7843
    /*!
    @brief return a hash value for a JSON object

N
Niels 已提交
7844
    @since version 1.0.0
N
Niels 已提交
7845
    */
N
Niels 已提交
7846
    std::size_t operator()(const nlohmann::json& j) const
N
Niels 已提交
7847 7848
    {
        // a naive hashing via the string representation
N
Niels 已提交
7849 7850
        const auto& h = hash<nlohmann::json::string_t>();
        return h(j.dump());
N
Niels 已提交
7851 7852 7853 7854 7855
    }
};
}

/*!
N
Niels 已提交
7856 7857
@brief user-defined string literal for JSON values

N
Niels 已提交
7858 7859 7860 7861
This operator implements a user-defined string literal for JSON objects. It can
be used by adding \p "_json" to a string literal and returns a JSON object if
no parse error occurred.

N
Niels 已提交
7862
@param[in] s  a string representation of a JSON object
N
Niels 已提交
7863
@return a JSON object
N
Niels 已提交
7864

N
Niels 已提交
7865
@since version 1.0.0
N
Niels 已提交
7866
*/
N
Niels 已提交
7867
inline nlohmann::json operator "" _json(const char* s, std::size_t)
N
Niels 已提交
7868
{
N
Niels 已提交
7869 7870
    return nlohmann::json::parse(reinterpret_cast<nlohmann::json::string_t::value_type*>
                                 (const_cast<char*>(s)));
N
Niels 已提交
7871 7872 7873
}

#endif