LibreOffice
LibreOffice 24.2 SDK C/C++ API Reference
|
A string buffer implements a mutable sequence of characters. More...
#include <strbuf.hxx>
Public Member Functions | |
OStringBuffer () | |
Constructs a string buffer with no characters in it and an initial capacity of 16 characters. More... | |
OStringBuffer (const OStringBuffer &value) | |
Allocates a new string buffer that contains the same sequence of characters as the string buffer argument. More... | |
OStringBuffer (sal_Int32 length) | |
Constructs a string buffer with no characters in it and an initial capacity specified by the length argument. More... | |
OStringBuffer (const OString &value) | |
Constructs a string buffer so that it represents the same sequence of characters as the string argument. More... | |
template<typename T > | |
OStringBuffer (const T &value, typename libreoffice_internal::CharPtrDetector< T, libreoffice_internal::Dummy >::Type=libreoffice_internal::Dummy()) | |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More... | |
template<typename T > | |
OStringBuffer (T &value, typename libreoffice_internal::NonConstCharArrayDetector< T, libreoffice_internal::Dummy >::Type=libreoffice_internal::Dummy()) | |
template<typename T > | |
OStringBuffer (T &literal, typename libreoffice_internal::ConstCharArrayDetector< T, libreoffice_internal::Dummy >::Type=libreoffice_internal::Dummy()) | |
Constructs a string buffer so that it represents the same sequence of characters as the string literal. More... | |
OStringBuffer (const char *value, sal_Int32 length) | |
Constructs a string buffer so that it represents the same sequence of characters as the string argument. More... | |
OStringBuffer & | operator= (const OStringBuffer &value) |
Assign to this a copy of value. More... | |
OStringBuffer & | operator= (OString const &string) |
Assign from a string. More... | |
template<typename T > | |
libreoffice_internal::ConstCharArrayDetector< T, OStringBuffer & >::Type | operator= (T &literal) |
Assign from a string literal. More... | |
~OStringBuffer () | |
Release the string data. More... | |
SAL_WARN_UNUSED_RESULT OString | makeStringAndClear () |
Fill the string data in the new string and clear the buffer. More... | |
sal_Int32 | getLength () const |
Returns the length (character count) of this string buffer. More... | |
bool | isEmpty () const |
Checks if a string buffer is empty. More... | |
sal_Int32 | getCapacity () const |
Returns the current capacity of the String buffer. More... | |
void | ensureCapacity (sal_Int32 minimumCapacity) |
Ensures that the capacity of the buffer is at least equal to the specified minimum. More... | |
void | setLength (sal_Int32 newLength) |
Sets the length of this String buffer. More... | |
char | charAt (sal_Int32 index) |
Returns the character at a specific index in this string buffer. More... | |
OStringBuffer & | setCharAt (sal_Int32 index, char ch) |
The character at the specified index of this string buffer is set to ch . More... | |
const char * | getStr () const SAL_RETURNS_NONNULL |
Return a null terminated character array. More... | |
char & | operator[] (sal_Int32 index) |
Access to individual characters. More... | |
OString | toString () const |
Return an OString instance reflecting the current content of this OStringBuffer. More... | |
OStringBuffer & | append (const OString &str) |
Appends the string to this string buffer. More... | |
template<typename T > | |
libreoffice_internal::CharPtrDetector< T, OStringBuffer &>::Type | append (const T &str) |
Appends the string representation of the char array argument to this string buffer. More... | |
template<typename T > | |
libreoffice_internal::NonConstCharArrayDetector< T, OStringBuffer &>::Type | append (T &str) |
template<typename T > | |
libreoffice_internal::ConstCharArrayDetector< T, OStringBuffer &>::Type | append (T &literal) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument. More... | |
OStringBuffer & | append (const char *str, sal_Int32 len) |
Appends the string representation of the char array argument to this string buffer. More... | |
OStringBuffer & | append (sal_Bool b) |
Appends the string representation of the sal_Bool argument to the string buffer. More... | |
OStringBuffer & | append (bool b) |
Appends the string representation of the bool argument to the string buffer. More... | |
OStringBuffer & | append (char c) |
Appends the string representation of the char argument to this string buffer. More... | |
OStringBuffer & | append (sal_Int32 i, sal_Int16 radix=10) |
Appends the string representation of the sal_Int32 argument to this string buffer. More... | |
OStringBuffer & | append (sal_Int64 l, sal_Int16 radix=10) |
Appends the string representation of the long argument to this string buffer. More... | |
OStringBuffer & | append (float f) |
Appends the string representation of the float argument to this string buffer. More... | |
OStringBuffer & | append (double d) |
Appends the string representation of the double argument to this string buffer. More... | |
char * | appendUninitialized (sal_Int32 length) SAL_RETURNS_NONNULL |
Unsafe way to make space for a fixed amount of characters to be appended into this OStringBuffer. More... | |
OStringBuffer & | insert (sal_Int32 offset, const OString &str) |
Inserts the string into this string buffer. More... | |
template<typename T > | |
libreoffice_internal::CharPtrDetector< T, OStringBuffer &>::Type | insert (sal_Int32 offset, const T &str) |
Inserts the string representation of the char array argument into this string buffer. More... | |
template<typename T > | |
libreoffice_internal::NonConstCharArrayDetector< T, OStringBuffer &>::Type | insert (sal_Int32 offset, T &str) |
template<typename T > | |
libreoffice_internal::ConstCharArrayDetector< T, OStringBuffer &>::Type | insert (sal_Int32 offset, T &literal) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument. More... | |
OStringBuffer & | insert (sal_Int32 offset, const char *str, sal_Int32 len) |
Inserts the string representation of the char array argument into this string buffer. More... | |
OStringBuffer & | insert (sal_Int32 offset, sal_Bool b) |
Inserts the string representation of the sal_Bool argument into this string buffer. More... | |
OStringBuffer & | insert (sal_Int32 offset, bool b) |
Inserts the string representation of the bool argument into this string buffer. More... | |
OStringBuffer & | insert (sal_Int32 offset, char c) |
Inserts the string representation of the char argument into this string buffer. More... | |
OStringBuffer & | insert (sal_Int32 offset, sal_Int32 i, sal_Int16 radix=10) |
Inserts the string representation of the second sal_Int32 argument into this string buffer. More... | |
OStringBuffer & | insert (sal_Int32 offset, sal_Int64 l, sal_Int16 radix=10) |
Inserts the string representation of the long argument into this string buffer. More... | |
OStringBuffer & | insert (sal_Int32 offset, float f) |
Inserts the string representation of the float argument into this string buffer. More... | |
OStringBuffer & | insert (sal_Int32 offset, double d) |
Inserts the string representation of the double argument into this string buffer. More... | |
OStringBuffer & | remove (sal_Int32 start, sal_Int32 len) |
Removes the characters in a substring of this sequence. More... | |
void | accessInternals (rtl_String ***pInternalData, sal_Int32 **pInternalCapacity) |
Allows access to the internal data of this OStringBuffer, for effective manipulation. More... | |
A string buffer implements a mutable sequence of characters.
|
inline |
Constructs a string buffer with no characters in it and an initial capacity of 16 characters.
|
inline |
Allocates a new string buffer that contains the same sequence of characters as the string buffer argument.
value | a OStringBuffer . |
|
inlineexplicit |
Constructs a string buffer with no characters in it and an initial capacity specified by the length
argument.
length | the initial capacity. |
|
inline |
Constructs a string buffer so that it represents the same sequence of characters as the string argument.
The initial capacity of the string buffer is 16
plus the length of the string argument.
value | the initial string value. |
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
inline |
|
inline |
Constructs a string buffer so that it represents the same sequence of characters as the string literal.
If there are any embedded \0's in the string literal, the result is undefined. Use the overload that explicitly accepts length.
literal | a string literal |
|
inline |
Constructs a string buffer so that it represents the same sequence of characters as the string argument.
The initial capacity of the string buffer is 16
plus length
value | a character array. |
length | the number of character which should be copied. The character array length must be greater or equal than this value. |
|
inline |
Release the string data.
|
inline |
Allows access to the internal data of this OStringBuffer, for effective manipulation.
This function should be used with care. After you have called this function, you may use the returned pInternalData and pInternalCapacity only as long as you make no other calls on this OStringBuffer.
pInternalData | This output parameter receives a pointer to the internal data (rtl_String pointer). pInternalData itself must not be null. |
pInternalCapacity | This output parameter receives a pointer to the internal capacity. pInternalCapacity itself must not be null. |
|
inline |
Appends the string to this string buffer.
The characters of the String
argument are appended, in order, to the contents of this string buffer, increasing the length of this string buffer by the length of the argument.
str | a string. |
|
inline |
Appends the string representation of the char
array argument to this string buffer.
The characters of the array argument are appended, in order, to the contents of this string buffer. The length of this string buffer increases by the length of the argument.
str | the characters to be appended. |
|
inline |
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument.
|
inline |
Appends the string representation of the char
array argument to this string buffer.
Characters of the character array str
are appended, in order, to the contents of this string buffer. The length of this string buffer increases by the value of len
.
str | the characters to be appended; must be non-null, and must point to at least len characters |
len | the number of characters to append; must be non-negative |
|
inline |
Appends the string representation of the sal_Bool
argument to the string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
b | a sal_Bool . |
|
inline |
Appends the string representation of the bool
argument to the string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
b | a bool . |
|
inline |
Appends the string representation of the char
argument to this string buffer.
The argument is appended to the contents of this string buffer. The length of this string buffer increases by 1
.
c | a char . |
|
inline |
Appends the string representation of the sal_Int32
argument to this string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
i | an sal_Int32 . |
radix | the radix |
|
inline |
Appends the string representation of the long
argument to this string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
l | a long . |
radix | the radix |
|
inline |
Appends the string representation of the float
argument to this string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
f | a float . |
|
inline |
Appends the string representation of the double
argument to this string buffer.
The argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then appended to this string buffer.
d | a double . |
|
inline |
Unsafe way to make space for a fixed amount of characters to be appended into this OStringBuffer.
A call to this function must immediately be followed by code that completely fills the uninitialized block pointed to by the return value.
length | the length of the uninitialized block of char entities; must be non-negative |
|
inline |
Returns the character at a specific index in this string buffer.
The first character of a string buffer is at index 0
, the next at index 1
, and so on, for array indexing.
The index argument must be greater than or equal to 0
, and less than the length of this string buffer.
index | the index of the desired character. |
|
inline |
Ensures that the capacity of the buffer is at least equal to the specified minimum.
The new capacity will be at least as large as the maximum of the current length (so that no contents of the buffer is destroyed) and the given minimumCapacity. If the given minimumCapacity is negative, nothing is changed.
minimumCapacity | the minimum desired capacity. |
|
inline |
Returns the current capacity of the String buffer.
The capacity is the amount of storage available for newly inserted characters. The real buffer size is 1 byte longer, because all strings are 0 terminated.
|
inline |
Returns the length (character count) of this string buffer.
|
inline |
Return a null terminated character array.
|
inline |
Inserts the string into this string buffer.
The characters of the String
argument are inserted, in order, into this string buffer at the indicated offset. The length of this string buffer is increased by the length of the argument.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
str | a string. |
|
inline |
Inserts the string representation of the char
array argument into this string buffer.
The characters of the array argument are inserted into the contents of this string buffer at the position indicated by offset
. The length of this string buffer increases by the length of the argument.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
str | a character array. |
|
inline |
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. This function accepts an ASCII string literal as its argument.
|
inline |
Inserts the string representation of the char
array argument into this string buffer.
The characters of the array argument are inserted into the contents of this string buffer at the position indicated by offset
. The length of this string buffer increases by the length of the argument.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
str | a character array. |
len | the number of characters to append. |
|
inline |
Inserts the string representation of the sal_Bool
argument into this string buffer.
The second argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
b | a sal_Bool . |
|
inline |
Inserts the string representation of the bool
argument into this string buffer.
The second argument is converted to a string as if by the method OString::boolean
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
b | a bool . |
|
inline |
Inserts the string representation of the char
argument into this string buffer.
The second argument is inserted into the contents of this string buffer at the position indicated by offset
. The length of this string buffer increases by one.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
c | a char . |
|
inline |
Inserts the string representation of the second sal_Int32
argument into this string buffer.
The second argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
i | an sal_Int32 . |
radix | the radix |
|
inline |
Inserts the string representation of the long
argument into this string buffer.
The second argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
l | a long . |
radix | the radix |
|
inline |
Inserts the string representation of the float
argument into this string buffer.
The second argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
f | a float . |
|
inline |
Inserts the string representation of the double
argument into this string buffer.
The second argument is converted to a string as if by the method String.valueOf
, and the characters of that string are then inserted into this string buffer at the indicated offset.
The offset argument must be greater than or equal to 0
, and less than or equal to the length of this string buffer.
offset | the offset. |
d | a double . |
|
inline |
Checks if a string buffer is empty.
|
inline |
Fill the string data in the new string and clear the buffer.
This method is more efficient than the constructor of the string. It does not copy the buffer.
|
inline |
Assign to this a copy of value.
|
inline |
Assign from a string.
|
inline |
Assign from a string literal.
|
inline |
Access to individual characters.
index | must be non-negative and less than length. |
|
inline |
Removes the characters in a substring of this sequence.
The substring begins at the specified start
and is len
characters long.
start must be >= 0 && <= getLength() && <= end
start | The beginning index, inclusive |
len | The substring length |
|
inline |
The character at the specified index of this string buffer is set to ch
.
The index argument must be greater than or equal to 0
, and less than the length of this string buffer.
index | the index of the character to modify. |
ch | the new character. |
|
inline |
Sets the length of this String buffer.
If the newLength
argument is less than the current length of the string buffer, the string buffer is truncated to contain exactly the number of characters given by the newLength
argument.
If the newLength
argument is greater than or equal to the current length, sufficient null characters ('\u0000'
) are appended to the string buffer so that length becomes the newLength
argument.
The newLength
argument must be greater than or equal to 0
.
newLength | the new length of the buffer. |
|
inline |
Return an OString instance reflecting the current content of this OStringBuffer.