//%///////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2000, 2001, 2002 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) // Carol Ann Krug Graves, Hewlett-Packard Company // (carolann_graves@hp.com) // //%///////////////////////////////////////////////////////////////////////////// #include #include #include #include "Constants.h" #include "Destroyer.h" #include "CIMClass.h" #include "CIMClassRep.h" #include "CIMInstance.h" #include "CIMInstanceRep.h" #include "CIMProperty.h" #include "CIMPropertyRep.h" #include "CIMMethod.h" #include "CIMMethodRep.h" #include "CIMParameter.h" #include "CIMParameterRep.h" #include "CIMParamValue.h" #include "CIMParamValueRep.h" #include "CIMQualifier.h" #include "CIMQualifierRep.h" #include "CIMQualifierDecl.h" #include "CIMQualifierDeclRep.h" #include "CIMValue.h" #include "XmlWriter.h" #include "XmlParser.h" #include "Tracer.h" #include 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, const 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; } Array& operator<<(Array& out, const CIMName& name) { XmlWriter::append(out, name.getString ()); return out; } // l10n Array& operator<<(Array& out, const AcceptLanguages& al) { XmlWriter::append(out, al.toString ()); return out; } // l10n Array& operator<<(Array& out, const ContentLanguages& cl) { XmlWriter::append(out, cl.toString ()); return out; } PEGASUS_STD(ostream)& operator<<(PEGASUS_STD(ostream)& os, const CIMDateTime& x) { return os << x.toString(); } PEGASUS_STD(ostream)& operator<<(PEGASUS_STD(ostream)& os, const CIMName& name) { os << name.getString(); return os; } PEGASUS_STD(ostream)& operator<<(PEGASUS_STD(ostream)& os, const CIMNamespaceName& name) { os << name.getString(); return os; } inline void _appendChar(Array& out, const Char16& c) { out.append(Sint8(c)); } inline void _appendSpecialChar(Array& out, const Char16& c) { // ATTN-B: Only UTF-8 handled for now. if ( (c < Char16(0x20)) || (c == Char16(0x7f)) ) { char charref[7]; sprintf(charref, "&#%u;", (Uint16)c); out.append(charref, strlen(charref)); } else { 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) { if ( (c < Char16(0x20)) || (c == Char16(0x7f)) ) { char charref[7]; sprintf(charref, "&#%u;", (Uint16)c); os << charref; } else { 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, const Char16& x) { _appendChar(out, x); } void XmlWriter::append(Array& out, Boolean x) { append(out, (x ? "TRUE" : "FALSE")); } void XmlWriter::append(Array& out, Uint32 x) { char buffer[32]; sprintf(buffer, "%u", x); append(out, buffer); } void XmlWriter::append(Array& out, Sint32 x) { char buffer[32]; sprintf(buffer, "%d", x); append(out, buffer); } void XmlWriter::append(Array& out, Uint64 x) { char buffer[32]; // Should need 21 chars max sprintf(buffer, "%" PEGASUS_64BIT_CONVERSION_WIDTH "u", x); append(out, buffer); } void XmlWriter::append(Array& out, Sint64 x) { char buffer[32]; // Should need 21 chars max sprintf(buffer, "%" PEGASUS_64BIT_CONVERSION_WIDTH "d", x); append(out, buffer); } void XmlWriter::append(Array& out, Real64 x) { char buffer[128]; // %e gives '[-]m.dddddde+/-xx', which seems compatible with CIM/XML spec sprintf(buffer, "%e", 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) { for (Uint32 i = 0; i < str.size(); i++) { _appendChar(out, str[i]); } } void XmlWriter::append(Array& out, const Indentor& x) { for (Uint32 i = 0; i < 4 * x.getLevel(); i++) out.append(' '); } void XmlWriter::appendSpecial(Array& out, const 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) { for (Uint32 i = 0; i < str.size(); i++) { _appendSpecialChar(out, str[i]); } } // See http://www.ietf.org/rfc/rfc2396.txt section 2 // Reserved characters = ';' '/' '?' ':' '@' '&' '=' '+' '$' ',' // Excluded characters: // Control characters = 0x00-0x1f, 0x7f // Space character = 0x20 // Delimiters = '<' '>' '#' '%' '"' // Unwise = '{' '}' '|' '\\' '^' '[' ']' '`' inline void _encodeURIChar(String& outString, Char16 char16) { // ATTN: Handle non-UTF-8 character sets char c = char16 & 0x007f; #ifndef PEGASUS_DO_NOT_IMPLEMENT_URI_ENCODING if ( (c <= 0x20) || // Control characters + space char ( (c >= 0x22) && (c <= 0x26) ) || // '"' '#' '$' '%' '&' (c == 0x2b) || // '+' (c == 0x2c) || // ',' (c == 0x2f) || // '/' ( (c >= 0x3a) && (c <= 0x40) ) || // ':' ';' '<' '=' '>' '?' '@' ( (c >= 0x5b) && (c <= 0x5e) ) || // '[' '\\' ']' '^' (c == 0x60) || // '`' ( (c >= 0x7b) && (c <= 0x7d) ) || // '{' '|' '}' (c == 0x7f) ) // Control character { char hexencoding[4]; sprintf(hexencoding, "%%%X%X", c/16, c%16); outString.append(hexencoding); } else #endif { outString.append(c); } } String XmlWriter::encodeURICharacters(Array uriString) { String encodedString; for (Uint32 i=0; i // //------------------------------------------------------------------------------ void XmlWriter::appendLocalNameSpacePathElement( Array& out, const CIMNamespaceName& nameSpace) { out << "\n"; char* nameSpaceCopy = strdup(nameSpace.getString().getCString()); for (const char* p = strtok(nameSpaceCopy, "/"); p; p = strtok(NULL, "/")) { out << "\n"; } delete nameSpaceCopy; out << "\n"; } //------------------------------------------------------------------------------ // // appendNameSpacePathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendNameSpacePathElement( Array& out, const String& host, const CIMNamespaceName& nameSpace) { out << "\n"; out << "" << host << "\n"; appendLocalNameSpacePathElement(out, nameSpace); out << "\n"; } //------------------------------------------------------------------------------ // // appendClassNameElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendClassNameElement( Array& out, const CIMName& className) { out << "\n"; } //------------------------------------------------------------------------------ // // appendInstanceNameElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendInstanceNameElement( Array& out, const CIMObjectPath& instanceName) { out << "\n"; Array keyBindings = instanceName.getKeyBindings(); for (Uint32 i = 0, n = keyBindings.size(); i < n; i++) { out << "\n"; if (keyBindings[i].getType() == CIMKeyBinding::REFERENCE) { CIMObjectPath ref = keyBindings[i].getValue(); appendValueReferenceElement(out, ref, 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 CIMObjectPath& classPath) { out << "\n"; appendNameSpacePathElement(out, classPath.getHost(), classPath.getNameSpace()); appendClassNameElement(out, classPath.getClassName()); out << "\n"; } //------------------------------------------------------------------------------ // // appendInstancePathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendInstancePathElement( Array& out, const CIMObjectPath& instancePath) { out << "\n"; appendNameSpacePathElement(out, instancePath.getHost(), instancePath.getNameSpace()); appendInstanceNameElement(out, instancePath); out << "\n"; } //------------------------------------------------------------------------------ // // appendLocalClassPathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendLocalClassPathElement( Array& out, const CIMObjectPath& classPath) { out << "\n"; appendLocalNameSpacePathElement(out, classPath.getNameSpace()); appendClassNameElement(out, classPath.getClassName()); out << "\n"; } //------------------------------------------------------------------------------ // // appendLocalInstancePathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendLocalInstancePathElement( Array& out, const CIMObjectPath& 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 CIMObjectPath& objectPath) { // // ATTN-CAKG-P2-20020726: The following condition does not correctly // distinguish instanceNames from classNames in every case // The instanceName of a singleton instance of a keyless class has no // key bindings // if (objectPath.getKeyBindings ().size () != 0) { appendLocalInstancePathElement(out, objectPath); } else { appendLocalClassPathElement(out, objectPath); } } //------------------------------------------------------------------------------ // // Helper functions for appendValueElement() // //------------------------------------------------------------------------------ inline void _appendValue(Array& out, Boolean x) { XmlWriter::append(out, x); } inline void _appendValue(Array& out, Uint8 x) { XmlWriter::append(out, Uint32(x)); } inline void _appendValue(Array& out, Sint8 x) { XmlWriter::append(out, Sint32(x)); } inline void _appendValue(Array& out, Uint16 x) { XmlWriter::append(out, Uint32(x)); } inline void _appendValue(Array& out, Sint16 x) { XmlWriter::append(out, Sint32(x)); } inline void _appendValue(Array& out, Uint32 x) { XmlWriter::append(out, x); } inline void _appendValue(Array& out, Sint32 x) { XmlWriter::append(out, x); } inline void _appendValue(Array& out, Uint64 x) { XmlWriter::append(out, x); } inline void _appendValue(Array& out, Sint64 x) { XmlWriter::append(out, x); } inline void _appendValue(Array& out, Real32 x) { XmlWriter::append(out, Real64(x)); } inline void _appendValue(Array& out, Real64 x) { XmlWriter::append(out, x); } inline void _appendValue(Array& out, const Char16& x) { XmlWriter::appendSpecial(out, x); } inline void _appendValue(Array& out, const String& x) { XmlWriter::appendSpecial(out, x); } inline void _appendValue(Array& out, const CIMDateTime& x) { out << x.toString(); //ATTN: append() method? } inline void _appendValue(Array& out, const CIMObjectPath& x) { XmlWriter::appendValueReferenceElement(out, x, true); } void _appendValueArray(Array& out, const CIMObjectPath* p, Uint32 size) { out << "\n"; while (size--) { _appendValue(out, *p++); } out << "\n"; } template void _appendValueArray(Array& out, const T* p, Uint32 size) { out << "\n"; while (size--) { out << ""; _appendValue(out, *p++); out << "\n"; } out << "\n"; } //------------------------------------------------------------------------------ // // appendValueElement() // // // // // // //------------------------------------------------------------------------------ void XmlWriter::appendValueElement( Array& out, const CIMValue& value) { if (value.isNull()) { return; } if (value.isArray()) { switch (value.getType()) { case CIMTYPE_BOOLEAN: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_UINT8: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_SINT8: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_UINT16: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_SINT16: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_UINT32: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_SINT32: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_UINT64: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_SINT64: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_REAL32: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_REAL64: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_CHAR16: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_STRING: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_DATETIME: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } case CIMTYPE_REFERENCE: { Array a; value.get(a); _appendValueArray(out, a.getData(), a.size()); break; } default: PEGASUS_ASSERT(false); } } else if (value.getType() == CIMTYPE_REFERENCE) { // Has to be separate because it uses VALUE.REFERENCE tag CIMObjectPath v; value.get(v); _appendValue(out, v); } else { out << ""; switch (value.getType()) { case CIMTYPE_BOOLEAN: { Boolean v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_UINT8: { Uint8 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_SINT8: { Sint8 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_UINT16: { Uint16 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_SINT16: { Sint16 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_UINT32: { Uint32 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_SINT32: { Sint32 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_UINT64: { Uint64 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_SINT64: { Sint64 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_REAL32: { Real32 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_REAL64: { Real64 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_CHAR16: { Char16 v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_STRING: { String v; value.get(v); _appendValue(out, v); break; } case CIMTYPE_DATETIME: { CIMDateTime v; value.get(v); _appendValue(out, v); break; } default: PEGASUS_ASSERT(false); } out << "\n"; } } void XmlWriter::printValueElement( const CIMValue& value, PEGASUS_STD(ostream)& os) { Array tmp; appendValueElement(tmp, value); tmp.append('\0'); os << tmp.getData() << PEGASUS_STD(endl); } //------------------------------------------------------------------------------ // // appendValueObjectWithPathElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendValueObjectWithPathElement( Array& out, const CIMObject& objectWithPath) { out << "\n"; appendValueReferenceElement(out, objectWithPath.getPath (), false); appendObjectElement(out, objectWithPath); out << "\n"; } //------------------------------------------------------------------------------ // // appendValueReferenceElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendValueReferenceElement( Array& out, const CIMObjectPath& reference, Boolean putValueWrapper) { if (putValueWrapper) out << "\n"; // See if it is a class or instance reference (instance references have // key-bindings; class references do not). // // ATTN-CAKG-P2-20020726: The following condition does not correctly // distinguish instanceNames from classNames in every case // The instanceName of a singleton instance of a keyless class has no // key bindings // Array kbs = reference.getKeyBindings(); if (kbs.size()) { if (reference.getHost().size()) { appendInstancePathElement(out, reference); } else if (!reference.getNameSpace().isNull()) { appendLocalInstancePathElement(out, reference); } else { appendInstanceNameElement(out, reference); } } else { if (reference.getHost().size()) { appendClassPathElement(out, reference); } else if (!reference.getNameSpace().isNull()) { appendLocalClassPathElement(out, reference); } else { appendClassNameElement(out, reference.getClassName()); } } if (putValueWrapper) out << "\n"; } void XmlWriter::printValueReferenceElement( const CIMObjectPath& reference, PEGASUS_STD(ostream)& os) { Array tmp; appendValueReferenceElement(tmp, reference, true); tmp.append('\0'); indentedPrint(os, tmp.getData()); } //------------------------------------------------------------------------------ // // appendValueNamedInstanceElement() // // // //------------------------------------------------------------------------------ void XmlWriter::appendValueNamedInstanceElement( Array& out, const CIMInstance& namedInstance) { out << "\n"; appendInstanceNameElement(out, namedInstance.getPath ()); appendInstanceElement(out, namedInstance); out << "\n"; } //------------------------------------------------------------------------------ // // appendClassElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendClassElement( Array& out, const CIMConstClass& cimclass) { cimclass._checkRep(); cimclass._rep->toXml(out); } void XmlWriter::printClassElement( const CIMConstClass& cimclass, PEGASUS_STD(ostream)& os) { Array tmp; appendClassElement(tmp, cimclass); tmp.append('\0'); indentedPrint(os, tmp.getData(), 4); } //------------------------------------------------------------------------------ // // appendInstanceElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendInstanceElement( Array& out, const CIMConstInstance& instance) { instance._checkRep(); instance._rep->toXml(out); } void XmlWriter::printInstanceElement( const CIMConstInstance& instance, PEGASUS_STD(ostream)& os) { Array tmp; appendInstanceElement(tmp, instance); tmp.append('\0'); os << tmp.getData() << PEGASUS_STD(endl); } //------------------------------------------------------------------------------ // // appendObjectElement() // // May refer to a CLASS or an INSTANCE // //------------------------------------------------------------------------------ void XmlWriter::appendObjectElement( Array& out, const CIMConstObject& object) { if (object.isClass()) { CIMConstClass c(object); appendClassElement(out, c); } else if (object.isInstance()) { CIMConstInstance i(object); appendInstanceElement(out, i); } // else PEGASUS_ASSERT(0); } //------------------------------------------------------------------------------ // // appendPropertyElement() // // // // // // // // // // //------------------------------------------------------------------------------ void XmlWriter::appendPropertyElement( Array& out, const CIMConstProperty& property) { property._checkRep(); property._rep->toXml(out); } void XmlWriter::printPropertyElement( const CIMConstProperty& property, PEGASUS_STD(ostream)& os) { Array tmp; appendPropertyElement(tmp, property); tmp.append('\0'); os << tmp.getData() << PEGASUS_STD(endl); } //------------------------------------------------------------------------------ // // appendMethodElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendMethodElement( Array& out, const CIMConstMethod& method) { method._checkRep(); method._rep->toXml(out); } void XmlWriter::printMethodElement( const CIMConstMethod& method, PEGASUS_STD(ostream)& os) { Array tmp; appendMethodElement(tmp, method); tmp.append('\0'); os << tmp.getData() << PEGASUS_STD(endl); } //------------------------------------------------------------------------------ // // appendParameterElement() // // // // // // // // // // // // // //------------------------------------------------------------------------------ void XmlWriter::appendParameterElement( Array& out, const CIMConstParameter& parameter) { parameter._checkRep(); parameter._rep->toXml(out); } void XmlWriter::printParameterElement( const CIMConstParameter& parameter, PEGASUS_STD(ostream)& os) { Array tmp; appendParameterElement(tmp, parameter); tmp.append('\0'); os << tmp.getData() << PEGASUS_STD(endl); } //------------------------------------------------------------------------------ // // appendParamValueElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendParamValueElement( Array& out, const CIMParamValue& paramValue) { paramValue._checkRep(); paramValue._rep->toXml(out); } void XmlWriter::printParamValueElement( const CIMParamValue& paramValue, PEGASUS_STD(ostream)& os) { Array tmp; appendParamValueElement(tmp, paramValue); tmp.append('\0'); os << tmp.getData() << PEGASUS_STD(endl); } //------------------------------------------------------------------------------ // // appendQualifierElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendQualifierElement( Array& out, const CIMConstQualifier& qualifier) { qualifier._checkRep(); qualifier._rep->toXml(out); } void XmlWriter::printQualifierElement( const CIMConstQualifier& qualifier, PEGASUS_STD(ostream)& os) { Array tmp; appendQualifierElement(tmp, qualifier); tmp.append('\0'); os << tmp.getData() << PEGASUS_STD(endl); } //------------------------------------------------------------------------------ // // appendQualifierDeclElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendQualifierDeclElement( Array& out, const CIMConstQualifierDecl& qualifierDecl) { qualifierDecl._checkRep(); qualifierDecl._rep->toXml(out); } void XmlWriter::printQualifierDeclElement( const CIMConstQualifierDecl& qualifierDecl, PEGASUS_STD(ostream)& os) { Array tmp; appendQualifierDeclElement(tmp, qualifierDecl); tmp.append('\0'); os << tmp.getData() << PEGASUS_STD(endl); } //------------------------------------------------------------------------------ // // appendQualifierFlavorEntity() // // // //------------------------------------------------------------------------------ void XmlWriter::appendQualifierFlavorEntity( Array& out, const CIMFlavor & flavor) { if (!(flavor.hasFlavor (CIMFlavor::OVERRIDABLE))) out << " OVERRIDABLE=\"false\""; if (!(flavor.hasFlavor (CIMFlavor::TOSUBCLASS))) out << " TOSUBCLASS=\"false\""; if (flavor.hasFlavor (CIMFlavor::TOINSTANCE)) out << " TOINSTANCE=\"true\""; if (flavor.hasFlavor (CIMFlavor::TRANSLATABLE)) out << " TRANSLATABLE=\"true\""; } //------------------------------------------------------------------------------ // // appendScopeElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendScopeElement( Array& out, const CIMScope & scope) { if (!(scope.equal (CIMScope ()))) { out << ""; } } // l10n - added content language and accept language support to // the header methods below //------------------------------------------------------------------------------ // // appendMethodCallHeader() // // Build HTTP method call request header. // //------------------------------------------------------------------------------ void XmlWriter::appendMethodCallHeader( Array& out, const char* host, const CIMName& cimMethod, const String& cimObject, const String& authenticationHeader, HttpMethod httpMethod, const AcceptLanguages & acceptLanguages, const ContentLanguages & contentLanguages, Uint32 contentLength) { char nn[] = { '0' + (rand() % 10), '0' + (rand() % 10), '\0' }; // ATTN: KS 20020926 - Temporary change to issue only POST. This may // be changed in the DMTF CIM Operations standard in the future. // If we kept M-Post we would have to retry with Post. Does not // do that in client today. Permanent change is to retry until spec // updated. This change is temp to finish tests or until the retry // installed. Required because of change to wbemservices cimom #ifdef PEGASUS_SNIA_INTEROP_TEST out << "POST /cimom HTTP/1.1\r\n"; #else if (httpMethod == HTTP_METHOD_M_POST) { out << "M-POST /cimom HTTP/1.1\r\n"; } else { out << "POST /cimom HTTP/1.1\r\n"; } #endif out << "HOST: " << host << "\r\n"; out << "Content-Type: application/xml; charset=\"utf-8\"\r\n"; out << "Content-Length: " << contentLength << "\r\n"; if (acceptLanguages.size() > 0) { out << "Accept-Language: " << acceptLanguages << "\r\n"; } if (contentLanguages.size() > 0) { out << "Content-Language: " << contentLanguages << "\r\n"; } if (httpMethod == HTTP_METHOD_M_POST) { 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: " << encodeURICharacters(cimMethod.getString()) << "\r\n"; out << nn << "-CIMObject: " << encodeURICharacters(cimObject) << "\r\n"; } else { out << "CIMOperation: MethodCall\r\n"; out << "CIMMethod: " << encodeURICharacters(cimMethod.getString()) << "\r\n"; out << "CIMObject: " << encodeURICharacters(cimObject) << "\r\n"; } if (authenticationHeader.size()) { out << authenticationHeader << "\r\n"; } out << "\r\n"; } //------------------------------------------------------------------------------ // // appendMethodResponseHeader() // // Build HTTP response header. // //------------------------------------------------------------------------------ void XmlWriter::appendMethodResponseHeader( Array& out, HttpMethod httpMethod, const ContentLanguages & contentLanguages, Uint32 contentLength) { char nn[] = { '0' + (rand() % 10), '0' + (rand() % 10), '\0' }; out << "HTTP/1.1 " HTTP_STATUS_OK "\r\n"; STAT_SERVERTIME out << "Content-Type: application/xml; charset=\"utf-8\"\r\n"; out << "Content-Length: " << contentLength << "\r\n"; if (contentLanguages.size() > 0) { out << "Content-Language: " << contentLanguages << "\r\n"; } if (httpMethod == HTTP_METHOD_M_POST) { 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"; } else { out << "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 << PEGASUS_HTTPHEADERTAG_ERRORDETAIL ": " << encodeURICharacters(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 CIMName& name) { out << "\n"; } void XmlWriter::_appendMethodCallElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendIMethodCallElementBegin() // _appendIMethodCallElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendIMethodCallElementBegin( Array& out, const CIMName& 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 CIMName& name) { out << "\n"; } void XmlWriter::_appendMethodResponseElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendIMethodResponseElementBegin() // _appendIMethodResponseElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendIMethodResponseElementBegin( Array& out, const CIMName& name) { out << "\n"; } void XmlWriter::_appendIMethodResponseElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendErrorElement() // //------------------------------------------------------------------------------ void XmlWriter::_appendErrorElement( Array& out, const CIMException& cimException) { Tracer::traceCIMException(TRC_XML_WRITER, Tracer::LEVEL2, cimException); out << ""; } //------------------------------------------------------------------------------ // // appendReturnValueElement() // // // // //------------------------------------------------------------------------------ void XmlWriter::appendReturnValueElement( Array& out, const CIMValue& value) { out << "\n"; // Add value. appendValueElement(out, value); 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 << ""; append(out, flag); out << "\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 CIMName& className) { _appendIParamValueElementBegin(out, name); // // A NULL (unassigned) value for a parameter is specified by an // element with no subelement // if (!className.isNull ()) { appendClassNameElement(out, className); } _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendInstanceNameIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendInstanceNameIParameter( Array& out, const char* name, const CIMObjectPath& instanceName) { _appendIParamValueElementBegin(out, name); appendInstanceNameElement(out, instanceName); _appendIParamValueElementEnd(out); } void XmlWriter::appendObjectNameIParameter( Array& out, const char* name, const CIMObjectPath& objectName) { // // ATTN-CAKG-P2-20020726: The following condition does not correctly // distinguish instanceNames from classNames in every case // The instanceName of a singleton instance of a keyless class also // has no key bindings // if (objectName.getKeyBindings ().size () == 0) { 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); appendClassElement(out, cimClass); _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendInstanceIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendInstanceIParameter( Array& out, const char* name, const CIMConstInstance& instance) { _appendIParamValueElementBegin(out, name); appendInstanceElement(out, instance); _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendNamedInstanceIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendNamedInstanceIParameter( Array& out, const char* name, const CIMInstance& namedInstance) { _appendIParamValueElementBegin(out, name); appendValueNamedInstanceElement(out, namedInstance); _appendIParamValueElementEnd(out); } //---------------------------------------------------------- // // appendPropertyNameIParameter() // // // FreeSpace // // USE: Create parameter for getProperty operation //========================================================== void XmlWriter::appendPropertyNameIParameter( Array& out, const CIMName& propertyName) { _appendIParamValueElementBegin(out, "PropertyName"); out << "" << propertyName << "\n"; _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendPropertyValueIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendPropertyValueIParameter( Array& out, const char* name, const CIMValue& value) { _appendIParamValueElementBegin(out, name); appendValueElement(out, value); _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendPropertyListIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendPropertyListIParameter( Array& out, const CIMPropertyList& propertyList) { _appendIParamValueElementBegin(out, "PropertyList"); // // A NULL (unassigned) value for a parameter is specified by an // element with no subelement // if (!propertyList.isNull ()) { out << "\n"; for (Uint32 i = 0; i < propertyList.size(); i++) { out << "" << propertyList[i] << "\n"; } out << "\n"; } _appendIParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // appendQualifierDeclarationIParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendQualifierDeclarationIParameter( Array& out, const char* name, const CIMConstQualifierDecl& qualifierDecl) { _appendIParamValueElementBegin(out, name); appendQualifierDeclElement(out, qualifierDecl); _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; } // l10n - add content language support to the format methods below //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleMethodReqMessage() // //------------------------------------------------------------------------------ // ATTN-RK-P1-20020228: Need to complete copy elimination optimization Array XmlWriter::formatSimpleMethodReqMessage( const char* host, const CIMNamespaceName& nameSpace, const CIMObjectPath& path, const CIMName& methodName, const Array& parameters, const String& messageId, HttpMethod httpMethod, const String& authenticationHeader, const AcceptLanguages& httpAcceptLanguages, const ContentLanguages& httpContentLanguages) { Array out; Array tmp; CIMObjectPath localObjectPath = path; localObjectPath.setNameSpace(nameSpace.getString()); localObjectPath.setHost(String::EMPTY); _appendMessageElementBegin(out, messageId); _appendSimpleReqElementBegin(out); _appendMethodCallElementBegin(out, methodName); appendLocalObjectPathElement(out, localObjectPath); for (Uint32 i=0; i < parameters.size(); i++) { appendParamValueElement(out, parameters[i]); } _appendMethodCallElementEnd(out); _appendSimpleReqElementEnd(out); _appendMessageElementEnd(out); appendMethodCallHeader( tmp, host, methodName, localObjectPath.toString(), authenticationHeader, httpMethod, httpAcceptLanguages, httpContentLanguages, out.size()); tmp << out; return tmp; } Array XmlWriter::formatSimpleMethodRspMessage( const CIMName& methodName, const String& messageId, HttpMethod httpMethod, const ContentLanguages & httpContentLanguages, 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, httpMethod, httpContentLanguages, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleMethodErrorRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleMethodErrorRspMessage( const CIMName& methodName, const String& messageId, HttpMethod httpMethod, const CIMException& cimException) { Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleRspElementBegin(out); _appendMethodResponseElementBegin(out, methodName); _appendErrorElement(out, cimException); _appendMethodResponseElementEnd(out); _appendSimpleRspElementEnd(out); _appendMessageElementEnd(out); // l10n appendMethodResponseHeader(tmp, httpMethod, cimException.getContentLanguages(), out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleIMethodReqMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleIMethodReqMessage( const char* host, const CIMNamespaceName& nameSpace, const CIMName& iMethodName, const String& messageId, HttpMethod httpMethod, const String& authenticationHeader, const AcceptLanguages& httpAcceptLanguages, const ContentLanguages& httpContentLanguages, const Array& body) { Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleReqElementBegin(out); _appendIMethodCallElementBegin(out, iMethodName); appendLocalNameSpacePathElement(out, nameSpace.getString()); out << body; _appendIMethodCallElementEnd(out); _appendSimpleReqElementEnd(out); _appendMessageElementEnd(out); appendMethodCallHeader( tmp, host, iMethodName, nameSpace.getString(), authenticationHeader, httpMethod, httpAcceptLanguages, httpContentLanguages, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleIMethodRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleIMethodRspMessage( const CIMName& iMethodName, const String& messageId, HttpMethod httpMethod, const ContentLanguages & httpContentLanguages, const Array& body) { Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleRspElementBegin(out); _appendIMethodResponseElementBegin(out, iMethodName); if (body.size() != 0) { _appendIReturnValueElementBegin(out); out << body; _appendIReturnValueElementEnd(out); } _appendIMethodResponseElementEnd(out); _appendSimpleRspElementEnd(out); _appendMessageElementEnd(out); appendMethodResponseHeader(tmp, httpMethod, httpContentLanguages, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleIMethodErrorRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleIMethodErrorRspMessage( const CIMName& iMethodName, const String& messageId, HttpMethod httpMethod, const CIMException& cimException) { Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleRspElementBegin(out); _appendIMethodResponseElementBegin(out, iMethodName); _appendErrorElement(out, cimException); _appendIMethodResponseElementEnd(out); _appendSimpleRspElementEnd(out); _appendMessageElementEnd(out); // l10n appendMethodResponseHeader(tmp, httpMethod, cimException.getContentLanguages(), 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* requestUri, const char* host, const CIMName& cimMethod, HttpMethod httpMethod, const String& authenticationHeader, const AcceptLanguages& acceptLanguages, const ContentLanguages& contentLanguages, Uint32 contentLength) { char nn[] = { '0' + (rand() % 10), '0' + (rand() % 10), '\0' }; if (httpMethod == HTTP_METHOD_M_POST) { out << "M-POST " << requestUri << " HTTP/1.1\r\n"; } else { out << "POST " << requestUri << " HTTP/1.1\r\n"; } out << "HOST: " << host << "\r\n"; out << "Content-Type: application/xml; charset=\"utf-8\"\r\n"; out << "Content-Length: " << contentLength << "\r\n"; if (acceptLanguages.size() > 0) { out << "Accept-Language: " << acceptLanguages << "\r\n"; } if (contentLanguages.size() > 0) { out << "Content-Language: " << contentLanguages << "\r\n"; } if (httpMethod == HTTP_METHOD_M_POST) { out << "Man: http://www.hp.com; ns="; out << nn <<"\r\n"; out << nn << "-CIMExport: MethodRequest\r\n"; out << nn << "-CIMExportMethod: " << cimMethod << "\r\n"; } else { out << "CIMExport: MethodRequest\r\n"; out << "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, HttpMethod httpMethod, const ContentLanguages& contentLanguages, Uint32 contentLength) { char nn[] = { '0' + (rand() % 10), '0' + (rand() % 10), '\0' }; out << "HTTP/1.1 " HTTP_STATUS_OK "\r\n"; out << "Content-Type: application/xml; charset=\"utf-8\"\r\n"; out << "Content-Length: " << contentLength << "\r\n"; if (contentLanguages.size() > 0) { out << "Content-Language: " << contentLanguages << "\r\n"; } if (httpMethod == HTTP_METHOD_M_POST) { 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"; } else { out << "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 CIMName& name) { out << "\n"; } void XmlWriter::_appendEMethodCallElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendEParamValueElementBegin() // _appendEParamValueElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendEParamValueElementBegin( Array& out, const char* name) { out << "\n"; } void XmlWriter::_appendEParamValueElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // appendInstanceEParameter() // //------------------------------------------------------------------------------ void XmlWriter::appendInstanceEParameter( Array& out, const char* name, const CIMInstance& instance) { _appendEParamValueElementBegin(out, name); appendInstanceElement(out, instance); _appendEParamValueElementEnd(out); } //------------------------------------------------------------------------------ // // _appendSimpleExportRspElementBegin() // _appendSimpleExportRspElementEnd() // // // //------------------------------------------------------------------------------ void XmlWriter::_appendSimpleExportRspElementBegin( Array& out) { out << "\n"; } void XmlWriter::_appendSimpleExportRspElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // _appendEMethodResponseElementBegin() // _appendEMethodResponseElementEnd() // // // // //------------------------------------------------------------------------------ void XmlWriter::_appendEMethodResponseElementBegin( Array& out, const CIMName& name) { out << "\n"; } void XmlWriter::_appendEMethodResponseElementEnd( Array& out) { out << "\n"; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleEMethodReqMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleEMethodReqMessage( const char* requestUri, const char* host, const CIMName& eMethodName, const String& messageId, HttpMethod httpMethod, const String& authenticationHeader, const AcceptLanguages& httpAcceptLanguages, const ContentLanguages& httpContentLanguages, 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, requestUri, host, eMethodName, httpMethod, authenticationHeader, httpAcceptLanguages, httpContentLanguages, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleEMethodRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleEMethodRspMessage( const CIMName& eMethodName, const String& messageId, HttpMethod httpMethod, const ContentLanguages& httpContentLanguages, 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, httpMethod, httpContentLanguages, out.size()); tmp << out; return tmp; } //------------------------------------------------------------------------------ // // XmlWriter::formatSimpleEMethodErrorRspMessage() // //------------------------------------------------------------------------------ Array XmlWriter::formatSimpleEMethodErrorRspMessage( const CIMName& eMethodName, const String& messageId, HttpMethod httpMethod, const CIMException& cimException) { Array out; Array tmp; _appendMessageElementBegin(out, messageId); _appendSimpleExportRspElementBegin(out); _appendEMethodResponseElementBegin(out, eMethodName); _appendErrorElement(out, cimException); _appendEMethodResponseElementEnd(out); _appendSimpleExportRspElementEnd(out); _appendMessageElementEnd(out); // l10n appendEMethodResponseHeader(tmp, httpMethod, cimException.getContentLanguages(), 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; } //------------------------------------------------------------------------------ // // XmlWriter::keyBindingTypeToString // //------------------------------------------------------------------------------ const char* XmlWriter::keyBindingTypeToString (CIMKeyBinding::Type type) { switch (type) { case CIMKeyBinding::BOOLEAN: return "boolean"; case CIMKeyBinding::STRING: return "string"; case CIMKeyBinding::NUMERIC: return "numeric"; case CIMKeyBinding::REFERENCE: default: PEGASUS_ASSERT(false); } return "unknown"; } PEGASUS_NAMESPACE_END