From c5974cfe2726d8088b08dc52edd4a825dc86e147 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 5 Jun 2021 17:31:57 +0100 Subject: Add conversion operators to get common types from DbValues --- lib/dbTypes.h | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) (limited to 'lib/dbTypes.h') diff --git a/lib/dbTypes.h b/lib/dbTypes.h index 068d642..332b896 100644 --- a/lib/dbTypes.h +++ b/lib/dbTypes.h @@ -2,6 +2,7 @@ #define MYGRATE_DBTYPES_H #include "bitset.h" +#include #include #include #include @@ -36,6 +37,60 @@ namespace MyGrate { using DbValueV = std::variant; + namespace detail { + template + concept HasToString = requires + { + std::to_string(I {}); + }; + + template struct is_false { + static constexpr bool value {false}; + }; + + template typename ConceptT> struct SafeExtract { + R + operator()(const R & i) const + { + return i; + } + + template + R + operator()(const I & i) const + { + if constexpr (ConceptT::value) { + return boost::numeric_cast(i); + } + else { + throw std::logic_error("Unreasonable conversion requested"); + } + } + }; + + struct ToString { + std::string + operator()(const std::string_view & i) const + { + return std::string {i}; + } + + template + std::string + operator()(const I & i) const + { + return std::to_string(i); + } + + template + std::string + operator()(const I &) const + { + throw std::logic_error("Unreasonable to_string requested"); + } + }; + } + class DbValue : public DbValueV { public: using DbValueV::DbValueV; @@ -54,6 +109,25 @@ namespace MyGrate { { return std::get(static_cast(*this)); } + + template operator R() const + { + if constexpr (std::is_integral_v) { + return visit(detail::SafeExtract {}); + } + else if constexpr (std::is_floating_point_v) { + return visit(detail::SafeExtract {}); + } + else if constexpr (std::is_same_v) { + return get(); + } + else if constexpr (std::is_same_v) { + return visit(detail::ToString {}); + } + else { + static_assert(detail::is_false::value, "Cannot extract one of these"); + } + } }; } -- cgit v1.2.3