X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=xmltooling%2FAbstractComplexElement.cpp;h=7448602cfe6c08debd2a76780dcaf58efe70fc67;hb=81b488b2790e7bdeb2f43560b1d4a7d22c3dfdf5;hp=af04251d93fa2bbc2939ff0b03105ae627e249d9;hpb=c47d9a28b514e071b6fbb1dfce4b5f258d26a67f;p=shibboleth%2Fcpp-xmltooling.git diff --git a/xmltooling/AbstractComplexElement.cpp b/xmltooling/AbstractComplexElement.cpp index af04251..7448602 100644 --- a/xmltooling/AbstractComplexElement.cpp +++ b/xmltooling/AbstractComplexElement.cpp @@ -1,17 +1,21 @@ -/* -* Copyright 2001-2006 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 +/** + * 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 + * 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. + * 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. */ /** @@ -26,7 +30,62 @@ #include using namespace xmltooling; +using namespace std; + +using xercesc::XMLString; + +namespace { + bool _nonnull(const XMLObject* ptr) { + return (ptr!=nullptr); + } +} + +AbstractComplexElement::AbstractComplexElement() +{ +} + +AbstractComplexElement::AbstractComplexElement(const AbstractComplexElement& src) +{ + for (vector::const_iterator i=src.m_text.begin(); i!=src.m_text.end(); ++i) + m_text.push_back(XMLString::replicate(*i)); +} AbstractComplexElement::~AbstractComplexElement() { - std::for_each(m_children.begin(), m_children.end(), cleanup()); + for_each(m_children.begin(), m_children.end(), cleanup()); + for (vector::iterator i=m_text.begin(); i!=m_text.end(); ++i) + XMLString::release(&(*i)); +} + +bool AbstractComplexElement::hasChildren() const +{ + if (m_children.empty()) + return false; + return (find_if(m_children.begin(), m_children.end(), _nonnull) != m_children.end()); +} + +const list& AbstractComplexElement::getOrderedChildren() const +{ + return m_children; +} + +void AbstractComplexElement::removeChild(XMLObject* child) +{ + m_children.erase(remove(m_children.begin(), m_children.end(), child), m_children.end()); +} + +const XMLCh* AbstractComplexElement::getTextContent(unsigned int position) const +{ + return (m_text.size() > position) ? m_text[position] : nullptr; +} + +void AbstractComplexElement::setTextContent(const XMLCh* value, unsigned int position) +{ + if (position > m_children.size()) + throw XMLObjectException("Can't set text content relative to non-existent child position."); + vector::size_type size = m_text.size(); + while (position >= size) { + m_text.push_back(nullptr); + ++size; + } + m_text[position]=prepareForAssignment(m_text[position],value); }