MDSTk Libraries
1.1.0
Medical Data Segmentation Toolkit
|
Base class for all serializers. More...
#include <mdsSerializer.h>
Public Types | |
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 S | 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 | beginWrite (T &Object) |
Creates a new logical group of class members in the serialized data. | |
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 | 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. | |
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 | 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 | writeRoot (T &Object) |
Serializes a given data entity. | |
~CChannelSerializer () | |
Destructor. | |
Protected Member Functions | |
CChannelSerializer (CChannel *pChannel, int iFlags=0) | |
Hidden constructor. | |
CChannelSerializer (const CChannelSerializer &Serializer) | |
Hidden copy constructor. | |
CChannelSerializer & | operator= (const CChannelSerializer &Serializer) |
Hidden assignment operator. | |
Protected Attributes | |
int | m_Options |
Optional flags. | |
CChannelPtr | m_spChannel |
Pointer to the I/O channel. |
Base class for all serializers.
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 S mds::mod::CChannelSerializer< S >::tSerializer |
Serializer type.
mds::mod::CChannelSerializer< S >::~CChannelSerializer | ( | ) |
Destructor.
mds::mod::CChannelSerializer< S >::CChannelSerializer | ( | CChannel * | pChannel, |
int | iFlags = 0 |
||
) | [protected] |
Hidden constructor.
mds::mod::CChannelSerializer< S >::CChannelSerializer | ( | const CChannelSerializer< S > & | Serializer | ) | [protected] |
Hidden copy constructor.
CHasOptions& mds::base::CHasOptions::addOption | ( | int | Flag | ) | [inherited] |
Adds a given flag using bitwise OR operation.
void mds::mod::CProgress::beginProgress | ( | ) | [inherited] |
This function must be called by the class realizing an operation before it starts.
void mds::mod::CChannelSerializer< S >::beginRead | ( | T & | Object | ) |
Reads information on logical group of class members from the serialized data.
Reimplemented in mds::mod::CSHMSerializer, mds::mod::CBinarySerializer, mds::mod::CSHMSerializer, and mds::mod::CBinarySerializer.
void mds::mod::CChannelSerializer< S >::beginWrite | ( | T & | Object | ) |
Creates a new logical group of class members in the serialized data.
Reimplemented in mds::mod::CSHMSerializer, mds::mod::CBinarySerializer, mds::mod::CBinarySerializer, and mds::mod::CSHMSerializer.
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.
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::CChannelSerializer< S >::endRead | ( | T & | Object | ) |
Reads end of the logical group.
Reimplemented in mds::mod::CSHMSerializer, mds::mod::CBinarySerializer, mds::mod::CSHMSerializer, and mds::mod::CBinarySerializer.
void mds::mod::CChannelSerializer< S >::endWrite | ( | T & | Object | ) |
End of the logical group.
Reimplemented in mds::mod::CSHMSerializer, mds::mod::CBinarySerializer, mds::mod::CBinarySerializer, and mds::mod::CSHMSerializer.
CChannel* mds::mod::CChannelSerializer< S >::getChannelPtr | ( | ) |
Returns pointer to the I/O channel.
tSerializer& mds::mod::CChannelSerializer< S >::getImpl | ( | ) |
Returns reference to the serializer implementation.
const tSerializer& mds::mod::CChannelSerializer< S >::getImpl | ( | ) | const |
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.
CChannelSerializer& mds::mod::CChannelSerializer< S >::operator= | ( | const CChannelSerializer< S > & | Serializer | ) | [protected] |
Hidden assignment operator.
bool mds::mod::CProgress::progress | ( | int | iIncrement = 1 | ) | [inherited] |
Calls the registered observer.
Deserializes a given fundamental value.
Reimplemented in mds::mod::CSHMSerializer, mds::mod::CBinarySerializer, mds::mod::CSHMSerializer, and mds::mod::CBinarySerializer.
void mds::mod::CChannelSerializer< S >::read | ( | T * | pData, |
tSize | Length | ||
) |
Deserializes a given block of data.
Reimplemented in mds::mod::CSHMSerializer, mds::mod::CBinarySerializer, mds::mod::CSHMSerializer, and mds::mod::CBinarySerializer.
void mds::mod::CChannelSerializer< S >::readRoot | ( | T & | Object | ) |
Deserializes a given data entity.
Reimplemented in mds::mod::CSHMSerializer, mds::mod::CBinarySerializer, mds::mod::CSHMSerializer, and mds::mod::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< S >::setChannel | ( | CChannel * | pChannel | ) |
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::CChannelSerializer< S >::write | ( | const T & | Value | ) |
Serializes a given fundamental value.
Reimplemented in mds::mod::CSHMSerializer, mds::mod::CBinarySerializer, mds::mod::CSHMSerializer, and mds::mod::CBinarySerializer.
void mds::mod::CChannelSerializer< S >::write | ( | const T * | pData, |
tSize | Length | ||
) |
Serializes a given block of data.
Reimplemented in mds::mod::CSHMSerializer, mds::mod::CBinarySerializer, mds::mod::CSHMSerializer, and mds::mod::CBinarySerializer.
void mds::mod::CChannelSerializer< S >::writeRoot | ( | T & | Object | ) |
Serializes a given data entity.
Reimplemented in mds::mod::CSHMSerializer, mds::mod::CBinarySerializer, mds::mod::CSHMSerializer, and mds::mod::CBinarySerializer.
int mds::base::CHasOptions::m_Options [protected, inherited] |
Optional flags.
CChannelPtr mds::mod::CChannelSerializer< S >::m_spChannel [protected] |
Pointer to the I/O channel.