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

xml/soap/webservice

开发平台:

C/C++

  1. #ifndef DocumentImpl_HEADER_GUARD_
  2. #define DocumentImpl_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: DocumentImpl.hpp,v 1.25 2001/12/07 01:35:28 tng 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. #include <util/XercesDefs.hpp>
  70. #include "ParentNode.hpp"
  71. #include "DOM_Node.hpp"
  72. #include "DOM_Element.hpp"
  73. #include "util/RefVectorOf.hpp"
  74. #include "util/RefHashTableOf.hpp"
  75. #include "XMLDeclImpl.hpp"
  76. class DocumentTypeImpl;
  77. class ElementImpl;
  78. class AttrImpl;
  79. class CDATASectionImpl;
  80. class CommentImpl;
  81. class DeepNodeListImpl;
  82. class DocumentFragmentImpl;
  83. class DocumentTypeImpl;
  84. class DStringPool;
  85. class EntityImpl;
  86. class EntityReferenceImpl;
  87. class NotationImpl;
  88. class ProcessingInstructionImpl;
  89. class TextImpl;
  90. class NodeIteratorImpl;
  91. class TreeWalkerImpl;
  92. class DOM_NodeFilter;
  93. class NodeFilterImpl;
  94. class DOM_DOMImplementation;
  95. class DOMString;
  96. class NodeIDMap;
  97. class RangeImpl;
  98. typedef RefVectorOf<NodeIteratorImpl> NodeIterators;
  99. typedef RefVectorOf<TreeWalkerImpl> TreeWalkers;
  100. typedef RefVectorOf<RangeImpl> RangeImpls;
  101. class CDOM_EXPORT DocumentImpl: public ParentNode {
  102. private:
  103.     // -----------------------------------------------------------------------
  104.     //  Private data types
  105.     // -----------------------------------------------------------------------
  106.     void setDocumentType(DocumentTypeImpl *doctype);
  107.     DocumentTypeImpl            *docType;
  108.     ElementImpl                 *docElement;
  109.     DStringPool                 *namePool;
  110.     NodeIDMap                   *fNodeIDMap;      // for use by GetElementsById().
  111.     NodeIterators               *iterators;
  112.     TreeWalkers                 *treeWalkers;
  113. RefHashTableOf<void> *userData;
  114.     RangeImpls                  *ranges;
  115.     /**
  116.      * Number of alterations made to this document since its creation.
  117.      * Serves as a "dirty bit" so that live objects such as NodeList can
  118.      * recognize when an alteration has been made and discard its cached
  119.      * state information.
  120.      * <p>
  121.      * Any method that alters the tree structure MUST cause or be
  122.      * accompanied by a call to changed(), to inform it that any outstanding
  123.      * NodeLists may have to be updated.
  124.      * <p>
  125.      * (Required because NodeList is simultaneously "live" and integer-
  126.      * indexed -- a bad decision in the DOM's design.)
  127.      * <p>
  128.      * Note that changes which do not affect the tree's structure -- changing
  129.      * the node's name, for example -- do _not_ have to call changed().
  130.      * <p>
  131.      * Alternative implementation would be to use a cryptographic
  132.      * Digest value rather than a count. This would have the advantage that
  133.      * "harmless" changes (those producing equal() trees) would not force
  134.      * NodeList to resynchronize. Disadvantage is that it's slightly more prone
  135.      * to "false negatives", though that's the difference between "wildly
  136.      * unlikely" and "absurdly unlikely". IF we start maintaining digests,
  137.      * we should consider taking advantage of them.
  138.      *
  139.      * Note: This used to be done a node basis, so that we knew what
  140.      * subtree changed. But since only DeepNodeList really use this today,
  141.      * the gain appears to be really small compared to the cost of having
  142.      * an int on every (parent) node plus having to walk up the tree all the
  143.      * way to the root to mark the branch as changed everytime a node is
  144.      * changed.
  145.      * So we now have a single counter global to the document. It means that
  146.      * some objects may flush their cache more often than necessary, but this
  147.      * makes nodes smaller and only the document needs to be marked as changed.
  148.      */
  149.     int fChanges;
  150.     /** Bypass error checking. */
  151.     bool errorChecking;
  152.     friend class NodeIteratorImpl;
  153.     friend class TreeWalkerImpl;
  154.     friend class RangeImpl;
  155.     friend class DOMParser;
  156. public:
  157.     DocumentImpl();
  158.     DocumentImpl(const DOMString &namespaceURI,     //DOM Level 2
  159. const DOMString &qualifiedName, DocumentTypeImpl *doctype);
  160.     virtual ~DocumentImpl();
  161.     virtual bool isDocumentImpl();   // RTTI replacement function
  162.     virtual NodeImpl            *cloneNode(bool deep);
  163.     virtual DOMString getNodeName();
  164.     virtual short getNodeType();
  165.     virtual DocumentImpl * getOwnerDocument();
  166.     virtual AttrImpl            *createAttribute(const DOMString &name);
  167.     virtual CDATASectionImpl    *createCDATASection(const DOMString &data);
  168.     virtual CommentImpl         *createComment(const DOMString &data);
  169.     virtual DocumentFragmentImpl *createDocumentFragment();
  170.     virtual DocumentTypeImpl    *createDocumentType(const DOMString &name);
  171.     virtual DocumentTypeImpl    *createDocumentType(const DOMString &qName,
  172.                                                     const DOMString &publicId,
  173.                                                     const DOMString &systemId);
  174.     virtual ElementImpl         *createElement(const DOMString & tagName);
  175.     virtual ElementImpl         *createElement(const XMLCh *tagName);
  176.     virtual EntityImpl          *createEntity(const DOMString & name);
  177.     virtual EntityReferenceImpl *createEntityReference(const DOMString & name);
  178.     virtual NotationImpl        *createNotation(const DOMString & name);
  179.     virtual ProcessingInstructionImpl *createProcessingInstruction(const DOMString & target, const DOMString & data);
  180.     virtual TextImpl            *createTextNode(const DOMString & data);
  181.     virtual DocumentTypeImpl    *getDoctype();
  182.     virtual ElementImpl         *getDocumentElement();
  183.     virtual DeepNodeListImpl    *getElementsByTagName(const DOMString & tagname);
  184.     virtual NodeImpl            *insertBefore(NodeImpl *newChild, NodeImpl *refChild);
  185.     static  bool                isXMLName(const DOMString & s);
  186.     virtual void                referenced();
  187.     virtual NodeImpl            *removeChild(NodeImpl *oldChild);
  188.     virtual void                unreferenced();
  189.     static  NodeIteratorImpl*   createNodeIterator(DOM_Node root, unsigned long whatToShow, DOM_NodeFilter* filter, bool entityReferenceExpansion);
  190.     static  TreeWalkerImpl*     createTreeWalker(DOM_Node root, unsigned long whatToShow, DOM_NodeFilter* filter, bool entityReferenceExpansion);
  191.     virtual XMLDeclImpl*        createXMLDecl(const DOMString& version, const DOMString& encoding, const DOMString& standalone);
  192.     virtual void* getUserData();
  193.     virtual void setUserData(void* value);
  194.     virtual RangeImpl*          createRange();
  195.     virtual RangeImpls*         getRanges();  //non-standard api
  196.     virtual void                removeRange(RangeImpl* range); //non-standard api
  197. // helper functions to prevent storing userdata pointers on every node.
  198.     virtual void setUserData(NodeImpl* n, void* data);
  199.     virtual void* getUserData(NodeImpl* n);
  200.     //Introduced in DOM Level 2
  201.     virtual NodeImpl            *importNode(NodeImpl *source, bool deep);
  202.     virtual ElementImpl         *createElementNS(const DOMString &namespaceURI,
  203.                                              const DOMString &qualifiedName);
  204.     virtual AttrImpl            *createAttributeNS(const DOMString &namespaceURI,
  205.                                              const DOMString &qualifiedName);
  206.     virtual DeepNodeListImpl    *getElementsByTagNameNS(const DOMString &namespaceURI,
  207.                                               const DOMString &localName);
  208.     virtual ElementImpl         *getElementById(const DOMString &elementId);
  209.     //Return the index > 0 of ':' in the given qualified name qName="prefix:localName".
  210.     //Return 0 if there is no ':', or -1 if qName is malformed such as ":abcd".
  211.     static  int                 indexofQualifiedName(const DOMString & qName);
  212.     static  bool                isKidOK(NodeImpl *parent, NodeImpl *child);
  213.     inline NodeIDMap *          getNodeIDMap() {return fNodeIDMap;};
  214.     virtual void changed();
  215.     virtual int changes();
  216.     /**
  217.      * Sets whether the DOM implementation performs error checking
  218.      * upon operations. Turning off error checking only affects
  219.      * the following DOM checks:
  220.      * <ul>
  221.      * <li>Checking strings to make sure that all characters are
  222.      *     legal XML characters
  223.      * <li>Hierarchy checking such as allowed children, checks for
  224.      *     cycles, etc.
  225.      * </ul>
  226.      * <p>
  227.      * Turning off error checking does <em>not</em> turn off the
  228.      * following checks:
  229.      * <ul>
  230.      * <li>Read only checks
  231.      * <li>Checks related to DOM events
  232.      * </ul>
  233.      */
  234.     inline void setErrorChecking(bool check) {
  235.         errorChecking = check;
  236.     }
  237.     /**
  238.      * Returns true if the DOM implementation performs error checking.
  239.      */
  240.     inline bool getErrorChecking() {
  241.         return errorChecking;
  242.     }
  243.     // -----------------------------------------------------------------------
  244.     //  Notification that lazy data has been deleted
  245.     // -----------------------------------------------------------------------
  246. static void reinitDocumentImpl();
  247. };
  248. #endif