From c1a9e49d641ff380f20f9d288f04db693e14cb56 Mon Sep 17 00:00:00 2001 From: terik23 Date: Sat, 13 Jul 2019 19:32:33 +0500 Subject: [PATCH] fixs --- include/nameof.hpp | 104 +++++++++++++++++++++------------------------ 1 file changed, 48 insertions(+), 56 deletions(-) diff --git a/include/nameof.hpp b/include/nameof.hpp index ea53729..223bb03 100644 --- a/include/nameof.hpp +++ b/include/nameof.hpp @@ -58,67 +58,13 @@ namespace nameof { template struct enum_range final { static_assert(std::is_enum_v, "nameof::enum_range requires enum type."); - static constexpr int min = std::is_signed_v> ? NAMEOF_ENUM_RANGE_MIN : 0; + static constexpr int min = NAMEOF_ENUM_RANGE_MIN; static constexpr int max = NAMEOF_ENUM_RANGE_MAX; static_assert(max > min, "nameof::enum_range requires max > min."); }; namespace detail { -template -struct identity final { - using type = T; -}; - -template -[[nodiscard]] constexpr std::string_view nameof_type_impl() noexcept { -#if defined(__clang__) - constexpr std::string_view name{__PRETTY_FUNCTION__ + 83, sizeof(__PRETTY_FUNCTION__) - 87}; -#elif defined(__GNUC__) - constexpr std::string_view name{__PRETTY_FUNCTION__ + 98, sizeof(__PRETTY_FUNCTION__) - 151}; -#elif defined(_MSC_VER) - constexpr std::string_view name{__FUNCSIG__ + 139, sizeof(__FUNCSIG__) - 157}; -#else - return {}; // Unsupported compiler. -#endif - -#if defined(__clang__) || defined(__GNUC__) || defined(_MSC_VER) - return name.substr(0, name.length() - (name.back() == ' ' ? 1 : 0)); -#endif -} - -template -[[nodiscard]] constexpr std::string_view nameof_enum_impl() noexcept { - static_assert(std::is_enum_v, "nameof::nameof_enum_impl requires enum type."); -#if defined(__clang__) - constexpr std::string_view name{__PRETTY_FUNCTION__, sizeof(__PRETTY_FUNCTION__) - 2}; -#elif defined(__GNUC__) && __GNUC__ >= 9 - constexpr std::string_view name{__PRETTY_FUNCTION__, sizeof(__PRETTY_FUNCTION__) - 51}; -#elif defined(_MSC_VER) - constexpr std::string_view name{__FUNCSIG__, sizeof(__FUNCSIG__) - 17}; -#else - return {}; // Unsupported compiler. -#endif - -#if defined(__clang__) || (defined(__GNUC__) && __GNUC__ >= 9) || defined(_MSC_VER) - constexpr auto prefix = name.find_last_of(" :,-)") + 1; - - if constexpr (name[prefix] >= '0' && name[prefix] <= '9') { - return {}; // Value does not have name. - } else { - return name.substr(prefix, name.length() - prefix); - } -#endif -} - -template -[[nodiscard]] constexpr auto enum_names_impl(std::integer_sequence) noexcept { - static_assert(std::is_enum_v, "nameof::detail::enum_names_impl requires enum type."); - constexpr std::array names{{nameof_enum_impl(I + O)>()...}}; - - return names; -} - template struct check final { using type = void; @@ -213,6 +159,52 @@ template return name; } +template +[[nodiscard]] constexpr std::string_view nameof_enum_impl() noexcept { + static_assert(std::is_enum_v, "nameof::nameof_enum_impl requires enum type."); +#if defined(__clang__) + constexpr auto name = nameof_impl({__PRETTY_FUNCTION__, sizeof(__PRETTY_FUNCTION__) - 2}, false); +#elif defined(__GNUC__) && __GNUC__ >= 9 + constexpr auto name = nameof_impl({__PRETTY_FUNCTION__, sizeof(__PRETTY_FUNCTION__) - 51}, false); +#elif defined(_MSC_VER) + constexpr auto name = nameof_impl({__FUNCSIG__, sizeof(__FUNCSIG__) - 17}, false); +#else + constexpr std::string_view name; // Unsupported compiler. +#endif + + return name; +} + +template +[[nodiscard]] constexpr auto enum_names_impl(std::integer_sequence) noexcept { + static_assert(std::is_enum_v, "nameof::detail::enum_names_impl requires enum type."); + constexpr std::array names{{nameof_enum_impl(I + O)>()...}}; + + return names; +} + +template +struct identity final { + using type = T; +}; + +template +[[nodiscard]] constexpr std::string_view nameof_type_impl() noexcept { +#if defined(__clang__) + constexpr std::string_view name{__PRETTY_FUNCTION__ + 83, sizeof(__PRETTY_FUNCTION__) - 87}; +#elif defined(__GNUC__) + constexpr std::string_view name{__PRETTY_FUNCTION__ + 98, sizeof(__PRETTY_FUNCTION__) - 151}; +#elif defined(_MSC_VER) + constexpr std::string_view name{__FUNCSIG__ + 139, sizeof(__FUNCSIG__) - 157}; +#else + return {}; // Unsupported compiler. +#endif + +#if defined(__clang__) || defined(__GNUC__) || defined(_MSC_VER) + return name.substr(0, name.length() - (name.back() == ' ' ? 1 : 0)); +#endif +} + } // namespace nameof::detail // Obtains simple (unqualified) string enum name of enum variable. @@ -228,7 +220,7 @@ template constexpr auto names = detail::enum_names_impl(range); if (int i = static_cast(value) - min; i >= 0 && static_cast(i) < names.size()) { - return names[i]; + return names[static_cast(i)]; } else { return {}; // Value out of range. }