blob: 6e98feeb87d07cde8d180fba53fb6a323af9ccc6 [file] [log] [blame]
Chris Ye173871c2020-09-08 09:55:14 -07001/*
2 * Copyright (C) 2020 The Android Open Source Project
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
17#include <android-base/stringprintf.h>
18
19#include <array>
20#include <cstdint>
21#include <optional>
22#include <string>
23
chaviw3277faf2021-05-19 16:45:23 -050024#pragma once
Chris Ye173871c2020-09-08 09:55:14 -070025
26namespace android {
27
28namespace details {
29template <typename E, E V>
30constexpr std::optional<std::string_view> enum_value_name() {
31 // Should look something like (but all on one line):
32 // std::optional<std::string_view>
33 // android::details::enum_value_name()
34 // [E = android::test::TestEnums, V = android::test::TestEnums::ONE]
35 std::string_view view = __PRETTY_FUNCTION__;
36 size_t templateStart = view.rfind("[");
37 size_t templateEnd = view.rfind("]");
38 if (templateStart == std::string::npos || templateEnd == std::string::npos) {
39 return std::nullopt;
40 }
41
42 // Extract the template parameters without the enclosing braces.
43 // Example (cont'd): E = android::test::TestEnums, V = android::test::TestEnums::ONE
44 view = view.substr(templateStart + 1, templateEnd - templateStart - 1);
45 size_t valStart = view.rfind("V = ");
46 if (valStart == std::string::npos) {
47 return std::nullopt;
48 }
49
50 // Example (cont'd): V = android::test::TestEnums::ONE
51 view = view.substr(valStart);
Yabin Cuiecb965c2021-08-05 14:15:56 -070052 // Check invalid enum values with cast, like V = (android::test::TestEnums)8.
53 if (view.find('(') != std::string::npos) {
54 return std::nullopt;
55 }
Chris Ye173871c2020-09-08 09:55:14 -070056 size_t nameStart = view.rfind("::");
57 if (nameStart == std::string::npos) {
58 return std::nullopt;
59 }
60
61 // Chop off the initial "::"
62 nameStart += 2;
63 return view.substr(nameStart);
64}
65
66template <typename E, typename T, T... I>
67constexpr auto generate_enum_values(std::integer_sequence<T, I...> seq) {
68 constexpr size_t count = seq.size();
69
70 std::array<E, count> values{};
71 for (size_t i = 0, v = 0; v < count; ++i) {
72 values[v++] = static_cast<E>(T{0} + i);
73 }
74
75 return values;
76}
77
78template <typename E, std::size_t N>
79inline constexpr auto enum_values =
80 generate_enum_values<E>(std::make_integer_sequence<std::underlying_type_t<E>, N>{});
81
82template <typename E, std::size_t N, std::size_t... I>
83constexpr auto generate_enum_names(std::index_sequence<I...>) noexcept {
84 return std::array<std::optional<std::string_view>, sizeof...(I)>{
85 {enum_value_name<E, enum_values<E, N>[I]>()...}};
86}
87
88template <typename E, std::size_t N>
89inline constexpr auto enum_names = generate_enum_names<E, N>(std::make_index_sequence<N>{});
90
91} // namespace details
92
93class NamedEnum {
94public:
95 // By default allowed enum value range is 0 ~ 7.
96 template <typename E>
97 static constexpr size_t max = 8;
98
99 template <auto V>
100 static constexpr auto enum_name() {
101 using E = decltype(V);
102 return details::enum_value_name<E, V>();
103 }
104
105 template <typename E>
106 static constexpr std::optional<std::string_view> enum_name(E val) {
107 auto idx = static_cast<size_t>(val);
108 return idx < max<E> ? details::enum_names<E, max<E>>[idx] : std::nullopt;
109 }
110
111 // Helper function for parsing enum value to string.
112 // Example : enum class TestEnums { ZERO = 0x0 };
113 // NamedEnum::string(TestEnums::ZERO) returns string of "ZERO".
114 // Note the default maximum enum is 8, if the enum ID to be parsed if greater than 8 like 16,
115 // it should be declared to specialized the maximum enum by below:
116 // template <> constexpr size_t NamedEnum::max<TestEnums> = 16;
117 // If the enum class definition is sparse and contains enum values starting from a large value,
118 // Do not specialize it to a large number to avoid performance issues.
119 // The recommended maximum enum number to specialize is 64.
120 template <typename E>
Chris Ye749b8462020-11-15 14:14:36 -0800121 static const std::string string(E val, const char* fallbackFormat = "%02d") {
Chris Ye173871c2020-09-08 09:55:14 -0700122 std::string result;
123 std::optional<std::string_view> enumString = enum_name(val);
Bernardo Rufino53fc31e2020-11-03 11:01:07 +0000124 result += enumString ? enumString.value() : base::StringPrintf(fallbackFormat, val);
Chris Ye173871c2020-09-08 09:55:14 -0700125 return result;
126 }
127};
128
129} // namespace android