//%///////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM, // The Open Group, Tivoli Systems // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // //============================================================================== // // Author: Mike Brasher (mbrasher@bmc.com) // // Modified By: Karl Schopmeyer(k.schopmeyer@opengroup.org) // Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com) // //%///////////////////////////////////////////////////////////////////////////// #ifndef Pegasus_String_h #define Pegasus_String_h #ifdef PEGASUS_OS_HPUX # ifdef HPUX_IA64_NATIVE_COMPILER # include # else # include # endif #else # include #endif #include #include #include PEGASUS_NAMESPACE_BEGIN class String; class StringRep; /** The CString class provides access to an 8-bit String representation. */ class PEGASUS_COMMON_LINKAGE CString { public: CString(); CString(const CString& cstr); ~CString(); CString& operator=(const CString& cstr); operator const char*() const; private: CString(char* cstr); friend class String; void* _rep; }; /** The Pegasus String C++ Class implements the CIM string type. This class is based on the general handle/representation pattern defined for all the Pegasus objects. However, it differes from most in that it implements "copy on assign" all of the others implement "no copy on assign" semantics. The string class uses the Array class and implements an array of characters. */ class PEGASUS_COMMON_LINKAGE String { public: /** EMPTY - Represent an empty string. This member is used to represent empty strings. Using this member avoids an expensive construction of an empty string (e.g., String()). */ static const String EMPTY; /** Default constructor without parameters. This constructor creates a null string
	    String test;
	
*/ String(); /// Copy constructor. String(const String& str); /// Initialize with first n characters from str. String(const String& str, Uint32 n); /// Initialize with str. String(const Char16* str); /// Initialize with first n characters of str. String(const Char16* str, Uint32 n); /// Initialize from a plain old C-String: String(const char* str); /// Initialize from the first n characters of a plain old C-String: String(const char* str, Uint32 n); /// String destructor. Used by the representation of the String object ~String(); /** Assign this string with str.
	    String t1 = "abc";
	    String t2 = t1;
	
*/ String& operator=(const String& str); /** Assign this string with String str @param str String to assign @return Returns the String */ String& assign(const String& str); /// Assign this string with str. String& assign(const Char16* str); /// Assign this string with first n characters of str. String& assign(const Char16* str, Uint32 n); /// Assign this string with the plain old C-String str. String& assign(const char* str); /// Assign this string with first n characters of the plain old C-String str. String& assign(const char* str, Uint32 n); /** clear - Clear this string. After calling clear(), size() will return 0.
	    String test = "abc";
	    test.clear();	// String test is now NULL (length == 0)
	
*/ void clear(); /** reserveCapacity - Reserves memory for capacity characters. Notice that this does not change the size of the string (size() returns what it did before). If the capacity of the string is already greater or equal to the capacity argument, this method has no effect. The capacity of a String object has no bearing on its external behavior. The capacity of a String is set only for performance reasons. @param capacity defines the capacity in characters to reserve. */ void reserveCapacity(Uint32 capacity); /** Returns the length of the String object. @return Length of the string in characters.
	    String s = "abcd";
	    assert(s.size() == 4);
	
*/ Uint32 size() const; /** getChar16Data Returns a pointer to the first character in the null-terminated Char16 buffer of the String object. @return Pointer to the first character of the String object
	    String t1 = "abc";
	    const Char16* q = t1.getChar16Data();
	
*/ const Char16* getChar16Data() const; /** getCString - Create an 8-bit representation of this String object. @param truncatedCharacters Output parameter specifying whether any characters were truncated in the conversion. @return CString object that provides access to the 8-bit String representation
	    String test = "abc";
            printf("test = %s\n", (const char*)test.getCString());
	
*/ CString getCString() const; /** Returns the specified character of the String object. @param index Index of the character to access @exception IndexOutOfBoundsException if the index is outside the bounds of the String.
	    String t1 = "abc;
	    Char16 c = t1[1];	// character b
	
*/ Char16& operator[](Uint32 index); /** Returns the specified character of the String object (const version). @param index Index of the character to access @exception IndexOutOfBoundsException if the index is outside the bounds of the String. */ const Char16 operator[](Uint32 index) const; /** Append the given character to this String. @param c Character to append. @return This String
	    String t1 = "abc";
	    t1 += Char16('d')
	    assert(t1 == "abcd");
	
*/ String& append(const Char16& c); /// Append n characters from str to this String. String& append(const Char16* str, Uint32 n); /** Append the given String to this String. @param str String to append. @return This String
	String test = "abc";
	test.append("def");
	assert(test == "abcdef");
	
