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

词法分析

开发平台:

Visual C++

  1. #ifndef NodeImpl_HEADER_GUARD_
  2. #define NodeImpl_HEADER_GUARD_
  3. /*
  4.  * The Apache Software License, Version 1.1
  5.  *
  6.  * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights
  7.  * reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  *
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  *
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in
  18.  *    the documentation and/or other materials provided with the
  19.  *    distribution.
  20.  *
  21.  * 3. The end-user documentation included with the redistribution,
  22.  *    if any, must include the following acknowledgment:
  23.  *       "This product includes software developed by the
  24.  *        Apache Software Foundation (http://www.apache.org/)."
  25.  *    Alternately, this acknowledgment may appear in the software itself,
  26.  *    if and wherever such third-party acknowledgments normally appear.
  27.  *
  28.  * 4. The names "Xerces" and "Apache Software Foundation" must
  29.  *    not be used to endorse or promote products derived from this
  30.  *    software without prior written permission. For written
  31.  *    permission, please contact apache@apache.org.
  32.  *
  33.  * 5. Products derived from this software may not be called "Apache",
  34.  *    nor may "Apache" appear in their name, without prior written
  35.  *    permission of the Apache Software Foundation.
  36.  *
  37.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  38.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  39.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  41.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  44.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  45.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  46.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  47.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48.  * SUCH DAMAGE.
  49.  * ====================================================================
  50.  *
  51.  * This software consists of voluntary contributions made by many
  52.  * individuals on behalf of the Apache Software Foundation, and was
  53.  * originally based on software copyright (c) 1999, International
  54.  * Business Machines, Inc., http://www.ibm.com .  For more information
  55.  * on the Apache Software Foundation, please see
  56.  * <http://www.apache.org/>.
  57.  */
  58. /*
  59.  * $Id: NodeImpl.hpp,v 1.4 2003/05/15 18:25:53 knoaman Exp $
  60.  */
  61. //
  62. //  This file is part of the internal implementation of the C++ XML DOM.
  63. //  It should NOT be included or used directly by application programs.
  64. //
  65. //  Applications should include the file <xercesc/dom/deprecated/DOM.hpp> for the entire
  66. //  DOM API, or DOM_*.hpp for individual DOM classes, where the class
  67. //  name is substituded for the *.
  68. //
  69. /**
  70.  * A NodeImpl doesn't have any children, and can therefore only be directly
  71.  * inherited by classes of nodes that never have any, such as Text nodes. For
  72.  * other types, such as Element, classes must inherit from ParentNode.
  73.  * <P>
  74.  * All nodes in a single document must originate
  75.  * in that document. (Note that this is much tighter than "must be
  76.  * same implementation") Nodes are all aware of their ownerDocument,
  77.  * and attempts to mismatch will throw WRONG_DOCUMENT_ERR.
  78.  * <P>
  79.  * However, to save memory not all nodes always have a direct reference
  80.  * to their ownerDocument. When a node is owned by another node it relies
  81.  * on its owner to store its ownerDocument. Parent nodes always store it
  82.  * though, so there is never more than one level of indirection.
  83.  * And when a node doesn't have an owner, ownerNode refers to its
  84.  * ownerDocument.
  85.  **/
  86. #include <xercesc/util/XMemory.hpp>
  87. #include "NodeListImpl.hpp"
  88. #include "DOMString.hpp"
  89. XERCES_CPP_NAMESPACE_BEGIN
  90. class NamedNodeMapImpl;
  91. class NodeListImpl;
  92. class DocumentImpl;
  93. //  define 'null' is used extensively in the DOM implementation code,
  94. //  as a consequence of its Java origins.
  95. //  MSVC 5.0 compiler has problems with overloaded function resolution
  96. // when using the const int definition.
  97. //
  98. #if defined(XML_CSET)
  99. const int null = 0;
  100. #else
  101. #define null 0
  102. #endif
  103. class CDOM_EXPORT NodeImpl: public NodeListImpl {
  104. public:
  105.     NodeImpl                *ownerNode; // typically the parent but not always!
  106.     // data
  107.     unsigned short flags;
  108.     static const unsigned short READONLY;
  109.     static const unsigned short SYNCDATA;
  110.     static const unsigned short SYNCCHILDREN;
  111.     static const unsigned short OWNED;
  112.     static const unsigned short FIRSTCHILD;
  113.     static const unsigned short SPECIFIED;
  114.     static const unsigned short IGNORABLEWS;
  115.     static const unsigned short SETVALUE;
  116.     static const unsigned short ID_ATTR;
  117.     static const unsigned short USERDATA;
  118.     static const unsigned short HASSTRING;
  119.     static int              gLiveNodeImpls; // Counters for debug & tuning.
  120.     static int              gTotalNodeImpls;
  121. public:
  122.     NodeImpl(DocumentImpl *ownerDocument);
  123.     NodeImpl(const NodeImpl &other);
  124.     virtual ~NodeImpl();
  125.     // Dynamic Cast replacement functions.
  126.     virtual bool isAttrImpl();
  127.     virtual bool isCDATASectionImpl();
  128.     virtual bool isDocumentFragmentImpl();
  129.     virtual bool isDocumentImpl();
  130.     virtual bool isDocumentTypeImpl();
  131.     virtual bool isElementImpl();
  132.     virtual bool isEntityReference();
  133.     virtual bool isTextImpl();
  134.     virtual void changed();
  135.     virtual int changes();
  136.     virtual NodeImpl *appendChild(NodeImpl *newChild);
  137.     virtual NodeImpl * cloneNode(bool deep) = 0;
  138.     static void deleteIf(NodeImpl *thisNode);
  139.     virtual NamedNodeMapImpl * getAttributes();
  140.     virtual NodeListImpl *getChildNodes();
  141.     virtual NodeImpl * getFirstChild();
  142.     virtual NodeImpl * getLastChild();
  143.     virtual unsigned int getLength();
  144.     virtual NodeImpl * getNextSibling();
  145.     virtual DOMString getNodeName() = 0;
  146.     virtual short getNodeType() = 0;
  147.     virtual DOMString getNodeValue();
  148.     virtual DocumentImpl * getOwnerDocument();
  149.     virtual NodeImpl * getParentNode();
  150.     virtual NodeImpl*  getPreviousSibling();
  151.     virtual void *getUserData();
  152.     virtual bool        hasChildNodes();
  153.     virtual NodeImpl    *insertBefore(NodeImpl *newChild, NodeImpl *refChild);
  154.     static  bool        isKidOK(NodeImpl *parent, NodeImpl *child);
  155.     virtual NodeImpl    *item(unsigned int index);
  156.     virtual void        referenced();
  157.     virtual NodeImpl    * removeChild(NodeImpl *oldChild);
  158.     virtual NodeImpl    *replaceChild(NodeImpl *newChild, NodeImpl *oldChild);
  159.     virtual void        setNodeValue(const DOMString &value);
  160.     virtual void        setReadOnly(bool readOnly, bool deep);
  161.     virtual void        setUserData(void *value);
  162.     virtual DOMString   toString();
  163.     virtual void        unreferenced();
  164.     //Introduced in DOM Level 2
  165.     virtual void normalize();
  166.     virtual bool isSupported(const DOMString &feature, const DOMString &version);
  167.     virtual DOMString getNamespaceURI();
  168.     virtual DOMString   getPrefix();
  169.     virtual DOMString   getLocalName();
  170.     virtual void        setPrefix(const DOMString &prefix);
  171.     virtual bool        hasAttributes();
  172. protected:
  173.     //Utility, not part of DOM Level 2 API
  174.     static const DOMString& mapPrefix(const DOMString &prefix,
  175. const DOMString &namespaceURI, short nType);
  176.     static DOMString getXmlnsString();
  177.     static DOMString getXmlnsURIString();
  178.     static DOMString getXmlString();
  179.     static DOMString getXmlURIString();
  180. public: // should really be protected - ALH
  181.     virtual void setOwnerDocument(DocumentImpl *doc);
  182.     // NON-DOM
  183.     // unlike getOwnerDocument this never returns null, even for Document nodes
  184.     virtual DocumentImpl * getDocument();
  185.     /*
  186.      * Flags setters and getters
  187.      */
  188.     inline bool isReadOnly() const {
  189.         return (flags & READONLY) != 0;
  190.     }
  191.     inline void isReadOnly(bool value) {
  192.         flags = (value ? flags | READONLY : flags & ~READONLY);
  193.     }
  194.     inline bool needsSyncData() const {
  195.         return (flags & SYNCDATA) != 0;
  196.     }
  197.     inline void needsSyncData(bool value) {
  198.         flags = (value ? flags | SYNCDATA : flags & ~SYNCDATA);
  199.     }
  200.     inline bool needsSyncChildren() const {
  201.         return (flags & SYNCCHILDREN) != 0;
  202.     }
  203.     inline void needsSyncChildren(bool value) {
  204.         flags = (value ? flags | SYNCCHILDREN : flags & ~SYNCCHILDREN);
  205.     }
  206.     inline bool isOwned() const {
  207.         return (flags & OWNED) != 0;
  208.     }
  209.     inline void isOwned(bool value) {
  210.         flags = (value ? flags | OWNED : flags & ~OWNED);
  211.     }
  212.     inline bool isFirstChild() const {
  213.         return (flags & FIRSTCHILD) != 0;
  214.     }
  215.     inline void isFirstChild(bool value) {
  216.         flags = (value ? flags | FIRSTCHILD : flags & ~FIRSTCHILD);
  217.     }
  218.     inline bool isSpecified() const {
  219.         return (flags & SPECIFIED) != 0;
  220.     }
  221.     inline void isSpecified(bool value) {
  222.         flags = (value ? flags | SPECIFIED : flags & ~SPECIFIED);
  223.     }
  224.     inline bool ignorableWhitespace() const {
  225.         return (flags & IGNORABLEWS) != 0;
  226.     }
  227.     inline void ignorableWhitespace(bool value) {
  228.         flags = (value ? flags | IGNORABLEWS : flags & ~IGNORABLEWS);
  229.     }
  230.     inline bool setValueCalled() const {
  231.         return (flags & SETVALUE) != 0;
  232.     }
  233.     inline void setValueCalled(bool value) {
  234.         flags = (value ? flags | SETVALUE : flags & ~SETVALUE);
  235.     }
  236.     inline bool isIdAttr() const {
  237.         return (flags & ID_ATTR) != 0;
  238.     }
  239.     inline void isIdAttr(bool value) {
  240.         flags = (value ? flags | ID_ATTR : flags & ~ID_ATTR);
  241.     }
  242.     inline bool hasUserData() const {
  243.         return (flags & USERDATA) != 0;
  244.     }
  245.     inline void hasUserData(bool value) {
  246.         flags = (value ? flags | USERDATA : flags & ~USERDATA);
  247.     }
  248.     inline bool hasStringValue() const {
  249.         return (flags & HASSTRING) != 0;
  250.     }
  251.     inline void hasStringValue(bool value) {
  252.         flags = (value ? flags | HASSTRING : flags & ~HASSTRING);
  253.     }
  254.     // -----------------------------------------------------------------------
  255.     //  Notification that lazy data has been deleted
  256.     // -----------------------------------------------------------------------
  257. static void reinitNodeImpl();
  258. };
  259. XERCES_CPP_NAMESPACE_END
  260. #endif