2022-05-04 12:22:06 +03:00
|
|
|
#pragma once
|
2023-04-01 06:18:41 +03:00
|
|
|
///@file
|
2022-05-04 12:22:06 +03:00
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
2023-06-16 22:19:14 +03:00
|
|
|
#include <list>
|
2022-05-04 12:22:06 +03:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2023-06-16 22:19:14 +03:00
|
|
|
const nlohmann::json * get(const nlohmann::json & map, const std::string & key);
|
|
|
|
|
|
|
|
nlohmann::json * get(nlohmann::json & map, const std::string & key);
|
|
|
|
|
2023-07-28 23:23:56 +03:00
|
|
|
/**
|
|
|
|
* Get the value of a json object at a key safely, failing
|
|
|
|
* with a Nix Error if the key does not exist.
|
|
|
|
*
|
|
|
|
* Use instead of nlohmann::json::at() to avoid ugly exceptions.
|
|
|
|
*
|
|
|
|
* _Does not check whether `map` is an object_, use `ensureType` for that.
|
|
|
|
*/
|
|
|
|
const nlohmann::json & valueAt(
|
|
|
|
const nlohmann::json & map,
|
|
|
|
const std::string & key);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensure the type of a json object is what you expect, failing
|
|
|
|
* with a Nix Error if it isn't.
|
|
|
|
*
|
|
|
|
* Use before type conversions and element access to avoid ugly exceptions.
|
|
|
|
*/
|
|
|
|
const nlohmann::json & ensureType(
|
|
|
|
const nlohmann::json & value,
|
|
|
|
nlohmann::json::value_type expectedType);
|
|
|
|
|
2023-06-16 22:19:14 +03:00
|
|
|
/**
|
|
|
|
* For `adl_serializer<std::optional<T>>` below, we need to track what
|
|
|
|
* types are not already using `null`. Only for them can we use `null`
|
|
|
|
* to represent `std::nullopt`.
|
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
struct json_avoids_null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle numbers in default impl
|
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
struct json_avoids_null : std::bool_constant<std::is_integral<T>::value> {};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct json_avoids_null<std::nullptr_t> : std::false_type {};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct json_avoids_null<bool> : std::true_type {};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct json_avoids_null<std::string> : std::true_type {};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct json_avoids_null<std::vector<T>> : std::true_type {};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct json_avoids_null<std::list<T>> : std::true_type {};
|
|
|
|
|
|
|
|
template<typename K, typename V>
|
|
|
|
struct json_avoids_null<std::map<K, V>> : std::true_type {};
|
2022-05-04 12:22:06 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-06-16 22:19:14 +03:00
|
|
|
namespace nlohmann {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This "instance" is widely requested, see
|
|
|
|
* https://github.com/nlohmann/json/issues/1749, but momentum has stalled
|
|
|
|
* out. Writing there here in Nix as a stop-gap.
|
|
|
|
*
|
|
|
|
* We need to make sure the underlying type does not use `null` for this to
|
|
|
|
* round trip. We do that with a static assert.
|
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
struct adl_serializer<std::optional<T>> {
|
|
|
|
static std::optional<T> from_json(const json & json) {
|
|
|
|
static_assert(
|
|
|
|
nix::json_avoids_null<T>::value,
|
|
|
|
"null is already in use for underlying type's JSON");
|
|
|
|
return json.is_null()
|
|
|
|
? std::nullopt
|
|
|
|
: std::optional { adl_serializer<T>::from_json(json) };
|
|
|
|
}
|
|
|
|
static void to_json(json & json, std::optional<T> t) {
|
|
|
|
static_assert(
|
|
|
|
nix::json_avoids_null<T>::value,
|
|
|
|
"null is already in use for underlying type's JSON");
|
|
|
|
if (t)
|
|
|
|
adl_serializer<T>::to_json(json, *t);
|
|
|
|
else
|
|
|
|
json = nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-05-04 12:22:06 +03:00
|
|
|
}
|