/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef _RTL_STRBUF_HXX_ #define _RTL_STRBUF_HXX_ #include "osl/diagnose.h" #include #include #ifdef __cplusplus namespace rtl { /** @HTML A string buffer implements a mutable sequence of characters.

String buffers are safe for use by multiple threads. The methods are synchronized where necessary so that all the operations on any particular instance behave as if they occur in some serial order.

String buffers are used by the compiler to implement the binary string concatenation operator +. For example, the code:

        x = "a" + 4 + "c"
    

is compiled to the equivalent of:

        x = new OStringBuffer().append("a").append(4).append("c")
                              .toString()
    

The principal operations on a OStringBuffer are the append and insert methods, which are overloaded so as to accept data of any type. Each effectively converts a given datum to a string and then appends or inserts the characters of that string to the string buffer. The append method always adds these characters at the end of the buffer; the insert method adds the characters at a specified point.

For example, if z refers to a string buffer object whose current contents are "start", then the method call z.append("le") would cause the string buffer to contain "startle", whereas z.insert(4, "le") would alter the string buffer to contain "starlet".

Every string buffer has a capacity. As long as the length of the character sequence contained in the string buffer does not exceed the capacity, it is not necessary to allocate a new internal buffer array. If the internal buffer overflows, it is automatically made larger. */ class OStringBuffer { public: /** Constructs a string buffer with no characters in it and an initial capacity of 16 characters. */ OStringBuffer() : pData(NULL) , nCapacity( 16 ) { rtl_string_new_WithLength( &pData, nCapacity ); } /** Allocates a new string buffer that contains the same sequence of characters as the string buffer argument. @param value a OStringBuffer. */ OStringBuffer( const OStringBuffer & value ) : pData(NULL) , nCapacity( value.nCapacity ) { rtl_stringbuffer_newFromStringBuffer( &pData, value.nCapacity, value.pData ); } /** Constructs a string buffer with no characters in it and an initial capacity specified by the length argument. @param length the initial capacity. */ OStringBuffer(sal_Int32 length) : pData(NULL) , nCapacity( length ) { rtl_string_new_WithLength( &pData, length ); } /** 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. @param value the initial string value. */ OStringBuffer(OString value) : pData(NULL) , nCapacity( value.getLength() + 16 ) { rtl_stringbuffer_newFromStr_WithLength( &pData, value.getStr(), value.getLength() ); } /** Assign to this a copy of value. */ OStringBuffer& operator = ( const OStringBuffer& value ) { if (this != &value) { rtl_stringbuffer_newFromStringBuffer(&pData, value.nCapacity, value.pData); nCapacity = value.nCapacity; } return *this; } /** Release the string data. */ ~OStringBuffer() { rtl_string_release( pData ); } /** 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. @return the string previously contained in the buffer. */ OString makeStringAndClear() { OString aRet( pData ); rtl_string_new(&pData); nCapacity = 0; return aRet; } /** Returns the length (character count) of this string buffer. @return the number of characters in this string buffer. */ sal_Int32 getLength() const { return pData->length; } /** 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 2 bytes longer, because all strings are 0 terminated. @return the current capacity of this string buffer. */ sal_Int32 getCapacity() const { return nCapacity; } /** 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. @param minimumCapacity the minimum desired capacity. */ void ensureCapacity(sal_Int32 minimumCapacity) { rtl_stringbuffer_ensureCapacity( &pData, &nCapacity, minimumCapacity ); } /** 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. @param newLength the new length of the buffer. */ void setLength(sal_Int32 newLength) { OSL_ASSERT(newLength >= 0); // Avoid modifications if pData points to const empty string: if( newLength != pData->length ) { if( newLength > nCapacity ) rtl_stringbuffer_ensureCapacity(&pData, &nCapacity, newLength); else pData->buffer[newLength] = '\0'; pData->length = newLength; } } /** 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. @param index the index of the desired character. @return the character at the specified index of this string buffer. */ sal_Char charAt( sal_Int32 index ) { OSL_ASSERT(index >= 0 && index < pData->length); return pData->buffer[ index ]; } /** Return a null terminated character array. */ operator const sal_Char *() const { return pData->buffer; } /** Return a null terminated character array. */ const sal_Char* getStr() const { return pData->buffer; } /** 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. @param index the index of the character to modify. @param ch the new character. */ OStringBuffer & setCharAt(sal_Int32 index, sal_Char ch) { OSL_ASSERT(index >= 0 && index < pData->length); pData->buffer[ index ] = ch; return *this; } /** 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. @param str a string. @return this string buffer. */ OStringBuffer & append(const OString &str) { return append( str.getStr(), str.getLength() ); } /** 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. @param str the characters to be appended. @return this string buffer. */ OStringBuffer & append( const sal_Char * str ) { return append( str, rtl_str_getLength( str ) ); } /** 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. @param str the characters to be appended; must be non-null, and must point to at least len characters @param len the number of characters to append; must be non-negative @return this string buffer. */ OStringBuffer & append( const sal_Char * str, sal_Int32 len) { // insert behind the last character rtl_stringbuffer_insert( &pData, &nCapacity, getLength(), str, len ); return *this; } /** 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. @param b a sal_Bool. @return this string buffer. */ OStringBuffer & append(sal_Bool b) { sal_Char sz[RTL_STR_MAX_VALUEOFBOOLEAN]; return append( sz, rtl_str_valueOfBoolean( sz, b ) ); } /** 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. @param ch a char. @return this string buffer. */ OStringBuffer & append(sal_Char c) { return append( &c, 1 ); } /** 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. @param i an sal_Int32. @return this string buffer. */ OStringBuffer & append(sal_Int32 i, sal_Int16 radix = 10 ) { sal_Char sz[RTL_STR_MAX_VALUEOFINT32]; return append( sz, rtl_str_valueOfInt32( sz, i, radix ) ); } /** 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. @param l a long. @return this string buffer. */ OStringBuffer & append(sal_Int64 l, sal_Int16 radix = 10 ) { sal_Char sz[RTL_STR_MAX_VALUEOFINT64]; return append( sz, rtl_str_valueOfInt64( sz, l, radix ) ); } /** 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. @param f a float. @return this string buffer. */ OStringBuffer & append(float f) { sal_Char sz[RTL_STR_MAX_VALUEOFFLOAT]; return append( sz, rtl_str_valueOfFloat( sz, f ) ); } /** 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. @param d a double. @return this string buffer. */ OStringBuffer & append(double d) { sal_Char sz[RTL_STR_MAX_VALUEOFDOUBLE]; return append( sz, rtl_str_valueOfDouble( sz, d ) ); } /** 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. @param offset the offset. @param str a string. @return this string buffer. */ OStringBuffer & insert(sal_Int32 offset, const OString & str) { return insert( offset, str.getStr(), str.getLength() ); } /** 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. @param offset the offset. @param ch a character array. @return this string buffer. */ OStringBuffer & insert( sal_Int32 offset, const sal_Char * str ) { return insert( offset, str, rtl_str_getLength( str ) ); } /** 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. @param offset the offset. @param ch a character array. @param len the number of characters to append. @return this string buffer. */ OStringBuffer & insert( sal_Int32 offset, const sal_Char * str, sal_Int32 len) { // insert behind the last character rtl_stringbuffer_insert( &pData, &nCapacity, offset, str, len ); return *this; } /** 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. @param offset the offset. @param b a sal_Bool. @return this string buffer. */ OStringBuffer & insert(sal_Int32 offset, sal_Bool b) { sal_Char sz[RTL_STR_MAX_VALUEOFBOOLEAN]; return insert( offset, sz, rtl_str_valueOfBoolean( sz, b ) ); } /** 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. @param offset the offset. @param ch a char. @return this string buffer. */ OStringBuffer & insert(sal_Int32 offset, sal_Char c) { return insert( offset, &c, 1 ); } /** 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. @param offset the offset. @param b an sal_Int32. @return this string buffer. */ OStringBuffer & insert(sal_Int32 offset, sal_Int32 i, sal_Int16 radix = 10 ) { sal_Char sz[RTL_STR_MAX_VALUEOFINT32]; return insert( offset, sz, rtl_str_valueOfInt32( sz, i, radix ) ); } /** 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. @param offset the offset. @param b a long. @return this string buffer. */ OStringBuffer & insert(sal_Int32 offset, sal_Int64 l, sal_Int16 radix = 10 ) { sal_Char sz[RTL_STR_MAX_VALUEOFINT64]; return insert( offset, sz, rtl_str_valueOfInt64( sz, l, radix ) ); } /** 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. @param offset the offset. @param b a float. @return this string buffer. */ OStringBuffer insert(sal_Int32 offset, float f) { sal_Char sz[RTL_STR_MAX_VALUEOFFLOAT]; return insert( offset, sz, rtl_str_valueOfFloat( sz, f ) ); } /** 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. @param offset the offset. @param b a double. @return this string buffer. */ OStringBuffer & insert(sal_Int32 offset, double d) { sal_Char sz[RTL_STR_MAX_VALUEOFDOUBLE]; return insert( offset, sz, rtl_str_valueOfDouble( sz, d ) ); } private: /** A pointer to the data structur which contains the data. */ rtl_String * pData; /** The len of the pData->buffer. */ sal_Int32 nCapacity; }; } #endif /* __cplusplus */ #endif /* _RTL_STRBUF_HXX_ */