X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-xmltooling.git;a=blobdiff_plain;f=xmltooling%2FAbstractComplexElement.cpp;h=a8e68ef7512266a8004099305a49bbb08bb4ff44;hp=ea08e19b0932edaff2fb86337c096cb701ca2261;hb=HEAD;hpb=bd026f07e729e66127b3efd48aee443fba815af3 diff --git a/xmltooling/AbstractComplexElement.cpp b/xmltooling/AbstractComplexElement.cpp index ea08e19..a8e68ef 100644 --- a/xmltooling/AbstractComplexElement.cpp +++ b/xmltooling/AbstractComplexElement.cpp @@ -1,17 +1,21 @@ -/* -* Copyright 2001-2009 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. * - * http://www.apache.org/licenses/LICENSE-2.0 + * 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 * - * 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. + * 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. */ /** @@ -24,17 +28,15 @@ #include "AbstractComplexElement.h" #include +#include +#include using namespace xmltooling; +using namespace xercesc; +using namespace boost::lambda; +using namespace boost; using namespace std; -using xercesc::XMLString; - -namespace { - bool _nonnull(const XMLObject* ptr) { - return (ptr!=NULL); - } -} AbstractComplexElement::AbstractComplexElement() { @@ -42,21 +44,38 @@ 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)); + static void (vector::* push_back)(XMLCh* const&) = &vector::push_back; + static XMLCh* (*replicate)(const XMLCh*,MemoryManager*) = &XMLString::replicate; + + for_each( + src.m_text.begin(), src.m_text.end(), + lambda::bind(push_back, boost::ref(m_text), lambda::bind(replicate, _1, XMLPlatformUtils::fgMemoryManager)) + ); } AbstractComplexElement::~AbstractComplexElement() { +#ifdef XMLTOOLING_XERCESC_HAS_XMLBYTE_RELEASE + static void (*release)(XMLCh**) = &XMLString::release; +#else + static void (*release)(XMLCh**,MemoryManager*) = &XMLString::release; +#endif + for_each(m_children.begin(), m_children.end(), cleanup()); - for (vector::iterator i=m_text.begin(); i!=m_text.end(); ++i) - XMLString::release(&(*i)); + for_each(m_text.begin(), m_text.end(), + lambda::bind( + release, &_1 +#ifndef XMLTOOLING_XERCESC_HAS_XMLBYTE_RELEASE + ,XMLPlatformUtils::fgMemoryManager +#endif + ) + ); } bool AbstractComplexElement::hasChildren() const { if (m_children.empty()) return false; - return (find_if(m_children.begin(), m_children.end(), _nonnull) != m_children.end()); + return (find_if(m_children.begin(), m_children.end(), (_1 != ((XMLObject*)nullptr))) != m_children.end()); } const list& AbstractComplexElement::getOrderedChildren() const @@ -71,7 +90,7 @@ void AbstractComplexElement::removeChild(XMLObject* child) const XMLCh* AbstractComplexElement::getTextContent(unsigned int position) const { - return (m_text.size() > position) ? m_text[position] : NULL; + return (m_text.size() > position) ? m_text[position] : nullptr; } void AbstractComplexElement::setTextContent(const XMLCh* value, unsigned int position) @@ -80,8 +99,8 @@ void AbstractComplexElement::setTextContent(const XMLCh* value, unsigned int pos 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(NULL); + m_text.push_back(nullptr); ++size; } - m_text[position]=prepareForAssignment(m_text[position],value); + m_text[position] = prepareForAssignment(m_text[position], value); }