ACF $AcfVersion:0$
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
iser::CCompactXmlReadArchiveBase Class Reference

Qt-based implementation of archive reading from XML file. More...

#include <CCompactXmlReadArchiveBase.h>

Inheritance diagram for iser::CCompactXmlReadArchiveBase:
iser::CTextReadArchiveBase iser::CXmlDocumentInfoBase iser::CReadArchiveBase iser::CArchiveBase iser::IArchive istd::ILogger istd::IPolymorphic istd::IPolymorphic ifile::CCompactXmlFileReadArchive ifile::CCompressedXmlFileReadArchive iser::CCompactXmlMemReadArchive

Public Member Functions

 CCompactXmlReadArchiveBase (bool serializeHeader=true, const iser::CArchiveTag &rootTag=s_acfRootTag)
 
virtual bool IsTagSkippingSupported () const override
 Checks if skipping to the end of a tag on EndTag() is supported.
 
virtual bool BeginTag (const iser::CArchiveTag &tag) override
 Begins a tagged section in the archive.
 
virtual bool BeginMultiTag (const iser::CArchiveTag &tag, const iser::CArchiveTag &subTag, int &count) override
 Begins a tagged section containing multiple elements of the same type.
 
virtual bool EndTag (const iser::CArchiveTag &tag) override
 Ends a tagged section in the archive.
 
virtual bool Process (QString &value) override
 Process primitive type.
 
- Public Member Functions inherited from iser::CTextReadArchiveBase
virtual bool Process (bool &value) override
 Processes (reads or writes) a boolean value.
 
virtual bool Process (char &value) override
 Process primitive type.
 
virtual bool Process (quint8 &value) override
 Process primitive type.
 
virtual bool Process (qint8 &value) override
 Process primitive type.
 
virtual bool Process (quint16 &value) override
 Process primitive type.
 
virtual bool Process (qint16 &value) override
 Process primitive type.
 
virtual bool Process (quint32 &value) override
 Process primitive type.
 
virtual bool Process (qint32 &value) override
 Process primitive type.
 
virtual bool Process (quint64 &value) override
 Process primitive type.
 
virtual bool Process (qint64 &value) override
 Process primitive type.
 
virtual bool Process (float &value) override
 Process primitive type.
 
virtual bool Process (double &value) override
 Process primitive type.
 
virtual bool Process (QByteArray &value) override
 Process primitive type.
 
virtual bool ProcessData (void *dataPtr, int size) override
 Process binary data block.
 
- Public Member Functions inherited from iser::CReadArchiveBase
virtual bool IsStoring () const override
 Checks if this archive is in storing (writing) or loading (reading) mode.
 
virtual const IVersionInfoGetVersionInfo () const override
 Gets version information for the archived stream.
 
virtual bool ProcessBits (void *dataPtr, int bitsCount, int bytesCount) override
 Process binary data block.
 
- Public Member Functions inherited from iser::IArchive
template<typename Primitive >
bool TagAndProcess (const CArchiveTag &tag, Primitive &value)
 
- Public Member Functions inherited from istd::IPolymorphic
virtual ~IPolymorphic ()
 
- Public Member Functions inherited from iser::CXmlDocumentInfoBase
 CXmlDocumentInfoBase ()
 
bool IsCommentEnabled () const
 Check if comments in XML document are enabled.
 
void SetCommentEnabled (bool state=true)
 Allows comments in XML document.
 

Protected Member Functions

bool ReadStringNode (QString &text)
 
bool SetContent (QIODevice *devicePtr)
 
virtual bool ReadTextNode (QByteArray &text) override
 Read single unformatted text node.
 
virtual void DecorateMessage (istd::IInformationProvider::InformationCategory category, int id, int flags, QString &message, QString &messageSource) const override
 Decorate message parts before outputting.
 
- Protected Member Functions inherited from iser::CReadArchiveBase
bool SerializeAcfHeader ()
 Serialize standard header.
 
