//%///////////////////////////////////////////////////////////////////////////// // // 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 // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // 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. // //============================================================================== // // Author: Mike Brasher (mbrasher@bmc.com) // // 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) // //%///////////////////////////////////////////////////////////////////////////// #include #include #include "Destroyer.h" #include "CIMClass.h" #include "CIMInstance.h" #include "CIMQualifierDecl.h" #include "XmlWriter.h" #include "XmlParser.h" PEGASUS_NAMESPACE_BEGIN Array& operator<<(Array& out, const char* x) { XmlWriter::append(out, x); return out; } Array& operator<<(Array& out, char x) { XmlWriter::append(out, x); return out; } Array& operator<<(Array& out, Char16 x) { XmlWriter::append(out, x); return out; } Array& operator<<(Array& out, const String& x) { XmlWriter::append(out, x); return out; } Array& operator<<(Array& out, const Indentor& x) { XmlWriter::append(out, x); return out; } Array& operator<<(Array& out, const Array& x) { out.appendArray(x); return out; } Array& operator<<(Array& out, Uint32 x) { XmlWriter::append(out, x); return out; } inline void _appendChar(Array& out, Char16 c) { out.append(Sint8(c)); } inline void _appendSpecialChar(Array& out, Char16 c) { // ATTN-B: Only UTF-8 handled for now. switch (c) { case '&': out.append("&", 5); break; case '<': out.append("<", 4); break; case '>': out.append(">", 4); break; case '"': out.append(""", 6); break; case '\'': out.append("'", 6); break; default: out.append(Sint8(c)); } } static inline void _appendSpecialChar(PEGASUS_STD(ostream)& os, char c) { switch (c) { case '&': os << "&"; break; case '<': os << "<"; break; case '>': os << ">"; break; case '"': os << """; break; case '\'': os << "'"; break; default: os << c; } } static inline void _appendSpecial(PEGASUS_STD(ostream)& os, const char* str) { while (*str) _appendSpecialChar(os, *str++); } void XmlWriter::append(Array& out, Char16 x) { _appendChar(out, x); } void XmlWriter::append(Array& out, Uint32 x) { char buffer[32]; sprintf(buffer, "%d", x); append(out, buffer); } void XmlWriter::append(Array& out, const char* str) { while (*str) _appendChar(out, *str++); } void XmlWriter::append(Array& out, const String& str) { const Char16* tmp = str.getData(); while (*tmp) _appendChar(out, *tmp++); } void XmlWriter::append(Array& out, const Indentor& x) { for (Uint32 i = 0; i < 4 * x.getLevel(); i++) out.append(' '); } void XmlWriter::appendSpecial(Array& out, Char16 x) { _appendSpecialChar(out, x); } void XmlWriter::appendSpecial(Array& out, char x) { _appendSpecialChar(out, Char16(x)); } void XmlWriter::appendSpecial(Array& out, const char* str) { while (*str) _appendSpecialChar(out, *str++); } void XmlWriter::appendSpecial(Array& out, const String& str) { const Char16* tmp = str.getData(); while (*tmp) _appendSpecialChar(out, *tmp++); } //------------------------------------------------------------------------------ // // appendLocalNameSpacePathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendLocalNameSpacePathElement( Array& out, const String& nameSpace) { out << "\n"; char* tmp = nameSpace.allocateCString(); for (char* p = strtok(tmp, "/"); p; p = strtok(NULL, "/")) { out << "\n"; } delete [] tmp; out << "\n"; } //------------------------------------------------------------------------------ // // appendNameSpacePathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendNameSpacePathElement( Array& out, const String& host, const String& nameSpace) { out << "\n"; out << "" << host << "\n"; appendLocalNameSpacePathElement(out, nameSpace); out << "\n"; } //------------------------------------------------------------------------------ // // appendClassNameElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendClassNameElement( Array& out, const String& className) { out << "\n"; } //------------------------------------------------------------------------------ // // appendInstanceNameElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendInstanceNameElement( Array& out, const CIMReference& instanceName) { out << "\n"; Array keyBindings = instanceName.getKeyBindings(); for (Uint32 i = 0, n = keyBindings.size(); i < n; i++) { out << "\n"; if (keyBindings[i].getType() == KeyBinding::REFERENCE) { CIMReference ref = keyBindings[i].getValue(); ref.toXml(out, true); } else { out << ""; // fixed the special character problem - Markus appendSpecial(out, keyBindings[i].getValue()); out << "\n"; } out << "\n"; } out << "\n"; } //------------------------------------------------------------------------------ // // appendClassPathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendClassPathElement( Array& out, const CIMReference& classPath) { out << "\n"; appendNameSpacePathElement(out, classPath.getHost(), classPath.getNameSpace()); appendClassNameElement(out, classPath.getClassName()); out << "\n"; } //------------------------------------------------------------------------------ // // appendInstancePathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendInstancePathElement( Array& out, const CIMReference& instancePath) { out << "\n"; appendNameSpacePathElement(out, instancePath.getHost(), instancePath.getNameSpace()); appendInstanceNameElement(out, instancePath); out << "\n"; } //------------------------------------------------------------------------------ // // appendLocalClassPathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendLocalClassPathElement( Array& out, const CIMReference& classPath) { out << "\n"; appendLocalNameSpacePathElement(out, classPath.getNameSpace()); appendClassNameElement(out, classPath.getClassName()); out << "\n"; } //------------------------------------------------------------------------------ // // appendLocalInstancePathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendLocalInstancePathElement( Array& out, const CIMReference& instancePath) { out << "\n"; appendLocalNameSpacePathElement(out, instancePath.getNameSpace()); appendInstanceNameElement(out, instancePath); out << "\n"; } //------------------------------------------------------------------------------ // // appendLocalObjectPathElement() // // If the reference refers to an instance, write a LOCALINSTANCEPATH; // otherwise write a LOCALCLASSPATH. // //------------------------------------------------------------------------------ void XmlWriter::appendLocalObjectPathElement( Array& out, const CIMReference& objectPath) { if (objectPath.isInstanceName()) { appendLocalInstancePathElement(out, objectPath); } else { appendLocalClassPathElement(out, objectPath); } } //------------------------------------------------------------------------------ // // appendMethodCallHeader() // // Build HTTP method call request header. // //------------------------------------------------------------------------------ void XmlWriter::appendMethodCallHeader( Array& out, const char* host, const char* cimMethod, const String& cimObject, const String& authenticationHeader, Uint32 contentLength) { char nn[] = { '0' + (rand() % 10), '0' + (rand() % 10), '\0' }; out << "M-POST /cimom HTTP/1.1\r\n"; out << "HOST: " << host << "\r\n"; out << "Content-CIMType: application/xml; charset=\"utf-8\"\r\n"; out << "Content-Length: " << contentLength << "\r\n"; out << "Man: http://www.dmtf.org/cim/mapping/http/v1.0; ns="; out << nn <<"\r\n"; out << nn << "-CIMOperation: MethodCall\r\n"; out << nn << "-CIMMethod: " << cimMethod << "\r\n"; out << nn << "-CIMObject: " << cimObject << "\r\n"; if (authenticationHeader.size()) { out << authenticationHeader << "\r\n"; } out << "\r\n"; } //------------------------------------------------------------------------------ // // appendMethodResponseHeader() // // Build HTTP response header. // //------------------------------------------------------------------------------ void XmlWriter::appendMethodResponseHeader( Array& out, Uint32 contentLength) { char nn[] = { '0' + (rand() % 10), '0' + (rand() % 10), '\0' }; out << "HTTP/1.1 200 OK\r\n"; out << "Content-CIMType: application/xml; charset=\"utf-8\"\r\n"; out << "Content-Length: " << contentLength << "\r\n"; out << "Ext:\r\n"; out << "Cache-Control: no-cache\r\n"; out << "Man: http://www.dmtf.org/cim/mapping/http/v1.0; ns="; out << nn <<"\r\n"; out << nn << "-CIMOperation: MethodResponse\r\n\r\n"; } //------------------------------------------------------------------------------ // // appendHttpErrorResponseHeader() // // Build HTTP error response header. // // Returns error response message in the following format: // // HTTP/1.1 400 Bad Request (using specified status code) // CIMError: (if specified by caller) // PGErrorDetail: (if specified by caller) // //------------------------------------------------------------------------------ void XmlWriter::appendHttpErrorResponseHeader( Array& out, const String& status, const String& cimError, const String& errorDetail) { out << "HTTP/1.1 " << status << "\r\n"; if (cimError != String::EMPTY) { out << "CIMError: " << cimError << "\r\n"; } if (errorDetail != String::EMPTY) { // ATTN-RK-P3-20020404: It is critical that this text not contain '\n' // ATTN-RK-P3-20020404: Need to encode this value properly. (See // CIM/HTTP Specification section 3.3.2 out << "PGErrorDetail: " << errorDetail << "\r\n"; } out << "\r\n"; } //------------------------------------------------------------------------------ // // appendUnauthorizedResponseHeader() // // Build HTTP authentication response header for unauthorized requests. // // Returns unauthorized message in the following format: // // HTTP/1.1 401 Unauthorized // WWW-Authenticate: Basic "hostname:80" // // 401 Unauthorized // //

