Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/base/StarConfiguration.hpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2023-06-20 14:33:09 +1000
committerKae <80987908+Novaenia@users.noreply.github.com>2023-06-20 14:33:09 +1000
commit6352e8e3196f78388b6c771073f9e03eaa612673 (patch)
treee23772f79a7fbc41bc9108951e9e136857484bf4 /source/base/StarConfiguration.hpp
parent6741a057e5639280d85d0f88ba26f000baa58f61 (diff)
everything everywhere
all at once
Diffstat (limited to 'source/base/StarConfiguration.hpp')
-rw-r--r--source/base/StarConfiguration.hpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/source/base/StarConfiguration.hpp b/source/base/StarConfiguration.hpp
new file mode 100644
index 0000000..53e0e7b
--- /dev/null
+++ b/source/base/StarConfiguration.hpp
@@ -0,0 +1,39 @@
+#ifndef STAR_CONFIGURATION_HPP
+#define STAR_CONFIGURATION_HPP
+
+#include "StarJson.hpp"
+#include "StarThread.hpp"
+#include "StarVersion.hpp"
+
+namespace Star {
+
+STAR_CLASS(Configuration);
+
+STAR_EXCEPTION(ConfigurationException, StarException);
+
+class Configuration {
+public:
+ Configuration(Json defaultConfiguration, Json currentConfiguration);
+
+ Json defaultConfiguration() const;
+ Json currentConfiguration() const;
+
+ Json get(String const& key) const;
+ Json getPath(String const& path) const;
+
+ Json getDefault(String const& key) const;
+ Json getDefaultPath(String const& path) const;
+
+ void set(String const& key, Json const& value);
+ void setPath(String const& path, Json const& value);
+
+private:
+ mutable Mutex m_mutex;
+
+ Json m_defaultConfig;
+ Json m_currentConfig;
+};
+
+}
+
+#endif