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

Diff for /pegasus/src/Pegasus/Common/CIMValue.cpp between version 1.75 and 1.76

version 1.75, 2008/12/02 09:00:46 version 1.76, 2009/12/15 11:39:33
Line 36 
Line 36 
 #include "CIMInstance.h" #include "CIMInstance.h"
 #include "Union.h" #include "Union.h"
 #include "XmlWriter.h" #include "XmlWriter.h"
 #include "CommonUTF.h"  
 #include "CIMValueRep.h" #include "CIMValueRep.h"
 #include "Config.h" #include "Config.h"
 #include "CIMType.h" #include "CIMType.h"
Line 61 
Line 60 
  
 //============================================================================== //==============================================================================
 // //
 // _toString() routines:  
 //  
 //==============================================================================  
   
 inline void _toString(Buffer& out, Boolean x)  
 {  
     XmlWriter::append(out, x);  
 }  
   
 inline void _toString(Buffer& out, Uint8 x)  
 {  
     XmlWriter::append(out, Uint32(x));  
 }  
   
 inline void _toString(Buffer& out, Sint8 x)  
 {  
     XmlWriter::append(out, Sint32(x));  
 }  
   
 inline void _toString(Buffer& out, Uint16 x)  
 {  
     XmlWriter::append(out, Uint32(x));  
 }  
   
 inline void _toString(Buffer& out, Sint16 x)  
 {  
     XmlWriter::append(out, Sint32(x));  
 }  
   
 inline void _toString(Buffer& out, Uint32 x)  
 {  
     XmlWriter::append(out, x);  
 }  
   
 inline void _toString(Buffer& out, Sint32 x)  
 {  
     XmlWriter::append(out, x);  
 }  
   
 inline void _toString(Buffer& out, Uint64 x)  
 {  
     XmlWriter::append(out, x);  
 }  
   
 inline void _toString(Buffer& out, Sint64 x)  
 {  
     XmlWriter::append(out, x);  
 }  
   
 inline void _toString(Buffer& out, Real32 x)  
 {  
     XmlWriter::append(out, Real64(x));  
 }  
   
 inline void _toString(Buffer& out, Real64 x)  
 {  
     XmlWriter::append(out, x);  
 }  
   
 inline void _toString(Buffer& out, Char16 x)  
 {  
     // We need to convert the Char16 to UTF8 then append the UTF8  
     // character into the array.  
     // NOTE: The UTF8 character could be several bytes long.  
     // WARNING: This function will put in replacement character for  
     // all characters that have surogate pairs.  
   
     char str[6];  
     memset(str,0x00,sizeof(str));  
     char* charIN = (char *)&x;  
   
     const Uint16 *strsrc = (Uint16 *)charIN;  
     Uint16 *endsrc = (Uint16 *)&charIN[1];  
   
     Uint8 *strtgt = (Uint8 *)str;  
     Uint8 *endtgt = (Uint8 *)&str[5];  
   
     UTF16toUTF8(&strsrc, endsrc, &strtgt, endtgt);  
     out.append(str, UTF_8_COUNT_TRAIL_BYTES(str[0]) +1);  
 }  
   
 inline void _toString(Buffer& out, const String& x)  
 {  
     out << x;  
 }  
   
 inline void _toString(Buffer& out, const CIMDateTime& x)  
 {  
     out << x.toString();  
 }  
   
 inline void _toString(Buffer& out, const CIMObjectPath& x)  
 {  
     out << x.toString();  
 }  
   
 inline void _toString(Buffer& out, const CIMObject& x)  
 {  
     out << x.toString();  
 }  
 inline void _toString(Buffer& out, const CIMInstance& x)  
 {  
     out << CIMObject(x).toString();  
 }  
   
 template<class T>  
 void _toString(Buffer& out, const T* p, Uint32 size)  
 {  
     while (size--)  
     {  
         _toString(out, *p++);  
         out.append(' ');  
     }  
 }  
   
 //==============================================================================  
 //  
 // CIMValueRep // CIMValueRep
 // //
 //============================================================================== //==============================================================================


Legend:
Removed from v.1.75  
changed lines
  Added in v.1.76

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2