From faaacb7924962acd6b865224e42d5f08625914cf Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 5 Nov 2023 03:19:54 +0100 Subject: serialize: move vector2i impl from header --- serialize/magnum-vector2i.cpp | 47 +++++++++++++++++++++++++++++++++++++++++++ serialize/magnum-vector2i.hpp | 37 ++++++++++------------------------ 2 files changed, 58 insertions(+), 26 deletions(-) diff --git a/serialize/magnum-vector2i.cpp b/serialize/magnum-vector2i.cpp index 215253f2..0b52d508 100644 --- a/serialize/magnum-vector2i.cpp +++ b/serialize/magnum-vector2i.cpp @@ -1,5 +1,6 @@ #include "magnum-vector2i.hpp" #include "compat/exception.hpp" +#include using namespace floormat; @@ -7,3 +8,49 @@ void floormat::Serialize::throw_failed_to_parse_vector2(const std::string& str) { fm_throw("failed to parse Vector2 '{}'"_cf, str); } + +void floormat::Serialize::throw_vector2_overflow(const std::string& str) +{ + fm_throw("numeric overflow in Vector2 '{}'"_cf, str); +} + +using namespace nlohmann; + +template +requires std::is_integral_v +void nlohmann::adl_serializer>::to_json(json& j, const Magnum::Math::Vector2& val) +{ + char buf[64]; + using type = std::conditional_t, intmax_t, uintmax_t>; + constexpr auto format_string = std::is_signed_v ? "%jd x %jd" : "%ju x %ju"; + snprintf(buf, sizeof(buf), format_string, (type)val[0], (type)val[1]); + j = buf; +} + +template +requires std::is_integral_v +void nlohmann::adl_serializer>::from_json(const json& j, Magnum::Math::Vector2& val) +{ + using namespace floormat; + std::string str = j; + using type = std::conditional_t, intmax_t, uintmax_t>; + constexpr auto format_string = std::is_signed_v ? "%jd x %jd%n" : "%ju x %ju%n"; + type x = 0, y = 0; + int n = 0; + int ret = std::sscanf(str.data(), format_string, &x, &y, &n); + if (ret != 2 || (size_t)n != str.size() || x != (T)x || y != (T)y) + floormat::Serialize::throw_failed_to_parse_vector2(str); + if constexpr(sizeof(T) < sizeof(type)) + if (x != (type)(T)x || y != (type)(T)y) + floormat::Serialize::throw_vector2_overflow(str); + val = { (T)x, (T)y }; +} + +template struct nlohmann::adl_serializer>; +template struct nlohmann::adl_serializer>; +template struct nlohmann::adl_serializer>; +template struct nlohmann::adl_serializer>; +template struct nlohmann::adl_serializer>; +template struct nlohmann::adl_serializer>; +template struct nlohmann::adl_serializer>; +template struct nlohmann::adl_serializer>; diff --git a/serialize/magnum-vector2i.hpp b/serialize/magnum-vector2i.hpp index 5f313920..ddb79e98 100644 --- a/serialize/magnum-vector2i.hpp +++ b/serialize/magnum-vector2i.hpp @@ -1,38 +1,23 @@ #pragma once +#include "compat/assert.hpp" #include #include #include -#include +#include -namespace floormat::Serialize { [[noreturn]] void throw_failed_to_parse_vector2(const std::string& str); } +namespace floormat::Serialize { + [[noreturn]] void throw_failed_to_parse_vector2(const std::string& str); + [[noreturn]] void throw_vector2_overflow(const std::string& str); +} namespace nlohmann { -template -requires std::is_integral_v -struct adl_serializer> final +template +requires std::is_integral_v +struct adl_serializer> final { - static void to_json(json& j, const Magnum::Math::Vector2& val) - { - char buf[64]; - using type = std::conditional_t, intmax_t, uintmax_t>; - constexpr auto format_string = std::is_signed_v ? "%jd x %jd" : "%ju x %ju"; - snprintf(buf, sizeof(buf), format_string, (type)val[0], (type)val[1]); - j = buf; - } - static void from_json(const json& j, Magnum::Math::Vector2& val) - { - using namespace floormat; - std::string str = j; - using type = std::conditional_t, intmax_t, uintmax_t>; - constexpr auto format_string = std::is_signed_v ? "%jd x %jd%n" : "%ju x %ju%n"; - type x = 0, y = 0; - int n = 0; - int ret = std::sscanf(str.data(), format_string, &x, &y, &n); - if (ret != 2 || (size_t)n != str.size() || x != (t)x || y != (t)y) - floormat::Serialize::throw_failed_to_parse_vector2(str); - val = { (t)x, (t)y }; - } + static void to_json(json& j, const Magnum::Math::Vector2& val); + static void from_json(const json& j, Magnum::Math::Vector2& val); }; } // namespace nlohmann -- cgit v1.2.3