2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 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-11-04 07:23:05 +05:30
|
|
|
*
|
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.
|
|
|
|
*/
|
|
|
|
|
2014-07-01 05:18:09 +05:30
|
|
|
#include "logic/settings/INIFile.h"
|
2013-01-15 05:12:38 +05:30
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
#include <QTextStream>
|
|
|
|
#include <QStringList>
|
2015-02-21 04:51:19 +05:30
|
|
|
#include <QSaveFile>
|
|
|
|
#include <QDebug>
|
2013-01-15 05:12:38 +05:30
|
|
|
|
|
|
|
INIFile::INIFile()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-08-26 02:18:41 +05:30
|
|
|
QString INIFile::unescape(QString orig)
|
|
|
|
{
|
2014-03-30 01:46:54 +05:30
|
|
|
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;
|
2013-08-26 02:18:41 +05:30
|
|
|
}
|
2014-03-30 01:46:54 +05:30
|
|
|
|
2013-08-26 02:18:41 +05:30
|
|
|
QString INIFile::escape(QString orig)
|
|
|
|
{
|
2014-03-30 01:46:54 +05:30
|
|
|
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-08-26 02:18:41 +05:30
|
|
|
}
|
|
|
|
|
2013-01-15 05:12:38 +05:30
|
|
|
bool INIFile::saveFile(QString fileName)
|
|
|
|
{
|
2015-02-21 04:51:19 +05:30
|
|
|
QSaveFile file(fileName);
|
|
|
|
if(!file.open(QIODevice::WriteOnly))
|
|
|
|
{
|
|
|
|
qCritical() << "Unable to open INI config file" << fileName << "for saving";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QByteArray outArray;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-01-15 05:12:38 +05:30
|
|
|
for (Iterator iter = begin(); iter != end(); iter++)
|
|
|
|
{
|
2013-08-26 02:18:41 +05:30
|
|
|
QString value = iter.value().toString();
|
|
|
|
value = escape(value);
|
2015-02-21 13:29:38 +05:30
|
|
|
outArray.append(iter.key().toUtf8());
|
|
|
|
outArray.append('=');
|
|
|
|
outArray.append(iter.value().toString().toUtf8());
|
|
|
|
outArray.append('\n');
|
2013-01-15 05:12:38 +05:30
|
|
|
}
|
2015-02-21 04:51:19 +05:30
|
|
|
if(file.write(outArray) != outArray.size())
|
|
|
|
{
|
|
|
|
qCritical() << "Unable to write to the INI config file" << fileName;
|
|
|
|
file.cancelWriting();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(!file.commit())
|
|
|
|
{
|
|
|
|
qCritical() << "Unable to commit the INI config file" << fileName;
|
|
|
|
file.cancelWriting();
|
|
|
|
return false;
|
|
|
|
}
|
2013-01-15 05:12:38 +05:30
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-02-21 13:29:38 +05:30
|
|
|
|
2013-01-15 05:12:38 +05:30
|
|
|
bool INIFile::loadFile(QString fileName)
|
|
|
|
{
|
|
|
|
QFile file(fileName);
|
2013-11-04 07:23:05 +05:30
|
|
|
if (!file.open(QIODevice::ReadOnly))
|
2013-08-28 02:02:41 +05:30
|
|
|
return false;
|
|
|
|
bool success = loadFile(file.readAll());
|
|
|
|
file.close();
|
|
|
|
return success;
|
|
|
|
}
|
2013-11-04 07:23:05 +05:30
|
|
|
bool INIFile::loadFile(QByteArray file)
|
2013-08-28 02:02:41 +05:30
|
|
|
{
|
|
|
|
QTextStream in(file);
|
2013-08-26 02:18:41 +05:30
|
|
|
in.setCodec("UTF-8");
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-01-15 05:12:38 +05:30
|
|
|
QStringList lines = in.readAll().split('\n');
|
|
|
|
for (int i = 0; i < lines.count(); i++)
|
|
|
|
{
|
2013-11-04 07:23:05 +05:30
|
|
|
QString &lineRaw = lines[i];
|
2013-01-15 05:12:38 +05:30
|
|
|
// Ignore comments.
|
2013-01-22 10:26:12 +05:30
|
|
|
QString line = lineRaw.left(lineRaw.indexOf('#')).trimmed();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-01-22 10:26:12 +05:30
|
|
|
int eqPos = line.indexOf('=');
|
2013-11-04 07:23:05 +05:30
|
|
|
if (eqPos == -1)
|
2013-01-22 10:26:12 +05:30
|
|
|
continue;
|
|
|
|
QString key = line.left(eqPos).trimmed();
|
|
|
|
QString valueStr = line.right(line.length() - eqPos - 1).trimmed();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-26 02:18:41 +05:30
|
|
|
valueStr = unescape(valueStr);
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-01-22 10:26:12 +05:30
|
|
|
QVariant value(valueStr);
|
2013-11-04 07:23:05 +05:30
|
|
|
this->operator[](key) = value;
|
2013-01-15 05:12:38 +05:30
|
|
|
}
|
2013-11-04 07:23:05 +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
|
2013-11-04 07:23:05 +05:30
|
|
|
return this->operator[](key);
|
2013-01-15 05:12:38 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void INIFile::set(QString key, QVariant val)
|
|
|
|
{
|
2013-11-04 07:23:05 +05:30
|
|
|
this->operator[](key) = val;
|
2013-01-15 05:12:38 +05:30
|
|
|
}
|