2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vdomdocument.cpp
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @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) 2013 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-07-13 12:51:31 +02:00
|
|
|
#include "vdomdocument.h"
|
2013-11-06 16:49:07 +01:00
|
|
|
#include "../exception/vexceptionconversionerror.h"
|
|
|
|
#include "../exception/vexceptionemptyparameter.h"
|
|
|
|
#include "../exception/vexceptionbadid.h"
|
2013-08-13 18:48:36 +02:00
|
|
|
|
2014-02-25 15:55:02 +01:00
|
|
|
#include <QAbstractMessageHandler>
|
|
|
|
#include <QXmlSchema>
|
|
|
|
#include <QXmlSchemaValidator>
|
|
|
|
#include <QFile>
|
|
|
|
|
|
|
|
//This class need for validation pattern file using XSD shema
|
|
|
|
class MessageHandler : public QAbstractMessageHandler
|
|
|
|
{
|
|
|
|
public:
|
2014-02-26 10:22:05 +01:00
|
|
|
MessageHandler() : QAbstractMessageHandler(), m_messageType(QtMsgType()), m_description(QString()),
|
2014-02-25 15:55:02 +01:00
|
|
|
m_sourceLocation(QSourceLocation()){}
|
2014-02-26 09:18:59 +01:00
|
|
|
QString statusMessage() const;
|
|
|
|
qint64 line() const;
|
|
|
|
qint64 column() const;
|
2014-02-25 15:55:02 +01:00
|
|
|
protected:
|
|
|
|
virtual void handleMessage(QtMsgType type, const QString &description,
|
|
|
|
const QUrl &identifier, const QSourceLocation &sourceLocation)
|
|
|
|
{
|
|
|
|
Q_UNUSED(type);
|
|
|
|
Q_UNUSED(identifier);
|
|
|
|
|
|
|
|
m_messageType = type;
|
|
|
|
m_description = description;
|
|
|
|
m_sourceLocation = sourceLocation;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
QtMsgType m_messageType;
|
|
|
|
QString m_description;
|
|
|
|
QSourceLocation m_sourceLocation;
|
|
|
|
};
|
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
inline QString MessageHandler::statusMessage() const
|
|
|
|
{
|
|
|
|
return m_description;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline qint64 MessageHandler::line() const
|
|
|
|
{
|
|
|
|
return m_sourceLocation.line();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline qint64 MessageHandler::column() const
|
|
|
|
{
|
|
|
|
return m_sourceLocation.column();
|
|
|
|
}
|
|
|
|
|
2014-02-25 15:02:09 +01:00
|
|
|
VDomDocument::VDomDocument(VContainer *data)
|
|
|
|
: QDomDocument(), data(data), map(QHash<QString, QDomElement>())
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
2014-02-25 15:02:09 +01:00
|
|
|
}
|
2013-07-13 12:51:31 +02:00
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
QDomElement VDomDocument::elementById(const QString& id)
|
|
|
|
{
|
|
|
|
if (map.contains(id))
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
QDomElement e = map[id];
|
2013-11-04 21:35:15 +01:00
|
|
|
if (e.parentNode().nodeType() != QDomNode::BaseNode)
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
map.remove(id);
|
|
|
|
}
|
|
|
|
|
2014-02-25 15:02:09 +01:00
|
|
|
if (this->find(this->documentElement(), id))
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
return map[id];
|
|
|
|
}
|
|
|
|
|
|
|
|
return QDomElement();
|
|
|
|
}
|
|
|
|
|
2014-01-02 16:50:01 +01:00
|
|
|
void VDomDocument::removeAllChilds(QDomElement &element)
|
|
|
|
{
|
|
|
|
QDomNode domNode = element.firstChild();
|
|
|
|
while (domNode.isNull() == false)
|
|
|
|
{
|
|
|
|
if (domNode.isElement())
|
|
|
|
{
|
|
|
|
QDomElement domElement = domNode.toElement();
|
|
|
|
if (domElement.isNull() == false)
|
|
|
|
{
|
|
|
|
element.removeChild(domElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
domNode = element.firstChild();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:11:12 +01:00
|
|
|
bool VDomDocument::find(const QDomElement &node, const QString& id)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
if (node.hasAttribute("id"))
|
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
const QString value = node.attribute("id");
|
2013-07-13 12:51:31 +02:00
|
|
|
this->map[value] = node;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (value == id)
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i=0; i<node.childNodes().length(); ++i)
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
QDomNode n = node.childNodes().at(i);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (n.isElement())
|
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
if (this->find(n.toElement(), id))
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 VDomDocument::GetParametrUInt(const QDomElement &domElement, const QString &name, const QString &defValue) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
Q_ASSERT_X(name.isEmpty() == false, Q_FUNC_INFO, "name of parametr is empty");
|
|
|
|
Q_ASSERT_X(domElement.isNull() == false, Q_FUNC_INFO, "domElement is null");
|
2013-09-11 16:14:21 +02:00
|
|
|
bool ok = false;
|
2014-02-25 15:02:09 +01:00
|
|
|
const QString parametr = GetParametrString(domElement, name, defValue);
|
2014-02-25 15:40:24 +01:00
|
|
|
const quint32 id = parametr.toUInt(&ok);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (ok == false)
|
|
|
|
{
|
2014-02-25 15:40:24 +01:00
|
|
|
throw VExceptionConversionError(tr("Can't convert toUInt parameter"), name);
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
2013-09-11 16:14:21 +02:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2013-12-23 20:50:30 +01:00
|
|
|
QString VDomDocument::GetParametrString(const QDomElement &domElement, const QString &name,
|
|
|
|
const QString &defValue) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
Q_ASSERT_X(name.isEmpty() == false, Q_FUNC_INFO, "name of parametr is empty");
|
|
|
|
Q_ASSERT_X(domElement.isNull() == false, Q_FUNC_INFO, "domElement is null");
|
2014-02-25 15:02:09 +01:00
|
|
|
const QString parameter = domElement.attribute(name, defValue);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parameter.isEmpty())
|
|
|
|
{
|
2014-03-14 15:12:53 +01:00
|
|
|
if (defValue.isEmpty())
|
|
|
|
{
|
|
|
|
throw VExceptionEmptyParameter(tr("Got empty parameter"), name, domElement);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return defValue;
|
|
|
|
}
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
|
|
|
return parameter;
|
2013-09-11 16:14:21 +02:00
|
|
|
}
|
|
|
|
|
2013-12-23 20:50:30 +01:00
|
|
|
qreal VDomDocument::GetParametrDouble(const QDomElement &domElement, const QString &name, const QString &defValue) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
Q_ASSERT_X(name.isEmpty() == false, Q_FUNC_INFO, "name of parametr is empty");
|
|
|
|
Q_ASSERT_X(domElement.isNull() == false, Q_FUNC_INFO, "domElement is null");
|
2013-09-11 16:14:21 +02:00
|
|
|
bool ok = false;
|
2013-12-23 20:50:30 +01:00
|
|
|
QString parametr = GetParametrString(domElement, name, defValue);
|
2014-02-25 15:02:09 +01:00
|
|
|
const qreal param = parametr.replace(",", ".").toDouble(&ok);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (ok == false)
|
|
|
|
{
|
2013-09-23 14:08:06 +02:00
|
|
|
throw VExceptionConversionError(tr("Can't convert toDouble parameter"), name);
|
|
|
|
}
|
2013-09-11 16:14:21 +02:00
|
|
|
return param;
|
|
|
|
}
|
|
|
|
|
2014-02-25 15:02:09 +01:00
|
|
|
QString VDomDocument::UniqueTagText(const QString &tagName, const QString &defVal) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
const QDomNodeList nodeList = this->elementsByTagName(tagName);
|
2014-02-19 14:32:02 +01:00
|
|
|
if (nodeList.isEmpty())
|
|
|
|
{
|
|
|
|
return defVal;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
const QDomNode domNode = nodeList.at(0);
|
2014-02-19 14:32:02 +01:00
|
|
|
if (domNode.isNull() == false && domNode.isElement())
|
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
const QDomElement domElement = domNode.toElement();
|
2014-02-19 14:32:02 +01:00
|
|
|
if (domElement.isNull() == false)
|
|
|
|
{
|
|
|
|
return domElement.text();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return defVal;
|
|
|
|
}
|
2014-02-25 15:55:02 +01:00
|
|
|
|
|
|
|
bool VDomDocument::ValidatePattern(const QString &schema, const QString &fileName, QString &errorMsg, qint64 &errorLine,
|
|
|
|
qint64 &errorColumn)
|
|
|
|
{
|
|
|
|
errorLine = -1;
|
|
|
|
errorColumn = -1;
|
|
|
|
QFile pattern(fileName);
|
|
|
|
if (pattern.open(QIODevice::ReadOnly) == false)
|
|
|
|
{
|
|
|
|
errorMsg = QString(tr("Can't open file %1:\n%2.").arg(fileName).arg(pattern.errorString()));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QFile fileSchema(schema);
|
|
|
|
if (fileSchema.open(QIODevice::ReadOnly) == false)
|
|
|
|
{
|
|
|
|
errorMsg = QString(tr("Can't open schema file %1:\n%2.").arg(schema).arg(fileSchema.errorString()));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageHandler messageHandler;
|
|
|
|
QXmlSchema sch;
|
|
|
|
sch.setMessageHandler(&messageHandler);
|
|
|
|
sch.load(&fileSchema, QUrl::fromLocalFile(fileSchema.fileName()));
|
|
|
|
|
|
|
|
bool errorOccurred = false;
|
|
|
|
if (sch.isValid() == false)
|
|
|
|
{
|
|
|
|
errorOccurred = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QXmlSchemaValidator validator(sch);
|
|
|
|
if (validator.validate(&pattern, QUrl::fromLocalFile(pattern.fileName())) == false)
|
|
|
|
{
|
|
|
|
errorOccurred = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (errorOccurred)
|
|
|
|
{
|
|
|
|
errorMsg = messageHandler.statusMessage();
|
|
|
|
errorLine = messageHandler.line();
|
|
|
|
errorColumn = messageHandler.column();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2014-03-14 15:12:53 +01:00
|
|
|
|
|
|
|
Valentina::Units VDomDocument::Units(const QString &unit)
|
|
|
|
{
|
|
|
|
QStringList units;
|
|
|
|
units << "mm" << "cm" << "in";
|
|
|
|
Valentina::Units result = Valentina::Cm;
|
|
|
|
switch (units.indexOf(unit))
|
|
|
|
{
|
|
|
|
case 0:// mm
|
|
|
|
result = Valentina::Mm;
|
|
|
|
break;
|
|
|
|
case 1:// cm
|
|
|
|
result = Valentina::Cm;
|
|
|
|
break;
|
|
|
|
case 2:// in
|
|
|
|
result = Valentina::In;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
result = Valentina::Cm;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|