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

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: TreeWalkerImpl.hpp,v $
  58.  * Revision 1.6  2000/08/08 01:00:37  aruna1
  59.  * detach functionality removed from TreeWalker
  60.  *
  61.  * Revision 1.5  2000/02/24 20:11:31  abagchi
  62.  * Swat for removing Log from API docs
  63.  *
  64.  * Revision 1.4  2000/02/15 23:17:37  andyh
  65.  * Update Doc++ API comments
  66.  * NameSpace bugfix and update to track W3C
  67.  * Chih Hsiang Chou
  68.  *
  69.  * Revision 1.3  2000/02/06 07:47:34  rahulj
  70.  * Year 2K copyright swat.
  71.  *
  72.  * Revision 1.2  2000/02/04 01:49:24  aruna1
  73.  * TreeWalker and NodeIterator changes
  74.  *
  75.  * Revision 1.1.1.1  1999/11/09 01:09:20  twl
  76.  * Initial checkin
  77.  *
  78.  * Revision 1.3  1999/11/08 20:44:34  rahul
  79.  * Swat for adding in Product name and CVS comment log variable.
  80.  *
  81.  */
  82. #ifndef TreeWalkerImpl_HEADER_GUARD_
  83. #define TreeWalkerImpl_HEADER_GUARD_
  84. #include "DOM_TreeWalker.hpp"
  85. #include "RefCountedImpl.hpp"
  86. class CDOM_EXPORT TreeWalkerImpl : public RefCountedImpl {
  87. public:
  88.     // Implementation Note: No state is kept except the data above
  89.     // (fWhatToShow, fNodeFilter, fCurrentNode, fRoot) such that
  90.     // setters could be created for these data values and the
  91.     // implementation will still work.
  92.     /** Public constructor */
  93.     TreeWalkerImpl (
  94.         DOM_Node root, 
  95.         unsigned long whatToShow, 
  96.         DOM_NodeFilter* nodeFilter,
  97.         bool expandEntityRef);
  98.     TreeWalkerImpl (const TreeWalkerImpl& twi);
  99.     TreeWalkerImpl& operator= (const TreeWalkerImpl& twi);
  100.     // Return the whatToShow value.
  101.     unsigned long  getWhatToShow ();
  102.     // Return the NodeFilter.
  103.     DOM_NodeFilter* getFilter ();
  104.     // Return the current DOM_Node.
  105.     DOM_Node getCurrentNode ();
  106.     // Return the current Node.
  107.     void setCurrentNode (DOM_Node node);
  108.     // Return the parent Node from the current node,
  109.     //  after applying filter, whatToshow.
  110.     //  If result is not null, set the current Node.
  111.     DOM_Node parentNode ();
  112.     // Return the first child Node from the current node,
  113.     //  after applying filter, whatToshow.
  114.     //  If result is not null, set the current Node.
  115.     DOM_Node firstChild ();
  116.     // Return the last child Node from the current node,
  117.     //  after applying filter, whatToshow.
  118.     //  If result is not null, set the current Node.
  119.     DOM_Node lastChild ();
  120.     // Return the previous sibling Node from the current node,
  121.     //  after applying filter, whatToshow.
  122.     //  If result is not null, set the current Node.
  123.     DOM_Node previousSibling ();
  124.     // Return the next sibling Node from the current node,
  125.     //  after applying filter, whatToshow.
  126.     //  If result is not null, set the current Node.
  127.     DOM_Node nextSibling ();
  128.     // Return the previous Node from the current node,
  129.     //  after applying filter, whatToshow.
  130.     //  If result is not null, set the current Node.
  131.     DOM_Node previousNode ();
  132.     // Return the next Node from the current node,
  133.     //  after applying filter, whatToshow.
  134.     //  If result is not null, set the current Node.
  135.     DOM_Node nextNode ();
  136.     void unreferenced ();
  137.     
  138.     // Get the expandEntity reference flag.
  139.     bool getExpandEntityReferences();
  140. protected:
  141.     // Internal function.
  142.     //  Return the parent Node, from the input node
  143.     //  after applying filter, whatToshow.
  144.     //  The current node is not consulted or set.
  145.     DOM_Node getParentNode (DOM_Node node);
  146.     // Internal function.
  147.     //  Return the nextSibling Node, from the input node
  148.     //  after applying filter, whatToshow.
  149.     //  The current node is not consulted or set.
  150.     DOM_Node getNextSibling (DOM_Node node);
  151.     // Internal function.
  152.     //  Return the previous sibling Node, from the input node
  153.     //  after applying filter, whatToshow.
  154.     //  The current node is not consulted or set.
  155.     DOM_Node getPreviousSibling (DOM_Node node);
  156.     // Internal function.
  157.     //  Return the first child Node, from the input node
  158.     //  after applying filter, whatToshow.
  159.     //  The current node is not consulted or set.
  160.     DOM_Node getFirstChild (DOM_Node node);
  161.     // Internal function.
  162.     //  Return the last child Node, from the input node
  163.     //  after applying filter, whatToshow.
  164.     //  The current node is not consulted or set.
  165.     DOM_Node getLastChild (DOM_Node node);
  166.     // The node is accepted if it passes the whatToShow and the filter.
  167.     short acceptNode (DOM_Node node);
  168.     
  169. private:
  170.     // The whatToShow mask.
  171.     unsigned long fWhatToShow;
  172.     // The NodeFilter reference.
  173.     DOM_NodeFilter* fNodeFilter;
  174.     // The current Node.
  175.     DOM_Node fCurrentNode;
  176.     // The root Node.
  177.     DOM_Node fRoot;
  178.     // The expandEntity reference flag.
  179.     bool fExpandEntityReferences;
  180. };
  181. #endif