refactor: move capitalize string helper
parent
2fee12d930
commit
b8630968b2
|
@ -6,32 +6,24 @@
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
#include "util/string.hpp"
|
||||||
|
|
||||||
namespace waybar::util {
|
namespace waybar::util {
|
||||||
|
|
||||||
template <typename EnumType>
|
template <typename EnumType>
|
||||||
struct EnumParser {
|
struct EnumParser {
|
||||||
EnumParser() {}
|
EnumParser() {}
|
||||||
|
|
||||||
// Helper function to capitalize a string
|
|
||||||
std::string capitalizeString(const std::string& str) {
|
|
||||||
std::string result = str;
|
|
||||||
std::transform(result.begin(), result.end(), result.begin(),
|
|
||||||
[](unsigned char c) { return std::toupper(c); });
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
EnumType parseStringToEnum(const std::string& str,
|
EnumType parseStringToEnum(const std::string& str,
|
||||||
const std::map<std::string, EnumType>& enumMap) {
|
const std::map<std::string, EnumType>& enumMap) {
|
||||||
// Convert the input string to uppercase
|
// Convert the input string to uppercase
|
||||||
std::string uppercaseStr = capitalizeString(str);
|
std::string uppercaseStr = capitalize(str);
|
||||||
|
|
||||||
// Capitalize the map keys before searching
|
// Capitalize the map keys before searching
|
||||||
std::map<std::string, EnumType> capitalizedEnumMap;
|
std::map<std::string, EnumType> capitalizedEnumMap;
|
||||||
std::transform(enumMap.begin(), enumMap.end(),
|
std::transform(
|
||||||
std::inserter(capitalizedEnumMap, capitalizedEnumMap.end()),
|
enumMap.begin(), enumMap.end(), std::inserter(capitalizedEnumMap, capitalizedEnumMap.end()),
|
||||||
[this](const auto& pair) {
|
[this](const auto& pair) { return std::make_pair(capitalize(pair.first), pair.second); });
|
||||||
return std::make_pair(capitalizeString(pair.first), pair.second);
|
|
||||||
});
|
|
||||||
|
|
||||||
// Return enum match of string
|
// Return enum match of string
|
||||||
auto it = enumMap.find(uppercaseStr);
|
auto it = enumMap.find(uppercaseStr);
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
const std::string WHITESPACE = " \n\r\t\f\v";
|
const std::string WHITESPACE = " \n\r\t\f\v";
|
||||||
|
@ -15,3 +16,10 @@ inline std::string rtrim(const std::string& s) {
|
||||||
}
|
}
|
||||||
|
|
||||||
inline std::string trim(const std::string& s) { return rtrim(ltrim(s)); }
|
inline std::string trim(const std::string& s) { return rtrim(ltrim(s)); }
|
||||||
|
|
||||||
|
inline std::string capitalize(const std::string& str) {
|
||||||
|
std::string result = str;
|
||||||
|
std::transform(result.begin(), result.end(), result.begin(),
|
||||||
|
[](unsigned char c) { return std::toupper(c); });
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue