Waybar/include/util/enum.hpp

39 lines
1.1 KiB
C++
Raw Normal View History

2023-09-09 14:32:55 +00:00
#pragma once
#include <cctype>
2023-09-09 14:32:55 +00:00
#include <iostream>
#include <map>
#include <stdexcept>
2023-09-09 14:32:55 +00:00
#include <string>
#include "util/string.hpp"
2023-09-09 14:32:55 +00:00
namespace waybar::util {
template <typename EnumType>
2023-09-09 14:32:55 +00:00
struct EnumParser {
EnumParser() {}
2023-09-09 17:02:56 +00:00
EnumType parseStringToEnum(const std::string& str,
const std::map<std::string, EnumType>& enumMap) {
// Convert the input string to uppercase
std::string uppercaseStr = capitalize(str);
// Capitalize the map keys before searching
std::map<std::string, EnumType> capitalizedEnumMap;
std::transform(
enumMap.begin(), enumMap.end(), std::inserter(capitalizedEnumMap, capitalizedEnumMap.end()),
[this](const auto& pair) { return std::make_pair(capitalize(pair.first), pair.second); });
2023-09-09 17:02:56 +00:00
// Return enum match of string
auto it = enumMap.find(uppercaseStr);
2023-09-09 17:02:56 +00:00
if (it != enumMap.end()) return it->second;
// Throw error if it doesnt return
throw std::invalid_argument("Invalid string representation for enum");
2023-09-09 14:32:55 +00:00
}
~EnumParser() = default;
};
} // namespace waybar::util