X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=xmltoolingtest%2FXMLObjectBaseTestCase.h;h=c51a4ffd4a4ff83cce551ef4f247264da095c09e;hb=eb3000a4c5a8ddecf25927f0de0734bd78ba0fe4;hp=d0fb2d0f6d82c7b385fe837cde3bab3f9ee78a9a;hpb=cc0bfa6146fb0a556e80ae5f83c330dbe2ddf3c9;p=shibboleth%2Fcpp-xmltooling.git diff --git a/xmltoolingtest/XMLObjectBaseTestCase.h b/xmltoolingtest/XMLObjectBaseTestCase.h index d0fb2d0..c51a4ff 100644 --- a/xmltoolingtest/XMLObjectBaseTestCase.h +++ b/xmltoolingtest/XMLObjectBaseTestCase.h @@ -1,153 +1,203 @@ -/* - * Copyright 2001-2005 Internet2 - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -using namespace xmltooling; -using namespace std; - -extern ParserPool* validatingPool; -extern ParserPool* nonvalidatingPool; - -#if defined (_MSC_VER) - #pragma warning( push ) - #pragma warning( disable : 4250 4251 ) -#endif - -class SimpleXMLObjectUnmarshaller; - -class SimpleXMLObject : public AbstractDOMCachingXMLObject -{ -public: - static const XMLCh NAMESPACE[]; - static const XMLCh NAMESPACE_PREFIX[]; - static const XMLCh LOCAL_NAME[]; - static const XMLCh ID_ATTRIB_NAME[]; - - SimpleXMLObject() : AbstractDOMCachingXMLObject(NAMESPACE, LOCAL_NAME, NAMESPACE_PREFIX), m_id(NULL), m_value(NULL) {} - virtual ~SimpleXMLObject() { - XMLString::release(&m_id); - XMLString::release(&m_value); - for_each(m_children.begin(), m_children.end(), cleanup()); - } - - const XMLCh* getId() const { return m_id; } - void setId(const XMLCh* id) { m_id=prepareForAssignment(m_id,id); } - - const XMLCh* getValue() const { return m_value; } - void setValue(const XMLCh* value) { m_value=prepareForAssignment(m_value,value); } - - const list& getSimpleXMLObjects() const { return m_children; } - - bool hasChildren() const { return !m_children.empty(); } - size_t getOrderedChildren(vector& children) const { - children.assign(m_children.begin(),m_children.end()); - return children.size(); - } - SimpleXMLObject* clone() const { - SimpleXMLObject* ret=new SimpleXMLObject(); - ret->setId(m_id); - ret->setValue(m_value); - xmltooling::clone(m_children, ret->m_children); - return ret; - } - -private: - XMLCh* m_id; - XMLCh* m_value; - list m_children; - - friend class SimpleXMLObjectUnmarshaller; -}; - -class SimpleXMLObjectBuilder : public XMLObjectBuilder -{ -public: - XMLObject* buildObject() const { - return new SimpleXMLObject(); - } -}; - -class SimpleXMLObjectMarshaller : public AbstractXMLObjectMarshaller -{ -public: - SimpleXMLObjectMarshaller() : AbstractXMLObjectMarshaller(SimpleXMLObject::NAMESPACE, SimpleXMLObject::LOCAL_NAME) {} - -private: - void marshallAttributes(const XMLObject& xmlObject, DOMElement* domElement) const { - const SimpleXMLObject& simpleXMLObject = dynamic_cast(xmlObject); - - if(simpleXMLObject.getId()) { - domElement->setAttributeNS(NULL, SimpleXMLObject::ID_ATTRIB_NAME, simpleXMLObject.getId()); - domElement->setIdAttributeNS(NULL, SimpleXMLObject::ID_ATTRIB_NAME); - } - } - - void marshallElementContent(const XMLObject& xmlObject, DOMElement* domElement) const { - const SimpleXMLObject& simpleXMLObject = dynamic_cast(xmlObject); - - if(simpleXMLObject.getValue()) { - domElement->setTextContent(simpleXMLObject.getValue()); - } - } -}; - -class SimpleXMLObjectUnmarshaller : public AbstractXMLObjectUnmarshaller -{ -public: - SimpleXMLObjectUnmarshaller() : AbstractXMLObjectUnmarshaller(SimpleXMLObject::NAMESPACE, SimpleXMLObject::LOCAL_NAME) {} - -private: - void processChildElement(XMLObject& parentXMLObject, XMLObject* childXMLObject) const { - SimpleXMLObject& simpleXMLObject = dynamic_cast(parentXMLObject); - - SimpleXMLObject* child = dynamic_cast(childXMLObject); - if (child) { - simpleXMLObject.m_children.push_back(child); - } - else { - throw UnmarshallingException("Unknown child element cannot be added to parent object."); - } - } - - void processAttribute(XMLObject& xmlObject, const DOMAttr* attribute) const { - SimpleXMLObject& simpleXMLObject = dynamic_cast(xmlObject); - - if (XMLString::equals(attribute->getLocalName(),SimpleXMLObject::ID_ATTRIB_NAME)) { - simpleXMLObject.setId(attribute->getValue()); - } - } - - void processElementContent(XMLObject& xmlObject, const XMLCh* elementContent) const { - SimpleXMLObject& simpleXMLObject = dynamic_cast(xmlObject); - - simpleXMLObject.setValue(elementContent); - } - -}; - - -#if defined (_MSC_VER) - #pragma warning( pop ) -#endif +/** + * Licensed to the University Corporation for Advanced Internet + * Development, Inc. (UCAID) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + * + * UCAID licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the + * License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, + * either express or implied. See the License for the specific + * language governing permissions and limitations under the License. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifndef XMLTOOLING_NO_XMLSEC + #include + using namespace xmlsignature; +#endif + +using namespace xmltooling; +using namespace xercesc; +using namespace std; + +extern string data_path; + +#if defined (_MSC_VER) + #pragma warning( push ) + #pragma warning( disable : 4250 4251 ) +#endif + +class SimpleXMLObject + : public AbstractAttributeExtensibleXMLObject, + public AbstractComplexElement, + public AbstractDOMCachingXMLObject, + public AbstractXMLObjectMarshaller, + public AbstractXMLObjectUnmarshaller +{ +protected: + SimpleXMLObject(const SimpleXMLObject& src) + : AbstractXMLObject(src), AbstractAttributeExtensibleXMLObject(src), AbstractComplexElement(src), AbstractDOMCachingXMLObject(src), + m_id(XMLString::replicate(src.m_id)) { +#ifndef XMLTOOLING_NO_XMLSEC + m_children.push_back(nullptr); + m_signature=m_children.begin(); +#endif + VectorOf(SimpleXMLObject) mine=getSimpleXMLObjects(); + for (vector::const_iterator i=src.m_simples.begin(); i!=src.m_simples.end(); i++) { + mine.push_back(dynamic_cast((*i)->clone())); + } + } + +public: + static const XMLCh NAMESPACE[]; + static const XMLCh NAMESPACE_PREFIX[]; + static const XMLCh LOCAL_NAME[]; + static const XMLCh DERIVED_NAME[]; + static const XMLCh TYPE_NAME[]; + static const XMLCh ID_ATTRIB_NAME[]; + + SimpleXMLObject( + const XMLCh* nsURI=nullptr, const XMLCh* localName=nullptr, const XMLCh* prefix=nullptr, const xmltooling::QName* schemaType=nullptr + ) : AbstractXMLObject(nsURI, localName, prefix, schemaType), m_id(nullptr) { +#ifndef XMLTOOLING_NO_XMLSEC + m_children.push_back(nullptr); + m_signature=m_children.begin(); +#endif + } + + virtual ~SimpleXMLObject() { + XMLString::release(&m_id); + } + + XMLObject* clone() const { + auto_ptr domClone(AbstractDOMCachingXMLObject::clone()); + SimpleXMLObject* ret=dynamic_cast(domClone.get()); + if (ret) { + domClone.release(); + return ret; + } + + return new SimpleXMLObject(*this); + } + + const XMLCh* getXMLID() const { return getId(); } + const XMLCh* getId() const { return m_id; } + void setId(const XMLCh* id) { m_id=prepareForAssignment(m_id,id); } + + const XMLCh* getValue() const { return getTextContent(); } + void setValue(const XMLCh* value) { setTextContent(value); } + +#ifndef XMLTOOLING_NO_XMLSEC + Signature* getSignature() const { + return dynamic_cast(*m_signature); + } + + void setSignature(Signature* sig) { + *m_signature=prepareForAssignment(*m_signature,sig); + } +#endif + + VectorOf(SimpleXMLObject) getSimpleXMLObjects() { + return VectorOf(SimpleXMLObject)(this, m_simples, &m_children, m_children.end()); + } + + const std::vector& getSimpleXMLObjects() const { + return m_simples; + } + +protected: + void marshallAttributes(xercesc::DOMElement* domElement) const { + if(getId()) { + domElement->setAttributeNS(nullptr, SimpleXMLObject::ID_ATTRIB_NAME, getId()); +#ifdef XMLTOOLING_XERCESC_BOOLSETIDATTRIBUTE + domElement->setIdAttributeNS(nullptr, SimpleXMLObject::ID_ATTRIB_NAME, true); +#else + domElement->setIdAttributeNS(nullptr, SimpleXMLObject::ID_ATTRIB_NAME); +#endif + } + marshallExtensionAttributes(domElement); + } + + void processChildElement(XMLObject* childXMLObject, const xercesc::DOMElement* root) { + SimpleXMLObject* simple=dynamic_cast(childXMLObject); + if (simple) { + getSimpleXMLObjects().push_back(simple); + return; + } + +#ifndef XMLTOOLING_NO_XMLSEC + Signature* sig=dynamic_cast(childXMLObject); + if (sig) { + setSignature(sig); + return; + } +#endif + + throw UnmarshallingException("Unknown child element cannot be added to parent object."); + } + + void processAttribute(const xercesc::DOMAttr* attribute) { + if (XMLHelper::isNodeNamed(attribute, nullptr, SimpleXMLObject::ID_ATTRIB_NAME)) { + setId(attribute->getValue()); + return; + } + unmarshallExtensionAttribute(attribute); + } + +private: + XMLCh* m_id; + vector m_simples; +#ifndef XMLTOOLING_NO_XMLSEC + list::iterator m_signature; +#endif +}; + +class SimpleXMLObjectBuilder : public XMLObjectBuilder +{ +public: + XMLObject* buildObject() const { + return buildObject(SimpleXMLObject::NAMESPACE, SimpleXMLObject::LOCAL_NAME, SimpleXMLObject::NAMESPACE_PREFIX); + } + + XMLObject* buildObject( + const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=nullptr, const xmltooling::QName* schemaType=nullptr + ) const { + return new SimpleXMLObject(nsURI, localName, prefix, schemaType); + } + + static SimpleXMLObject* buildSimpleXMLObject() { + const SimpleXMLObjectBuilder* b = dynamic_cast( + XMLObjectBuilder::getBuilder(xmltooling::QName(SimpleXMLObject::NAMESPACE,SimpleXMLObject::LOCAL_NAME)) + ); + if (b) + return dynamic_cast(b->buildObject()); + throw XMLObjectException("Unable to obtain typed builder for SimpleXMLObject."); + } +}; + +#if defined (_MSC_VER) + #pragma warning( pop ) +#endif