(file) Return to String.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/String.h between version 1.3 and 1.73

version 1.3, 2001/01/28 04:11:03 version 1.73, 2002/10/07 17:42:04
Line 1 
Line 1 
 //BEGIN_LICENSE  //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM  // 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  // Permission is hereby granted, free of charge, to any person obtaining a copy
 // copy of this software and associated documentation files (the "Software"),  // of this software and associated documentation files (the "Software"), to
 // to deal in the Software without restriction, including without limitation  // deal in the Software without restriction, including without limitation the
 // the rights to use, copy, modify, merge, publish, distribute, sublicense,  // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 // and/or sell copies of the Software, and to permit persons to whom the  // sell copies of the Software, and to permit persons to whom the Software is
 // Software is furnished to do so, subject to the following conditions:  // 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.
 // //
 // 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.  
 // //
 //END_LICENSE  // Author: Mike Brasher (mbrasher@bmc.com)
 //BEGIN_HISTORY  
 // //
 // Author:  // Modified By: Karl Schopmeyer(k.schopmeyer@opengroup.org)
   //              Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)
 // //
 // $Log$  //%/////////////////////////////////////////////////////////////////////////////
 // Revision 1.3  2001/01/28 04:11:03  mike  
 // fixed qualifier resolution  
 //  
 // Revision 1.2  2001/01/24 16:16:38  karl  
 // Incorporate Doc++ Comments as documentation into .h files  
 //  
 // Revision 1.1.1.1  2001/01/14 19:53:15  mike  
 // Pegasus import  
 //  
 //  
 //END_HISTORY  
   
 ////////////////////////////////////////////////////////////////////////////////  
 //  
 // String.h  
 //  
 //      Simple String type.  
 //  
 ////////////////////////////////////////////////////////////////////////////////  
   
 /*  
 String Header File - Defines the CIM String Class.  
 */  
  
 #ifndef Pegasus_String_h #ifndef Pegasus_String_h
 #define Pegasus_String_h #define Pegasus_String_h
  
   #ifdef PEGASUS_OS_HPUX
   # ifdef HPUX_IA64_NATIVE_COMPILER
 #include <iostream> #include <iostream>
 #include <cstring>  # else
   #  include <iostream.h>
   # endif
   #else
   # include <iostream>
   #endif
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/Char16.h> #include <Pegasus/Common/Char16.h>
 #include <Pegasus/Common/Array.h>  #include <Pegasus/Common/Linkage.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 PEGASUS_COMMON_LINKAGE void ThrowNullPointer();  class String;
   class StringRep;
 PEGASUS_COMMON_LINKAGE Uint32 StrLen(const Char16* str);  
  
 inline Uint32 StrLen(const char* str)  /** The CString class provides access to an 8-bit String representation.
   */
   class PEGASUS_COMMON_LINKAGE CString
 { {
     if (!str)  public:
         ThrowNullPointer();  
       CString();
   
       CString(const CString& cstr);
   
       ~CString();
   
       CString& operator=(const CString& cstr);
   
       operator const char*() const;
   
   private:
   
       CString(char* cstr);
   
       friend class String;
   
       void* _rep;
   };
  
     return strlen(str);  
 }  
 /** /**
 The Pegasus String C++ Class implements the CIM string type      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 class PEGASUS_COMMON_LINKAGE String
 { {
 public: public:
  
     /**      /** EMPTY - Represent an empty string.
     String with no parameters          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
           <pre>
               String test;
           </pre>
     */     */
     String();     String();
     /**  
         String something class definitions      /// 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.
           <pre>
               String t1 = "abc";
               String t2 = t1;
           </pre>
     */     */
     String(const String& x);      String& operator=(const String& str);
     /// Create a CIM string  
     String(const String& x, Uint32 n);      /** Assign this string with String str
     /// Create a CIM String      @param str String to assign
     String(const Char16* x);      @return Returns the String
     /// Create a CIM String  
     String(const Char16* x, Uint32 n);  
     /** Create a CIM String  
     */     */
     String(const char* x);      String& assign(const String& str);
  
     String(const char* x, Uint32 n);      /// Assign this string with str.
       String& assign(const Char16* str);
  
     ~String() { }      /// Assign this string with first n characters of str.
     /** method ATTN:      String& assign(const Char16* str, Uint32 n);
     */  
     String& operator=(const String& x) { _rep = x._rep; return *this; }  
  
     String& operator=(const Char16* x) { assign(x); return *this; }      /// Assign this string with the plain old C-String str.
     /** method assign - ATTN:      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.
           <pre>
               String test = "abc";
               test.clear();       // String test is now NULL (length == 0)
           </pre>
     */     */
     String& assign(const String& x) { _rep = x._rep; return *this; }      void clear();
     /** method assign - ATTN:  
   
       /** 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.
     */     */
     String& assign(const Char16* x);      void reserveCapacity(Uint32 capacity);
     /** method assign - ATTN:  
       /** Returns the length of the String object.
           @return Length of the string in characters.
           <pre>
               String s = "abcd";
               assert(s.size() == 4);
           </pre>
     */     */
     String& assign(const Char16* x, Uint32 n);      Uint32 size() const;
     /** method assign - ATTN:  
       /** 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
           <pre>
               String t1 = "abc";
               const Char16* q = t1.getChar16Data();
           </pre>
     */     */
     String& assign(const char* x);      const Char16* getChar16Data() const;
     /** method assign - ATTN:  
       /** 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
   
           <pre>
               String test = "abc";
               printf("test = %s\n", (const char*)test.getCString());
           </pre>
     */     */
     String& assign(const char* x, Uint32 n);      CString getCString() const;
     /** Method clear -- ATTN:  
       /** 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.
           <pre>
               String t1 = "abc;
               Char16 c = t1[1];   // character b
           </pre>
     */     */
     void clear() { _rep.clear(); _rep.append('\0'); }      Char16& operator[](Uint32 index);
     /** Method reserve - ATTN:  
       /** 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.
     */     */
     void reserve(Uint32 capacity) { _rep.reserve(capacity + 1); }      const Char16 operator[](Uint32 index) const;
     /** Method getLength - ATTN:  
       /** Append the given character to this String.
           @param c Character to append.
           @return This String
           <pre>
               String t1 = "abc";
               t1.append (Char16('d'));
               assert(t1 == "abcd");
           </pre>
     */     */
     Uint32 getLength() const { return _rep.getSize() - 1; }      String& append(const Char16& c);
     /** Method getData - ATT  
       /// 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
           <pre>
           String test = "abc";
           test.append("def");
           assert(test == "abcdef");
           </pre>
       */
       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
           <pre>
               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);
           </pre>
           @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 <TT>length</TT>
           characters from this string starting at <TT>index</TT>.
           @param <TT>index</TT> is the index in string to start getting the
           substring.
           @param <TT>length</TT> 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.
           <pre>
               s = "abcdefg";
               s.remove(3);
               assert(String::equal(s, "abc"));
           </pre>
       */
       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.
     */     */
     const Char16* getData() const { return _rep.getData(); }      Uint32 find(Char16 c) const;
   
       /** Same as above but starts searching from the given index. */
       Uint32 find(Uint32 index, Char16 c) const;
  
     /** Method allocateCString -  Allocates an 8 bit representation of this      /** Find the index of the first occurence of the string object.
     string. The user is responsible for freeing the result. If any characters          This function finds one string inside another
     are truncated, a TruncatedCharacter exception is thrown. This exception may          If the matching substring is not found, PEG_NOT_FOUND is returned.
     be suppressed by passing true as the noThrow argument. */          @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;
  
     char* allocateCString(Uint32 extraBytes = 0, Boolean noThrow = false) 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.
  
     /** Method appendToCString - Append the given string to a C-string. If the          NOTE: This function is defined only for char* input, not for
     length is not Uint32(-1), then the lesser of the the length argument and the          String.
     length of this string is truncated. Otherwise, the entire string is  
     trunctated. The TruncatedCharacter exception is thrown if any characters are  
     truncated.  
     */     */
     void appendToCString(      Uint32 reverseFind(Char16 c) const;
         char* str,  
         Uint32 length = Uint32(-1),  
         Boolean noThrow = false) const;  
  
     Char16& operator[](Uint32 i);      /** Converts all characters in this string to lower case.
       */
       void toLower();
  
     const Char16 operator[](Uint32 i) const;      /** Compare the first n characters of the two strings..
     /// method Append          @param s1 First null-terminated string for the comparison.
     String& append(const Char16& c)          @param s2 Second null-terminated string for the comparison.
     {          @param n Number of characters to compare.
         _rep.insert(_rep.getSize() - 1, c);          @return Return -1 if s1 is lexographically less than s2. If they are
         return *this;          equavalent return 0. Otherwise return 1.
     }      */
     /// method append      static int compare(const String& s1, const String& s2, Uint32 n);
     String& append(const Char16* str, Uint32 n);  
     /// method append  
     String& append(const String& str)  
     {  
         return append(str.getData(), str.getLength());  
     }  
     /// ATTN  
     String& operator+=(const String& x)  
     {  
         return append(x);  
     }  
     /// ATTN  
     String& operator+=(Char16 c)  
     {  
         return append(c);  
     }  
     /// ATTN  
     String& operator+=(char c)  
     {  
         return append(Char16(c));  
     }  
  
     /// remove a string      /** Compare two null-terminated strings.
     void remove(Uint32 pos, Uint32 size = Uint32(-1));          @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.
  
     /// method subString ATTN:          NOTE: Use the comparison operators <,<= > >= to compare
     String subString(Uint32 pos, Uint32 length = Uint32(-1)) const;          String objects.
       */
       static int compare(const String& s1, const String& s2);
  
     /// Method find - ATTN:      /** Just like one above except ignores case differences.
     Uint32 find(Char16 c) const;      */
       static int compareNoCase(const String& s1, const String& s2);
  
     /// Method compare - Compare two CIM strings - ATTN:      /** Compare two String objects for equality.
     static int compare(const Char16* s1, const Char16* s2, Uint32 n);          @param s1 First <TT>String</TT> for comparison.
           @param s2 Second <TT>String</TT> for comparison.
  
     /// Method compare -- Compare two CIM strings          @return Boolean true if the two strings are equal.
     static int compare(const Char16* s1, const Char16* s2);          <pre>
               String s1 = "Hello World";
               String s2 = s1;
               String s3(s2);
               assert(String::equal(s1, s3));
           </pre>
       */
       static Boolean equal(const String& str1, const String& str2);
  
     /// ATTN      /** equalNoCase - Compares two strings and returuns true if they
     static const String EMPTY;          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: private:
  
     static Uint32 _min(Uint32 x, Uint32 y) { return x < y ? x : y; }      StringRep* _rep;
   
     Array<Char16> _rep;  
 }; };
  
 PEGASUS_COMMON_LINKAGE Boolean operator==(const String& x, const String& y);  /** 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);
  
 PEGASUS_COMMON_LINKAGE Boolean operator==(const String& x, const char* y);  /** String operator ==. Test for equality between two strings
  
 PEGASUS_COMMON_LINKAGE Boolean operator==(const char* x, const String& y);  */
   PEGASUS_COMMON_LINKAGE Boolean operator==(const String& str1, const char* str2);
  
 inline Boolean operator!=(const String& x, const String& y)  /** String operator ==. Test for equality between two strings
 {  
     return !operator==(x, y);  
 }  
  
 PEGASUS_COMMON_LINKAGE std::ostream& operator<<(std::ostream& os, const String&  */
 x);  PEGASUS_COMMON_LINKAGE Boolean operator==(const char* str1, const String& str2);
  
 inline String operator+(const String& x, const String& y)  /** String operator ==. Test for equality between two strings
 {  
     return String(x).append(y);  
 }  
  
 inline Boolean operator<(const String& x, const String& y)  */
 {  PEGASUS_COMMON_LINKAGE Boolean operator!=(
     return String::compare(x.getData(), y.getData()) < 0;      const String& str1,
 }      const String& str2);
  
 inline Boolean operator<=(const String& x, const String& y)  PEGASUS_COMMON_LINKAGE PEGASUS_STD(ostream)& operator<<(
 {      PEGASUS_STD(ostream)& os,
     return String::compare(x.getData(), y.getData()) <= 0;      const String& str);
 }  
  
 inline Boolean operator>(const String& x, const String& y)  /** overload operator +  - Concatenates String objects.
 {  
     return String::compare(x.getData(), y.getData()) > 0;  
 }  
  
 inline Boolean operator>=(const String& x, const String& y)      <pre>
 {          String t1 = "abc";
     return String::compare(x.getData(), y.getData()) >= 0;          String t2;
 }          t2 = t1 + "def"
           assert(t2 == "abcdef");
       </pre>
   */
   PEGASUS_COMMON_LINKAGE String operator+(const String& str1, const String& str2);
   
   /** overload operator < - Compares String obects.
       <pre>
           String t1 = "def";
           String t2 = "a";
           assert (t2 < t1);
       </pre>
   */
   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 PEGASUS_NAMESPACE_END
  
 #endif /* Pegasus_String_h */ #endif /* Pegasus_String_h */
   


Legend:
Removed from v.1.3  
changed lines
  Added in v.1.73

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2