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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  * 
  4.  * Copyright (c) 1999-2000 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: XMLException.cpp,v 1.8 2001/11/30 22:19:56 peiyongz Exp $
  58.  */
  59. // ---------------------------------------------------------------------------
  60. //  Includes
  61. // ---------------------------------------------------------------------------
  62. #include <util/Mutexes.hpp>
  63. #include <util/PlatformUtils.hpp>
  64. #include <util/XMLException.hpp>
  65. #include <util/XMLMsgLoader.hpp>
  66. #include <util/XMLRegisterCleanup.hpp>
  67. #include <util/XMLString.hpp>
  68. #include <util/XMLUniDefs.hpp>
  69. #include <util/XMLUni.hpp>
  70. // ---------------------------------------------------------------------------
  71. //  Local data
  72. //
  73. //  gDefErrMsg
  74. //      For now, if we cannot load an exception message, we load up the
  75. //      default.
  76. // ---------------------------------------------------------------------------
  77. static const XMLCh  gDefErrMsg[] = 
  78. {
  79.         chLatin_C, chLatin_o, chLatin_u, chLatin_l, chLatin_d
  80.     ,   chSpace, chLatin_n, chLatin_o, chLatin_t, chSpace
  81.     ,   chLatin_l, chLatin_o, chLatin_a, chLatin_d, chSpace
  82.     ,   chLatin_m, chLatin_e, chLatin_s, chLatin_s, chLatin_a
  83.     ,   chLatin_g, chLatin_e, chNull
  84. };
  85. // ---------------------------------------------------------------------------
  86. //  Local, static data
  87. // ---------------------------------------------------------------------------
  88. static XMLMsgLoader* sMsgLoader = 0;
  89. static XMLRegisterCleanup msgLoaderCleanup;
  90. static XMLMutex* sMsgMutex = 0;
  91. static XMLRegisterCleanup msgMutexCleanup;
  92. // ---------------------------------------------------------------------------
  93. //  Local, static functions
  94. // ---------------------------------------------------------------------------
  95. //
  96. //  We need to fault in this mutex. But, since its used for synchronization
  97. //  itself, we have to do this the low level way using a compare and swap.
  98. //
  99. static XMLMutex& gMsgMutex()
  100. {
  101.     if (!sMsgMutex)
  102.     {
  103.         XMLMutex* tmpMutex = new XMLMutex;
  104.         if (XMLPlatformUtils::compareAndSwap((void**)&sMsgMutex, tmpMutex, 0))
  105.         {
  106.             // Some other thread beat us to it, so let's clean up ours.
  107.             delete tmpMutex;
  108.         }
  109.         else
  110.         {
  111.             // This is the real mutex.  Register it for cleanup at Termination.
  112. msgMutexCleanup.registerCleanup(XMLException::reinitMsgMutex);
  113.         }
  114.         
  115.     }
  116.     return *sMsgMutex;
  117. }
  118. //
  119. //  This method is a lazy evaluator for the message loader for exception
  120. //  messages.
  121. //
  122. static XMLMsgLoader& gGetMsgLoader()
  123. {
  124.     // Lock the message loader mutex and load the text
  125. XMLMutexLock lockInit(&gMsgMutex());
  126.     // Fault it in on first request
  127.     if (!sMsgLoader)
  128.     {
  129.         sMsgLoader = XMLPlatformUtils::loadMsgSet(XMLUni::fgExceptDomain);
  130.         if (!sMsgLoader)
  131.             XMLPlatformUtils::panic(XMLPlatformUtils::Panic_CantLoadMsgDomain);
  132.         //
  133.         // Register this XMLMsgLoader for cleanup at Termination.
  134.         //
  135.         msgLoaderCleanup.registerCleanup(XMLException::reinitMsgLoader);
  136.     }
  137.     
  138.     // We got it, so return it
  139.     return *sMsgLoader;
  140. }
  141. // ---------------------------------------------------------------------------
  142. //  XMLException: Virtual destructor
  143. // ---------------------------------------------------------------------------
  144. XMLException::~XMLException()
  145. {
  146.     delete [] fMsg;
  147.     delete [] fSrcFile;
  148. }
  149. // ---------------------------------------------------------------------------
  150. //  XMLException: Setter methods
  151. // ---------------------------------------------------------------------------
  152. void XMLException::setPosition(const char* const file, const unsigned int line)
  153. {
  154.     fSrcLine = line;
  155.     delete [] fSrcFile;
  156.     fSrcFile = XMLString::replicate(file);
  157. }
  158. // ---------------------------------------------------------------------------
  159. //  XMLException: Hidden constructors and operators
  160. // ---------------------------------------------------------------------------
  161. XMLException::XMLException() :
  162.     fCode(XMLExcepts::NoError)
  163.     , fSrcFile(0)
  164.     , fSrcLine(0)
  165.     , fMsg(0)
  166. {
  167. }
  168. XMLException::XMLException( const   char* const     srcFile
  169.                             , const unsigned int    srcLine) :
  170.     fCode(XMLExcepts::NoError)
  171.     , fSrcFile(0)
  172.     , fSrcLine(srcLine)
  173.     , fMsg(0)
  174. {
  175.     fSrcFile = XMLString::replicate(srcFile);
  176. }
  177. XMLException::XMLException(const XMLException& toCopy) :
  178.     fCode(toCopy.fCode)
  179.     , fSrcFile(0)
  180.     , fSrcLine(toCopy.fSrcLine)
  181.     , fMsg(XMLString::replicate(toCopy.fMsg))
  182. {
  183.     if (toCopy.fSrcFile)
  184.         fSrcFile = XMLString::replicate(toCopy.fSrcFile);
  185. }
  186. void XMLException::operator=(const XMLException& toAssign)
  187. {
  188.     if (this != &toAssign)
  189.     {
  190.         delete [] fSrcFile;
  191.         fSrcFile = 0;
  192.         delete [] fMsg;
  193.         fMsg = 0;
  194.         fSrcLine = toAssign.fSrcLine;
  195.         fCode = toAssign.fCode;
  196.         if (toAssign.fMsg)
  197.             fMsg = XMLString::replicate(toAssign.fMsg);
  198.         if (toAssign.fSrcFile)
  199.             fSrcFile = XMLString::replicate(toAssign.fSrcFile);
  200.     }
  201. }
  202. // ---------------------------------------------------------------------------
  203. //  XMLException: Protected methods
  204. // ---------------------------------------------------------------------------
  205. void XMLException::loadExceptText(const XMLExcepts::Codes toLoad)
  206. {
  207.     // Store the error code
  208.     fCode = toLoad;
  209.     // Load up the text into a local buffer
  210.     const unsigned int msgSize = 2047;
  211.     XMLCh errText[msgSize + 1];
  212.     // load the text
  213. if (!gGetMsgLoader().loadMsg(toLoad, errText, msgSize))
  214. {
  215. fMsg = XMLString::replicate(gDefErrMsg);
  216. return;
  217. }
  218.     // We got the text so replicate it into the message member
  219.     fMsg = XMLString::replicate(errText);
  220. }
  221. void
  222. XMLException::loadExceptText(const  XMLExcepts::Codes toLoad
  223.                             , const XMLCh* const        text1
  224.                             , const XMLCh* const        text2
  225.                             , const XMLCh* const        text3
  226.                             , const XMLCh* const        text4)
  227. {
  228.     // Store the error code
  229.     fCode = toLoad;
  230.     // Load up the text into a local buffer
  231.     const unsigned int msgSize = 4095;
  232.     XMLCh errText[msgSize + 1];
  233.     // load the text
  234. if (!gGetMsgLoader().loadMsg(toLoad, errText, msgSize, text1, text2, text3, text4))
  235. {
  236. fMsg = XMLString::replicate(gDefErrMsg);
  237. return;
  238. }
  239.     // We got the text so replicate it into the message member
  240.     fMsg = XMLString::replicate(errText);
  241. }
  242. void
  243. XMLException::loadExceptText(const  XMLExcepts::Codes toLoad
  244.                             , const char* const         text1
  245.                             , const char* const         text2
  246.                             , const char* const         text3
  247.                             , const char* const         text4)
  248. {
  249.     // Store the error code
  250.     fCode = toLoad;
  251.     // Load up the text into a local buffer
  252.     const unsigned int msgSize = 4095;
  253.     XMLCh errText[msgSize + 1];
  254.     // load the text
  255. if (!gGetMsgLoader().loadMsg(toLoad, errText, msgSize, text1, text2, text3, text4))
  256. {
  257. fMsg = XMLString::replicate(gDefErrMsg);
  258. return;
  259. }
  260.     // We got the text so replicate it into the message member
  261.     fMsg = XMLString::replicate(errText);
  262. }
  263. // -----------------------------------------------------------------------
  264. //  Reinitialise the message mutex
  265. // -----------------------------------------------------------------------
  266. void XMLException::reinitMsgMutex()
  267. {
  268. delete sMsgMutex;
  269. sMsgMutex = 0;
  270. }
  271. // -----------------------------------------------------------------------
  272. //  Reinitialise the message loader
  273. // -----------------------------------------------------------------------
  274. void XMLException::reinitMsgLoader()
  275. {
  276. delete sMsgLoader;
  277. sMsgLoader = 0;
  278. }