Refactored simple content and child-handling into mixin classes.
[shibboleth/cpp-xmltooling.git] / xmltooling / AbstractXMLObject.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  * AbstractXMLObject.cpp
19  * 
20  * An abstract implementation of XMLObject.
21  */
22
23 #include "internal.h"
24 #include "AbstractXMLObject.h"
25 #include "exceptions.h"
26
27 #include <algorithm>
28 #include <log4cpp/Category.hh>
29
30 using namespace xmltooling;
31
32 AbstractXMLObject::AbstractXMLObject(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix, const QName* schemaType)
33     : m_log(&log4cpp::Category::getInstance(XMLTOOLING_LOGCAT".XMLObject")),
34         m_parent(NULL), m_elementQname(nsURI, localName, prefix), m_typeQname(NULL)
35 {
36     addNamespace(Namespace(nsURI, prefix));
37     if (schemaType) {
38         m_typeQname = new QName(*schemaType);
39         addNamespace(Namespace(m_typeQname->getNamespaceURI(), m_typeQname->getPrefix()));
40     }
41 }
42
43 AbstractXMLObject::AbstractXMLObject(const AbstractXMLObject& src)
44     : m_namespaces(src.m_namespaces), m_log(src.m_log), m_parent(NULL), m_elementQname(src.m_elementQname), m_typeQname(NULL)
45 {
46     if (src.m_typeQname)
47         m_typeQname=new QName(*src.m_typeQname);
48 }
49
50 XMLCh* AbstractXMLObject::prepareForAssignment(XMLCh* oldValue, const XMLCh* newValue)
51 {
52     XMLCh* newString = XMLString::replicate(newValue);
53     XMLString::trim(newString);
54     if (!XMLString::equals(oldValue,newValue)) {
55         releaseThisandParentDOM();
56         XMLString::release(&oldValue);
57         return newString;
58     }
59     XMLString::release(&newString);
60     return oldValue;            
61 }
62
63 XMLObject* AbstractXMLObject::prepareForAssignment(XMLObject* oldValue, XMLObject* newValue)
64 {
65     if (newValue && newValue->hasParent())
66         throw XMLObjectException("child XMLObject cannot be added - it is already the child of another XMLObject");
67
68     if (!oldValue) {
69         if (newValue) {
70             releaseThisandParentDOM();
71             newValue->setParent(this);
72         }
73         return newValue;
74     }
75
76     if (oldValue != newValue) {
77         delete oldValue;
78         releaseThisandParentDOM();
79         if (newValue)
80             newValue->setParent(this);
81     }
82
83     return newValue;
84 }