This concrete class implements a simple "dynamic storage" String Type.
All memory is allocated from the heap. For memory allocation errors, the following happens: 1) The _truncated flag is set to true. 2) If the error occurred in the constructor, then the internal string is set an empty string. If the error occurred because of a requested size increase, the internal string is simply truncated.
|
| DString (const String &string, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE) |
| Constructor.
|
|
| DString (const DString &string, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE) |
| Constructor. See above constructor for details.
|
|
| DString (const char *string="", int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE) |
| Constructor. See above constructor for details.
|
|
| DString (char c, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE) |
| Constructor. See above constructor for details.
|
|
| DString (int num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE) |
| Constructor. See above constructor for details.
|
|
| DString (unsigned num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE) |
| Constructor. See above constructor for details.
|
|
| DString (long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE) |
| Constructor. See above constructor for details.
|
|
| DString (long long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE) |
| Constructor. See above constructor for details.
|
|
| DString (unsigned long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE) |
| Constructor. See above constructor for details.
|
|
| DString (unsigned long long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE) |
| Constructor. See above constructor for details.
|
|
| ~DString () |
| Destructor.
|
|
|
Cpl::Text::String & | operator= (const DString &string) |
| Assignment.
|
|
Cpl::Text::String & | operator= (int num) |
| Assignment.
|
|
Cpl::Text::String & | operator= (unsigned int num) |
| Assignment.
|
|
Cpl::Text::String & | operator= (long num) |
| Assignment.
|
|
Cpl::Text::String & | operator= (long long num) |
| Assignment.
|
|
Cpl::Text::String & | operator= (unsigned long num) |
| Assignment.
|
|
Cpl::Text::String & | operator= (unsigned long long num) |
| Assignment.
|
|
|
Cpl::Text::String & | operator+= (const DString &string) |
| Append.
|
|
Cpl::Text::String & | operator+= (int num) |
| Append.
|
|
Cpl::Text::String & | operator+= (unsigned int num) |
| Append.
|
|
Cpl::Text::String & | operator+= (long num) |
| Append.
|
|
Cpl::Text::String & | operator+= (long long num) |
| Append.
|
|
Cpl::Text::String & | operator+= (unsigned long num) |
| Append.
|
|
Cpl::Text::String & | operator+= (unsigned long long num) |
| Append.
|
|
|
void | copyIn (const char *string, int n) |
| Override base class.
|
|
void | appendTo (const char *string, int n) |
| Override base class.
|
|
void | insertAt (int insertOffset, const char *stringToInsert) |
| Override base class.
|
|
int | maxLength () const |
| Override base class.
|
|
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::String & | operator= (const String &string) |
| Assignment.
|
|
Cpl::Text::String & | operator= (const char *string) |
| Assignment.
|
|
Cpl::Text::String & | operator= (char c) |
| Assignment.
|
|
Cpl::Text::String & | operator+= (const String &string) |
| Append.
|
|
Cpl::Text::String & | operator+= (const char *string) |
| Append.
|
|
Cpl::Text::String & | operator+= (char c) |
| Append.
|
|
int | compareKey (const Key &key) const |
| See Cpl::Container::Key.
|
|
const void * | getRawKey (unsigned *returnRawKeyLenPtr=0) const |
| See Cpl::Container::Key.
|
|
virtual | ~String () |
| Virtual destructor!
|
|
| 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.
|
|
int | availLength () |
| Returns the available space left in the internal buffer.
|
|
void | trimLeft (int n) |
| Removes 'n' characters from the start-of-string.
|
|
virtual | ~Key () |
| Ensure a Virtual destructor.
|
|
virtual int | compareKey (const Key &key) const =0 |
| Key Compare function.
|
|