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

Diff for /pegasus/src/Pegasus/Common/String.cpp between version 1.71 and 1.83

version 1.71, 2003/08/20 17:35:53 version 1.83, 2003/10/13 17:20:00
Line 42 
Line 42 
 #include "CommonUTF.h" #include "CommonUTF.h"
  
 #ifdef PEGASUS_HAS_ICU #ifdef PEGASUS_HAS_ICU
 #include <unistr.h>  #include <unicode/unistr.h>
 #endif #endif
  
 PEGASUS_USING_STD; PEGASUS_USING_STD;
Line 62 
Line 62 
  
 CString::CString(const CString& cstr) CString::CString(const CString& cstr)
 { {
       _rep = 0;
   
       if (cstr._rep)
       {
     _rep = (void*)new char[strlen((char*)cstr._rep)+1];     _rep = (void*)new char[strlen((char*)cstr._rep)+1];
     strcpy((char*)_rep, (char*)cstr._rep);     strcpy((char*)_rep, (char*)cstr._rep);
 } }
   }
  
 CString::CString(char* cstr) CString::CString(char* cstr)
     : _rep(cstr)     : _rep(cstr)
Line 74 
Line 79 
 CString::~CString() CString::~CString()
 { {
     if (_rep)     if (_rep)
       {
         delete [] (char*)_rep;         delete [] (char*)_rep;
 } }
   }
  
 CString& CString::operator=(const CString& cstr) CString& CString::operator=(const CString& cstr)
 { {
       if (&cstr != this)
       {
           if (_rep)
           {
               delete [] (char*)_rep;
               _rep = 0;
           }
           if (cstr._rep)
           {
     _rep = (char*)new char[strlen((char*)cstr._rep)+1];     _rep = (char*)new char[strlen((char*)cstr._rep)+1];
     strcpy((char*)_rep, (char*)cstr._rep);     strcpy((char*)_rep, (char*)cstr._rep);
           }
       }
     return *this;     return *this;
 } }
  
Line 234 
Line 252 
  
 String& String::operator=(const String& str) String& String::operator=(const String& str)
 { {
     return assign(str);      if (&str != this)
       {
           assign(str);
       }
       return *this;
 } }
  
 String& String::assign(const String& str) String& String::assign(const String& str)
