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

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