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

词法分析

开发平台:

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_DOMImplementation.cpp,v 1.5 2003/05/22 02:26:50 knoaman Exp $
  58.  */
  59. #include "DOM_DOMImplementation.hpp"
  60. #include "DOM_Document.hpp"
  61. #include "DOM_DocumentType.hpp"
  62. #include "DOM_DOMException.hpp"
  63. #include "DocumentImpl.hpp"
  64. #include "DocumentTypeImpl.hpp"
  65. #include "DStringPool.hpp"
  66. #include <xercesc/util/XMLChar.hpp>
  67. #include <xercesc/util/PlatformUtils.hpp>
  68. #include <xercesc/util/XMLRegisterCleanup.hpp>
  69. XERCES_CPP_NAMESPACE_BEGIN
  70. //
  71. //  Static constants.  These are lazily initialized on first usage.
  72. //                     (Static constructors can not be safely used because
  73. //                      of order of initialization dependencies.)
  74. static DOM_DOMImplementation    *gDomimp;   // Points to the singleton instance
  75.                                             //  of DOMImplementation that is returned
  76.                                             //  by any call to getImplementation().
  77. static DOMString                *gXML = 0;      // Points to "XML"
  78. static DOMString                *g1_0 = 0;      // Points to "1.0"
  79. static DOMString                *g2_0 = 0;      // Points to "2.0"
  80. static DOMString                *gTrav  = 0;     // Points to "Traversal"
  81. static DOMString                *gRange = 0;     // Points to "Range"
  82. static DOMString                *gCore  = 0;     // Points to "Core"
  83. //
  84. // we define only one clean up object, if any of the above
  85. // ever get initialized, then the cleanup function will be
  86. // registered to the same cleanup Obj again and again.
  87. //
  88. // that cleanup function will delete/null all the g*
  89. //
  90. static XMLRegisterCleanup DOM_DOMImplementationCleanup;
  91. // Note #1136 - There needs to be a separate implementation class for
  92. //              DOMImplementation, so that the user programming model
  93. //              is consistent with the rest of the C++ DOM API, and
  94. //              so that hasFeature will only work on the result of
  95. //              getImplementation(), and not on DOM_DOMImplemenation objects
  96. //              created with the default constructor.
  97. //
  98. DOM_DOMImplementation::DOM_DOMImplementation() {
  99. };
  100. DOM_DOMImplementation::DOM_DOMImplementation(const DOM_DOMImplementation & other)
  101. {
  102. };
  103. DOM_DOMImplementation::~DOM_DOMImplementation()
  104. {
  105. };
  106. DOM_DOMImplementation & DOM_DOMImplementation::operator = (const DOM_DOMImplementation & other)
  107. {
  108.     return *this;
  109. };
  110. // -----------------------------------------------------------------------
  111. //  Reset the singleton DOM_DOMImplementation
  112. // -----------------------------------------------------------------------
  113. static void reinitImplementation() {
  114. delete gDomimp;
  115. gDomimp = 0;
  116. }
  117. //  getImplementation()  - Always returns the same singleton instance, which
  118. //                         is lazily created on the first call.  Note that
  119. //                         DOM_Implementation must be thread-safe because
  120. //                         it is common to all DOM documents, and while a single
  121. //                         document is not thread-safe within itself, we do
  122. //                         promise that different documents can safely be
  123. //                         used concurrently by different threads.
  124. //
  125. DOM_DOMImplementation &DOM_DOMImplementation::getImplementation() {
  126. static XMLRegisterCleanup implementationCleanup;
  127.     if (gDomimp == 0)
  128.     {
  129.         DOM_DOMImplementation *t = new DOM_DOMImplementation;
  130.         if (XMLPlatformUtils::compareAndSwap((void **)&gDomimp, t, 0) != 0)
  131.         {
  132.             delete t;
  133.         }
  134.         else
  135.         {
  136. implementationCleanup.registerCleanup(reinitImplementation);
  137.         }
  138.     }
  139.     return *gDomimp;
  140. };
  141. bool  DOM_DOMImplementation::hasFeature(const DOMString &feature,  const DOMString &version)
  142. {
  143.     bool anyVersion = (version == null || version.length() == 0);
  144.     bool version1_0 = version.equals(DStringPool::getStaticString("1.0"
  145.                                                      , &g1_0
  146.                                                      , reinitDOM_DOMImplementation
  147.                                                      , DOM_DOMImplementationCleanup));
  148.     bool version2_0 = version.equals(DStringPool::getStaticString("2.0"
  149.                                                      , &g2_0
  150.                                                      , reinitDOM_DOMImplementation
  151.                                                      , DOM_DOMImplementationCleanup));
  152.     // case-insensitive compare
  153.     if(!XMLString::compareIString(feature.rawBuffer(), DStringPool::getStaticString("XML"
  154.                                                            , &gXML
  155.                                                            , reinitDOM_DOMImplementation
  156.                                                            , DOM_DOMImplementationCleanup).rawBuffer())
  157.        && (anyVersion || version1_0 || version2_0))
  158.         return true;
  159.     if(!XMLString::compareIString(feature.rawBuffer(), DStringPool::getStaticString("Core"
  160.                                                            , &gCore
  161.                                                            , reinitDOM_DOMImplementation
  162.                                                            , DOM_DOMImplementationCleanup).rawBuffer())
  163.        && (anyVersion || version1_0 || version2_0))
  164.         return true;
  165.     if(!XMLString::compareIString(feature.rawBuffer(), DStringPool::getStaticString("Traversal"
  166.                                                            , &gTrav
  167.                                                            , reinitDOM_DOMImplementation
  168.                                                            , DOM_DOMImplementationCleanup).rawBuffer())
  169.        && (anyVersion || version2_0))
  170.         return true;
  171.     if(!XMLString::compareIString(feature.rawBuffer(), DStringPool::getStaticString("Range"
  172.                                                            , &gRange
  173.                                                            , reinitDOM_DOMImplementation
  174.                                                            , DOM_DOMImplementationCleanup).rawBuffer())
  175.        && (anyVersion || version2_0))
  176.         return true;
  177.     return false;
  178. }
  179. //Introduced in DOM Level 2
  180. DOM_DocumentType DOM_DOMImplementation::createDocumentType(const DOMString &qualifiedName,
  181. const DOMString &publicId, const DOMString &systemId)
  182. {    
  183.     if(!XMLChar1_0::isValidName(qualifiedName.rawBuffer(), XMLString::stringLen(qualifiedName.rawBuffer())))
  184.         throw DOM_DOMException(DOM_DOMException::INVALID_CHARACTER_ERR,null);
  185.     return DOM_DocumentType(new DocumentTypeImpl(null, qualifiedName, publicId, systemId));
  186. }
  187. DOM_Document DOM_DOMImplementation::createDocument(const DOMString &namespaceURI,
  188. const DOMString &qualifiedName, const DOM_DocumentType &doctype, MemoryManager* const manager)
  189. {
  190.     return DOM_Document(new (manager) DocumentImpl(namespaceURI, qualifiedName,
  191. doctype == null ? null : (DocumentTypeImpl *) doctype.fImpl, manager));
  192. }
  193. // -----------------------------------------------------------------------
  194. //  Notification that lazy data has been deleted
  195. // -----------------------------------------------------------------------
  196. void DOM_DOMImplementation::reinitDOM_DOMImplementation() {
  197.     delete gXML;
  198.     gXML = 0;
  199.     delete g1_0;
  200.     g1_0 = 0;
  201.     delete g2_0;
  202.     g2_0 = 0;
  203.     delete gTrav;
  204.     gTrav = 0;
  205.     delete gRange;
  206.     gRange = 0;
  207.     delete gCore;
  208.     gCore = 0;
  209. }
  210. XERCES_CPP_NAMESPACE_END