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

词法分析

开发平台:

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: DocumentTypeImpl.cpp,v 1.3 2002/11/04 15:04:44 tng Exp $
  58.  */
  59. #include "DocumentTypeImpl.hpp"
  60. #include "DOM_Node.hpp"
  61. #include "NamedNodeMapImpl.hpp"
  62. #include "DOM_DOMException.hpp"
  63. #include "DocumentImpl.hpp"
  64. XERCES_CPP_NAMESPACE_BEGIN
  65. DocumentTypeImpl::DocumentTypeImpl(DocumentImpl *ownerDoc,
  66.                                    const DOMString &dtName)
  67.     : ParentNode(ownerDoc),
  68.     publicId(null), systemId(null), internalSubset(null) //DOM Level 2
  69. , intSubsetReading(false)
  70. {
  71.     name = dtName.clone();
  72.     entities = new NamedNodeMapImpl(this);
  73.     notations = new NamedNodeMapImpl(this);
  74. elements = new NamedNodeMapImpl(this);
  75. };
  76. //Introduced in DOM Level 2
  77. DocumentTypeImpl::DocumentTypeImpl(DocumentImpl *ownerDoc,
  78.                                    const DOMString &qualifiedName,
  79.                                    const DOMString &pubId,
  80.                                    const DOMString &sysId)
  81. : ParentNode(ownerDoc),
  82.     publicId(pubId), systemId(sysId), internalSubset(null)
  83. , intSubsetReading(false)
  84. {
  85.     name = qualifiedName.clone();
  86.     if (DocumentImpl::indexofQualifiedName(qualifiedName) < 0)
  87.         throw DOM_DOMException(DOM_DOMException::NAMESPACE_ERR, null);
  88.     entities = new NamedNodeMapImpl(this);
  89.     notations= new NamedNodeMapImpl(this);
  90. elements = new NamedNodeMapImpl(this);
  91. };
  92. DocumentTypeImpl::DocumentTypeImpl(const DocumentTypeImpl &other, bool deep)
  93.     : ParentNode(other)
  94. {
  95.     name = other.name.clone();
  96.     if (deep)
  97.         cloneChildren(other);
  98.     entities = other.entities->cloneMap(this);
  99.     notations= other.notations->cloneMap(this);
  100. elements = other.elements->cloneMap(this);
  101.     //DOM Level 2
  102.     publicId = other.publicId.clone();
  103.     systemId = other.systemId.clone();
  104. internalSubset = other.internalSubset.clone();
  105. intSubsetReading = other.intSubsetReading;
  106. };
  107. DocumentTypeImpl::~DocumentTypeImpl()
  108. {
  109.     if (entities != null)
  110.     {
  111.         entities->removeAll();
  112.         NamedNodeMapImpl::removeRef(entities);
  113.     }
  114.     if (notations != null)
  115.     {
  116.         notations->removeAll();
  117.         NamedNodeMapImpl::removeRef(notations);
  118.     }
  119. if (elements != null)
  120. {
  121. elements->removeAll();
  122. NamedNodeMapImpl::removeRef(elements);
  123. }
  124. };
  125. NodeImpl *DocumentTypeImpl::cloneNode(bool deep)
  126. {
  127.     return new DocumentTypeImpl(*this, deep);
  128. };
  129. /**
  130.  * NON-DOM
  131.  * set the ownerDocument of this node and its children
  132.  */
  133. void DocumentTypeImpl::setOwnerDocument(DocumentImpl *doc) {
  134.     ParentNode::setOwnerDocument(doc);
  135.     entities->setOwnerDocument(doc);
  136.     notations->setOwnerDocument(doc);
  137.     //    elements->setOwnerDocument(doc);
  138. }
  139. DOMString DocumentTypeImpl::getNodeName()
  140. {
  141.     return name;
  142. };
  143. short DocumentTypeImpl::getNodeType() {
  144.     return DOM_Node::DOCUMENT_TYPE_NODE;
  145. };
  146. NamedNodeMapImpl *DocumentTypeImpl::getEntities()
  147. {
  148.     return entities;
  149. };
  150. NamedNodeMapImpl *DocumentTypeImpl::getElements()
  151. {
  152.     return elements;
  153. };
  154. DOMString DocumentTypeImpl::getName()
  155. {
  156.     return name;
  157. };
  158. NamedNodeMapImpl *DocumentTypeImpl::getNotations()
  159. {
  160.     return notations;
  161. };
  162. bool DocumentTypeImpl::isDocumentTypeImpl()
  163. {
  164.     return true;
  165. };
  166. void DocumentTypeImpl::setReadOnly(bool readOnl, bool deep)
  167. {
  168.     ParentNode::setReadOnly(readOnl,deep);
  169.     entities->setReadOnly(readOnl,true);
  170.     notations->setReadOnly(readOnl,true);
  171. };
  172. //Introduced in DOM Level 2
  173. DOMString DocumentTypeImpl::getPublicId()
  174. {
  175.     return publicId;
  176. }
  177. DOMString DocumentTypeImpl::getSystemId()
  178. {
  179.     return systemId;
  180. }
  181. DOMString DocumentTypeImpl::getInternalSubset()
  182. {
  183.     return internalSubset;
  184. }
  185. bool DocumentTypeImpl::isIntSubsetReading()
  186. {
  187.     return intSubsetReading;
  188. }
  189. //set functions
  190. void        DocumentTypeImpl::setPublicId(const DOMString& value)
  191. {
  192.     if (value == 0)
  193.         return;
  194.     publicId = value.clone();
  195. }
  196. void        DocumentTypeImpl::setSystemId(const DOMString& value)
  197. {
  198.     if (value == 0)
  199.         return;
  200.     systemId = value.clone();
  201. }
  202. void        DocumentTypeImpl::setInternalSubset(const DOMString &value)
  203. {
  204.     if (value == 0)
  205.         return;
  206.     internalSubset = value.clone();
  207. }
  208. XERCES_CPP_NAMESPACE_END