diff options
Diffstat (limited to 'source/base/StarConfiguration.hpp')
-rw-r--r-- | source/base/StarConfiguration.hpp | 39 |
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 |