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

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.  * $Id: IDOM_Node.hpp,v 1.4 2001/06/04 20:44:14 tng Exp $
  58.  */
  59. #ifndef IDOM_Node_HEADER_GUARD_
  60. #define IDOM_Node_HEADER_GUARD_
  61. #include <util/XercesDefs.hpp>
  62. class IDOM_Document;
  63. class IDOM_NamedNodeMap;
  64. class IDOM_NodeList;
  65. /**
  66.  * The <code>Node</code> interface is the primary datatype for the entire
  67.  * Document Object Model.
  68.  *
  69.  * It represents a single node in the document tree.
  70.  * While all objects implementing the <code>Node</code> interface expose
  71.  * methods for dealing with children, not all objects implementing the
  72.  * <code>Node</code> interface may have children. For example,
  73.  * <code>Text</code> nodes may not have children, and adding children to such
  74.  * nodes results in a <code>DOMException</code> being raised.
  75.  * <p>The attributes <code>nodeName</code>, <code>nodeValue</code>  and
  76.  * <code>attributes</code> are  included as a mechanism to get at node
  77.  * information without  casting down to the specific derived interface. In
  78.  * cases where  there is no obvious mapping of these attributes for a specific
  79.  *  <code>nodeType</code> (e.g., <code>nodeValue</code> for an Element  or
  80.  * <code>attributes</code>  for a Comment), this returns <code>null</code>.
  81.  * Note that the  specialized interfaces may contain additional and more
  82.  * convenient mechanisms to get and set the relevant information.
  83.  */
  84. class  CDOM_EXPORT IDOM_Node {
  85.     protected:
  86.     /** @name Constructors and assignment operators */
  87.     //@{
  88.     /**
  89.       * Default constructor for IDOM_Node.  Protected, because
  90.       * IDOM_Node is an abstract base class.
  91.       *
  92.       */
  93.         IDOM_Node() {};
  94.     /**
  95.       * Copy constructor.
  96.       *
  97.       * @param other The object to be copied.
  98.       */
  99.         IDOM_Node(const IDOM_Node &other) {};
  100.     /**
  101.       * Assignment operator.
  102.       *
  103.       * @param other The source to be assigned.
  104.       */
  105.         IDOM_Node & operator = (const IDOM_Node &other) {return *this;};
  106.     public:
  107.    //@}
  108.     /** @name Destructor. */
  109.     //@{
  110.  /**
  111.   * Destructor for IDOM_Node.
  112.   *
  113.   */
  114.         virtual ~IDOM_Node() {};
  115.     //@}
  116.     enum NodeType {
  117.         ELEMENT_NODE                = 1,
  118.         ATTRIBUTE_NODE              = 2,
  119.         TEXT_NODE                   = 3,
  120.         CDATA_SECTION_NODE          = 4,
  121.         ENTITY_REFERENCE_NODE       = 5,
  122.         ENTITY_NODE                 = 6,
  123.         PROCESSING_INSTRUCTION_NODE = 7,
  124.         COMMENT_NODE                = 8,
  125.         DOCUMENT_NODE               = 9,
  126.         DOCUMENT_TYPE_NODE          = 10,
  127.         DOCUMENT_FRAGMENT_NODE      = 11,
  128.         NOTATION_NODE               = 12,
  129.         XML_DECL_NODE               = 13
  130.     };
  131.     /** @name Get functions. */
  132.     //@{
  133.     /**
  134.      * The name of this node, depending on its type; see the table above.
  135.      */
  136.     virtual const XMLCh *   getNodeName() const = 0;
  137.     /**
  138.      * Gets the value of this node, depending on its type.
  139.      *
  140.      * @exception DOMException
  141.      *   NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
  142.      */
  143.     virtual const XMLCh *       getNodeValue() const = 0;
  144.     /**
  145.      * An enum value representing the type of the underlying object.
  146.      */
  147.     virtual short           getNodeType() const = 0;
  148.     /**
  149.      * Gets the parent of this node.
  150.      *
  151.      * All nodes, except <code>Document</code>,
  152.      * <code>DocumentFragment</code>, and <code>Attr</code> may have a parent.
  153.      * However, if a node has just been created and not yet added to the tree,
  154.      * or if it has been removed from the tree, a <code>null</code> IDOM_Node
  155.      * is returned.
  156.      */
  157.     virtual IDOM_Node        *getParentNode() const = 0;
  158.     /**
  159.      * Gets a <code>NodeList</code> that contains all children of this node.
  160.      *
  161.      * If there
  162.      * are no children, this is a <code>NodeList</code> containing no nodes.
  163.      * The content of the returned <code>NodeList</code> is "live" in the sense
  164.      * that, for instance, changes to the children of the node object that
  165.      * it was created from are immediately reflected in the nodes returned by
  166.      * the <code>NodeList</code> accessors; it is not a static snapshot of the
  167.      * content of the node. This is true for every <code>NodeList</code>,
  168.      * including the ones returned by the <code>getElementsByTagName</code>
  169.      * method.
  170.      */
  171.     virtual IDOM_NodeList    *getChildNodes() const = 0;
  172.     /**
  173.      * Gets the first child of this node.
  174.      *
  175.      * If there is no such node, this returns <code>null</code>.
  176.      */
  177.     virtual IDOM_Node        *getFirstChild() const = 0;
  178.     /**
  179.      * Gets the last child of this node.
  180.      *
  181.      * If there is no such node, this returns <code>null</code>.
  182.      */
  183.     virtual IDOM_Node        *getLastChild() const = 0;
  184.     /**
  185.      * Gets the node immediately preceding this node.
  186.      *
  187.      * If there is no such node, this returns <code>null</code>.
  188.      */
  189.     virtual IDOM_Node        *getPreviousSibling() const = 0;
  190.     /**
  191.      * Gets the node immediately following this node.
  192.      *
  193.      * If there is no such node, this returns <code>null</code>.
  194.      */
  195.     virtual IDOM_Node        *getNextSibling() const = 0;
  196.     /**
  197.      * Gets a <code>NamedNodeMap</code> containing the attributes of this node (if it
  198.      * is an <code>Element</code>) or <code>null</code> otherwise.
  199.      */
  200.     virtual IDOM_NamedNodeMap  *getAttributes() const = 0;
  201.     /**
  202.      * Gets the <code>IDOM_Document</code> object associated with this node.
  203.      *
  204.      * This is also
  205.      * the <code>IDOM_Document</code> object used to create new nodes. When this
  206.      * node is a <code>IDOM_Document</code> or a <code>IDOM_DocumentType</code>
  207.      * which is not used with any <code>IDOM_Document</code> yet, this is
  208.      * <code>null</code>.
  209.      *
  210.      * <p><b>"Experimental - subject to change"</b></p>
  211.      *
  212.      */
  213.     virtual IDOM_Document      *getOwnerDocument() const = 0;
  214.     //@}
  215.     /** @name Cloning function. */
  216.     //@{
  217.     /**
  218.      * Returns a duplicate of this node.
  219.      *
  220.      * This function serves as a generic copy constructor for nodes.
  221.      *
  222.      * The duplicate node has no parent (
  223.      * <code>parentNode</code> returns <code>null</code>.).
  224.      * <br>Cloning an <code>Element</code> copies all attributes and their
  225.      * values, including those generated by the  XML processor to represent
  226.      * defaulted attributes, but this method does not copy any text it contains
  227.      * unless it is a deep clone, since the text is contained in a child
  228.      * <code>Text</code> node. Cloning any other type of node simply returns a
  229.      * copy of this node.
  230.      * @param deep If <code>true</code>, recursively clone the subtree under the
  231.      *   specified node; if <code>false</code>, clone only the node itself (and
  232.      *   its attributes, if it is an <code>Element</code>).
  233.      * @return The duplicate node.
  234.      */
  235.     virtual IDOM_Node        * cloneNode(bool deep) const = 0;
  236.     //@}
  237.     /** @name Functions to modify the DOM Node. */
  238.     //@{
  239.     /**
  240.      * Inserts the node <code>newChild</code> before the existing child node
  241.      * <code>refChild</code>.
  242.      *
  243.      * If <code>refChild</code> is <code>null</code>,
  244.      * insert <code>newChild</code> at the end of the list of children.
  245.      * <br>If <code>newChild</code> is a <code>DocumentFragment</code> object,
  246.      * all of its children are inserted, in the same order, before
  247.      * <code>refChild</code>. If the <code>newChild</code> is already in the
  248.      * tree, it is first removed.  Note that a <code>IDOM_Node</code> that
  249.      * has never been assigned to refer to an actual node is == null.
  250.      * @param newChild The node to insert.
  251.      * @param refChild The reference node, i.e., the node before which the new
  252.      *   node must be inserted.
  253.      * @return The node being inserted.
  254.      * @exception DOMException
  255.      *   HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not
  256.      *   allow children of the type of the <code>newChild</code> node, or if
  257.      *   the node to insert is one of this node's ancestors.
  258.      *   <br>WRONG_DOCUMENT_ERR: Raised if <code>newChild</code> was created
  259.      *   from a different document than the one that created this node.
  260.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the node being
  261.      *   inserted is readonly.
  262.      *   <br>NOT_FOUND_ERR: Raised if <code>refChild</code> is not a child of
  263.      *   this node.
  264.      */
  265.     virtual IDOM_Node       *insertBefore(IDOM_Node *newChild,
  266.                                           IDOM_Node *refChild) = 0;
  267.     /**
  268.      * Replaces the child node <code>oldChild</code> with <code>newChild</code>
  269.      * in the list of children, and returns the <code>oldChild</code> node.
  270.      *
  271.      * If <CODE>newChild</CODE> is a <CODE>IDOM_DocumentFragment</CODE> object,
  272.      * <CODE>oldChild</CODE> is replaced by all of the <CODE>IDOM_DocumentFragment</CODE>
  273.      * children, which are inserted in the same order.
  274.      *
  275.      * If the <code>newChild</code> is already in the tree, it is first removed.
  276.      * @param newChild The new node to put in the child list.
  277.      * @param oldChild The node being replaced in the list.
  278.      * @return The node replaced.
  279.      * @exception DOMException
  280.      *   HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not
  281.      *   allow children of the type of the <code>newChild</code> node, or it
  282.      *   the node to put in is one of this node's ancestors.
  283.      *   <br>WRONG_DOCUMENT_ERR: Raised if <code>newChild</code> was created
  284.      *   from a different document than the one that created this node.
  285.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the new node is readonly.
  286.      *   <br>NOT_FOUND_ERR: Raised if <code>oldChild</code> is not a child of
  287.      *   this node.
  288.      */
  289.     virtual IDOM_Node  *replaceChild(IDOM_Node *newChild,
  290.                                      IDOM_Node *oldChild) = 0;
  291.     /**
  292.      * Removes the child node indicated by <code>oldChild</code> from the list
  293.      * of children, and returns it.
  294.      *
  295.      * @param oldChild The node being removed.
  296.      * @return The node removed.
  297.      * @exception DOMException
  298.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  299.      *   <br>NOT_FOUND_ERR: Raised if <code>oldChild</code> is not a child of
  300.      *   this node.
  301.      */
  302.     virtual IDOM_Node        *removeChild(IDOM_Node *oldChild) = 0;
  303.     /**
  304.      * Adds the node <code>newChild</code> to the end of the list of children of
  305.      * this node.
  306.      *
  307.      * If the <code>newChild</code> is already in the tree, it is
  308.      * first removed.
  309.      * @param newChild The node to add.If it is a  <code>DocumentFragment</code>
  310.      *   object, the entire contents of the document fragment are moved into
  311.      *   the child list of this node
  312.      * @return The node added.
  313.      * @exception DOMException
  314.      *   HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not
  315.      *   allow children of the type of the <code>newChild</code> node, or if
  316.      *   the node to append is one of this node's ancestors.
  317.      *   <br>WRONG_DOCUMENT_ERR: Raised if <code>newChild</code> was created
  318.      *   from a different document than the one that created this node.
  319.      *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the node being
  320.      *   appended is readonly.
  321.      */
  322.     virtual IDOM_Node        *appendChild(IDOM_Node *newChild) = 0;
  323.     //@}
  324.     /** @name Query functions. */
  325.     //@{
  326.     /**
  327.      *  This is a convenience method to allow easy determination of whether a
  328.      * node has any children.
  329.      *
  330.      * @return  <code>true</code> if the node has any children,
  331.      *   <code>false</code> if the node has no children.
  332.      */
  333.     virtual bool             hasChildNodes() const = 0;
  334.     //@}
  335.     /** @name Set functions. */
  336.     //@{
  337.     /**
  338.     * Sets the value of the node.
  339.     *
  340.     * Any node which can have a nodeValue (@see getNodeValue) will
  341.     * also accept requests to set it to a string. The exact response to
  342.     * this varies from node to node -- Attribute, for example, stores
  343.     * its values in its children and has to replace them with a new Text
  344.     * holding the replacement value.
  345.     *
  346.     * For most types of Node, value is null and attempting to set it
  347.     * will throw DOMException(NO_MODIFICATION_ALLOWED_ERR). This will
  348.     * also be thrown if the node is read-only.
  349.     */
  350.     virtual void              setNodeValue(const XMLCh  *nodeValue) = 0;
  351.     //@}
  352.     /** @name Functions introduced in DOM Level 2. */
  353.     //@{
  354.     /**
  355.      * Puts all <CODE>IDOM_Text</CODE>
  356.      * nodes in the full depth of the sub-tree underneath this <CODE>IDOM_Node</CODE>,
  357.      * including attribute nodes, into a "normal" form where only markup (e.g.,
  358.      * tags, comments, processing instructions, CDATA sections, and entity
  359.      * references) separates <CODE>IDOM_Text</CODE>
  360.      * nodes, i.e., there are neither adjacent <CODE>IDOM_Text</CODE>
  361.      * nodes nor empty <CODE>IDOM_Text</CODE>
  362.      * nodes. This can be used to ensure that the DOM view of a document is the
  363.      * same as if it were saved and re-loaded, and is useful when operations
  364.      * (such as XPointer lookups) that depend on a particular document tree
  365.      * structure are to be used.
  366.      * <P><B>Note:</B> In cases where the document contains <CODE>IDOM_CDATASections</CODE>,
  367.      * the normalize operation alone may not be sufficient, since XPointers do
  368.      * not differentiate between <CODE>IDOM_Text</CODE>
  369.      * nodes and <CODE>IDOM_CDATASection</CODE>
  370.      * nodes.</P>
  371.      *
  372.      *
  373.      */
  374.     virtual void              normalize() = 0;
  375.     /**
  376.      * Tests whether the DOM implementation implements a specific
  377.      * feature and that feature is supported by this node.
  378.      *
  379.      * <p><b>"Experimental - subject to change"</b></p>
  380.      *
  381.      * @param feature The string of the feature to test. This is the same
  382.      * name as what can be passed to the method <code>hasFeature</code> on
  383.      * <code>IDOM_DOMImplementation</code>.
  384.      * @param version This is the version number of the feature to test. In
  385.      * Level 2, version 1, this is the string "2.0". If the version is not
  386.      * specified, supporting any version of the feature will cause the
  387.      * method to return <code>true</code>.
  388.      * @return Returns <code>true</code> if the specified feature is supported
  389.      * on this node, <code>false</code> otherwise.
  390.      */
  391.     virtual bool      supports(const XMLCh *feature,
  392.                            const XMLCh *version) const = 0;
  393.     /**
  394.      * Get the <em>namespace URI</em> of
  395.      * this node, or <code>null</code> if it is unspecified.
  396.      * <p>
  397.      * This is not a computed value that is the result of a namespace lookup
  398.      * based on an examination of the namespace declarations in scope. It is
  399.      * merely the namespace URI given at creation time.
  400.      * <p>
  401.      * For nodes of any type other than <CODE>ELEMENT_NODE</CODE> and
  402.      * <CODE>ATTRIBUTE_NODE</CODE> and nodes created with a DOM Level 1 method,
  403.      * such as <CODE>createElement</CODE> from the <CODE>IDOM_Document</CODE>
  404.      * interface, this is always <CODE>null</CODE>.
  405.      *
  406.      * <p><b>"Experimental - subject to change"</b></p>
  407.      *
  408.      */
  409.     virtual const XMLCh *         getNamespaceURI() const = 0;
  410.     /**
  411.      * Get the <em>namespace prefix</em>
  412.      * of this node, or <code>null</code> if it is unspecified.
  413.      *
  414.      * <p><b>"Experimental - subject to change"</b></p>
  415.      *
  416.      */
  417.     virtual const XMLCh *          getPrefix() const = 0;
  418.     /**
  419.      * Returns the local part of the <em>qualified name</em> of this node.
  420.      * <p>
  421.      * For nodes created with a DOM Level 1 method, such as
  422.      * <code>createElement</code> from the <code>IDOM_Document</code> interface,
  423.      * it is null.
  424.      *
  425.      *
  426.      */
  427.     virtual const XMLCh *          getLocalName() const = 0;
  428.     /**
  429.      * Set the <em>namespace prefix</em> of this node.
  430.      * <p>
  431.      * Note that setting this attribute, when permitted, changes
  432.      * the <CODE>nodeName</CODE> attribute, which holds the <EM>qualified
  433.      * name</EM>, as well as the <CODE>tagName</CODE> and <CODE>name</CODE>
  434.      * attributes of the <CODE>IDOM_Element</CODE> and <CODE>IDOM_Attr</CODE>
  435.      * interfaces, when applicable.
  436.      * <p>
  437.      * Note also that changing the prefix of an
  438.      * attribute, that is known to have a default value, does not make a new
  439.      * attribute with the default value and the original prefix appear, since the
  440.      * <CODE>namespaceURI</CODE> and <CODE>localName</CODE> do not change.
  441.      *
  442.      *
  443.      * @param prefix The prefix of this node.
  444.      * @exception DOMException
  445.      *   INVALID_CHARACTER_ERR: Raised if the specified prefix contains
  446.      *                          an illegal character.
  447.      * <br>
  448.      *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  449.      * <br>
  450.      *   NAMESPACE_ERR: Raised if the specified <CODE>prefix</CODE> is
  451.      *      malformed, if the <CODE>namespaceURI</CODE> of this node is
  452.      *      <CODE>null</CODE>, if the specified prefix is "xml" and the
  453.      *      <CODE>namespaceURI</CODE> of this node is different from
  454.      *      "http://www.w3.org/XML/1998/namespace", if this node is an attribute
  455.      *      and the specified prefix is "xmlns" and the
  456.      *      <CODE>namespaceURI</CODE> of this node is different from
  457.      *      "http://www.w3.org/2000/xmlns/", or if this node is an attribute and
  458.      *      the <CODE>qualifiedName</CODE> of this node is "xmlns".
  459.      */
  460.     virtual void              setPrefix(const XMLCh * prefix) = 0;
  461.     //@}
  462. };
  463. #endif