Set fourth file version digit to signify rebuild.
[shibboleth/cpp-xmltooling.git] / xmltooling / AbstractComplexElement.cpp
1 /**
2  * Licensed to the University Corporation for Advanced Internet
3  * Development, Inc. (UCAID) under one or more contributor license
4  * agreements. See the NOTICE file distributed with this work for
5  * additional information regarding copyright ownership.
6  *
7  * UCAID licenses this file to you under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except
9  * in compliance with the License. You may obtain a copy of the
10  * License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
17  * either express or implied. See the License for the specific
18  * language governing permissions and limitations under the License.
19  */
20
21 /**
22  * AbstractComplexElement.cpp
23  * 
24  * Implementation of AbstractComplexElement.
25  */
26
27 #include "internal.h"
28 #include "AbstractComplexElement.h"
29
30 #include <algorithm>
31 #include <boost/lambda/bind.hpp>
32 #include <boost/lambda/lambda.hpp>
33
34 using namespace xmltooling;
35 using namespace xercesc;
36 using namespace boost::lambda;
37 using namespace boost;
38 using namespace std;
39
40
41 AbstractComplexElement::AbstractComplexElement()
42 {
43 }
44
45 AbstractComplexElement::AbstractComplexElement(const AbstractComplexElement& src)
46 {
47     static void (vector<XMLCh*>::* push_back)(XMLCh* const&) = &vector<XMLCh*>::push_back;
48     static XMLCh* (*replicate)(const XMLCh*,MemoryManager*) = &XMLString::replicate;
49
50     for_each(
51         src.m_text.begin(), src.m_text.end(),
52         lambda::bind(push_back, boost::ref(m_text), lambda::bind(replicate, _1, XMLPlatformUtils::fgMemoryManager))
53         );
54 }
55
56 AbstractComplexElement::~AbstractComplexElement() {
57 #ifdef XMLTOOLING_XERCESC_HAS_XMLBYTE_RELEASE
58     static void (*release)(XMLCh**) = &XMLString::release;
59 #else
60     static void (*release)(XMLCh**,MemoryManager*) = &XMLString::release;
61 #endif
62
63     for_each(m_children.begin(), m_children.end(), cleanup<XMLObject>());
64     for_each(m_text.begin(), m_text.end(),
65         lambda::bind(
66             release, &_1
67 #ifndef XMLTOOLING_XERCESC_HAS_XMLBYTE_RELEASE
68             ,XMLPlatformUtils::fgMemoryManager
69 #endif
70             )
71         );
72 }
73
74 bool AbstractComplexElement::hasChildren() const
75 {
76     if (m_children.empty())
77         return false;
78     return (find_if(m_children.begin(), m_children.end(), (_1 != ((XMLObject*)nullptr))) != m_children.end());
79 }
80
81 const list<XMLObject*>& AbstractComplexElement::getOrderedChildren() const
82 {
83     return m_children;
84 }
85
86 void AbstractComplexElement::removeChild(XMLObject* child)
87 {
88     m_children.erase(remove(m_children.begin(), m_children.end(), child), m_children.end());
89 }
90
91 const XMLCh* AbstractComplexElement::getTextContent(unsigned int position) const
92 {
93     return (m_text.size() > position) ? m_text[position] : nullptr;
94 }
95
96 void AbstractComplexElement::setTextContent(const XMLCh* value, unsigned int position)
97 {
98     if (position > m_children.size())
99         throw XMLObjectException("Can't set text content relative to non-existent child position.");
100     vector<XMLCh*>::size_type size = m_text.size();
101     while (position >= size) {
102         m_text.push_back(nullptr);
103         ++size;
104     }
105     m_text[position] = prepareForAssignment(m_text[position], value);
106 }