DOM_TreeWalker.hpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:11k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 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.  * $Log: DOM_TreeWalker.hpp,v $
  58.  * Revision 1.9  2000/08/08 01:00:36  aruna1
  59.  * detach functionality removed from TreeWalker
  60.  *
  61.  * Revision 1.8  2000/02/24 20:11:29  abagchi
  62.  * Swat for removing Log from API docs
  63.  *
  64.  * Revision 1.7  2000/02/17 17:47:25  andyh
  65.  * Update Doc++ API comments
  66.  * NameSpace update to track W3C
  67.  * Changes were made by Chih Hsiang Chou
  68.  *
  69.  * Revision 1.6  2000/02/15 23:17:37  andyh
  70.  * Update Doc++ API comments
  71.  * NameSpace bugfix and update to track W3C
  72.  * Chih Hsiang Chou
  73.  *
  74.  * Revision 1.5  2000/02/11 03:01:04  abagchi
  75.  * Made protected method public to compile, must be fixed later
  76.  *
  77.  * Revision 1.4  2000/02/11 01:05:11  abagchi
  78.  * Added API docs
  79.  *
  80.  * Revision 1.3  2000/02/06 07:47:31  rahulj
  81.  * Year 2K copyright swat.
  82.  *
  83.  * Revision 1.2  2000/02/04 01:49:27  aruna1
  84.  * TreeWalker and NodeIterator changes
  85.  *
  86.  * Revision 1.1.1.1  1999/11/09 01:09:05  twl
  87.  * Initial checkin
  88.  *
  89.  * Revision 1.3  1999/11/08 20:44:22  rahul
  90.  * Swat for adding in Product name and CVS comment log variable.
  91.  *
  92.  */
  93. #ifndef DOM_TreeWalker_HEADER_GUARD_
  94. #define DOM_TreeWalker_HEADER_GUARD_
  95. #include "DOM_Node.hpp"
  96. #include "DOM_NodeFilter.hpp"
  97. class TreeWalkerImpl;
  98. /**
  99.  * <code>DOM_TreeWalker</code> objects are used to navigate a document tree or
  100.  * subtree using the view of the document defined by its <code>whatToShow</code>
  101.  * flags and any filters that are defined for the <code>DOM_TreeWalker</code>. Any
  102.  * function which performs navigation using a <code>DOM_TreeWalker</code> will
  103.  * automatically support any view defined by a <code>DOM_TreeWalker</code>.
  104.  *
  105.  * Omitting nodes from the logical view of a subtree can result in a structure that is
  106.  * substantially different from the same subtree in the complete, unfiltered document. Nodes
  107.  * that are siblings in the DOM_TreeWalker view may be children of different, widely separated
  108.  * nodes in the original view. For instance, consider a Filter that skips all nodes except for
  109.  * Text nodes and the root node of a document. In the logical view that results, all text
  110.  * nodes will be siblings and appear as direct children of the root node, no matter how
  111.  * deeply nested the structure of the original document.
  112.  *
  113.  * <p><b>"Experimental - subject to change"</b></p>
  114.  *
  115.  */
  116. class CDOM_EXPORT DOM_TreeWalker {
  117.     public:
  118.         /** @name Constructors and assignment operator */
  119.         //@{
  120.         /**
  121.           * Default constructor.
  122.           */
  123.         DOM_TreeWalker();
  124.         /**
  125.           * Copy constructor.
  126.           *
  127.           * @param other The object to be copied.
  128.           */
  129.         DOM_TreeWalker(const DOM_TreeWalker &other);
  130.         /**
  131.           * Assignment operator.
  132.           *
  133.           * @param other The object to be copied.
  134.           */
  135.         DOM_TreeWalker & operator = (const DOM_TreeWalker &other);
  136.         /**
  137.           * Assignment operator.  This overloaded variant is provided for
  138.           *   the sole purpose of setting a DOM_NodeIterator to null.
  139.           *
  140.           * @param val.  Only a value of 0, or null, is allowed.
  141.           */
  142.         DOM_TreeWalker & operator = (const DOM_NullPtr *val);
  143.         //@}
  144.         /** @name Destructor. */
  145.         //@{
  146. /**
  147.   * Destructor for DOM_TreeWalker.
  148.   */
  149.         ~DOM_TreeWalker();
  150.         //@}
  151.         /** @name Equality and Inequality operators. */
  152.         //@{
  153.         /**
  154.          * The equality operator.
  155.          *
  156.          * @param other The object reference with which <code>this</code> object is compared
  157.          * @returns True if both <code>DOM_TreeWalker</code>s refer to the same
  158.          *  actual node, or are both null; return false otherwise.
  159.          */
  160.         bool operator == (const DOM_TreeWalker & other)const;
  161.         /**
  162.           *  Compare with a pointer.  Intended only to allow a convenient
  163.           *    comparison with null.
  164.           */
  165.         bool operator == (const DOM_NullPtr *other) const;
  166.         /**
  167.          * The inequality operator.  See operator ==.
  168.          */
  169.         bool operator != (const DOM_TreeWalker & other) const;
  170.          /**
  171.           *  Compare with a pointer.  Intended only to allow a convenient
  172.           *    comparison with null.
  173.           *
  174.           */
  175.         bool operator != (const DOM_NullPtr * other) const;
  176.         //@}
  177.         /** @name Get functions. */
  178.         //@{
  179.         /**
  180.           * Return which node types are presented via the DOM_TreeWalker.
  181.           * These constants are defined in the DOM_NodeFilter interface.
  182.           *
  183.           * <p><b>"Experimental - subject to change"</b></p>
  184.           *
  185.           */
  186.         unsigned long    getWhatToShow();
  187.         /**
  188.           * Return The filter used to screen nodes.
  189.           *
  190.           * <p><b>"Experimental - subject to change"</b></p>
  191.           *
  192.           */
  193.         DOM_NodeFilter* getFilter();
  194.         /**
  195.           * Return the expandEntityReferences flag.
  196.           * The value of this flag determines whether the children of entity reference
  197.           * nodes are visible to the DOM_TreeWalker. If false, they will be skipped over.
  198.           *
  199.           * <p><b>"Experimental - subject to change"</b></p>
  200.           *
  201.           */
  202.         bool getExpandEntityReferences();
  203.         /**
  204.           * Return the node at which the DOM_TreeWalker is currently positioned.
  205.           *
  206.           * <p><b>"Experimental - subject to change"</b></p>
  207.           *
  208.           */
  209.         DOM_Node getCurrentNode();
  210.         /**
  211.           * Moves to and returns the closest visible ancestor node of the current node.
  212.           * If the search for parentNode attempts to step upward from the DOM_TreeWalker's root
  213.           * node, or if it fails to find a visible ancestor node, this method retains the
  214.           * current position and returns null.
  215.           *
  216.           * <p><b>"Experimental - subject to change"</b></p>
  217.           *
  218.           */
  219.         DOM_Node parentNode();
  220.         /**
  221.           * Moves the <code>DOM_TreeWalker</code> to the first child of the current node,
  222.           * and returns the new node. If the current node has no children, returns
  223.           * <code>null</code>, and retains the current node.
  224.           *
  225.           * <p><b>"Experimental - subject to change"</b></p>
  226.           *
  227.           */
  228.         DOM_Node firstChild();
  229.         /**
  230.           * Moves the <code>DOM_TreeWalker</code> to the last child of the current node, and
  231.           * returns the new node. If the current node has no children, returns
  232.           * <code>null</code>, and retains the current node.
  233.           *
  234.           * <p><b>"Experimental - subject to change"</b></p>
  235.           *
  236.           */
  237.         DOM_Node lastChild();
  238.         /**
  239.           * Moves the <code>DOM_TreeWalker</code> to the previous sibling of the current
  240.           * node, and returns the new node. If the current node has no previous sibling,
  241.           * returns <code>null</code>, and retains the current node.
  242.           *
  243.           * <p><b>"Experimental - subject to change"</b></p>
  244.           *
  245.           */
  246.         DOM_Node previousSibling();
  247.         /**
  248.           * Moves the <code>DOM_TreeWalker</code> to the next sibling of the current node,
  249.           * and returns the new node. If the current node has no next sibling, returns
  250.           * <code>null</code>, and retains the current node.
  251.           *
  252.           * <p><b>"Experimental - subject to change"</b></p>
  253.           *
  254.           */
  255.         DOM_Node nextSibling();
  256.         /**
  257.           * Moves the <code>DOM_TreeWalker</code> to the previous visible node in document
  258.           * order relative to the current node, and returns the new node. If the current
  259.           * node has no previous node, 
  260.           * or if the search for previousNode attempts to step upward from the DOM_TreeWalker's
  261.           * root node, returns <code>null</code>, and retains the current node. 
  262.           *
  263.           * <p><b>"Experimental - subject to change"</b></p>
  264.           *
  265.           */
  266.         DOM_Node previousNode();
  267.         /**
  268.           * Moves the <code>DOM_TreeWalker</code> to the next visible node in document order
  269.           * relative to the current node, and returns the new node. If the current node has
  270.           * no next node, 
  271.           * or if the search for nextNode attempts to step upward from the DOM_TreeWalker's
  272.           * root node, returns <code>null</code>, and retains the current node.
  273.           *
  274.           * <p><b>"Experimental - subject to change"</b></p>
  275.           *
  276.           */
  277.         DOM_Node nextNode();
  278.         //@}
  279.         /** @name Set functions. */
  280.         //@{
  281.         /**
  282.           * Set the node at which the DOM_TreeWalker is currently positioned.
  283.           *
  284.           * <p><b>"Experimental - subject to change"</b></p>
  285.           *
  286.           */
  287.         void setCurrentNode(DOM_Node currentNode);
  288.         //@}
  289.         
  290.     protected:
  291.         DOM_TreeWalker(TreeWalkerImpl* impl);
  292.         friend class DOM_Document;
  293.     private:
  294.         TreeWalkerImpl*         fImpl;
  295. };
  296. #endif