pollymc/api/logic/settings/INIFile.cpp

152 lines
2.8 KiB
C++
Raw Normal View History

2018-02-11 05:10:01 +05:30
/* Copyright 2013-2018 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)
{
QString out;
QChar prev = 0;
for(auto c: orig)
{
if(prev == '\\')
{
if(c == 'n')
out += '\n';
else if (c == 't')
out += '\t';
else
out += c;
prev = 0;
}
else
{
if(c == '\\')
{
prev = c;
continue;
}
out += c;
prev = 0;
}
}
return out;
}
QString INIFile::escape(QString orig)
{
QString out;
for(auto c: orig)
{
if(c == '\n')
out += "\\n";
else if (c == '\t')
out += "\\t";
else if(c == '\\')
out += "\\\\";
else
out += c;
}
return out;
}
2013-01-15 05:12:38 +05:30
bool INIFile::saveFile(QString fileName)
{
QByteArray outArray;
2013-01-15 05:12:38 +05:30
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');
2013-01-15 05:12:38 +05:30
}
2015-06-04 00:40:28 +05:30
try
{
2015-06-04 00:40:28 +05:30
FS::write(fileName, outArray);
}
catch (const Exception &e)
{
2015-06-04 00:40:28 +05:30
qCritical() << e.what();
return false;
}
2015-06-04 00:40:28 +05:30
2013-01-15 05:12:38 +05:30
return true;
}
2013-01-15 05:12:38 +05:30
bool INIFile::loadFile(QString fileName)
{
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)
{
QTextStream in(file);
in.setCodec("UTF-8");
2013-01-15 05:12:38 +05:30
QStringList lines = in.readAll().split('\n');
for (int i = 0; i < lines.count(); i++)
{
QString &lineRaw = lines[i];
2013-01-15 05:12:38 +05:30
// Ignore comments.
QString line = lineRaw.left(lineRaw.indexOf('#')).trimmed();
int eqPos = line.indexOf('=');
if (eqPos == -1)
continue;
QString key = line.left(eqPos).trimmed();
QString valueStr = line.right(line.length() - eqPos - 1).trimmed();
valueStr = unescape(valueStr);
QVariant value(valueStr);
this->operator[](key) = value;
2013-01-15 05:12:38 +05:30
}
2013-01-15 05:12:38 +05:30
return true;
}
QVariant INIFile::get(QString key, QVariant def) const
{
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)
{
this->operator[](key) = val;
2013-01-15 05:12:38 +05:30
}