core: fix dynamic variable updates with special categories

This commit is contained in:
Vaxry 2024-02-19 14:19:01 +00:00
parent 11d5ccda07
commit bf5c561905
4 changed files with 51 additions and 20 deletions

View File

@ -276,6 +276,15 @@ CParseResult CConfig::configSetValueSafe(const std::string& command, const std::
if (VALUEIT == impl->values.end()) {
// it might be in a special category
bool found = false;
if (impl->currentSpecialCategory && valueName.starts_with(impl->currentSpecialCategory->name)) {
VALUEIT = impl->currentSpecialCategory->values.find(valueName.substr(impl->currentSpecialCategory->name.length() + 1));
if (VALUEIT != impl->currentSpecialCategory->values.end())
found = true;
}
if (!found) {
for (auto& sc : impl->specialCategories) {
if (!valueName.starts_with(sc->name))
continue;
@ -284,6 +293,7 @@ CParseResult CConfig::configSetValueSafe(const std::string& command, const std::
continue;
VALUEIT = sc->values.find(valueName.substr(sc->name.length() + 1));
impl->currentSpecialCategory = sc.get();
if (VALUEIT != sc->values.end())
found = true;
@ -292,6 +302,7 @@ CParseResult CConfig::configSetValueSafe(const std::string& command, const std::
break;
}
}
if (!found) {
// could be a dynamic category that doesnt exist yet
@ -313,6 +324,7 @@ CParseResult CConfig::configSetValueSafe(const std::string& command, const std::
applyDefaultsToCat(*PCAT);
VALUEIT = PCAT->values.find(valueName.substr(sc->name.length() + 1));
impl->currentSpecialCategory = PCAT;
if (VALUEIT != PCAT->values.end())
found = true;
@ -421,8 +433,12 @@ CParseResult CConfig::parseVariable(const std::string& lhs, const std::string& r
if (dynamic) {
for (auto& l : IT->linesContainingVar) {
parseLine(l, true);
impl->categories = l.categories;
impl->currentSpecialCategory = l.specialCategory;
parseLine(l.line, true);
}
impl->categories = {};
}
CParseResult result;
@ -492,7 +508,7 @@ CParseResult CConfig::parseLine(std::string line, bool dynamic) {
if (RHSIT == std::string::npos && LHSIT == std::string::npos)
continue;
else
var.linesContainingVar.push_back(line);
var.linesContainingVar.push_back({line, impl->categories, impl->currentSpecialCategory});
anyMatch = true;
}
@ -538,6 +554,7 @@ CParseResult CConfig::parseLine(std::string line, bool dynamic) {
}
impl->currentSpecialKey = "";
impl->currentSpecialCategory = nullptr;
impl->categories.pop_back();
} else {
// open a category.

View File

@ -13,7 +13,14 @@ struct SHandler {
struct SVariable {
std::string name = "";
std::string value = "";
std::vector<std::string> linesContainingVar; // for dynamic updates
struct SVarLine {
std::string line;
std::vector<std::string> categories;
SSpecialCategory* specialCategory = nullptr; // if applicable
};
std::vector<SVarLine> linesContainingVar; // for dynamic updates
};
// remember to also edit CConfigValue if editing
@ -72,6 +79,7 @@ class CConfigImpl {
std::vector<std::string> categories;
std::string currentSpecialKey = "";
SSpecialCategory* currentSpecialCategory = nullptr; // if applicable
std::string parseError = "";

View File

@ -31,9 +31,11 @@ testCategory {
}
}
$SPECIALVAL1 = 1
special {
key = a
value = 1
value = $SPECIALVAL1
}
special {

View File

@ -191,6 +191,10 @@ int main(int argc, char** argv, char** envp) {
EXPECT(std::any_cast<int64_t>(config.getSpecialConfigValue("specialGeneric:one", "value")), 1);
EXPECT(std::any_cast<int64_t>(config.getSpecialConfigValue("specialGeneric:two", "value")), 2);
// test dynamic special variable
EXPECT(config.parseDynamic("$SPECIALVAL1 = 2").error, false);
EXPECT(std::any_cast<int64_t>(config.getSpecialConfigValue("special", "value", "a")), (Hyprlang::INT)2);
// test copying
EXPECT(std::any_cast<int64_t>(config.getSpecialConfigValue("specialGeneric:one", "copyTest")), 2);