DOMAttrMapImpl.cpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:8k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 2001, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Id: DOMAttrMapImpl.cpp,v 1.5 2002/11/04 15:07:34 tng Exp $
  58.  */
  59. #include "DOMAttrMapImpl.hpp"
  60. #include "DOMAttrImpl.hpp"
  61. #include "DOMNamedNodeMapImpl.hpp"
  62. #include "DOMNodeImpl.hpp"
  63. #include "DOMElementImpl.hpp"
  64. #include <xercesc/dom/DOMAttr.hpp>
  65. #include "DOMCasts.hpp"
  66. #include "DOMDocumentImpl.hpp"
  67. #include <xercesc/dom/DOMException.hpp>
  68. XERCES_CPP_NAMESPACE_BEGIN
  69. DOMAttrMapImpl::DOMAttrMapImpl(DOMNode *ownerNod)
  70. : DOMNamedNodeMapImpl(ownerNod)
  71. {
  72. hasDefaults(false);
  73. }
  74. DOMAttrMapImpl::DOMAttrMapImpl(DOMNode *ownerNod, const DOMNamedNodeMapImpl *defaults)
  75. : DOMNamedNodeMapImpl(ownerNod)
  76. {
  77. hasDefaults(false);
  78. if (defaults != 0)
  79. {
  80. if (defaults->getLength() > 0)
  81. {
  82. hasDefaults(true);
  83. cloneContent(defaults);
  84. }
  85. }
  86. }
  87. DOMAttrMapImpl::~DOMAttrMapImpl()
  88. {
  89. }
  90. DOMAttrMapImpl *DOMAttrMapImpl::cloneAttrMap(DOMNode *ownerNode_p)
  91. {
  92. DOMAttrMapImpl *newmap = new (castToNodeImpl(ownerNode_p)->getOwnerDocument()) DOMAttrMapImpl(ownerNode_p);
  93. newmap->cloneContent(this);
  94. // newmap->attrDefaults = this->attrDefaults;  // revisit
  95. return newmap;
  96. }
  97. DOMNode *DOMAttrMapImpl::setNamedItem(DOMNode *arg)
  98. {
  99.     if (arg->getNodeType() != DOMNode::ATTRIBUTE_NODE)
  100.         throw DOMException(DOMException::HIERARCHY_REQUEST_ERR, 0);
  101.     return DOMNamedNodeMapImpl::setNamedItem(arg);
  102. }
  103. DOMNode *DOMAttrMapImpl::setNamedItemNS(DOMNode* arg)
  104. {
  105.     if (arg->getNodeType() != DOMNode::ATTRIBUTE_NODE)
  106.         throw DOMException(DOMException::HIERARCHY_REQUEST_ERR, 0);
  107.     return DOMNamedNodeMapImpl::setNamedItemNS(arg);
  108. }
  109. DOMNode *DOMAttrMapImpl::removeNamedItem(const XMLCh *name)
  110. {
  111.     DOMNode* removed = DOMNamedNodeMapImpl::removeNamedItem(name);
  112.     // Replace it if it had a default value
  113.     // (DOM spec level 1 - Element Interface)
  114.     if (hasDefaults() && (removed != 0))
  115.     {
  116.         DOMAttrMapImpl* defAttrs = ((DOMElementImpl*)fOwnerNode)->getDefaultAttributes();
  117.         DOMAttr* attr = (DOMAttr*)(defAttrs->getNamedItem(name));
  118.         if (attr != 0)
  119.         {
  120.             DOMAttr* newAttr = (DOMAttr*)attr->cloneNode(true);
  121.             setNamedItem(newAttr);
  122.         }
  123.     }
  124.     return removed;
  125. }
  126. DOMNode *DOMAttrMapImpl::removeNamedItemNS(const XMLCh *namespaceURI, const XMLCh *localName)
  127. {
  128.     DOMNode* removed = DOMNamedNodeMapImpl::removeNamedItemNS(namespaceURI, localName);
  129.     // Replace it if it had a default value
  130.     // (DOM spec level 2 - Element Interface)
  131.     if (hasDefaults() && (removed != 0))
  132.     {
  133.         DOMAttrMapImpl* defAttrs = ((DOMElementImpl*)fOwnerNode)->getDefaultAttributes();
  134.         DOMAttr* attr = (DOMAttr*)(defAttrs->getNamedItemNS(namespaceURI, localName));
  135.         if (attr != 0)
  136.         {
  137.             DOMAttr* newAttr = (DOMAttr*)attr->cloneNode(true);
  138.             setNamedItemNS(newAttr);
  139.         }
  140.     }
  141.     return removed;
  142. }
  143. // remove the name using index
  144. // avoid calling findNamePoint again if the index is already known
  145. DOMNode * DOMAttrMapImpl::removeNamedItemAt(XMLSize_t index)
  146. {
  147.     DOMNode* removed = DOMNamedNodeMapImpl::removeNamedItemAt(index);
  148.     // Replace it if it had a default value
  149.     // (DOM spec level 1 - Element Interface)
  150.     if (hasDefaults() && (removed != 0))
  151.     {
  152.         DOMAttrMapImpl* defAttrs = ((DOMElementImpl*)fOwnerNode)->getDefaultAttributes();
  153.         const XMLCh* localName = removed->getLocalName();
  154.         DOMAttr* attr = 0;
  155.         if (localName)
  156.             attr = (DOMAttr*)(defAttrs->getNamedItemNS(removed->getNamespaceURI(), localName));
  157.         else
  158.             attr = (DOMAttr*)(defAttrs->getNamedItem(((DOMAttr*)removed)->getName()));
  159.         if (attr != 0)
  160.         {
  161.             DOMAttr* newAttr = (DOMAttr*)attr->cloneNode(true);
  162.             setNamedItem(newAttr);
  163.         }
  164.     }
  165.     return removed;
  166. }
  167. /**
  168.  * Get this AttributeMap in sync with the given "defaults" map.
  169.  * @param defaults The default attributes map to sync with.
  170.  */
  171. void DOMAttrMapImpl::reconcileDefaultAttributes(const DOMAttrMapImpl* defaults) {
  172.     // remove any existing default
  173.     XMLSize_t nsize = getLength();
  174.     for (XMLSSize_t i = nsize - 1; i >= 0; i--) {
  175.         DOMAttr* attr = (DOMAttr*)item(i);
  176.         if (!attr->getSpecified()) {
  177.             removeNamedItemAt(i);
  178.         }
  179.     }
  180.     hasDefaults(false);
  181.     // add the new defaults
  182.     if (defaults) {
  183.         hasDefaults(true);
  184.         if (nsize == 0) {
  185.             cloneContent(defaults);
  186.         }
  187.         else {
  188.             XMLSize_t dsize = defaults->getLength();
  189.             for (XMLSize_t n = 0; n < dsize; n++) {
  190.                 DOMAttr* attr = (DOMAttr*)defaults->item(n);
  191.                 DOMAttr* newAttr = (DOMAttr*)attr->cloneNode(true);
  192.                 setNamedItemNS(newAttr);
  193.                 DOMAttrImpl* newAttrImpl = (DOMAttrImpl*) newAttr;
  194.                 newAttrImpl->setSpecified(false);
  195.             }
  196.         }
  197.     }
  198. } // reconcileDefaults()
  199. /**
  200.  * Move specified attributes from the given map to this one
  201.  */
  202. void DOMAttrMapImpl::moveSpecifiedAttributes(DOMAttrMapImpl* srcmap) {
  203.     XMLSize_t nsize = srcmap->getLength();
  204.     for (XMLSSize_t i = nsize - 1; i >= 0; i--) {
  205.         DOMAttr* attr = (DOMAttr*)srcmap->item(i);
  206.         if (attr->getSpecified()) {
  207.             srcmap->removeNamedItemAt(i);
  208.         }
  209.         if (attr->getLocalName())
  210.             setNamedItemNS(attr);
  211.         else
  212.             setNamedItem(attr);
  213.     }
  214. } // moveSpecifiedAttributes(AttributeMap):void
  215. XERCES_CPP_NAMESPACE_END