2023-12-28 20:38:01 +01:00
|
|
|
#include "public.hpp"
|
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2023-12-28 23:25:43 +01:00
|
|
|
struct SHandler {
|
|
|
|
std::string name = "";
|
|
|
|
Hyprlang::SHandlerOptions options;
|
|
|
|
Hyprlang::PCONFIGHANDLERFUNC func = nullptr;
|
|
|
|
};
|
|
|
|
|
2023-12-29 11:40:08 +01:00
|
|
|
struct SVariable {
|
2023-12-29 11:48:55 +01:00
|
|
|
std::string name = "";
|
|
|
|
std::string value = "";
|
|
|
|
std::vector<std::string> linesContainingVar; // for dynamic updates
|
2023-12-29 11:40:08 +01:00
|
|
|
};
|
|
|
|
|
2023-12-29 13:26:21 +01:00
|
|
|
struct SSpecialCategoryDescriptor {
|
|
|
|
std::string name = "";
|
|
|
|
std::string key = "";
|
|
|
|
std::unordered_map<std::string, Hyprlang::CConfigValue> defaultValues;
|
|
|
|
bool dontErrorOnMissing = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SSpecialCategory {
|
|
|
|
SSpecialCategoryDescriptor* descriptor = nullptr;
|
|
|
|
std::string name = "";
|
|
|
|
std::string key = ""; // empty means no key
|
|
|
|
std::unordered_map<std::string, Hyprlang::CConfigValue> values;
|
|
|
|
bool isStatic = false;
|
|
|
|
|
|
|
|
void applyDefaults();
|
|
|
|
};
|
|
|
|
|
2023-12-28 20:38:01 +01:00
|
|
|
class CConfigImpl {
|
|
|
|
public:
|
2023-12-29 13:26:21 +01:00
|
|
|
std::string path = "";
|
2023-12-28 20:38:01 +01:00
|
|
|
|
2023-12-29 13:26:21 +01:00
|
|
|
std::unordered_map<std::string, Hyprlang::CConfigValue> values;
|
|
|
|
std::unordered_map<std::string, Hyprlang::CConfigValue> defaultValues;
|
|
|
|
std::vector<SHandler> handlers;
|
|
|
|
std::vector<SVariable> variables;
|
|
|
|
std::vector<SVariable> envVariables;
|
|
|
|
std::vector<std::unique_ptr<SSpecialCategory>> specialCategories;
|
|
|
|
std::vector<std::unique_ptr<SSpecialCategoryDescriptor>> specialCategoryDescriptors;
|
2023-12-28 20:38:01 +01:00
|
|
|
|
2023-12-29 13:26:21 +01:00
|
|
|
std::vector<std::string> categories;
|
|
|
|
std::string currentSpecialKey = "";
|
2023-12-28 20:38:01 +01:00
|
|
|
|
2023-12-29 13:26:21 +01:00
|
|
|
std::string parseError = "";
|
2023-12-28 20:38:01 +01:00
|
|
|
};
|