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

词法分析

开发平台:

Visual C++

  1. #ifndef DOMTreeWalker_HEADER_GUARD_
  2. #define DOMTreeWalker_HEADER_GUARD_
  3. /*
  4.  * The Apache Software License, Version 1.1
  5.  *
  6.  * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  7.  * reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  *
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  *
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in
  18.  *    the documentation and/or other materials provided with the
  19.  *    distribution.
  20.  *
  21.  * 3. The end-user documentation included with the redistribution,
  22.  *    if any, must include the following acknowledgment:
  23.  *       "This product includes software developed by the
  24.  *        Apache Software Foundation (http://www.apache.org/)."
  25.  *    Alternately, this acknowledgment may appear in the software itself,
  26.  *    if and wherever such third-party acknowledgments normally appear.
  27.  *
  28.  * 4. The names "Xerces" and "Apache Software Foundation" must
  29.  *    not be used to endorse or promote products derived from this
  30.  *    software without prior written permission. For written
  31.  *    permission, please contact apache@apache.org.
  32.  *
  33.  * 5. Products derived from this software may not be called "Apache",
  34.  *    nor may "Apache" appear in their name, without prior written
  35.  *    permission of the Apache Software Foundation.
  36.  *
  37.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  38.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  39.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  41.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  44.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  45.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  46.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  47.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48.  * SUCH DAMAGE.
  49.  * ====================================================================
  50.  *
  51.  * This software consists of voluntary contributions made by many
  52.  * individuals on behalf of the Apache Software Foundation, and was
  53.  * originally based on software copyright (c) 2001, International
  54.  * Business Machines, Inc., http://www.ibm.com .  For more information
  55.  * on the Apache Software Foundation, please see
  56.  * <http://www.apache.org/>.
  57.  */
  58. /*
  59.  * $Id: DOMTreeWalker.hpp,v 1.7 2003/03/07 19:59:09 tng Exp $
  60.  */
  61. #include "DOMNode.hpp"
  62. #include "DOMNodeFilter.hpp"
  63. XERCES_CPP_NAMESPACE_BEGIN
  64. /**
  65.  * <code>DOMTreeWalker</code> objects are used to navigate a document tree or
  66.  * subtree using the view of the document defined by their
  67.  * <code>whatToShow</code> flags and filter (if any). Any function which
  68.  * performs navigation using a <code>DOMTreeWalker</code> will automatically
  69.  * support any view defined by a <code>DOMTreeWalker</code>.
  70.  * <p>Omitting nodes from the logical view of a subtree can result in a
  71.  * structure that is substantially different from the same subtree in the
  72.  * complete, unfiltered document. Nodes that are siblings in the
  73.  * <code>DOMTreeWalker</code> view may be children of different, widely
  74.  * separated nodes in the original view. For instance, consider a
  75.  * <code>DOMNodeFilter</code> that skips all nodes except for DOMText nodes and
  76.  * the root node of a document. In the logical view that results, all text
  77.  * nodes will be siblings and appear as direct children of the root node, no
  78.  * matter how deeply nested the structure of the original document.
  79.  * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>Document Object Model (DOM) Level 2 Traversal and Range Specification</a>.
  80.  *
  81.  * @since DOM Level 2
  82.  */
  83. class CDOM_EXPORT DOMTreeWalker {
  84. protected:
  85.     // -----------------------------------------------------------------------
  86.     //  Hidden constructors
  87.     // -----------------------------------------------------------------------
  88.     /** @name Hidden constructors */
  89.     //@{    
  90.     DOMTreeWalker() {};
  91.     //@}
  92. private:
  93.     // -----------------------------------------------------------------------
  94.     // Unimplemented constructors and operators
  95.     // -----------------------------------------------------------------------
  96.     /** @name Unimplemented constructors and operators */
  97.     //@{
  98.     DOMTreeWalker(const DOMTreeWalker &);
  99.     DOMTreeWalker & operator = (const DOMTreeWalker &);
  100.     //@}
  101. public:
  102.     // -----------------------------------------------------------------------
  103.     //  All constructors are hidden, just the destructor is available
  104.     // -----------------------------------------------------------------------
  105.     /** @name Destructor */
  106.     //@{
  107.     /**
  108.      * Destructor
  109.      *
  110.      */
  111.     virtual ~DOMTreeWalker() {};
  112.     //@}
  113.     // -----------------------------------------------------------------------
  114.     //  Virtual DOMTreeWalker interface
  115.     // -----------------------------------------------------------------------
  116.     /** @name Functions introduced in DOM Level 2 */
  117.     //@{
  118.     // -----------------------------------------------------------------------
  119.     //  Getter methods
  120.     // -----------------------------------------------------------------------
  121.     /**
  122.      * The <code>root</code> node of the <code>DOMTreeWalker</code>, as specified
  123.      * when it was created.
  124.      *
  125.      * @since DOM Level 2
  126.      */
  127.     virtual DOMNode*          getRoot() = 0;
  128.     /**
  129.      * This attribute determines which node types are presented via the
  130.      * <code>DOMTreeWalker</code>. The available set of constants is defined in
  131.      * the <code>DOMNodeFilter</code> interface.  Nodes not accepted by
  132.      * <code>whatToShow</code> will be skipped, but their children may still
  133.      * be considered. Note that this skip takes precedence over the filter,
  134.      * if any.
  135.      *
  136.      * @since DOM Level 2
  137.      */
  138.     virtual unsigned long    getWhatToShow()= 0;
  139.     /**
  140.      * Return The filter used to screen nodes.
  141.      *
  142.      * @since DOM Level 2
  143.      */
  144.     virtual DOMNodeFilter*    getFilter()= 0;
  145.     /**
  146.      * The value of this flag determines whether the children of entity
  147.      * reference nodes are visible to the <code>DOMTreeWalker</code>. If false,
  148.      * these children  and their descendants will be rejected. Note that
  149.      * this rejection takes precedence over <code>whatToShow</code> and the
  150.      * filter, if any.
  151.      * <br> To produce a view of the document that has entity references
  152.      * expanded and does not expose the entity reference node itself, use
  153.      * the <code>whatToShow</code> flags to hide the entity reference node
  154.      * and set <code>expandEntityReferences</code> to true when creating the
  155.      * <code>DOMTreeWalker</code>. To produce a view of the document that has
  156.      * entity reference nodes but no entity expansion, use the
  157.      * <code>whatToShow</code> flags to show the entity reference node and
  158.      * set <code>expandEntityReferences</code> to false.
  159.      *
  160.      * @since DOM Level 2
  161.      */
  162.     virtual bool              getExpandEntityReferences()= 0;
  163.     /**
  164.      * Return the node at which the DOMTreeWalker is currently positioned.
  165.      *
  166.      * @since DOM Level 2
  167.      */
  168.     virtual DOMNode*          getCurrentNode()= 0;
  169.     // -----------------------------------------------------------------------
  170.     //  Query methods
  171.     // -----------------------------------------------------------------------
  172.     /**
  173.      * Moves to and returns the closest visible ancestor node of the current
  174.      * node. If the search for <code>parentNode</code> attempts to step
  175.      * upward from the <code>DOMTreeWalker</code>'s <code>root</code> node, or
  176.      * if it fails to find a visible ancestor node, this method retains the
  177.      * current position and returns <code>null</code>.
  178.      * @return The new parent node, or <code>null</code> if the current node
  179.      *   has no parent  in the <code>DOMTreeWalker</code>'s logical view.
  180.      *
  181.      * @since DOM Level 2
  182.      */
  183.     virtual DOMNode*          parentNode()= 0;
  184.     /**
  185.      * Moves the <code>DOMTreeWalker</code> to the first visible child of the
  186.      * current node, and returns the new node. If the current node has no
  187.      * visible children, returns <code>null</code>, and retains the current
  188.      * node.
  189.      * @return The new node, or <code>null</code> if the current node has no
  190.      *   visible children  in the <code>DOMTreeWalker</code>'s logical view.
  191.      *
  192.      * @since DOM Level 2
  193.      */
  194.     virtual DOMNode*          firstChild()= 0;
  195.     /**
  196.      * Moves the <code>DOMTreeWalker</code> to the last visible child of the
  197.      * current node, and returns the new node. If the current node has no
  198.      * visible children, returns <code>null</code>, and retains the current
  199.      * node.
  200.      * @return The new node, or <code>null</code> if the current node has no
  201.      *   children  in the <code>DOMTreeWalker</code>'s logical view.
  202.      *
  203.      * @since DOM Level 2
  204.      */
  205.     virtual DOMNode*          lastChild()= 0;
  206.     /**
  207.      * Moves the <code>DOMTreeWalker</code> to the previous sibling of the
  208.      * current node, and returns the new node. If the current node has no
  209.      * visible previous sibling, returns <code>null</code>, and retains the
  210.      * current node.
  211.      * @return The new node, or <code>null</code> if the current node has no
  212.      *   previous sibling.  in the <code>DOMTreeWalker</code>'s logical view.
  213.      *
  214.      * @since DOM Level 2
  215.      */
  216.     virtual DOMNode*          previousSibling()= 0;
  217.     /**
  218.      * Moves the <code>DOMTreeWalker</code> to the next sibling of the current
  219.      * node, and returns the new node. If the current node has no visible
  220.      * next sibling, returns <code>null</code>, and retains the current node.
  221.      * @return The new node, or <code>null</code> if the current node has no
  222.      *   next sibling.  in the <code>DOMTreeWalker</code>'s logical view.
  223.      *
  224.      * @since DOM Level 2
  225.      */
  226.     virtual DOMNode*          nextSibling()= 0;
  227.     /**
  228.      * Moves the <code>DOMTreeWalker</code> to the previous visible node in
  229.      * document order relative to the current node, and returns the new
  230.      * node. If the current node has no previous node,  or if the search for
  231.      * <code>previousNode</code> attempts to step upward from the
  232.      * <code>DOMTreeWalker</code>'s <code>root</code> node,  returns
  233.      * <code>null</code>, and retains the current node.
  234.      * @return The new node, or <code>null</code> if the current node has no
  235.      *   previous node  in the <code>DOMTreeWalker</code>'s logical view.
  236.      *
  237.      * @since DOM Level 2
  238.      */
  239.     virtual DOMNode*          previousNode()= 0;
  240.     /**
  241.      * Moves the <code>DOMTreeWalker</code> to the next visible node in document
  242.      * order relative to the current node, and returns the new node. If the
  243.      * current node has no next node, or if the search for nextNode attempts
  244.      * to step upward from the <code>DOMTreeWalker</code>'s <code>root</code>
  245.      * node, returns <code>null</code>, and retains the current node.
  246.      * @return The new node, or <code>null</code> if the current node has no
  247.      *   next node  in the <code>DOMTreeWalker</code>'s logical view.
  248.      *
  249.      * @since DOM Level 2
  250.      */
  251.     virtual DOMNode*          nextNode()= 0;
  252.     // -----------------------------------------------------------------------
  253.     //  Setter methods
  254.     // -----------------------------------------------------------------------
  255.     /**
  256.      * The node at which the <code>DOMTreeWalker</code> is currently positioned.
  257.      * <br>Alterations to the DOM tree may cause the current node to no longer
  258.      * be accepted by the <code>DOMTreeWalker</code>'s associated filter.
  259.      * <code>currentNode</code> may also be explicitly set to any node,
  260.      * whether or not it is within the subtree specified by the
  261.      * <code>root</code> node or would be accepted by the filter and
  262.      * <code>whatToShow</code> flags. Further traversal occurs relative to
  263.      * <code>currentNode</code> even if it is not part of the current view,
  264.      * by applying the filters in the requested direction; if no traversal
  265.      * is possible, <code>currentNode</code> is not changed.
  266.      * @exception DOMException
  267.      *   NOT_SUPPORTED_ERR: Raised if an attempt is made to set
  268.      *   <code>currentNode</code> to <code>null</code>.
  269.      *
  270.      * @since DOM Level 2
  271.      */
  272.     virtual void              setCurrentNode(DOMNode* currentNode)= 0;
  273.     //@}
  274.     // -----------------------------------------------------------------------
  275.     //  Non-standard Extension
  276.     // -----------------------------------------------------------------------
  277.     /** @name Non-standard Extension */
  278.     //@{
  279.     /**
  280.      * Called to indicate that this TreeWalker is no longer in use
  281.      * and that the implementation may relinquish any resources associated with it.
  282.      *
  283.      * Access to a released object will lead to unexpected result.
  284.      */
  285.     virtual void              release() = 0;
  286.     //@}
  287. };
  288. XERCES_CPP_NAMESPACE_END
  289. #endif