Multi-line svn commit, see body.
[shibboleth/cpp-xmltooling.git] / xmltooling / impl / AnyElement.cpp
1 /*
2  *  Copyright 2001-2006 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 <log4cpp/Category.hh>
30 #include <xercesc/util/XMLUniDefs.hpp>
31
32 using namespace xmltooling;
33 using namespace log4cpp;
34 using namespace std;
35
36 XMLObject* AnyElementImpl::clone() const {
37     auto_ptr<XMLObject> domClone(AbstractDOMCachingXMLObject::clone());
38     AnyElementImpl* ret=dynamic_cast<AnyElementImpl*>(domClone.get());
39     if (ret) {
40         domClone.release();
41         return ret;
42     }
43
44     return new AnyElementImpl(*this);
45 }
46
47 AnyElementImpl::AnyElementImpl(const AnyElementImpl& src) : AbstractXMLObject(src), AbstractDOMCachingXMLObject(src),
48     AbstractElementProxy(src), AbstractAttributeExtensibleXMLObject(src) {
49     for (list<XMLObject*>::const_iterator i=src.m_children.begin(); i!=src.m_children.end(); i++) {
50         getXMLObjects().push_back((*i) ? (*i)->clone() : NULL);
51     }
52 }       
53
54 void AnyElementImpl::marshallAttributes(DOMElement* domElement) const {
55     marshallExtensionAttributes(domElement);
56 }
57
58 void AnyElementImpl::processChildElement(XMLObject* childXMLObject, const DOMElement* root) {
59     getXMLObjects().push_back(childXMLObject);
60 }
61
62 void AnyElementImpl::processAttribute(const DOMAttr* attribute) {
63     unmarshallExtensionAttribute(attribute);
64 }
65
66 XMLObject* AnyElementBuilder::buildObject(
67     const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix, const QName* schemaType
68     ) const {
69     return new AnyElementImpl(nsURI, localName, prefix, schemaType);
70 }