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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-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) 1999, 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: TreeWalkerImpl.cpp,v 1.3 2002/11/04 15:04:44 tng Exp $
  58.  */
  59. #include "TreeWalkerImpl.hpp"
  60. #include "DOM_Document.hpp"
  61. #include "DOM_DOMException.hpp"
  62. #include "DocumentImpl.hpp"
  63. XERCES_CPP_NAMESPACE_BEGIN
  64. /** constructor */
  65. TreeWalkerImpl::TreeWalkerImpl (
  66.                                 DOM_Node root,
  67.                                 unsigned long whatToShow,
  68.                                 DOM_NodeFilter* nodeFilter,
  69.                                 bool expandEntityRef)
  70. :   fCurrentNode(root),
  71.     fRoot(root),
  72.     fWhatToShow(whatToShow),
  73.     fNodeFilter(nodeFilter),
  74.     fExpandEntityReferences(expandEntityRef)
  75. {
  76. }
  77. TreeWalkerImpl::TreeWalkerImpl (const TreeWalkerImpl& twi)
  78. : fCurrentNode(twi.fCurrentNode),
  79.     fRoot(twi.fRoot),
  80.     fWhatToShow(twi.fWhatToShow),
  81.     fNodeFilter(twi.fNodeFilter),
  82.     fExpandEntityReferences(twi.fExpandEntityReferences)
  83. {
  84. }
  85. TreeWalkerImpl& TreeWalkerImpl::operator= (const TreeWalkerImpl& twi) {
  86.     if (this != &twi)
  87.     {
  88.         fCurrentNode            = twi.fCurrentNode;
  89.         fRoot                   = twi.fRoot;
  90.         fWhatToShow             = twi.fWhatToShow;
  91.         fNodeFilter             = twi.fNodeFilter;
  92. fExpandEntityReferences = twi.fExpandEntityReferences;
  93.     }
  94.     return *this;
  95. }
  96. void TreeWalkerImpl::unreferenced()
  97. {
  98.     DOM_Document doc = fRoot.getOwnerDocument();
  99.     DocumentImpl* impl;
  100.     if (! doc.isNull()) {
  101.         impl = (DocumentImpl *) doc.fImpl;
  102.     }
  103.     else
  104.         impl = (DocumentImpl *) fRoot.fImpl;
  105.     if (impl->treeWalkers != 0L) {
  106.         int i;
  107.         int sz = impl->treeWalkers->size();
  108.         for (i = 0; i < sz; i++)
  109.             if (impl->treeWalkers->elementAt(i) == this) {
  110.                 impl->treeWalkers->removeElementAt(i);
  111.                 break;
  112.             }
  113.     }
  114. //    delete this;
  115.     TreeWalkerImpl* ptr = this;
  116.     delete ptr;
  117. }
  118. /** Return the Root Node. */
  119. DOM_Node TreeWalkerImpl::getRoot () {
  120.     return fRoot;
  121. }
  122. /** Return the whatToShow value */
  123. unsigned long TreeWalkerImpl::getWhatToShow () {
  124.     return fWhatToShow;
  125. }
  126. /** Return the NodeFilter */
  127. DOM_NodeFilter* TreeWalkerImpl::getFilter () {
  128.     return fNodeFilter;
  129. }
  130. /** Get the expandEntity reference flag. */
  131. bool TreeWalkerImpl::getExpandEntityReferences() {
  132.     return fExpandEntityReferences;
  133. }
  134. /** Return the current Node. */
  135. DOM_Node TreeWalkerImpl::getCurrentNode () {
  136.     return fCurrentNode;
  137. }
  138. /** Return the current Node. */
  139. void TreeWalkerImpl::setCurrentNode (DOM_Node node) {
  140.     fCurrentNode = node;
  141. }
  142. /** Return the parent Node from the current node,
  143.  *  after applying filter, whatToshow.
  144.  *  If result is not null, set the current Node.
  145.  */
  146. DOM_Node TreeWalkerImpl::parentNode () {
  147. DOM_Node result;
  148.     if (fCurrentNode.isNull()) return result;
  149.     DOM_Node node = getParentNode(fCurrentNode);
  150.     if (node != 0) {
  151.         fCurrentNode = node;
  152.     }
  153.     return node;
  154. }
  155. /** Return the first child Node from the current node,
  156.  *  after applying filter, whatToshow.
  157.  *  If result is not null, set the current Node.
  158.  */
  159. DOM_Node TreeWalkerImpl::firstChild () {
  160. DOM_Node result;
  161.     if (fCurrentNode.isNull()) return result;
  162.     DOM_Node node = getFirstChild(fCurrentNode);
  163.     if (! node.isNull()) {
  164.         fCurrentNode = node;
  165.     }
  166.     return node;
  167. }
  168. /** Return the last child Node from the current node,
  169.  *  after applying filter, whatToshow.
  170.  *  If result is not null, set the current Node.
  171.  */
  172. DOM_Node TreeWalkerImpl::lastChild () {
  173.     DOM_Node result;
  174.     if (fCurrentNode.isNull()) return result;
  175.     DOM_Node node = getLastChild(fCurrentNode);
  176.     if (! node.isNull()) {
  177.         fCurrentNode = node;
  178.     }
  179.     return node;
  180. }
  181. /** Return the previous sibling Node from the current node,
  182.  *  after applying filter, whatToshow.
  183.  *  If result is not null, set the current Node.
  184.  */
  185. DOM_Node TreeWalkerImpl::previousSibling () {
  186. DOM_Node result;
  187.     if (fCurrentNode.isNull()) return result;
  188.     DOM_Node node = getPreviousSibling(fCurrentNode);
  189.     if (! node.isNull()) {
  190.         fCurrentNode = node;
  191.     }
  192.     return node;
  193. }
  194. /** Return the next sibling Node from the current node,
  195.  *  after applying filter, whatToshow.
  196.  *  If result is not null, set the current Node.
  197.  */
  198. DOM_Node TreeWalkerImpl::nextSibling () {
  199. DOM_Node result;
  200.     if (fCurrentNode.isNull()) return result;
  201.     DOM_Node node = getNextSibling(fCurrentNode);
  202.     if (! node.isNull()) {
  203.         fCurrentNode = node;
  204.     }
  205.     return node;
  206. }
  207. /** Return the previous Node from the current node,
  208.  *  after applying filter, whatToshow.
  209.  *  If result is not null, set the current Node.
  210.  */
  211. DOM_Node TreeWalkerImpl::previousNode () {
  212.     DOM_Node result;
  213.     if (fCurrentNode.isNull()) return result;
  214.     // get sibling
  215.     result = getPreviousSibling(fCurrentNode);
  216.     if (result.isNull()) {
  217.         result = getParentNode(fCurrentNode);
  218.         if (! result.isNull()) {
  219.             fCurrentNode = result;
  220.             return fCurrentNode;
  221.         }
  222.         return result;
  223.     }
  224.     // get the lastChild of result.
  225.     DOM_Node lastChild  = getLastChild(result);
  226.     // if there is a lastChild which passes filters return it.
  227.     if (! lastChild.isNull()) {
  228.         fCurrentNode = lastChild;
  229.         return fCurrentNode;
  230.     }
  231.     // otherwise return the previous sibling.
  232.     if (! result.isNull()) {
  233.         fCurrentNode = result;
  234.         return fCurrentNode;
  235.     }
  236.     // otherwise return null.
  237.     return result;
  238. }
  239. /** Return the next Node from the current node,
  240.  *  after applying filter, whatToshow.
  241.  *  If result is not null, set the current Node.
  242.  */
  243. DOM_Node TreeWalkerImpl::nextNode () {
  244. DOM_Node result;
  245.     if (fCurrentNode.isNull()) return result;
  246.     result = getFirstChild(fCurrentNode);
  247.     if (! result.isNull()) {
  248.         fCurrentNode = result;
  249.         return result;
  250.     }
  251.     result = getNextSibling(fCurrentNode);
  252.     if (! result.isNull()) {
  253.         fCurrentNode = result;
  254.         return result;
  255.     }
  256.     // return parent's 1st sibling.
  257.     DOM_Node parent = getParentNode(fCurrentNode);
  258.     while (! parent.isNull()) {
  259.         result = getNextSibling(parent);
  260.         if (! result.isNull()) {
  261.             fCurrentNode = result;
  262.             return result;
  263.         } else {
  264.             parent = getParentNode(parent);
  265.         }
  266.     }
  267.     // end , return null
  268.     return result;
  269. }
  270. /** Internal function.
  271.  *  Return the parent Node, from the input node
  272.  *  after applying filter, whatToshow.
  273.  *  The current node is not consulted or set.
  274.  */
  275. DOM_Node TreeWalkerImpl::getParentNode (DOM_Node node) {
  276. DOM_Node result;
  277.     if (node.isNull() || node == fRoot) return result;
  278.     DOM_Node newNode = node.getParentNode();
  279.     if (newNode.isNull())  return result;
  280.     short accept = acceptNode(newNode);
  281.     if (accept == DOM_NodeFilter::FILTER_ACCEPT)
  282.         return newNode;
  283.     return getParentNode(newNode);
  284. }
  285. /** Internal function.
  286.  *  Return the nextSibling Node, from the input node
  287.  *  after applying filter, whatToshow.
  288.  *  The current node is not consulted or set.
  289.  */
  290. DOM_Node TreeWalkerImpl::getNextSibling (DOM_Node node) {
  291. DOM_Node result;
  292.     if (node.isNull() || node == fRoot) return result;
  293.     DOM_Node newNode = node.getNextSibling();
  294.     if (newNode.isNull()) {
  295.         newNode = node.getParentNode();
  296.         if (newNode.isNull() || node == fRoot)  return result;
  297.         short parentAccept = acceptNode(newNode);
  298.         if (parentAccept == DOM_NodeFilter::FILTER_SKIP) {
  299.             return getNextSibling(newNode);
  300.         }
  301.         return result;
  302.     }
  303.     short accept = acceptNode(newNode);
  304.     if (accept == DOM_NodeFilter::FILTER_ACCEPT)
  305.         return newNode;
  306.     else
  307.     if (accept == DOM_NodeFilter::FILTER_SKIP) {
  308.         DOM_Node fChild =  getFirstChild(newNode);
  309.         if (fChild.isNull()) {
  310.             return getNextSibling(newNode);
  311.         }
  312.         return fChild;
  313.     }
  314.     return getNextSibling(newNode);
  315. }
  316. /** Internal function.
  317.  *  Return the previous sibling Node, from the input node
  318.  *  after applying filter, whatToshow.
  319.  *  The current node is not consulted or set.
  320.  */
  321. DOM_Node TreeWalkerImpl::getPreviousSibling (DOM_Node node) {
  322. DOM_Node result;
  323.     if (node.isNull() || node == fRoot) return result;
  324.     DOM_Node newNode = node.getPreviousSibling();
  325.     if (newNode.isNull()) {
  326.         newNode = node.getParentNode();
  327.         if (newNode.isNull() || node == fRoot)  return result;
  328.         short parentAccept = acceptNode(newNode);
  329.         if (parentAccept == DOM_NodeFilter::FILTER_SKIP) {
  330.             return getPreviousSibling(newNode);
  331.         }
  332.         return result;
  333.     }
  334.     short accept = acceptNode(newNode);
  335.     if (accept == DOM_NodeFilter::FILTER_ACCEPT)
  336.         return newNode;
  337.     else
  338.     if (accept == DOM_NodeFilter::FILTER_SKIP) {
  339.         DOM_Node fChild =  getLastChild(newNode);
  340.         if (fChild.isNull()) {
  341.             return getPreviousSibling(newNode);
  342.         }
  343.         return fChild;
  344.     }
  345.     return getPreviousSibling(newNode);
  346. }
  347. /** Internal function.
  348.  *  Return the first child Node, from the input node
  349.  *  after applying filter, whatToshow.
  350.  *  The current node is not consulted or set.
  351.  */
  352. DOM_Node TreeWalkerImpl::getFirstChild (DOM_Node node) {
  353. DOM_Node result;
  354.     if (node.isNull()) return result;
  355.     DOM_Node newNode = node.getFirstChild();
  356.     if (newNode.isNull())  return result;
  357.     short accept = acceptNode(newNode);
  358.     if (accept == DOM_NodeFilter::FILTER_ACCEPT)
  359.         return newNode;
  360.     else
  361.     if (accept == DOM_NodeFilter::FILTER_SKIP
  362.         && newNode.hasChildNodes())
  363.     {
  364.         return getFirstChild(newNode);
  365.     }
  366.     return getNextSibling(newNode);
  367. }
  368. /** Internal function.
  369.  *  Return the last child Node, from the input node
  370.  *  after applying filter, whatToshow.
  371.  *  The current node is not consulted or set.
  372.  */
  373. DOM_Node TreeWalkerImpl::getLastChild (DOM_Node node) {
  374. DOM_Node result;
  375.     if (node.isNull()) return result;
  376.     DOM_Node newNode = node.getLastChild();
  377.     if (newNode.isNull())  return result;
  378.     short accept = acceptNode(newNode);
  379.     if (accept == DOM_NodeFilter::FILTER_ACCEPT)
  380.         return newNode;
  381.     else
  382.     if (accept == DOM_NodeFilter::FILTER_SKIP
  383.         && newNode.hasChildNodes())
  384.     {
  385.         return getLastChild(newNode);
  386.     }
  387.     return getPreviousSibling(newNode);
  388. }
  389. /** The node is accepted if it passes the whatToShow and the filter. */
  390. short TreeWalkerImpl::acceptNode (DOM_Node node) {
  391.     if (fNodeFilter == 0) {
  392.         if ( ( fWhatToShow & (1 << (node.getNodeType() - 1))) != 0)
  393.         {
  394.             return DOM_NodeFilter::FILTER_ACCEPT;
  395.         }
  396.         else
  397.         {
  398.             return DOM_NodeFilter::FILTER_SKIP;
  399.         }
  400.     } else {
  401.         // REVISIT: This logic is unclear from the spec!
  402.         if ((fWhatToShow & (1 << (node.getNodeType() - 1))) != 0 ) {
  403.             return fNodeFilter->acceptNode(node);
  404.         } else {
  405.             // what to show has failed!
  406.             if (fNodeFilter->acceptNode(node) == DOM_NodeFilter::FILTER_REJECT) {
  407.                 return DOM_NodeFilter::FILTER_REJECT;
  408.             } else {
  409.                 return DOM_NodeFilter::FILTER_SKIP;
  410.             }
  411.         }
  412.     }
  413. }
  414. XERCES_CPP_NAMESPACE_END