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

Diff for /pegasus/src/Pegasus/Common/XmlWriter.h between version 1.24 and 1.92.4.1

version 1.24, 2002/02/20 03:51:31 version 1.92.4.1, 2011/01/15 21:26:53
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%LICENSE////////////////////////////////////////////////////////////////
 //  
 // Copyright (c) 2000, 2001 BMC Software, Hewlett-Packard Company, IBM,  
 // The Open Group, Tivoli Systems  
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy  // Licensed to The Open Group (TOG) under one or more contributor license
 // of this software and associated documentation files (the "Software"), to  // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 // deal in the Software without restriction, including without limitation the  // this work for additional information regarding copyright ownership.
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  // Each contributor licenses this file to you under the OpenPegasus Open
 // sell copies of the Software, and to permit persons to whom the Software is  // Source License; you may not use this file except in compliance with the
 // furnished to do so, subject to the following conditions:  // License.
 // //
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  // Permission is hereby granted, free of charge, to any person obtaining a
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  // copy of this software and associated documentation files (the "Software"),
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  // to deal in the Software without restriction, including without limitation
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  // the rights to use, copy, modify, merge, publish, distribute, sublicense,
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  // and/or sell copies of the Software, and to permit persons to whom the
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  // Software is furnished to do so, subject to the following conditions:
 // 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 above copyright notice and this permission notice shall be included
   // in all copies or substantial portions of the Software.
 // //
 // Author: Mike Brasher (mbrasher@bmc.com)  // 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.
 // //
 // Modified By:  //////////////////////////////////////////////////////////////////////////
 //         Nitin Upasani, Hewlett-Packard Company (Nitin_Upasani@hp.com)  
 //         Nag Boranna, Hewlett-Packard Company (nagaraja_boranna@hp.com)  
 //         Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)  
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 35 
Line 34 
  
 #include <iostream> #include <iostream>
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/Exception.h>  #include <Pegasus/Common/InternalException.h>
 #include <Pegasus/Common/Array.h>  #include <Pegasus/Common/ArrayInternal.h>
 #include <Pegasus/Common/String.h> #include <Pegasus/Common/String.h>
 #include <Pegasus/Common/Indentor.h>  #include <Pegasus/Common/CIMObject.h>
 #include <Pegasus/Common/CIMReference.h>  #include <Pegasus/Common/CIMClass.h>
   #include <Pegasus/Common/CIMInstance.h>
   #include <Pegasus/Common/CIMProperty.h>
   #include <Pegasus/Common/CIMMethod.h>
   #include <Pegasus/Common/CIMParameter.h>
   #include <Pegasus/Common/CIMQualifier.h>
   #include <Pegasus/Common/CIMQualifierDecl.h>
   #include <Pegasus/Common/CIMValue.h>
   #include <Pegasus/Common/CIMObjectPath.h>
 #include <Pegasus/Common/CIMPropertyList.h> #include <Pegasus/Common/CIMPropertyList.h>
 #include <Pegasus/Common/CIMNamedInstance.h>  #include <Pegasus/Common/CIMParamValue.h>
   #include <Pegasus/Common/CommonUTF.h>
   #include <Pegasus/Common/Message.h>
   #include <Pegasus/Common/Linkage.h>
   #include <Pegasus/Common/ContentLanguageList.h>
   #include <Pegasus/Common/AcceptLanguageList.h>
   #include <Pegasus/Common/Buffer.h>
   #include <Pegasus/Common/StrLit.h>
   #include <Pegasus/Common/XmlGenerator.h>
   #include <Pegasus/Common/NumericArg.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 class CIMConstQualifierDecl;  class PEGASUS_COMMON_LINKAGE XmlWriter : public XmlGenerator
 class CIMConstClass;  
 class CIMConstInstance;  
   
 // REVIEW: Restructure parser so that multiple nested allocations are not  
 // REVIEW: required to build a message.  
   
 class PEGASUS_COMMON_LINKAGE XmlWriter  
 { {
 public: public:
  
     static void append(Array<Sint8>& out, Char16 x);      static void appendLocalNameSpacePathElement(
           Buffer& out,
     static void append(Array<Sint8>& out, char x)          const CIMNamespaceName& nameSpace);
     {  
         append(out, Char16(x));      static void appendNameSpacePathElement(
     }          Buffer& out,
           const String& host,
           const CIMNamespaceName& nameSpace);
   
       static void appendClassNameElement(
           Buffer& out,
           const CIMName& className);
   
       static void appendInstanceNameElement(
           Buffer& out,
           const CIMObjectPath& instanceName);
   
       static void appendClassPathElement(
           Buffer& out,
           const CIMObjectPath& classPath);
   
       static void appendInstancePathElement(
           Buffer& out,
           const CIMObjectPath& instancePath);
   
       static void appendLocalClassPathElement(
           Buffer& out,
           const CIMObjectPath& classPath);
   
       static void appendLocalInstancePathElement(
           Buffer& out,
           const CIMObjectPath& instancePath);
   
       static void appendLocalObjectPathElement(
           Buffer& out,
           const CIMObjectPath& objectPath);
  
     static void append(Array<Sint8>& out, const char* x);      static void appendValueElement(
           Buffer& out,
     static void append(Array<Sint8>& out, const String& x);          const CIMValue& value);
   
     static void append(Array<Sint8>& out, Uint32 x);  
   
     static void appendSpecial(Array<Sint8>& out, Char16 x);  
   
     static void appendSpecial(Array<Sint8>& out, char x);  
   
     static void appendSpecial(Array<Sint8>& out, const char* x);  
  
     static void appendSpecial(Array<Sint8>& out, const String& x);      static void printValueElement(
           const CIMValue& value,
           PEGASUS_STD(ostream)& os=PEGASUS_STD(cout));
   
       static void appendValueObjectWithPathElement(
           Buffer& out,
           const CIMObject& objectWithPath);
   
       static void appendValueReferenceElement(
           Buffer& out,
           const CIMObjectPath& reference,
           Boolean putValueWrapper);
   
       static void printValueReferenceElement(
           const CIMObjectPath& reference,
           PEGASUS_STD(ostream)& os=PEGASUS_STD(cout));
   
       static void appendValueNamedInstanceElement(
           Buffer& out,
           const CIMInstance& namedInstance);
   
   //EXP_PULL
       static void appendValueInstanceWithPathElement(
           Buffer& out,
           const CIMInstance& namedInstance);
   //EXP_PULL_END
       static void appendClassElement(
           Buffer& out,
           const CIMConstClass& cimclass);
   
       static void printClassElement(
           const CIMConstClass& cimclass,
           PEGASUS_STD(ostream)& os=PEGASUS_STD(cout));
  
     static void append(Array<Sint8>& out, const Indentor& x);      static void appendInstanceElement(
           Buffer& out,
           const CIMConstInstance& instance);
  
     static void appendLocalNameSpaceElement(      static void printInstanceElement(
         Array<Sint8>& out,          const CIMConstInstance& instance,
         const String& nameSpace);          PEGASUS_STD(ostream)& os=PEGASUS_STD(cout));
   
       static void appendObjectElement(
           Buffer& out,
           const CIMConstObject& object);
   
       static void appendPropertyElement(
           Buffer& out,
           const CIMConstProperty& property);
   
       static void printPropertyElement(
           const CIMConstProperty& property,
           PEGASUS_STD(ostream)& os=PEGASUS_STD(cout));
   
       static void appendMethodElement(
           Buffer& out,
           const CIMConstMethod& method);
   
       static void printMethodElement(
           const CIMConstMethod& method,
           PEGASUS_STD(ostream)& os=PEGASUS_STD(cout));
   
       static void appendParameterElement(
           Buffer& out,
           const CIMConstParameter& parameter);
   
       static void printParameterElement(
           const CIMConstParameter& parameter,
           PEGASUS_STD(ostream)& os=PEGASUS_STD(cout));
   
       static void appendParamValueElement(
           Buffer& out,
           const CIMParamValue& paramValue);
   
       static void printParamValueElement(
           const CIMParamValue& paramValue,
           PEGASUS_STD(ostream)& os=PEGASUS_STD(cout));
   
       static void appendQualifierElement(
           Buffer& out,
           const CIMConstQualifier& qualifier);
   
       static void printQualifierElement(
           const CIMConstQualifier& qualifier,
           PEGASUS_STD(ostream)& os=PEGASUS_STD(cout));
  
     static void appendNameSpaceElement(      static void appendQualifierDeclElement(
         Array<Sint8>& out,          Buffer& out,
         const String& nameSpace);          const CIMConstQualifierDecl& qualifierDecl);
  
     static Array<Sint8> formatGetHeader(      static void printQualifierDeclElement(
         const char* documentPath);          const CIMConstQualifierDecl& qualifierDecl,
           PEGASUS_STD(ostream)& os=PEGASUS_STD(cout));
   
       static void appendQualifierFlavorEntity(
           Buffer& out,
           const CIMFlavor & flavor);
   
       static void appendScopeElement(
           Buffer& out,
           const CIMScope & scope);
  
     static Array<Sint8> formatMPostHeader(      static void appendMethodCallHeader(
           Buffer& out,
         const char* host,         const char* host,
         const char* cimOperation,          const CIMName& cimMethod,
         const char* cimMethod,  
         const String& cimObject,         const String& cimObject,
         const String& authenticationHeader,         const String& authenticationHeader,
         const Array<Sint8>& content);          HttpMethod httpMethod,
           const AcceptLanguageList& acceptLanguages,
           const ContentLanguageList& contentLanguages,
           Uint32 contentLength,
           bool binaryRequest = false,
           bool binaryResponse = false);
   
       static void appendMethodResponseHeader(
           Buffer& out,
           HttpMethod httpMethod,
           const ContentLanguageList& contentLanguages,
           Uint32 contentLength,
           Uint64 serverResponseTime = 0,
           bool binaryResponse = false);
   
       static void appendHttpErrorResponseHeader(
           Buffer& out,
           const String& status,
           const String& cimError = String::EMPTY,
           const String& errorDetail = String::EMPTY);
  
     static Array<Sint8> formatMethodResponseHeader(      static void appendUnauthorizedResponseHeader(
         const Array<Sint8>& content);          Buffer& out,
           const String& content);
  
     static Array<Sint8> formatMessageElement(  #ifdef PEGASUS_KERBEROS_AUTHENTICATION
         const String& messageId,      static void appendOKResponseHeader(
         const Array<Sint8>& body);          Buffer& out,
           const String& content);
   #endif
  
     static Array<Sint8> formatSimpleReqElement(      static void appendParamTypeAndEmbeddedObjAttrib(
         const Array<Sint8>& body);          Buffer& out,
           const CIMType& type);
  
     static Array<Sint8> formatSimpleRspElement(      static void appendReturnValueElement(
         const Array<Sint8>& body);          Buffer& out,
           const CIMValue& value);
  
     static Array<Sint8> formatIMethodCallElement(      static void appendBooleanIParameter(
           Buffer& out,
         const char* name,         const char* name,
         const String& nameSpace,          Boolean flag);
         const Array<Sint8>& iParamValues);  
  
     static Array<Sint8> formatIReturnValueElement(      static void appendBooleanParameter(
         const Array<Sint8>& body);          Buffer& out,
           const char* name,
           Boolean flag);
  
     static Array<Sint8> formatIMethodResponseElement(      static void appendBooleanIReturnValue(
           Buffer& out,
         const char* name,         const char* name,
         const Array<Sint8>& iParamValues);          Boolean flag);
  
     static Array<Sint8>& formatIParamValueElement(      static void appendUint32IParameter(
         Array<Sint8>& out,          Buffer& out,
           const char* name,
           const Uint32Arg& val,
           const Boolean required);
   /* KS_PULL DELETE
       static void appendUint64Parameter(
           Buffer& out,
         const char* name,         const char* name,
         const Array<Sint8>& body);          const Uint64 val);
   */
       static void appendUint64ReturnValue(
           Buffer& out,
           const char* name,
           const Uint64Arg& val);
  
     static Array<Sint8> formatErrorElement(      static void appendStringIParameter(
         CIMStatusCode code,          Buffer& out,
         const char* description);          const char* name,
           const String& str);
  
     static Array<Sint8>& appendBooleanParameter(  //EXP_PULL
         Array<Sint8>& out,      static void appendStringIParameterIfNotEmpty(
         const char* parameterName,          Buffer& out,
         Boolean flag);          const char* name,
           const String& str);
  
     static Array<Sint8>& appendStringIParameter(      static void appendStringParameter(
         Array<Sint8>& out,          Buffer& out,
         const char* parameterName,          const char* name,
           const String& str);
       static void appendStringIReturnValue(
           Buffer& out,
           const char* name,
         const String& str);         const String& str);
   //EXP_PULL_END
       static void appendClassNameIParameter(
           Buffer& out,
           const char* name,
           const CIMName& className);
   
       static void appendInstanceNameIParameter(
           Buffer& out,
           const char* name,
           const CIMObjectPath& instanceName);
  
     static Array<Sint8>& appendClassNameParameter(      static void appendObjectNameIParameter(
         Array<Sint8>& out,          Buffer& out,
         const char* parameterName,          const char* name,
         const String& className);          const CIMObjectPath& objectName);
   
     static Array<Sint8>& appendQualifierNameParameter(      static void appendClassIParameter(
         Array<Sint8>& out,          Buffer& out,
         const char* parameterName,          const char* name,
         const String& qualifierName);  
   
     static Array<Sint8>& appendClassParameter(  
         Array<Sint8>& out,  
         const char* parameterName,  
         const CIMConstClass& cimClass);         const CIMConstClass& cimClass);
  
     static Array<Sint8>& appendInstanceNameParameter(      static void appendInstanceIParameter(
         Array<Sint8>& out,          Buffer& out,
         const char* parameterName,          const char* name,
         const CIMReference& instanceName);  
   
     static Array<Sint8>& appendInstanceParameter(  
         Array<Sint8>& out,  
         const char* parameterName,  
         const CIMConstInstance& instance);         const CIMConstInstance& instance);
  
     static Array<Sint8>& appendNamedInstanceParameter(      static void appendNamedInstanceIParameter(
         Array<Sint8>& out,          Buffer& out,
         const char* parameterName,          const char* name,
         const CIMNamedInstance& namedInstance);          const CIMInstance& namedInstance) ;
   
     static Array<Sint8>& appendQualifierDeclarationParameter(      static void appendPropertyNameIParameter(
         Array<Sint8>& out,          Buffer& out,
         const char* parameterName,          const CIMName& propertyName);
         const CIMConstQualifierDecl& qualifierDecl);  
  
     static Array<Sint8>& appendClassNameElement(      static void appendPropertyValueIParameter(
         Array<Sint8>& out,          Buffer& out,
         const String& className);          const char* name,
   
     static Array<Sint8>& appendInstanceNameElement(  
         Array<Sint8>& out,  
         const CIMReference& instanceName);  
   
     static Array<Sint8>& appendPropertyNameParameter(  
         Array<Sint8>& out,  
         const String& propertyName);  
   
     static Array<Sint8>& appendPropertyValueParameter(  
         Array<Sint8>& out,  
         const char* parameterName,  
         const CIMValue& value);         const CIMValue& value);
  
     static Array<Sint8>& appendPropertyListParameter(      static void appendPropertyListIParameter(
         Array<Sint8>& out,          Buffer& out,
         const CIMPropertyList& propertyList);         const CIMPropertyList& propertyList);
  
     static Array<Sint8>& appendObjectNameParameter(      static void appendQualifierDeclarationIParameter(
         Array<Sint8>& out,          Buffer& out,
         const char* name,         const char* name,
         const CIMReference& objectName);          const CIMConstQualifierDecl& qualifierDecl);
  
     static void indentedPrint(      static Buffer formatHttpErrorRspMessage(
         PEGASUS_STD(ostream)& os,          const String& status,
         const char* text,          const String& cimError = String::EMPTY,
         Uint32 indentChars = 2);          const String& errorDetail = String::EMPTY);
  
     static Array<Sint8> formatSimpleIMethodReqMessage(      static Buffer formatSimpleMethodReqMessage(
         const char* host,         const char* host,
         const String& nameSpace,          const CIMNamespaceName& nameSpace,
         const char* iMethodName,          const CIMObjectPath& path,
           const CIMName& methodName,
           const Array<CIMParamValue>& parameters,
         const String& messageId,         const String& messageId,
           HttpMethod httpMethod,
         const String& authenticationHeader,         const String& authenticationHeader,
         const Array<Sint8>& body);          const AcceptLanguageList& httpAcceptLanguages,
           const ContentLanguageList& httpContentLanguages,
           bool binaryResponse);
  
     static Array<Sint8> formatSimpleRspMessage(      static Buffer formatSimpleMethodRspMessage(
         const char* iMethodName,          const CIMName& methodName,
         const String& messageId,         const String& messageId,
         const Array<Sint8>& body);          HttpMethod httpMethod,
           const ContentLanguageList& httpContentLanguages,
     static String getNextMessageId();          const Buffer& bodyParams,
           const Buffer& body,
           Uint64 serverResponseTime,
           Boolean isFirst = true,
           Boolean isLast = true);
  
     static Array<Sint8> formatSimpleIndicationReqMessage(      static Buffer formatSimpleMethodErrorRspMessage(
         const char* host,          const CIMName& methodName,
         const char* iMethodName,  
         const String& messageId,         const String& messageId,
         const String& authenticationHeader,          HttpMethod httpMethod,
         const Array<Sint8>& body);          const CIMException& cimException);
   
     static Array<Sint8> formatEMethodCallElement(  
         const char* name,  
         const Array<Sint8>& iParamValues);  
  
     static Array<Sint8> formatMPostIndicationHeader(      static Buffer formatSimpleIMethodReqMessage(
         const char* host,         const char* host,
         const char* cimOperation,          const CIMNamespaceName& nameSpace,
         const char* cimMethod,          const CIMName& iMethodName,
           const String& messageId,
           HttpMethod httpMethod,
         const String& authenticationHeader,         const String& authenticationHeader,
         const Array<Sint8>& content);          const AcceptLanguageList& httpAcceptLanguages,
           const ContentLanguageList& httpContentLanguages,
           const Buffer& body,
           bool binaryResponse);
  
     static Array<Sint8> formatSimpleExportReqElement(      static Buffer formatSimpleIMethodRspMessage(
         const Array<Sint8>& body);          const CIMName& iMethodName,
           const String& messageId,
           HttpMethod httpMethod,
           const ContentLanguageList& httpContentLanguages,
           const Buffer& rtnParams,
           const Buffer& body,
           Uint64 serverResponseTime,
           Boolean isFirst = true,
           Boolean isLast = true);
  
     static Array<Sint8> formatSimpleExportRspElement(  
         const Array<Sint8>& body);  
  
     static Array<Sint8> formatSimpleIndicationRspMessage(      static Buffer formatSimpleIMethodErrorRspMessage(
         const char* iMethodName,          const CIMName& iMethodName,
         const String& messageId,         const String& messageId,
         const Array<Sint8>& body);          HttpMethod httpMethod,
           const CIMException& cimException);
  
     static Array<Sint8> formatEMethodResponseElement(      static void appendInstanceEParameter(
           Buffer& out,
         const char* name,         const char* name,
         const Array<Sint8>& iParamValues);          const CIMInstance& instance);
  
     static Array<Sint8> formatEMethodResponseHeader(      static void appendEMethodRequestHeader(
         const Array<Sint8>& content);          Buffer& out,
           const char* requestUri,
           const char* host,
           const CIMName& cimMethod,
           HttpMethod httpMethod,
           const String& authenticationHeader,
           const AcceptLanguageList& acceptLanguages,
           const ContentLanguageList& contentLanguages,
           Uint32 contentLength);
   
       static void appendEMethodResponseHeader(
           Buffer& out,
           HttpMethod httpMethod,
           const ContentLanguageList& contentLanguages,
           Uint32 contentLength);
  
     static Array<Sint8> formatSimpleMethodReqMessage(      static Buffer formatSimpleEMethodReqMessage(
           const char* requestUri,
         const char* host,         const char* host,
         const String& nameSpace,          const CIMName& eMethodName,
         const char* iMethodName,  
         const String& messageId,         const String& messageId,
           HttpMethod httpMethod,
         const String& authenticationHeader,         const String& authenticationHeader,
         const Array<Sint8>& body);          const AcceptLanguageList& httpAcceptLanguages,
           const ContentLanguageList& httpContentLanguages,
           const Buffer& body);
  
     static Array<Sint8> formatMethodCallElement(      static Buffer formatSimpleEMethodRspMessage(
         const char* name,          const CIMName& eMethodName,
         const String& nameSpace,  
         const Array<Sint8>& iParamValues);  
   
     static Array<Sint8> formatSimpleMethodRspMessage(  
         const char* iMethodName,  
         const String& messageId,         const String& messageId,
         const Array<Sint8>& body);          HttpMethod httpMethod,
           const ContentLanguageList& httpContentLanguages,
           const Buffer& body);
  
     static Array<Sint8> formatMethodResponseElement(      static Buffer formatSimpleEMethodErrorRspMessage(
         const char* name,          const CIMName& eMethodName,
         const Array<Sint8>& iParamValues);          const String& messageId,
           HttpMethod httpMethod,
           const CIMException& cimException);
  
     static Array<Sint8> formatReturnValueElement(      static String getNextMessageId();
         const Array<Sint8>& body);  
  
     static Array<Sint8> formatUnauthorizedResponseHeader(      /** Converts the given CIMKeyBinding type to one of the following:
         const String& content);          "boolean", "string", or "numeric"
       */
       static const StrLit keyBindingTypeToString (CIMKeyBinding::Type type);
  
 private: private:
  
     XmlWriter() { }      static void _appendMessageElementBegin(
           Buffer& out,
           const String& messageId);
           static void _appendMessageElementEnd(
           Buffer& out);
   
       static void _appendSimpleReqElementBegin(Buffer& out);
       static void _appendSimpleReqElementEnd(Buffer& out);
   
       static void _appendMethodCallElementBegin(
           Buffer& out,
           const CIMName& name);
   
       static void _appendMethodCallElementEnd(
           Buffer& out);
   
       static void _appendIMethodCallElementBegin(
           Buffer& out,
           const CIMName& name);
           static void _appendIMethodCallElementEnd(
           Buffer& out);
   
       static void _appendParamValueElementBegin(
           Buffer& out,
           const char* name);
   
       static void _appendParamValueElementEnd(
           Buffer& out);
   
       static void _appendIParamValueElementBegin(
           Buffer& out,
           const char* name);
   
       static void _appendIParamValueElementEnd(
           Buffer& out);
   
       static void _appendSimpleRspElementBegin(Buffer& out);
       static void _appendSimpleRspElementEnd(Buffer& out);
   
       static void _appendMethodResponseElementBegin(
           Buffer& out,
           const CIMName& name);
           static void _appendMethodResponseElementEnd(
           Buffer& out);
   
       static void _appendIMethodResponseElementBegin(
           Buffer& out,
           const CIMName& name);
           static void _appendIMethodResponseElementEnd(
           Buffer& out);
   
       static void _appendErrorElement(
           Buffer& out,
           const CIMException& cimException);
   
       static void _appendIReturnValueElementBegin(Buffer& out);
       static void _appendIReturnValueElementEnd(Buffer& out);
   
       //EXP_PULL
   
       static void _appendIReturnValueElementWithNameBegin(
           Buffer& out,
           const char* name);
       // EXP_PULL_END
       static void _appendSimpleExportReqElementBegin(Buffer& out);
       static void _appendSimpleExportReqElementEnd(Buffer& out);
   
       static void _appendEMethodCallElementBegin(
           Buffer& out,
           const CIMName& name);
   
       static void _appendEMethodCallElementEnd(
           Buffer& out);
   
       static void _appendEParamValueElementBegin(
           Buffer& out,
           const char* name);
           static void _appendEParamValueElementEnd(
           Buffer& out);
   
       static void _appendSimpleExportRspElementBegin(Buffer& out);
       static void _appendSimpleExportRspElementEnd(Buffer& out);
   
       static void _appendEMethodResponseElementBegin(
           Buffer& out,
           const CIMName& name);
   
       static void _appendEMethodResponseElementEnd(
           Buffer& out);
   
       XmlWriter();
 }; };
  
 PEGASUS_COMMON_LINKAGE Array<Sint8>& operator<<(  //==============================================================================
     Array<Sint8>& out,  //
     const char* x);  // _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];
  
 PEGASUS_COMMON_LINKAGE Array<Sint8>& operator<<(Array<Sint8>& out, char x);      UTF16toUTF8(&strsrc, endsrc, &strtgt, endtgt);
       out.append(str, UTF_8_COUNT_TRAIL_BYTES(str[0]) +1);
   }
  
 PEGASUS_COMMON_LINKAGE Array<Sint8>& operator<<(Array<Sint8>& out, Char16 x);  inline void _toString(Buffer& out, const String& x)
   {
       out << x;
   }
  
 PEGASUS_COMMON_LINKAGE Array<Sint8>& operator<<(  inline void _toString(Buffer& out, const CIMDateTime& x)
     Array<Sint8>& out,  {
     const String& x);      out << x.toString();
   }
  
 PEGASUS_COMMON_LINKAGE Array<Sint8>& operator<<(  inline void _toString(Buffer& out, const CIMObjectPath& x)
     Array<Sint8>& out,  {
     const Indentor& x);      out << x.toString();
   }
  
 PEGASUS_COMMON_LINKAGE Array<Sint8>& operator<<(  inline void _toString(Buffer& out, const CIMObject& x)
     Array<Sint8>& out,  {
     const Array<Sint8>& x);      out << x.toString();
   }
   inline void _toString(Buffer& out, const CIMInstance& x)
   {
       out << CIMObject(x).toString();
   }
  
 PEGASUS_COMMON_LINKAGE Array<Sint8>& operator<<(  template<class T>
     Array<Sint8>& out,  void _toString(Buffer& out, const T* p, Uint32 size)
     Uint32 x);  {
       while (size--)
       {
           _toString(out, *p++);
           out.append(' ');
       }
   }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END
  


Legend:
Removed from v.1.24  
changed lines
  Added in v.1.92.4.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2