- Protected Member Functions inherited from iser::CArchiveBase
 CArchiveBase ()
 
virtual bool IsLogConsumed (const IInformationProvider::InformationCategory *categoryPtr=NULL, const int *flagsPtr=NULL) const
 Check if any log message is consumed.
 
virtual bool SendLogMessage (IInformationProvider::InformationCategory category, int id, const QString &message, const QString &messageSource, int flags=0) const
 Send any message to log.
 

Protected Attributes

QDomDocument m_document
 
QDomElement m_currentParent
 

Additional Inherited Members

- Public Types inherited from iser::CTextReadArchiveBase
typedef CReadArchiveBase BaseClass
 
- Public Types inherited from iser::IArchive
enum  MessageId { MI_TAG_ERROR = 0x3f320a0 , MI_TAG_SKIPPED }
 
- Static Public Member Functions inherited from iser::CArchiveBase
static const CArchiveTagGetAcfRootTag ()
 
- Static Public Member Functions inherited from iser::CXmlDocumentInfoBase
static void EncodeXml (const QByteArray &text, QByteArray &xmlText)
 
static void DecodeXml (const QByteArray &xmlText, QByteArray &text)
 
static void EncodeXml (const QString &text, QByteArray &xmlText)
 
static void DecodeXml (const QByteArray &xmlText, QString &text)
 
static const QString & GetElementSeparator ()
 
- Static Protected Attributes inherited from iser::CArchiveBase
static CArchiveTag s_acfRootTag
 

Detailed Description

Qt-based implementation of archive reading from XML file.

Definition at line 25 of file CCompactXmlReadArchiveBase.h.

Constructor & Destructor Documentation

◆ CCompactXmlReadArchiveBase()

iser::CCompactXmlReadArchiveBase::CCompactXmlReadArchiveBase ( bool  serializeHeader = true,
const iser::CArchiveTag rootTag = s_acfRootTag 
)

Member Function Documentation

◆ BeginMultiTag()

virtual bool iser::CCompactXmlReadArchiveBase::BeginMultiTag ( const iser::CArchiveTag tag,
const iser::CArchiveTag subTag,
int &  count 
)
overridevirtual

Begins a tagged section containing multiple elements of the same type.

BeginMultiTag is used for serializing collections, arrays, or lists where you have multiple items of the same structure. The count parameter works differently for reading vs. writing:

  • Writing: Pass the number of elements you will serialize
  • Reading: The archive sets count to the number of elements stored
Parameters
tagMain container tag for the entire collection
subTagTag type for each individual element in the collection
count[in/out] For writing: number of elements to serialize For reading: set by archive to number of stored elements
Returns
true if successful, false on error
// Writing a list
if (archive.IsStoring()) {
int count = m_items.count();
archive.BeginMultiTag(listTag, itemTag, count);
for (const Item& item : m_items) {
archive.BeginTag(itemTag);
item.Serialize(archive);
archive.EndTag(itemTag);
}
archive.EndTag(listTag);
}
// Reading a list
else {
int count;
archive.BeginMultiTag(listTag, itemTag, count);
m_items.clear();
for (int i = 0; i < count; ++i) {
archive.BeginTag(itemTag);
Item item;
item.Serialize(archive);
m_items.append(item);
archive.EndTag(itemTag);
}
archive.EndTag(listTag);
}
See also
BeginTag(), EndTag()

Reimplemented from iser::CArchiveBase.

◆ BeginTag()

virtual bool iser::CCompactXmlReadArchiveBase::BeginTag ( const iser::CArchiveTag tag)
overridevirtual

Begins a tagged section in the archive.

Tags organize data into logical units with names and descriptions. Every BeginTag() must be matched with an EndTag() call. Tags can be nested to create hierarchical data structures.

