1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* Copyright (c) 2022, Ali Mohammad Pur <mpfard@serenityos.org>
* Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/DistinctNumeric.h>
namespace AK {
template<typename T>
struct ArbitrarySizedEnum : public T {
using T::T;
consteval ArbitrarySizedEnum(T v)
: T(v)
{
}
constexpr ArbitrarySizedEnum(T v, Badge<ArbitrarySizedEnum<T>>)
: T(v)
{
}
template<Integral X>
[[nodiscard]] consteval ArbitrarySizedEnum<T> operator<<(X other) const
{
return T(this->value() << other);
}
template<Integral X>
constexpr ArbitrarySizedEnum<T>& operator<<=(X other)
{
this->value() <<= other;
return *this;
}
template<Integral X>
[[nodiscard]] consteval ArbitrarySizedEnum<T> operator>>(X other) const
{
return T(this->value() >> other);
}
template<Integral X>
constexpr ArbitrarySizedEnum<T>& operator>>=(X other)
{
this->value() >>= other;
return *this;
}
template<Integral X>
[[nodiscard]] constexpr bool operator==(X other) const
{
return this->value() == T(other);
}
[[nodiscard]] constexpr bool operator==(ArbitrarySizedEnum<T> const& other) const
{
return this->value() == other.value();
}
// NOTE: The following operators mirror AK_ENUM_BITWISE_OPERATORS.
[[nodiscard]] constexpr ArbitrarySizedEnum<T> operator|(ArbitrarySizedEnum<T> const& other) const
{
return { T(this->value() | other.value()), {} };
}
[[nodiscard]] constexpr ArbitrarySizedEnum<T> operator&(ArbitrarySizedEnum<T> const& other) const
{
return { T(this->value() & other.value()), {} };
}
[[nodiscard]] constexpr ArbitrarySizedEnum<T> operator^(ArbitrarySizedEnum<T> const& other) const
{
return { T(this->value() ^ other.value()), {} };
}
[[nodiscard]] constexpr ArbitrarySizedEnum<T> operator~() const
{
return { T(~this->value()), {} };
}
constexpr ArbitrarySizedEnum<T>& operator|=(ArbitrarySizedEnum<T> const& other)
{
this->value() |= other.value();
return *this;
}
constexpr ArbitrarySizedEnum<T>& operator&=(ArbitrarySizedEnum<T> const& other)
{
this->value() &= other.value();
return *this;
}
constexpr ArbitrarySizedEnum<T>& operator^=(ArbitrarySizedEnum<T> const& other)
{
this->value() ^= other.value();
return *this;
}
[[nodiscard]] constexpr bool has_flag(ArbitrarySizedEnum<T> const& mask) const
{
return (*this & mask) == mask;
}
[[nodiscard]] constexpr bool has_any_flag(ArbitrarySizedEnum<T> const& mask) const
{
return (*this & mask) != 0u;
}
};
#define AK_MAKE_ARBITRARY_SIZED_ENUM(EnumName, T, ...) \
namespace EnumName { \
using EnumName = ArbitrarySizedEnum<DistinctNumeric<T, struct __##EnumName##Tag, \
false, true, false, false, false, false>>; \
using Type = EnumName; \
using UnderlyingType = T; \
inline constexpr static EnumName __VA_ARGS__; \
}
}
using AK::ArbitrarySizedEnum;
|