0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-23 16:22:58 +03:00
LimeReport/limereport/serializators/lrxmlreader.h
Андрей Лухнов 0fca7169d3 Define code style and format all source file using clang-format-14
except those placed in 3rdparty directories.
2024-09-19 21:09:38 +03:00

125 lines
4.4 KiB
C++

/***************************************************************************
* This file is part of the Lime Report project *
* Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru *
* *
** GNU General Public License Usage **
* *
* This library 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. *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
** GNU Lesser General Public License **
* *
* This library is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation, either version 3 of the *
* License, or (at your option) any later version. *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library. *
* If not, see <http://www.gnu.org/licenses/>. *
* *
* This library 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. *
****************************************************************************/
#ifndef LRXMLREADER_H
#define LRXMLREADER_H
#include "lrdesignelementsfactory.h"
#include "serializators/lrxmlwriter.h"
#include <QString>
#include <QtXml>
namespace LimeReport {
class XMLReader: public ItemsReaderIntf {
public:
XMLReader();
XMLReader(QSharedPointer<QDomDocument> doc);
protected:
// ItemsReaderIntf interface
bool first();
bool next();
bool prior();
QString itemType();
QString itemClassName();
bool readItem(QObject* item);
int firstLevelItemsCount();
QString lastError();
void setPassPhrase(const QString& passPhrase);
virtual bool prepareReader(QDomDocument* doc);
void readItemFromNode(QObject* item, QDomElement* node);
void readProperty(QObject* item, QDomElement* node);
void readQObject(QObject* item, QDomElement* node);
void readCollection(QObject* item, QDomElement* node);
void readTranslation(QObject* item, QDomElement* node);
QVariant getValue(QDomElement* node);
protected:
bool extractFirstNode();
QString m_error;
private:
QSharedPointer<QDomDocument> m_doc;
QDomElement m_curNode;
QDomElement m_firstNode;
QString m_passPhrase;
};
class FileXMLReader: public XMLReader {
public:
static ItemsReaderIntf::Ptr create(QString fileName)
{
return ItemsReaderIntf::Ptr(new FileXMLReader(fileName));
}
protected:
virtual bool prepareReader(QDomDocument* doc);
private:
FileXMLReader(QString fileName);
QString m_fileName;
};
class StringXMLreader: public XMLReader {
public:
static ItemsReaderIntf::Ptr create(QString content)
{
return ItemsReaderIntf::Ptr(new StringXMLreader(content));
}
protected:
virtual bool prepareReader(QDomDocument* doc);
private:
StringXMLreader(QString content): m_content(content) { }
QString m_content;
};
class ByteArrayXMLReader: public XMLReader {
public:
static ItemsReaderIntf::Ptr create(QByteArray* content)
{
return ItemsReaderIntf::Ptr(new ByteArrayXMLReader(content));
}
protected:
virtual bool prepareReader(QDomDocument* doc);
private:
ByteArrayXMLReader(QByteArray* content): m_content(content) { }
QByteArray* m_content;
};
} // namespace LimeReport
#endif // LRXMLREADER_H