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

词法分析

开发平台:

Visual 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.  * $Log: InMemMsgLoader.cpp,v $
  58.  * Revision 1.8  2003/05/15 18:29:49  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.7  2003/03/09 16:41:40  peiyongz
  62.  * PanicHandler
  63.  *
  64.  * Revision 1.6  2002/12/12 19:14:00  peiyongz
  65.  * InMem Message file name changed.
  66.  *
  67.  * Revision 1.5  2002/11/12 17:26:53  tng
  68.  * DOM Message: add new domain for DOM Messages.
  69.  *
  70.  * Revision 1.4  2002/11/04 15:10:40  tng
  71.  * C++ Namespace Support.
  72.  *
  73.  * Revision 1.3  2002/09/24 19:57:59  tng
  74.  * Performance: use XMLString::equals instead of XMLString::compareString
  75.  *
  76.  * Revision 1.2  2002/09/23 22:14:37  peiyongz
  77.  * Code sharing and Array boundary checking added
  78.  *
  79.  * Revision 1.1.1.1  2002/02/01 22:22:21  peiyongz
  80.  * sane_include
  81.  *
  82.  * Revision 1.5  2000/03/28 19:43:21  roddey
  83.  * Fixes for signed/unsigned warnings. New work for two way transcoding
  84.  * stuff.
  85.  *
  86.  * Revision 1.4  2000/03/02 19:55:15  roddey
  87.  * This checkin includes many changes done while waiting for the
  88.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  89.  * available elsewhere.
  90.  *
  91.  * Revision 1.3  2000/02/06 07:48:22  rahulj
  92.  * Year 2K copyright swat.
  93.  *
  94.  * Revision 1.2  1999/12/03 00:48:47  rahulj
  95.  * Removed byteswapping logic as its not needed for InMemory message loading.
  96.  *
  97.  * Revision 1.1.1.1  1999/11/09 01:07:19  twl
  98.  * Initial checkin
  99.  *
  100.  * Revision 1.4  1999/11/08 20:45:26  rahul
  101.  * Swat for adding in Product name and CVS comment log variable.
  102.  *
  103.  */
  104. // ---------------------------------------------------------------------------
  105. //  Includes
  106. // ---------------------------------------------------------------------------
  107. #include <xercesc/util/BitOps.hpp>
  108. #include <xercesc/util/PlatformUtils.hpp>
  109. #include <xercesc/util/XMLMsgLoader.hpp>
  110. #include <xercesc/util/XMLString.hpp>
  111. #include <xercesc/util/XMLUni.hpp>
  112. #include "InMemMsgLoader.hpp"
  113. #include "XercesMessages_en_US.hpp"
  114. XERCES_CPP_NAMESPACE_BEGIN
  115. // ---------------------------------------------------------------------------
  116. //  Public Constructors and Destructor
  117. // ---------------------------------------------------------------------------
  118. InMemMsgLoader::InMemMsgLoader(const XMLCh* const msgDomain)
  119. :fMsgDomain(0)
  120. {
  121.     if (!XMLString::equals(msgDomain, XMLUni::fgXMLErrDomain)
  122.     &&  !XMLString::equals(msgDomain, XMLUni::fgExceptDomain)
  123.     &&  !XMLString::equals(msgDomain, XMLUni::fgXMLDOMMsgDomain)
  124.     &&  !XMLString::equals(msgDomain, XMLUni::fgValidityDomain))
  125.     {
  126.         XMLPlatformUtils::panic(PanicHandler::Panic_UnknownMsgDomain);
  127.     }
  128.     fMsgDomain = XMLString::replicate(msgDomain, XMLPlatformUtils::fgMemoryManager);
  129. }
  130. InMemMsgLoader::~InMemMsgLoader()
  131. {
  132.     XMLPlatformUtils::fgMemoryManager->deallocate(fMsgDomain);//delete [] fMsgDomain;
  133. }
  134. // ---------------------------------------------------------------------------
  135. //  Implementation of the virtual message loader API
  136. // ---------------------------------------------------------------------------
  137. bool InMemMsgLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  138.                             ,       XMLCh* const            toFill
  139.                             , const unsigned int            maxChars)
  140. {
  141.     //
  142.     //  Just use the id to map into the correct array of messages. Then
  143.     //  copy that to the caller's buffer.
  144.     //
  145.     //  NOTE:   The source text is in little endian form. So, if we are a
  146.     //          big endian machine, flip them in the process.
  147.     //
  148.     XMLCh* endPtr = toFill + maxChars;
  149.     XMLCh* outPtr = toFill;
  150.     const XMLCh* srcPtr = 0;
  151.     if (XMLString::equals(fMsgDomain, XMLUni::fgXMLErrDomain))
  152.     {
  153.         if ( msgToLoad > gXMLErrArraySize)
  154.             return false;
  155.         else
  156.             srcPtr = gXMLErrArray[msgToLoad - 1];
  157.     }
  158.      else if (XMLString::equals(fMsgDomain, XMLUni::fgExceptDomain))
  159.     {
  160.          if ( msgToLoad > gXMLExceptArraySize)
  161.             return false;
  162.          else
  163.              srcPtr = gXMLExceptArray[msgToLoad - 1];
  164.     }
  165.      else if (XMLString::equals(fMsgDomain, XMLUni::fgValidityDomain))
  166.     {
  167.          if ( msgToLoad > gXMLValidityArraySize)
  168.             return false;
  169.          else
  170.              srcPtr = gXMLValidityArray[msgToLoad - 1];
  171.     }
  172.      else if (XMLString::equals(fMsgDomain, XMLUni::fgXMLDOMMsgDomain))
  173.     {
  174.          if ( msgToLoad > gXMLDOMMsgArraySize)
  175.             return false;
  176.          else
  177.              srcPtr = gXMLDOMMsgArray[msgToLoad - 1];
  178.     }
  179.      while (*srcPtr && (outPtr < endPtr))
  180.      {
  181.          *outPtr++ = *srcPtr++;
  182.      }
  183.      *outPtr = 0;
  184.      return true;
  185. }
  186. bool InMemMsgLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  187.                             ,       XMLCh* const            toFill
  188.                             , const unsigned int            maxChars
  189.                             , const XMLCh* const            repText1
  190.                             , const XMLCh* const            repText2
  191.                             , const XMLCh* const            repText3
  192.                             , const XMLCh* const            repText4)
  193. {
  194.     // Call the other version to load up the message
  195.     if (!loadMsg(msgToLoad, toFill, maxChars))
  196.         return false;
  197.     // And do the token replacement
  198.     XMLString::replaceTokens(toFill, maxChars, repText1, repText2, repText3, repText4);
  199.     return true;
  200. }
  201. bool InMemMsgLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  202.                             ,       XMLCh* const            toFill
  203.                             , const unsigned int            maxChars
  204.                             , const char* const             repText1
  205.                             , const char* const             repText2
  206.                             , const char* const             repText3
  207.                             , const char* const             repText4)
  208. {
  209.     //
  210.     //  Transcode the provided parameters and call the other version,
  211.     //  which will do the replacement work.
  212.     //
  213.     XMLCh* tmp1 = 0;
  214.     XMLCh* tmp2 = 0;
  215.     XMLCh* tmp3 = 0;
  216.     XMLCh* tmp4 = 0;
  217.     bool bRet = false;
  218.     if (repText1)
  219.         tmp1 = XMLString::transcode(repText1, XMLPlatformUtils::fgMemoryManager);
  220.     if (repText2)
  221.         tmp2 = XMLString::transcode(repText2, XMLPlatformUtils::fgMemoryManager);
  222.     if (repText3)
  223.         tmp3 = XMLString::transcode(repText3, XMLPlatformUtils::fgMemoryManager);
  224.     if (repText4)
  225.         tmp4 = XMLString::transcode(repText4, XMLPlatformUtils::fgMemoryManager);
  226.     bRet = loadMsg(msgToLoad, toFill, maxChars, tmp1, tmp2, tmp3, tmp4);
  227.     if (tmp1)
  228.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp1);//delete [] tmp1;
  229.     if (tmp2)
  230.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp2);//delete [] tmp2;
  231.     if (tmp3)
  232.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp3);//delete [] tmp3;
  233.     if (tmp4)
  234.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp4);//delete [] tmp4;
  235.     return bRet;
  236. }
  237. XERCES_CPP_NAMESPACE_END