| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 1 | /* | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 2 | * Copyright 2020 The Android Open Source Project | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 17 | #pragma once | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 18 |  | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 19 | #include <ftl/enum.h> | 
|  | 20 | #include <ftl/string.h> | 
|  | 21 |  | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 22 | #include <cstdint> | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 23 | #include <iterator> | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 24 | #include <string> | 
|  | 25 | #include <type_traits> | 
|  | 26 |  | 
|  | 27 | #include "utils/BitSet.h" | 
|  | 28 |  | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 29 | // TODO(b/185536303): Align with FTL style and namespace. | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 30 |  | 
|  | 31 | namespace android { | 
|  | 32 |  | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 33 | /* A class for handling flags defined by an enum or enum class in a type-safe way. */ | 
| Michael Wright | 8759d67 | 2020-07-21 00:46:45 +0100 | [diff] [blame] | 34 | template <typename F> | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 35 | class Flags { | 
|  | 36 | // F must be an enum or its underlying type is undefined. Theoretically we could specialize this | 
|  | 37 | // further to avoid this restriction but in general we want to encourage the use of enums | 
|  | 38 | // anyways. | 
| Michael Wright | 8759d67 | 2020-07-21 00:46:45 +0100 | [diff] [blame] | 39 | static_assert(std::is_enum_v<F>, "Flags type must be an enum"); | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 40 | using U = std::underlying_type_t<F>; | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 41 |  | 
|  | 42 | public: | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 43 | constexpr Flags(F f) : mFlags(static_cast<U>(f)) {} | 
|  | 44 | constexpr Flags() : mFlags(0) {} | 
|  | 45 | constexpr Flags(const Flags<F>& f) : mFlags(f.mFlags) {} | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 46 |  | 
|  | 47 | // Provide a non-explicit construct for non-enum classes since they easily convert to their | 
|  | 48 | // underlying types (e.g. when used with bitwise operators). For enum classes, however, we | 
|  | 49 | // should force them to be explicitly constructed from their underlying types to make full use | 
|  | 50 | // of the type checker. | 
|  | 51 | template <typename T = U> | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 52 | constexpr Flags(T t, std::enable_if_t<!ftl::is_scoped_enum_v<F>, T>* = nullptr) : mFlags(t) {} | 
|  | 53 |  | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 54 | template <typename T = U> | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 55 | explicit constexpr Flags(T t, std::enable_if_t<ftl::is_scoped_enum_v<F>, T>* = nullptr) | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 56 | : mFlags(t) {} | 
|  | 57 |  | 
|  | 58 | class Iterator { | 
|  | 59 | // The type can't be larger than 64-bits otherwise it won't fit in BitSet64. | 
|  | 60 | static_assert(sizeof(U) <= sizeof(uint64_t)); | 
|  | 61 |  | 
|  | 62 | public: | 
|  | 63 | Iterator(Flags<F> flags) : mRemainingFlags(flags.mFlags) { (*this)++; } | 
|  | 64 | Iterator() : mRemainingFlags(0), mCurrFlag(static_cast<F>(0)) {} | 
|  | 65 |  | 
|  | 66 | // Pre-fix ++ | 
|  | 67 | Iterator& operator++() { | 
|  | 68 | if (mRemainingFlags.isEmpty()) { | 
|  | 69 | mCurrFlag = static_cast<F>(0); | 
|  | 70 | } else { | 
|  | 71 | uint64_t bit = mRemainingFlags.clearLastMarkedBit(); // counts from left | 
|  | 72 | const U flag = 1 << (64 - bit - 1); | 
|  | 73 | mCurrFlag = static_cast<F>(flag); | 
|  | 74 | } | 
|  | 75 | return *this; | 
|  | 76 | } | 
|  | 77 |  | 
|  | 78 | // Post-fix ++ | 
|  | 79 | Iterator operator++(int) { | 
|  | 80 | Iterator iter = *this; | 
|  | 81 | ++*this; | 
|  | 82 | return iter; | 
|  | 83 | } | 
|  | 84 |  | 
|  | 85 | bool operator==(Iterator other) const { | 
|  | 86 | return mCurrFlag == other.mCurrFlag && mRemainingFlags == other.mRemainingFlags; | 
|  | 87 | } | 
|  | 88 |  | 
|  | 89 | bool operator!=(Iterator other) const { return !(*this == other); } | 
|  | 90 |  | 
|  | 91 | F operator*() { return mCurrFlag; } | 
|  | 92 |  | 
|  | 93 | // iterator traits | 
|  | 94 |  | 
|  | 95 | // In the future we could make this a bidirectional const iterator instead of a forward | 
|  | 96 | // iterator but it doesn't seem worth the added complexity at this point. This could not, | 
|  | 97 | // however, be made a non-const iterator as assigning one flag to another is a non-sensical | 
|  | 98 | // operation. | 
|  | 99 | using iterator_category = std::input_iterator_tag; | 
|  | 100 | using value_type = F; | 
|  | 101 | // Per the C++ spec, because input iterators are not assignable the iterator's reference | 
|  | 102 | // type does not actually need to be a reference. In fact, making it a reference would imply | 
|  | 103 | // that modifying it would change the underlying Flags object, which is obviously wrong for | 
|  | 104 | // the same reason this can't be a non-const iterator. | 
|  | 105 | using reference = F; | 
|  | 106 | using difference_type = void; | 
|  | 107 | using pointer = void; | 
|  | 108 |  | 
|  | 109 | private: | 
|  | 110 | BitSet64 mRemainingFlags; | 
|  | 111 | F mCurrFlag; | 
|  | 112 | }; | 
|  | 113 |  | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 114 | /* | 
|  | 115 | * Tests whether the given flag is set. | 
|  | 116 | */ | 
|  | 117 | bool test(F flag) const { | 
|  | 118 | U f = static_cast<U>(flag); | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 119 | return (f & mFlags) == f; | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 120 | } | 
|  | 121 |  | 
|  | 122 | /* Tests whether any of the given flags are set */ | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 123 | bool any(Flags<F> f) { return (mFlags & f.mFlags) != 0; } | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 124 |  | 
|  | 125 | /* Tests whether all of the given flags are set */ | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 126 | bool all(Flags<F> f) { return (mFlags & f.mFlags) == f.mFlags; } | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 127 |  | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 128 | Flags<F> operator|(Flags<F> rhs) const { return static_cast<F>(mFlags | rhs.mFlags); } | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 129 | Flags<F>& operator|=(Flags<F> rhs) { | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 130 | mFlags = mFlags | rhs.mFlags; | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 131 | return *this; | 
|  | 132 | } | 
|  | 133 |  | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 134 | Flags<F> operator&(Flags<F> rhs) const { return static_cast<F>(mFlags & rhs.mFlags); } | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 135 | Flags<F>& operator&=(Flags<F> rhs) { | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 136 | mFlags = mFlags & rhs.mFlags; | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 137 | return *this; | 
|  | 138 | } | 
|  | 139 |  | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 140 | Flags<F> operator^(Flags<F> rhs) const { return static_cast<F>(mFlags ^ rhs.mFlags); } | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 141 | Flags<F>& operator^=(Flags<F> rhs) { | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 142 | mFlags = mFlags ^ rhs.mFlags; | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 143 | return *this; | 
|  | 144 | } | 
|  | 145 |  | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 146 | Flags<F> operator~() { return static_cast<F>(~mFlags); } | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 147 |  | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 148 | bool operator==(Flags<F> rhs) const { return mFlags == rhs.mFlags; } | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 149 | bool operator!=(Flags<F> rhs) const { return !operator==(rhs); } | 
|  | 150 |  | 
|  | 151 | Flags<F>& operator=(const Flags<F>& rhs) { | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 152 | mFlags = rhs.mFlags; | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 153 | return *this; | 
|  | 154 | } | 
|  | 155 |  | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 156 | Iterator begin() const { return Iterator(*this); } | 
|  | 157 |  | 
|  | 158 | Iterator end() const { return Iterator(); } | 
|  | 159 |  | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 160 | /* | 
|  | 161 | * Returns the stored set of flags. | 
|  | 162 | * | 
|  | 163 | * Note that this returns the underlying type rather than the base enum class. This is because | 
|  | 164 | * the value is no longer necessarily a strict member of the enum since the returned value could | 
|  | 165 | * be multiple enum variants OR'd together. | 
|  | 166 | */ | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 167 | U get() const { return mFlags; } | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 168 |  | 
| Michael Wright | 8759d67 | 2020-07-21 00:46:45 +0100 | [diff] [blame] | 169 | std::string string() const { | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 170 | std::string result; | 
|  | 171 | bool first = true; | 
|  | 172 | U unstringified = 0; | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 173 | for (const F f : *this) { | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 174 | if (const auto flagName = ftl::flag_name(f)) { | 
|  | 175 | appendFlag(result, flagName.value(), first); | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 176 | } else { | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 177 | unstringified |= static_cast<U>(f); | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 178 | } | 
|  | 179 | } | 
|  | 180 |  | 
|  | 181 | if (unstringified != 0) { | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 182 | constexpr auto radix = sizeof(U) == 1 ? ftl::Radix::kBin : ftl::Radix::kHex; | 
|  | 183 | appendFlag(result, ftl::to_string(unstringified, radix), first); | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 184 | } | 
|  | 185 |  | 
|  | 186 | if (first) { | 
|  | 187 | result += "0x0"; | 
|  | 188 | } | 
|  | 189 |  | 
|  | 190 | return result; | 
|  | 191 | } | 
|  | 192 |  | 
|  | 193 | private: | 
| Michael Wright | 75d9e66 | 2020-07-11 23:54:40 +0100 | [diff] [blame] | 194 | U mFlags; | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 195 |  | 
| Michael Wright | 8759d67 | 2020-07-21 00:46:45 +0100 | [diff] [blame] | 196 | static void appendFlag(std::string& str, const std::string_view& flag, bool& first) { | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 197 | if (first) { | 
|  | 198 | first = false; | 
|  | 199 | } else { | 
|  | 200 | str += " | "; | 
|  | 201 | } | 
|  | 202 | str += flag; | 
|  | 203 | } | 
|  | 204 | }; | 
|  | 205 |  | 
|  | 206 | // This namespace provides operator overloads for enum classes to make it easier to work with them | 
|  | 207 | // as flags. In order to use these, add them via a `using namespace` declaration. | 
|  | 208 | namespace flag_operators { | 
|  | 209 |  | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 210 | template <typename F, typename = std::enable_if_t<ftl::is_scoped_enum_v<F>>> | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 211 | inline Flags<F> operator~(F f) { | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 212 | return static_cast<F>(~ftl::enum_cast(f)); | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 213 | } | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 214 |  | 
|  | 215 | template <typename F, typename = std::enable_if_t<ftl::is_scoped_enum_v<F>>> | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 216 | Flags<F> operator|(F lhs, F rhs) { | 
| Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 217 | return static_cast<F>(ftl::enum_cast(lhs) | ftl::enum_cast(rhs)); | 
| Michael Wright | 44753b1 | 2020-07-08 13:48:11 +0100 | [diff] [blame] | 218 | } | 
|  | 219 |  | 
|  | 220 | } // namespace flag_operators | 
|  | 221 | } // namespace android |