1#ifndef Cpl_Text_DString_h_
2#define Cpl_Text_DString_h_
16#include "colony_config.h"
29#ifndef OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE
30#define OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE 16
131 using Cpl::Text::String::operator=;
134 using Cpl::Text::String::operator+=;
165 void copyIn(
const char*
string,
int n );
171 void insertAt(
int insertOffset,
const char* stringToInsert );
#define OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE
This magic constant defines the default block size that the DString class uses when allocating memory...
Definition DString.h:30
This concrete class implements a simple "dynamic storage" String Type.
Definition DString.h:44
DString(unsigned 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.
void appendTo(const char *string, int n)
Override base class.
int calcMemSize(int len)
Returns the need memory size in "block units".
Definition DString.h:182
DString(char c, 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.
int maxStrLen(void) const
Returns the max length of internal WITHOUT the '\0' string terminator.
Definition DString.h:188
DString(long long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
void validateAndCopy(const char *string, int len)
Validates the just created string is 'valid'
void copyIn(const char *string, int n)
Override base class.
DString(long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
int m_storageLen
Size, in bytes, of allocated storage.
Definition DString.h:50
int maxLength() const
Override base class.
DString(const String &string, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor.
Cpl::Text::String & operator+=(const DString &string)
Append.
int m_blockSize
Block size in bytes.
Definition DString.h:47
DString(const char *string="", int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
Cpl::Text::String & operator=(const DString &string)
Assignment.
DString(int num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
void freeCurrentString(void)
Frees the current string memory - IF it was previously allocated.
void insertAt(int insertOffset, const char *stringToInsert)
Override base class.
DString(const DString &string, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
This partially concrete class implements the portions of the String Api that is independent of the in...
Definition String_.h:29
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20