a0b785ffd8
--HG-- branch : develop
330 lines
11 KiB
C++
330 lines
11 KiB
C++
/************************************************************************
|
|
**
|
|
** @file VVSTConverter.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 15 7, 2015
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentine project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2015 Valentina project
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
**
|
|
** Valentina is free software: you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** Valentina is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#include "vvstconverter.h"
|
|
#include "exception/vexception.h"
|
|
|
|
#include <QFile>
|
|
|
|
/*
|
|
* Version rules:
|
|
* 1. Version have three parts "major.minor.patch";
|
|
* 2. major part only for stable releases;
|
|
* 3. minor - 10 or more patch changes, or one big change;
|
|
* 4. patch - little change.
|
|
*/
|
|
|
|
const QString VVSTConverter::MeasurementMinVerStr = QStringLiteral("0.3.0");
|
|
const QString VVSTConverter::MeasurementMaxVerStr = QStringLiteral("0.4.2");
|
|
const QString VVSTConverter::CurrentSchema = QStringLiteral("://schema/standard_measurements/v0.4.2.xsd");
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
VVSTConverter::VVSTConverter(const QString &fileName)
|
|
:VAbstractMConverter(fileName)
|
|
{
|
|
const QString schema = XSDSchema(ver);
|
|
ValidateXML(schema, fileName);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
VVSTConverter::~VVSTConverter()
|
|
{}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
int VVSTConverter::MinVer() const
|
|
{
|
|
return GetVersion(MeasurementMinVerStr);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
int VVSTConverter::MaxVer() const
|
|
{
|
|
return GetVersion(MeasurementMaxVerStr);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString VVSTConverter::MinVerStr() const
|
|
{
|
|
return MeasurementMinVerStr;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString VVSTConverter::MaxVerStr() const
|
|
{
|
|
return MeasurementMaxVerStr;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString VVSTConverter::XSDSchema(int ver) const
|
|
{
|
|
CheckVersion(ver);
|
|
|
|
switch (ver)
|
|
{
|
|
case (0x000300):
|
|
return QStringLiteral("://schema/standard_measurements/v0.3.0.xsd");
|
|
case (0x000400):
|
|
return QStringLiteral("://schema/standard_measurements/v0.4.0.xsd");
|
|
case (0x000401):
|
|
return QStringLiteral("://schema/standard_measurements/v0.4.1.xsd");
|
|
case (0x000402):
|
|
return CurrentSchema;
|
|
default:
|
|
{
|
|
const QString errorMsg(tr("Unexpected version \"%1\".").arg(ver, 0, 16));
|
|
throw VException(errorMsg);
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VVSTConverter::ApplyPatches()
|
|
{
|
|
try
|
|
{
|
|
switch (ver)
|
|
{
|
|
case (0x000300):
|
|
{
|
|
ToV0_4_0();
|
|
const QString schema = XSDSchema(0x000400);
|
|
ValidateXML(schema, fileName);
|
|
V_FALLTHROUGH
|
|
}
|
|
case (0x000400):
|
|
{
|
|
ToV0_4_1();
|
|
const QString schema = XSDSchema(0x000401);
|
|
ValidateXML(schema, fileName);
|
|
V_FALLTHROUGH
|
|
}
|
|
case (0x000401):
|
|
{
|
|
ToV0_4_2();
|
|
const QString schema = XSDSchema(0x000402);
|
|
ValidateXML(schema, fileName);
|
|
V_FALLTHROUGH
|
|
}
|
|
case (0x000402):
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
catch (VException &e)
|
|
{
|
|
QString error;
|
|
const QString backupFileName = fileName + QLatin1Literal(".backup");
|
|
if (SafeCopy(backupFileName, fileName, error) == false)
|
|
{
|
|
const QString errorMsg(tr("Error restoring backup file: %1.").arg(error));
|
|
VException excep(errorMsg);
|
|
excep.AddMoreInformation(e.ErrorMessage());
|
|
throw excep;
|
|
}
|
|
|
|
QFile file(backupFileName);
|
|
file.remove();
|
|
|
|
throw;
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VVSTConverter::AddNewTagsForV0_4_0()
|
|
{
|
|
QDomElement rootElement = this->documentElement();
|
|
QDomNode refChild = rootElement.firstChildElement("version");
|
|
|
|
{
|
|
QDomElement ro = createElement(QStringLiteral("read-only"));
|
|
const QDomText roNodeText = createTextNode("false");
|
|
ro.appendChild(roNodeText);
|
|
refChild = rootElement.insertAfter(ro, refChild);
|
|
}
|
|
|
|
{
|
|
QDomElement notes = createElement(QStringLiteral("notes"));
|
|
const QDomText nodeText = createTextNode(UniqueTagText(QStringLiteral("description")));
|
|
notes.appendChild(nodeText);
|
|
rootElement.insertAfter(notes, refChild);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VVSTConverter::RemoveTagsForV0_4_0()
|
|
{
|
|
QDomElement rootElement = this->documentElement();
|
|
|
|
{
|
|
const QDomNodeList nodeList = this->elementsByTagName(QStringLiteral("description"));
|
|
if (not nodeList.isEmpty())
|
|
{
|
|
rootElement.removeChild(nodeList.at(0));
|
|
}
|
|
}
|
|
|
|
{
|
|
const QDomNodeList nodeList = this->elementsByTagName(QStringLiteral("id"));
|
|
if (not nodeList.isEmpty())
|
|
{
|
|
rootElement.removeChild(nodeList.at(0));
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VVSTConverter::ConvertMeasurementsToV0_4_0()
|
|
{
|
|
const QString tagBM = QStringLiteral("body-measurements");
|
|
|
|
QDomElement bm = createElement(tagBM);
|
|
|
|
const QMultiMap<QString, QString> names = OldNamesToNewNames_InV0_3_0();
|
|
const QList<QString> keys = names.uniqueKeys();
|
|
for (int i = 0; i < keys.size(); ++i)
|
|
{
|
|
qreal resValue = 0;
|
|
qreal resSizeIncrease = 0;
|
|
qreal resHeightIncrease = 0;
|
|
|
|
// This has the same effect as a .values(), just isn't as elegant
|
|
const QList<QString> list = names.values( keys.at(i) );
|
|
foreach(const QString &val, list )
|
|
{
|
|
const QDomNodeList nodeList = this->elementsByTagName(val);
|
|
if (nodeList.isEmpty())
|
|
{
|
|
continue;
|
|
}
|
|
|
|
QDomElement m = nodeList.at(0).toElement();
|
|
const qreal value = GetParametrDouble(m, QStringLiteral("value"), "0.0");
|
|
const qreal size_increase = GetParametrDouble(m, QStringLiteral("size_increase"), "0.0");
|
|
const qreal height_increase = GetParametrDouble(m, QStringLiteral("height_increase"), "0.0");
|
|
|
|
if (not qFuzzyIsNull(value))
|
|
{
|
|
resValue = value;
|
|
resSizeIncrease = size_increase;
|
|
resHeightIncrease = height_increase;
|
|
}
|
|
}
|
|
|
|
bm.appendChild(AddMV0_4_0(keys.at(i), resValue, resSizeIncrease, resHeightIncrease));
|
|
}
|
|
|
|
QDomElement rootElement = this->documentElement();
|
|
const QDomNodeList listBM = elementsByTagName(tagBM);
|
|
rootElement.replaceChild(bm, listBM.at(0));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QDomElement VVSTConverter::AddMV0_4_0(const QString &name, qreal value, qreal sizeIncrease, qreal heightIncrease)
|
|
{
|
|
QDomElement element = createElement(QStringLiteral("m"));
|
|
|
|
SetAttribute(element, QStringLiteral("name"), name);
|
|
SetAttribute(element, QStringLiteral("base"), QString().setNum(value));
|
|
SetAttribute(element, QStringLiteral("size_increase"), QString().setNum(sizeIncrease));
|
|
SetAttribute(element, QStringLiteral("height_increase"), QString().setNum(heightIncrease));
|
|
SetAttribute(element, QStringLiteral("description"), QString(""));
|
|
SetAttribute(element, QStringLiteral("full_name"), QString(""));
|
|
|
|
return element;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VVSTConverter::PM_SystemV0_4_1()
|
|
{
|
|
QDomElement pm_system = createElement(QStringLiteral("pm_system"));
|
|
pm_system.appendChild(createTextNode(QStringLiteral("998")));
|
|
|
|
const QDomNodeList nodeList = this->elementsByTagName(QStringLiteral("size"));
|
|
QDomElement personal = nodeList.at(0).toElement();
|
|
|
|
QDomElement parent = personal.parentNode().toElement();
|
|
parent.insertBefore(pm_system, personal);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VVSTConverter::ConvertMeasurementsToV0_4_2()
|
|
{
|
|
const QMap<QString, QString> names = OldNamesToNewNames_InV0_3_3();
|
|
auto i = names.constBegin();
|
|
while (i != names.constEnd())
|
|
{
|
|
const QDomNodeList nodeList = this->elementsByTagName(QStringLiteral("m"));
|
|
if (nodeList.isEmpty())
|
|
{
|
|
++i;
|
|
continue;
|
|
}
|
|
|
|
for (int ii = 0; ii < nodeList.size(); ++ii)
|
|
{
|
|
const QString attrName = QStringLiteral("name");
|
|
QDomElement element = nodeList.at(ii).toElement();
|
|
const QString name = GetParametrString(element, attrName);
|
|
if (name == i.value())
|
|
{
|
|
SetAttribute(element, attrName, i.key());
|
|
}
|
|
}
|
|
|
|
++i;
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VVSTConverter::ToV0_4_0()
|
|
{
|
|
AddRootComment();
|
|
SetVersion(QStringLiteral("0.4.0"));
|
|
AddNewTagsForV0_4_0();
|
|
RemoveTagsForV0_4_0();
|
|
ConvertMeasurementsToV0_4_0();
|
|
Save();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VVSTConverter::ToV0_4_1()
|
|
{
|
|
SetVersion(QStringLiteral("0.4.1"));
|
|
PM_SystemV0_4_1();
|
|
Save();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VVSTConverter::ToV0_4_2()
|
|
{
|
|
SetVersion(QStringLiteral("0.4.2"));
|
|
ConvertMeasurementsToV0_4_2();
|
|
Save();
|
|
}
|