F´ Flight Software - C/C++ Documentation NASA-v1.6.0
A framework for building embedded system applications to NASA flight quality standards.
|
#include <Fw/Tlm/TlmString.hpp>
Public Types | |
enum | { SERIALIZED_TYPE_ID = FW_TYPEID_TLM_STR , SERIALIZED_SIZE = FW_TLM_STRING_MAX_SIZE + sizeof(FwBuffSizeType) } |
Public Member Functions | |
TlmString () | |
TlmString (const TlmString &src) | |
TlmString string constructor. | |
TlmString (const StringBase &src) | |
other string constructor | |
TlmString (const char *src) | |
char* source constructor | |
TlmString & | operator= (const TlmString &other) |
assignment operator | |
TlmString & | operator= (const StringBase &other) |
other string assignment operator | |
TlmString & | operator= (const char *other) |
char* assignment operator | |
~TlmString () | |
const char * | toChar () const override |
NATIVE_UINT_TYPE | getCapacity () const override |
return size of buffer | |
SerializeStatus | serialize (SerializeBufferBase &buffer) const override |
serialization function | |
SerializeStatus | serialize (SerializeBufferBase &buffer, NATIVE_UINT_TYPE maxLen) const override |
serialization function | |
SerializeStatus | deserialize (SerializeBufferBase &buffer) override |
deserialization function | |
Public Member Functions inherited from Fw::StringBase | |
virtual const CHAR * | toChar () const =0 |
virtual NATIVE_UINT_TYPE | getCapacity () const =0 |
return size of buffer | |
NATIVE_UINT_TYPE | length () const |
Get length of string. | |
const CHAR * | operator+= (const CHAR *src) |
Concatenate a CHAR*. | |
const StringBase & | operator+= (const StringBase &src) |
Concatenate a StringBase. | |
bool | operator== (const StringBase &other) const |
Check for equality with StringBase. | |
bool | operator== (const CHAR *other) const |
Check for equality with CHAR*. | |
bool | operator!= (const StringBase &other) const |
Inequality with StringBase. | |
bool | operator!= (const CHAR *other) const |
Inequality with CHAR*. | |
StringBase & | operator= (const CHAR *src) |
Assign CHAR*. | |
StringBase & | operator= (const StringBase &src) |
Assign another StringBase. | |
void | format (const CHAR *formatString,...) |
write formatted string to buffer | |
virtual SerializeStatus | serialize (SerializeBufferBase &buffer) const |
serialization function | |
virtual SerializeStatus | serialize (SerializeBufferBase &buffer, NATIVE_UINT_TYPE maxLen) const |
serialization function | |
virtual SerializeStatus | deserialize (SerializeBufferBase &buffer) |
deserialization function | |
virtual SerializeStatus | serialize (SerializeBufferBase &buffer) const =0 |
serialize contents | |
virtual SerializeStatus | deserialize (SerializeBufferBase &buffer)=0 |
deserialize to contents | |
Additional Inherited Members | |
Protected Member Functions inherited from Fw::StringBase | |
StringBase () | |
virtual | ~StringBase () |
void | appendBuff (const CHAR *buff, NATIVE_UINT_TYPE size) |
Protected Member Functions inherited from Fw::Serializable | |
Serializable () | |
Default constructor. | |
virtual | ~Serializable () |
destructor | |
Definition at line 10 of file TlmString.hpp.
anonymous enum |
Enumerator | |
---|---|
SERIALIZED_TYPE_ID | |
SERIALIZED_SIZE |
Definition at line 13 of file TlmString.hpp.
Fw::TlmString::TlmString | ( | ) |
Definition at line 18 of file TlmString.cpp.
Fw::TlmString::TlmString | ( | const TlmString & | src | ) |
TlmString string constructor.
Definition at line 14 of file TlmString.cpp.
Fw::TlmString::TlmString | ( | const StringBase & | src | ) |
other string constructor
Definition at line 10 of file TlmString.cpp.
Fw::TlmString::TlmString | ( | const char * | src | ) |
char* source constructor
Definition at line 6 of file TlmString.cpp.
Fw::TlmString::~TlmString | ( | ) |
Definition at line 45 of file TlmString.cpp.
|
overridevirtual |
deserialization function
Reimplemented from Fw::StringBase.
Definition at line 75 of file TlmString.cpp.
|
overridevirtual |
TlmString & Fw::TlmString::operator= | ( | const char * | other | ) |
char* assignment operator
Definition at line 40 of file TlmString.cpp.
TlmString & Fw::TlmString::operator= | ( | const StringBase & | other | ) |
other string assignment operator
Definition at line 31 of file TlmString.cpp.
assignment operator
Definition at line 22 of file TlmString.cpp.
|
overridevirtual |
serialization function
Reimplemented from Fw::StringBase.
Definition at line 56 of file TlmString.cpp.
|
overridevirtual |
serialization function
Reimplemented from Fw::StringBase.
Definition at line 60 of file TlmString.cpp.
|
overridevirtual |
Implements Fw::StringBase.
Definition at line 48 of file TlmString.cpp.