GM6000 Digital Heater Controller Branch: main
SDX-1330
List of all members | Public Member Functions | Protected Member Functions | Protected Attributes
Cpl::Text::String_ Class Reference

This partially concrete class implements the portions of the String Api that is independent of the internal storage mechanisms. More...

Detailed Description

This partially concrete class implements the portions of the String Api that is independent of the internal storage mechanisms.

#include <String_.h>

Inheritance diagram for Cpl::Text::String_:
[legend]
Collaboration diagram for Cpl::Text::String_:
[legend]

Public Member Functions

void clear ()
 See Cpl::Text::String.
 
 operator char () const
 See Cpl::Text::String.
 
int length () const
 See Cpl::Text::String.
 
bool isEmpty () const
 See Cpl::Text::String.
 
bool truncated () const
 See Cpl::Text::String.
 
bool operator== (const char *string) const
 See Cpl::Text::String.
 
bool operator== (const String &string) const
 See Cpl::Text::String.
 
bool operator!= (const char *string) const
 See Cpl::Text::String.
 
bool operator!= (const String &string) const
 See Cpl::Text::String.
 
bool isEqualIgnoreCase (const char *string) const
 See Cpl::Text::String.
 
int compare (const char *string) const
 See Cpl::Text::String.
 
int compareIgnoreCase (const char *string) const
 See Cpl::Text::String.
 
bool operator== (char c) const
 See Cpl::Text::String.
 
bool isEqualSubstring (int startpos, int endpos, const char *string) const
 See Cpl::Text::String.
 
bool isEqualSubstringIgnoreCase (int startpos, int endpos, const char *string) const
 See Cpl::Text::String.
 
bool startsWith (const char *string) const
 See Cpl::Text::String.
 
bool startsWith (const char *string, int startOffset) const
 See Cpl::Text::String.
 
bool endsWith (const char *string) const
 See Cpl::Text::String.
 
void format (const char *format,...)
 See Cpl::Text::String.
 
void formatAppend (const char *format,...)
 See Cpl::Text::String.
 
void formatOpt (bool appendFlag, const char *format,...)
 See Cpl::Text::String.
 
void vformat (const char *format, va_list ap)
 See Cpl::Text::String.
 
void vformatAppend (const char *format, va_list ap)
 See Cpl::Text::String.
 
void vformatOpt (bool appendFlag, const char *format, va_list ap)
 See Cpl::Text::String.
 
int indexOf (char c) const
 See Cpl::Text::String.
 
int indexOf (char c, int startpos) const
 See Cpl::Text::String.
 
int indexOf (const char *str) const
 See Cpl::Text::String.
 
int indexOf (const char *str, int startpos) const
 See Cpl::Text::String.
 
int lastIndexOf (char c) const
 See Cpl::Text::String.
 
int count (char c) const
 See Cpl::Text::String.
 
const char * toUpper ()
 See Cpl::Text::String.
 
const char * toLower ()
 See Cpl::Text::String.
 
void removeLeadingSpaces ()
 See Cpl::Text::String.
 
void removeTrailingSpaces ()
 See Cpl::Text::String.
 
void removeLeadingChars (const char *charsSet)
 See Cpl::Text::String.
 
void removeTrailingChars (const char *charsSet)
 See Cpl::Text::String.
 
void cut (int startpos, int endpos)
 See Cpl::Text::String.
 
void trimRight (int n)
 See Cpl::Text::String.
 
void setChar (int atPosition, char newchar)
 See Cpl::Text::String.
 
int replace (char targetChar, char newChar)
 See Cpl::Text::String.
 
const char * getString () const
 See Cpl::Text::String.
 
char * getBuffer (int &maxAllowedLength)
 See Cpl::Text::String.
 
Cpl::Text::Stringoperator= (const String &string)
 Assignment.
 
Cpl::Text::Stringoperator= (const char *string)
 Assignment.
 
Cpl::Text::Stringoperator= (char c)
 Assignment.
 
Cpl::Text::Stringoperator+= (const String &string)
 Append.
 
Cpl::Text::Stringoperator+= (const char *string)
 Append.
 
Cpl::Text::Stringoperator+= (char c)
 Append.
 
int compareKey (const Key &key) const
 See Cpl::Container::Key.
 
const void * getRawKey (unsigned *returnRawKeyLenPtr=0) const
 See Cpl::Container::Key.
 
- Public Member Functions inherited from Cpl::Text::String
virtual ~String ()
 Virtual destructor!
 
virtual Cpl::Text::Stringoperator= (int num)=0
 Converts the 'number' to a string and stores its in the internal storage of the object.
 
virtual Cpl::Text::Stringoperator= (unsigned int num)=0
 Converts the 'number' to a string and stores its in the internal storage of the object.
 