TEST401 Unauthorized

//
// // //------------------------------------------------------------------------------ void XmlWriter::appendUnauthorizedResponseHeader( Array& out, const String& content) { out << "HTTP/1.1 " HTTP_STATUS_UNAUTHORIZED "\r\n"; out << content << "\r\n"; out << "\r\n"; //ATTN: We may need to include the following line, so that the browsers // can display the error message. // out << "\r\n"; // out << "" << "401 Unauthorized" << "\r\n"; // out << "\r\n"; // out << "

TEST" << "401 Unauthorized" << "

\r\n"; // out << "
\r\n"; // out << "\r\n"; } //------------------------------------------------------------------------------ // // _appendMessageElementBegin() // _appendMessageElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendMessageElementBegin( Array& out, const String& messageId) { out << "\n"; out << "\n"; out << "\n"; } void XmlWriter::_appendMessageElementEnd( Array& out) { out << "\n"; out << "\n"; } //------------------------------------------------------------------------------ // // _appendSimpleReqElementBegin() // _appendSimpleReqElementEnd() // // // //------------------------------------------------------------------------------ void XmlWriter::_appendSimpleReqElementBegin( Array& out) { out << "\n"; } void XmlWriter::_appendSimpleReqElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendMethodCallElementBegin() // _appendMethodCallElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendMethodCallElementBegin( Array& out, const char* name) { out << "\n"; } void XmlWriter::_appendMethodCallElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendIMethodCallElementBegin() // _appendIMethodCallElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendIMethodCallElementBegin( Array& out, const char* name) { out << "\n"; } void XmlWriter::_appendIMethodCallElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendIParamValueElementBegin() // _appendIParamValueElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendIParamValueElementBegin( Array& out, const char* name) { out << "\n"; } void XmlWriter::_appendIParamValueElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendSimpleRspElementBegin() // _appendSimpleRspElementEnd() // // // //------------------------------------------------------------------------------ void XmlWriter::_appendSimpleRspElementBegin( Array& out) { out << "\n"; } void XmlWriter::_appendSimpleRspElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendMethodResponseElementBegin() // _appendMethodResponseElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendMethodResponseElementBegin( Array& out, const char* name) { out << "\n"; } void XmlWriter::_appendMethodResponseElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendIMethodResponseElementBegin() // _appendIMethodResponseElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendIMethodResponseElementBegin( Array& out, const char* name) { out << "\n"; } void XmlWriter::_appendIMethodResponseElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendErrorElement() // //------------------------------------------------------------------------------ void XmlWriter::_appendErrorElement( Array& out, const CIMException& cimException) { out << ""; } //------------------------------------------------------------------------------ // // appendReturnValueElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendReturnValueElement( Array& out, const CIMValue& value) { out << "\n"; // Add value. If value is Null, then this method shouldn't have been called value.toXml(out, true); out << "\n"; } //------------------------------------------------------------------------------ // // _appendIReturnValueElementBegin() // _appendIReturnValueElementEnd() // // // //------------------------------------------------------------------------------ void XmlWriter::_appendIReturnValueElementBegin( Array& out) { out << "\n"; } void XmlWriter::_appendIReturnValueElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // appendBooleanIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendBooleanIParameter( Array& out, const char* name, Boolean flag) { _appendIParamValueElementBegin(out, name); out << "" << (flag ? "TRUE" : "FALSE") << "\n"; _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendStringIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendStringIParameter( Array& out, const char* name, const String& str) { _appendIParamValueElementBegin(out, name); out << ""; appendSpecial(out, str); out << "\n"; _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendQualifierNameIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendQualifierNameIParameter( Array& out, const char* name, const String& qualifierName) { // // // ATTN: notice that there is really no way to pass a qualifier name // as an IPARAMVALUE element according to the spec (look above). So we // just pass it as a class name. An answer must be obtained later. _appendIParamValueElementBegin(out, name); appendClassNameElement(out, qualifierName); _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendClassNameIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendClassNameIParameter( Array& out, const char* name, const String& className) { _appendIParamValueElementBegin(out, name); appendClassNameElement(out, className); _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendInstanceNameIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendInstanceNameIParameter( Array& out, const char* name, const CIMReference& instanceName) { _appendIParamValueElementBegin(out, name); appendInstanceNameElement(out, instanceName); _appendIParamValueElementEnd(out); } void XmlWriter::appendObjectNameIParameter( Array& out, const char* name, const CIMReference& objectName) { if (objectName.isClassName()) { XmlWriter::appendClassNameIParameter( out, name, objectName.getClassName()); } else { XmlWriter::appendInstanceNameIParameter( out, name, objectName); } } //------------------------------------------------------------------------------ // // appendClassIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendClassIParameter( Array& out, const char* name, const CIMConstClass& cimClass) { _appendIParamValueElementBegin(out, name); cimClass.toXml(out); _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendInstanceIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendInstanceIParameter( Array& out, const char* name, const CIMConstInstance& instance) { _appendIParamValueElementBegin(out, name); instance.toXml(out); _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendNamedInstanceIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendNamedInstanceIParameter( Array& out, const char* name, const CIMNamedInstance& namedInstance) { _appendIParamValueElementBegin(out, name); namedInstance.toXml(out); _appendIParamValueElementEnd(out); } //---------------------------------------------------------- // // appendPropertyNameIParameter() // // // FreeSpace // // USE: Create parameter for getProperty operation //========================================================== void XmlWriter::appendPropertyNameIParameter( Array& out, const String& propertyName) { _appendIParamValueElementBegin(out, "PropertyName"); out << "" << propertyName << "\n"; _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendPropertyValueIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendPropertyValueIParameter( Array& out, const char* name, const CIMValue& value) { _appendIParamValueElementBegin(out, name); value.toXml(out, false); _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendPropertyListIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendPropertyListIParameter( Array& out, const CIMPropertyList& propertyList) { // ATTN: P3 KS 4 Mar 2002 - As check shouldn't we check for null property list _appendIParamValueElementBegin(out, "PropertyList"); out << "\n"; for (Uint32 i = 0; i < propertyList.getNumProperties(); i++) { out << "" << propertyList.getPropertyName(i) << "\n"; } out << "\n"; _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendQualifierDeclarationIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendQualifierDeclarationIParameter( Array& out, const char* name, const CIMConstQualifierDecl& qualifierDecl) { _appendIParamValueElementBegin(out, name); qualifierDecl.toXml(out); _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // XmlWriter::formatHttpErrorRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatHttpErrorRspMessage( const String& status, const String& cimError, const String& errorDetail) { Array out; appendHttpErrorResponseHeader(out, status, cimError, errorDetail); return out; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleMethodReqMessage() // //------------------------------------------------------------------------------ // ATTN-RK-P1-20020228: Need to complete copy elimination optimization Array XmlWriter::formatSimpleMethodReqMessage( const char* host, const String& nameSpace, const CIMReference& path, const char* methodName, const Array& parameters, const String& messageId, const String& authenticationHeader) { Array out; Array tmp; CIMReference localObjectPath = path; localObjectPath.setNameSpace(nameSpace); _appendMessageElementBegin(out, messageId); _appendSimpleReqElementBegin(out); _appendMethodCallElementBegin(out, methodName); appendLocalObjectPathElement(out, localObjectPath); for (Uint32 i=0; i < parameters.size(); i++) { parameters[i].toXml(out); } _appendMethodCallElementEnd(out); _appendSimpleReqElementEnd(out); _appendMessageElementEnd(out); appendMethodCallHeader( tmp, host, methodName, localObjectPath.toString(false), authenticationHeader, out.size()); tmp << out; return tmp; } Array XmlWriter::formatSimpleMethodRspMessage( const char* methodName, const String& messageId, const Array& body) { Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleRspElementBegin(out); _appendMethodResponseElementBegin(out, methodName); out << body; _appendMethodResponseElementEnd(out); _appendSimpleRspElementEnd(out); _appendMessageElementEnd(out); appendMethodResponseHeader(tmp, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleMethodErrorRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleMethodErrorRspMessage( const String& methodName, const String& messageId, const CIMException& cimException) { ArrayDestroyer tmp1(methodName.allocateCString()); Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleRspElementBegin(out); _appendMethodResponseElementBegin(out, tmp1.getPointer()); _appendErrorElement(out, cimException); _appendMethodResponseElementEnd(out); _appendSimpleRspElementEnd(out); _appendMessageElementEnd(out); appendMethodResponseHeader(tmp, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleIMethodReqMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleIMethodReqMessage( const char* host, const String& nameSpace, const char* iMethodName, const String& messageId, const String& authenticationHeader, const Array& body) { Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleReqElementBegin(out); _appendIMethodCallElementBegin(out, iMethodName); appendLocalNameSpacePathElement(out, nameSpace); out << body; _appendIMethodCallElementEnd(out); _appendSimpleReqElementEnd(out); _appendMessageElementEnd(out); appendMethodCallHeader( tmp, host, iMethodName, nameSpace, authenticationHeader, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleIMethodRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleIMethodRspMessage( const char* iMethodName, const String& messageId, const Array& body) { Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleRspElementBegin(out); _appendIMethodResponseElementBegin(out, iMethodName); _appendIReturnValueElementBegin(out); out << body; _appendIReturnValueElementEnd(out); _appendIMethodResponseElementEnd(out); _appendSimpleRspElementEnd(out); _appendMessageElementEnd(out); appendMethodResponseHeader(tmp, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleIMethodErrorRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleIMethodErrorRspMessage( const String& iMethodName, const String& messageId, const CIMException& cimException) { ArrayDestroyer tmp1(iMethodName.allocateCString()); Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleRspElementBegin(out); _appendIMethodResponseElementBegin(out, tmp1.getPointer()); _appendErrorElement(out, cimException); _appendIMethodResponseElementEnd(out); _appendSimpleRspElementEnd(out); _appendMessageElementEnd(out); appendMethodResponseHeader(tmp, out.size()); tmp << out; return tmp; } //****************************************************************************** // // Export Messages (used for indications) // //****************************************************************************** //------------------------------------------------------------------------------ // // appendEMethodRequestHeader() // // Build HTTP request header for export operation. // //------------------------------------------------------------------------------ void XmlWriter::appendEMethodRequestHeader( Array& out, const char* host, const char* cimMethod, const String& authenticationHeader, Uint32 contentLength) { char nn[] = { '0' + (rand() % 10), '0' + (rand() % 10), '\0' }; out << "M-POST /cimom HTTP/1.1\r\n"; out << "HOST: " << host << "\r\n"; out << "Content-CIMType: application/xml; charset=\"utf-8\"\r\n"; out << "Content-Length: " << contentLength << "\r\n"; out << "Man: http://www.hp.com; ns="; out << nn <<"\r\n"; out << nn << "-CIMExport: MethodRequest\r\n"; out << nn << "-CIMExportMethod: " << cimMethod << "\r\n"; if (authenticationHeader.size()) { out << authenticationHeader << "\r\n"; } out << "\r\n"; } //------------------------------------------------------------------------------ // // appendEMethodResponseHeader() // // Build HTTP response header for export operation. // //------------------------------------------------------------------------------ void XmlWriter::appendEMethodResponseHeader( Array& out, Uint32 contentLength) { char nn[] = { '0' + (rand() % 10), '0' + (rand() % 10), '\0' }; out << "HTTP/1.1 200 OK\r\n"; out << "Content-CIMType: application/xml; charset=\"utf-8\"\r\n"; out << "Content-Length: " << contentLength << "\r\n"; out << "Ext:\r\n"; out << "Cache-Control: no-cache\r\n"; out << "Man: http://www.dmtf.org/cim/mapping/http/v1.0; ns="; out << nn <<"\r\n"; out << nn << "-CIMExport: MethodResponse\r\n\r\n"; } //------------------------------------------------------------------------------ // // _appendSimpleExportReqElementBegin() // _appendSimpleExportReqElementEnd() // // // //------------------------------------------------------------------------------ void XmlWriter::_appendSimpleExportReqElementBegin( Array& out) { out << "\n"; } void XmlWriter::_appendSimpleExportReqElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendEMethodCallElementBegin() // _appendEMethodCallElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendEMethodCallElementBegin( Array& out, const char* name) { out << "\n"; } void XmlWriter::_appendEMethodCallElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendSimpleExportRspElementBegin() // _appendSimpleExportRspElementEnd() // // // //------------------------------------------------------------------------------ void XmlWriter::_appendSimpleExportRspElementBegin( Array& out) { out << "\n"; } void XmlWriter::_appendSimpleExportRspElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendEMethodResponseElementBegin() // _appendEMethodResponseElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendEMethodResponseElementBegin( Array& out, const char* name) { out << "\n"; } void XmlWriter::_appendEMethodResponseElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleEMethodReqMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleEMethodReqMessage( const char* host, const char* eMethodName, const String& messageId, const String& authenticationHeader, const Array& body) { Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleExportReqElementBegin(out); _appendEMethodCallElementBegin(out, eMethodName); out << body; _appendEMethodCallElementEnd(out); _appendSimpleExportReqElementEnd(out); _appendMessageElementEnd(out); appendEMethodRequestHeader( tmp, host, eMethodName, authenticationHeader, out.size()); tmp << out; return out; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleEMethodRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleEMethodRspMessage( const char* eMethodName, const String& messageId, const Array& body) { Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleExportRspElementBegin(out); _appendEMethodResponseElementBegin(out, eMethodName); out << body; _appendEMethodResponseElementEnd(out); _appendSimpleExportRspElementEnd(out); _appendMessageElementEnd(out); appendEMethodResponseHeader(tmp, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleEMethodErrorRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleEMethodErrorRspMessage( const String& eMethodName, const String& messageId, const CIMException& cimException) { ArrayDestroyer tmp1(eMethodName.allocateCString()); Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleExportRspElementBegin(out); _appendEMethodResponseElementBegin(out, tmp1.getPointer()); _appendErrorElement(out, cimException); _appendEMethodResponseElementEnd(out); _appendSimpleExportRspElementEnd(out); _appendMessageElementEnd(out); appendEMethodResponseHeader(tmp, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // _printAttributes() // //------------------------------------------------------------------------------ static void _printAttributes( PEGASUS_STD(ostream)& os, const XmlAttribute* attributes, Uint32 attributeCount) { for (Uint32 i = 0; i < attributeCount; i++) { os << attributes[i].name << "="; os << '"'; _appendSpecial(os, attributes[i].value); os << '"'; if (i + 1 != attributeCount) os << ' '; } } //------------------------------------------------------------------------------ // // _indent() // //------------------------------------------------------------------------------ static void _indent(PEGASUS_STD(ostream)& os, Uint32 level, Uint32 indentChars) { Uint32 n = level * indentChars; for (Uint32 i = 0; i < n; i++) os << ' '; } //------------------------------------------------------------------------------ // // indentedPrint() // //------------------------------------------------------------------------------ void XmlWriter::indentedPrint( PEGASUS_STD(ostream)& os, const char* text, Uint32 indentChars) { char* tmp = strcpy(new char[strlen(text) + 1], text); XmlParser parser(tmp); XmlEntry entry; Stack stack; while (parser.next(entry)) { switch (entry.type) { case XmlEntry::XML_DECLARATION: { _indent(os, stack.size(), indentChars); os << ""; break; } case XmlEntry::START_TAG: { _indent(os, stack.size(), indentChars); os << "<" << entry.text; if (entry.attributeCount) os << ' '; _printAttributes(os, entry.attributes, entry.attributeCount); os << ">"; stack.push(entry.text); break; } case XmlEntry::EMPTY_TAG: { _indent(os, stack.size(), indentChars); os << "<" << entry.text << " "; _printAttributes(os, entry.attributes, entry.attributeCount); os << "/>"; break; } case XmlEntry::END_TAG: { if (!stack.isEmpty() && strcmp(stack.top(), entry.text) == 0) stack.pop(); _indent(os, stack.size(), indentChars); os << ""; break; } case XmlEntry::COMMENT: { _indent(os, stack.size(), indentChars); os << ""; break; } case XmlEntry::CONTENT: { _indent(os, stack.size(), indentChars); _appendSpecial(os, entry.text); break; } case XmlEntry::CDATA: { _indent(os, stack.size(), indentChars); os << ""; break; } case XmlEntry::DOCTYPE: { _indent(os, stack.size(), indentChars); os << ""; break; } } os << PEGASUS_STD(endl); } delete [] tmp; } //------------------------------------------------------------------------------ // // XmlWriter::getNextMessageId() // //------------------------------------------------------------------------------ String XmlWriter::getNextMessageId() { // ATTN: make thread-safe: static Uint32 messageId = 1000; messageId++; if (messageId < 1000) messageId = 1001; char buffer[16]; sprintf(buffer, "%d", messageId); return buffer; } PEGASUS_NAMESPACE_END