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

词法分析

开发平台:

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: DOMParentNode.cpp,v 1.13 2003/05/12 10:23:38 gareth Exp $
  58.  */
  59. #include <xercesc/util/XercesDefs.hpp>
  60. #include <xercesc/dom/DOMException.hpp>
  61. #include <xercesc/dom/DOMNode.hpp>
  62. #include "DOMDocumentImpl.hpp"
  63. #include "DOMNodeListImpl.hpp"
  64. #include "DOMRangeImpl.hpp"
  65. #include "DOMNodeIteratorImpl.hpp"
  66. #include "DOMParentNode.hpp"
  67. #include "DOMCasts.hpp"
  68. XERCES_CPP_NAMESPACE_BEGIN
  69. DOMParentNode::DOMParentNode(DOMDocument *ownerDoc)
  70.     : fOwnerDocument(ownerDoc), fChildNodeList(castToNode(this))
  71. {
  72.     fFirstChild = 0;
  73. };
  74. // This only makes a shallow copy, cloneChildren must also be called for a
  75. // deep clone
  76. DOMParentNode::DOMParentNode(const DOMParentNode &other)  :
  77.     fChildNodeList(castToNode(this))
  78. {
  79.     this->fOwnerDocument = other.fOwnerDocument;
  80.     // Need to break the association w/ original kids
  81.     this->fFirstChild = 0;
  82. };
  83. void DOMParentNode::changed()
  84. {
  85.     DOMDocumentImpl *doc = (DOMDocumentImpl *)this->getOwnerDocument();
  86.     doc->changed();
  87. }
  88. int DOMParentNode::changes() const
  89. {
  90.     DOMDocumentImpl *doc = (DOMDocumentImpl *)this->getOwnerDocument();
  91.     return doc->changes();
  92. };
  93. DOMNode * DOMParentNode::appendChild(DOMNode *newChild)
  94. {
  95.     return insertBefore(newChild, 0);
  96. };
  97. void DOMParentNode::cloneChildren(const DOMNode *other) {
  98.   //    for (DOMNode *mykid = other.getFirstChild();
  99.     for (DOMNode *mykid = other->getFirstChild();
  100.          mykid != 0;
  101.          mykid = mykid->getNextSibling())
  102.     {
  103.         appendChild(mykid->cloneNode(true));
  104.     }
  105. }
  106. DOMDocument * DOMParentNode::getOwnerDocument() const {
  107.     return fOwnerDocument;
  108. }
  109. // unlike getOwnerDocument this is not overriden by DocumentImpl to return 0
  110. DOMDocument * DOMParentNode::getDocument() const {
  111.     return fOwnerDocument;
  112. }
  113. void DOMParentNode::setOwnerDocument(DOMDocument* doc) {
  114.     fOwnerDocument = doc;
  115. }
  116. DOMNodeList *DOMParentNode::getChildNodes() const {
  117.     const DOMNodeList *ret = &fChildNodeList;
  118.     return (DOMNodeList *)ret;   // cast off const.
  119. };
  120. DOMNode * DOMParentNode::getFirstChild() const {
  121.     return fFirstChild;
  122. };
  123. DOMNode * DOMParentNode::getLastChild() const
  124. {
  125.     return lastChild();
  126. };
  127. DOMNode * DOMParentNode::lastChild() const
  128. {
  129.     // last child is stored as the previous sibling of first child
  130.     if (fFirstChild == 0) {
  131.         return 0;
  132.     }
  133.     DOMChildNode *firstChild = castToChildImpl(fFirstChild);
  134.     DOMNode *ret = firstChild->previousSibling;
  135.     return ret;
  136. };
  137. //
  138. //  revisit.  Is this function used anywhere?  I don't see it.
  139. //
  140. void DOMParentNode::lastChild(DOMNode *node) {
  141.     // store lastChild as previous sibling of first child
  142.     if (fFirstChild != 0) {
  143.         DOMChildNode *firstChild = castToChildImpl(fFirstChild);
  144.         firstChild->previousSibling = node;
  145.     }
  146. }
  147. bool DOMParentNode::hasChildNodes() const
  148. {
  149.     return fFirstChild!=0;
  150. };
  151. DOMNode *DOMParentNode::insertBefore(DOMNode *newChild, DOMNode *refChild) {
  152.     DOMNodeImpl *thisNodeImpl = castToNodeImpl(this);
  153.     if (thisNodeImpl->isReadOnly())
  154.         throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  155.     if (newChild->getOwnerDocument() != fOwnerDocument)
  156.         throw DOMException(DOMException::WRONG_DOCUMENT_ERR, 0);
  157.     // Prevent cycles in the tree
  158.     //only need to do this if the node has children
  159.     if(newChild->hasChildNodes()) {
  160.         bool treeSafe=true;
  161.         for(DOMNode *a=castToNode(this)->getParentNode();
  162.             treeSafe && a!=0;
  163.             a=a->getParentNode())
  164.             treeSafe=(newChild!=a);
  165.         if(!treeSafe)
  166.             throw DOMException(DOMException::HIERARCHY_REQUEST_ERR,0);
  167.     }
  168.     // refChild must in fact be a child of this node (or 0)
  169.     if (refChild!=0 && refChild->getParentNode() != castToNode(this))
  170.         throw DOMException(DOMException::NOT_FOUND_ERR,0);
  171.     if (newChild->getNodeType() == DOMNode::DOCUMENT_FRAGMENT_NODE)
  172.     {
  173.         // SLOW BUT SAFE: We could insert the whole subtree without
  174.         // juggling so many next/previous pointers. (Wipe out the
  175.         // parent's child-list, patch the parent pointers, set the
  176.         // ends of the list.) But we know some subclasses have special-
  177.         // case behavior they add to insertBefore(), so we don't risk it.
  178.         // This approch also takes fewer bytecodes.
  179.         // NOTE: If one of the children is not a legal child of this
  180.         // node, throw HIERARCHY_REQUEST_ERR before _any_ of the children
  181.         // have been transferred. (Alternative behaviors would be to
  182.         // reparent up to the first failure point or reparent all those
  183.         // which are acceptable to the target node, neither of which is
  184.         // as robust. PR-DOM-0818 isn't entirely clear on which it
  185.         // recommends?????
  186.         // No need to check kids for right-document; if they weren't,
  187.         // they wouldn't be kids of that DocFrag.
  188.         for(DOMNode *kid=newChild->getFirstChild(); // Prescan
  189.               kid!=0;
  190.               kid=kid->getNextSibling())
  191.         {
  192.             if (!DOMDocumentImpl::isKidOK(castToNode(this), kid))
  193.               throw DOMException(DOMException::HIERARCHY_REQUEST_ERR,0);
  194.         }
  195.         while(newChild->hasChildNodes())     // Move
  196.             insertBefore(newChild->getFirstChild(),refChild);
  197.     }
  198.     else if (!DOMDocumentImpl::isKidOK(castToNode(this), newChild))
  199.         throw DOMException(DOMException::HIERARCHY_REQUEST_ERR,0);
  200.     else
  201.     {
  202.         DOMNode *oldparent=newChild->getParentNode();
  203.         if(oldparent!=0)
  204.             oldparent->removeChild(newChild);
  205.         // Attach up
  206.         castToNodeImpl(newChild)->fOwnerNode = castToNode(this);
  207.         castToNodeImpl(newChild)->isOwned(true);
  208.         // Attach before and after
  209.         // Note: fFirstChild.previousSibling == lastChild!!
  210.         if (fFirstChild == 0) {
  211.             // this our first and only child
  212.             fFirstChild = newChild;
  213.             castToNodeImpl(newChild)->isFirstChild(true);
  214.             // castToChildImpl(newChild)->previousSibling = newChild;
  215.             DOMChildNode *newChild_ci = castToChildImpl(newChild);
  216.             newChild_ci->previousSibling = newChild;
  217.         } else {
  218.             if (refChild == 0) {
  219.                 // this is an append
  220.                 DOMNode *lastChild = castToChildImpl(fFirstChild)->previousSibling;
  221.                 castToChildImpl(lastChild)->nextSibling = newChild;
  222.                 castToChildImpl(newChild)->previousSibling = lastChild;
  223.                 castToChildImpl(fFirstChild)->previousSibling = newChild;
  224.             } else {
  225.                 // this is an insert
  226.                 if (refChild == fFirstChild) {
  227.                     // at the head of the list
  228.                     castToNodeImpl(fFirstChild)->isFirstChild(false);
  229.                     castToChildImpl(newChild)->nextSibling = fFirstChild;
  230.                     castToChildImpl(newChild)->previousSibling = castToChildImpl(fFirstChild)->previousSibling;
  231.                     castToChildImpl(fFirstChild)->previousSibling = newChild;
  232.                     fFirstChild = newChild;
  233.                     castToNodeImpl(newChild)->isFirstChild(true);
  234.                 } else {
  235.                     // somewhere in the middle
  236.                     DOMNode *prev = castToChildImpl(refChild)->previousSibling;
  237.                     castToChildImpl(newChild)->nextSibling = refChild;
  238.                     castToChildImpl(prev)->nextSibling = newChild;
  239.                     castToChildImpl(refChild)->previousSibling = newChild;
  240.                     castToChildImpl(newChild)->previousSibling = prev;
  241.                 }
  242.             }
  243.         }
  244.     }
  245.     changed();
  246.     if (this->getOwnerDocument() != 0) {
  247.         Ranges* ranges = ((DOMDocumentImpl *)this->getOwnerDocument())->getRanges();
  248.         if ( ranges != 0) {
  249.             XMLSize_t sz = ranges->size();
  250.             if (sz != 0) {
  251.                 for (XMLSize_t i =0; i<sz; i++) {
  252.                     ranges->elementAt(i)->updateRangeForInsertedNode(newChild);
  253.                 }
  254.             }
  255.         }
  256.     }
  257.     return newChild;
  258. };
  259. DOMNode *DOMParentNode::removeChild(DOMNode *oldChild)
  260. {
  261.     if (castToNodeImpl(this)->isReadOnly())
  262.         throw DOMException(
  263.         DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  264.     if (oldChild == 0 || oldChild->getParentNode() != castToNode(this))
  265.         throw DOMException(DOMException::NOT_FOUND_ERR, 0);
  266.     if (this->getOwnerDocument() !=  0  ) {
  267.         //notify iterators
  268.         NodeIterators* nodeIterators = ((DOMDocumentImpl *)this->getOwnerDocument())->getNodeIterators();
  269.         if (nodeIterators != 0) {
  270.             XMLSize_t sz = nodeIterators->size();
  271.             if (sz != 0) {
  272.                 for (XMLSize_t i =0; i<sz; i++) {
  273.                     if (nodeIterators->elementAt(i) != 0)
  274.                         nodeIterators->elementAt(i)->removeNode(oldChild);
  275.                 }
  276.             }
  277.         }
  278.         //fix other ranges for change before deleting the node
  279.         Ranges* ranges = ((DOMDocumentImpl *)this->getOwnerDocument())->getRanges();
  280.         if (ranges != 0) {
  281.             XMLSize_t sz = ranges->size();
  282.             if (sz != 0) {
  283.                 for (XMLSize_t i =0; i<sz; i++) {
  284.                     if (ranges->elementAt(i) != 0)
  285.                         ranges->elementAt(i)->updateRangeForDeletedNode(oldChild);
  286.                 }
  287.             }
  288.         }
  289.     }
  290.     // Patch linked list around oldChild
  291.     // Note: lastChild == fFirstChild->previousSibling
  292.     if (oldChild == fFirstChild) {
  293.         // removing first child
  294.         castToNodeImpl(oldChild)->isFirstChild(false);
  295.         fFirstChild = castToChildImpl(oldChild)->nextSibling;
  296.         if (fFirstChild != 0) {
  297.             castToNodeImpl(fFirstChild)->isFirstChild(true);
  298.             castToChildImpl(fFirstChild)->previousSibling = castToChildImpl(oldChild)->previousSibling;
  299.         }
  300.     } else {
  301.         DOMNode *prev = castToChildImpl(oldChild)->previousSibling;
  302.         DOMNode *next = castToChildImpl(oldChild)->nextSibling;
  303.         castToChildImpl(prev)->nextSibling = next;
  304.         if (next == 0) {
  305.             // removing last child
  306.             castToChildImpl(fFirstChild)->previousSibling = prev;
  307.         } else {
  308.             // removing some other child in the middle
  309.             castToChildImpl(next)->previousSibling = prev;
  310.         }
  311.     }
  312.     // Remove oldChild's references to tree
  313.     castToNodeImpl(oldChild)->fOwnerNode = fOwnerDocument;
  314.     castToNodeImpl(oldChild)->isOwned(false);
  315.     castToChildImpl(oldChild)->nextSibling = 0;
  316.     castToChildImpl(oldChild)->previousSibling = 0;
  317.     changed();
  318.     return oldChild;
  319. };
  320. DOMNode *DOMParentNode::replaceChild(DOMNode *newChild, DOMNode *oldChild)
  321. {
  322.     insertBefore(newChild, oldChild);
  323.     // changed() already done.
  324.     return removeChild(oldChild);
  325. };
  326. //Introduced in DOM Level 2
  327. void DOMParentNode::normalize()
  328. {
  329.     DOMNode *kid, *next;
  330.     for (kid = fFirstChild; kid != 0; kid = next)
  331.     {
  332.         next = castToChildImpl(kid)->nextSibling;
  333.         // If kid and next are both Text nodes (but _not_ CDATASection,
  334.         // which is a subclass of Text), they can be merged.
  335.         if (next != 0 &&
  336.             kid->getNodeType() == DOMNode::TEXT_NODE   &&
  337.             next->getNodeType() == DOMNode::TEXT_NODE )
  338.         {
  339.             ((DOMTextImpl *) kid)->appendData(((DOMTextImpl *) next)->getData());
  340.             // revisit:
  341.             //   should I release the removed node?
  342.             //   not released in case user still referencing it externally
  343.             removeChild(next);
  344.             next = kid; // Don't advance; there might be another.
  345.         }
  346.         // Otherwise it might be an Element, which is handled recursively
  347.         else
  348.             if (kid->getNodeType() == DOMNode::ELEMENT_NODE)
  349.                 kid->normalize();
  350.     };
  351.     // changed() will have occurred when the removeChild() was done,
  352.     // so does not have to be reissued.
  353. };
  354. //Introduced in DOM Level 3
  355. bool DOMParentNode::isEqualNode(const DOMNode* arg) const
  356. {
  357.     if (arg && castToNodeImpl(this)->isSameNode(arg))
  358.         return true;
  359.     if (arg && castToNodeImpl(this)->isEqualNode(arg))
  360.     {
  361.         DOMNode *kid, *argKid;
  362.         for (kid = fFirstChild, argKid = arg->getFirstChild();
  363.              kid != 0 && argKid != 0;
  364.              kid = kid->getNextSibling(), argKid = argKid->getNextSibling())
  365.         {
  366.             if (!kid->isEqualNode(argKid))
  367.                 return false;
  368.         }
  369.         return (kid || argKid) ? false : true;
  370.     }
  371.     return false;
  372. }
  373. //Non-standard extension
  374. void DOMParentNode::release()
  375. {
  376.     DOMNode *kid, *next;
  377.     for (kid = fFirstChild; kid != 0; kid = next)
  378.     {
  379.         next = castToChildImpl(kid)->nextSibling;
  380.         // set is Owned false before releasing its child
  381.         castToNodeImpl(kid)->isToBeReleased(true);
  382.         kid->release();
  383.     }
  384. }
  385. XERCES_CPP_NAMESPACE_END