virtual Cpl::Text::Stringoperator= (long num)=0
 Converts the 'number' to a string and stores its in the internal storage of the object.
 
virtual Cpl::Text::Stringoperator= (long long num)=0
 Converts the 'number' to a string and stores its in the internal storage of the object.
 
virtual Cpl::Text::Stringoperator= (unsigned long num)=0
 Converts the 'number' to a string and stores its in the internal storage of the object.
 
virtual Cpl::Text::Stringoperator= (unsigned long long num)=0
 Converts the 'number' to a string and stores its in the internal storage of the object.
 
virtual void copyIn (const char *string, int n)=0
 This method copies the content of the source string, up to 'n' characters, into internal storage of the object.
 
virtual void insertAt (int insertOffset, const char *stringToInsert)=0
 This method inserts the specified string starting at the specified offset.
 
virtual Cpl::Text::Stringoperator+= (int num)=0
 Converts the 'number' to a string and appends its to the end of the string.
 
virtual Cpl::Text::Stringoperator+= (unsigned int num)=0
 Converts the 'number' to a string and appends its to the end of the string.
 
virtual Cpl::Text::Stringoperator+= (long num)=0
 Converts the 'number' to a string and appends its to the end of the string.
 
virtual Cpl::Text::Stringoperator+= (long long num)=0
 Converts the 'number' to a string and appends its to the end of the string.
 
virtual Cpl::Text::Stringoperator+= (unsigned long num)=0
 Converts the 'number' to a string and appends its to the end of the string.
 
virtual Cpl::Text::Stringoperator+= (unsigned long long num)=0
 Converts the 'number' to a string and appends its to the end of the string.
 
virtual void appendTo (const char *string, int n)=0
 This method appends the content of the source string, up to 'n' characters, into internal storage of the object.
 
 operator const char * () const
 Cast to read-only character string pointer.
 
const char * operator() () const
 Returns a Read-only pointer to the "raw" (short-hand for getString())
 
char operator[] (int i) const
 Returns the specified character. If n is out-bounds, then '\0' is returned.
 
virtual int maxLength () const =0
 Returns the max allowed size of the string.
 
int availLength ()
 Returns the available space left in the internal buffer.
 
void trimLeft (int n)
 Removes 'n' characters from the start-of-string.
 
- Public Member Functions inherited from Cpl::Container::Key
virtual ~Key ()
 Ensure a Virtual destructor.
 
virtual int compareKey (const Key &key) const =0
 Key Compare function.
 

Protected Member Functions

 String_ (char *internalStringPtr)
 Constructor.
 
void validateSizeAfterFormat (int availableLen, int formattedLen, int maxlen)
 Sets the truncated flag if needed and insures string is null terminated.
 

Protected Attributes

bool m_truncated
 Flag to track when the internal string get truncated.
 
char * m_strPtr
 Pointer to the actual internal string.
 

Constructor & Destructor Documentation

◆ String_()

Cpl::Text::String_::String_ ( char *  internalStringPtr)
protected

Constructor.

Member Function Documentation

◆ clear()

void Cpl::Text::String_::clear ( )
virtual

◆ compare()

int Cpl::Text::String_::compare ( const char *  string) const
virtual

◆ compareIgnoreCase()

int Cpl::Text::String_::compareIgnoreCase ( const char *  string) const
virtual

◆ compareKey()

int Cpl::Text::String_::compareKey ( const Key &  key) const

◆ count()

int Cpl::Text::String_::count ( char  c) const
virtual

◆ cut()

void Cpl::Text::String_::cut ( int  startpos,
int  endpos 
)
virtual

◆ endsWith()

bool Cpl::Text::String_::endsWith ( const char *  string) const
virtual

◆ format()

void Cpl::Text::String_::format ( const char *  format,
  ... 
)
virtual

◆ formatAppend()

void Cpl::Text::String_::formatAppend ( const char *  format,
  ... 
)
virtual

◆ formatOpt()

void Cpl::Text::String_::formatOpt ( bool  appendFlag,
const char *  format,
  ... 
)
virtual

◆ getBuffer()

char * Cpl::Text::String_::getBuffer ( int &  maxAllowedLength)
virtual

◆ getRawKey()

const void * Cpl::Text::String_::getRawKey ( unsigned *  returnRawKeyLenPtr = 0) const
virtual

◆ getString()

const char * Cpl::Text::String_::getString ( ) const
virtual

◆ indexOf() [1/4]

int Cpl::Text::String_::indexOf ( char  c) const
virtual

◆ indexOf() [2/4]

int Cpl::Text::String_::indexOf ( char  c,
int  startpos 
) const
virtual

◆ indexOf() [3/4]

int Cpl::Text::String_::indexOf ( const char *  str) const
virtual

