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

xml/soap/webservice

开发平台:

C/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-2001 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.25 2001/10/25 21:47:14 peiyongz 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 <dom/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 <util/XercesDefs.hpp>
  87. #include "NodeListImpl.hpp"
  88. #include "DOMString.hpp"
  89. class NamedNodeMapImpl;
  90. class NodeListImpl;
  91. class DocumentImpl;
  92. //  define 'null' is used extensively in the DOM implementation code,
  93. //  as a consequence of its Java origins.
  94. //  MSVC 5.0 compiler has problems with overloaded function resolution
  95. // when using the const int definition.
  96. //
  97. #if defined(XML_CSET)
  98. const int null = 0;
  99. #else
  100. #define null 0
  101. #endif
  102. class CDOM_EXPORT NodeImpl: public NodeListImpl {
  103. public:
  104.     NodeImpl                *ownerNode; // typically the parent but not always!
  105.     // data
  106.     unsigned short flags;
  107.     static const unsigned short READONLY;
  108.     static const unsigned short SYNCDATA;
  109.     static const unsigned short SYNCCHILDREN;
  110.     static const unsigned short OWNED;
  111.     static const unsigned short FIRSTCHILD;
  112.     static const unsigned short SPECIFIED;
  113.     static const unsigned short IGNORABLEWS;
  114.     static const unsigned short SETVALUE;
  115.     static const unsigned short ID_ATTR;
  116.     static const unsigned short USERDATA;
  117.     static const unsigned short HASSTRING;
  118.     static int              gLiveNodeImpls; // Counters for debug & tuning.
  119.     static int              gTotalNodeImpls;
  120. public:
  121.     NodeImpl(DocumentImpl *ownerDocument);
  122.     NodeImpl(const NodeImpl &other);
  123.     virtual ~NodeImpl();
  124.     // Dynamic Cast replacement functions.
  125.     virtual bool isAttrImpl();
  126.     virtual bool isCDATASectionImpl();
  127.     virtual bool isDocumentFragmentImpl();
  128.     virtual bool isDocumentImpl();
  129.     virtual bool isDocumentTypeImpl();
  130.     virtual bool isElementImpl();
  131.     virtual bool isEntityReference();
  132.     virtual bool isTextImpl();
  133.     virtual void changed();
  134.     virtual int changes();
  135.     virtual NodeImpl *appendChild(NodeImpl *newChild);
  136.     virtual NodeImpl * cloneNode(bool deep) = 0;
  137.     static void deleteIf(NodeImpl *thisNode);
  138.     virtual NamedNodeMapImpl * getAttributes();
  139.     virtual NodeListImpl *getChildNodes();
  140.     virtual NodeImpl * getFirstChild();
  141.     virtual NodeImpl * getLastChild();
  142.     virtual unsigned int getLength();
  143.     virtual NodeImpl * getNextSibling();
  144.     virtual DOMString getNodeName() = 0;
  145.     virtual short getNodeType() = 0;
  146.     virtual DOMString getNodeValue();
  147.     virtual DocumentImpl * getOwnerDocument();
  148.     virtual NodeImpl * getParentNode();
  149.     virtual NodeImpl*  getPreviousSibling();
  150.     virtual void *getUserData();
  151.     virtual bool        hasChildNodes();
  152.     virtual NodeImpl    *insertBefore(NodeImpl *newChild, NodeImpl *refChild);
  153.     static  bool        isKidOK(NodeImpl *parent, NodeImpl *child);
  154.     virtual NodeImpl    *item(unsigned int index);
  155.     virtual void        referenced();
  156.     virtual NodeImpl    * removeChild(NodeImpl *oldChild);
  157.     virtual NodeImpl    *replaceChild(NodeImpl *newChild, NodeImpl *oldChild);
  158.     virtual void        setNodeValue(const DOMString &value);
  159.     virtual void        setReadOnly(bool readOnly, bool deep);
  160.     virtual void        setUserData(void *value);
  161.     virtual DOMString   toString();
  162.     virtual void        unreferenced();
  163.     //Introduced in DOM Level 2
  164.     virtual void normalize();
  165.     virtual bool supports(const DOMString &feature, const DOMString &version);
  166.     virtual DOMString getNamespaceURI();
  167.     virtual DOMString   getPrefix();
  168.     virtual DOMString   getLocalName();
  169.     virtual void        setPrefix(const DOMString &prefix);
  170. protected:
  171.     //Utility, not part of DOM Level 2 API
  172.     static const DOMString& mapPrefix(const DOMString &prefix,
  173. const DOMString &namespaceURI, short nType);
  174.     static DOMString getXmlnsString();
  175.     static DOMString getXmlnsURIString();
  176.     static DOMString getXmlString();
  177.     static DOMString getXmlURIString();
  178. public: // should really be protected - ALH
  179.     virtual void setOwnerDocument(DocumentImpl *doc);
  180.     // NON-DOM
  181.     // unlike getOwnerDocument this never returns null, even for Document nodes
  182.     virtual DocumentImpl * getDocument();
  183.     /*
  184.      * Flags setters and getters
  185.      */
  186.     inline bool isReadOnly() const {
  187.         return (flags & READONLY) != 0;
  188.     }
  189.     inline void isReadOnly(bool value) {
  190.         flags = (value ? flags | READONLY : flags & ~READONLY);
  191.     }
  192.     inline bool needsSyncData() const {
  193.         return (flags & SYNCDATA) != 0;
  194.     }
  195.     inline void needsSyncData(bool value) {
  196.         flags = (value ? flags | SYNCDATA : flags & ~SYNCDATA);
  197.     }
  198.     inline bool needsSyncChildren() const {
  199.         return (flags & SYNCCHILDREN) != 0;
  200.     }
  201.     inline void needsSyncChildren(bool value) {
  202.         flags = (value ? flags | SYNCCHILDREN : flags & ~SYNCCHILDREN);
  203.     }
  204.     inline bool isOwned() const {
  205.         return (flags & OWNED) != 0;
  206.     }
  207.     inline void isOwned(bool value) {
  208.         flags = (value ? flags | OWNED : flags & ~OWNED);
  209.     }
  210.     inline bool isFirstChild() const {
  211.         return (flags & FIRSTCHILD) != 0;
  212.     }
  213.     inline void isFirstChild(bool value) {
  214.         flags = (value ? flags | FIRSTCHILD : flags & ~FIRSTCHILD);
  215.     }
  216.     inline bool isSpecified() const {
  217.         return (flags & SPECIFIED) != 0;
  218.     }
  219.     inline void isSpecified(bool value) {
  220.         flags = (value ? flags | SPECIFIED : flags & ~SPECIFIED);
  221.     }
  222.     inline bool ignorableWhitespace() const {
  223.         return (flags & IGNORABLEWS) != 0;
  224.     }
  225.     inline void ignorableWhitespace(bool value) {
  226.         flags = (value ? flags | IGNORABLEWS : flags & ~IGNORABLEWS);
  227.     }
  228.     inline bool setValueCalled() const {
  229.         return (flags & SETVALUE) != 0;
  230.     }
  231.     inline void setValueCalled(bool value) {
  232.         flags = (value ? flags | SETVALUE : flags & ~SETVALUE);
  233.     }
  234.     inline bool isIdAttr() const {
  235.         return (flags & ID_ATTR) != 0;
  236.     }
  237.     inline void isIdAttr(bool value) {
  238.         flags = (value ? flags | ID_ATTR : flags & ~ID_ATTR);
  239.     }
  240.     inline bool hasUserData() const {
  241.         return (flags & USERDATA) != 0;
  242.     }
  243.     inline void hasUserData(bool value) {
  244.         flags = (value ? flags | USERDATA : flags & ~USERDATA);
  245.     }
  246.     inline bool hasStringValue() const {
  247.         return (flags & HASSTRING) != 0;
  248.     }
  249.     inline void hasStringValue(bool value) {
  250.         flags = (value ? flags | HASSTRING : flags & ~HASSTRING);
  251.     }
  252.     // -----------------------------------------------------------------------
  253.     //  Notification that lazy data has been deleted
  254.     // -----------------------------------------------------------------------
  255. static void reinitNodeImpl();   
  256. };
  257. #endif