|
@ -228,6 +228,24 @@ namespace Jupiter |
|
|
size_t concat(const T *in) override; |
|
|
size_t concat(const T *in) override; |
|
|
size_t concat(const T &in) override; |
|
|
size_t concat(const T &in) override; |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief Sets the internal buffer to be at least large enough to old a specified number of elements. |
|
|
|
|
|
* Note: This does nothing if len is less than the string's current length. |
|
|
|
|
|
* |
|
|
|
|
|
* @param len Minimum number of elements the string buffer must be able to hold. |
|
|
|
|
|
* @return True if a new buffer was allocated, false otherwise. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual bool setBufferSize(size_t len) override; |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief Empties the string, and sets the internal buffer to be at least large enough to old a specified number of elements. |
|
|
|
|
|
* Note: This does nothing if len is less than the string's current length. |
|
|
|
|
|
* |
|
|
|
|
|
* @param len Minimum number of elements the string buffer must be able to hold. |
|
|
|
|
|
* @return True if a new buffer was allocated, false otherwise. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual bool setBufferSizeNoCopy(size_t len) override; |
|
|
|
|
|
|
|
|
/** Default Constructor */ |
|
|
/** Default Constructor */ |
|
|
CString_Type(); |
|
|
CString_Type(); |
|
|
|
|
|
|
|
@ -266,25 +284,6 @@ namespace Jupiter |
|
|
static const Jupiter::CString_Type<T> empty; /** Empty instantiation of CString_Type */ |
|
|
static const Jupiter::CString_Type<T> empty; /** Empty instantiation of CString_Type */ |
|
|
|
|
|
|
|
|
protected: |
|
|
protected: |
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief Sets the internal buffer to be at least large enough to old a specified number of elements. |
|
|
|
|
|
* Note: This does nothing if len is less than the string's current length. |
|
|
|
|
|
* |
|
|
|
|
|
* @param len Minimum number of elements the string buffer must be able to hold. |
|
|
|
|
|
* @return True if a new buffer was allocated, false otherwise. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual bool setBufferSize(size_t len); |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief Empties the string, and sets the internal buffer to be at least large enough to old a specified number of elements. |
|
|
|
|
|
* Note: This does nothing if len is less than the string's current length. |
|
|
|
|
|
* |
|
|
|
|
|
* @param len Minimum number of elements the string buffer must be able to hold. |
|
|
|
|
|
* @return True if a new buffer was allocated, false otherwise. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual bool setBufferSizeNoCopy(size_t len); |
|
|
|
|
|
|
|
|
|
|
|
/** Dummy constructor to prevent string initialization */ |
|
|
/** Dummy constructor to prevent string initialization */ |
|
|
CString_Type(Jupiter::String_Constructor_Base &) {}; |
|
|
CString_Type(Jupiter::String_Constructor_Base &) {}; |
|
|
}; |
|
|
}; |
|
@ -305,6 +304,15 @@ namespace Jupiter |
|
|
{ |
|
|
{ |
|
|
public: |
|
|
public: |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief Returns the maximum number of elements the String can contain, |
|
|
|
|
|
* without expanding the socket buffer. This is generally the size of the |
|
|
|
|
|
* underlying memory buffer. |
|
|
|
|
|
* |
|
|
|
|
|
* @return Number of elements the string can contain without reallocation. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual size_t capacity() const; |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* @brief Sets the CString's contents based on the format string and input variables. |
|
|
* @brief Sets the CString's contents based on the format string and input variables. |
|
|
* Note: Format specifiers similar to printf. Returns 0 for any type other than char and wchar_t. |
|
|
* Note: Format specifiers similar to printf. Returns 0 for any type other than char and wchar_t. |
|
@ -424,6 +432,24 @@ namespace Jupiter |
|
|
static TokenizeResult<Jupiter::CString_Loose> tokenize(const Jupiter::Readable_String<T> &in, const Jupiter::Readable_String<T> &separator); |
|
|
static TokenizeResult<Jupiter::CString_Loose> tokenize(const Jupiter::Readable_String<T> &in, const Jupiter::Readable_String<T> &separator); |
|
|
static TokenizeResult<Jupiter::CString_Loose> tokenize(const Jupiter::Readable_String<T> &in, const T *separator, size_t separator_size); |
|
|
static TokenizeResult<Jupiter::CString_Loose> tokenize(const Jupiter::Readable_String<T> &in, const T *separator, size_t separator_size); |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief Sets the internal buffer to be at least large enough to old a specified number of elements. |
|
|
|
|
|
* Note: This does nothing if len is less than the string's current length. |
|
|
|
|
|
* |
|
|
|
|
|
* @param len Minimum number of elements the string buffer must be able to hold. |
|
|
|
|
|
* @return True if a new buffer was allocated, false otherwise. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual bool setBufferSize(size_t len) override; |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief Empties the string, and sets the internal buffer to be at least large enough to old a specified number of elements. |
|
|
|
|
|
* Note: This does nothing if len is less than the string's current length. |
|
|
|
|
|
* |
|
|
|
|
|
* @param len Minimum number of elements the string buffer must be able to hold. |
|
|
|
|
|
* @return True if a new buffer was allocated, false otherwise. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual bool setBufferSizeNoCopy(size_t len) override; |
|
|
|
|
|
|
|
|
/** Default constructor */ |
|
|
/** Default constructor */ |
|
|
CString_Loose(); |
|
|
CString_Loose(); |
|
|
|
|
|
|
|
@ -463,25 +489,6 @@ namespace Jupiter |
|
|
static const size_t start_size = 8; /** Starting size for loose CStrings. */ |
|
|
static const size_t start_size = 8; /** Starting size for loose CStrings. */ |
|
|
|
|
|
|
|
|
protected: |
|
|
protected: |
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief Sets the internal buffer to be at least large enough to old a specified number of elements. |
|
|
|
|
|
* Note: This does nothing if len is less than the string's current length. |
|
|
|
|
|
* |
|
|
|
|
|
* @param len Minimum number of elements the string buffer must be able to hold. |
|
|
|
|
|
* @return True if a new buffer was allocated, false otherwise. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual bool setBufferSize(size_t len); |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief Empties the string, and sets the internal buffer to be at least large enough to old a specified number of elements. |
|
|
|
|
|
* Note: This does nothing if len is less than the string's current length. |
|
|
|
|
|
* |
|
|
|
|
|
* @param len Minimum number of elements the string buffer must be able to hold. |
|
|
|
|
|
* @return True if a new buffer was allocated, false otherwise. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual bool setBufferSizeNoCopy(size_t len); |
|
|
|
|
|
|
|
|
|
|
|
/** Dummy constructor to prevent string initialization */ |
|
|
/** Dummy constructor to prevent string initialization */ |
|
|
CString_Loose(Jupiter::String_Constructor_Base &) {}; |
|
|
CString_Loose(Jupiter::String_Constructor_Base &) {}; |
|
|
|
|
|
|
|
|