// _ _ __ _____ // | \ | | / _| / ____|_ _ // | \| | __ _ _ __ ___ ___ ___ | |_ | | _| |_ _| |_ // | . ` |/ _` | '_ ` _ \ / _ \/ _ \| _| | | |_ _|_ _| // | |\ | (_| | | | | | | __/ (_) | | | |____|_| |_| // |_| \_|\__,_|_| |_| |_|\___|\___/|_| \_____| // https://github.com/Neargye/nameof // vesion 0.5.0 // // Licensed under the MIT License . // Copyright (c) 2016, 2018 Daniil Goncharov . // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. #pragma once #include #include #include #include #if defined(__cpp_constexpr) && __cpp_constexpr >= 201304L # define NAMEOF_HAS_CONSTEXPR14 1 #endif #if (defined(__clang__) || defined(_MSC_VER)) || (defined(__GNUC__) && __GNUC__ >= 5) # define NAMEOF_TYPE_CONSTEXPR constexpr # define NAMEOF_TYPE_HAS_CONSTEXPR 1 #else # define NAMEOF_TYPE_CONSTEXPR inline #endif namespace nameof { namespace detail { namespace nstd { template struct identity { using type = T; }; } // namespace nstd constexpr bool StrEquals(const char* lhs, const char* rhs, std::size_t size) { #if defined(NAMEOF_HAS_CONSTEXPR14) for (std::size_t i = 0; i < size; ++i) { if (lhs[i] != rhs[i]) { return false; } } return true; #else return (size == 0) ? (lhs[0] == rhs[0]) : ((lhs[size - 1] == rhs[size - 1]) && StrEquals(lhs, rhs, size - 1)); #endif } constexpr std::size_t StrLen(const char* str, std::size_t size = 0) { #if defined(NAMEOF_HAS_CONSTEXPR14) for (; str != nullptr; ++size) { if (str[size] == '\0') { return size; } } return size; #else return (str[size] == '\0') ? size : StrLen(str, size + 1); #endif } // STD like compile-time const char* string. class cstring final { const char* str_; std::size_t size_; public: constexpr cstring(const char* str, std::size_t size, std::size_t prefix = 0, std::size_t suffix = 0) noexcept : str_{str + prefix}, size_{size - prefix - suffix} {} constexpr cstring() noexcept : cstring{nullptr, 0, 0, 0} {} constexpr cstring(const char* str) noexcept : cstring{str, StrLen(str), 0, 0} {} cstring(const cstring&) = default; cstring(cstring&&) = default; cstring& operator=(const cstring&) = default; cstring& operator=(cstring&&) = default; ~cstring() = default; constexpr std::size_t size() const noexcept { return size_; } constexpr std::size_t length() const noexcept { return size_; } constexpr bool empty() const noexcept { return size_ == 0; } constexpr const char* begin() const noexcept { return str_; } constexpr const char* end() const noexcept { return str_ + size_; } constexpr const char* cbegin() const noexcept { return begin(); } constexpr const char* cend() const noexcept { return end(); } constexpr const char& operator[](std::size_t i) const { return str_[i]; } constexpr const char& front() const { return str_[0]; } constexpr const char& back() const { return str_[size_ - 1]; } constexpr const char* data() const noexcept { return str_; } constexpr cstring remove_prefix(std::size_t n) const { return {str_ + n, size_ - n}; } constexpr cstring add_prefix(std::size_t n) const { return {str_ - n, size_ + n}; } constexpr cstring remove_suffix(std::size_t n) const { return {str_, size_ - n}; } constexpr cstring add_suffix(std::size_t n) const { return {str_, size_ + n}; } constexpr cstring substr(std::size_t pos, std::size_t n) const { return {str_ + pos, n}; } friend constexpr bool operator==(cstring lhs, cstring rhs) noexcept { return (lhs.size_ == rhs.size_) && StrEquals(lhs.str_, rhs.str_, lhs.size_); } friend constexpr bool operator!=(cstring lhs, cstring rhs) noexcept { return !(lhs == rhs); } friend std::ostream& operator<<(std::ostream& os, cstring str) { os.write(str.str_, str.size_); return os; } operator std::string() const { return std::string(str_, size_); } }; constexpr bool IsLexeme(char s) noexcept { return !((s >= '0' && s <= '9') || (s >= 'a' && s <= 'z') || (s >= 'A' && s <= 'Z') || s == '_'); } #if defined(NAMEOF_HAS_CONSTEXPR14) constexpr cstring NameofPretty(cstring name, bool with_suffix) noexcept { std::size_t s = 0; for (std::size_t i = name.size(), h = 0; i > 0; --i) { if (name[i - 1] == '>' || name[i - 1] == ')' || name[i - 1] == '}') { ++h; ++s; continue; } else if (name[i - 1] == '<' || name[i - 1] == '(' || name[i - 1] == '{') { --h; ++s; continue; } if (h == 0) { break; } else { ++s; continue; } } for (std::size_t i = name.size() - s; i > 0; --i) { if (IsLexeme(name[i - 1])) { return name.remove_prefix(i).remove_suffix(with_suffix ? 0 : s); } } return name.remove_suffix(with_suffix ? 0 : s); } #else constexpr std::size_t FindSuffix(cstring name, std::size_t h = 0, std::size_t s = 0) noexcept { return (name[name.size() - 1 - s] == '>' || name[name.size() - 1 - s] == ')' || name[name.size() - 1 - s] == '}') ? FindSuffix(name, h + 1, s + 1) : (name[name.size() - 1 - s] == '<' || name[name.size() - 1 - s] == ')' || name[name.size() - 1 - s] == '{') ? FindSuffix(name, h - 1, s + 1) : h == 0 ? s : FindSuffix(name, h, s + 1); } constexpr cstring RemovePrefix(cstring name, const std::size_t p = 0) noexcept { return p == name.size() ? name : IsLexeme(name[name.size() - 1 - p]) ? name.remove_prefix(name.size() - p) : RemovePrefix(name, p + 1); } constexpr cstring NameofPrettyImpl(cstring name, std::size_t s, bool with_suffix) noexcept { return RemovePrefix(name.remove_suffix(s)).add_suffix(with_suffix ? s : 0); } constexpr cstring NameofPretty(cstring name, bool with_suffix) noexcept { return NameofPrettyImpl(name, FindSuffix(name), with_suffix); } #endif #if defined(_MSC_VER) constexpr cstring RemoveSpaceSuffix(cstring name) noexcept { return name.back() == ' ' ? RemoveSpaceSuffix(name.remove_suffix(1)) : name; } constexpr cstring RemoveClassPrefix(cstring name) noexcept { return (name.size() > sizeof("class") && name[0] == 'c' && name[1] == 'l' && name[2] == 'a' && name[3] == 's' && name[4] == 's' && name[5] == ' ') ? name.remove_prefix(sizeof("class")) : name; } constexpr cstring RemoveEnumPrefix(cstring name) noexcept { return (name.size() > sizeof("enum") && name[0] == 'e' && name[1] == 'n' && name[2] == 'u' && name[3] == 'm' && name[4] == ' ') ? name.remove_prefix(sizeof("enum")) : name; } constexpr cstring RemoveStructPrefix(cstring name) noexcept { return (name.size() > sizeof("struct") && name[0] == 's' && name[1] == 't' && name[2] == 'r' && name[3] == 'u' && name[4] == 'c' && name[5] == 't' && name[6] == ' ') ? name.remove_prefix(sizeof("struct")) : name; } constexpr cstring NameofTypePretty(cstring name) noexcept { return RemoveClassPrefix(RemoveStructPrefix(RemoveEnumPrefix(RemoveSpaceSuffix(name)))); } #elif defined(__clang__) || defined(__GNUC__) constexpr cstring NameofTypePretty(const char* str, std::size_t size, std::size_t prefix, std::size_t suffix) noexcept { return {str, size, prefix, suffix + (str[size - suffix - 1] == ' ' ? 1 : 0)}; } #endif template NAMEOF_TYPE_CONSTEXPR cstring NameofType() noexcept { #if defined(__clang__) return NameofTypePretty( __PRETTY_FUNCTION__, sizeof(__PRETTY_FUNCTION__) - 1, sizeof("nameof::detail::cstring nameof::detail::NameofType() [T = nameof::detail::nstd::identity<") - 1, sizeof(">]") - 1); #elif defined(__GNUC__) return NameofTypePretty( __PRETTY_FUNCTION__, sizeof(__PRETTY_FUNCTION__) - 1, # if defined(NAMEOF_TYPE_HAS_CONSTEXPR) sizeof("constexpr nameof::detail::cstring nameof::detail::NameofType() [with T = nameof::detail::nstd::identity<") - 1, # else sizeof("nameof::detail::cstring nameof::detail::NameofType() [with T = nameof::detail::nstd::identity<") - 1, # endif sizeof(">]") - 1); #elif defined(_MSC_VER) return NameofTypePretty( {__FUNCSIG__, sizeof(__FUNCSIG__) - 1, sizeof("class nameof::detail::cstring __cdecl nameof::detail::NameofType>(void) noexcept") - 1}); #else return {}; #endif } template ::value && !std::is_void::value>::type> constexpr cstring Nameof(const char* name, std::size_t size, bool with_suffix) noexcept { return NameofPretty({name, size}, with_suffix); } template constexpr cstring NameofRaw(const char* name, std::size_t size) noexcept { return {name, size}; } } // namespace detail template > NAMEOF_TYPE_CONSTEXPR detail::cstring NameofType() noexcept { return true ? detail::NameofType() : detail::NameofType(); } } // namespace nameof // Used to obtain the simple (unqualified) string name of a variable, member, function, macros. #define NAMEOF(name) ::nameof::detail::Nameof(#name, (sizeof(#name) / sizeof(char)) - 1, false) // Used to obtain the full string name of a variable, member, function, macros. #define NAMEOF_FULL(name) ::nameof::detail::Nameof(#name, (sizeof(#name) / sizeof(char)) - 1, true) // Used to obtain the raw string name of a variable, member, function, macros. #define NAMEOF_RAW(name) ::nameof::detail::NameofRaw(#name, (sizeof(#name) / sizeof(char)) - 1) // Used to obtain the string name of a type. #define NAMEOF_TYPE(var) ::nameof::NameofType() #define NAMEOF_TYPE_T(type) ::nameof::NameofType()