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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 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) 2001, 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.  * $Log: IDDOMImplementation.cpp,v $
  58.  * Revision 1.4  2001/10/23 23:05:03  peiyongz
  59.  * [Bug#880] patch to PlatformUtils:init()/term() and related. from Mark Weaver
  60.  *
  61.  * Revision 1.3  2001/05/23 13:11:37  tng
  62.  * IDOM: Memory fix.
  63.  *
  64.  * Revision 1.2  2001/05/11 13:25:40  tng
  65.  * Copyright update.
  66.  *
  67.  * Revision 1.1.1.1  2001/04/03 00:14:21  andyh
  68.  * IDOM
  69.  *
  70.  */
  71. #include "IDDOMImplementation.hpp"
  72. #include "IDOM_Document.hpp"
  73. #include "IDOM_DocumentType.hpp"
  74. #include "IDOM_DOMException.hpp"
  75. #include "IDDocumentImpl.hpp"
  76. #include "IDDocumentTypeImpl.hpp"
  77. #include <util/PlatformUtils.hpp>
  78. #include <util/XMLUniDefs.hpp>
  79. #include <util/XMLRegisterCleanup.hpp>
  80. //
  81. //  Static constants.  These are lazily initialized on first usage.
  82. //                     (Static constructors can not be safely used because
  83. //                      of order of initialization dependencies.)
  84. static IDDOMImplementation    *gDomimp;   // Points to the singleton instance
  85.                                             //  of DOMImplementation that is returnedreturned
  86.                                             //  by any call to getImplementation().
  87. static const XMLCh  gXML[] =      // Points to "XML"
  88.         {chLatin_X, chLatin_M, chLatin_L, 0};
  89. static const XMLCh  gxml[] =      // Points to "xml"
  90.         {chLatin_x, chLatin_m, chLatin_l, 0};
  91. static const XMLCh  g1_0[] =     // Points to "1.0"
  92.         {chDigit_1, chPeriod, chDigit_0, 0};
  93. static const XMLCh  g2_0[] =      // Points to "2.0"
  94.         {chDigit_2, chPeriod, chDigit_0, 0};
  95. static const XMLCh  gTrav[] =     // Points to "Traversal"
  96.         {chLatin_T, chLatin_r, chLatin_a, chLatin_v, chLatin_e,chLatin_r,
  97.             chLatin_s, chLatin_a, chLatin_l, 0};
  98. IDDOMImplementation::IDDOMImplementation() {
  99. };
  100. IDDOMImplementation::IDDOMImplementation(const IDDOMImplementation & other)
  101. {
  102. };
  103. IDDOMImplementation::~IDDOMImplementation()
  104. {
  105. };
  106. IDDOMImplementation & IDDOMImplementation::operator = (const IDDOMImplementation & other)
  107. {
  108.     return *this;
  109. };
  110. // -----------------------------------------------------------------------
  111. //  Reset the singleton IDDOMImplementation
  112. // -----------------------------------------------------------------------
  113. static void reinitImplementation()
  114. {
  115. delete gDomimp;
  116. gDomimp = 0;
  117. }
  118. //  getImplementation()  - Always returns the same singleton instance, which
  119. //                         is lazily created on the first call.  Note that
  120. //                         DOM_Implementation must be thread-safe because
  121. //                         it is common to all DOM documents, and while a single
  122. //                         document is not thread-safe within itself, we do
  123. //                         promise that different documents can safely be
  124. //                         used concurrently by different threads.
  125. //
  126. IDOM_DOMImplementation *IDDOMImplementation::getImplementation() {
  127. static XMLRegisterCleanup implementationCleanup;
  128.     if (gDomimp == 0)
  129.     {
  130.         IDDOMImplementation *t = new IDDOMImplementation;
  131.         if (XMLPlatformUtils::compareAndSwap((void **)&gDomimp, t, 0) != 0)
  132.         {
  133.             delete t;
  134.         }
  135.         else
  136.         {
  137. implementationCleanup.registerCleanup(reinitImplementation);
  138.         }
  139.     }
  140.     return gDomimp;
  141. };
  142. //
  143. //  IDOM_DOMImplementation::getImplementation.  IDOM_DOMImplementation is supposed to
  144. //                                              be a pure interface class.  This one static
  145. //                                              function is the hook that lets things get started.
  146. IDOM_DOMImplementation *IDOM_DOMImplementation::getImplementation()
  147. {
  148.     return IDDOMImplementation::getImplementation();
  149. }
  150. bool  IDDOMImplementation::hasFeature(const  XMLCh * feature,  const  XMLCh * version)
  151. {
  152.     // Currently, we support only XML Level 1 version 1.0
  153.     if (XMLString::compareIString(feature, gXML) == 0)
  154.     {
  155.         if(version == 0 ||
  156.             XMLString::compareString(version, g1_0) == 0 ||
  157.             XMLString::compareString(version, g2_0) == 0 )
  158.             return true;
  159.     }
  160.     if (XMLString::compareIString(feature, gTrav) == 0)
  161.         return true;
  162.     return false;
  163. }
  164. //Introduced in DOM Level 2
  165. IDOM_DocumentType *IDDOMImplementation::createDocumentType(const XMLCh *qualifiedName,
  166. const XMLCh * publicId, const XMLCh *systemId)
  167. {
  168.     if(!IDDocumentImpl::isXMLName(qualifiedName))
  169.         throw IDOM_DOMException(IDOM_DOMException::INVALID_CHARACTER_ERR,0);
  170.     return new IDDocumentTypeImpl(0, qualifiedName, publicId, systemId);
  171. }
  172. IDOM_Document *IDDOMImplementation::createDocument(const XMLCh *namespaceURI,
  173. const XMLCh *qualifiedName, IDOM_DocumentType *doctype)
  174. {
  175.     return new IDDocumentImpl(namespaceURI, qualifiedName, doctype);
  176. }
  177. IDOM_Document *IDDOMImplementation::createDocument()
  178. {
  179.         return new IDDocumentImpl();
  180. }