305 lines
8.9 KiB
C++
305 lines
8.9 KiB
C++
#pragma once
|
|
|
|
#include <magic_enum/magic_enum.hpp>
|
|
#include <QString>
|
|
#include <QStringView>
|
|
|
|
#include <concepts>
|
|
|
|
namespace chatterino::qmagicenum::detail {
|
|
|
|
template <typename T, typename U>
|
|
concept DecaysTo = std::same_as<std::decay_t<T>, U>;
|
|
|
|
template <typename T>
|
|
concept IsEnum = std::is_enum_v<T>;
|
|
|
|
template <typename BinaryPredicate>
|
|
consteval bool isDefaultPredicate() noexcept
|
|
{
|
|
return std::is_same_v<std::decay_t<BinaryPredicate>,
|
|
std::equal_to<QChar>> ||
|
|
std::is_same_v<std::decay_t<BinaryPredicate>, std::equal_to<>>;
|
|
}
|
|
|
|
template <typename BinaryPredicate>
|
|
consteval bool isNothrowInvocable()
|
|
{
|
|
return isDefaultPredicate<BinaryPredicate>() ||
|
|
std::is_nothrow_invocable_r_v<bool, BinaryPredicate, QChar, QChar>;
|
|
}
|
|
|
|
template <std::size_t N>
|
|
consteval QStringView fromArray(const std::array<char16_t, N> &arr)
|
|
{
|
|
return QStringView{arr.data(), static_cast<QStringView::size_type>(N - 1)};
|
|
}
|
|
|
|
// Only the latin1 subset may be used right now, since it's easily convertible
|
|
template <std::size_t N>
|
|
consteval bool isLatin1(std::string_view maybe)
|
|
{
|
|
for (std::size_t i = 0; i < N; i++)
|
|
{
|
|
if (maybe[i] < 0x20 || maybe[i] > 0x7e)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
template <typename BinaryPredicate>
|
|
constexpr bool eq(
|
|
QStringView a, QStringView b,
|
|
[[maybe_unused]] BinaryPredicate &&
|
|
p) noexcept(magic_enum::detail::is_nothrow_invocable<BinaryPredicate>())
|
|
{
|
|
// Note: QStringView::operator== isn't constexpr
|
|
if (a.size() != b.size())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
for (QStringView::size_type i = 0; i < a.size(); i++)
|
|
{
|
|
if (!p(a[i], b[i]))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
template <typename C, typename E, E V>
|
|
consteval auto enumNameStorage()
|
|
{
|
|
constexpr auto utf8 = magic_enum::enum_name<V>();
|
|
|
|
static_assert(isLatin1<utf8.size()>(utf8),
|
|
"Can't convert non-latin1 UTF8 to UTF16");
|
|
|
|
std::array<C, utf8.size() + 1> storage;
|
|
for (std::size_t i = 0; i < utf8.size(); i++)
|
|
{
|
|
storage[i] = static_cast<C>(utf8[i]);
|
|
}
|
|
storage[utf8.size()] = 0;
|
|
return storage;
|
|
}
|
|
|
|
/// This contains a std::array<char16_t> for each enum value (V) with the
|
|
/// corresponding name.
|
|
template <typename E, E V>
|
|
inline constexpr auto ENUM_NAME_STORAGE = enumNameStorage<char16_t, E, V>();
|
|
|
|
template <typename E, std::size_t... I>
|
|
consteval auto namesStorage(std::index_sequence<I...> /*unused*/)
|
|
{
|
|
return std::array<QStringView, sizeof...(I)>{{detail::fromArray(
|
|
ENUM_NAME_STORAGE<E, magic_enum::enum_values<E>()[I]>)...}};
|
|
}
|
|
|
|
/// This contains a std::array<QStringView> for each enum (E).
|
|
template <typename E>
|
|
inline constexpr auto NAMES_STORAGE =
|
|
namesStorage<E>(std::make_index_sequence<magic_enum::enum_count<E>()>{});
|
|
|
|
template <typename Op = std::equal_to<>>
|
|
class CaseInsensitive
|
|
{
|
|
static constexpr QChar toLower(QChar c) noexcept
|
|
{
|
|
return (c >= u'A' && c <= u'Z')
|
|
? QChar(c.unicode() + static_cast<char16_t>(u'a' - u'A'))
|
|
: c;
|
|
}
|
|
|
|
public:
|
|
template <DecaysTo<QChar> L, DecaysTo<QChar> R>
|
|
constexpr bool operator()(L lhs, R rhs) const noexcept
|
|
{
|
|
return Op{}(toLower(lhs), toLower(rhs));
|
|
}
|
|
};
|
|
|
|
/// @brief Gets a static QString from @a view.
|
|
///
|
|
/// @pre @a view must be a static string view (i.e. it must be valid throughout
|
|
/// the entire duration of the program).
|
|
///
|
|
/// @param view The view to turn into a static string
|
|
/// @returns Qt6: A static string (never gets freed), Qt5: regular string
|
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
[[nodiscard]] inline QString staticString(QStringView view) noexcept
|
|
{
|
|
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-const-cast)
|
|
return QString(QStringPrivate(nullptr, const_cast<char16_t *>(view.utf16()),
|
|
view.size()));
|
|
}
|
|
#else
|
|
[[nodiscard]] inline QString staticString(QStringView view)
|
|
{
|
|
return view.toString();
|
|
}
|
|
#endif
|
|
|
|
} // namespace chatterino::qmagicenum::detail
|
|
|
|
namespace chatterino::qmagicenum {
|
|
|
|
/// @brief Get the name of an enum value
|
|
///
|
|
/// This version is much lighter on the compile times and is not restricted to the enum_range limitation.
|
|
///
|
|
/// @tparam V The enum value
|
|
/// @returns The name as a string view
|
|
template <detail::IsEnum auto V>
|
|
[[nodiscard]] consteval QStringView enumName() noexcept
|
|
{
|
|
return QStringView{
|
|
detail::fromArray(detail::ENUM_NAME_STORAGE<decltype(V), V>)};
|
|
}
|
|
|
|
/// @brief Get the name of an enum value
|
|
///
|
|
/// @param value The enum value
|
|
/// @returns The name as a string view. If @a value does not have name or the
|
|
/// value is out of range an empty string is returned.
|
|
template <detail::IsEnum E>
|
|
[[nodiscard]] constexpr QStringView enumName(E value) noexcept
|
|
{
|
|
using D = std::decay_t<E>;
|
|
|
|
if (const auto i = magic_enum::enum_index<D>(value))
|
|
{
|
|
return detail::NAMES_STORAGE<D>[*i];
|
|
}
|
|
return {};
|
|
}
|
|
|
|
/// @brief Get the name of an enum value
|
|
///
|
|
/// This version is much lighter on the compile times and is not restricted to
|
|
/// the enum_range limitation.
|
|
///
|
|
/// @tparam V The enum value
|
|
/// @returns The name as a string. The returned string is static.
|
|
template <detail::IsEnum auto V>
|
|
[[nodiscard]] inline QString enumNameString() noexcept
|
|
{
|
|
return detail::staticString(enumName<V>());
|
|
}
|
|
|
|
/// @brief Get the name of an enum value
|
|
///
|
|
/// This version is much lighter on the compile times and is not restricted to
|
|
/// the enum_range limitation.
|
|
///
|
|
/// @tparam V The enum value
|
|
/// @returns The name as a string. If @a value does not have name or the
|
|
/// value is out of range an empty string is returned.
|
|
/// The returned string is static.
|
|
template <detail::IsEnum E>
|
|
[[nodiscard]] inline QString enumNameString(E value) noexcept
|
|
{
|
|
using D = std::decay_t<E>;
|
|
|
|
return detail::staticString(enumName<D>(value));
|
|
}
|
|
|
|
/// @brief Gets the enum value from a name
|
|
///
|
|
/// @tparam E The enum type to parse the @a name as
|
|
/// @param name The name of the enum value to parse
|
|
/// @param p A predicate to compare characters of a string
|
|
/// (defaults to std::equal_to)
|
|
/// @returns A `std::optional` of the parsed value. If no value was parsed,
|
|
/// `std::nullopt` is returned.
|
|
template <detail::IsEnum E, typename BinaryPredicate = std::equal_to<>>
|
|
[[nodiscard]] constexpr std::optional<std::decay_t<E>>
|
|
enumCast(QStringView name, BinaryPredicate p = {}) noexcept(
|
|
detail::isNothrowInvocable<BinaryPredicate>())
|
|
requires std::is_invocable_r_v<bool, BinaryPredicate, QChar, QChar>
|
|
{
|
|
using D = std::decay_t<E>;
|
|
|
|
if constexpr (magic_enum::enum_count<D>() == 0)
|
|
{
|
|
static_cast<void>(name);
|
|
return std::nullopt; // Empty enum.
|
|
}
|
|
|
|
for (std::size_t i = 0; i < magic_enum::enum_count<D>(); i++)
|
|
{
|
|
if (detail::eq(name, detail::NAMES_STORAGE<D>[i], p))
|
|
{
|
|
return magic_enum::enum_value<D>(i);
|
|
}
|
|
}
|
|
return std::nullopt; // Invalid value or out of range.
|
|
}
|
|
|
|
/// @brief Constructs a name from the @a flags
|
|
///
|
|
/// @param flags The combined flags to construct the name from
|
|
/// @param sep A separator between each flag (defaults to u'|')
|
|
/// @returns A string containing all names separated by @a sep. If any flag in
|
|
/// @a flags is out of rage or does not have a name, an empty string
|
|
/// is returned.
|
|
template <detail::IsEnum E>
|
|
[[nodiscard]] inline QString enumFlagsName(E flags, char16_t sep = u'|')
|
|
{
|
|
using D = std::decay_t<E>;
|
|
using U = std::underlying_type_t<D>;
|
|
static_assert(magic_enum::detail::subtype_v<E> ==
|
|
magic_enum::detail::enum_subtype::flags,
|
|
"enumFlagsName used for non-flags enum");
|
|
|
|
QString name;
|
|
auto checkValue = U{0};
|
|
for (std::size_t i = 0; i < magic_enum::enum_count<D>(); ++i)
|
|
{
|
|
const auto v = static_cast<U>(magic_enum::enum_value<D>(i));
|
|
if ((static_cast<U>(flags) & v) != 0)
|
|
{
|
|
const auto n = detail::NAMES_STORAGE<D>[i];
|
|
if (!n.empty())
|
|
{
|
|
checkValue |= v;
|
|
if (!name.isEmpty())
|
|
{
|
|
name.append(sep);
|
|
}
|
|
name.append(n);
|
|
}
|
|
else
|
|
{
|
|
return {}; // Value out of range.
|
|
}
|
|
}
|
|
}
|
|
|
|
if (checkValue != 0 && checkValue == static_cast<U>(flags))
|
|
{
|
|
return name;
|
|
}
|
|
return {}; // Invalid value or out of range.
|
|
}
|
|
|
|
/// @brief Get the names of all values from @a E.
|
|
///
|
|
/// @tparam E The enum type
|
|
/// @returns A `std::array` of all names (`QStringView`s)
|
|
template <detail::IsEnum E>
|
|
[[nodiscard]] constexpr auto enumNames() noexcept
|
|
{
|
|
return detail::NAMES_STORAGE<std::decay_t<E>>;
|
|
}
|
|
|
|
/// Allows you to write qmagicenum::enumCast<foo>("bar", qmagicenum::CASE_INSENSITIVE)
|
|
inline constexpr auto CASE_INSENSITIVE = detail::CaseInsensitive<>{};
|
|
|
|
} // namespace chatterino::qmagicenum
|