*/ String& append(const String& str); /** Remove size characters from the string starting at the given index. If size is PEG_NOT_FOUND, then all characters after index are removed. @param index Position in string to start remove @param size Number of characters to remove. Default is PEG_NOT_FOUND which causes all characters after index to be removed
	    String s;
	    s = "abc";
	    s.remove(0, 1);
	    assert(String::equal(s, "bc"));
	    assert(s.size() == 2);
	    s.remove(0);
	    assert(String::equal(s, ""));
	    assert(s.size() == 0);
	
@exception IndexOutOfBoundsException if size is greater than length of String plus starting index for remove. */ void remove(Uint32 index, Uint32 size = PEG_NOT_FOUND); /** Return a new String which is initialzed with length characters from this string starting at index. @param index is the index in string to start getting the substring. @param length is the number of characters to get. If length is PEG_NOT_FOUND, then all characters after index are added to the new string. @return String with the defined substring.
	    s = "abcdefg";
	    s.remove(3);
	    assert(String::equal(s, "abc"));
	
*/ String subString(Uint32 index, Uint32 length = PEG_NOT_FOUND) const; /** Find the index of the first occurence of the character c. If the character is not found, PEG_NOT_FOUND is returned. @param c Char to be found in the String @return Position of the character in the string or PEG_NOT_FOUND if not found. */ Uint32 find(Char16 c) const; /** Same as above but starts searching from the given index. */ Uint32 find(Uint32 index, Char16 c) const; /** Find the index of the first occurence of the string object. This function finds one string inside another If the matching substring is not found, PEG_NOT_FOUND is returned. @param s String object to be found in the String @return Position of the substring in the String or PEG_NOT_FOUND if not found. */ Uint32 find(const String& s) const; /** reverseFind - Same as find() but start looking in reverse (last character first). @param c Char16 character to find in String. @Seealso find @return Position of the character in the string or PEG_NOT_FOUND if not found. NOTE: This function is defined only for char* input, not for String. */ Uint32 reverseFind(Char16 c) const; /** Converts all characters in this string to lower case. */ void toLower(); /** Compare the first n characters of the two strings.. @param s1 First null-terminated string for the comparison. @param s2 Second null-terminated string for the comparison. @param n Number of characters to compare. @return Return -1 if s1 is lexographically less than s2. If they are equavalent return 0. Otherwise return 1. */ static int compare(const String& s1, const String& s2, Uint32 n); /** Compare two null-terminated strings. @param s1 First null-terminated string for the comparison. @param s2 Second null-terminated string for the comparison. @return If s1 is less than s2, return -1; if equal return 0; otherwise, return 1. NOTE: Use the comparison operators <,<= > >= to compare String objects. */ static int compare(const String& s1, const String& s2); /** Just like one above except ignores case differences. */ static int compareNoCase(const String& s1, const String& s2); /** Compare two String objects for equality. @param s1 First String for comparison. @param s2 Second String for comparison. @return Boolean true if the two strings are equal.
	    String s1 = "Hello World";
	    String s2 = s1;
	    String s3(s2);
	    assert(String::equal(s1, s3));
	
*/ static Boolean equal(const String& str1, const String& str2); /** equalNoCase - Compares two strings and returuns true if they are equal indpedent of case of the characters. @param str1 First String parameter @param str2 Second String parameter @return true if strings are equal independent of case. */ static Boolean equalNoCase(const String& str1, const String& str2); private: StringRep* _rep; }; /** String operator ==. Test for equality between two strings of any of the types String or char*. @return Boolean - True if the strings are equal */ PEGASUS_COMMON_LINKAGE Boolean operator==( const String& str1, const String& str2); /** String operator ==. Test for equality between two strings */ PEGASUS_COMMON_LINKAGE Boolean operator==(const String& str1, const char* str2); /** String operator ==. Test for equality between two strings */ PEGASUS_COMMON_LINKAGE Boolean operator==(const char* str1, const String& str2); /** String operator ==. Test for equality between two strings */ PEGASUS_COMMON_LINKAGE Boolean operator!=( const String& str1, const String& str2); PEGASUS_COMMON_LINKAGE PEGASUS_STD(ostream)& operator<<( PEGASUS_STD(ostream)& os, const String& str); /** overload operator + - Concatenates String objects.
	String t1 = "abc";
	String t2;
	t2 = t1 + "def"
	assert(t2 == "abcdef");
    
*/ PEGASUS_COMMON_LINKAGE String operator+(const String& str1, const String& str2); /** overload operator < - Compares String obects.
	String t1 = "def";
	String t2 = "a";
	assert (t2 < t1);
    
*/ PEGASUS_COMMON_LINKAGE Boolean operator<( const String& str1, const String& str2); /** overload operator <= compares String objects. */ PEGASUS_COMMON_LINKAGE Boolean operator<=( const String& str1, const String& str2); /** Overload operator > compares String objects */ PEGASUS_COMMON_LINKAGE Boolean operator>( const String& str1, const String& str2); /** overload operator >= - Compares String objects */ PEGASUS_COMMON_LINKAGE Boolean operator>=( const String& str1, const String& str2); #ifndef PEGASUS_REMOVE_DEPRECATED /** Compare two strings but ignore any case differences. */ PEGASUS_COMMON_LINKAGE int CompareNoCase(const char* s1, const char* s2); #endif PEGASUS_NAMESPACE_END #endif /* Pegasus_String_h */