Waybar/include/util/enum.hpp

33 lines
871 B
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>
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
2023-09-09 17:02:56 +00:00
std::string uppercaseStr = str;
std::transform(uppercaseStr.begin(), uppercaseStr.end(), uppercaseStr.begin(),
[](unsigned char c) { return std::toupper(c); });
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