Update copyright.
[shibboleth/cpp-xmltooling.git] / xmltooling / impl / AnyElement.cpp
1 /*
2  *  Copyright 2001-2007 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * AnyElement.cpp
19  * 
20  * Advanced anyType implementation suitable for deep processing of unknown content.
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "impl/AnyElement.h"
26 #include "util/NDC.h"
27 #include "util/XMLHelper.h"
28
29 #include <xercesc/util/XMLUniDefs.hpp>
30
31 using namespace xmltooling;
32 using namespace std;
33
34 XMLObject* AnyElementImpl::clone() const {
35     auto_ptr<XMLObject> domClone(AbstractDOMCachingXMLObject::clone());
36     AnyElementImpl* ret=dynamic_cast<AnyElementImpl*>(domClone.get());
37     if (ret) {
38         domClone.release();
39         return ret;
40     }
41
42     return new AnyElementImpl(*this);
43 }
44
45 AnyElementImpl::AnyElementImpl(const AnyElementImpl& src) : AbstractXMLObject(src), AbstractDOMCachingXMLObject(src),
46         AbstractComplexElement(src), AbstractAttributeExtensibleXMLObject(src) {
47     const vector<XMLObject*>& children = src.getUnknownXMLObjects();
48     for (vector<XMLObject*>::const_iterator i=children.begin(); i!=children.end(); ++i)
49         getUnknownXMLObjects().push_back((*i)->clone());
50 }       
51
52 void AnyElementImpl::marshallAttributes(DOMElement* domElement) const {
53     marshallExtensionAttributes(domElement);
54 }
55
56 void AnyElementImpl::processChildElement(XMLObject* childXMLObject, const DOMElement* root) {
57     getUnknownXMLObjects().push_back(childXMLObject);
58 }
59
60 void AnyElementImpl::processAttribute(const DOMAttr* attribute) {
61     unmarshallExtensionAttribute(attribute);
62 }
63
64 XMLObject* AnyElementBuilder::buildObject(
65     const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix, const QName* schemaType
66     ) const {
67     return new AnyElementImpl(nsURI, localName, prefix, schemaType);
68 }