csStringFast< LEN > Class Template Reference
Subclass of csStringBase that contains an internal buffer which is faster than the always dynamically allocated buffer of csStringBase. More...
#include <csutil/csstring.h>
Inheritance diagram for csStringFast< LEN >:
Public Member Functions | |
csStringFast (unsigned char c) | |
Create a csStringFast object from a single unsigned character. | |
csStringFast (char c) | |
Create a csStringFast object from a single signed character. | |
csStringFast (const char *src, size_t _length) | |
Create a csStringFast object from a C string, given the length. | |
csStringFast (const char *src) | |
Create a csStringFast object from a null-terminated C string. | |
csStringFast (const csStringFast ©) | |
Copy constructor. | |
csStringFast (const csStringBase ©) | |
Copy constructor. | |
csStringFast (size_t Length) | |
Create a csStringFast object and reserve space for at least Length characters. | |
csStringFast () | |
Create an empty csStringFast object. | |
virtual char * | Detach () |
Detach the low-level null-terminated C-string buffer from the csString object. | |
virtual void | Free () |
Free the memory allocated for the string. | |
virtual size_t | GetCapacity () const |
Return the current capacity, not including the space for the implicit null terminator. | |
virtual char const * | GetData () const |
Get a pointer to the null-terminated character array. | |
template<typename T> | |
const csStringFast & | operator= (T const &s) |
Assign a formatted value to this string. | |
const csStringFast & | operator= (const csStringBase ©) |
Assign a value to this string. | |
virtual void | ShrinkBestFit () |
Set string buffer capacity to hold exactly the current content. | |
virtual | ~csStringFast () |
Destroy the csStringFast. | |
Protected Member Functions | |
virtual char * | GetDataMutable () |
Get a pointer to the null-terminated character array. | |
virtual void | SetCapacityInternal (size_t NewSize, bool soft) |
Set the buffer to hold NewSize bytes. | |
Protected Attributes | |
char | minibuff [LEN] |
Internal buffer; used when capacity fits within LEN bytes. | |
size_t | miniused |
Amount of minibuff allocated by SetCapacityInternal(); not necessarily same as Size. |
Detailed Description
template<int LEN = 36>
class csStringFast< LEN >
Subclass of csStringBase that contains an internal buffer which is faster than the always dynamically allocated buffer of csStringBase.
Definition at line 960 of file csstring.h.
Constructor & Destructor Documentation
csStringFast< LEN >::csStringFast | ( | ) | [inline] |
csStringFast< LEN >::csStringFast | ( | size_t | Length | ) | [inline] |
Create a csStringFast object and reserve space for at least Length characters.
Definition at line 1011 of file csstring.h.
References csStringBase::SetCapacity().
csStringFast< LEN >::csStringFast | ( | const csStringBase & | copy | ) | [inline] |
csStringFast< LEN >::csStringFast | ( | const csStringFast< LEN > & | copy | ) | [inline] |
csStringFast< LEN >::csStringFast | ( | const char * | src | ) | [inline] |
Create a csStringFast object from a null-terminated C string.
Definition at line 1026 of file csstring.h.
References csStringBase::Append().
csStringFast< LEN >::csStringFast | ( | const char * | src, | |
size_t | _length | |||
) | [inline] |
Create a csStringFast object from a C string, given the length.
Definition at line 1031 of file csstring.h.
References csStringBase::Append().
csStringFast< LEN >::csStringFast | ( | char | c | ) | [inline] |
Create a csStringFast object from a single signed character.
Definition at line 1036 of file csstring.h.
References csStringBase::Append().
csStringFast< LEN >::csStringFast | ( | unsigned char | c | ) | [inline] |
Create a csStringFast object from a single unsigned character.
Definition at line 1039 of file csstring.h.
References csStringBase::Append().
virtual csStringFast< LEN >::~csStringFast | ( | ) | [inline, virtual] |
Member Function Documentation
virtual char* csStringFast< LEN >::Detach | ( | ) | [inline, virtual] |
Detach the low-level null-terminated C-string buffer from the csString object.
- Returns:
- The low-level null-terminated C-string buffer, or zero if this string represents a null-pointer. See the class description for a discussion about how and when the string will represent a null-pointer.
- Remarks:
- The caller of this function becomes the owner of the returned string buffer and is responsible for destroying it via `delete[]' when no longer needed.
Reimplemented from csStringBase.
Definition at line 1084 of file csstring.h.
References CS_ASSERT, csStrNew(), csStringBase::Data, csStringBase::Detach(), csStringBase::MaxSize, csStringFast< LEN >::minibuff, csStringFast< LEN >::miniused, and csStringBase::Size.
virtual void csStringFast< LEN >::Free | ( | ) | [inline, virtual] |
Free the memory allocated for the string.
- Remarks:
- Following a call to this method, invocations of GetData() and 'operator char const*' will return a null pointer (until some new content is added to the string).
Reimplemented from csStringBase.
Definition at line 1082 of file csstring.h.
References csStringBase::Free(), and csStringFast< LEN >::miniused.
virtual size_t csStringFast< LEN >::GetCapacity | ( | ) | const [inline, virtual] |
Return the current capacity, not including the space for the implicit null terminator.
Reimplemented from csStringBase.
Definition at line 1055 of file csstring.h.
References csStringBase::Data, csStringBase::GetCapacity(), and csStringFast< LEN >::miniused.
virtual char const* csStringFast< LEN >::GetData | ( | ) | const [inline, virtual] |
Get a pointer to the null-terminated character array.
- Returns:
- A C-string pointer to the null-terminated character array; or zero if the string represents a null-pointer.
- Remarks:
- See the class description for a discussion about how and when the string will represent a null-pointer.
Reimplemented from csStringBase.
Definition at line 1052 of file csstring.h.
References csStringBase::Data, csStringFast< LEN >::minibuff, and csStringFast< LEN >::miniused.
Referenced by csDebugImageWriter::DebugImageWrite(), CS::DocumentHelper::NodeAttributeRegexpTest::operator()(), CS::DocumentHelper::NodeAttributeValueTest::operator()(), CS::DocumentHelper::NodeAttributeCompare::operator()(), and csIdentStrings::StringForIdent().
virtual char* csStringFast< LEN >::GetDataMutable | ( | ) | [inline, protected, virtual] |
Get a pointer to the null-terminated character array.
- Returns:
- A C-string pointer to the null-terminated character array; or zero if the string represents a null-pointer.
- Remarks:
- See the class description for a discussion about how and when the string will represent a null-pointer.
- Warning:
- This returns a non-const pointer, so use this function with care. Call this only when you need to modify the string content. External clients are never allowed to directly modify the internal string buffer, which is why this function is not public.
Reimplemented from csStringBase.
Definition at line 999 of file csstring.h.
References csStringBase::Data, csStringFast< LEN >::minibuff, and csStringFast< LEN >::miniused.
const csStringFast& csStringFast< LEN >::operator= | ( | T const & | s | ) | [inline] |
Assign a formatted value to this string.
Reimplemented from csStringBase.
Definition at line 1050 of file csstring.h.
References csStringBase::Replace().
const csStringFast& csStringFast< LEN >::operator= | ( | const csStringBase & | copy | ) | [inline] |
Assign a value to this string.
Reimplemented from csStringBase.
Reimplemented in csString.
Definition at line 1045 of file csstring.h.
References csStringBase::Replace().
virtual void csStringFast< LEN >::SetCapacityInternal | ( | size_t | NewSize, | |
bool | soft | |||
) | [inline, protected, virtual] |
Set the buffer to hold NewSize bytes.
If soft is true it means the buffer can be rounded up to reduce the number of allocations needed.
Reimplemented from csStringBase.
Definition at line 975 of file csstring.h.
References csStringBase::ComputeNewSize(), CS_ASSERT, csStringBase::Data, csStringBase::MaxSize, csStringFast< LEN >::minibuff, csStringFast< LEN >::miniused, csStringBase::SetCapacityInternal(), and csStringBase::Size.
virtual void csStringFast< LEN >::ShrinkBestFit | ( | ) | [inline, virtual] |
Set string buffer capacity to hold exactly the current content.
- Returns:
- Reference to itself.
- Remarks:
- If the string length is greater than zero, then the buffer's capacity will be adjusted to exactly that size. If the string length is zero, then this is equivalent to an invocation of Free(), which means that GetData() and 'operator char const*' will return a null pointer after reclamation.
Reimplemented from csStringBase.
Definition at line 1058 of file csstring.h.
References csStringBase::Data, csStringBase::Free(), csStringFast< LEN >::minibuff, csStringFast< LEN >::miniused, csStringBase::ShrinkBestFit(), and csStringBase::Size.
Member Data Documentation
char csStringFast< LEN >::minibuff[LEN] [protected] |
Internal buffer; used when capacity fits within LEN bytes.
Definition at line 964 of file csstring.h.
Referenced by csStringFast< LEN >::Detach(), csStringFast< LEN >::GetData(), csStringFast< LEN >::GetDataMutable(), csStringFast< LEN >::SetCapacityInternal(), and csStringFast< LEN >::ShrinkBestFit().
size_t csStringFast< LEN >::miniused [protected] |
Amount of minibuff allocated by SetCapacityInternal(); not necessarily same as Size.
This is analogous to MaxSize in csStringBase. We need it to determine if minibuff was ever used in order to return NULL if not (to emulate the NULL returned by csStringBase when no buffer has been allocated). We also use minibuff to emulate GetCapacity(), which is a predicate of several memory management methods, such as ExpandIfNeeded().
Definition at line 973 of file csstring.h.
Referenced by csStringFast< LEN >::Detach(), csStringFast< LEN >::Free(), csStringFast< LEN >::GetCapacity(), csStringFast< LEN >::GetData(), csStringFast< LEN >::GetDataMutable(), csStringFast< LEN >::SetCapacityInternal(), and csStringFast< LEN >::ShrinkBestFit().
The documentation for this class was generated from the following file:
- csutil/csstring.h
Generated for Crystal Space by doxygen 1.4.7