-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathHyprloadConfig.cpp
86 lines (73 loc) · 3.13 KB
/
HyprloadConfig.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include "util.hpp"
#include "HyprloadConfig.hpp"
#include "Hyprload.hpp"
#include "HyprloadPlugin.hpp"
#include "toml/toml.hpp"
#include <cstddef>
#include <hyprland/src/config/ConfigManager.hpp>
namespace hyprload::config {
std::filesystem::path getConfigPath() {
static SConfigValue* hyprloadConfig = HyprlandAPI::getConfigValue(PHANDLE, c_pluginConfig);
return std::filesystem::path(hyprloadConfig->strValue);
}
HyprloadConfig::HyprloadConfig() {
try {
m_pConfig = std::make_unique<toml::table>(toml::parse_file(getConfigPath().u8string()));
} catch (const std::exception& e) {
const std::string error = e.what();
hyprload::error("Failed to parse config file: " + error);
return;
}
if (m_pConfig->contains("plugins") && m_pConfig->get("plugins")->is_array()) {
m_pConfig->get("plugins")->as_array()->for_each(
[&plugins = m_vPluginsWanted](const toml::node& value) {
if (value.is_string()) {
plugins.emplace_back(value.as_string()->get());
} else if (value.is_table()) {
try {
plugins.emplace_back(*value.as_table());
} catch (const std::exception& e) {
const std::string error = e.what();
hyprload::error("Failed to parse plugin: " + error);
}
} else {
hyprload::error("Plugin must be a string or table");
}
});
}
}
void HyprloadConfig::reloadConfig() {
m_pConfig = nullptr;
m_vPluginsWanted.clear();
try {
m_pConfig = std::make_unique<toml::table>(toml::parse_file(getConfigPath().u8string()));
} catch (const std::exception& e) {
const std::string error = e.what();
hyprload::error("Failed to parse config file: " + error);
return;
}
if (m_pConfig->contains("plugins") && m_pConfig->get("plugins")->is_array()) {
m_pConfig->get("plugins")->as_array()->for_each(
[&plugins = m_vPluginsWanted](const toml::node& value) {
if (value.is_string()) {
plugins.emplace_back(value.as_string()->get());
} else if (value.is_table()) {
try {
plugins.emplace_back(*value.as_table());
} catch (const std::exception& e) {
const std::string error = e.what();
hyprload::error("Failed to parse plugin: " + error);
}
} else {
hyprload::error("Plugin must be a string or table");
}
});
}
}
const toml::table& HyprloadConfig::getConfig() const {
return *m_pConfig;
}
const std::vector<hyprload::plugin::PluginRequirement>& HyprloadConfig::getPlugins() const {
return m_vPluginsWanted;
}
}