| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577 | //     __ _____ _____ _____//  __|  |   __|     |   | |  JSON for Modern C++// |  |  |__   |  |  | | | |  version 3.12.0// |_____|_____|_____|_|___|  https://github.com/nlohmann/json//// SPDX-FileCopyrightText: 2013 - 2025 Niels Lohmann <https://nlohmann.me>// SPDX-License-Identifier: MIT#pragma once#include <algorithm> // transform#include <array> // array#include <forward_list> // forward_list#include <iterator> // inserter, front_inserter, end#include <map> // map#ifdef JSON_HAS_CPP_17    #include <optional> // optional#endif#include <string> // string#include <tuple> // tuple, make_tuple#include <type_traits> // is_arithmetic, is_same, is_enum, underlying_type, is_convertible#include <unordered_map> // unordered_map#include <utility> // pair, declval#include <valarray> // valarray#include <nlohmann/detail/exceptions.hpp>#include <nlohmann/detail/macro_scope.hpp>#include <nlohmann/detail/meta/cpp_future.hpp>#include <nlohmann/detail/meta/identity_tag.hpp>#include <nlohmann/detail/meta/std_fs.hpp>#include <nlohmann/detail/meta/type_traits.hpp>#include <nlohmann/detail/string_concat.hpp>#include <nlohmann/detail/value_t.hpp>NLOHMANN_JSON_NAMESPACE_BEGINnamespace detail{template<typename BasicJsonType>inline void from_json(const BasicJsonType& j, typename std::nullptr_t& n){    if (JSON_HEDLEY_UNLIKELY(!j.is_null()))    {        JSON_THROW(type_error::create(302, concat("type must be null, but is ", j.type_name()), &j));    }    n = nullptr;}#ifdef JSON_HAS_CPP_17#ifndef JSON_USE_IMPLICIT_CONVERSIONStemplate<typename BasicJsonType, typename T>void from_json(const BasicJsonType& j, std::optional<T>& opt){    if (j.is_null())    {        opt = std::nullopt;    }    else    {        opt.emplace(j.template get<T>());    }}#endif // JSON_USE_IMPLICIT_CONVERSIONS#endif // JSON_HAS_CPP_17// overloads for basic_json template parameterstemplate < typename BasicJsonType, typename ArithmeticType,           enable_if_t < std::is_arithmetic<ArithmeticType>::value&&                         !std::is_same<ArithmeticType, typename BasicJsonType::boolean_t>::value,                         int > = 0 >void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val){    switch (static_cast<value_t>(j))    {        case value_t::number_unsigned:        {            val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>());            break;        }        case value_t::number_integer:        {            val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_integer_t*>());            break;        }        case value_t::number_float:        {            val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_float_t*>());            break;        }        case value_t::null:        case value_t::object:        case value_t::array:        case value_t::string:        case value_t::boolean:        case value_t::binary:        case value_t::discarded:        default:            JSON_THROW(type_error::create(302, concat("type must be number, but is ", j.type_name()), &j));    }}template<typename BasicJsonType>inline void from_json(const BasicJsonType& j, typename BasicJsonType::boolean_t& b){    if (JSON_HEDLEY_UNLIKELY(!j.is_boolean()))    {        JSON_THROW(type_error::create(302, concat("type must be boolean, but is ", j.type_name()), &j));    }    b = *j.template get_ptr<const typename BasicJsonType::boolean_t*>();}template<typename BasicJsonType>inline void from_json(const BasicJsonType& j, typename BasicJsonType::string_t& s){    if (JSON_HEDLEY_UNLIKELY(!j.is_string()))    {        JSON_THROW(type_error::create(302, concat("type must be string, but is ", j.type_name()), &j));    }    s = *j.template get_ptr<const typename BasicJsonType::string_t*>();}template <    typename BasicJsonType, typename StringType,    enable_if_t <        std::is_assignable<StringType&, const typename BasicJsonType::string_t>::value        && is_detected_exact<typename BasicJsonType::string_t::value_type, value_type_t, StringType>::value        && !std::is_same<typename BasicJsonType::string_t, StringType>::value        && !is_json_ref<StringType>::value, int > = 0 >inline void from_json(const BasicJsonType& j, StringType& s){    if (JSON_HEDLEY_UNLIKELY(!j.is_string()))    {        JSON_THROW(type_error::create(302, concat("type must be string, but is ", j.type_name()), &j));    }    s = *j.template get_ptr<const typename BasicJsonType::string_t*>();}template<typename BasicJsonType>inline void from_json(const BasicJsonType& j, typename BasicJsonType::number_float_t& val){    get_arithmetic_value(j, val);}template<typename BasicJsonType>inline void from_json(const BasicJsonType& j, typename BasicJsonType::number_unsigned_t& val){    get_arithmetic_value(j, val);}template<typename BasicJsonType>inline void from_json(const BasicJsonType& j, typename BasicJsonType::number_integer_t& val){    get_arithmetic_value(j, val);}#if !JSON_DISABLE_ENUM_SERIALIZATIONtemplate<typename BasicJsonType, typename EnumType,         enable_if_t<std::is_enum<EnumType>::value, int> = 0>inline void from_json(const BasicJsonType& j, EnumType& e){    typename std::underlying_type<EnumType>::type val;    get_arithmetic_value(j, val);    e = static_cast<EnumType>(val);}#endif  // JSON_DISABLE_ENUM_SERIALIZATION// forward_list doesn't have an insert methodtemplate<typename BasicJsonType, typename T, typename Allocator,         enable_if_t<is_getable<BasicJsonType, T>::value, int> = 0>inline void from_json(const BasicJsonType& j, std::forward_list<T, Allocator>& l){    if (JSON_HEDLEY_UNLIKELY(!j.is_array()))    {        JSON_THROW(type_error::create(302, concat("type must be array, but is ", j.type_name()), &j));    }    l.clear();    std::transform(j.rbegin(), j.rend(),                   std::front_inserter(l), [](const BasicJsonType & i)    {        return i.template get<T>();    });}// valarray doesn't have an insert methodtemplate<typename BasicJsonType, typename T,         enable_if_t<is_getable<BasicJsonType, T>::value, int> = 0>inline void from_json(const BasicJsonType& j, std::valarray<T>& l){    if (JSON_HEDLEY_UNLIKELY(!j.is_array()))    {        JSON_THROW(type_error::create(302, concat("type must be array, but is ", j.type_name()), &j));    }    l.resize(j.size());    std::transform(j.begin(), j.end(), std::begin(l),                   [](const BasicJsonType & elem)    {        return elem.template get<T>();    });}template<typename BasicJsonType, typename T, std::size_t N>auto from_json(const BasicJsonType& j, T (&arr)[N])  // NOLINT(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)-> decltype(j.template get<T>(), void()){    for (std::size_t i = 0; i < N; ++i)    {        arr[i] = j.at(i).template get<T>();    }}template<typename BasicJsonType, typename T, std::size_t N1, std::size_t N2>auto from_json(const BasicJsonType& j, T (&arr)[N1][N2])  // NOLINT(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)-> decltype(j.template get<T>(), void()){    for (std::size_t i1 = 0; i1 < N1; ++i1)    {        for (std::size_t i2 = 0; i2 < N2; ++i2)        {            arr[i1][i2] = j.at(i1).at(i2).template get<T>();        }    }}template<typename BasicJsonType, typename T, std::size_t N1, std::size_t N2, std::size_t N3>auto from_json(const BasicJsonType& j, T (&arr)[N1][N2][N3])  // NOLINT(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)-> decltype(j.template get<T>(), void()){    for (std::size_t i1 = 0; i1 < N1; ++i1)    {        for (std::size_t i2 = 0; i2 < N2; ++i2)        {            for (std::size_t i3 = 0; i3 < N3; ++i3)            {                arr[i1][i2][i3] = j.at(i1).at(i2).at(i3).template get<T>();            }        }    }}template<typename BasicJsonType, typename T, std::size_t N1, std::size_t N2, std::size_t N3, std::size_t N4>auto from_json(const BasicJsonType& j, T (&arr)[N1][N2][N3][N4])  // NOLINT(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)-> decltype(j.template get<T>(), void()){    for (std::size_t i1 = 0; i1 < N1; ++i1)    {        for (std::size_t i2 = 0; i2 < N2; ++i2)        {            for (std::size_t i3 = 0; i3 < N3; ++i3)            {                for (std::size_t i4 = 0; i4 < N4; ++i4)                {                    arr[i1][i2][i3][i4] = j.at(i1).at(i2).at(i3).at(i4).template get<T>();                }            }        }    }}template<typename BasicJsonType>inline void from_json_array_impl(const BasicJsonType& j, typename BasicJsonType::array_t& arr, priority_tag<3> /*unused*/){    arr = *j.template get_ptr<const typename BasicJsonType::array_t*>();}template<typename BasicJsonType, typename T, std::size_t N>auto from_json_array_impl(const BasicJsonType& j, std::array<T, N>& arr,                          priority_tag<2> /*unused*/)-> decltype(j.template get<T>(), void()){    for (std::size_t i = 0; i < N; ++i)    {        arr[i] = j.at(i).template get<T>();    }}template<typename BasicJsonType, typename ConstructibleArrayType,         enable_if_t<             std::is_assignable<ConstructibleArrayType&, ConstructibleArrayType>::value,             int> = 0>auto from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, priority_tag<1> /*unused*/)-> decltype(    arr.reserve(std::declval<typename ConstructibleArrayType::size_type>()),    j.template get<typename ConstructibleArrayType::value_type>(),    void()){    using std::end;    ConstructibleArrayType ret;    ret.reserve(j.size());    std::transform(j.begin(), j.end(),                   std::inserter(ret, end(ret)), [](const BasicJsonType & i)    {        // get<BasicJsonType>() returns *this, this won't call a from_json        // method when value_type is BasicJsonType        return i.template get<typename ConstructibleArrayType::value_type>();    });    arr = std::move(ret);}template<typename BasicJsonType, typename ConstructibleArrayType,         enable_if_t<             std::is_assignable<ConstructibleArrayType&, ConstructibleArrayType>::value,             int> = 0>inline void from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr,                                 priority_tag<0> /*unused*/){    using std::end;    ConstructibleArrayType ret;    std::transform(        j.begin(), j.end(), std::inserter(ret, end(ret)),        [](const BasicJsonType & i)    {        // get<BasicJsonType>() returns *this, this won't call a from_json        // method when value_type is BasicJsonType        return i.template get<typename ConstructibleArrayType::value_type>();    });    arr = std::move(ret);}template < typename BasicJsonType, typename ConstructibleArrayType,           enable_if_t <               is_constructible_array_type<BasicJsonType, ConstructibleArrayType>::value&&               !is_constructible_object_type<BasicJsonType, ConstructibleArrayType>::value&&               !is_constructible_string_type<BasicJsonType, ConstructibleArrayType>::value&&               !std::is_same<ConstructibleArrayType, typename BasicJsonType::binary_t>::value&&               !is_basic_json<ConstructibleArrayType>::value,               int > = 0 >auto from_json(const BasicJsonType& j, ConstructibleArrayType& arr)-> decltype(from_json_array_impl(j, arr, priority_tag<3> {}),j.template get<typename ConstructibleArrayType::value_type>(),void()){    if (JSON_HEDLEY_UNLIKELY(!j.is_array()))    {        JSON_THROW(type_error::create(302, concat("type must be array, but is ", j.type_name()), &j));    }    from_json_array_impl(j, arr, priority_tag<3> {});}template < typename BasicJsonType, typename T, std::size_t... Idx >std::array<T, sizeof...(Idx)> from_json_inplace_array_impl(BasicJsonType&& j,                     identity_tag<std::array<T, sizeof...(Idx)>> /*unused*/, index_sequence<Idx...> /*unused*/){    return { { std::forward<BasicJsonType>(j).at(Idx).template get<T>()... } };}template < typename BasicJsonType, typename T, std::size_t N >auto from_json(BasicJsonType&& j, identity_tag<std::array<T, N>> tag)-> decltype(from_json_inplace_array_impl(std::forward<BasicJsonType>(j), tag, make_index_sequence<N> {})){    if (JSON_HEDLEY_UNLIKELY(!j.is_array()))    {        JSON_THROW(type_error::create(302, concat("type must be array, but is ", j.type_name()), &j));    }    return from_json_inplace_array_impl(std::forward<BasicJsonType>(j), tag, make_index_sequence<N> {});}template<typename BasicJsonType>inline void from_json(const BasicJsonType& j, typename BasicJsonType::binary_t& bin){    if (JSON_HEDLEY_UNLIKELY(!j.is_binary()))    {        JSON_THROW(type_error::create(302, concat("type must be binary, but is ", j.type_name()), &j));    }    bin = *j.template get_ptr<const typename BasicJsonType::binary_t*>();}template<typename BasicJsonType, typename ConstructibleObjectType,         enable_if_t<is_constructible_object_type<BasicJsonType, ConstructibleObjectType>::value, int> = 0>inline void from_json(const BasicJsonType& j, ConstructibleObjectType& obj){    if (JSON_HEDLEY_UNLIKELY(!j.is_object()))    {        JSON_THROW(type_error::create(302, concat("type must be object, but is ", j.type_name()), &j));    }    ConstructibleObjectType ret;    const auto* inner_object = j.template get_ptr<const typename BasicJsonType::object_t*>();    using value_type = typename ConstructibleObjectType::value_type;    std::transform(        inner_object->begin(), inner_object->end(),        std::inserter(ret, ret.begin()),        [](typename BasicJsonType::object_t::value_type const & p)    {        return value_type(p.first, p.second.template get<typename ConstructibleObjectType::mapped_type>());    });    obj = std::move(ret);}// overload for arithmetic types, not chosen for basic_json template arguments// (BooleanType, etc..); note: Is it really necessary to provide explicit// overloads for boolean_t etc. in case of a custom BooleanType which is not// an arithmetic type?template < typename BasicJsonType, typename ArithmeticType,           enable_if_t <               std::is_arithmetic<ArithmeticType>::value&&               !std::is_same<ArithmeticType, typename BasicJsonType::number_unsigned_t>::value&&               !std::is_same<ArithmeticType, typename BasicJsonType::number_integer_t>::value&&               !std::is_same<ArithmeticType, typename BasicJsonType::number_float_t>::value&&               !std::is_same<ArithmeticType, typename BasicJsonType::boolean_t>::value,               int > = 0 >inline void from_json(const BasicJsonType& j, ArithmeticType& val){    switch (static_cast<value_t>(j))    {        case value_t::number_unsigned:        {            val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>());            break;        }        case value_t::number_integer:        {            val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_integer_t*>());            break;        }        case value_t::number_float:        {            val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_float_t*>());            break;        }        case value_t::boolean:        {            val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::boolean_t*>());            break;        }        case value_t::null:        case value_t::object:        case value_t::array:        case value_t::string:        case value_t::binary:        case value_t::discarded:        default:            JSON_THROW(type_error::create(302, concat("type must be number, but is ", j.type_name()), &j));    }}template<typename BasicJsonType, typename... Args, std::size_t... Idx>std::tuple<Args...> from_json_tuple_impl_base(BasicJsonType&& j, index_sequence<Idx...> /*unused*/){    return std::make_tuple(std::forward<BasicJsonType>(j).at(Idx).template get<Args>()...);}template<typename BasicJsonType>std::tuple<> from_json_tuple_impl_base(BasicJsonType& /*unused*/, index_sequence<> /*unused*/){    return {};}template < typename BasicJsonType, class A1, class A2 >std::pair<A1, A2> from_json_tuple_impl(BasicJsonType&& j, identity_tag<std::pair<A1, A2>> /*unused*/, priority_tag<0> /*unused*/){    return {std::forward<BasicJsonType>(j).at(0).template get<A1>(),            std::forward<BasicJsonType>(j).at(1).template get<A2>()};}template<typename BasicJsonType, typename A1, typename A2>inline void from_json_tuple_impl(BasicJsonType&& j, std::pair<A1, A2>& p, priority_tag<1> /*unused*/){    p = from_json_tuple_impl(std::forward<BasicJsonType>(j), identity_tag<std::pair<A1, A2>> {}, priority_tag<0> {});}template<typename BasicJsonType, typename... Args>std::tuple<Args...> from_json_tuple_impl(BasicJsonType&& j, identity_tag<std::tuple<Args...>> /*unused*/, priority_tag<2> /*unused*/){    return from_json_tuple_impl_base<BasicJsonType, Args...>(std::forward<BasicJsonType>(j), index_sequence_for<Args...> {});}template<typename BasicJsonType, typename... Args>inline void from_json_tuple_impl(BasicJsonType&& j, std::tuple<Args...>& t, priority_tag<3> /*unused*/){    t = from_json_tuple_impl_base<BasicJsonType, Args...>(std::forward<BasicJsonType>(j), index_sequence_for<Args...> {});}template<typename BasicJsonType, typename TupleRelated>auto from_json(BasicJsonType&& j, TupleRelated&& t)-> decltype(from_json_tuple_impl(std::forward<BasicJsonType>(j), std::forward<TupleRelated>(t), priority_tag<3> {})){    if (JSON_HEDLEY_UNLIKELY(!j.is_array()))    {        JSON_THROW(type_error::create(302, concat("type must be array, but is ", j.type_name()), &j));    }    return from_json_tuple_impl(std::forward<BasicJsonType>(j), std::forward<TupleRelated>(t), priority_tag<3> {});}template < typename BasicJsonType, typename Key, typename Value, typename Compare, typename Allocator,           typename = enable_if_t < !std::is_constructible <                                        typename BasicJsonType::string_t, Key >::value >>inline void from_json(const BasicJsonType& j, std::map<Key, Value, Compare, Allocator>& m){    if (JSON_HEDLEY_UNLIKELY(!j.is_array()))    {        JSON_THROW(type_error::create(302, concat("type must be array, but is ", j.type_name()), &j));    }    m.clear();    for (const auto& p : j)    {        if (JSON_HEDLEY_UNLIKELY(!p.is_array()))        {            JSON_THROW(type_error::create(302, concat("type must be array, but is ", p.type_name()), &j));        }        m.emplace(p.at(0).template get<Key>(), p.at(1).template get<Value>());    }}template < typename BasicJsonType, typename Key, typename Value, typename Hash, typename KeyEqual, typename Allocator,           typename = enable_if_t < !std::is_constructible <                                        typename BasicJsonType::string_t, Key >::value >>inline void from_json(const BasicJsonType& j, std::unordered_map<Key, Value, Hash, KeyEqual, Allocator>& m){    if (JSON_HEDLEY_UNLIKELY(!j.is_array()))    {        JSON_THROW(type_error::create(302, concat("type must be array, but is ", j.type_name()), &j));    }    m.clear();    for (const auto& p : j)    {        if (JSON_HEDLEY_UNLIKELY(!p.is_array()))        {            JSON_THROW(type_error::create(302, concat("type must be array, but is ", p.type_name()), &j));        }        m.emplace(p.at(0).template get<Key>(), p.at(1).template get<Value>());    }}#if JSON_HAS_FILESYSTEM || JSON_HAS_EXPERIMENTAL_FILESYSTEMtemplate<typename BasicJsonType>inline void from_json(const BasicJsonType& j, std_fs::path& p){    if (JSON_HEDLEY_UNLIKELY(!j.is_string()))    {        JSON_THROW(type_error::create(302, concat("type must be string, but is ", j.type_name()), &j));    }    const auto& s = *j.template get_ptr<const typename BasicJsonType::string_t*>();#ifdef JSON_HAS_CPP_20    p = std_fs::path(std::u8string_view(reinterpret_cast<const char8_t*>(s.data()), s.size()));#else    p = std_fs::u8path(s); // accepts UTF-8 encoded std::string in C++17, deprecated in C++20#endif}#endifstruct from_json_fn{    template<typename BasicJsonType, typename T>    auto operator()(const BasicJsonType& j, T&& val) const    noexcept(noexcept(from_json(j, std::forward<T>(val))))    -> decltype(from_json(j, std::forward<T>(val)))    {        return from_json(j, std::forward<T>(val));    }};}  // namespace detail#ifndef JSON_HAS_CPP_17/// namespace to hold default `from_json` function/// to see why this is required:/// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4381.htmlnamespace // NOLINT(cert-dcl59-cpp,fuchsia-header-anon-namespaces,google-build-namespaces){#endifJSON_INLINE_VARIABLE constexpr const auto& from_json = // NOLINT(misc-definitions-in-headers)    detail::static_const<detail::from_json_fn>::value;#ifndef JSON_HAS_CPP_17}  // namespace#endifNLOHMANN_JSON_NAMESPACE_END
 |