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

词法分析

开发平台:

Visual 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. *  This file contains code to build the DOM tree. It registers a document
  58. *  handler with the scanner. In these handler methods, appropriate DOM nodes
  59. *  are created and added to the DOM tree.
  60. *
  61. * $Id: XercesDOMParser.cpp,v 1.12 2003/05/15 18:26:50 knoaman Exp $
  62. *
  63. */
  64. // ---------------------------------------------------------------------------
  65. //  Includes
  66. // ---------------------------------------------------------------------------
  67. #include <xercesc/sax/EntityResolver.hpp>
  68. #include <xercesc/sax/ErrorHandler.hpp>
  69. #include <xercesc/sax/SAXParseException.hpp>
  70. #include <xercesc/util/IOException.hpp>
  71. #include <xercesc/internal/XMLScanner.hpp>
  72. #include <xercesc/parsers/XercesDOMParser.hpp>
  73. #include <xercesc/validators/common/GrammarResolver.hpp>
  74. XERCES_CPP_NAMESPACE_BEGIN
  75. // ---------------------------------------------------------------------------
  76. //  XercesDOMParser: Constructors and Destructor
  77. // ---------------------------------------------------------------------------
  78. XercesDOMParser::XercesDOMParser( XMLValidator* const  valToAdopt
  79.                                 , MemoryManager* const manager) :
  80. AbstractDOMParser(valToAdopt, manager)
  81. , fErrorHandler(0)
  82. , fEntityResolver(0)
  83. {
  84. }
  85. XercesDOMParser::~XercesDOMParser()
  86. {
  87. }
  88. // ---------------------------------------------------------------------------
  89. //  XercesDOMParser: Getter methods
  90. // ---------------------------------------------------------------------------
  91. bool XercesDOMParser::isCachingGrammarFromParse() const
  92. {
  93.     return getScanner()->isCachingGrammarFromParse();
  94. }
  95. bool XercesDOMParser::isUsingCachedGrammarInParse() const
  96. {
  97.     return getScanner()->isUsingCachedGrammarInParse();
  98. }
  99. Grammar* XercesDOMParser::getGrammar(const XMLCh* const nameSpaceKey)
  100. {
  101.     return getGrammarResolver()->getGrammar(nameSpaceKey);
  102. }
  103. Grammar* XercesDOMParser::getRootGrammar()
  104. {
  105.     return getScanner()->getRootGrammar();
  106. }
  107. const XMLCh* XercesDOMParser::getURIText(unsigned int uriId) const
  108. {
  109.     return getScanner()->getURIText(uriId);
  110. }
  111. unsigned int XercesDOMParser::getSrcOffset() const
  112. {
  113.     return getScanner()->getSrcOffset();
  114. }
  115. // ---------------------------------------------------------------------------
  116. //  XercesDOMParser: Setter methods
  117. // ---------------------------------------------------------------------------
  118. void XercesDOMParser::setErrorHandler(ErrorHandler* const handler)
  119. {
  120.     fErrorHandler = handler;
  121.     XMLScanner* scanner = getScanner();
  122.     if (fErrorHandler) {
  123.         scanner->setErrorReporter(this);
  124.         scanner->setErrorHandler(fErrorHandler);
  125.     }
  126.     else {
  127.         scanner->setErrorReporter(0);
  128.         scanner->setErrorHandler(0);
  129.     }
  130. }
  131. void XercesDOMParser::setEntityResolver(EntityResolver* const handler)
  132. {
  133.     fEntityResolver = handler;
  134.     if (fEntityResolver) {
  135.         getScanner()->setEntityHandler(this);
  136.     }
  137.     else {
  138.         getScanner()->setEntityHandler(0);
  139.     }
  140. }
  141. void XercesDOMParser::cacheGrammarFromParse(const bool newState)
  142. {
  143.     getScanner()->cacheGrammarFromParse(newState);
  144.     if (newState)
  145.         getScanner()->useCachedGrammarInParse(newState);
  146. }
  147. void XercesDOMParser::useCachedGrammarInParse(const bool newState)
  148. {
  149.     if (newState || !getScanner()->isCachingGrammarFromParse())
  150.         getScanner()->useCachedGrammarInParse(newState);
  151. }
  152. // ---------------------------------------------------------------------------
  153. //  XercesDOMParser: Utilities
  154. // ---------------------------------------------------------------------------
  155. void XercesDOMParser::resetDocumentPool()
  156. {
  157.     resetPool();
  158. }
  159. // ---------------------------------------------------------------------------
  160. //  XercesDOMParser: Implementation of the XMLErrorReporter interface
  161. // ---------------------------------------------------------------------------
  162. void XercesDOMParser::error( const   unsigned int                code
  163.                              , const XMLCh* const                msgDomain
  164.                              , const XMLErrorReporter::ErrTypes  errType
  165.                              , const XMLCh* const                errorText
  166.                              , const XMLCh* const                systemId
  167.                              , const XMLCh* const                publicId
  168.                              , const XMLSSize_t                  lineNum
  169.                              , const XMLSSize_t                  colNum)
  170. {
  171.     SAXParseException toThrow = SAXParseException
  172.         (
  173.         errorText
  174.         , publicId
  175.         , systemId
  176.         , lineNum
  177.         , colNum
  178.         );
  179.     //
  180.     //  If there is an error handler registered, call it, otherwise ignore
  181.     //  all but the fatal errors.
  182.     //
  183.     if (!fErrorHandler)
  184.     {
  185.         if (errType == XMLErrorReporter::ErrType_Fatal)
  186.             throw toThrow;
  187.         return;
  188.     }
  189.     if (errType == XMLErrorReporter::ErrType_Warning)
  190.         fErrorHandler->warning(toThrow);
  191.     else if (errType >= XMLErrorReporter::ErrType_Fatal)
  192.         fErrorHandler->fatalError(toThrow);
  193.     else
  194.         fErrorHandler->error(toThrow);
  195. }
  196. void XercesDOMParser::resetErrors()
  197. {
  198. }
  199. // ---------------------------------------------------------------------------
  200. //  XercesDOMParser: Implementation of XMLEntityHandler interface
  201. // ---------------------------------------------------------------------------
  202. InputSource*
  203. XercesDOMParser::resolveEntity(const XMLCh* const publicId,
  204.                                const XMLCh* const systemId,
  205.                                const XMLCh* const baseURI)
  206. {
  207.     //
  208.     //  Just map it to the SAX entity resolver. If there is not one installed,
  209.     //  return a null pointer to cause the default resolution.
  210.     //
  211.     if (fEntityResolver)
  212.         return fEntityResolver->resolveEntity(publicId, systemId);
  213.     return 0;
  214. }
  215. // ---------------------------------------------------------------------------
  216. //  XercesDOMParser: Grammar preparsing methods
  217. // ---------------------------------------------------------------------------
  218. Grammar* XercesDOMParser::loadGrammar(const char* const systemId,
  219.                                       const short grammarType,
  220.                                       const bool toCache)
  221. {
  222.     // Avoid multiple entrance
  223.     if (getParseInProgress())
  224.         ThrowXML(IOException, XMLExcepts::Gen_ParseInProgress);
  225.     Grammar* grammar = 0;
  226.     try
  227.     {
  228.         setParseInProgress(true);
  229.         grammar = getScanner()->loadGrammar(systemId, grammarType, toCache);
  230.         setParseInProgress(false);
  231.     }
  232.     catch(...)
  233.     {
  234.         setParseInProgress(false);
  235.         throw;
  236.     }
  237.     return grammar;
  238. }
  239. Grammar* XercesDOMParser::loadGrammar(const XMLCh* const systemId,
  240.                                       const short grammarType,
  241.                                       const bool toCache)
  242. {
  243.     // Avoid multiple entrance
  244.     if (getParseInProgress())
  245.         ThrowXML(IOException, XMLExcepts::Gen_ParseInProgress);
  246.     Grammar* grammar = 0;
  247.     try
  248.     {
  249.         setParseInProgress(true);
  250.         grammar = getScanner()->loadGrammar(systemId, grammarType, toCache);
  251.         setParseInProgress(false);
  252.     }
  253.     catch(...)
  254.     {
  255.         setParseInProgress(false);
  256.         throw;
  257.     }
  258.     return grammar;
  259. }
  260. Grammar* XercesDOMParser::loadGrammar(const InputSource& source,
  261.                                       const short grammarType,
  262.                                       const bool toCache)
  263. {
  264.     // Avoid multiple entrance
  265.     if (getParseInProgress())
  266.         ThrowXML(IOException, XMLExcepts::Gen_ParseInProgress);
  267.    Grammar* grammar = 0;
  268.     try
  269.     {
  270.         setParseInProgress(true);
  271.         grammar = getScanner()->loadGrammar(source, grammarType, toCache);
  272.         setParseInProgress(false);
  273.     }
  274.     catch(...)
  275.     {
  276.         setParseInProgress(false);
  277.         throw;
  278.     }
  279.     return grammar;
  280. }
  281. void XercesDOMParser::resetCachedGrammarPool()
  282. {
  283.     getGrammarResolver()->resetCachedGrammar();
  284. }
  285. XERCES_CPP_NAMESPACE_END