2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-02-25 22:36:27 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2013-02-25 22:36:27 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2014-07-01 00:48:09 +01:00
|
|
|
#include "INISettingsObject.h"
|
|
|
|
#include "Setting.h"
|
2013-02-25 22:36:27 +00:00
|
|
|
|
2022-10-18 15:00:28 +01:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QFile>
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
INISettingsObject::INISettingsObject(QStringList paths, QObject* parent) : SettingsObject(parent)
|
2022-10-18 15:00:28 +01:00
|
|
|
{
|
|
|
|
auto first_path = paths.constFirst();
|
2022-10-18 20:51:42 +01:00
|
|
|
for (auto path : paths) {
|
|
|
|
if (!QFile::exists(path))
|
|
|
|
continue;
|
2022-10-18 15:00:28 +01:00
|
|
|
|
2022-10-18 20:51:42 +01:00
|
|
|
if (path != first_path && QFile::exists(path)) {
|
|
|
|
// Copy the fallback to the preferred path.
|
|
|
|
QFile::copy(path, first_path);
|
|
|
|
qDebug() << "Copied settings from" << path << "to" << first_path;
|
|
|
|
break;
|
|
|
|
}
|
2022-10-18 15:00:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
m_filePath = first_path;
|
|
|
|
m_ini.loadFile(first_path);
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
INISettingsObject::INISettingsObject(QString path, QObject* parent) : SettingsObject(parent)
|
2013-02-25 22:36:27 +00:00
|
|
|
{
|
|
|
|
m_filePath = path;
|
|
|
|
m_ini.loadFile(path);
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void INISettingsObject::setFilePath(const QString& filePath)
|
2013-02-25 22:36:27 +00:00
|
|
|
{
|
|
|
|
m_filePath = filePath;
|
|
|
|
}
|
|
|
|
|
2014-03-09 07:43:08 +00:00
|
|
|
bool INISettingsObject::reload()
|
|
|
|
{
|
|
|
|
return m_ini.loadFile(m_filePath) && SettingsObject::reload();
|
|
|
|
}
|
|
|
|
|
2015-05-23 15:07:47 +01:00
|
|
|
void INISettingsObject::suspendSave()
|
|
|
|
{
|
|
|
|
m_suspendSave = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void INISettingsObject::resumeSave()
|
|
|
|
{
|
|
|
|
m_suspendSave = false;
|
2023-08-02 17:35:35 +01:00
|
|
|
if (m_doSave) {
|
2015-05-23 15:07:47 +01:00
|
|
|
m_ini.saveFile(m_filePath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void INISettingsObject::changeSetting(const Setting& setting, QVariant value)
|
2013-02-25 22:36:27 +00:00
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (contains(setting.id())) {
|
2014-01-01 14:08:40 +00:00
|
|
|
// valid value -> set the main config, remove all the sysnonyms
|
2023-08-02 17:35:35 +01:00
|
|
|
if (value.isValid()) {
|
2014-01-01 14:08:40 +00:00
|
|
|
auto list = setting.configKeys();
|
|
|
|
m_ini.set(list.takeFirst(), value);
|
2023-08-02 17:35:35 +01:00
|
|
|
for (auto iter : list)
|
2014-01-01 14:08:40 +00:00
|
|
|
m_ini.remove(iter);
|
|
|
|
}
|
|
|
|
// invalid -> remove all (just like resetSetting)
|
2023-08-02 17:35:35 +01:00
|
|
|
else {
|
|
|
|
for (auto iter : setting.configKeys())
|
2014-01-01 14:08:40 +00:00
|
|
|
m_ini.remove(iter);
|
|
|
|
}
|
2015-05-23 15:07:47 +01:00
|
|
|
doSave();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void INISettingsObject::doSave()
|
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (m_suspendSave) {
|
2015-05-23 15:07:47 +01:00
|
|
|
m_doSave = true;
|
2023-08-02 17:35:35 +01:00
|
|
|
} else {
|
2013-04-08 17:21:43 +01:00
|
|
|
m_ini.saveFile(m_filePath);
|
2013-02-25 22:36:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void INISettingsObject::resetSetting(const Setting& setting)
|
2013-07-15 23:30:32 +01:00
|
|
|
{
|
2014-01-01 14:08:40 +00:00
|
|
|
// if we have the setting, remove all the synonyms. ALL OF THEM
|
2023-08-02 17:35:35 +01:00
|
|
|
if (contains(setting.id())) {
|
|
|
|
for (auto iter : setting.configKeys())
|
2014-01-01 14:08:40 +00:00
|
|
|
m_ini.remove(iter);
|
2015-05-23 15:07:47 +01:00
|
|
|
doSave();
|
2013-07-15 23:30:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
QVariant INISettingsObject::retrieveValue(const Setting& setting)
|
2013-02-25 22:36:27 +00:00
|
|
|
{
|
2014-01-01 14:08:40 +00:00
|
|
|
// if we have the setting, return value of the first matching synonym
|
2023-08-02 17:35:35 +01:00
|
|
|
if (contains(setting.id())) {
|
|
|
|
for (auto iter : setting.configKeys()) {
|
|
|
|
if (m_ini.contains(iter))
|
2014-01-01 14:08:40 +00:00
|
|
|
return m_ini[iter];
|
|
|
|
}
|
2013-02-25 22:36:27 +00:00
|
|
|
}
|
2014-01-01 14:08:40 +00:00
|
|
|
return QVariant();
|
2013-02-25 22:36:27 +00:00
|
|
|
}
|