◆ indexOf() [4/4]

int Cpl::Text::String_::indexOf ( const char *  str,
int  startpos 
) const
virtual

◆ isEmpty()

bool Cpl::Text::String_::isEmpty ( ) const
virtual

◆ isEqualIgnoreCase()

bool Cpl::Text::String_::isEqualIgnoreCase ( const char *  string) const
virtual

◆ isEqualSubstring()

bool Cpl::Text::String_::isEqualSubstring ( int  startpos,
int  endpos,
const char *  string 
) const
virtual

◆ isEqualSubstringIgnoreCase()

bool Cpl::Text::String_::isEqualSubstringIgnoreCase ( int  startpos,
int  endpos,
const char *  string 
) const
virtual

◆ lastIndexOf()

int Cpl::Text::String_::lastIndexOf ( char  c) const
virtual

◆ length()

int Cpl::Text::String_::length ( ) const
virtual

◆ operator char()

Cpl::Text::String_::operator char ( ) const
virtual

◆ operator!=() [1/2]

bool Cpl::Text::String_::operator!= ( const char *  string) const
virtual

◆ operator!=() [2/2]

bool Cpl::Text::String_::operator!= ( const String string) const
virtual

◆ operator+=() [1/3]

Cpl::Text::String & Cpl::Text::String_::operator+= ( char  c)
virtual

Append.

Implements Cpl::Text::String.

◆ operator+=() [2/3]

Cpl::Text::String & Cpl::Text::String_::operator+= ( const char *  string)
virtual

Append.

Implements Cpl::Text::String.

◆ operator+=() [3/3]

Cpl::Text::String & Cpl::Text::String_::operator+= ( const String string)
virtual

Append.

Implements Cpl::Text::String.

◆ operator=() [1/3]

Cpl::Text::String & Cpl::Text::String_::operator= ( char  c)
virtual

Assignment.

Implements Cpl::Text::String.

◆ operator=() [2/3]

Cpl::Text::String & Cpl::Text::String_::operator= ( const char *  string)
virtual

Assignment.

Implements Cpl::Text::String.

◆ operator=() [3/3]

Cpl::Text::String & Cpl::Text::String_::operator= ( const String string)
virtual

Assignment.

Implements Cpl::Text::String.

◆ operator==() [1/3]

bool Cpl::Text::String_::operator== ( char  c) const
virtual

◆ operator==() [2/3]

bool Cpl::Text::String_::operator== ( const char *  string) const
virtual

◆ operator==() [3/3]

bool Cpl::Text::String_::operator== ( const String string) const
virtual

◆ removeLeadingChars()

void Cpl::Text::String_::removeLeadingChars ( const char *  charsSet)
virtual

◆ removeLeadingSpaces()

void Cpl::Text::String_::removeLeadingSpaces ( )
virtual

◆ removeTrailingChars()

void Cpl::Text::String_::removeTrailingChars ( const char *  charsSet)
virtual

◆ removeTrailingSpaces()

void Cpl::Text::String_::removeTrailingSpaces ( )
virtual

◆ replace()

int Cpl::Text::String_::replace ( char  targetChar,
char  newChar 
)
virtual

◆ setChar()

void Cpl::Text::String_::setChar ( int  atPosition,
char  newchar 
)
virtual

◆ startsWith() [1/2]

bool Cpl::Text::String_::startsWith ( const char *  string) const
virtual

◆ startsWith() [2/2]

bool Cpl::Text::String_::startsWith ( const char *  string,
int  startOffset 
) const
virtual

◆ toLower()

const char * Cpl::Text::String_::toLower ( )
virtual

◆ toUpper()

const char * Cpl::Text::String_::toUpper ( )
virtual

◆ trimRight()

void Cpl::Text::String_::trimRight ( int  n)
virtual

◆ truncated()

bool Cpl::Text::String_::truncated ( ) const
virtual

◆ validateSizeAfterFormat()

void Cpl::Text::String_::validateSizeAfterFormat ( int  availableLen,
int  formattedLen,
int  maxlen 
)
protected

Sets the truncated flag if needed and insures string is null terminated.

◆ vformat()

void Cpl::Text::String_::vformat ( const char *  format,
va_list  ap 
)
virtual

◆ vformatAppend()

void Cpl::Text::String_::vformatAppend ( const char *  format,
va_list  ap 
)
virtual

◆ vformatOpt()

void Cpl::Text::String_::vformatOpt ( bool  appendFlag,
const char *  format,
va_list  ap 
)
virtual

Member Data Documentation

◆ m_strPtr

char* Cpl::Text::String_::m_strPtr
protected

Pointer to the actual internal string.

◆ m_truncated

bool Cpl::Text::String_::m_truncated
protected

Flag to track when the internal string get truncated.


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