IDTreeWalkerImpl.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) 2001 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.  * $Log: IDTreeWalkerImpl.hpp,v $
  58.  * Revision 1.3  2001/06/04 20:11:53  tng
  59.  * IDOM: Complete IDNodeIterator, IDTreeWalker, IDNodeFilter.
  60.  *
  61.  * Revision 1.2  2001/05/11 13:26:00  tng
  62.  * Copyright update.
  63.  *
  64.  * Revision 1.1.1.1  2001/04/03 00:14:35  andyh
  65.  * IDOM
  66.  *
  67.  */
  68. #ifndef IDTreeWalkerImpl_HEADER_GUARD_
  69. #define IDTreeWalkerImpl_HEADER_GUARD_
  70. #include "IDOM_TreeWalker.hpp"
  71. class CDOM_EXPORT IDTreeWalkerImpl : public IDOM_TreeWalker {
  72.     private:
  73.         // The whatToShow mask.
  74.         unsigned long fWhatToShow;
  75.         // The NodeFilter reference.
  76.         IDOM_NodeFilter* fNodeFilter;
  77.         // The current Node.
  78.         IDOM_Node* fCurrentNode;
  79.         // The root Node.
  80.         IDOM_Node* fRoot;
  81.         // The expandEntity reference flag.
  82.         bool fExpandEntityReferences;
  83. public:
  84.     // Implementation Note: No state is kept except the data above
  85.     // (fWhatToShow, fNodeFilter, fCurrentNode, fRoot) such that
  86.     // setters could be created for these data values and the
  87.     // implementation will still work.
  88.     /** Public constructor */
  89.     IDTreeWalkerImpl (
  90.         IDOM_Node* root,
  91.         unsigned long whatToShow,
  92.         IDOM_NodeFilter* nodeFilter,
  93.         bool expandEntityRef);
  94.     IDTreeWalkerImpl (const IDTreeWalkerImpl& twi);
  95.     IDTreeWalkerImpl& operator= (const IDTreeWalkerImpl& twi);
  96.     // Return the whatToShow value.
  97.     virtual unsigned long  getWhatToShow ();
  98.     // Return the NodeFilter.
  99.     virtual IDOM_NodeFilter* getFilter ();
  100.     // Return the current IDOM_Node.
  101.     virtual IDOM_Node* getCurrentNode ();
  102.     // Return the current Node.
  103.     virtual void setCurrentNode (IDOM_Node* node);
  104.     // Return the parent Node from the current node,
  105.     //  after applying filter, whatToshow.
  106.     //  If result is not null, set the current Node.
  107.     virtual IDOM_Node* parentNode ();
  108.     // Return the first child Node from the current node,
  109.     //  after applying filter, whatToshow.
  110.     //  If result is not null, set the current Node.
  111.     virtual IDOM_Node* firstChild ();
  112.     // Return the last child Node from the current node,
  113.     //  after applying filter, whatToshow.
  114.     //  If result is not null, set the current Node.
  115.     virtual IDOM_Node* lastChild ();
  116.     // Return the previous sibling Node from the current node,
  117.     //  after applying filter, whatToshow.
  118.     //  If result is not null, set the current Node.
  119.     virtual IDOM_Node* previousSibling ();
  120.     // Return the next sibling Node from the current node,
  121.     //  after applying filter, whatToshow.
  122.     //  If result is not null, set the current Node.
  123.     virtual IDOM_Node* nextSibling ();
  124.     // Return the previous Node from the current node,
  125.     //  after applying filter, whatToshow.
  126.     //  If result is not null, set the current Node.
  127.     virtual IDOM_Node* previousNode ();
  128.     // Return the next Node from the current node,
  129.     //  after applying filter, whatToshow.
  130.     //  If result is not null, set the current Node.
  131.     virtual IDOM_Node* nextNode ();
  132.     // Get the expandEntity reference flag.
  133.     virtual bool getExpandEntityReferences();
  134. protected:
  135.     // Internal function.
  136.     //  Return the parent Node, from the input node
  137.     //  after applying filter, whatToshow.
  138.     //  The current node is not consulted or set.
  139.     IDOM_Node* getParentNode (IDOM_Node* node);
  140.     // Internal function.
  141.     //  Return the nextSibling Node, from the input node
  142.     //  after applying filter, whatToshow.
  143.     //  The current node is not consulted or set.
  144.     IDOM_Node* getNextSibling (IDOM_Node* node);
  145.     // Internal function.
  146.     //  Return the previous sibling Node, from the input node
  147.     //  after applying filter, whatToshow.
  148.     //  The current node is not consulted or set.
  149.     IDOM_Node* getPreviousSibling (IDOM_Node* node);
  150.     // Internal function.
  151.     //  Return the first child Node, from the input node
  152.     //  after applying filter, whatToshow.
  153.     //  The current node is not consulted or set.
  154.     IDOM_Node* getFirstChild (IDOM_Node* node);
  155.     // Internal function.
  156.     //  Return the last child Node, from the input node
  157.     //  after applying filter, whatToshow.
  158.     //  The current node is not consulted or set.
  159.     IDOM_Node* getLastChild (IDOM_Node* node);
  160.     // The node is accepted if it passes the whatToShow and the filter.
  161.     short acceptNode (IDOM_Node* node);
  162.     
  163. };
  164. #endif