openMSX
|
#include <serialize.hh>
Public Member Functions | |
template<typename T , typename... Args> | |
void | serializeWithID (const char *tag, T &t, Args... args) |
void | serialize_blob (const char *tag, std::span< uint8_t > data, bool diff=true) |
template<typename T > | |
void | serialize (const char *tag, T &t) |
template<typename T > | |
void | serializePointerID (const char *tag, const T &t) |
template<typename T > | |
void | serializePolymorphic (const char *tag, T &t) |
template<typename T > | |
void | serializeOnlyOnce (const char *tag, const T &t) |
void | serializeChar (const char *tag, char &c) |
template<typename T , typename TUPLE > | |
void | doSerialize (const char *tag, T &t, TUPLE args, int id=0) |
Public Member Functions inherited from openmsx::ArchiveBase< Derived > | |
template<typename Base , typename T > | |
void | serializeBase (T &t) |
Is this archive a loader or a saver. | |
template<typename Base , typename T > | |
void | serializeInlinedBase (T &t, unsigned version) |
Serialize the base class of this classtype. | |
template<typename T > | |
void | serialize_blob (const char *tag, std::span< T > data, bool diff=true) |
template<typename T > | |
void | serialize_blob (const char *tag, std::span< const T > data, bool diff=true) |
bool | isReverseSnapshot () const |
Is this a reverse-snapshot? | |
template<typename T > | |
void | attribute (const char *name, T &t) |
Load/store an attribute from/in the archive. | |
void | attribute (const char *name, const char *value) |
bool | hasAttribute (const char *) const |
Check the presence of a (optional) attribute. | |
template<typename T > | |
std::optional< T > | findAttributeAs (const char *) |
Optimization: combination of hasAttribute() and getAttribute(). | |
int | countChildren () const |
Count the number of child tags. | |
void | beginTag (const char *) const |
Indicate begin of a tag. | |
void | endTag (const char *) const |
Indicate begin of a tag. | |
Public Member Functions inherited from openmsx::InputArchiveBase2 | |
void | beginSection () const |
void | endSection () const |
void * | getPointer (unsigned id) |
void | addPointer (unsigned id, const void *p) |
unsigned | getId (const void *p) const |
template<typename T > | |
void | resetSharedPtr (std::shared_ptr< T > &s, T *r) |
Protected Member Functions | |
InputArchiveBase ()=default | |
Protected Member Functions inherited from openmsx::ArchiveBase< Derived > | |
Derived & | self () |
Returns a reference to the most derived class. | |
Protected Member Functions inherited from openmsx::InputArchiveBase2 | |
InputArchiveBase2 ()=default | |
Additional Inherited Members | |
Static Public Attributes inherited from openmsx::ArchiveBase< Derived > | |
static constexpr bool | NEED_VERSION = true |
Does this archive store version information. | |
static constexpr bool | TRANSLATE_ENUM_TO_STRING = false |
Does this archive store enums as strings. | |
static constexpr bool | CAN_HAVE_OPTIONAL_ATTRIBUTES = false |
Some archives (like XML archives) can store optional attributes. | |
static constexpr bool | CAN_COUNT_CHILDREN = false |
Some archives (like XML archives) can count the number of subtags that belong to the current tag. | |
Static Public Attributes inherited from openmsx::InputArchiveBase2 | |
static constexpr bool | IS_LOADER = true |
Definition at line 565 of file serialize.hh.
|
protecteddefault |
|
inline |
Definition at line 619 of file serialize.hh.
References openmsx::ArchiveBase< Derived >::self(), and t.
Referenced by openmsx::InputArchiveBase< Derived >::serializeWithID().
|
inline |
Definition at line 577 of file serialize.hh.
References openmsx::ArchiveBase< Derived >::self(), and t.
void openmsx::InputArchiveBase< Derived >::serialize_blob | ( | const char * | tag, |
std::span< uint8_t > | data, | ||
bool | diff = true |
||
) |
Definition at line 138 of file serialize.cc.
References HexDump::decode_inplace().
|
inline |
Definition at line 609 of file serialize.hh.
References openmsx::ArchiveBase< Derived >::self().
|
inline |
Definition at line 601 of file serialize.hh.
References openmsx::InputArchiveBase2::getId(), openmsx::InputArchiveBase< Derived >::serializeWithID(), and t.
|
inline |
Definition at line 586 of file serialize.hh.
References openmsx::ArchiveBase< Derived >::self(), and t.
|
inline |
Definition at line 595 of file serialize.hh.
References openmsx::PolymorphicInitializerRegistry< Archive >::init(), and openmsx::ArchiveBase< Derived >::self().
|
inline |
Definition at line 569 of file serialize.hh.
References openmsx::InputArchiveBase< Derived >::doSerialize(), and t.
Referenced by openmsx::InputArchiveBase< Derived >::serializeOnlyOnce().