(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.10 and 1.16

version 1.10, 2001/03/29 16:40:31 version 1.16, 2001/04/14 07:35:05
Line 23 
Line 23 
 // Author: // Author:
 // //
 // $Log$ // $Log$
   // Revision 1.16  2001/04/14 07:35:05  mike
   // Added config file loading to OptionManager
   //
   // Revision 1.15  2001/04/11 19:53:22  mike
   // More porting
   //
   // Revision 1.14  2001/04/10 23:01:52  mike
   // Added new TimeValue class and regression tests for it.
   // Modified Stopwatch class to use TimeValue class.
   //
   // Revision 1.13  2001/04/10 22:42:55  karl
   // Correct error in String find
   //
   // Revision 1.12  2001/04/09 20:18:47  karl
   // add find substring function
   //
   // Revision 1.11  2001/04/04 20:02:27  karl
   // documentation update
   //
 // Revision 1.10  2001/03/29 16:40:31  karl // Revision 1.10  2001/03/29 16:40:31  karl
 // add doc // add doc
 // //
Line 69 
Line 88 
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 /** /**
     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:
  
     /// Default constructor.      /** Default constructor without parameters. This constructor creates a
           null string
           <pre>
               String test;
           </pre>
       */
     String();     String();
  
     /// Copy constructor.     /// Copy constructor.
Line 96 
Line 125 
     /// Initialize from the first n characters of a plain old C-String:     /// Initialize from the first n characters of a plain old C-String:
     String(const char* x, Uint32 n);     String(const char* x, Uint32 n);
  
     /// Release all resources.      /// String destructor. Used by the representation of the String object
     ~String()     ~String()
     {     {
     }     }
  
     /// Assign this string with x.      /** Assign this string with x.
           <pre>
               String t1 = "abc";
               String t2 = t1;
           </pre>
       */
     String& operator=(const String& x) { _rep = x._rep; return *this; }     String& operator=(const String& x) { _rep = x._rep; return *this; }
  
     /// Assign this string with x.     /// Assign this string with x.
Line 122 
Line 156 
     /// Assign this string with first n characters of the plain old C-String x.     /// Assign this string with first n characters of the plain old C-String x.
     String& assign(const char* x, Uint32 n);     String& assign(const char* x, Uint32 n);
  
     /// Clear this string. After calling clear(), getLength() will return 0.      /** Clear this string. After calling clear(), getLength() will return 0.
           <pre>
               String test = "abc";
               test.clear();       // String test is now NULL (length == 0)
           </pre>
       */
     void clear() { _rep.clear(); _rep.append('\0'); }     void clear() { _rep.clear(); _rep.append('\0'); }
  
     /** Reserves memory for capacity characters. Notice that this does not     /** Reserves memory for capacity characters. Notice that this does not
Line 131 
Line 170 
         capacity argument, this method has no effect. After calling reserve(),         capacity argument, this method has no effect. After calling reserve(),
         getCapicty() returns a value which is greater or equal to the         getCapicty() returns a value which is greater or equal to the
         capacity argument.         capacity argument.
           @param capacity defines the capacity in characters to reserve.
     */     */
     void reserve(Uint32 capacity) { _rep.reserve(capacity + 1); }     void reserve(Uint32 capacity) { _rep.reserve(capacity + 1); }
  
     /// Returns the length of the string.      /** Returns the length of the String object.
           @return Length of the string in characters.
           <pre>
               String s = "abcd";
               assert(s.getLength() == 4);
           </pre>
       */
     Uint32 getLength() const { return _rep.getSize() - 1; }     Uint32 getLength() const { return _rep.getSize() - 1; }
  
     /// Returns a pointer to the first character in the string string.      /** Returns a pointer to the first character in the null-terminated string
           string.
           @param
           @return Pointer to the first character of the String object
           <pre>
               String t1 = "abc";
               const Char16* q = t1.getData();
           </pre>
       */
     const Char16* getData() const { return _rep.getData(); }     const Char16* getData() const { return _rep.getData(); }
  
     /** Allocates an 8 bit representation of this string. The user is     /** Allocates an 8 bit representation of this string. The user is
Line 146 
Line 200 
         be suppressed by passing true as the noThrow argument. Extra         be suppressed by passing true as the noThrow argument. Extra
         characters may be allocated at the end of the new string by         characters may be allocated at the end of the new string by
         passing a non-zero value to the extraBytes argument.         passing a non-zero value to the extraBytes argument.
           @param extraBytes -  Defines the number of extra characters to be
           allocated at the end of the new string. Default is zero.
           @param  noThrow - If true, no exception will be thrown if characters
           are truncated
           @return pointer to the new representation of the string
           @exception Throws TruncatedCharacter exception if any characters are
           truncated
           <pre>
               String test = "abc";
               char* p = test.allocateCString();
           </pre>
     */     */
     char* allocateCString(Uint32 extraBytes = 0, Boolean noThrow = false) const;     char* allocateCString(Uint32 extraBytes = 0, Boolean noThrow = false) const;
  
Line 153 
Line 218 
         then the lesser of the the length argument and the length of this         then the lesser of the the length argument and the length of this
         string is truncated. Otherwise, the entire string is trunctated. The         string is truncated. Otherwise, the entire string is trunctated. The
         TruncatedCharacter exception is thrown if any characters are truncated.         TruncatedCharacter exception is thrown if any characters are truncated.
           <pre>
               const char STR0[] = "one two three four";
               String s = STR0;
               const char STR1[] = "zero ";
               char* tmp = new char[strlen(STR1) + s.getLength() + 1];
               strcpy(tmp, STR1);
               s.appendToCString(tmp, 7);
               assert(strcmp(tmp, "zero one two") == 0);
           </pre>
     */     */
     void appendToCString(     void appendToCString(
         char* str,         char* str,
         Uint32 length = Uint32(-1),         Uint32 length = Uint32(-1),
         Boolean noThrow = false) const;         Boolean noThrow = false) const;
  
     /// Returns the Ith character of the string.      /** Returns the Ith character of the String object.
           @exception - Throws exception "OutofBounds" if the index
           is outside the length of the string.
           <pre>
               String t1 = "abc;
               Char16 c = t1[1];   // character b
           </pre>
       */
     Char16& operator[](Uint32 i);     Char16& operator[](Uint32 i);
  
     /// Returns the Ith character of the string (const version).      /** Returns the Ith character of the String (const version).
           @exception - Throws exception "OutofBounds" if the index
           is outside the length of the string.
   
       */
     const Char16 operator[](Uint32 i) const;     const Char16 operator[](Uint32 i) const;
  
     /// Append the given character to the string.      /** Append the given character to the string.
           <pre>
                String s4 = "Hello";
               s4.append(Char16(0x0000))
           </pre>
       */
     String& append(const Char16& c)     String& append(const Char16& c)
     {     {
         _rep.insert(_rep.getSize() - 1, c);         _rep.insert(_rep.getSize() - 1, c);
         return *this;         return *this;
     }     }
  
     /// Append n characters from str to this string.      /// Append n characters from str to this String object.
     String& append(const Char16* str, Uint32 n);     String& append(const Char16* str, Uint32 n);
  
     /// Append the characters of str to this string.      /// Append the characters of str to this String object.
     String& append(const String& str)     String& append(const String& str)
     {     {
         return append(str.getData(), str.getLength());         return append(str.getData(), str.getLength());
     }     }
  
     /// Append the characters of str to this string.      /** Overload operator += appends the parameter String to this String.
           @parm String to append.
           @return This String
           <pre>
           String test = "abc";
           test += "def";
           assert(test == "abcdef");
           </pre>
       */
     String& operator+=(const String& x)     String& operator+=(const String& x)
     {     {
         return append(x);         return append(x);
     }     }
  
     /// Append the character given by c to this string.      /** Append the character given by c to this String object.
           @param c - Single character
       */
     String& operator+=(Char16 c)     String& operator+=(Char16 c)
     {     {
         return append(c);         return append(c);
     }     }
  
     /// Append the character given by c to this string.      /** Append the character given by c to this string.
           <pre>
               String t1 = "abc";
               t1 += 'd'
               assert(t1 == "abcd");
           </pre>
       */
     String& operator+=(char c)     String& operator+=(char c)
     {     {
         return append(Char16(c));         return append(Char16(c));
Line 201 
Line 307 
  
     /** Remove size characters from the string starting at the given     /** Remove size characters from the string starting at the given
         position. If size is -1, then all characters after pos are removed.         position. If size is -1, then all characters after pos are removed.
           @param pos - Position in string to start remove
           @param size - Number of characters to remove. Default is -1 which
           causes all characters after pos to be removed
           <pre>
               String s;
               s = "abc";
               s.remove(0, 1);
               assert(String::equal(s, "bc"));
               assert(s.getLength() == 2);
               s.remove(0);
               assert(String::equal(s, ""));
               assert(s.getLength() == 0);
           </pre>
           @exception throws "OutOfBounds" exception if size is greater than
           length of String plus starting position for remove.
     */     */
     void remove(Uint32 pos, Uint32 size = Uint32(-1));     void remove(Uint32 pos, Uint32 size = Uint32(-1));
  
     /** Return a new string which is initialzed with <TT>length</TT>      /** Return a new String which is initialzed with <TT>length</TT>
         characters from this string starting at <TT>pos</TT>.         characters from this string starting at <TT>pos</TT>.
         @param <TT>pos</TT> is the positon in string to start getting the         @param <TT>pos</TT> is the positon in string to start getting the
         substring.         substring.
         @param <TT>length</TT> is the number of characters to get. If length         @param <TT>length</TT> is the number of characters to get. If length
         is -1, then all characters after pos are added to the new string.         is -1, then all characters after pos are added to the new string.
         @return String with the defined substring.         @return String with the defined substring.
           <pre>
               s = "abcdefg";
               s.remove(3);
               assert(String::equal(s, "abc"));
           </pre>
     */     */
     String subString(Uint32 pos, Uint32 length = Uint32(-1)) const;     String subString(Uint32 pos, Uint32 length = Uint32(-1)) const;
  
     /** Find the position of the first occurence of the character c.     /** Find the position of the first occurence of the character c.
         If the character is not found, -1 is returned.         If the character is not found, -1 is returned.
           @param c -  Char to be found in the String
           @return Position of the character in the string or -1 if not found.
     */     */
     Uint32 find(Char16 c) const;     Uint32 find(Char16 c) const;
  
       /** Find the position of the first occurence of the string object.
           This function finds one string inside another
           If the matching substring is not found, -1 is returned.
           @param s -  String object to be found in the String
           @return Position of the substring in the String or -1 if not
           found.
       */
       Uint32 find(const String& s) const;
   
       /** Find substring
           @ param - 16 bit character pointer
           @seealso find
       */
       Uint32 find(const Char16* s) const;
   
       /** find substring
           @param char* to substring
       */
       Uint32 find(const char* s) const;
   
     /** Same as find() but start looking in reverse (last character first).     /** Same as find() but start looking in reverse (last character first).
           @Seealso find
           @return Position of the character in the string or -1 if not found.
   
           NOTE: This function is defined only for char* input, not for
           String.
     */     */
     Uint32 reverseFind(Char16 c) const;     Uint32 reverseFind(Char16 c) const;
  
     /** Compare the first n characters of the two strings. Return -1 if s1      /** Compare the first n characters of the two strings.
         is lexographically less than s2. If they are equavalent return 0.          @param s1 - First null-terminated string for the comparison
         Otherwise return 1.          @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 Char16* s1, const Char16* s2, Uint32 n);     static int compare(const Char16* s1, const Char16* s2, Uint32 n);
  
     /** Compare the two null-terminated strings. If s1 is less than s2,      /** Compare two null-terminated strings.
         return -1; if equal return 0; otherwise, return 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.
   
           NOTE: Use the comparison operators <,<= > >= to compare
           String objects.
     */     */
     static int compare(const Char16* s1, const Char16* s2);     static int compare(const Char16* s1, const Char16* s2);
  
     /// Return true if the two strins are equal.      /** Compare two String objects for equality.
           @param s1 - First <TT>String</TT> for comparison.
           @param s2 - Second <TT>String</TT> for comparison.
   
           @return Boolean true if the two strings are equal.
           <pre>
               String s1 = "Hello World";
               String s2 = s1;
               String s3(s2);
               assert(String::equal(s1, s3));
           </pre>
       */
     static Boolean equal(const String& x, const String& y);     static Boolean equal(const String& x, const String& y);
  
     /// Return true if the two strins are equal.      /// Return true if the two strings are equal.
     static Boolean equal(const String& x, const Char16* y);     static Boolean equal(const String& x, const Char16* y);
  
     /// Return true if the two strins are equal.      /// Return true if the two strings are equal.
     static Boolean equal(const Char16* x, const String& y);     static Boolean equal(const Char16* x, const String& y);
  
     /// Return true if the two strins are equal.      /// Return true if the two strings are equal.
     static Boolean equal(const String& x, const char* y);     static Boolean equal(const String& x, const char* y);
  
     /// Return true if the two strins are equal.      /// Return true if the two strings are equal.
     static Boolean equal(const char* x, const String& y);     static Boolean equal(const char* x, const String& y);
  
     /// Convert the plain old C-string to lower case:     /// Convert the plain old C-string to lower case:
Line 265 
Line 438 
     Array<Char16> _rep;     Array<Char16> _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
   
   */
 inline Boolean operator==(const String& x, const String& y) inline Boolean operator==(const String& x, const String& y)
 { {
     return String::equal(x, y);     return String::equal(x, y);
 } }
  
   /** String operator ==. Test for equality between two strings
   
   */
 inline Boolean operator==(const String& x, const char* y) inline Boolean operator==(const String& x, const char* y)
 { {
     return String::equal(x, y);     return String::equal(x, y);
 } }
  
   /** String operator ==. Test for equality between two strings
   
   */
 inline Boolean operator==(const char* x, const String& y) inline Boolean operator==(const char* x, const String& y)
 { {
     return String::equal(x, y);     return String::equal(x, y);
 } }
  
   /** String operator ==. Test for equality between two strings
   
   */
 inline Boolean operator!=(const String& x, const String& y) inline Boolean operator!=(const String& x, const String& y)
 { {
     return !String::equal(x, y);     return !String::equal(x, y);
Line 289 
Line 476 
     std::ostream& os,     std::ostream& os,
     const String& x);     const String& x);
  
   /** overload operator +  - Concatenates String objects.
   
       <pre>
           String t1 = "abc";
           String t2;
           t2 = t1 + "def"
           assert(t2 == "abcdef");
       </pre>
   */
 inline String operator+(const String& x, const String& y) inline String operator+(const String& x, const String& y)
 { {
     return String(x).append(y);     return String(x).append(y);
 } }
  
   /** overload operator < - Compares String obects.
       <pre>
           String t1 = "def";
           String t2 = "a";
           assert (t2 < t1);
       </pre>
   */
 inline Boolean operator<(const String& x, const String& y) inline Boolean operator<(const String& x, const String& y)
 { {
     return String::compare(x.getData(), y.getData()) < 0;     return String::compare(x.getData(), y.getData()) < 0;
 } }
  
   /** overload operator <= compares String objects.
   
   */
 inline Boolean operator<=(const String& x, const String& y) inline Boolean operator<=(const String& x, const String& y)
 { {
     return String::compare(x.getData(), y.getData()) <= 0;     return String::compare(x.getData(), y.getData()) <= 0;
 } }
  
   /** Overload operator > compares String objects
   */
 inline Boolean operator>(const String& x, const String& y) inline Boolean operator>(const String& x, const String& y)
 { {
     return String::compare(x.getData(), y.getData()) > 0;     return String::compare(x.getData(), y.getData()) > 0;
 } }
  
   /** overload operator >= - Compares String objects
   */
 inline Boolean operator>=(const String& x, const String& y) inline Boolean operator>=(const String& x, const String& y)
 { {
     return String::compare(x.getData(), y.getData()) >= 0;     return String::compare(x.getData(), y.getData()) >= 0;
Line 319 
Line 529 
 */ */
 PEGASUS_COMMON_LINKAGE String ToLower(const String& str); PEGASUS_COMMON_LINKAGE String ToLower(const String& str);
  
   /** Compare two strings but ignore any case differences.
   */
   PEGASUS_COMMON_LINKAGE int CompareIgnoreCase(const char* s1, const char* s2);
   
   /** Get the next line from the input file.
   */
   PEGASUS_COMMON_LINKAGE Boolean GetLine(std::istream& is, String& line);
   
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END
  


Legend:
Removed from v.1.10  
changed lines
  Added in v.1.16

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2