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

xml/soap/webservice

开发平台:

C/C++

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