2014-12-11 16:12:16 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vpatternconverter.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 11 12, 2014
|
|
|
|
**
|
|
|
|
** @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) 2014 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 "vpatternconverter.h"
|
2014-12-11 21:16:03 +01:00
|
|
|
#include "exception/vexception.h"
|
2014-12-11 16:12:16 +01:00
|
|
|
|
2014-12-11 21:54:33 +01:00
|
|
|
#include <QFile>
|
|
|
|
|
2014-12-12 10:47:12 +01:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-12-27 12:15:34 +01:00
|
|
|
const QString VPatternConverter::PatternMinVerStr = QStringLiteral("0.1.0");
|
2015-02-03 12:15:52 +01:00
|
|
|
const QString VPatternConverter::PatternMaxVerStr = QStringLiteral("0.1.3");
|
|
|
|
const QString VPatternConverter::CurrentSchema = QStringLiteral("://schema/pattern/v0.1.3.xsd");
|
2014-12-11 20:44:48 +01:00
|
|
|
|
2014-12-11 16:12:16 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-12-11 16:51:24 +01:00
|
|
|
VPatternConverter::VPatternConverter(const QString &fileName)
|
|
|
|
:VAbstractConverter(fileName)
|
2014-12-11 16:12:16 +01:00
|
|
|
{
|
2014-12-11 21:19:17 +01:00
|
|
|
const QString schema = XSDSchema(ver);
|
|
|
|
ValidateXML(schema, fileName);
|
2014-12-11 16:12:16 +01:00
|
|
|
}
|
|
|
|
|
2014-12-11 20:44:48 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPatternConverter::~VPatternConverter()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VPatternConverter::MinVer() const
|
|
|
|
{
|
|
|
|
return GetVersion(PatternMinVerStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VPatternConverter::MaxVer() const
|
|
|
|
{
|
|
|
|
return GetVersion(PatternMaxVerStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VPatternConverter::MinVerStr() const
|
|
|
|
{
|
|
|
|
return PatternMinVerStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VPatternConverter::MaxVerStr() const
|
|
|
|
{
|
|
|
|
return PatternMaxVerStr;
|
|
|
|
}
|
2014-12-11 21:16:03 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VPatternConverter::XSDSchema(int ver) const
|
|
|
|
{
|
|
|
|
CheckVersion(ver);
|
|
|
|
|
|
|
|
switch(ver)
|
|
|
|
{
|
2014-12-27 12:15:34 +01:00
|
|
|
case (0x000100):
|
|
|
|
return QStringLiteral("://schema/pattern/v0.1.0.xsd");
|
2014-12-11 21:16:03 +01:00
|
|
|
case (0x000101):
|
2014-12-17 13:56:14 +01:00
|
|
|
return QStringLiteral("://schema/pattern/v0.1.1.xsd");
|
|
|
|
case (0x000102):
|
2015-02-03 12:15:52 +01:00
|
|
|
return QStringLiteral("://schema/pattern/v0.1.2.xsd");
|
|
|
|
case (0x000103):
|
2014-12-11 21:16:03 +01:00
|
|
|
return CurrentSchema;
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
const QString errorMsg(tr("Unexpected version \"%1\".").arg(ver, 0, 16));
|
|
|
|
throw VException(errorMsg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-12-11 21:54:33 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-12-16 08:42:24 +01:00
|
|
|
void VPatternConverter::ApplyPatches()
|
2014-12-11 21:54:33 +01:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
switch(ver)
|
|
|
|
{
|
2014-12-27 12:15:34 +01:00
|
|
|
case (0x000100):
|
|
|
|
{
|
|
|
|
ToV0_1_1();
|
|
|
|
const QString schema = XSDSchema(0x000101);
|
|
|
|
ValidateXML(schema, fileName);
|
|
|
|
// continue conversion
|
|
|
|
}
|
2014-12-11 21:54:33 +01:00
|
|
|
case (0x000101):
|
2014-12-17 13:56:14 +01:00
|
|
|
{
|
|
|
|
ToV0_1_2();
|
|
|
|
const QString schema = XSDSchema(0x000102);
|
|
|
|
ValidateXML(schema, fileName);
|
2015-02-03 12:15:52 +01:00
|
|
|
// continue conversion
|
2014-12-17 13:56:14 +01:00
|
|
|
}
|
|
|
|
case (0x000102):
|
2015-02-03 12:15:52 +01:00
|
|
|
{
|
|
|
|
ToV0_1_3();
|
|
|
|
const QString schema = XSDSchema(0x000103);
|
|
|
|
ValidateXML(schema, fileName);
|
|
|
|
// continue conversion
|
|
|
|
}
|
|
|
|
case (0x000103):
|
2014-12-11 21:54:33 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (VException &e)
|
|
|
|
{
|
|
|
|
QString error;
|
|
|
|
const QString backupFileName = fileName +".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();
|
|
|
|
|
2014-12-21 12:35:12 +01:00
|
|
|
throw;
|
2014-12-11 21:54:33 +01:00
|
|
|
}
|
|
|
|
}
|
2014-12-16 08:42:24 +01:00
|
|
|
|
2014-12-27 12:15:34 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPatternConverter::ToV0_1_1()
|
|
|
|
{
|
|
|
|
SetVersion(QStringLiteral("0.1.1"));
|
|
|
|
Save();
|
|
|
|
}
|
|
|
|
|
2014-12-16 08:42:24 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-12-17 13:56:14 +01:00
|
|
|
void VPatternConverter::ToV0_1_2()
|
|
|
|
{
|
2014-12-27 12:15:34 +01:00
|
|
|
SetVersion(QStringLiteral("0.1.2"));
|
2014-12-17 13:56:14 +01:00
|
|
|
Save();
|
|
|
|
}
|
2015-02-03 12:15:52 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPatternConverter::ToV0_1_3()
|
|
|
|
{
|
|
|
|
SetVersion(QStringLiteral("0.1.3"));
|
|
|
|
Save();
|
|
|
|
}
|