2016-03-31 20:47:19 +08:00
|
|
|
#ifndef ADS_SERIALIZATION_H
|
|
|
|
#define ADS_SERIALIZATION_H
|
|
|
|
|
|
|
|
#include <QtGlobal>
|
|
|
|
#include <QList>
|
|
|
|
#include <QString>
|
|
|
|
#include <QDataStream>
|
2016-04-01 15:52:59 +08:00
|
|
|
#include <QBuffer>
|
2016-03-31 20:47:19 +08:00
|
|
|
|
|
|
|
#include "ads/API.h"
|
|
|
|
|
|
|
|
ADS_NAMESPACE_SER_BEGIN
|
|
|
|
|
2016-04-01 18:11:52 +08:00
|
|
|
enum EntryType
|
|
|
|
{
|
|
|
|
ET_Unknown = 0x00000000,
|
|
|
|
ET_Hierarchy = 0x00000001,
|
|
|
|
ET_SectionIndex = 0x00000002,
|
|
|
|
|
|
|
|
// Begin of custom entry types (e.g. CustomType + 42)
|
|
|
|
ET_Custom = 0x0000ffff
|
|
|
|
};
|
|
|
|
|
|
|
|
class ADS_EXPORT_API Header
|
2016-03-31 20:47:19 +08:00
|
|
|
{
|
|
|
|
public:
|
2016-04-01 15:52:59 +08:00
|
|
|
static qint32 MAGIC;
|
|
|
|
static qint32 MAJOR_VERSION;
|
|
|
|
static qint32 MINOR_VERSION;
|
|
|
|
|
2016-03-31 20:47:19 +08:00
|
|
|
Header();
|
|
|
|
qint32 magic;
|
2016-04-01 15:52:59 +08:00
|
|
|
qint32 majorVersion;
|
|
|
|
qint32 minorVersion;
|
2016-03-31 20:47:19 +08:00
|
|
|
};
|
|
|
|
QDataStream& operator<<(QDataStream& out, const Header& data);
|
|
|
|
QDataStream& operator>>(QDataStream& in, Header& data);
|
|
|
|
|
|
|
|
|
2016-04-01 18:11:52 +08:00
|
|
|
class ADS_EXPORT_API OffsetsHeader
|
2016-03-31 20:47:19 +08:00
|
|
|
{
|
|
|
|
public:
|
2016-04-01 15:52:59 +08:00
|
|
|
OffsetsHeader();
|
|
|
|
|
|
|
|
qint64 entriesCount;
|
|
|
|
QList<class OffsetsHeaderEntry> entries;
|
2016-03-31 20:47:19 +08:00
|
|
|
};
|
2016-04-01 15:52:59 +08:00
|
|
|
QDataStream& operator<<(QDataStream& out, const OffsetsHeader& data);
|
|
|
|
QDataStream& operator>>(QDataStream& in, OffsetsHeader& data);
|
2016-03-31 20:47:19 +08:00
|
|
|
|
|
|
|
|
2016-04-01 18:11:52 +08:00
|
|
|
class ADS_EXPORT_API OffsetsHeaderEntry
|
2016-03-31 20:47:19 +08:00
|
|
|
{
|
|
|
|
public:
|
2016-04-01 15:52:59 +08:00
|
|
|
OffsetsHeaderEntry();
|
2016-03-31 20:47:19 +08:00
|
|
|
qint32 type;
|
|
|
|
qint64 offset;
|
2016-04-01 15:52:59 +08:00
|
|
|
qint64 contentSize;
|
2016-03-31 20:47:19 +08:00
|
|
|
};
|
2016-04-01 15:52:59 +08:00
|
|
|
QDataStream& operator<<(QDataStream& out, const OffsetsHeaderEntry& data);
|
|
|
|
QDataStream& operator>>(QDataStream& in, OffsetsHeaderEntry& data);
|
2016-03-31 20:47:19 +08:00
|
|
|
|
|
|
|
|
2016-04-01 18:11:52 +08:00
|
|
|
class ADS_EXPORT_API Section
|
2016-03-31 20:47:19 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Section();
|
|
|
|
qint32 width;
|
|
|
|
qint32 height;
|
|
|
|
qint32 currentIndex;
|
|
|
|
qint32 sectionContentsCount;
|
|
|
|
QList<class SectionContent> sectionContents;
|
|
|
|
};
|
|
|
|
QDataStream& operator<<(QDataStream& out, const Section& data);
|
|
|
|
QDataStream& operator>>(QDataStream& in, Section& data);
|
|
|
|
|
|
|
|
|
2016-04-01 18:11:52 +08:00
|
|
|
class ADS_EXPORT_API SectionContent
|
2016-03-31 20:47:19 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SectionContent();
|
|
|
|
QString uniqueName;
|
|
|
|
bool visible;
|
|
|
|
qint32 preferredIndex;
|
|
|
|
};
|
|
|
|
QDataStream& operator<<(QDataStream& out, const SectionContent& data);
|
|
|
|
QDataStream& operator>>(QDataStream& in, SectionContent& data);
|
|
|
|
|
|
|
|
|
2016-04-01 18:11:52 +08:00
|
|
|
class ADS_EXPORT_API FloatingContent
|
2016-03-31 20:47:19 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
FloatingContent();
|
|
|
|
QString uniqueName;
|
|
|
|
qint32 xpos;
|
|
|
|
qint32 ypos;
|
|
|
|
qint32 width;
|
|
|
|
qint32 height;
|
|
|
|
bool visible;
|
|
|
|
};
|
|
|
|
QDataStream& operator<<(QDataStream& out, const FloatingContent& data);
|
|
|
|
QDataStream& operator>>(QDataStream& in, FloatingContent& data);
|
|
|
|
|
|
|
|
|
|
|
|
// Type: OffsetHeaderEntry::Hierarchy
|
2016-04-01 18:11:52 +08:00
|
|
|
class ADS_EXPORT_API HierarchyData
|
2016-03-31 20:47:19 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
HierarchyData();
|
|
|
|
QByteArray data;
|
|
|
|
};
|
|
|
|
QDataStream& operator<<(QDataStream& out, const HierarchyData& data);
|
|
|
|
QDataStream& operator>>(QDataStream& in, HierarchyData& data);
|
|
|
|
|
|
|
|
|
|
|
|
// Type: OffsetHeaderEntry::SectionIndex
|
2016-04-01 18:11:52 +08:00
|
|
|
class ADS_EXPORT_API SectionIndexData
|
2016-03-31 20:47:19 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SectionIndexData();
|
|
|
|
qint32 sectionsCount;
|
|
|
|
QList<Section> sections;
|
|
|
|
};
|
2016-04-01 15:52:59 +08:00
|
|
|
QDataStream& operator<<(QDataStream& out, const SectionIndexData& data);
|
|
|
|
QDataStream& operator>>(QDataStream& in, SectionIndexData& data);
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief The InMemoryWriter class writes into a QByteArray.
|
|
|
|
*/
|
2016-04-01 18:11:52 +08:00
|
|
|
class ADS_EXPORT_API InMemoryWriter
|
2016-04-01 15:52:59 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
InMemoryWriter();
|
2016-04-01 17:49:16 +08:00
|
|
|
bool write(qint32 entryType, const QByteArray& data);
|
2016-04-01 15:52:59 +08:00
|
|
|
bool write(const SectionIndexData& data);
|
|
|
|
QByteArray toByteArray() const;
|
2016-04-01 17:49:16 +08:00
|
|
|
qint32 offsetsCount() const { return _offsetsHeader.entriesCount; }
|
2016-04-01 15:52:59 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
QBuffer _contentBuffer;
|
|
|
|
OffsetsHeader _offsetsHeader;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief The InMemoryReader class
|
|
|
|
*/
|
2016-04-01 18:11:52 +08:00
|
|
|
class ADS_EXPORT_API InMemoryReader
|
2016-04-01 15:52:59 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
InMemoryReader(const QByteArray& data);
|
|
|
|
bool initReadHeader();
|
2016-04-01 17:49:16 +08:00
|
|
|
bool read(qint32 entryType, QByteArray &data);
|
|
|
|
qint32 offsetsCount() const { return _offsetsHeader.entriesCount; }
|
2016-04-01 15:52:59 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
QByteArray _data;
|
|
|
|
OffsetsHeader _offsetsHeader;
|
|
|
|
};
|
2016-03-31 20:47:19 +08:00
|
|
|
|
|
|
|
ADS_NAMESPACE_SER_END
|
|
|
|
#endif
|