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

词法分析

开发平台:

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: DOMNamedNodeMapImpl.cpp,v 1.9 2002/11/04 15:07:34 tng Exp $
  58.  */
  59. #include <xercesc/dom/DOMAttr.hpp>
  60. #include <xercesc/dom/DOMException.hpp>
  61. #include <xercesc/framework/XMLBuffer.hpp>
  62. #include <xercesc/util/XMLUniDefs.hpp>
  63. #include "DOMNodeVector.hpp"
  64. #include "DOMNamedNodeMapImpl.hpp"
  65. #include "DOMCasts.hpp"
  66. #include "DOMDocumentImpl.hpp"
  67. #include "DOMNodeImpl.hpp"
  68. XERCES_CPP_NAMESPACE_BEGIN
  69. DOMNamedNodeMapImpl::DOMNamedNodeMapImpl(DOMNode *ownerNod)
  70. {
  71.     this->fOwnerNode=ownerNod;
  72.     this->fNodes = 0;
  73. };
  74. DOMNamedNodeMapImpl::~DOMNamedNodeMapImpl()
  75. {
  76. };
  77. bool DOMNamedNodeMapImpl::readOnly() {
  78.     return castToNodeImpl(fOwnerNode)->isReadOnly();
  79. }
  80. DOMNamedNodeMapImpl *DOMNamedNodeMapImpl::cloneMap(DOMNode *ownerNod)
  81. {
  82.     DOMDocumentImpl *doc = (DOMDocumentImpl *)(castToNodeImpl(ownerNod)->getOwnerDocument());
  83.     DOMNamedNodeMapImpl *newmap = new (doc) DOMNamedNodeMapImpl(ownerNod);
  84.     if (fNodes != 0)
  85.     {
  86.         newmap->fNodes = new (doc) DOMNodeVector(doc, fNodes->size());
  87.         for (XMLSize_t i = 0; i < fNodes->size(); ++i)
  88.         {
  89.             DOMNode *n = fNodes->elementAt(i)->cloneNode(true);
  90. castToNodeImpl(n)->isSpecified(castToNodeImpl(fNodes->elementAt(i))->isSpecified());
  91.             castToNodeImpl(n)->fOwnerNode = ownerNod;
  92.             castToNodeImpl(n)->isOwned(true);
  93.             newmap->fNodes->addElement(n);
  94.         }
  95.     }
  96.     return newmap;
  97. };
  98. //
  99. //  removeAll - This function removes all elements from a named node map.
  100. //              It is called from the destructors for Elements and DocumentTypes,
  101. //              to remove the contents when the owning Element or DocType goes
  102. //              away.  The empty NamedNodeMap may persist if the user code
  103. //              has a reference to it.
  104. //
  105. //              AH Revist - the empty map should be made read-only, since
  106. //              adding it was logically part of the [Element, DocumentType]
  107. //              that has been deleted, and adding anything new to it would
  108. //              be meaningless, and almost certainly an error.
  109. //
  110. void DOMNamedNodeMapImpl::removeAll()
  111. {
  112.     if (fNodes)
  113.     {
  114.         for (int i=fNodes->size()-1; i>=0; i--)
  115.         {
  116.             DOMNode *n = fNodes->elementAt(i);
  117.             castToNodeImpl(n)->fOwnerNode = fOwnerNode->getOwnerDocument();
  118.             castToNodeImpl(n)->isOwned(false);
  119.         }
  120.         // We have no way to delete fNodes.  Leave it around; we can re-use
  121.         //  it if the owner node ever adds new attributes (or whatevers)
  122.     }
  123. }
  124. int DOMNamedNodeMapImpl::findNamePoint(const XMLCh *name) const
  125. {
  126.     // Binary search
  127.     int i=0;
  128.     if(fNodes!=0)
  129.     {
  130.         int first=0,last=fNodes->size()-1;
  131.         while(first<=last)
  132.         {
  133.             i=(first+last)/2;
  134.             int test = XMLString::compareString(name, fNodes->elementAt(i)->getNodeName());
  135.             if(test==0)
  136.                 return i; // Name found
  137.             else if(test<0)
  138.                 last=i-1;
  139.             else
  140.                 first=i+1;
  141.         }
  142.         if(first>i) i=first;
  143.     }
  144.     /********************
  145.     // Linear search
  146.     int i = 0;
  147.     if (fNodes != 0)
  148.     for (i = 0; i < fNodes.size(); ++i)
  149.     {
  150.     int test = name.compareTo(((NodeImpl *) (fNodes.elementAt(i))).getNodeName());
  151.     if (test == 0)
  152.     return i;
  153.     else
  154.     if (test < 0)
  155.     {
  156.     break; // Found insertpoint
  157.     }
  158.     }
  159.     *******************/
  160.     return -1 - i; // not-found has to be encoded.
  161. };
  162. XMLSize_t DOMNamedNodeMapImpl::getLength() const
  163. {
  164.     return (fNodes != 0) ? fNodes->size() : 0;
  165. };
  166. DOMNode * DOMNamedNodeMapImpl::getNamedItem(const XMLCh *name) const
  167. {
  168.     int i=findNamePoint(name);
  169.     return (i<0) ? 0 : fNodes->elementAt(i);
  170. };
  171. DOMNode * DOMNamedNodeMapImpl::item(XMLSize_t index) const
  172. {
  173.     return (fNodes != 0 && index < fNodes->size()) ?
  174.         fNodes->elementAt(index) : 0;
  175. };
  176. //
  177. // removeNamedItem() - Remove the named item, and return it.
  178. //                      The caller can release the
  179. //                      returned item if it's not used
  180. //                      we can't do it here because the caller would
  181. //                      never see the returned node.
  182. //
  183. DOMNode * DOMNamedNodeMapImpl::removeNamedItem(const XMLCh *name)
  184. {
  185.     if (this->readOnly())
  186.         throw DOMException(
  187.             DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  188.     int i=findNamePoint(name);
  189.     DOMNode *n = 0;
  190.     if(i<0)
  191.         throw DOMException(DOMException::NOT_FOUND_ERR, 0);
  192.     n = fNodes->elementAt(i);
  193.     fNodes->removeElementAt(i);
  194.     castToNodeImpl(n)->fOwnerNode = fOwnerNode->getOwnerDocument();
  195.     castToNodeImpl(n)->isOwned(false);
  196.     return n;
  197. };
  198. //
  199. // setNamedItem()  Put the item into the NamedNodeList by name.
  200. //                  If an item with the same name already was
  201. //                  in the list, replace it.  Return the old
  202. //                  item, if there was one.
  203. //                  Caller is responsible for arranging for
  204. //                  deletion of the old item if its ref count is
  205. //                  zero.
  206. //
  207. DOMNode * DOMNamedNodeMapImpl::setNamedItem(DOMNode * arg)
  208. {
  209.     DOMDocument *doc = fOwnerNode->getOwnerDocument();
  210.     DOMNodeImpl *argImpl = castToNodeImpl(arg);
  211.     if(argImpl->getOwnerDocument() != doc)
  212.         throw DOMException(DOMException::WRONG_DOCUMENT_ERR,0);
  213.     if (this->readOnly())
  214.         throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  215.     if ((arg->getNodeType() == DOMNode::ATTRIBUTE_NODE) && argImpl->isOwned() && (argImpl->fOwnerNode != fOwnerNode))
  216.         throw DOMException(DOMException::INUSE_ATTRIBUTE_ERR,0);
  217.     argImpl->fOwnerNode = fOwnerNode;
  218.     argImpl->isOwned(true);
  219.     int i=findNamePoint(arg->getNodeName());
  220.     DOMNode * previous=0;
  221.     if(i>=0)
  222.     {
  223.         previous = fNodes->elementAt(i);
  224.         fNodes->setElementAt(arg,i);
  225.     }
  226.     else
  227.     {
  228.         i=-1-i; // Insert point (may be end of list)
  229.         if(0==fNodes)
  230.         {
  231.             fNodes=new (doc) DOMNodeVector(doc);
  232.         }
  233.         fNodes->insertElementAt(arg,i);
  234.     }
  235.     if (previous != 0) {
  236.         castToNodeImpl(previous)->fOwnerNode = fOwnerNode->getOwnerDocument();
  237.         castToNodeImpl(previous)->isOwned(false);
  238.     }
  239.     return previous;
  240. };
  241. void DOMNamedNodeMapImpl::setReadOnly(bool readOnl, bool deep)
  242. {
  243.     // this->fReadOnly=readOnl;
  244.     if(deep && fNodes!=0)
  245.     {
  246.         int sz = fNodes->size();
  247.         for (int i=0; i<sz; ++i) {
  248.             castToNodeImpl(fNodes->elementAt(i))->setReadOnly(readOnl, deep);
  249.         }
  250.     }
  251. };
  252. //Introduced in DOM Level 2
  253. int DOMNamedNodeMapImpl::findNamePoint(const XMLCh *namespaceURI,
  254. const XMLCh *localName) const
  255. {
  256.     if (fNodes == 0)
  257. return -1;
  258.     // This is a linear search through the same fNodes Vector.
  259.     // The Vector is sorted on the DOM Level 1 nodename.
  260.     // The DOM Level 2 NS keys are namespaceURI and Localname,
  261.     // so we must linear search thru it.
  262.     // In addition, to get this to work with fNodes without any namespace
  263.     // (namespaceURI and localNames are both 0) we then use the nodeName
  264.     // as a secondary key.
  265.     int i, len = fNodes -> size();
  266.     for (i = 0; i < len; ++i) {
  267.         DOMNode *node = fNodes -> elementAt(i);
  268.         const XMLCh * nNamespaceURI = node->getNamespaceURI();
  269.         const XMLCh * nLocalName = node->getLocalName();
  270.         if (!XMLString::equals(nNamespaceURI, namespaceURI))    //URI not match
  271.             continue;
  272.         else {
  273.             if (XMLString::equals(localName, nLocalName)
  274.                 ||
  275.                 (nLocalName == 0 && XMLString::equals(localName, node->getNodeName())))
  276.                 return i;
  277.         }
  278.     }
  279.     return -1; //not found
  280. }
  281. DOMNode *DOMNamedNodeMapImpl::getNamedItemNS(const XMLCh *namespaceURI,
  282. const XMLCh *localName) const
  283. {
  284.     int i = findNamePoint(namespaceURI, localName);
  285.     return i < 0 ? 0 : fNodes -> elementAt(i);
  286. }
  287. //
  288. // setNamedItemNS()  Put the item into the NamedNodeList by name.
  289. //                  If an item with the same name already was
  290. //                  in the list, replace it.  Return the old
  291. //                  item, if there was one.
  292. //                  Caller is responsible for arranging for
  293. //                  deletion of the old item if its ref count is
  294. //                  zero.
  295. //
  296. DOMNode * DOMNamedNodeMapImpl::setNamedItemNS(DOMNode *arg)
  297. {
  298.     DOMDocument *doc = fOwnerNode->getOwnerDocument();
  299.     DOMNodeImpl *argImpl = castToNodeImpl(arg);
  300.     if (argImpl->getOwnerDocument() != doc)
  301.         throw DOMException(DOMException::WRONG_DOCUMENT_ERR,0);
  302.     if (this->readOnly())
  303.         throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  304.     if (argImpl->isOwned())
  305.         throw DOMException(DOMException::INUSE_ATTRIBUTE_ERR,0);
  306.     argImpl->fOwnerNode = fOwnerNode;
  307.     argImpl->isOwned(true);
  308.     int i=findNamePoint(arg->getNamespaceURI(), arg->getLocalName());
  309.     DOMNode *previous=0;
  310.     if(i>=0) {
  311.         previous = fNodes->elementAt(i);
  312.         fNodes->setElementAt(arg,i);
  313.     } else {
  314.         i=findNamePoint(arg->getNodeName()); // Insert point (may be end of list)
  315.         if (i<0)
  316.           i = -1 - i;
  317.         if(0==fNodes)
  318.             fNodes=new (doc) DOMNodeVector(doc);
  319.         fNodes->insertElementAt(arg,i);
  320.     }
  321.     if (previous != 0) {
  322.         castToNodeImpl(previous)->fOwnerNode = fOwnerNode->getOwnerDocument();
  323.         castToNodeImpl(previous)->isOwned(false);
  324.     }
  325.     return previous;
  326. };
  327. // removeNamedItemNS() - Remove the named item, and return it.
  328. //                      The caller can release the
  329. //                      returned item if it's not used
  330. //                      we can't do it here because the caller would
  331. //                      never see the returned node.
  332. DOMNode *DOMNamedNodeMapImpl::removeNamedItemNS(const XMLCh *namespaceURI,
  333.                                                  const XMLCh *localName)
  334. {
  335.     if (this->readOnly())
  336.         throw DOMException(
  337.         DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  338.     int i = findNamePoint(namespaceURI, localName);
  339.     if (i < 0)
  340.         throw DOMException(DOMException::NOT_FOUND_ERR, 0);
  341.     DOMNode * n = fNodes -> elementAt(i);
  342.     fNodes -> removeElementAt(i); //remove n from nodes
  343.     castToNodeImpl(n)->fOwnerNode = fOwnerNode->getOwnerDocument();
  344.     castToNodeImpl(n)->isOwned(false);
  345.     return n;
  346. }
  347. void DOMNamedNodeMapImpl::cloneContent(const DOMNamedNodeMapImpl *srcmap)
  348. {
  349.     if ((srcmap != 0) && (srcmap->fNodes != 0))
  350.     {
  351.         if (fNodes != 0)
  352.             fNodes->reset();
  353.         else
  354.         {
  355.             XMLSize_t size = srcmap->fNodes->size();
  356.             if(size > 0) {
  357.                 DOMDocument *doc = fOwnerNode->getOwnerDocument();
  358.                 fNodes = new (doc) DOMNodeVector(doc, size);
  359.             }
  360.         }
  361.         for (XMLSize_t i = 0; i < srcmap->fNodes->size(); i++)
  362.         {
  363.             DOMNode *n = srcmap->fNodes->elementAt(i);
  364.             DOMNode *clone = n->cloneNode(true);
  365.             castToNodeImpl(clone)->isSpecified(castToNodeImpl(n)->isSpecified());
  366.             castToNodeImpl(clone)->fOwnerNode = fOwnerNode;
  367.             castToNodeImpl(clone)->isOwned(true);
  368.             fNodes->addElement(clone);
  369.         }
  370.     }
  371. }
  372. // remove the name using index
  373. // avoid calling findNamePoint again if the index is already known
  374. DOMNode * DOMNamedNodeMapImpl::removeNamedItemAt(XMLSize_t index)
  375. {
  376.     if (this->readOnly())
  377.         throw DOMException(
  378.             DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  379.     DOMNode *n = item(index);
  380.     if(!n)
  381.         throw DOMException(DOMException::NOT_FOUND_ERR, 0);
  382.     fNodes->removeElementAt(index);
  383.     castToNodeImpl(n)->fOwnerNode = fOwnerNode->getOwnerDocument();
  384.     castToNodeImpl(n)->isOwned(false);
  385.     return n;
  386. };
  387. XERCES_CPP_NAMESPACE_END