/* * The Apache Software License, Version 1.1 * * Copyright (c) 1999-2002 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "Xerces" and "Apache Software Foundation" must * not be used to endorse or promote products derived from this * software without prior written permission. For written * permission, please contact apache\@apache.org. * * 5. Products derived from this software may not be called "Apache", * nor may "Apache" appear in their name, without prior written * permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation, and was * originally based on software copyright (c) 1999, International * Business Machines, Inc., http://www.ibm.com . For more information * on the Apache Software Foundation, please see * . */ /* * $Id: DOM_NodeFilter.hpp,v 1.3 2002/11/04 15:04:44 tng Exp $ */ // DOM_NodeFilter.h: interface for the DOM_NodeFilter class. // ////////////////////////////////////////////////////////////////////// #ifndef DOM_NodeFilter_HEADER_GUARD_ #define DOM_NodeFilter_HEADER_GUARD_ #include "DOM_Node.hpp" XERCES_CPP_NAMESPACE_BEGIN class NodeFilterImpl; /** * Filters are objects that know how to "filter out" nodes. If a * DOM_NodeIterator or DOM_TreeWalker is given a * filter, it applies the filter before it returns the next node. * * If the filter says to accept the node, the iterator returns it; otherwise, the * iterator looks for the next node and pretends that the node that was rejected * was not there. * * The DOM does not provide any filters. Filter is just an interface that users can * implement to provide their own filters. * * Filters do not need to know how to iterate, nor do they need to know anything * about the data structure that is being iterated. This makes it very easy to write * filters, since the only thing they have to know how to do is evaluate a single node. * One filter may be used with a number of different kinds of iterators, encouraging * code reuse. * */ class CDOM_EXPORT DOM_NodeFilter { public: /** @name Enumerators for Node Filter */ //@{ /* * * * * * * * * * *
FILTER_ACCEPTAccept the node. Navigation methods defined for * NodeIterator or TreeWalker will return this node.
* FILTER_REJECTReject the node. Navigation methods defined for * NodeIterator or TreeWalker will not return this * node. For TreeWalker, the children of this node will * also be rejected. Iterators treat this as a synonym * for FILTER_SKIP.
FILTER_SKIPReject the node. Navigation methods defined for * NodeIterator or TreeWalker will not return this * node. For both NodeIterator and Treewalker, the * children of this node will still be considered.
* */ enum FilterAction {FILTER_ACCEPT = 1, FILTER_REJECT = 2, FILTER_SKIP = 3}; enum ShowType { SHOW_ALL = 0x0000FFFF, SHOW_ELEMENT = 0x00000001, SHOW_ATTRIBUTE = 0x00000002, SHOW_TEXT = 0x00000004, SHOW_CDATA_SECTION = 0x00000008, SHOW_ENTITY_REFERENCE = 0x00000010, SHOW_ENTITY = 0x00000020, SHOW_PROCESSING_INSTRUCTION = 0x00000040, SHOW_COMMENT = 0x00000080, SHOW_DOCUMENT = 0x00000100, SHOW_DOCUMENT_TYPE = 0x00000200, SHOW_DOCUMENT_FRAGMENT = 0x00000400, SHOW_NOTATION = 0x00000800 }; //@} /** @name Constructors */ //@{ /** * Default constructor for DOM_NodeFilter. */ DOM_NodeFilter(); //@} /** @name Destructor. */ //@{ /** * Destructor for DOM_NodeFilter. */ virtual ~DOM_NodeFilter(); //@} /** @name Test function. */ //@{ /** * Test whether a specified node is visible in the logical view of a DOM_TreeWalker * or DOM_NodeIterator. This function will be called by the implementation of * DOM_TreeWalker and DOM_NodeIterator; it is not intended to be called directly from user * code. * * @param node The node to check to see if it passes the filter or not. * @return A constant to determine whether the node is accepted, rejected, or skipped. */ virtual short acceptNode (const DOM_Node &node) const =0; //@} private: DOM_NodeFilter(const DOM_NodeFilter &other); DOM_NodeFilter & operator = (const DOM_NodeFilter &other); bool operator == (const DOM_NodeFilter &other) const; bool operator != (const DOM_NodeFilter &other) const; }; XERCES_CPP_NAMESPACE_END #endif