#include <dataserialize.h>
This is the base class for generic serialization of any data type. For reading and writing the interfaces are split into DataSerializeReaderInterface and DataSerializeWriterInterface. The DataFormatReaderInterface and DataFormatWriterInterface can add specific serialization for data types. The DataSerializeReaderClasses and DataSerializeWriterClasses registry lists all possible formats. io_overview_describeio
Public Member Functions | |
MAXON_METHOD Result< void > | DescribeElement (const Char *name, const DataType &dt, Int objectOffset, KeyValueConversionFunc *func, DESCRIBEFLAGS flags, UInt64 mask, UInt64 value) const |
MAXON_METHOD Result< void > | PrepareHelperClass (CreateIoHelperFunc *createFunc, DeleteIoHelperFunc *deleteFunc, ReadIoHelperFunc *readFunc, WriteIoHelperFunc *writeFunc, PREPAREHELPERFLAGS flags) const |
MAXON_METHOD Result< void > | RegisterObjectSubstitution (ReferenceSubstitutionFunction &&func) |
MAXON_METHOD Result< void * > | RegisterDefaults (CreateIoHelperFunc *createFunc, DeleteIoHelperFunc *deleteFunc) const |
template<typename HELPERCLASS , typename MAINCLASS > | |
Result< void > | PrepareHelperClass (PREPAREHELPERFLAGS flags) const |
template<typename CLASSNAME , typename CMP , decltype(DESCRIBEFLAGS::_value) FLAGS, typename T > | |
Result< void > | DescribeElement (const Char *fileName, const UniqueRef< T > *member, decltype(DESCRIBEFLAGS::_value) additional, UInt64 mask=0, UInt64 value=0) const |
template<typename CLASSNAME , typename CMP , decltype(DESCRIBEFLAGS::_value) FLAGS, typename T > | |
Result< void > | DescribeElement (const Char *fileName, const WeakRef< T > *member, decltype(DESCRIBEFLAGS::_value) additional, UInt64 mask=0, UInt64 value=0) const |
template<typename CLASSNAME , typename CMP , decltype(DESCRIBEFLAGS::_value) FLAGS, typename T > | |
std::enable_if< GetCollectionKind< T >::value==COLLECTION_KIND::NONE, Result< void > >::type | DescribeElement (const Char *fileName, const T *member, decltype(DESCRIBEFLAGS::_value) additional, UInt64 mask=0, UInt64 value=0) const |
template<typename CLASSNAME , typename CMP , decltype(DESCRIBEFLAGS::_value) FLAGS, typename T > | |
std::enable_if< GetCollectionKind< T >::value==COLLECTION_KIND::ARRAY, Result< void > >::type | DescribeElement (const Char *fileName, const T *member, decltype(DESCRIBEFLAGS::_value) additional) const |
template<typename CLASSNAME , typename CMP , decltype(DESCRIBEFLAGS::_value) FLAGS, typename T > | |
std::enable_if< GetCollectionKind< T >::value==COLLECTION_KIND::SET, Result< void > >::type | DescribeElement (const Char *fileName, const T *member, decltype(DESCRIBEFLAGS::_value) additional) const |
template<typename CLASSNAME , typename CMP , decltype(DESCRIBEFLAGS::_value) FLAGS, typename T > | |
std::enable_if< GetCollectionKind< T >::value==COLLECTION_KIND::MAP, Result< void > >::type | DescribeElement (const Char *fileName, const T *member, decltype(DESCRIBEFLAGS::_value) additional) const |
Private Member Functions | |
MAXON_INTERFACE (DataSerializeInterface, MAXON_REFERENCE_NORMAL, "net.maxon.interface.dataserialize") | |
|
private |
MAXON_METHOD Result<void> DescribeElement | ( | const Char * | name, |
const DataType & | dt, | ||
Int | objectOffset, | ||
KeyValueConversionFunc * | func, | ||
DESCRIBEFLAGS | flags, | ||
UInt64 | mask, | ||
UInt64 | value | ||
) | const |
Describes an element for I/O operations. Usually this routine is not directly called. Instead the helper-defines Describe
, DescribeHelper
, DescribeIf
etc. are used.
[in] | name | The clear-text name of an element in the file format. It can be arbitrarily chosen, but usually matches the respective member name. Once it has been used in files the identifier needs to stay the same to remain compatible (unless some conversion code is added). The name must only contain (latin) alphanumeric characters or '_' and it must not start with a numeric character. 'name' must be permanently available (and not only during the time of this call). |
[in] | dt | The data type of the member (a registered data type must exist). |
[in] | objectOffset | The offset position of the member in the class (or the helper class). |
[in] | func | A conversion function that translates an address into the appropriate accessor interface (e.g. MapInterface or ArrayInterface). |
[in] | flags | Properties of the element. |
[in] | mask | Conditional mask for DESCRIBEFLAGS::CONDITION_IF and DESCRIBEFLAGS::CONDITION_ELSE. |
[in] | value | Conditional value for DESCRIBEFLAGS::CONDITION_IF and DESCRIBEFLAGS::CONDITION_ELSE. |
MAXON_METHOD Result<void> PrepareHelperClass | ( | CreateIoHelperFunc * | createFunc, |
DeleteIoHelperFunc * | deleteFunc, | ||
ReadIoHelperFunc * | readFunc, | ||
WriteIoHelperFunc * | writeFunc, | ||
PREPAREHELPERFLAGS | flags | ||
) | const |
Declares and prepares a helper class. This can only be done once within DescribeIO. The helper class is used to convert I/O data and initialize temporary values. Usually this routine is not directly called. Instead the helper-define @ PrepareHelper is used.
[in] | createFunc | The function to create the helper class. |
[in] | deleteFunc | The function to delete the helper class. |
[in] | readFunc | The function pointing to the helper's ReadAction member function. |
[in] | writeFunc | The function pointing to the helper's WriteAction member function. |
[in] | flags | Properties of the helper. |
MAXON_METHOD Result<void> RegisterObjectSubstitution | ( | ReferenceSubstitutionFunction && | func | ) |
Registers a substitution function to replace virtual objects (objects with virtual interfaces) during the I/O process. The registration must happen before the main Read/Write call. The substitution will be able to write a different object than the one that exists in memory - or restore a different object than what is written into the stream. An example is e.g. RPC: instead of writing a WindowRef object only an object containing an Id is written to the file. On the other side then the object with the Id is read and a RPC WindowRef created. Substitutions fully support the referencing system, so all StrongReferences and WeakReferences will remain valid.
[in] | func | The substitution function (used for both reading and writing). |
MAXON_METHOD Result<void*> RegisterDefaults | ( | CreateIoHelperFunc * | createFunc, |
DeleteIoHelperFunc * | deleteFunc | ||
) | const |
Registers a class to support a later default value comparison. If the writer supports this feature an allocated class (using the createFunc) will be returned. Otherwise a nullptr is returned, which is no error state.
[in] | createFunc | The function to create the class. |
[in] | deleteFunc | The function to delete the class. |
Result<void> PrepareHelperClass | ( | PREPAREHELPERFLAGS | flags | ) | const |
Result<void> DescribeElement | ( | const Char * | fileName, |
const UniqueRef< T > * | member, | ||
decltype(DESCRIBEFLAGS::_value) | additional, | ||
UInt64 | mask = 0 , |
||
UInt64 | value = 0 |
||
) | const |
Result<void> DescribeElement | ( | const Char * | fileName, |
const WeakRef< T > * | member, | ||
decltype(DESCRIBEFLAGS::_value) | additional, | ||
UInt64 | mask = 0 , |
||
UInt64 | value = 0 |
||
) | const |
std::enable_if<GetCollectionKind<T>::value == COLLECTION_KIND::NONE, Result<void> >::type DescribeElement | ( | const Char * | fileName, |
const T * | member, | ||
decltype(DESCRIBEFLAGS::_value) | additional, | ||
UInt64 | mask = 0 , |
||
UInt64 | value = 0 |
||
) | const |
std::enable_if<GetCollectionKind<T>::value == COLLECTION_KIND::ARRAY, Result<void> >::type DescribeElement | ( | const Char * | fileName, |
const T * | member, | ||
decltype(DESCRIBEFLAGS::_value) | additional | ||
) | const |
std::enable_if<GetCollectionKind<T>::value == COLLECTION_KIND::SET, Result<void> >::type DescribeElement | ( | const Char * | fileName, |
const T * | member, | ||
decltype(DESCRIBEFLAGS::_value) | additional | ||
) | const |
std::enable_if<GetCollectionKind<T>::value == COLLECTION_KIND::MAP, Result<void> >::type DescribeElement | ( | const Char * | fileName, |
const T * | member, | ||
decltype(DESCRIBEFLAGS::_value) | additional | ||
) | const |