MDSTk Libraries
1.1.0
Medical Data Segmentation Toolkit
|
Serializer which encapsulates serialization of data entities and their members via channels. More...
#include <mdsBinarySerializer.h>
Public Types | |
enum | { CLASS_OBJECT } |
Templates that require members of the CObject class can use this enum to check the existence. More... | |
enum | { HEAP_OBJECT = 0x70616568 } |
Signature used to recognize objects on the heap. More... | |
typedef CChannelSerializer < CBinarySerializer > | tBase |
Base class. | |
typedef mds::base::CFunctor < bool, int, int > | tProgressFunc |
Progress observer (= functor). | |
typedef CProgressInitializer | tProgressInitializer |
Helper class which can be used to call methods beginProgress() and endProgress() automatically. | |
typedef CBinarySerializer | tSerializer |
Serializer type. | |
Public Member Functions | |
CHasOptions & | addOption (int Flag) |
Adds a given flag using bitwise OR operation. | |
void | beginProgress () |
This function must be called by the class realizing an operation before it starts. | |
template<typename T > | |
void | beginRead (T &Object) |
Reads information on logical group of class members from the serialized data. | |
template<typename T > | |
void | beginRead (T &Object) |
Reads information on logical group of class members from the serialized data. | |
template<typename T > | |
void | beginWrite (T &Object) |
Creates a new logical group of class members in the serialized data. | |
template<typename T > | |
void | beginWrite (T &Object) |
Creates a new logical group of class members in the serialized data. | |
CBinarySerializer (CChannel *pChannel, int iFlags=0) | |
Default constructor. | |
bool | checkAllOptions (int Flags) const |
Checks if all specified flags are set. | |
bool | checkAnyOption (int Flags) const |
Checks if any of specified flags is set. | |
int | checkOption (int Flag) const |
Checks if a single flag is set. | |
CHasOptions & | clearOption (int Flag) |
Removes a given flag. | |
void | deregisterProgressFunc () |
Sets the default empty observer. | |
void | endProgress () |
The function must be called by the class realizing an operation every time the operation finishes. | |
template<typename T > | |
void | endRead (T &Object) |
Reads end of the logical group. | |
template<typename T > | |
void | endRead (T &Object) |
Reads end of the logical group. | |
template<typename T > | |
void | endWrite (T &Object) |
End of the logical group. | |
template<typename T > | |
void | endWrite (T &Object) |
End of the logical group. | |
CChannel * | getChannelPtr () |
Returns pointer to the I/O channel. | |
tSerializer & | getImpl () |
Returns reference to the serializer implementation. | |
const tSerializer & | getImpl () const |
int | getOptions () const |
Returns all flags. | |
int | getProgressCount () const |
Returns current value of the internal progress value. | |
int | getProgressMax () const |
Returns the maximum allowed value of the internal progress counter. | |
int | getReferencesCount () const |
Returns the number of references. | |
bool | isOnHeap () const |
Returns true if the object is allocated on the heap. | |
MDS_SHAREDPTR (CBinarySerializer) | |
Smart pointer type. | |
bool | progress (int iIncrement=1) |
Calls the registered observer. | |
template<typename T > | |
void | read (T &Value) |
Deserializes a given fundamental value. | |
template<typename T > | |
void | read (T *pData, tSize Length) |
Deserializes a given block of data. | |
template<typename T > | |
void | read (T &Value) |
Deserializes a given fundamental value. | |
template<typename T > | |
void | read (T *pData, tSize Length) |
Deserializes a given block of data. | |
template<typename T > | |
void | readRoot (T &Object) |
Deserializes a given data entity. | |
template<typename T > | |
void | readRoot (T &Object) |
Deserializes a given data entity. | |
void | registerProgressFunc (const tProgressFunc &Func) |
Sets observer/functor called to inform a calling process about the current state of the running operation. | |
void | setChannel (CChannel *pChannel) |
Sets the I/O channel. | |
CHasOptions & | setOption (int Flag) |
Adds a given flag using bitwise OR operation. | |
CHasOptions & | setOptions (int Flags) |
Sets complete flags. | |
void | setProgressMax (int iValue) |
Sets the maximal counter value. | |
template<typename T > | |
void | write (const T &Value) |
Serializes a given fundamental value. | |
template<typename T > | |
void | write (const T *pData, tSize Length) |
Serializes a given block of data. | |
template<typename T > | |
void | write (const T &Value) |
Serializes a given fundamental value. | |
template<typename T > | |
void | write (const T *pData, tSize Length) |
Serializes a given block of data. | |
template<typename T > | |
void | writeRoot (T &Object) |
Serializes a given data entity. | |
template<typename T > | |
void | writeRoot (T &Object) |
Serializes a given data entity. | |
~CBinarySerializer () | |
Destructor. | |
Static Public Member Functions | |
static void * | operator new (std::size_t Size) |
Allocates a new object on the heap. | |
Protected Member Functions | |
void | addReference () const |
Increase the reference counter. | |
bool | delReference () const |
Decrease the reference counter. | |
Protected Attributes | |
int | m_iHeapObject |
Flag initialized if the object is on the heap. | |
int | m_iReferences |
The number of references to the object. | |
int | m_Options |
Optional flags. | |
CChannelPtr | m_spActiveChannel |
Smart pointer to actively used channel. | |
CChannelPtr | m_spChannel |
Pointer to the I/O channel. |
Serializer which encapsulates serialization of data entities and their members via channels.
Base class.
typedef mds::base::CFunctor<bool, int, int> mds::mod::CProgress::tProgressFunc [inherited] |
Progress observer (= functor).
typedef CProgressInitializer mds::mod::CProgress::tProgressInitializer [inherited] |
Helper class which can be used to call methods beginProgress() and endProgress() automatically.
Create static object of this type at the begining of a method that realizes an operation.
typedef CBinarySerializer mds::mod::CChannelSerializer< CBinarySerializer >::tSerializer [inherited] |
Serializer type.
anonymous enum [inherited] |
Templates that require members of the CObject class can use this enum to check the existence.
mds::mod::CBinarySerializer::CBinarySerializer | ( | CChannel * | pChannel, |
int | iFlags = 0 |
||
) |
Default constructor.
Destructor.
CHasOptions& mds::base::CHasOptions::addOption | ( | int | Flag | ) | [inherited] |
Adds a given flag using bitwise OR operation.
void mds::base::CObject::addReference | ( | ) | const [protected, inherited] |
Increase the reference counter.
void mds::mod::CProgress::beginProgress | ( | ) | [inherited] |
This function must be called by the class realizing an operation before it starts.
void mds::mod::CBinarySerializer::beginRead | ( | T & | Object | ) |
Reads information on logical group of class members from the serialized data.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::beginRead | ( | T & | Object | ) |
Reads information on logical group of class members from the serialized data.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::beginWrite | ( | T & | Object | ) |
Creates a new logical group of class members in the serialized data.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::beginWrite | ( | T & | Object | ) |
Creates a new logical group of class members in the serialized data.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
bool mds::base::CHasOptions::checkAllOptions | ( | int | Flags | ) | const [inherited] |
Checks if all specified flags are set.
bool mds::base::CHasOptions::checkAnyOption | ( | int | Flags | ) | const [inherited] |
Checks if any of specified flags is set.
int mds::base::CHasOptions::checkOption | ( | int | Flag | ) | const [inherited] |
Checks if a single flag is set.
CHasOptions& mds::base::CHasOptions::clearOption | ( | int | Flag | ) | [inherited] |
Removes a given flag.
bool mds::base::CObject::delReference | ( | ) | const [protected, inherited] |
Decrease the reference counter.
void mds::mod::CProgress::deregisterProgressFunc | ( | ) | [inherited] |
Sets the default empty observer.
void mds::mod::CProgress::endProgress | ( | ) | [inherited] |
The function must be called by the class realizing an operation every time the operation finishes.
void mds::mod::CBinarySerializer::endRead | ( | T & | Object | ) |
Reads end of the logical group.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::endRead | ( | T & | Object | ) |
Reads end of the logical group.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::endWrite | ( | T & | Object | ) |
End of the logical group.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::endWrite | ( | T & | Object | ) |
End of the logical group.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
CChannel* mds::mod::CChannelSerializer< CBinarySerializer >::getChannelPtr | ( | ) | [inherited] |
Returns pointer to the I/O channel.
tSerializer& mds::mod::CChannelSerializer< CBinarySerializer >::getImpl | ( | ) | [inherited] |
Returns reference to the serializer implementation.
const tSerializer& mds::mod::CChannelSerializer< CBinarySerializer >::getImpl | ( | ) | const [inherited] |
int mds::base::CHasOptions::getOptions | ( | ) | const [inherited] |
Returns all flags.
int mds::mod::CProgress::getProgressCount | ( | ) | const [inherited] |
Returns current value of the internal progress value.
int mds::mod::CProgress::getProgressMax | ( | ) | const [inherited] |
Returns the maximum allowed value of the internal progress counter.
int mds::base::CObject::getReferencesCount | ( | ) | const [inherited] |
Returns the number of references.
bool mds::base::CObject::isOnHeap | ( | ) | const [inherited] |
Returns true if the object is allocated on the heap.
Smart pointer type.
static void* mds::base::CObject::operator new | ( | std::size_t | Size | ) | [static, inherited] |
Allocates a new object on the heap.
bool mds::mod::CProgress::progress | ( | int | iIncrement = 1 | ) | [inherited] |
Calls the registered observer.
void mds::mod::CBinarySerializer::read | ( | T & | Value | ) |
Deserializes a given fundamental value.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::read | ( | T * | pData, |
tSize | Length | ||
) |
Deserializes a given block of data.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::read | ( | T & | Value | ) |
Deserializes a given fundamental value.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::read | ( | T * | pData, |
tSize | Length | ||
) |
Deserializes a given block of data.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::readRoot | ( | T & | Object | ) |
Deserializes a given data entity.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::readRoot | ( | T & | Object | ) |
Deserializes a given data entity.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CProgress::registerProgressFunc | ( | const tProgressFunc & | Func | ) | [inherited] |
Sets observer/functor called to inform a calling process about the current state of the running operation.
void mds::mod::CChannelSerializer< CBinarySerializer >::setChannel | ( | CChannel * | pChannel | ) | [inherited] |
Sets the I/O channel.
CHasOptions& mds::base::CHasOptions::setOption | ( | int | Flag | ) | [inherited] |
Adds a given flag using bitwise OR operation.
CHasOptions& mds::base::CHasOptions::setOptions | ( | int | Flags | ) | [inherited] |
Sets complete flags.
void mds::mod::CProgress::setProgressMax | ( | int | iValue | ) | [inherited] |
Sets the maximal counter value.
void mds::mod::CBinarySerializer::write | ( | const T & | Value | ) |
Serializes a given fundamental value.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::write | ( | const T * | pData, |
tSize | Length | ||
) |
Serializes a given block of data.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::write | ( | const T & | Value | ) |
Serializes a given fundamental value.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::write | ( | const T * | pData, |
tSize | Length | ||
) |
Serializes a given block of data.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::writeRoot | ( | T & | Object | ) |
Serializes a given data entity.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
void mds::mod::CBinarySerializer::writeRoot | ( | T & | Object | ) |
Serializes a given data entity.
Reimplemented from mds::mod::CChannelSerializer< CBinarySerializer >.
int mds::base::CObject::m_iHeapObject [mutable, protected, inherited] |
Flag initialized if the object is on the heap.
int mds::base::CObject::m_iReferences [mutable, protected, inherited] |
The number of references to the object.
int mds::base::CHasOptions::m_Options [protected, inherited] |
Optional flags.
Smart pointer to actively used channel.
CChannelPtr mds::mod::CChannelSerializer< CBinarySerializer >::m_spChannel [protected, inherited] |
Pointer to the I/O channel.