Parameters
tagThe tag object describing this section. Use static CArchiveTag instances to avoid repeated construction overhead.
Returns
true if the tag was successfully opened, false on error
Note
Always match BeginTag() with EndTag()
Check the return value and propagate errors
For collections, use BeginMultiTag() instead
static iser::CArchiveTag personTag("Person", "Person data");
if (archive.BeginTag(personTag)) {
archive.Process(name);
archive.Process(age);
archive.EndTag(personTag);
}
Process tag used to group data in archive stream.
Definition CArchiveTag.h:22
See also
EndTag(), BeginMultiTag(), CArchiveTag

Implements iser::IArchive.

◆ DecorateMessage()

virtual void iser::CCompactXmlReadArchiveBase::DecorateMessage ( istd::IInformationProvider::InformationCategory  category,
int  id,
int  flags,
QString &  message,
QString &  messageSource 
) const
overrideprotectedvirtual

Decorate message parts before outputting.

Reimplemented from istd::ILogger.

Reimplemented in ifile::CCompactXmlFileReadArchive, ifile::CCompressedXmlFileReadArchive, and iser::CCompactXmlMemReadArchive.

◆ EndTag()

virtual bool iser::CCompactXmlReadArchiveBase::EndTag ( const iser::CArchiveTag tag)
overridevirtual

Ends a tagged section in the archive.

Must be called after BeginTag() or BeginMultiTag() to close the section. If tag skipping is supported and not all data was read, this will skip to the end of the tag section, enabling forward compatibility.

Parameters
tagThe same tag object passed to BeginTag() or BeginMultiTag()
Returns
true if successful, false on error
Note
Always call EndTag() even if errors occurred within the tag
The tag parameter must match the one used in BeginTag()
If IsTagSkippingSupported() returns false, you must read all data before calling EndTag()
static iser::CArchiveTag dataTag("Data", "My data");
if (archive.BeginTag(dataTag)) {
bool success = archive.Process(myData);
archive.EndTag(dataTag); // Always call, even if Process failed
if (!success) return false;
}
See also
BeginTag(), BeginMultiTag(), IsTagSkippingSupported()

Implements iser::IArchive.

◆ IsTagSkippingSupported()

virtual bool iser::CCompactXmlReadArchiveBase::IsTagSkippingSupported ( ) const
overridevirtual

Checks if skipping to the end of a tag on EndTag() is supported.

Some archive types (like XML) support skipping unread content within a tag, allowing forward compatibility. When reading an archive created by a newer version that added fields, this feature lets you skip unknown data.

Returns
true if the archive supports tag skipping, false otherwise
Note
Binary archives typically don't support skipping, requiring all data to be read sequentially.
XML and JSON archives usually support skipping.
if (archive.IsTagSkippingSupported()) {
// Can safely skip new fields added in future versions
} else {
// Must read all data in exact order
}
See also
EndTag()

Reimplemented from iser::CArchiveBase.

◆ Process()

virtual bool iser::CCompactXmlReadArchiveBase::Process ( QString &  value)
overridevirtual

Process primitive type.

Implements iser::IArchive.

◆ ReadStringNode()

bool iser::CCompactXmlReadArchiveBase::ReadStringNode ( QString &  text)
protected

◆ ReadTextNode()

virtual bool iser::CCompactXmlReadArchiveBase::ReadTextNode ( QByteArray &  text)
overrideprotectedvirtual

Read single unformatted text node.

Implements iser::CTextReadArchiveBase.

◆ SetContent()

bool iser::CCompactXmlReadArchiveBase::SetContent ( QIODevice *  devicePtr)
protected

Member Data Documentation

◆ m_currentParent

QDomElement iser::CCompactXmlReadArchiveBase::m_currentParent
protected

Definition at line 56 of file CCompactXmlReadArchiveBase.h.

◆ m_document

QDomDocument iser::CCompactXmlReadArchiveBase::m_document
protected

Definition at line 55 of file CCompactXmlReadArchiveBase.h.


The documentation for this class was generated from the following file: