nameof_module/include/nameof.hpp

1270 lines
44 KiB
C++
Raw Normal View History

2018-04-10 19:32:51 +00:00
// _ _ __ _____
// | \ | | / _| / ____|_ _
// | \| | __ _ _ __ ___ ___ ___ | |_ | | _| |_ _| |_
// | . ` |/ _` | '_ ` _ \ / _ \/ _ \| _| | | |_ _|_ _|
// | |\ | (_| | | | | | | __/ (_) | | | |____|_| |_|
// |_| \_|\__,_|_| |_| |_|\___|\___/|_| \_____|
// https://github.com/Neargye/nameof
2024-01-31 14:26:52 +00:00
// version 0.10.4
2018-03-17 03:09:49 +00:00
//
2018-03-18 16:34:09 +00:00
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
2019-03-20 16:41:51 +00:00
// SPDX-License-Identifier: MIT
2024-01-01 22:51:35 +00:00
// Copyright (c) 2016 - 2024 Daniil Goncharov <neargye@gmail.com>.
2018-03-17 03:09:49 +00:00
//
2018-03-24 08:58:08 +00:00
// 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:
2018-03-17 03:09:49 +00:00
//
2018-03-24 08:58:08 +00:00
// The above copyright notice and this permission notice shall be included in all
2018-03-17 03:27:47 +00:00
// copies or substantial portions of the Software.
2018-03-17 03:09:49 +00:00
//
2018-03-24 08:58:08 +00:00
// 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
2018-03-17 03:27:47 +00:00
// SOFTWARE.
2019-05-28 12:54:10 +00:00
#ifndef NEARGYE_NAMEOF_HPP
#define NEARGYE_NAMEOF_HPP
2018-04-10 18:09:23 +00:00
2024-10-19 23:02:24 +00:00
#include "nameof_macro.hpp"
#ifdef NAMEOF_MODULE
#define NAMEOF_EXPORT export
#define NAMEOF_EXPORT_BEGIN export {
#define NAMEOF_EXPORT_END }
#else
#define NAMEOF_EXPORT
#define NAMEOF_EXPORT_BEGIN
#define NAMEOF_EXPORT_END
#endif
2020-07-03 13:18:05 +00:00
2019-04-08 17:55:35 +00:00
#include <array>
#include <cassert>
2018-03-17 05:06:38 +00:00
#include <cstddef>
2024-10-19 23:02:24 +00:00
#include <cstdint>
2019-09-14 22:19:34 +00:00
#include <iosfwd>
2019-10-05 13:39:11 +00:00
#include <iterator>
2019-03-24 11:23:41 +00:00
#include <limits>
2019-10-01 13:43:24 +00:00
#include <type_traits>
#include <utility>
2018-08-26 23:57:25 +00:00
2020-09-01 11:00:59 +00:00
#if !defined(NAMEOF_USING_ALIAS_STRING)
2024-10-19 23:02:24 +00:00
#include <string>
2020-09-01 11:00:59 +00:00
#endif
#if !defined(NAMEOF_USING_ALIAS_STRING_VIEW)
2024-10-19 23:02:24 +00:00
#include <string_view>
2020-09-01 11:00:59 +00:00
#endif
2020-06-03 14:25:30 +00:00
#if __has_include(<cxxabi.h>)
2024-10-19 23:02:24 +00:00
#include <cxxabi.h>
2019-12-13 15:31:55 +00:00
2024-10-19 23:02:24 +00:00
#include <cstdlib>
#endif
2020-06-03 14:51:05 +00:00
#if defined(__clang__)
2024-10-19 23:02:24 +00:00
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunknown-warning-option"
#pragma clang diagnostic ignored "-Wenum-constexpr-conversion"
2020-06-03 14:51:05 +00:00
#elif defined(__GNUC__)
2024-10-19 23:02:24 +00:00
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstringop-overflow" // Missing terminating nul 'enum_name_v'.
2020-06-03 14:51:05 +00:00
#elif defined(_MSC_VER)
2024-10-19 23:02:24 +00:00
#pragma warning(push)
#pragma warning(disable : 26495) // Variable 'cstring<N>::chars_' is uninitialized.
#pragma warning( \
disable : 28020) // Arithmetic overflow: Using operator '-' on a 4 byte value and then casting the result to a 8 byte value.
#pragma warning(disable : 26451) // The expression '0<=_Param_(1)&&_Param_(1)<=1-1' is not true at this call.
#pragma warning(disable : 4514) // Unreferenced inline function has been removed.
2019-04-10 12:40:21 +00:00
#endif
2018-04-04 12:19:02 +00:00
namespace nameof {
2018-04-10 18:09:23 +00:00
2024-10-19 23:02:24 +00:00
NAMEOF_EXPORT_BEGIN
2020-12-29 18:45:54 +00:00
// If need another string_view type, define the macro NAMEOF_USING_ALIAS_STRING_VIEW.
#if defined(NAMEOF_USING_ALIAS_STRING_VIEW)
NAMEOF_USING_ALIAS_STRING_VIEW
#else
2021-04-28 17:51:50 +00:00
using std::string_view;
2020-12-29 18:45:54 +00:00
#endif
// If need another string type, define the macro NAMEOF_USING_ALIAS_STRING.
#if defined(NAMEOF_USING_ALIAS_STRING)
NAMEOF_USING_ALIAS_STRING
#else
2021-04-28 17:51:50 +00:00
using std::string;
2020-12-29 18:45:54 +00:00
#endif
namespace customize {
2024-10-19 23:02:24 +00:00
// Enum value must be in range [NAMEOF_ENUM_RANGE_MIN, NAMEOF_ENUM_RANGE_MAX]. By default NAMEOF_ENUM_RANGE_MIN = -128,
// NAMEOF_ENUM_RANGE_MAX = 128. If you need another range for all enum types by default, redefine the macro NAMEOF_ENUM_RANGE_MIN and
// NAMEOF_ENUM_RANGE_MAX. If you need another range for specific enum type, add specialization enum_range for necessary enum type.
2019-04-08 17:55:35 +00:00
template <typename E>
2019-10-09 17:48:48 +00:00
struct enum_range {
2020-12-29 18:45:54 +00:00
static_assert(std::is_enum_v<E>, "nameof::customize::enum_range requires enum type.");
2019-10-01 13:43:24 +00:00
inline static constexpr int min = NAMEOF_ENUM_RANGE_MIN;
inline static constexpr int max = NAMEOF_ENUM_RANGE_MAX;
2020-12-29 18:45:54 +00:00
static_assert(max > min, "nameof::customize::enum_range requires max > min.");
2019-04-08 17:55:35 +00:00
};
2019-03-24 11:23:41 +00:00
2019-10-01 13:43:24 +00:00
static_assert(NAMEOF_ENUM_RANGE_MIN <= 0, "NAMEOF_ENUM_RANGE_MIN must be less or equals than 0.");
static_assert(NAMEOF_ENUM_RANGE_MIN > (std::numeric_limits<std::int16_t>::min)(), "NAMEOF_ENUM_RANGE_MIN must be greater than INT16_MIN.");
2019-07-14 15:49:14 +00:00
2019-10-01 13:43:24 +00:00
static_assert(NAMEOF_ENUM_RANGE_MAX > 0, "NAMEOF_ENUM_RANGE_MAX must be greater than 0.");
static_assert(NAMEOF_ENUM_RANGE_MAX < (std::numeric_limits<std::int16_t>::max)(), "NAMEOF_ENUM_RANGE_MAX must be less than INT16_MAX.");
2019-07-14 15:49:14 +00:00
2019-10-01 13:43:24 +00:00
static_assert(NAMEOF_ENUM_RANGE_MAX > NAMEOF_ENUM_RANGE_MIN, "NAMEOF_ENUM_RANGE_MAX must be greater than NAMEOF_ENUM_RANGE_MIN.");
2019-07-14 16:00:34 +00:00
2023-03-17 17:39:30 +00:00
// If you need custom names for enum, add specialization enum_name for necessary enum type.
2020-12-29 18:45:54 +00:00
template <typename E>
constexpr string_view enum_name(E) noexcept {
static_assert(std::is_enum_v<E>, "nameof::customize::enum_name requires enum type.");
return {};
}
2019-08-26 16:56:57 +00:00
2023-03-17 17:39:30 +00:00
// If you need custom name for type, add specialization type_name for necessary type.
2020-12-29 18:45:54 +00:00
template <typename T>
constexpr string_view type_name() noexcept {
return {};
}
2019-12-12 15:12:42 +00:00
2023-03-17 17:39:30 +00:00
// If you need custom name for member, add specialization member_name for necessary type.
2021-04-02 21:06:56 +00:00
template <auto V>
constexpr string_view member_name() noexcept {
return {};
}
2023-03-17 17:39:30 +00:00
// If you need custom name for a pointer, add specialization pointer_name for necessary type.
template <auto V>
constexpr string_view pointer_name() noexcept {
return {};
}
2024-10-19 23:02:24 +00:00
} // namespace customize
2020-12-29 18:45:54 +00:00
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
class [[nodiscard]] cstring {
public:
2024-10-19 23:02:24 +00:00
using value_type = const char;
using size_type = std::uint16_t;
using difference_type = std::ptrdiff_t;
2024-10-19 23:02:24 +00:00
using pointer = const char*;
using const_pointer = const char*;
using reference = const char&;
using const_reference = const char&;
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
using iterator = const char*;
using const_iterator = const char*;
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
using reverse_iterator = std::reverse_iterator<iterator>;
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
2019-09-14 22:19:34 +00:00
2022-08-15 08:38:17 +00:00
constexpr explicit cstring(string_view str) noexcept : cstring{str, std::make_integer_sequence<std::uint16_t, N>{}} {
2020-12-29 18:45:54 +00:00
assert(str.size() > 0 && str.size() == N);
2019-12-13 15:31:55 +00:00
}
constexpr cstring() = delete;
constexpr cstring(const cstring&) = default;
constexpr cstring(cstring&&) = default;
~cstring() = default;
2020-06-06 10:41:29 +00:00
cstring& operator=(const cstring&) = default;
2020-06-06 10:41:29 +00:00
cstring& operator=(cstring&&) = default;
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_pointer data() const noexcept {
return chars_;
}
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr size_type size() const noexcept {
return N;
}
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_iterator begin() const noexcept {
return data();
}
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_iterator end() const noexcept {
return data() + size();
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_iterator cbegin() const noexcept {
return begin();
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_iterator cend() const noexcept {
return end();
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reverse_iterator rbegin() const noexcept {
return end();
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reverse_iterator rend() const noexcept {
return begin();
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reverse_iterator crbegin() const noexcept {
return rbegin();
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reverse_iterator crend() const noexcept {
return rend();
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reference operator[](size_type i) const noexcept {
return assert(i < size()), chars_[i];
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reference front() const noexcept {
return chars_[0];
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reference back() const noexcept {
return chars_[N];
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr size_type length() const noexcept {
return size();
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr bool empty() const noexcept {
return false;
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr int compare(string_view str) const noexcept {
return string_view{data(), size()}.compare(str);
}
2019-09-14 22:19:34 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const char* c_str() const noexcept {
return data();
}
2019-08-26 16:56:57 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] string str() const {
return {begin(), end()};
}
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr operator string_view() const noexcept {
return {data(), size()};
}
2019-08-26 16:56:57 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr explicit operator const_pointer() const noexcept {
return data();
}
2020-12-29 18:45:54 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] explicit operator string() const {
return {begin(), end()};
}
2020-12-29 18:45:54 +00:00
private:
2022-08-15 08:38:17 +00:00
template <std::uint16_t... I>
2024-10-19 23:02:24 +00:00
constexpr cstring(string_view str, std::integer_sequence<std::uint16_t, I...>) noexcept : chars_{str[I]..., '\0'} {
}
2022-08-15 08:38:17 +00:00
char chars_[static_cast<std::size_t>(N) + 1];
2019-08-26 16:56:57 +00:00
};
2022-05-18 12:26:02 +00:00
template <>
class [[nodiscard]] cstring<0> {
public:
2024-10-19 23:02:24 +00:00
using value_type = const char;
using size_type = std::uint16_t;
2022-05-18 12:26:02 +00:00
using difference_type = std::ptrdiff_t;
2024-10-19 23:02:24 +00:00
using pointer = const char*;
using const_pointer = const char*;
using reference = const char&;
2022-05-18 12:26:02 +00:00
using const_reference = const char&;
2024-10-19 23:02:24 +00:00
using iterator = const char*;
2022-05-18 12:26:02 +00:00
using const_iterator = const char*;
2024-10-19 23:02:24 +00:00
using reverse_iterator = std::reverse_iterator<iterator>;
2022-05-18 12:26:02 +00:00
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
2024-10-19 23:02:24 +00:00
constexpr explicit cstring(string_view) noexcept {
}
2022-05-18 12:26:02 +00:00
constexpr cstring() = default;
2022-05-18 12:26:02 +00:00
constexpr cstring(const cstring&) = default;
constexpr cstring(cstring&&) = default;
~cstring() = default;
cstring& operator=(const cstring&) = default;
cstring& operator=(cstring&&) = default;
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_pointer data() const noexcept {
return nullptr;
}
2022-05-18 12:26:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr size_type size() const noexcept {
return 0;
}
2022-05-18 12:26:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_iterator begin() const noexcept {
return nullptr;
}
2022-05-18 14:31:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_iterator end() const noexcept {
return nullptr;
}
2022-05-18 14:31:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_iterator cbegin() const noexcept {
return nullptr;
}
2022-05-18 14:31:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_iterator cend() const noexcept {
return nullptr;
}
2022-05-18 14:31:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reverse_iterator rbegin() const noexcept {
return {};
}
2022-05-18 14:31:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reverse_iterator rend() const noexcept {
return {};
}
2022-05-18 14:31:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reverse_iterator crbegin() const noexcept {
return {};
}
2022-05-18 14:31:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const_reverse_iterator crend() const noexcept {
return {};
}
2022-05-18 14:31:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr size_type length() const noexcept {
return 0;
}
2022-05-18 12:26:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr bool empty() const noexcept {
return true;
}
2022-05-18 12:26:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr int compare(string_view str) const noexcept {
return string_view{}.compare(str);
}
2022-05-18 12:26:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr const char* c_str() const noexcept {
return nullptr;
}
2022-05-18 12:26:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] string str() const {
return {};
}
2022-05-18 12:26:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr operator string_view() const noexcept {
return {};
}
2022-05-18 12:26:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] constexpr explicit operator const_pointer() const noexcept {
return nullptr;
}
2022-05-18 12:26:02 +00:00
2024-10-19 23:02:24 +00:00
[[nodiscard]] explicit operator string() const {
return {};
}
2022-05-18 12:26:02 +00:00
};
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator==(const cstring<N>& lhs, string_view rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) == 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator==(string_view lhs, const cstring<N>& rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) == 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator!=(const cstring<N>& lhs, string_view rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) != 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator!=(string_view lhs, const cstring<N>& rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) != 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator>(const cstring<N>& lhs, string_view rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) > 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator>(string_view lhs, const cstring<N>& rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) > 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator>=(const cstring<N>& lhs, string_view rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) >= 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator>=(string_view lhs, const cstring<N>& rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) >= 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator<(const cstring<N>& lhs, string_view rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) < 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator<(string_view lhs, const cstring<N>& rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) < 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator<=(const cstring<N>& lhs, string_view rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) <= 0;
}
2022-08-15 08:38:17 +00:00
template <std::uint16_t N>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr bool operator<=(string_view lhs, const cstring<N>& rhs) noexcept {
2019-09-14 22:19:34 +00:00
return lhs.compare(rhs) <= 0;
}
2022-08-15 08:38:17 +00:00
template <typename Char, typename Traits, std::uint16_t N>
2019-10-03 13:25:40 +00:00
std::basic_ostream<Char, Traits>& operator<<(std::basic_ostream<Char, Traits>& os, const cstring<N>& srt) {
2024-10-19 23:02:24 +00:00
for(const auto c : srt) {
2019-09-14 22:19:34 +00:00
os.put(c);
}
return os;
}
2024-10-19 23:02:24 +00:00
NAMEOF_EXPORT_END
2019-10-03 13:25:40 +00:00
namespace detail {
2021-01-12 08:39:52 +00:00
constexpr string_view pretty_name(string_view name, bool remove_suffix = true) noexcept {
2024-10-19 23:02:24 +00:00
if(name.size() >= 1 && (name[0] == '"' || name[0] == '\'')) {
return {}; // Narrow multibyte string literal.
} else if(name.size() >= 2 && name[0] == 'R' && (name[1] == '"' || name[1] == '\'')) {
return {}; // Raw string literal.
} else if(name.size() >= 2 && name[0] == 'L' && (name[1] == '"' || name[1] == '\'')) {
return {}; // Wide string literal.
} else if(name.size() >= 2 && name[0] == 'U' && (name[1] == '"' || name[1] == '\'')) {
return {}; // UTF-32 encoded string literal.
} else if(name.size() >= 2 && name[0] == 'u' && (name[1] == '"' || name[1] == '\'')) {
return {}; // UTF-16 encoded string literal.
} else if(name.size() >= 3 && name[0] == 'u' && name[1] == '8' && (name[2] == '"' || name[2] == '\'')) {
return {}; // UTF-8 encoded string literal.
} else if(name.size() >= 1 && (name[0] >= '0' && name[0] <= '9')) {
return {}; // Invalid name.
}
for(std::size_t i = name.size(), h = 0, s = 0; i > 0; --i) {
if(name[i - 1] == ')') {
2019-04-11 14:55:29 +00:00
++h;
++s;
continue;
2024-10-19 23:02:24 +00:00
} else if(name[i - 1] == '(') {
2019-04-11 14:55:29 +00:00
--h;
++s;
continue;
}
2024-10-19 23:02:24 +00:00
if(h == 0) {
2019-04-11 14:55:29 +00:00
name.remove_suffix(s);
break;
} else {
++s;
continue;
}
}
std::size_t s = 0;
2024-10-19 23:02:24 +00:00
for(std::size_t i = name.size(), h = 0; i > 0; --i) {
if(name[i - 1] == '>') {
2019-04-11 14:55:29 +00:00
++h;
++s;
continue;
2024-10-19 23:02:24 +00:00
} else if(name[i - 1] == '<') {
2019-04-11 14:55:29 +00:00
--h;
++s;
continue;
}
2024-10-19 23:02:24 +00:00
if(h == 0) {
2019-04-11 14:55:29 +00:00
break;
} else {
++s;
continue;
}
}
2024-10-19 23:02:24 +00:00
for(std::size_t i = name.size() - s; i > 0; --i) {
if(!((name[i - 1] >= '0' && name[i - 1] <= '9') || (name[i - 1] >= 'a' && name[i - 1] <= 'z') ||
(name[i - 1] >= 'A' && name[i - 1] <= 'Z') || (name[i - 1] == '_'))) {
2019-04-11 14:55:29 +00:00
name.remove_prefix(i);
break;
}
}
2024-10-19 23:02:24 +00:00
if(remove_suffix) {
2019-07-21 19:13:32 +00:00
name.remove_suffix(s);
}
2019-04-11 14:55:29 +00:00
2024-10-19 23:02:24 +00:00
if(name.size() > 0 && ((name[0] >= 'a' && name[0] <= 'z') || (name[0] >= 'A' && name[0] <= 'Z') || (name[0] == '_'))) {
2019-04-11 14:55:29 +00:00
return name;
}
2019-07-23 13:50:18 +00:00
2024-10-19 23:02:24 +00:00
return {}; // Invalid name.
2018-07-13 15:18:52 +00:00
}
2023-11-30 21:33:57 +00:00
#if defined(__cpp_lib_array_constexpr) && __cpp_lib_array_constexpr >= 201603L
2024-10-19 23:02:24 +00:00
#define NAMEOF_ARRAY_CONSTEXPR 1
2023-11-30 21:33:57 +00:00
#else
template <typename T, std::size_t N, std::size_t... I>
2023-11-30 21:33:57 +00:00
constexpr std::array<std::remove_cv_t<T>, N> to_array(T (&a)[N], std::index_sequence<I...>) noexcept {
return {{a[I]...}};
}
2023-11-30 21:33:57 +00:00
#endif
2020-09-01 11:00:59 +00:00
template <typename L, typename R>
constexpr bool cmp_less(L lhs, R rhs) noexcept {
static_assert(std::is_integral_v<L> && std::is_integral_v<R>, "nameof::detail::cmp_less requires integral type.");
2024-10-19 23:02:24 +00:00
if constexpr(std::is_signed_v<L> == std::is_signed_v<R>) {
2020-09-01 11:00:59 +00:00
// If same signedness (both signed or both unsigned).
return lhs < rhs;
2024-10-19 23:02:24 +00:00
} else if constexpr(std::is_same_v<L, bool>) { // bool special case
return static_cast<R>(lhs) < rhs;
} else if constexpr(std::is_same_v<R, bool>) { // bool special case
return lhs < static_cast<L>(rhs);
} else if constexpr(std::is_signed_v<R>) {
2020-09-01 11:00:59 +00:00
// If 'right' is negative, then result is 'false', otherwise cast & compare.
return rhs > 0 && lhs < static_cast<std::make_unsigned_t<R>>(rhs);
} else {
// If 'left' is negative, then result is 'true', otherwise cast & compare.
return lhs < 0 || static_cast<std::make_unsigned_t<L>>(lhs) < rhs;
}
}
template <typename I>
constexpr I log2(I value) noexcept {
static_assert(std::is_integral_v<I>, "nameof::detail::log2 requires integral type.");
2024-10-19 23:02:24 +00:00
if constexpr(std::is_same_v<I, bool>) { // bool special case
2022-05-18 12:26:02 +00:00
return assert(false), value;
} else {
auto ret = I{0};
2024-10-19 23:02:24 +00:00
for(; value > I{1}; value >>= I{1}, ++ret) {
}
2020-09-01 11:00:59 +00:00
2022-05-18 12:26:02 +00:00
return ret;
}
2020-09-01 11:00:59 +00:00
}
2020-07-03 13:18:05 +00:00
template <typename T>
struct nameof_enum_supported
#if defined(NAMEOF_ENUM_SUPPORTED) && NAMEOF_ENUM_SUPPORTED || defined(NAMEOF_ENUM_NO_CHECK_SUPPORT)
2024-10-19 23:02:24 +00:00
: std::true_type {
};
2020-07-03 13:18:05 +00:00
#else
2024-10-19 23:02:24 +00:00
: std::false_type {
};
2020-07-03 13:18:05 +00:00
#endif
template <typename T, typename R>
using enable_if_enum_t = std::enable_if_t<std::is_enum_v<std::decay_t<T>>, R>;
template <typename T>
inline constexpr bool is_enum_v = std::is_enum_v<T> && std::is_same_v<T, std::decay_t<T>>;
2019-07-13 14:32:33 +00:00
template <typename E, E V>
2019-09-13 14:45:01 +00:00
constexpr auto n() noexcept {
2019-10-01 13:55:37 +00:00
static_assert(is_enum_v<E>, "nameof::detail::n requires enum type.");
2020-12-29 18:45:54 +00:00
2024-10-19 23:02:24 +00:00
if constexpr(nameof_enum_supported<E>::value) {
2022-05-18 12:26:02 +00:00
#if defined(__clang__) || defined(__GNUC__)
2020-12-29 18:45:54 +00:00
constexpr auto name = pretty_name({__PRETTY_FUNCTION__, sizeof(__PRETTY_FUNCTION__) - 2});
2022-05-18 12:26:02 +00:00
#elif defined(_MSC_VER)
2020-12-29 18:45:54 +00:00
constexpr auto name = pretty_name({__FUNCSIG__, sizeof(__FUNCSIG__) - 17});
#else
2022-05-18 12:26:02 +00:00
constexpr auto name = string_view{};
2019-07-13 14:32:33 +00:00
#endif
2023-11-30 21:33:57 +00:00
return name;
2020-12-29 18:45:54 +00:00
} else {
2023-11-30 21:33:57 +00:00
return string_view{};
2020-12-29 18:45:54 +00:00
}
2019-07-13 14:32:33 +00:00
}
2019-08-26 16:56:57 +00:00
template <typename E, E V>
constexpr auto enum_name() noexcept {
[[maybe_unused]] constexpr auto custom_name = customize::enum_name<E>(V);
2020-06-06 10:41:29 +00:00
2024-10-19 23:02:24 +00:00
if constexpr(custom_name.empty()) {
2023-11-30 21:33:57 +00:00
constexpr auto name = n<E, V>();
return cstring<name.size()>{name};
} else {
return cstring<custom_name.size()>{custom_name};
}
2020-06-06 10:41:29 +00:00
}
template <typename E, E V>
inline constexpr auto enum_name_v = enum_name<E, V>();
template <typename E, auto V>
constexpr bool is_valid() noexcept {
#if defined(__clang__) && __clang_major__ >= 16
// https://reviews.llvm.org/D130058, https://reviews.llvm.org/D131307
constexpr E v = __builtin_bit_cast(E, V);
2023-11-30 21:33:57 +00:00
#else
constexpr E v = static_cast<E>(V);
#endif
[[maybe_unused]] constexpr auto custom_name = customize::enum_name<E>(v);
2024-10-19 23:02:24 +00:00
if constexpr(custom_name.empty()) {
return n<E, v>().size() != 0;
} else {
2022-08-12 17:46:36 +00:00
return custom_name.size() != 0;
}
}
template <typename E, int O, bool IsFlags, typename U = std::underlying_type_t<E>>
constexpr U ualue(std::size_t i) noexcept {
2024-10-19 23:02:24 +00:00
if constexpr(std::is_same_v<U, bool>) { // bool special case
static_assert(O == 0, "nameof::detail::ualue requires valid offset.");
2022-05-18 12:26:02 +00:00
return static_cast<U>(i);
2024-10-19 23:02:24 +00:00
} else if constexpr(IsFlags) {
return static_cast<U>(U{1} << static_cast<U>(static_cast<int>(i) + O));
2021-04-22 09:41:25 +00:00
} else {
return static_cast<U>(static_cast<int>(i) + O);
2021-04-22 09:41:25 +00:00
}
}
template <typename E, int O, bool IsFlags, typename U = std::underlying_type_t<E>>
constexpr E value(std::size_t i) noexcept {
return static_cast<E>(ualue<E, O, IsFlags>(i));
}
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags, typename U = std::underlying_type_t<E>>
constexpr int reflected_min() noexcept {
2024-10-19 23:02:24 +00:00
if constexpr(IsFlags) {
2020-09-01 11:00:59 +00:00
return 0;
2020-04-18 08:43:45 +00:00
} else {
2020-12-29 18:45:54 +00:00
constexpr auto lhs = customize::enum_range<E>::min;
2020-09-01 11:00:59 +00:00
constexpr auto rhs = (std::numeric_limits<U>::min)();
2024-10-19 23:02:24 +00:00
if constexpr(cmp_less(rhs, lhs)) {
2020-09-01 11:00:59 +00:00
return lhs;
} else {
return rhs;
2020-09-01 11:00:59 +00:00
}
2019-10-15 11:10:49 +00:00
}
}
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags, typename U = std::underlying_type_t<E>>
constexpr int reflected_max() noexcept {
2024-10-19 23:02:24 +00:00
if constexpr(IsFlags) {
2020-09-01 11:00:59 +00:00
return std::numeric_limits<U>::digits - 1;
} else {
2020-12-29 18:45:54 +00:00
constexpr auto lhs = customize::enum_range<E>::max;
2020-09-01 11:00:59 +00:00
constexpr auto rhs = (std::numeric_limits<U>::max)();
2019-10-15 11:10:49 +00:00
2024-10-19 23:02:24 +00:00
if constexpr(cmp_less(lhs, rhs)) {
2020-09-01 11:00:59 +00:00
return lhs;
} else {
return rhs;
}
}
2019-10-15 11:10:49 +00:00
}
2024-10-19 23:02:24 +00:00
#define NAMEOF_FOR_EACH_256(T) \
T(0) \
T(1) \
T(2) \
T(3) \
T(4) \
T(5) \
T(6) \
T(7) \
T(8) \
T(9) \
T(10) \
T(11) \
T(12) \
T(13) T(14) T(15) T(16) T(17) T(18) T(19) T(20) T(21) T(22) T(23) T(24) T(25) T(26) T(27) T(28) T(29) T(30) T(31) T(32) T(33) T(34) \
T(35) T(36) T(37) T(38) T(39) T(40) T(41) T(42) T(43) T(44) T(45) T(46) T(47) T(48) T(49) T(50) T(51) T(52) T(53) T(54) T(55) T(56) \
T(57) T(58) T(59) T(60) T(61) T(62) T(63) T(64) T(65) T(66) T(67) T(68) T(69) T(70) T(71) T(72) T(73) T(74) T(75) T(76) T(77) \
T(78) T(79) T(80) T(81) T(82) T(83) T(84) T(85) T(86) T(87) T(88) T(89) T(90) T(91) T(92) T(93) T(94) T(95) T(96) T(97) \
T(98) T(99) T(100) T(101) T(102) T(103) T(104) T(105) T(106) T(107) T(108) T(109) T(110) T(111) T(112) T(113) T(114) \
T(115) T(116) T(117) T(118) T(119) T(120) T(121) T(122) T(123) T(124) T(125) T(126) T(127) T(128) T(129) T(130) \
T(131) T(132) T(133) T(134) T(135) T(136) T(137) T(138) T(139) T(140) T(141) T(142) T(143) T(144) T(145) T(146) \
T(147) T(148) T(149) T(150) T(151) T(152) T(153) T(154) T(155) T(156) T(157) T(158) T(159) T(160) T(161) \
T(162) T(163) T(164) T(165) T(166) T(167) T(168) T(169) T(170) T(171) T(172) T(173) T(174) T(175) T(176) \
T(177) T(178) T(179) T(180) T(181) T(182) T(183) T(184) T(185) T(186) T(187) T(188) T(189) T(190) \
T(191) T(192) T(193) T(194) T(195) T(196) T(197) T(198) T(199) T(200) T(201) T(202) T(203) \
T(204) T(205) T(206) T(207) T(208) T(209) T(210) T(211) T(212) T(213) T(214) T(215) T(216) \
T(217) T(218) T(219) T(220) T(221) T(222) T(223) T(224) T(225) T(226) T(227) T(228) \
T(229) T(230) T(231) T(232) T(233) T(234) T(235) T(236) T(237) T(238) T(239) T(240) \
T(241) T(242) T(243) T(244) T(245) T(246) T(247) T(248) T(249) T(250) T(251) \
T(252) T(253) T(254) T(255)
2023-11-30 21:33:57 +00:00
template <typename E, bool IsFlags, std::size_t Size, int Min, std::size_t I>
constexpr void valid_count(bool* valid, std::size_t& count) noexcept {
2024-10-19 23:02:24 +00:00
#define NAMEOF_ENUM_V(O) \
if constexpr((I + O) < Size) { \
if constexpr(is_valid<E, ualue<E, Min, IsFlags>(I + O)>()) { \
valid[I + O] = true; \
++count; \
} \
2023-11-30 21:33:57 +00:00
}
2019-10-15 11:10:49 +00:00
2023-11-30 21:33:57 +00:00
NAMEOF_FOR_EACH_256(NAMEOF_ENUM_V)
2019-10-15 11:10:49 +00:00
2024-10-19 23:02:24 +00:00
if constexpr((I + 256) < Size) {
2023-11-30 21:33:57 +00:00
valid_count<E, IsFlags, Size, Min, I + 256>(valid, count);
2020-12-29 18:45:54 +00:00
}
2023-11-30 21:33:57 +00:00
#undef NAMEOF_ENUM_V
}
template <std::size_t N>
struct valid_count_t {
std::size_t count = 0;
bool valid[N] = {};
};
2020-12-29 18:45:54 +00:00
2023-11-30 21:33:57 +00:00
template <typename E, bool IsFlags, std::size_t Size, int Min>
constexpr auto valid_count() noexcept {
valid_count_t<Size> vc;
valid_count<E, IsFlags, Size, Min, 0>(vc.valid, vc.count);
return vc;
2020-12-29 18:45:54 +00:00
}
2023-11-30 21:33:57 +00:00
template <typename E, bool IsFlags, std::size_t Size, int Min>
constexpr auto values() noexcept {
constexpr auto vc = valid_count<E, IsFlags, Size, Min>();
2019-10-15 11:10:49 +00:00
2024-10-19 23:02:24 +00:00
if constexpr(vc.count > 0) {
2023-11-30 21:33:57 +00:00
#if defined(NAMEOF_ARRAY_CONSTEXPR)
std::array<E, vc.count> values = {};
#else
E values[vc.count] = {};
#endif
2024-10-19 23:02:24 +00:00
for(std::size_t i = 0, v = 0; v < vc.count; ++i) {
if(vc.valid[i]) {
values[v++] = value<E, Min, IsFlags>(i);
}
2019-10-15 11:10:49 +00:00
}
2023-11-30 21:33:57 +00:00
#if defined(NAMEOF_ARRAY_CONSTEXPR)
return values;
#else
return to_array(values, std::make_index_sequence<vc.count>{});
#endif
} else {
return std::array<E, 0>{};
}
2019-10-01 13:43:24 +00:00
}
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags, typename U = std::underlying_type_t<E>>
constexpr auto values() noexcept {
2023-11-30 21:33:57 +00:00
constexpr auto min = reflected_min<E, IsFlags>();
constexpr auto max = reflected_max<E, IsFlags>();
2021-01-12 08:39:52 +00:00
constexpr auto range_size = max - min + 1;
2020-09-01 11:00:59 +00:00
static_assert(range_size > 0, "nameof::enum_range requires valid size.");
static_assert(range_size < (std::numeric_limits<std::uint16_t>::max)(), "nameof::enum_range requires valid size.");
2019-10-01 13:43:24 +00:00
2023-11-30 21:33:57 +00:00
return values<E, IsFlags, range_size, min>();
2020-09-01 11:00:59 +00:00
}
2019-10-01 13:43:24 +00:00
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags = false>
inline constexpr auto values_v = values<E, IsFlags>();
2019-10-01 13:43:24 +00:00
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags = false>
inline constexpr auto count_v = values_v<E, IsFlags>.size();
2019-07-13 14:32:33 +00:00
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags = false, typename U = std::underlying_type_t<E>>
inline constexpr auto min_v = (count_v<E, IsFlags> > 0) ? static_cast<U>(values_v<E, IsFlags>.front()) : U{0};
2019-10-01 13:43:24 +00:00
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags = false, typename U = std::underlying_type_t<E>>
inline constexpr auto max_v = (count_v<E, IsFlags> > 0) ? static_cast<U>(values_v<E, IsFlags>.back()) : U{0};
2019-10-01 13:43:24 +00:00
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags, std::size_t... I>
2023-11-30 21:33:57 +00:00
constexpr auto names(std::index_sequence<I...>) noexcept {
constexpr auto names = std::array<string_view, sizeof...(I)>{{enum_name_v<E, values_v<E, IsFlags>[I]>...}};
return names;
2019-10-01 13:43:24 +00:00
}
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags = false>
2023-11-30 21:33:57 +00:00
inline constexpr auto names_v = names<E, IsFlags>(std::make_index_sequence<count_v<E, IsFlags>>{});
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags, typename U = std::underlying_type_t<E>>
constexpr bool is_sparse() noexcept {
2024-10-19 23:02:24 +00:00
if constexpr(count_v<E, IsFlags> == 0) {
2023-11-30 21:33:57 +00:00
return false;
2024-10-19 23:02:24 +00:00
} else if constexpr(std::is_same_v<U, bool>) { // bool special case
2023-11-30 21:33:57 +00:00
return false;
2019-10-01 13:43:24 +00:00
} else {
2023-11-30 21:33:57 +00:00
constexpr auto max = IsFlags ? log2(max_v<E, IsFlags>) : max_v<E, IsFlags>;
constexpr auto min = IsFlags ? log2(min_v<E, IsFlags>) : min_v<E, IsFlags>;
constexpr auto range_size = max - min + 1;
return range_size != count_v<E, IsFlags>;
2019-10-01 13:43:24 +00:00
}
}
2020-09-01 11:00:59 +00:00
template <typename E, bool IsFlags = false>
inline constexpr bool is_sparse_v = is_sparse<E, IsFlags>();
2020-07-03 13:18:05 +00:00
2023-11-30 21:33:57 +00:00
template <typename E, bool IsFlags = false, typename U = std::underlying_type_t<E>>
constexpr E enum_value(std::size_t i) noexcept {
2024-10-19 23:02:24 +00:00
if constexpr(is_sparse_v<E, IsFlags>) {
2020-09-01 11:00:59 +00:00
return values_v<E, IsFlags>[i];
} else {
constexpr auto min = IsFlags ? log2(min_v<E, IsFlags>) : min_v<E, IsFlags>;
2020-07-03 13:18:05 +00:00
2020-09-01 11:00:59 +00:00
return value<E, min, IsFlags>(i);
2020-07-03 13:18:05 +00:00
}
}
template <typename... T>
struct nameof_type_supported
#if defined(NAMEOF_TYPE_SUPPORTED) && NAMEOF_TYPE_SUPPORTED || defined(NAMEOF_TYPE_NO_CHECK_SUPPORT)
2024-10-19 23:02:24 +00:00
: std::true_type {
};
2020-07-03 13:18:05 +00:00
#else
2024-10-19 23:02:24 +00:00
: std::false_type {
};
2020-07-03 13:18:05 +00:00
#endif
2020-12-29 18:45:54 +00:00
template <typename... T>
struct nameof_type_rtti_supported
#if defined(NAMEOF_TYPE_RTTI_SUPPORTED) && NAMEOF_TYPE_RTTI_SUPPORTED || defined(NAMEOF_TYPE_NO_CHECK_SUPPORT)
2024-10-19 23:02:24 +00:00
: std::true_type {
};
2020-12-29 18:45:54 +00:00
#else
2024-10-19 23:02:24 +00:00
: std::false_type {
};
2020-12-29 18:45:54 +00:00
#endif
2021-04-02 21:06:56 +00:00
template <typename... T>
struct nameof_member_supported
#if defined(NAMEOF_MEMBER_SUPPORTED) && NAMEOF_MEMBER_SUPPORTED || defined(NAMEOF_TYPE_NO_CHECK_SUPPORT)
2024-10-19 23:02:24 +00:00
: std::true_type {
};
2021-04-02 21:06:56 +00:00
#else
2024-10-19 23:02:24 +00:00
: std::false_type {
};
2021-04-02 21:06:56 +00:00
#endif
2023-03-17 17:39:30 +00:00
template <typename... T>
struct nameof_pointer_supported
#if defined(NAMEOF_POINTER_SUPPORTED) && NAMEOF_POINTER_SUPPORTED || defined(NAMEOF_TYPE_NO_CHECK_SUPPORT)
2024-10-19 23:02:24 +00:00
: std::true_type {
};
2023-03-17 17:39:30 +00:00
#else
2024-10-19 23:02:24 +00:00
: std::false_type {
};
2023-03-17 17:39:30 +00:00
#endif
2020-12-29 18:45:54 +00:00
#if defined(_MSC_VER) && !defined(__clang__)
2020-07-03 13:18:05 +00:00
template <typename T>
struct identity {
using type = T;
};
2020-09-01 11:00:59 +00:00
#else
template <typename T>
using identity = T;
#endif
2020-07-03 13:18:05 +00:00
template <typename T>
using remove_cvref_t = std::remove_cv_t<std::remove_reference_t<T>>;
2020-12-29 18:45:54 +00:00
template <typename T, typename R>
using enable_if_has_short_name_t = std::enable_if_t<!std::is_array_v<T> && !std::is_pointer_v<T>, R>;
2019-07-13 14:32:33 +00:00
template <typename... T>
2019-09-13 14:45:01 +00:00
constexpr auto n() noexcept {
#if defined(_MSC_VER) && !defined(__clang__)
2022-05-18 12:26:02 +00:00
[[maybe_unused]] constexpr auto custom_name = customize::type_name<typename T::type...>();
2020-12-29 18:45:54 +00:00
#else
2022-05-18 12:26:02 +00:00
[[maybe_unused]] constexpr auto custom_name = customize::type_name<T...>();
#endif
2020-12-29 18:45:54 +00:00
2024-10-19 23:02:24 +00:00
if constexpr(custom_name.empty() && nameof_type_supported<T...>::value) {
2022-05-18 12:26:02 +00:00
#if defined(__clang__)
2020-12-29 18:45:54 +00:00
constexpr string_view name{__PRETTY_FUNCTION__ + 31, sizeof(__PRETTY_FUNCTION__) - 34};
2022-05-18 12:26:02 +00:00
#elif defined(__GNUC__)
2020-12-29 18:45:54 +00:00
constexpr string_view name{__PRETTY_FUNCTION__ + 46, sizeof(__PRETTY_FUNCTION__) - 49};
2022-05-18 12:26:02 +00:00
#elif defined(_MSC_VER)
2020-12-29 18:45:54 +00:00
constexpr string_view name{__FUNCSIG__ + 63, sizeof(__FUNCSIG__) - 81 - (__FUNCSIG__[sizeof(__FUNCSIG__) - 19] == ' ' ? 1 : 0)};
#else
2022-05-18 12:26:02 +00:00
constexpr auto name = string_view{};
2019-07-13 14:32:33 +00:00
#endif
2022-05-18 12:26:02 +00:00
return cstring<name.size()>{name};
2020-12-29 18:45:54 +00:00
} else {
return cstring<custom_name.size()>{custom_name};
}
2019-07-13 14:32:33 +00:00
}
2019-12-02 09:17:48 +00:00
template <typename... T>
inline constexpr auto type_name_v = n<T...>();
2020-06-03 14:25:30 +00:00
#if __has_include(<cxxabi.h>)
2020-12-29 18:45:54 +00:00
template <typename T>
string nameof_type_rtti(const char* tn) {
2024-10-19 23:02:24 +00:00
static_assert(nameof_type_rtti_supported<T>::value,
"nameof::nameof_type_rtti unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2020-12-29 18:45:54 +00:00
const auto dmg = abi::__cxa_demangle(tn, nullptr, nullptr, nullptr);
const auto name = string{dmg};
2022-07-21 15:55:02 +00:00
free(dmg);
2022-08-14 11:54:27 +00:00
assert(!name.empty() && "Type does not have a name.");
2020-12-29 18:45:54 +00:00
return name;
}
template <typename T>
string nameof_full_type_rtti(const char* tn) {
2024-10-19 23:02:24 +00:00
static_assert(nameof_type_rtti_supported<T>::value,
"nameof::nameof_type_rtti unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2020-12-29 18:45:54 +00:00
const auto dmg = abi::__cxa_demangle(tn, nullptr, nullptr, nullptr);
auto name = string{dmg};
2022-07-21 15:55:02 +00:00
free(dmg);
2022-08-14 11:54:27 +00:00
assert(!name.empty() && "Type does not have a name.");
2024-10-19 23:02:24 +00:00
if constexpr(std::is_const_v<std::remove_reference_t<T>>) {
2022-08-13 14:28:52 +00:00
name = string{"const "}.append(name);
2020-12-29 18:45:54 +00:00
}
2024-10-19 23:02:24 +00:00
if constexpr(std::is_volatile_v<std::remove_reference_t<T>>) {
2022-08-13 14:28:52 +00:00
name = string{"volatile "}.append(name);
2020-12-29 18:45:54 +00:00
}
2024-10-19 23:02:24 +00:00
if constexpr(std::is_lvalue_reference_v<T>) {
2022-08-13 14:28:52 +00:00
name.append(1, '&');
2020-12-29 18:45:54 +00:00
}
2024-10-19 23:02:24 +00:00
if constexpr(std::is_rvalue_reference_v<T>) {
2022-08-13 14:28:52 +00:00
name.append("&&");
2020-12-29 18:45:54 +00:00
}
return name;
}
template <typename T, enable_if_has_short_name_t<T, int> = 0>
string nameof_short_type_rtti(const char* tn) {
2024-10-19 23:02:24 +00:00
static_assert(nameof_type_rtti_supported<T>::value,
"nameof::nameof_type_rtti unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2020-12-29 18:45:54 +00:00
const auto dmg = abi::__cxa_demangle(tn, nullptr, nullptr, nullptr);
2022-08-13 14:28:52 +00:00
const auto pname = pretty_name(dmg);
const auto name = string{pname.data(), pname.size()};
2022-07-21 15:55:02 +00:00
free(dmg);
2022-08-14 11:54:27 +00:00
assert(!name.empty() && "Type does not have a short name.");
2020-07-03 13:18:05 +00:00
2020-12-29 18:45:54 +00:00
return name;
2020-06-05 10:24:13 +00:00
}
2020-06-03 14:25:30 +00:00
#else
2020-12-29 18:45:54 +00:00
template <typename T>
string nameof_type_rtti(const char* tn) {
2024-10-19 23:02:24 +00:00
static_assert(nameof_type_rtti_supported<T>::value,
"nameof::nameof_type_rtti unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2020-12-29 18:45:54 +00:00
const auto name = string_view{tn};
2022-08-14 11:54:27 +00:00
assert(!name.empty() && "Type does not have a name.");
return {name.data(), name.size()};
2020-12-29 18:45:54 +00:00
}
template <typename T>
string nameof_full_type_rtti(const char* tn) {
2024-10-19 23:02:24 +00:00
static_assert(nameof_type_rtti_supported<T>::value,
"nameof::nameof_type_rtti unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2020-12-29 18:45:54 +00:00
auto name = string{tn};
2022-08-14 11:54:27 +00:00
assert(!name.empty() && "Type does not have a name.");
2024-10-19 23:02:24 +00:00
if constexpr(std::is_const_v<std::remove_reference_t<T>>) {
2022-08-13 14:28:52 +00:00
name = string{"const "}.append(name);
2020-12-29 18:45:54 +00:00
}
2024-10-19 23:02:24 +00:00
if constexpr(std::is_volatile_v<std::remove_reference_t<T>>) {
2022-08-13 14:28:52 +00:00
name = string{"volatile "}.append(name);
2020-12-29 18:45:54 +00:00
}
2024-10-19 23:02:24 +00:00
if constexpr(std::is_lvalue_reference_v<T>) {
2022-08-13 14:28:52 +00:00
name.append(1, '&');
2020-12-29 18:45:54 +00:00
}
2024-10-19 23:02:24 +00:00
if constexpr(std::is_rvalue_reference_v<T>) {
2022-08-13 14:28:52 +00:00
name.append("&&");
2020-12-29 18:45:54 +00:00
}
return name;
}
template <typename T, enable_if_has_short_name_t<T, int> = 0>
string nameof_short_type_rtti(const char* tn) {
2024-10-19 23:02:24 +00:00
static_assert(nameof_type_rtti_supported<T>::value,
"nameof::nameof_type_rtti unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2020-12-29 18:45:54 +00:00
const auto name = pretty_name(tn);
2022-08-14 11:54:27 +00:00
assert(!name.empty() && "Type does not have a short name.");
return {name.data(), name.size()};
2020-06-03 14:25:30 +00:00
}
2020-06-05 10:24:13 +00:00
#endif
2020-06-03 14:25:30 +00:00
2022-07-25 10:07:57 +00:00
template <auto V, auto U = V>
2021-04-02 21:06:56 +00:00
constexpr auto n() noexcept {
2022-05-18 12:26:02 +00:00
[[maybe_unused]] constexpr auto custom_name = customize::member_name<V>();
2021-04-02 21:06:56 +00:00
2024-10-19 23:02:24 +00:00
if constexpr(custom_name.empty() && nameof_member_supported<decltype(V)>::value) {
2022-05-18 12:26:02 +00:00
#if defined(__clang__) || defined(__GNUC__)
2021-04-02 21:06:56 +00:00
constexpr auto name = pretty_name({__PRETTY_FUNCTION__, sizeof(__PRETTY_FUNCTION__) - 2});
2022-07-21 17:07:19 +00:00
#elif defined(_MSC_VER) && defined(_MSVC_LANG) && _MSVC_LANG >= 202002L
2024-10-19 23:02:24 +00:00
constexpr auto name = pretty_name({__FUNCSIG__, sizeof(__FUNCSIG__) - 18 + std::is_member_function_pointer_v<decltype(U)>});
2021-04-02 21:06:56 +00:00
#else
2022-05-18 12:26:02 +00:00
constexpr auto name = string_view{};
2021-04-02 21:06:56 +00:00
#endif
2022-05-18 12:26:02 +00:00
return cstring<name.size()>{name};
2021-04-02 21:06:56 +00:00
} else {
return cstring<custom_name.size()>{custom_name};
}
}
2022-07-21 17:07:19 +00:00
#if defined(__clang__) || defined(__GNUC__)
2021-04-02 21:06:56 +00:00
template <auto V>
inline constexpr auto member_name_v = n<V>();
2022-07-21 17:07:19 +00:00
#elif defined(_MSC_VER) && defined(_MSVC_LANG) && _MSVC_LANG >= 202002L
template <typename From, typename Type>
From get_base_type(Type From::*);
template <typename T>
extern T nonexist_object;
2022-07-21 17:07:19 +00:00
2024-10-19 23:02:24 +00:00
template <class T>
struct Store {
2024-10-19 23:02:24 +00:00
T v;
2022-12-06 21:24:06 +00:00
};
2022-07-21 17:07:19 +00:00
2024-10-19 23:02:24 +00:00
template <class T>
Store(T) -> Store<T>;
2022-07-21 17:07:19 +00:00
template <auto V>
consteval auto get_member_name() noexcept {
2024-10-19 23:02:24 +00:00
if constexpr(std::is_member_function_pointer_v<decltype(V)>) {
2022-07-21 17:07:19 +00:00
return n<V>();
} else {
constexpr bool is_defined = sizeof(decltype(get_base_type(V))) != 0;
2024-10-19 23:02:24 +00:00
static_assert(is_defined,
"nameof::nameof_member member name can use only if the struct is already fully defined. Please use NAMEOF macro, or "
"separate definition and declaration.");
if constexpr(is_defined) {
return n<V, Store{&(nonexist_object<decltype(get_base_type(V))>.*V)}>();
} else {
return "";
}
2022-07-21 17:07:19 +00:00
}
}
template <auto V>
inline constexpr auto member_name_v = get_member_name<V>();
#else
template <auto V>
inline constexpr auto member_name_v = cstring<0>{};
2022-07-21 17:07:19 +00:00
#endif
2021-04-02 21:06:56 +00:00
2023-03-30 15:10:22 +00:00
template <auto U, auto V>
2023-03-17 17:39:30 +00:00
struct is_same : std::false_type {};
2023-03-30 15:10:22 +00:00
template <auto U>
2023-03-17 17:39:30 +00:00
struct is_same<U, U> : std::true_type {};
2023-03-30 15:10:22 +00:00
template <auto P>
2023-03-17 17:39:30 +00:00
constexpr bool is_nullptr_v = is_same<P, static_cast<std::remove_reference_t<decltype(P)>>(nullptr)>::value;
template <auto V>
constexpr auto p() noexcept {
2024-10-19 23:02:24 +00:00
[[maybe_unused]] constexpr auto custom_name =
customize::pointer_name<V>().empty() && is_nullptr_v<V> ? "nullptr" : customize::pointer_name<V>();
2023-03-17 17:39:30 +00:00
2024-10-19 23:02:24 +00:00
if constexpr(custom_name.empty() && nameof_pointer_supported<decltype(V)>::value) {
2023-03-17 17:39:30 +00:00
#if defined(__clang__)
constexpr auto name = pretty_name({__PRETTY_FUNCTION__, sizeof(__PRETTY_FUNCTION__) - 2});
#elif defined(__GNUC__)
constexpr bool has_parenthesis = __PRETTY_FUNCTION__[sizeof(__PRETTY_FUNCTION__) - 3] == ')';
constexpr auto name = pretty_name({__PRETTY_FUNCTION__, sizeof(__PRETTY_FUNCTION__) - 2 - has_parenthesis});
#elif defined(_MSC_VER) && defined(_MSVC_LANG) && _MSVC_LANG >= 202002L
constexpr auto name = pretty_name({__FUNCSIG__, sizeof(__FUNCSIG__) - 17});
#else
constexpr auto name = string_view{};
#endif
return cstring<name.size()>{name};
} else {
return cstring<custom_name.size()>{custom_name};
}
}
template <auto V>
inline constexpr auto pointer_name_v = p<V>();
2024-10-19 23:02:24 +00:00
} // namespace detail
NAMEOF_EXPORT_BEGIN
2019-03-21 09:16:06 +00:00
2019-08-26 16:56:57 +00:00
// Checks is nameof_type supported compiler.
2019-08-27 14:54:16 +00:00
inline constexpr bool is_nameof_type_supported = detail::nameof_type_supported<void>::value;
2020-12-29 18:45:54 +00:00
// Checks is nameof_type_rtti supported compiler.
inline constexpr bool is_nameof_type_rtti_supported = detail::nameof_type_rtti_supported<void>::value;
2021-04-02 21:06:56 +00:00
// Checks is nameof_member supported compiler.
inline constexpr bool is_nameof_member_supported = detail::nameof_member_supported<void>::value;
2023-03-17 17:39:30 +00:00
// Checks is nameof_pointer supported compiler.
inline constexpr bool is_nameof_pointer_supported = detail::nameof_pointer_supported<void>::value;
2019-08-26 16:56:57 +00:00
// Checks is nameof_enum supported compiler.
2019-08-27 14:54:16 +00:00
inline constexpr bool is_nameof_enum_supported = detail::nameof_enum_supported<void>::value;
2022-07-26 14:17:36 +00:00
// Obtains name of enum variable.
2019-04-26 05:59:21 +00:00
template <typename E>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr auto nameof_enum(E value) noexcept -> detail::enable_if_enum_t<E, string_view> {
2020-05-27 11:22:29 +00:00
using D = std::decay_t<E>;
using U = std::underlying_type_t<D>;
2024-10-19 23:02:24 +00:00
static_assert(detail::nameof_enum_supported<D>::value,
"nameof::nameof_enum unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2020-05-24 12:52:22 +00:00
static_assert(detail::count_v<D> > 0, "nameof::nameof_enum requires enum implementation and valid max and min.");
2024-10-19 23:02:24 +00:00
if constexpr(detail::is_sparse_v<D>) {
for(std::size_t i = 0; i < detail::count_v<D>; ++i) {
if(detail::enum_value<D>(i) == value) {
2023-11-30 21:33:57 +00:00
return detail::names_v<D>[i];
}
2023-11-30 21:33:57 +00:00
}
} else {
const auto v = static_cast<U>(value);
2024-10-19 23:02:24 +00:00
if(v >= detail::min_v<D> && v <= detail::max_v<D>) {
2023-11-30 21:33:57 +00:00
return detail::names_v<D>[static_cast<std::size_t>(v - detail::min_v<D>)];
}
}
2024-10-19 23:02:24 +00:00
return {}; // Value out of range.
2019-03-24 15:15:14 +00:00
}
2022-07-26 14:17:36 +00:00
// Obtains name of enum variable or default value if enum variable out of range.
template <typename E>
2022-07-26 14:48:58 +00:00
[[nodiscard]] auto nameof_enum_or(E value, string_view default_value) -> detail::enable_if_enum_t<E, string> {
2022-07-26 14:17:36 +00:00
using D = std::decay_t<E>;
2024-10-19 23:02:24 +00:00
static_assert(detail::nameof_enum_supported<D>::value,
"nameof::nameof_enum_or unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
static_assert(detail::count_v<D> > 0, "nameof::nameof_enum_or requires enum implementation and valid max and min.");
2022-07-26 14:17:36 +00:00
2024-10-19 23:02:24 +00:00
if(auto v = nameof_enum<D>(value); !v.empty()) {
2022-07-26 14:17:36 +00:00
return string{v.data(), v.size()};
}
return string{default_value.data(), default_value.size()};
}
// Obtains name of enum-flags variable.
2020-07-03 13:18:05 +00:00
template <typename E>
[[nodiscard]] auto nameof_enum_flag(E value, char sep = '|') -> detail::enable_if_enum_t<E, string> {
2020-07-03 13:18:05 +00:00
using D = std::decay_t<E>;
using U = std::underlying_type_t<D>;
2024-10-19 23:02:24 +00:00
static_assert(detail::nameof_enum_supported<D>::value,
"nameof::nameof_enum_flag unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2020-09-07 17:12:54 +00:00
static_assert(detail::count_v<D, true> > 0, "nameof::nameof_enum_flag requires enum-flags implementation.");
2020-07-03 13:18:05 +00:00
2020-12-29 18:45:54 +00:00
string name;
2020-09-01 11:00:59 +00:00
auto check_value = U{0};
2024-10-19 23:02:24 +00:00
for(std::size_t i = 0; i < detail::count_v<D, true>; ++i) {
if(const auto v = static_cast<U>(detail::enum_value<D, true>(i)); (static_cast<U>(value) & v) != 0) {
if(const auto n = detail::names_v<D, true>[i]; !n.empty()) {
2020-09-01 11:00:59 +00:00
check_value |= v;
2024-10-19 23:02:24 +00:00
if(!name.empty()) {
name.append(1, sep);
2020-07-03 13:18:05 +00:00
}
2023-11-30 21:33:57 +00:00
name.append(n.data(), n.size());
2020-07-03 13:18:05 +00:00
} else {
2024-10-19 23:02:24 +00:00
return {}; // Value out of range.
2020-07-03 13:18:05 +00:00
}
}
}
2024-10-19 23:02:24 +00:00
if(check_value != 0 && check_value == static_cast<U>(value)) {
2020-09-01 11:00:59 +00:00
return name;
}
2024-10-19 23:02:24 +00:00
return {}; // Invalid value or out of range.
2020-07-03 13:18:05 +00:00
}
2022-07-26 14:17:36 +00:00
// Obtains name of static storage enum variable.
2019-05-03 10:22:18 +00:00
// This version is much lighter on the compile times and is not restricted to the enum_range limitation.
2024-09-19 10:52:06 +00:00
template <auto V, detail::enable_if_enum_t<decltype(V), int> = 0>
[[nodiscard]] constexpr auto nameof_enum() noexcept {
2020-06-03 15:04:09 +00:00
using D = std::decay_t<decltype(V)>;
2024-09-19 10:52:06 +00:00
static_assert(std::is_enum_v<D>, "nameof::nameof_enum requires member enum type.");
2024-10-19 23:02:24 +00:00
static_assert(detail::nameof_enum_supported<D>::value,
"nameof::nameof_enum unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2024-09-19 10:52:06 +00:00
return detail::enum_name_v<D, V>;
2019-05-03 10:22:18 +00:00
}
2020-12-29 18:45:54 +00:00
// Obtains name of type, reference and cv-qualifiers are ignored.
2019-07-21 19:13:06 +00:00
template <typename T>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr string_view nameof_type() noexcept {
2020-02-14 10:28:16 +00:00
using U = detail::identity<detail::remove_cvref_t<T>>;
2024-10-19 23:02:24 +00:00
static_assert(detail::nameof_type_supported<U>::value,
"nameof::nameof_type unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2024-09-19 10:52:06 +00:00
return detail::type_name_v<U>;
2019-08-25 12:32:05 +00:00
}
2020-12-29 18:45:54 +00:00
// Obtains full name of type, with reference and cv-qualifiers.
2019-08-25 12:32:05 +00:00
template <typename T>
2020-12-29 18:45:54 +00:00
[[nodiscard]] constexpr string_view nameof_full_type() noexcept {
2020-02-14 10:28:16 +00:00
using U = detail::identity<T>;
2024-10-19 23:02:24 +00:00
static_assert(detail::nameof_type_supported<U>::value,
"nameof::nameof_type unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2024-09-19 10:52:06 +00:00
return detail::type_name_v<U>;
2018-08-26 20:30:16 +00:00
}
2018-08-02 14:51:44 +00:00
2020-12-29 18:45:54 +00:00
// Obtains short name of type.
2024-09-19 10:52:06 +00:00
template <typename T, detail::enable_if_has_short_name_t<T, int> = 0>
[[nodiscard]] constexpr auto nameof_short_type() noexcept {
2020-09-07 17:35:21 +00:00
using U = detail::identity<detail::remove_cvref_t<T>>;
2024-10-19 23:02:24 +00:00
static_assert(detail::nameof_type_supported<U>::value,
"nameof::nameof_type unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2024-09-19 10:52:06 +00:00
static_assert(!std::is_array_v<T> && !std::is_pointer_v<T>, "nameof::nameof_member requires non array and non pointer type.");
2020-12-29 18:45:54 +00:00
constexpr string_view name = detail::pretty_name(detail::type_name_v<U>);
2022-08-14 11:54:27 +00:00
static_assert(!name.empty(), "Type does not have a short name.");
2024-09-19 10:52:06 +00:00
return cstring<name.size()>{name};
2020-09-07 17:35:21 +00:00
}
2021-04-02 21:06:56 +00:00
// Obtains name of member.
2024-09-19 10:52:06 +00:00
template <auto V, std::enable_if_t<std::is_member_pointer_v<decltype(V)>, int> = 0>
[[nodiscard]] constexpr auto nameof_member() noexcept {
using U = decltype(V);
static_assert(std::is_member_pointer_v<U>, "nameof::nameof_member requires member pointer type.");
2024-10-19 23:02:24 +00:00
static_assert(detail::nameof_member_supported<U>::value,
"nameof::nameof_member unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2024-09-19 10:52:06 +00:00
return detail::member_name_v<V>;
2021-04-02 21:06:56 +00:00
}
2023-03-17 17:39:30 +00:00
// Obtains name of a function, a global or class static variable.
2024-09-19 10:52:06 +00:00
template <auto V, std::enable_if_t<std::is_pointer_v<decltype(V)>, int> = 0>
[[nodiscard]] constexpr auto nameof_pointer() noexcept {
using U = decltype(V);
static_assert(std::is_pointer_v<U>, "nameof::nameof_pointer requires pointer type.");
2024-10-19 23:02:24 +00:00
static_assert(detail::nameof_pointer_supported<U>::value,
"nameof::nameof_pointer unsupported compiler (https://github.com/Neargye/nameof#compiler-compatibility).");
2024-09-19 10:52:06 +00:00
return detail::pointer_name_v<V>;
2023-03-17 17:39:30 +00:00
}
2024-10-19 23:02:24 +00:00
NAMEOF_EXPORT_END
2022-07-26 14:17:36 +00:00
2024-10-19 23:02:24 +00:00
} // namespace nameof
2023-03-17 17:39:30 +00:00
2020-06-18 10:34:22 +00:00
#if defined(__clang__)
2024-10-19 23:02:24 +00:00
#pragma clang diagnostic pop
2020-06-18 10:34:22 +00:00
#elif defined(__GNUC__)
2024-10-19 23:02:24 +00:00
#pragma GCC diagnostic pop
2020-06-18 10:34:22 +00:00
#elif defined(_MSC_VER)
2024-10-19 23:02:24 +00:00
#pragma warning(pop)
2019-12-13 15:31:55 +00:00
#endif
2024-10-19 23:02:24 +00:00
#endif // NEARGYE_NAMEOF_HPP