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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 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) 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: XSDErrorReporter.cpp,v $
  58.   * Revision 1.10  2003/03/09 17:05:01  peiyongz
  59.   * PanicHandler
  60.   *
  61.   * Revision 1.9  2003/01/13 16:13:37  knoaman
  62.   * We should load the validation message set.
  63.   *
  64.   * Revision 1.8  2003/01/09 15:30:09  tng
  65.   * Performance: construct message loader only when required.
  66.   *
  67.   * Revision 1.7  2002/12/04 02:32:43  knoaman
  68.   * #include cleanup.
  69.   *
  70.   * Revision 1.6  2002/11/27 18:05:38  tng
  71.   * Schema Fix: cast the toEmit back to XMLErrs:Codes so that it can be caught by the Scanner properly.
  72.   *
  73.   * Revision 1.5  2002/11/15 21:58:04  peiyongz
  74.   * Leave thread safety issue to message loader
  75.   *
  76.   * Revision 1.4  2002/11/04 14:49:42  tng
  77.   * C++ Namespace Support.
  78.   *
  79.   * Revision 1.3  2002/09/24 20:12:48  tng
  80.   * Performance: use XMLString::equals instead of XMLString::compareString
  81.   *
  82.   * Revision 1.2  2002/05/22 20:54:14  knoaman
  83.   * Prepare for DOM L3 :
  84.   * - Make use of the XMLEntityHandler/XMLErrorReporter interfaces, instead of using
  85.   * EntityHandler/ErrorHandler directly.
  86.   * - Add 'AbstractDOMParser' class to provide common functionality for XercesDOMParser
  87.   * and DOMBuilder.
  88.   *
  89.   * Revision 1.1  2002/03/21 15:34:40  knoaman
  90.   * Add support for reporting line/column numbers of schema errors.
  91.   *
  92.   */
  93. // ---------------------------------------------------------------------------
  94. //  Includes
  95. // ---------------------------------------------------------------------------
  96. #include <xercesc/util/PlatformUtils.hpp>
  97. #include <xercesc/util/XMLString.hpp>
  98. #include <xercesc/framework/XMLErrorCodes.hpp>
  99. #include <xercesc/framework/XMLValidityCodes.hpp>
  100. #include <xercesc/framework/XMLErrorReporter.hpp>
  101. #include <xercesc/util/XMLMsgLoader.hpp>
  102. #include <xercesc/util/XMLRegisterCleanup.hpp>
  103. #include <xercesc/validators/schema/XSDErrorReporter.hpp>
  104. #include <xercesc/validators/schema/XSDLocator.hpp>
  105. XERCES_CPP_NAMESPACE_BEGIN
  106. // ---------------------------------------------------------------------------
  107. //  Local static data
  108. // ---------------------------------------------------------------------------
  109. static XMLMsgLoader*      gErrMsgLoader = 0;
  110. static XMLMsgLoader*      gValidMsgLoader = 0;
  111. // ---------------------------------------------------------------------------
  112. //  Local, static functions
  113. // ---------------------------------------------------------------------------
  114. static void reinitErrMsgLoader()
  115. {
  116. delete gErrMsgLoader;
  117. gErrMsgLoader = 0;
  118. }
  119. static void reinitValidMsgLoader()
  120. {
  121. delete gValidMsgLoader;
  122. gValidMsgLoader = 0;
  123. }
  124. static XMLMsgLoader* getErrMsgLoader()
  125. {
  126.     static XMLRegisterCleanup cleanupErrMsgLoader;
  127.     if (gErrMsgLoader == 0)
  128.     {
  129.         XMLMsgLoader* t = XMLPlatformUtils::loadMsgSet(XMLUni::fgXMLErrDomain);
  130.         if (!t)
  131.             XMLPlatformUtils::panic(PanicHandler::Panic_CantLoadMsgDomain);
  132.         else {
  133.             if (XMLPlatformUtils::compareAndSwap((void **)&gErrMsgLoader, t, 0) != 0)
  134.             {
  135.                 delete t;
  136.             }
  137.             else
  138.             {
  139.                 cleanupErrMsgLoader.registerCleanup(reinitErrMsgLoader);
  140.             }
  141.         }
  142.     }
  143.     return gErrMsgLoader;
  144. }
  145. static XMLMsgLoader* getValidMsgLoader()
  146. {
  147.     static XMLRegisterCleanup cleanupValidMsgLoader;
  148.     if (gValidMsgLoader == 0)
  149.     {
  150.         XMLMsgLoader* t = XMLPlatformUtils::loadMsgSet(XMLUni::fgValidityDomain);
  151.         if (!t)
  152.             XMLPlatformUtils::panic(PanicHandler::Panic_CantLoadMsgDomain);
  153.         else {
  154.             if (XMLPlatformUtils::compareAndSwap((void **)&gValidMsgLoader, t, 0) != 0)
  155.             {
  156.                 delete t;
  157.             }
  158.             else
  159.             {
  160.                 cleanupValidMsgLoader.registerCleanup(reinitValidMsgLoader);
  161.             }
  162.         }
  163.     }
  164.     return gValidMsgLoader;
  165. }
  166. // ---------------------------------------------------------------------------
  167. //  XSDErrorReporter: Constructors and Destructor
  168. // ---------------------------------------------------------------------------
  169. XSDErrorReporter::XSDErrorReporter(XMLErrorReporter* const errorReporter) :
  170.     fExitOnFirstFatal(false)
  171.     , fErrorReporter(errorReporter)
  172. {
  173. }
  174. // ---------------------------------------------------------------------------
  175. //  XSDErrorReporter: Error reporting
  176. // ---------------------------------------------------------------------------
  177. void XSDErrorReporter::emitError(const unsigned int toEmit,
  178.                                  const XMLCh* const msgDomain,
  179.                                  const Locator* const aLocator)
  180. {
  181.     // Bump the error count if it is not a warning
  182. //    if (XMLErrs::errorType(toEmit) != XMLErrorReporter::ErrType_Warning)
  183. //        incrementErrorCount();
  184.     //
  185.     //  Load the message into alocal and replace any tokens found in
  186.     //  the text.
  187.     //
  188.     const unsigned int msgSize = 1023;
  189.     XMLCh errText[msgSize + 1];
  190.     XMLMsgLoader* msgLoader = getErrMsgLoader();
  191.     XMLErrorReporter::ErrTypes errType = XMLErrs::errorType((XMLErrs::Codes) toEmit);
  192.     if (XMLString::equals(msgDomain, XMLUni::fgValidityDomain)) {
  193.         errType = XMLValid::errorType((XMLValid::Codes) toEmit);
  194.         msgLoader = getValidMsgLoader();
  195.     }
  196.     if (!msgLoader->loadMsg(toEmit, errText, msgSize))
  197.     {
  198.                 // <TBD> Should probably load a default message here
  199.     }
  200.     if (fErrorReporter)
  201.         fErrorReporter->error(toEmit, msgDomain, errType, errText, aLocator->getSystemId(),
  202.                               aLocator->getPublicId(), aLocator->getLineNumber(),
  203.                               aLocator->getColumnNumber());
  204.     // Bail out if its fatal an we are to give up on the first fatal error
  205.     if (errType == XMLErrorReporter::ErrType_Fatal && fExitOnFirstFatal)
  206.         throw (XMLErrs::Codes) toEmit;
  207. }
  208. void XSDErrorReporter::emitError(const unsigned int toEmit,
  209.                                  const XMLCh* const msgDomain,
  210.                                  const Locator* const aLocator,
  211.                                  const XMLCh* const text1,
  212.                                  const XMLCh* const text2,
  213.                                  const XMLCh* const text3,
  214.                                  const XMLCh* const text4)
  215. {
  216.     // Bump the error count if it is not a warning
  217. //    if (XMLErrs::errorType(toEmit) != XMLErrorReporter::ErrType_Warning)
  218. //        incrementErrorCount();
  219.     //
  220.     //  Load the message into alocal and replace any tokens found in
  221.     //  the text.
  222.     //
  223.     const unsigned int maxChars = 2047;
  224.     XMLCh errText[maxChars + 1];
  225.     XMLMsgLoader* msgLoader = getErrMsgLoader();
  226.     XMLErrorReporter::ErrTypes errType = XMLErrs::errorType((XMLErrs::Codes) toEmit);
  227.     if (XMLString::equals(msgDomain, XMLUni::fgValidityDomain)) {
  228.         errType = XMLValid::errorType((XMLValid::Codes) toEmit);
  229.         msgLoader = getValidMsgLoader();
  230.     }
  231.     if (!msgLoader->loadMsg(toEmit, errText, maxChars, text1, text2, text3, text4))
  232.     {
  233.                 // <TBD> Should probably load a default message here
  234.     }
  235.     if (fErrorReporter)
  236.         fErrorReporter->error(toEmit, msgDomain, errType, errText, aLocator->getSystemId(),
  237.                               aLocator->getPublicId(), aLocator->getLineNumber(),
  238.                               aLocator->getColumnNumber());
  239.     // Bail out if its fatal an we are to give up on the first fatal error
  240.     if (errType == XMLErrorReporter::ErrType_Fatal && fExitOnFirstFatal)
  241.         throw (XMLErrs::Codes) toEmit;
  242. }
  243. XERCES_CPP_NAMESPACE_END