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

词法分析

开发平台:

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_Document.cpp,v 1.4 2003/05/22 02:26:50 knoaman Exp $
  58.  */
  59. #include "DOM_Document.hpp"
  60. #include "DeepNodeListImpl.hpp"
  61. #include "DocumentImpl.hpp"
  62. #include "NodeIteratorImpl.hpp"
  63. #include "TreeWalkerImpl.hpp"
  64. XERCES_CPP_NAMESPACE_BEGIN
  65. DOM_Document::DOM_Document (DocumentImpl *impl) :
  66.     DOM_Node(impl)
  67. {
  68. };
  69. DOM_Document::DOM_Document() :
  70.         DOM_Node(null)
  71. {
  72. };
  73. DOM_Document::DOM_Document(const DOM_Document &other)
  74. : DOM_Node(other)
  75. {
  76. };
  77. DOM_Document::~DOM_Document()
  78. {
  79. };
  80. DOM_Document & DOM_Document::operator = (const DOM_Document &other)
  81. {
  82.     return (DOM_Document &) DOM_Node::operator = (other);
  83. };
  84. DOM_Document & DOM_Document::operator = (const DOM_NullPtr *other)
  85. {
  86.     return (DOM_Document &) DOM_Node::operator = (other);
  87. };
  88. DOM_Document    DOM_Document::createDocument(MemoryManager* const manager)
  89. {
  90.         return DOM_Document(new (manager) DocumentImpl(manager));
  91. };
  92. DOM_Notation    DOM_Document::createNotation(const DOMString &name)
  93. {
  94.         return DOM_Notation(((DocumentImpl *)fImpl)->createNotation(name));
  95. };
  96. DOM_DocumentType       DOM_Document::getDoctype() const {
  97.         return DOM_DocumentType(((DocumentImpl *)fImpl)->getDoctype());
  98. };
  99. DOM_DOMImplementation  &DOM_Document::getImplementation() const {
  100.         return DOM_DOMImplementation::getImplementation();
  101. };
  102. DOM_Element            DOM_Document::getDocumentElement() const {
  103.         return DOM_Element(((DocumentImpl *)fImpl)->getDocumentElement());
  104. };
  105. DOM_Element            DOM_Document::createElement(const DOMString &tagName)
  106. {
  107.         return DOM_Element(((DocumentImpl *)fImpl)->createElement(tagName));
  108. };
  109. DOM_Element            DOM_Document::createElement(const XMLCh *tagName)
  110. {
  111.         return DOM_Element(((DocumentImpl *)fImpl)->createElement(tagName));
  112. };
  113. DOM_Entity            DOM_Document::createEntity(const DOMString &name)
  114. {
  115.         return DOM_Entity(((DocumentImpl *)fImpl)->createEntity(name));
  116. };
  117. DOM_DocumentFragment   DOM_Document::createDocumentFragment()
  118. {
  119.         return DOM_DocumentFragment(((DocumentImpl *)fImpl)->createDocumentFragment());
  120. };
  121. DOM_DocumentType DOM_Document::createDocumentType(const DOMString &name)
  122. {
  123.         return DOM_DocumentType(((DocumentImpl *)fImpl)->createDocumentType(name));
  124. };
  125. DOM_Text               DOM_Document::createTextNode(const DOMString &data) {
  126.         return DOM_Text(((DocumentImpl *)fImpl)->createTextNode(data));
  127. };
  128. DOM_Comment            DOM_Document::createComment(const DOMString &data) {
  129.         return DOM_Comment(((DocumentImpl *)fImpl)->createComment(data));
  130. };
  131. DOM_CDATASection       DOM_Document::createCDATASection(const DOMString &data) {
  132.         return DOM_CDATASection(((DocumentImpl *)fImpl)->createCDATASection(data));
  133. };
  134. DOM_ProcessingInstruction DOM_Document::createProcessingInstruction(const DOMString &target,
  135.                                                      const DOMString &data) {
  136.         return DOM_ProcessingInstruction(((DocumentImpl *)fImpl)->createProcessingInstruction(target, data));
  137. };
  138. DOM_Attr               DOM_Document::createAttribute(const DOMString &name) {
  139.         return DOM_Attr(((DocumentImpl *)fImpl)->createAttribute(name));
  140. };
  141. DOM_EntityReference    DOM_Document::createEntityReference(const DOMString &name) {
  142.         return DOM_EntityReference(((DocumentImpl *)fImpl)->createEntityReference(name));
  143. };
  144. DOM_NodeIterator       DOM_Document::createNodeIterator(DOM_Node root, unsigned long whatToShow, DOM_NodeFilter* filter, bool entityReferenceExpansion) {
  145.         return DOM_NodeIterator(DocumentImpl::createNodeIterator(root, whatToShow, filter, entityReferenceExpansion));
  146. };
  147. DOM_TreeWalker DOM_Document::createTreeWalker(DOM_Node root, unsigned long whatToShow, DOM_NodeFilter* filter, bool entityReferenceExpansion) {
  148.     return DOM_TreeWalker(DocumentImpl::createTreeWalker(root, whatToShow, filter, entityReferenceExpansion));
  149. };
  150. DOM_NodeList DOM_Document::getElementsByTagName(const DOMString &tagname) const  {
  151. return DOM_NodeList(((DocumentImpl *)fImpl)->getElementsByTagName(tagname));
  152. };
  153. //Introduced in DOM Level 2
  154. DOM_Node DOM_Document::importNode(const DOM_Node &importedNode, bool deep)
  155. {
  156. return DOM_Node(((DocumentImpl *)fImpl)->importNode(importedNode.fImpl, deep));
  157. };
  158. DOM_Element         DOM_Document::createElementNS(const DOMString &namespaceURI,
  159. const DOMString &qualifiedName)
  160. {
  161.         return DOM_Element(((DocumentImpl *)fImpl)->createElementNS(namespaceURI, qualifiedName));
  162. }
  163. DOM_Attr            DOM_Document::createAttributeNS(const DOMString &namespaceURI,
  164. const DOMString &qualifiedName)
  165. {
  166.         return DOM_Attr(((DocumentImpl *)fImpl)->createAttributeNS(namespaceURI, qualifiedName));
  167. }
  168. DOM_NodeList        DOM_Document::getElementsByTagNameNS(const DOMString &namespaceURI,
  169. const DOMString &localName) const
  170. {
  171.         return DOM_NodeList(((DocumentImpl *)fImpl)->getElementsByTagNameNS(namespaceURI, localName));
  172. }
  173. DOM_Element         DOM_Document::getElementById(const DOMString &elementId)
  174. {
  175.         return DOM_Element(((DocumentImpl *)fImpl)->getElementById(elementId));
  176. }
  177. DOM_XMLDecl DOM_Document::createXMLDecl(const DOMString& version, const DOMString& encoding, const DOMString& standalone)
  178. {
  179.     return DOM_XMLDecl( ((DocumentImpl *)fImpl)->createXMLDecl(version, encoding, standalone));
  180. }
  181. DOM_Range    DOM_Document::createRange()
  182. {
  183.     return DOM_Range( ((DocumentImpl *)fImpl)->createRange() );
  184. }
  185. void DOM_Document::setErrorChecking(bool check) {
  186.     ((DocumentImpl *)fImpl)->setErrorChecking(check);
  187. }
  188. bool DOM_Document::getErrorChecking() {
  189.     return ((DocumentImpl *)fImpl)->getErrorChecking();
  190. }
  191. XERCES_CPP_NAMESPACE_END