pollymc/api/logic/settings/INIFile.cpp

131 lines
3.1 KiB
C++
Raw Normal View History

2019-01-17 01:44:24 +05:30
/* Copyright 2013-2019 MultiMC Contributors
2013-01-15 05:12:38 +05:30
*
* 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-01-15 05:12:38 +05:30
* 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.
*/
2015-02-09 06:21:14 +05:30
#include "settings/INIFile.h"
2015-06-04 00:40:28 +05:30
#include <FileSystem.h>
2013-01-15 05:12:38 +05:30
#include <QFile>
#include <QTextStream>
#include <QStringList>
#include <QSaveFile>
#include <QDebug>
2013-01-15 05:12:38 +05:30
INIFile::INIFile()
{
}
QString INIFile::unescape(QString orig)
{
return orig
.replace("\\#", "#")
.replace("\\t", "\t")
.replace("\\n", "\n")
.replace("\\\\", "\\");
}
QString INIFile::escape(QString orig)
{
return orig
.replace('\\', "\\\\")
.replace('\n', "\\n")
.replace('\t', "\\t")
.replace('#', "\\#");
}
2013-01-15 05:12:38 +05:30
bool INIFile::saveFile(QString fileName)
{
2018-07-15 18:21:05 +05:30
QByteArray outArray;
for (Iterator iter = begin(); iter != end(); iter++)
{
QString value = iter.value().toString();
value = escape(value);
outArray.append(iter.key().toUtf8());
outArray.append('=');
outArray.append(value.toUtf8());
outArray.append('\n');
}
try
{
FS::write(fileName, outArray);
}
catch (const Exception &e)
{
qCritical() << e.what();
return false;
}
return true;
2013-01-15 05:12:38 +05:30
}
2013-01-15 05:12:38 +05:30
bool INIFile::loadFile(QString fileName)
{
2018-07-15 18:21:05 +05:30
QFile file(fileName);
if (!file.open(QIODevice::ReadOnly))
return false;
bool success = loadFile(file.readAll());
file.close();
return success;
}
2015-06-04 00:41:03 +05:30
bool INIFile::loadFile(QByteArray file)
{
2018-07-15 18:21:05 +05:30
QTextStream in(file);
in.setCodec("UTF-8");
2018-07-15 18:21:05 +05:30
QStringList lines = in.readAll().split('\n');
for (int i = 0; i < lines.count(); i++)
{
QString &lineRaw = lines[i];
// Ignore comments.
int commentIndex = 0;
QString line = lineRaw;
// Search for comments until no more escaped # are available
while((commentIndex = line.indexOf('#', commentIndex + 1)) != -1) {
if(commentIndex > 0 && line.at(commentIndex - 1) == '\\') {
continue;
}
line = line.left(lineRaw.indexOf('#')).trimmed();
}
2018-07-15 18:21:05 +05:30
int eqPos = line.indexOf('=');
if (eqPos == -1)
continue;
QString key = line.left(eqPos).trimmed();
QString valueStr = line.right(line.length() - eqPos - 1).trimmed();
2018-07-15 18:21:05 +05:30
valueStr = unescape(valueStr);
2018-07-15 18:21:05 +05:30
QVariant value(valueStr);
this->operator[](key) = value;
}
2018-07-15 18:21:05 +05:30
return true;
2013-01-15 05:12:38 +05:30
}
QVariant INIFile::get(QString key, QVariant def) const
{
2018-07-15 18:21:05 +05:30
if (!this->contains(key))
return def;
else
return this->operator[](key);
2013-01-15 05:12:38 +05:30
}
void INIFile::set(QString key, QVariant val)
{
2018-07-15 18:21:05 +05:30
this->operator[](key) = val;
2013-01-15 05:12:38 +05:30
}