GlobalObjects
Loading...
Searching...
No Matches
glo::CharRecordAttribute Class Reference

Class for the char attributes of a Record. Represents an attribute of type 'char' of a Record. More...

#include <GloCharRecordAttribute.h>

Inheritance diagram for glo::CharRecordAttribute:

Public Member Functions

 CharRecordAttribute (ClassInfoAttribute *pType, char cValue, const std::streampos &rFilePos)
 
 CharRecordAttribute (ClassInfoAttribute *pType, const std::streampos &rFilePos)
 
virtual bool dataIsFieldContent () const
 
virtual BaseRecordAttributegetCopy ()
 
virtual unsigned short getDataFieldLength () const
 
virtual std::string getValueAsDataString () const
 
virtual std::string getValueAsDisplayString () const
 
virtual std::string getValueAsStreamString () const
 
virtual std::string getValueAsString () const
 
virtual void * getValueAsVoidPointer ()
 
const char & getValueRef () const
 
virtual void initNew ()
 
void setValue (char cValue)
 
virtual void setValueFromVoid (void *pValue)
 
virtual int takeValue (const BaseRecordAttribute &rT)
 
bool operator== (const CharRecordAttribute &rT) const
 Comparison operator, all attributes are compared.
 
bool operator!= (const CharRecordAttribute &rT) const
 Comparison operator, all attributes are compared.
 
- Public Member Functions inherited from glo::INumRecordAttribute
 INumRecordAttribute (ClassInfoAttribute *pType, const std::streampos &rFilePos)
 
template<typename T >
std::string getTValueAsString (const T &rTValue, bool bFillBlanks) const
 
bool operator== (const INumRecordAttribute &rT) const
 Comparison operator, all attributes are compared.
 
bool operator!= (const INumRecordAttribute &rT) const
 Comparison operator, all attributes are compared.
 
- Public Member Functions inherited from glo::BaseRecordAttribute
 BaseRecordAttribute (ClassInfoAttribute *pClassInfoAttribut, const std::streampos &rFilePos)
 
virtual ~BaseRecordAttribute ()
 
unsigned int forget ()
 
AttributeID getAttributeID () const
 
virtual int getAttributeValueBlob (eut::Blob &rBlob) const
 
ClassInfoAttributegetClassInfoAttribute () const
 
std::string getClassMemberName () const
 
std::string getClassName () const
 
virtual std::string getDataReference () const
 
EnDataType getDataType () const
 
std::string getFieldName () const
 
int getFieldPos ()
 
std::streampos getFilePosition () const
 
virtual int getFormattedFieldContents (std::string &rsRetVal, DATA_REFERENCE_INFO &rRetValInfo, ObjID ObjID)
 
EnDataTypeGroup getInfoType ()
 
unsigned int getReferenceCount () const
 
std::string getTableFieldName () const
 
std::string getTableName () const
 
ClassInfoAttribute::Type getType () const
 
std::string getTypeAsCppString () const
 
std::string getTypeAsString () const
 
std::string getTypeInfo () const
 
unsigned int remember ()
 
virtual void setDataReference (const std::string &rsDataReference)
 
void setFilePosition (const std::streampos &rFilePos)
 
virtual int setValueFromObjectAttributeID (Persistent &rObject, const AttributeID &rAttributeID)
 
virtual int updateDataReference (const std::string &rsDataPath, DATA_REFERENCE_INFO MethodInfo)
 
bool operator== (const BaseRecordAttribute &rT) const
 Comparison operator, all attributes are compared.
 
bool operator!= (const BaseRecordAttribute &rT) const
 Comparison operator, all attributes are compared.
 

Protected Member Functions

 CharRecordAttribute ()
 
 CharRecordAttribute (const CharRecordAttribute &rT)
 
virtual ~CharRecordAttribute ()
 
- Protected Member Functions inherited from glo::INumRecordAttribute
 INumRecordAttribute ()
 
 INumRecordAttribute (const INumRecordAttribute &rT)
 
virtual ~INumRecordAttribute ()
 
- Protected Member Functions inherited from glo::BaseRecordAttribute
 BaseRecordAttribute ()
 
 BaseRecordAttribute (const BaseRecordAttribute &rT)
 

Private Member Functions

CharRecordAttributeoperator= (const CharRecordAttribute &)
 

Private Attributes

char m_cValue
 

Detailed Description

Class for the char attributes of a Record. Represents an attribute of type 'char' of a Record.

Author
Helmut Jakoby

Constructor & Destructor Documentation

◆ CharRecordAttribute() [1/4]

glo::CharRecordAttribute::CharRecordAttribute ( )
protected

The standard constructor is not available.

◆ ~CharRecordAttribute()

virtual glo::CharRecordAttribute::~CharRecordAttribute ( )
protectedvirtual

The destructor is not available. The object may only be removed from memory using forget().

◆ CharRecordAttribute() [2/4]

glo::CharRecordAttribute::CharRecordAttribute ( ClassInfoAttribute * pType,
const std::streampos & rFilePos )

Constructor with parameter passing.

