Waybar/include/util/enum.hpp

34 lines
735 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() {}
EnumType sortStringToEnum(const std::string& str,
const std::map<std::string, EnumType>& enumMap) {
// Convert the input string to uppercase
std::string uppercaseStr;
for (char c : str) {
uppercaseStr += std::toupper(c);
}
auto it = enumMap.find(uppercaseStr);
2023-09-09 14:32:55 +00:00
if (it != enumMap.end()) {
return it->second;
} else {
throw std::invalid_argument("Invalid string representation for enum");
}
}
~EnumParser() = default;
};
} // namespace waybar::util