DOM_Element.hpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:19k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2002 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.  * $Id: DOM_Element.hpp,v 1.4 2003/01/03 16:40:13 tng Exp $
  58.  */
  59. #ifndef DOM_Element_HEADER_GUARD_
  60. #define DOM_Element_HEADER_GUARD_
  61. #include <xercesc/util/XercesDefs.hpp>
  62. #include "DOM_Node.hpp"
  63. XERCES_CPP_NAMESPACE_BEGIN
  64. class DOM_Attr;
  65. class DOM_NodeList;
  66. class ElementImpl;
  67. /**
  68.  * By far the vast majority of objects (apart from text) that authors
  69.  * encounter when traversing a document are <code>DOM_Element</code> nodes.
  70.  *
  71.  * Assume the following XML document:&lt;elementExample id="demo"&gt;
  72.  * &lt;subelement1/&gt;
  73.  * &lt;subelement2&gt;&lt;subsubelement/&gt;&lt;/subelement2&gt;
  74.  * &lt;/elementExample&gt;
  75.  * <p>When represented using DOM, the top node is an <code>DOM_Element</code> node
  76.  * for "elementExample", which contains two child <code>DOM_Element</code> nodes,
  77.  * one for "subelement1" and one for "subelement2". "subelement1" contains no
  78.  * child nodes.
  79.  * <p>Elements may have attributes associated with them; since the
  80.  * <code>DOM_Element</code> interface inherits from <code>DOM_Node</code>, the generic
  81.  *  <code>DOM_Node</code> interface method <code>getAttributes</code> may be used
  82.  * to retrieve the set of all attributes for an element.  There are methods on
  83.  *  the <code>DOM_Element</code> interface to retrieve either an <code>DOM_Attr</code>
  84.  *  object by name or an attribute value by name. In XML, where an attribute
  85.  * value may contain entity references, an <code>DOM_Attr</code> object should be
  86.  * retrieved to examine the possibly fairly complex sub-tree representing the
  87.  * attribute value. On the other hand, in HTML, where all attributes have
  88.  * simple string values, methods to directly access an attribute value can
  89.  * safely be used as a convenience.
  90.  */
  91. class CDOM_EXPORT DOM_Element: public DOM_Node {
  92. private:
  93. public:
  94.     /** @name Constructors and assignment operator */
  95.     //@{
  96.     /**
  97.     * Default constructor for DOM_Element.  The resulting object does not
  98.     * refer to an actual Element node; it will compare == to 0, and is similar
  99.     * to a null object reference variable in Java.  It may subsequently be
  100.     * assigned to refer to an actual Element node.
  101.     * <p>
  102.     * New comment nodes are created by DOM_Document::createElement().
  103.       *
  104.       */
  105.     DOM_Element();
  106.     /**
  107.       * Copy constructor.  Creates a new <code>DOM_Element</code> that refers to the
  108.       * same underlying actual element as the original.
  109.       *
  110.       * @param other The object to be copied
  111.       */
  112.     DOM_Element(const DOM_Element &other);
  113.     /**
  114.       * Assignment operator.
  115.       *
  116.       * @param other The object to be copied.
  117.       */
  118.     DOM_Element & operator = (const DOM_Element &other);
  119.     /**
  120.       * Assignment operator.  This overloaded variant is provided for
  121.       *   the sole purpose of setting a DOM_Node reference variable to
  122.       *   zero.  Nulling out a reference variable in this way will decrement
  123.       *   the reference count on the underlying Node object that the variable
  124.       *   formerly referenced.  This effect is normally obtained when reference
  125.       *   variable goes out of scope, but zeroing them can be useful for
  126.       *   global instances, or for local instances that will remain in scope
  127.       *   for an extended time,  when the storage belonging to the underlying
  128.       *   node needs to be reclaimed.
  129.       *
  130.       * @param val   Only a value of 0, or null, is allowed.
  131.       */
  132.     DOM_Element & operator = (const DOM_NullPtr *val);
  133.     //@}
  134.     /** @name Destructor. */
  135.     //@{
  136.  /**
  137.       * Destructor.  The object being destroyed is the reference
  138.       * object, not the underlying Element itself.
  139.   *
  140.   */
  141.     ~DOM_Element();
  142.     //@}
  143.     /** @name Getter functions. */
  144.     //@{
  145.   /**
  146.    * The name of the element.
  147.    *
  148.    * For example, in: &lt;elementExample
  149.    * id="demo"&gt;  ... &lt;/elementExample&gt; , <code>tagName</code> has
  150.    * the value <code>"elementExample"</code>. Note that this is
  151.    * case-preserving in XML, as are all of the operations of the DOM.
  152.    */
  153.   DOMString         getTagName() const;
  154.   /**
  155.    * Retrieves an attribute value by name.
  156.    *
  157.    * @param name The name of the attribute to retrieve.
  158.    * @return The <code>DOM_Attr</code> value as a string, or the empty  string if
  159.    *   that attribute does not have a specified or default value.
  160.    */
  161.   DOMString         getAttribute(const DOMString &name) const;
  162.   /**
  163.    * Retrieves an <code>DOM_Attr</code> node by name.
  164.    *
  165.    * @param name The name (<CODE>nodeName</CODE>) of the attribute to retrieve.
  166.    * @return The <code>DOM_Attr</code> node with the specified name (<CODE>nodeName</CODE>) or
  167.    *   <code>null</code> if there is no such attribute.
  168.    */
  169.   DOM_Attr        getAttributeNode(const DOMString &name) const;
  170.   /**
  171.    * Returns a <code>NodeList</code> of all descendant elements with a given
  172.    * tag name, in the order in which they would be encountered in a preorder
  173.    * traversal of the <code>DOM_Element</code> tree.
  174.    *
  175.    * @param name The name of the tag to match on. The special value "*"
  176.    *   matches all tags.
  177.    * @return A list of matching <code>DOM_Element</code> nodes.
  178.    */
  179.   DOM_NodeList    getElementsByTagName(const DOMString &name) const;
  180.   //@}
  181.   /** @name Set functions. */
  182.   //@{
  183.   /**
  184.    * Adds a new attribute.
  185.    *
  186.    * If an attribute with that name is already present
  187.    * in the element, its value is changed to be that of the value parameter.
  188.    * This value is a simple string, it is not parsed as it is being set. So
  189.    * any markup (such as syntax to be recognized as an entity reference) is
  190.    * treated as literal text, and needs to be appropriately escaped by the
  191.    * implementation when it is written out. In order to assign an attribute
  192.    * value that contains entity references, the user must create an
  193.    * <code>DOM_Attr</code> node plus any <code>Text</code> and
  194.    * <code>EntityReference</code> nodes, build the appropriate subtree, and
  195.    * use <code>setAttributeNode</code> to assign it as the value of an
  196.    * attribute.
  197.    * @param name The name of the attribute to create or alter.
  198.    * @param value Value to set in string form.
  199.    * @exception DOMException
  200.    *   INVALID_CHARACTER_ERR: Raised if the specified name contains an
  201.    *   illegal character.
  202.    *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  203.    */
  204.    void             setAttribute(const DOMString &name,
  205.                                  const DOMString &value);
  206.    /**
  207.     * Adds a new attribute.
  208.     *
  209.     * If an attribute with that name (<CODE>nodeName</CODE>) is already present
  210.     * in the element, it is replaced by the new one.
  211.     * @param newAttr The <code>DOM_Attr</code> node to add to the attribute list.
  212.     * @return If the <code>newAttr</code> attribute replaces an existing
  213.     *   attribute, the replaced
  214.     *   <code>DOM_Attr</code> node is returned, otherwise <code>null</code> is
  215.     *   returned.
  216.     * @exception DOMException
  217.     *   WRONG_DOCUMENT_ERR: Raised if <code>newAttr</code> was created from a
  218.     *   different document than the one that created the element.
  219.     *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  220.     *   <br>INUSE_ATTRIBUTE_ERR: Raised if <code>newAttr</code> is already an
  221.     *   attribute of another <code>DOM_Element</code> object. The DOM user must
  222.     *   explicitly clone <code>DOM_Attr</code> nodes to re-use them in other
  223.     *   elements.
  224.     */
  225.    DOM_Attr        setAttributeNode(DOM_Attr newAttr);
  226.    //@}
  227.    /** @name Functions which modify the Element. */
  228.    //@{
  229.   /**
  230.    * Removes the specified attribute node.
  231.    * If the removed <CODE>DOM_Attr</CODE>
  232.    *   has a default value it is immediately replaced. The replacing attribute
  233.    *   has the same namespace URI and local name, as well as the original prefix,
  234.    *   when applicable.
  235.    *
  236.    * @param oldAttr The <code>DOM_Attr</code> node to remove from the attribute
  237.    *   list.
  238.    * @return The <code>DOM_Attr</code> node that was removed.
  239.    * @exception DOMException
  240.    *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  241.    *   <br>NOT_FOUND_ERR: Raised if <code>oldAttr</code> is not an attribute
  242.    *   of the element.
  243.    */
  244.   DOM_Attr        removeAttributeNode(DOM_Attr oldAttr);
  245.   /**
  246.    * Removes an attribute by name.
  247.    *
  248.    * If the removed attribute
  249.    *   is known to have a default value, an attribute immediately appears
  250.    *   containing the default value as well as the corresponding namespace URI,
  251.    *   local name, and prefix when applicable.<BR>To remove an attribute by local
  252.    *   name and namespace URI, use the <CODE>removeAttributeNS</CODE> method.
  253.    * @param name The name of the attribute to remove.
  254.    * @exception DOMException
  255.    *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  256.    */
  257.   void              removeAttribute(const DOMString &name);
  258.   //@}
  259.   /** @name Functions introduced in DOM Level 2. */
  260.   //@{
  261.   /**
  262.    * Retrieves an attribute value by local name and namespace URI.
  263.    *
  264.    * @param namespaceURI The <em>namespace URI</em> of
  265.    *    the attribute to retrieve.
  266.    * @param localName The <em>local name</em> of the
  267.    *    attribute to retrieve.
  268.    * @return The <code>DOM_Attr</code> value as a string, or an <CODE>null</CODE> if
  269.    *    that attribute does not have a specified or default value.
  270.    */
  271.   DOMString         getAttributeNS(const DOMString &namespaceURI,
  272. const DOMString &localName) const;
  273.   /**
  274.    * Adds a new attribute. If an attribute with the same
  275.    * local name and namespace URI is already present on the element, its prefix
  276.    * is changed to be the prefix part of the <CODE>qualifiedName</CODE>, and
  277.    * its value is changed to be the <CODE>value</CODE> parameter. This value is
  278.    * a simple string, it is not parsed as it is being set. So any markup (such
  279.    * as syntax to be recognized as an entity reference) is treated as literal
  280.    * text, and needs to be appropriately escaped by the implementation when it
  281.    * is written out. In order to assign an attribute value that contains entity
  282.    * references, the user must create an <CODE>DOM_Attr</CODE>
  283.    * node plus any <CODE>DOM_Text</CODE> and <CODE>DOM_EntityReference</CODE>
  284.    * nodes, build the appropriate subtree, and use
  285.    * <CODE>setAttributeNodeNS</CODE> or <CODE>setAttributeNode</CODE> to assign
  286.    * it as the value of an attribute.
  287.    *
  288.    * @param namespaceURI The <em>namespace URI</em> of
  289.    *    the attribute to create or alter.
  290.    * @param qualifiedName The <em>qualified name</em> of the
  291.    *    attribute to create or alter.
  292.    * @param value The value to set in string form.
  293.    * @exception DOMException
  294.    *   INVALID_CHARACTER_ERR: Raised if the specified qualified name contains an
  295.    *   illegal character.
  296.    *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  297.    * <br>
  298.    *   NAMESPACE_ERR: Raised if the <CODE>qualifiedName</CODE> is
  299.    *        malformed, if the <CODE>qualifiedName</CODE> has a prefix and the
  300.    *        <CODE>namespaceURI</CODE> is <CODE>null</CODE> or an empty string,
  301.    *        if the <CODE>qualifiedName</CODE> has a prefix that is "xml" and the
  302.    *        <CODE>namespaceURI</CODE> is different from
  303.    *        "http://www.w3.org/XML/1998/namespace", if the
  304.    *        <CODE>qualifiedName</CODE> has a prefix that is "xmlns" and the
  305.    *        <CODE>namespaceURI</CODE> is different from
  306.    *        "http://www.w3.org/2000/xmlns/", or if the
  307.    *        <CODE>qualifiedName</CODE> is "xmlns" and the
  308.    *        <CODE>namespaceURI</CODE> is different from
  309.    *        "http://www.w3.org/2000/xmlns/".
  310.    */
  311.    void             setAttributeNS(const DOMString &namespaceURI,
  312. const DOMString &qualifiedName, const DOMString &value);
  313.   /**
  314.    * Removes an attribute by local name and namespace URI. If the
  315.    * removed attribute has a default value it is immediately replaced.
  316.    * The replacing attribute has the same namespace URI and local name, as well as
  317.    * the original prefix.
  318.    *
  319.    * @param namespaceURI The <em>namespace URI</em> of
  320.    *    the attribute to remove.
  321.    * @param localName The <em>local name</em> of the
  322.    *    attribute to remove.
  323.    * @exception DOMException
  324.    *   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  325.    */
  326.   void              removeAttributeNS(const DOMString &namespaceURI,
  327. const DOMString &localName);
  328.   /**
  329.    * Retrieves an <code>DOM_Attr</code> node by local name and namespace URI.
  330.    *
  331.    * @param namespaceURI The <em>namespace URI</em> of
  332.    *    the attribute to retrieve.
  333.    * @param localName The <em>local name</em> of the
  334.    *    attribute to retrieve.
  335.    * @return The <code>DOM_Attr</code> node with the specified attribute local
  336.    *    name and namespace URI or <code>null</code> if there is no such attribute.
  337.    */
  338.   DOM_Attr        getAttributeNodeNS(const DOMString &namespaceURI,
  339. const DOMString &localName) const;
  340.    /**
  341.     * Adds a new attribute.
  342.     *
  343.     * If an attribute with that local name and namespace URI is already present
  344.     * in the element, it is replaced by the new one.
  345.     *
  346.     * @param newAttr The <code>DOM_Attr</code> node to add to the attribute list.
  347.     * @return If the <code>newAttr</code> attribute replaces an existing
  348.     *    attribute with the same <em>local name</em> and <em>namespace URI</em>,
  349.     *    the replaced <code>DOM_Attr</code> node is
  350.     *    returned, otherwise <code>null</code> is returned.
  351.     * @exception DOMException
  352.     *   WRONG_DOCUMENT_ERR: Raised if <code>newAttr</code> was created from a
  353.     *   different document than the one that created the element.
  354.     *   <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  355.     *   <br>INUSE_ATTRIBUTE_ERR: Raised if <code>newAttr</code> is already an
  356.     *   attribute of another <code>DOM_Element</code> object. The DOM user must
  357.     *   explicitly clone <code>DOM_Attr</code> nodes to re-use them in other
  358.     *   elements.
  359.     */
  360.    DOM_Attr        setAttributeNodeNS(DOM_Attr newAttr);
  361.   /**
  362.    * Returns a <code>DOM_NodeList</code> of all the <code>DOM_Element</code>s
  363.    * with a given local name and namespace URI in the order in which they
  364.    * would be encountered in a preorder traversal of the
  365.    * <code>DOM_Document</code> tree, starting from this node.
  366.    *
  367.    * @param namespaceURI The <em>namespace URI</em> of
  368.    *    the elements to match on. The special value "*" matches all
  369.    *    namespaces.
  370.    * @param localName The <em>local name</em> of the
  371.    *    elements to match on. The special value "*" matches all local names.
  372.    * @return A new <code>DOM_NodeList</code> object containing all the matched
  373.    *    <code>DOM_Element</code>s.
  374.    */
  375.   DOM_NodeList    getElementsByTagNameNS(const DOMString &namespaceURI,
  376. const DOMString &localName) const;
  377.     /**
  378.      *  Returns whether this node (if it is an element) has any attributes.
  379.      * @return <code>true</code> if this node has any attributes,
  380.      *   <code>false</code> otherwise.
  381.      */
  382.     bool         hasAttributes() const;
  383.     /**
  384.      * Returns <code>true</code> when an attribute with a given name is
  385.      * specified on this element or has a default value, <code>false</code>
  386.      * otherwise.
  387.      * @param name The name of the attribute to look for.
  388.      * @return <code>true</code> if an attribute with the given name is
  389.      *   specified on this element or has a default value, <code>false</code>
  390.      *    otherwise.
  391.      */
  392.     bool         hasAttribute(const DOMString &name) const;
  393.     /**
  394.      * Returns <code>true</code> when an attribute with a given local name and
  395.      * namespace URI is specified on this element or has a default value,
  396.      * <code>false</code> otherwise. HTML-only DOM implementations do not
  397.      * need to implement this method.
  398.      * @param namespaceURI The namespace URI of the attribute to look for.
  399.      * @param localName The local name of the attribute to look for.
  400.      * @return <code>true</code> if an attribute with the given local name
  401.      *   and namespace URI is specified or has a default value on this
  402.      *   element, <code>false</code> otherwise.
  403.      * @since DOM Level 2
  404.      */
  405.     bool         hasAttributeNS(const DOMString &namespaceURI,
  406.                                 const DOMString &localName) const;
  407.   //@}
  408.   protected:
  409.      DOM_Element(ElementImpl *impl);
  410.      friend class DOM_Document;
  411.      friend class DOM_Attr;
  412. };
  413. XERCES_CPP_NAMESPACE_END
  414. #endif