Line 463 
Line 485 
 } }
  
 // ATTN-RK-P3-20020509: Define case-sensitivity for non-English characters // ATTN-RK-P3-20020509: Define case-sensitivity for non-English characters
   // ATTN-CEC-20030913: ICU code added, but uses the server's locale.  Look at adding
   // a toLower( ) with Locale parameter - like ICU's toLower( )
 void String::toLower() void String::toLower()
 { {
 #ifdef PEGASUS_HAS_ICU #ifdef PEGASUS_HAS_ICU
     Char16* utf16str;      UnicodeString UniStr((const UChar *)_rep->c16a.getData());
     UnicodeString UniStr((const UChar *)_rep->c16a.getData(), (int32_t)size());      UniStr.toLower();
     UniStr = UniStr.toLower();      UniStr.append((UChar)'\0');
     utf16str = (Char16 *)UniStr.getTerminatedBuffer();  
     assign(utf16str);      assign((Char16*)UniStr.getBuffer());
     delete utf16str;  
 #else #else
     for (Char16* p = &_rep->c16a[0]; *p; p++)     for (Char16* p = &_rep->c16a[0]; *p; p++)
     {     {
Line 523 
Line 546 
 #ifdef PEGASUS_HAS_ICU #ifdef PEGASUS_HAS_ICU
     UnicodeString UniStr1((const UChar *)s1.getChar16Data(), (int32_t)s1.size());     UnicodeString UniStr1((const UChar *)s1.getChar16Data(), (int32_t)s1.size());
     UnicodeString UniStr2((const UChar *)s2.getChar16Data(), (int32_t)s2.size());     UnicodeString UniStr2((const UChar *)s2.getChar16Data(), (int32_t)s2.size());
     UniStr1 = UniStr1.toLower();      UniStr1.toLower();
     UniStr2 = UniStr2.toLower();      UniStr2.toLower();
     return (UniStr2.compare(UniStr1));     return (UniStr2.compare(UniStr1));
 #else #else
     const Char16* _s1 = s1.getChar16Data();     const Char16* _s1 = s1.getChar16Data();
Line 567 
Line 590 
 #ifdef PEGASUS_HAS_ICU #ifdef PEGASUS_HAS_ICU
     UnicodeString UniStr1((const UChar *)str1.getChar16Data(), (int32_t)str1.size());     UnicodeString UniStr1((const UChar *)str1.getChar16Data(), (int32_t)str1.size());
     UnicodeString UniStr2((const UChar *)str2.getChar16Data(), (int32_t)str2.size());     UnicodeString UniStr2((const UChar *)str2.getChar16Data(), (int32_t)str2.size());
     UniStr1 = UniStr1.toLower();      UniStr1.toLower();
     UniStr2 = UniStr2.toLower();      UniStr2.toLower();
     return (UniStr1 == UniStr2);     return (UniStr1 == UniStr2);
 #else #else
     if (str1.size() != str2.size())     if (str1.size() != str2.size())
Line 628 
Line 651 
  
 CString String::getCStringUTF8() const CString String::getCStringUTF8() const
 { {
     Uint32 n = 3*size();      Uint32 n = 3*size() + 1;
     char* str = new char[n];     char* str = new char[n];
  
     const Char16* msg16 = getChar16Data();     const Char16* msg16 = getChar16Data();
Line 646 
Line 669 
  
         char* str1 = new char[strlen(str)+1];         char* str1 = new char[strlen(str)+1];
         strcpy(str1,str);         strcpy(str1,str);
         delete str;          delete [] str;
  
     return CString(str1);     return CString(str1);
 } }
  
 Boolean String::isUTF8(const char *legal) Boolean String::isUTF8(const char *legal)
 { {
     return (isValid_U8((const Uint8 *)legal,      char numBytes = UTF_8_COUNT_TRAIL_BYTES(*legal)+1;
                        UTF_8_COUNT_TRAIL_BYTES(*legal)+1));  
       // Validate that the string is long enough to hold all the expected bytes.
       // Note that if legal[0] == 0, numBytes will be 1.
       for (char i=1; i<numBytes; i++)
       {
           if (legal[i] == 0)
           {
               return false;
           }
       }
   
       return (isValid_U8((const Uint8 *)legal, numBytes));
 } }
  
 #if 0 #if 0
Line 671 
Line 705 
         special characters in the pattern: *?\[] (see the manual         special characters in the pattern: *?\[] (see the manual
         entry for details on what these mean).         entry for details on what these mean).
  
   
   Side effects: None.   Side effects: None.
  */  */
  
Line 855 
Line 890 
  
 PEGASUS_STD(ostream)& operator<<(PEGASUS_STD(ostream)& os, const String& str) PEGASUS_STD(ostream)& operator<<(PEGASUS_STD(ostream)& os, const String& str)
 { {
 /*  
 #if defined(PEGASUS_OS_OS400) #if defined(PEGASUS_OS_OS400)
     CString cstr = str.getCStringUTF8();     CString cstr = str.getCStringUTF8();
     const char* utf8str = cstr;     const char* utf8str = cstr;
Line 863 
Line 898 
     os << utf8str;     os << utf8str;
  
 #elif defined(PEGASUS_HAS_ICU) #elif defined(PEGASUS_HAS_ICU)
 */          if(os == cout || os == cerr){
 #if defined(PEGASUS_HAS_ICU)  
     char *buf = NULL;     char *buf = NULL;
           const int size = str.size() * 6;
     UnicodeString UniStr((const UChar *)str.getChar16Data(), (int32_t)str.size());     UnicodeString UniStr((const UChar *)str.getChar16Data(), (int32_t)str.size());
           Uint32 bufsize = UniStr.extract(0,size,buf);
  
     Uint32 bufsize = UniStr.extract(0,0,buf);  
     buf = new char[bufsize+1];     buf = new char[bufsize+1];
     UniStr.extract(0,bufsize,buf);     UniStr.extract(0,bufsize,buf);
   
     os << buf;     os << buf;
           os.flush();
           delete [] buf;
           }else{
                   CString cstr = str.getCStringUTF8();
           const char* utf8str = cstr;
           os << utf8str;
           }
  
     delete buf;  
 #else #else
           if(os == cout || os == cerr){
   
     for (Uint32 i = 0, n = str.size(); i < n; i++)     for (Uint32 i = 0, n = str.size(); i < n; i++)
     {     {
         Uint16 code = str[i];         Uint16 code = str[i];
Line 894 
Line 933 
             os << buffer;             os << buffer;
         }         }
     }     }
           }
           /* the following commented out section should be looked at for 2.4
           else{
                   CString cstr = str.getCStringUTF8();
           const char* utf8str = cstr;
           os << utf8str;
           }
           */
 #endif // End of PEGASUS_HAS_ICU #else leg. #endif // End of PEGASUS_HAS_ICU #else leg.
  
     return os;     return os;


Legend:
Removed from v.1.71  
changed lines
  Added in v.1.83

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2