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>
|
2024-04-03 21:04:00 +03:00
|
|
|
#include <nlohmann/json_fwd.hpp>
|
|
|
|
|
|
|
|
#include "types.hh"
|
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
|
|
|
/**
|
2024-04-03 21:04:00 +03:00
|
|
|
* Get the value of a json object at a key safely, failing with a nice
|
|
|
|
* error if the key does not exist.
|
2023-07-28 23:23:56 +03:00
|
|
|
*
|
|
|
|
* Use instead of nlohmann::json::at() to avoid ugly exceptions.
|
|
|
|
*/
|
|
|
|
const nlohmann::json & valueAt(
|
2024-04-03 21:04:00 +03:00
|
|
|
const nlohmann::json::object_t & map,
|
2023-07-28 23:23:56 +03:00
|
|
|
const std::string & key);
|
|
|
|
|
2024-04-03 21:04:00 +03:00
|
|
|
std::optional<nlohmann::json> optionalValueAt(const nlohmann::json & value, const std::string & key);
|
|
|
|
|
2023-07-28 23:23:56 +03:00
|
|
|
/**
|
2024-04-03 21:04:00 +03:00
|
|
|
* Downcast the json object, failing with a nice error if the conversion fails.
|
|
|
|
* See https://json.nlohmann.me/features/types/
|
2023-07-28 23:23:56 +03:00
|
|
|
*/
|
2024-04-03 21:04:00 +03:00
|
|
|
std::optional<nlohmann::json> getNullable(const nlohmann::json & value);
|
|
|
|
const nlohmann::json::object_t & getObject(const nlohmann::json & value);
|
|
|
|
const nlohmann::json::array_t & getArray(const nlohmann::json & value);
|
|
|
|
const nlohmann::json::string_t & getString(const nlohmann::json & value);
|
|
|
|
const nlohmann::json::number_integer_t & getInteger(const nlohmann::json & value);
|
|
|
|
const nlohmann::json::boolean_t & getBoolean(const nlohmann::json & value);
|
|
|
|
Strings getStringList(const nlohmann::json & value);
|
|
|
|
StringMap getStringMap(const nlohmann::json & value);
|
|
|
|
StringSet getStringSet(const nlohmann::json & value);
|
2023-07-28 23:23:56 +03:00
|
|
|
|
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>> {
|
2023-11-30 03:26:39 +02:00
|
|
|
/**
|
|
|
|
* @brief Convert a JSON type to an `optional<T>` treating
|
|
|
|
* `null` as `std::nullopt`.
|
|
|
|
*/
|
|
|
|
static void from_json(const json & json, std::optional<T> & t) {
|
2023-06-16 22:19:14 +03:00
|
|
|
static_assert(
|
|
|
|
nix::json_avoids_null<T>::value,
|
|
|
|
"null is already in use for underlying type's JSON");
|
2023-11-30 03:26:39 +02:00
|
|
|
t = json.is_null()
|
2023-06-16 22:19:14 +03:00
|
|
|
? std::nullopt
|
2023-11-30 03:26:39 +02:00
|
|
|
: std::make_optional(json.template get<T>());
|
2023-06-16 22:19:14 +03:00
|
|
|
}
|
2023-11-30 03:26:39 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Convert an optional type to a JSON type treating `std::nullopt`
|
|
|
|
* as `null`.
|
|
|
|
*/
|
|
|
|
static void to_json(json & json, const std::optional<T> & t) {
|
2023-06-16 22:19:14 +03:00
|
|
|
static_assert(
|
|
|
|
nix::json_avoids_null<T>::value,
|
|
|
|
"null is already in use for underlying type's JSON");
|
|
|
|
if (t)
|
2023-11-30 03:26:39 +02:00
|
|
|
json = *t;
|
2023-06-16 22:19:14 +03:00
|
|
|
else
|
|
|
|
json = nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-05-04 12:22:06 +03:00
|
|
|
}
|