#pragma once // Credits to // https://www.kdab.com/jsonify-with-nlohmann-json/ #ifdef HAS_NLOHMANN_JSON #pragma warning(push, 0) #include #pragma warning(pop) #include // partial specialization (full specialization works too) namespace nlohmann { template::value, int> = 0> void optional_to_json(BasicJsonType& j, const char* name, const std::optional& value) { if (value) j[name] = *value; } template::value, int> = 0> void optional_from_json(const BasicJsonType& j, const char* name, std::optional& value) { const auto it = j.find(name); if (it != j.end() && !it->is_null()) value = it->template get(); else value = std::nullopt; } template constexpr bool is_optional = false; template constexpr bool is_optional> = true; template::value, int> = 0> void extended_to_json(const char* key, BasicJsonType& j, const T& value) { if constexpr (is_optional) nlohmann::optional_to_json(j, key, value); else j[key] = value; } template::value, int> = 0> void extended_from_json(const char* key, const BasicJsonType& j, T& value) { if constexpr (is_optional) nlohmann::optional_from_json(j, key, value); else j.at(key).get_to(value); } } // namespace nlohmann #define EXTEND_JSON_TO(v1) extended_to_json(#v1, nlohmann_json_j, nlohmann_json_t.v1); #define EXTEND_JSON_FROM(v1) extended_from_json(#v1, nlohmann_json_j, nlohmann_json_t.v1); #define NLOHMANN_DEFINE_TYPE_EXTENSION(Type, ...) \ template::value, int> = 0> \ inline void to_json(BasicJsonType& nlohmann_json_j, const Type& nlohmann_json_t) \ { \ NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(EXTEND_JSON_TO, __VA_ARGS__)) \ } \ template::value, int> = 0> \ inline void from_json(const BasicJsonType& nlohmann_json_j, Type& nlohmann_json_t) \ { \ NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(EXTEND_JSON_FROM, __VA_ARGS__)) \ } #endif