Parameters
[in]pTypeA class information attribute is expected.
[in]rFilePosThe file position.
Exceptions
eut::ErrorNExceptionAn exception will be thrown if an error occurs.
Attention
Since objects of these classes are only instantiated by internal objects like Record and TableReaderInterface, and they know what they are doing, a type check of the class information attribute is omitted!

◆ CharRecordAttribute() [3/4]

glo::CharRecordAttribute::CharRecordAttribute ( ClassInfoAttribute * pType,
char cValue,
const std::streampos & rFilePos )

Constructor with parameter passing.

Parameters
[in]pTypeA class information attribute is expected.
[in]cValueThe value of the attribute.
[in]rFilePosThe file position.
Exceptions
eut::ErrorNExceptionAn exception will be thrown if an error occurs.
Attention
Since objects of these classes are only instantiated by internal objects like Record and TableReaderInterface, and they know what they are doing, a type check of the class information attribute is omitted!

◆ CharRecordAttribute() [4/4]

glo::CharRecordAttribute::CharRecordAttribute ( const CharRecordAttribute & rT)
protected

Copy constructor.

Parameters
[in]rTThe data is copied from this object.
See also
getCopy()

Member Function Documentation

◆ dataIsFieldContent()

virtual bool glo::CharRecordAttribute::dataIsFieldContent ( ) const
virtual

Returns true, because the attribute data is stored as field content.

Returns
see above

Implements glo::BaseRecordAttribute.

◆ getCopy()

virtual BaseRecordAttribute * glo::CharRecordAttribute::getCopy ( )
virtual

Returns a copy of the object. Sometimes a copy of an attribute is needed, e.g. if a deep-copied record (with copied attributes) is needed.

Returns
The copy of this attribute
Attention
The supplied object must be removed from memory by the calling instance.

Implements glo::BaseRecordAttribute.

◆ getDataFieldLength()

virtual unsigned short glo::CharRecordAttribute::getDataFieldLength ( ) const
virtual

Returns the record field length of the attribute value.

Returns
The field length.
See also
CHAR_TEXT_LENGTH

Implements glo::BaseRecordAttribute.

◆ getValueAsDataString()

virtual std::string glo::CharRecordAttribute::getValueAsDataString ( ) const
virtual

Returns the value as a formatted data string with the correct length with the correct length for the entry in the table file.

Returns
The value as formatted data string.

Implements glo::BaseRecordAttribute.

◆ getValueAsDisplayString()

virtual std::string glo::CharRecordAttribute::getValueAsDisplayString ( ) const
virtual

Returns the value as it can be displayed for the GUI.

Returns
The value for the display.

Implements glo::BaseRecordAttribute.

◆ getValueAsStreamString()

virtual std::string glo::CharRecordAttribute::getValueAsStreamString ( ) const
virtual

Returns the value as string for the DataStreamer.

Returns
The value for the DataStreamer. The char is converted into an integer and then delivered as a string.

Implements glo::BaseRecordAttribute.

◆ getValueAsString()

virtual std::string glo::CharRecordAttribute::getValueAsString ( ) const
virtual

Returns the value as string.

Returns
The value as string.

Implements glo::BaseRecordAttribute.

◆ getValueAsVoidPointer()

virtual void * glo::CharRecordAttribute::getValueAsVoidPointer ( )
virtual

Returns a raw pointer to the value.

Returns
The raw pointer to the value.

Implements glo::BaseRecordAttribute.

◆ getValueRef()

const char & glo::CharRecordAttribute::getValueRef ( ) const

Returns the reference to the value.

Returns
The value.

◆ initNew()

virtual void glo::CharRecordAttribute::initNew ( )
virtual

Reinitializes the attribute, the value is set to 0.

Implements glo::BaseRecordAttribute.

◆ operator!=()

bool glo::CharRecordAttribute::operator!= ( const CharRecordAttribute & rT) const

Comparison operator, all attributes are compared.

Parameters
[in]rTThe object to be compared with this one.

◆ operator=()

CharRecordAttribute & glo::CharRecordAttribute::operator= ( const CharRecordAttribute & )
private

The assignment operator is not available.

◆ operator==()

bool glo::CharRecordAttribute::operator== ( const CharRecordAttribute & rT) const

Comparison operator, all attributes are compared.

Parameters
[in]rTThe object to be compared with this one.

◆ setValue()

void glo::CharRecordAttribute::setValue ( char cValue)

Sets the value of the attribute.

Parameters
[in]cValueThe new value.

◆ setValueFromVoid()

virtual void glo::CharRecordAttribute::setValueFromVoid ( void * pValue)
virtual

Sets the value of the attribute. Is assigned via a static_cast.

Parameters
[in]pValueThe raw pointer to the value.

Implements glo::BaseRecordAttribute.

◆ takeValue()

virtual int glo::CharRecordAttribute::takeValue ( const BaseRecordAttribute & rT)
virtual

Adopts the value from transferred attribute, if possible. An attempt is made to cast the value in some way.

Parameters
[in]rTThe persistent attribute from which the values are to be taken.
Returns
An error respectively warning message from subclasses will be delivered if the cast does not work.

Reimplemented from glo::BaseRecordAttribute.

Member Data Documentation

◆ m_cValue

char glo::CharRecordAttribute::m_cValue
private

The value of the attribute.


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