mirror-chatterino2/src/singletons/Settings.cpp

94 lines
2 KiB
C++
Raw Normal View History

2018-06-28 19:46:45 +02:00
#include "singletons/Settings.hpp"
2018-06-26 14:09:39 +02:00
#include "Application.hpp"
#include "debug/Log.hpp"
2018-06-28 19:46:45 +02:00
#include "singletons/Paths.hpp"
#include "singletons/Resources.hpp"
2018-06-26 14:09:39 +02:00
#include "singletons/WindowManager.hpp"
2017-04-12 17:46:44 +02:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
2017-04-12 17:46:44 +02:00
std::vector<std::weak_ptr<pajlada::Settings::ISettingData>> _settings;
2018-08-02 14:23:27 +02:00
Settings *Settings::instance = nullptr;
2018-08-06 21:17:03 +02:00
void _actuallyRegisterSetting(
std::weak_ptr<pajlada::Settings::ISettingData> setting)
{
_settings.push_back(setting);
}
2018-08-02 14:23:27 +02:00
Settings::Settings(Paths &paths)
{
2018-08-02 14:23:27 +02:00
instance = this;
2018-08-02 14:23:27 +02:00
QString settingsPath = paths.settingsDirectory + "/settings.json";
2018-01-17 14:14:31 +01:00
2018-08-02 14:23:27 +02:00
pajlada::Settings::SettingManager::gLoad(qPrintable(settingsPath));
2017-04-12 17:46:44 +02:00
}
2018-08-02 14:23:27 +02:00
Settings &Settings::getInstance()
{
2018-08-02 14:23:27 +02:00
return *instance;
}
2018-06-28 19:51:07 +02:00
void Settings::saveSnapshot()
2017-04-12 17:46:44 +02:00
{
rapidjson::Document *d = new rapidjson::Document(rapidjson::kObjectType);
rapidjson::Document::AllocatorType &a = d->GetAllocator();
2017-04-12 17:46:44 +02:00
2018-10-21 13:43:02 +02:00
for (const auto &weakSetting : _settings)
{
auto setting = weakSetting.lock();
2018-10-21 13:43:02 +02:00
if (!setting)
{
continue;
}
rapidjson::Value key(setting->getPath().c_str(), a);
rapidjson::Value val = setting->marshalInto(*d);
d->AddMember(key.Move(), val.Move(), a);
2017-04-12 17:46:44 +02:00
}
2018-07-06 19:23:47 +02:00
this->snapshot_.reset(d);
2018-08-11 14:20:53 +02:00
log("hehe: {}", pajlada::Settings::SettingManager::stringify(*d));
}
2018-06-28 19:51:07 +02:00
void Settings::restoreSnapshot()
{
2018-10-21 13:43:02 +02:00
if (!this->snapshot_)
{
return;
}
2018-07-06 19:23:47 +02:00
const auto &snapshotObject = this->snapshot_->GetObject();
2018-10-21 13:43:02 +02:00
for (const auto &weakSetting : _settings)
{
auto setting = weakSetting.lock();
2018-10-21 13:43:02 +02:00
if (!setting)
{
2018-08-11 14:20:53 +02:00
log("Error stage 1 of loading");
continue;
}
const char *path = setting->getPath().c_str();
2018-10-21 13:43:02 +02:00
if (!snapshotObject.HasMember(path))
{
2018-08-11 14:20:53 +02:00
log("Error stage 2 of loading");
continue;
}
setting->unmarshalValue(snapshotObject[path]);
}
2017-04-12 17:46:44 +02:00
}
2018-06-28 19:51:07 +02:00
Settings *getSettings()
2018-01-17 14:14:31 +01:00
{
2018-06-28 19:51:07 +02:00
return &Settings::getInstance();
2018-01-17 14:14:31 +01:00
}
2018-01-23 21:33:49 +01:00
2017-04-14 17:52:22 +02:00
} // namespace chatterino