ICUMsgLoader.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: ICUMsgLoader.cpp,v $
  58.  * Revision 1.6  2001/11/01 23:39:18  jasons
  59.  * 2001-11-01  Jason E. Stewart  <jason@openinformatics.com>
  60.  *
  61.  *  * src/util/MsgLoaders/ICU/ICUMsgLoader.hpp (Repository):
  62.  *  * src/util/MsgLoaders/ICU/ICUMsgLoader.cpp (Repository):
  63.  *  Updated to compile with ICU-1.8.1
  64.  *
  65.  * Revision 1.5  2000/03/02 19:55:14  roddey
  66.  * This checkin includes many changes done while waiting for the
  67.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  68.  * available elsewhere.
  69.  *
  70.  * Revision 1.4  2000/02/06 07:48:21  rahulj
  71.  * Year 2K copyright swat.
  72.  *
  73.  * Revision 1.3  2000/01/19 00:58:38  roddey
  74.  * Update to support new ICU 1.4 release.
  75.  *
  76.  * Revision 1.2  1999/11/19 21:24:03  aruna1
  77.  * incorporated ICU 1.3.1 related changes int he file
  78.  *
  79.  * Revision 1.1.1.1  1999/11/09 01:07:23  twl
  80.  * Initial checkin
  81.  *
  82.  * Revision 1.4  1999/11/08 20:45:26  rahul
  83.  * Swat for adding in Product name and CVS comment log variable.
  84.  *
  85.  */
  86. // ---------------------------------------------------------------------------
  87. //  Includes
  88. // ---------------------------------------------------------------------------
  89. #include <util/XercesDefs.hpp>
  90. #include <util/PlatformUtils.hpp>
  91. #include <util/XMLMsgLoader.hpp>
  92. #include <util/XMLString.hpp>
  93. #include "ICUMsgLoader.hpp"
  94. #include "unicode/resbund.h"
  95. #include "string.h"
  96. // ---------------------------------------------------------------------------
  97. //  Local static methods
  98. // ---------------------------------------------------------------------------
  99. static const XMLCh* mapId(  const   XMLMsgLoader::XMLMsgId   msgToLoad
  100.                             , const XMLCh*                   bundleType)
  101. {
  102.     static const XMLCh test[] = { 0x65, 0x66, 0 };
  103.     return test;
  104. }
  105. // ---------------------------------------------------------------------------
  106. //  Public Constructors and Destructor
  107. // ---------------------------------------------------------------------------
  108. ICUMsgLoader::ICUMsgLoader(const XMLCh* const  toLoad) :
  109.     fBundle(0)
  110.     , fBundleType((XMLCh*)toLoad)
  111. {
  112.     // Ok, lets try to create the bundle now
  113.     UErrorCode err = U_ZERO_ERROR;
  114.     fBundle = new ResourceBundle(0, err);
  115.     if (!U_SUCCESS(err))
  116.     {
  117.         // <TBD> Need to panic again here?
  118.     }
  119. }
  120. ICUMsgLoader::~ICUMsgLoader()
  121. {
  122.     delete fBundle;
  123. }
  124. // ---------------------------------------------------------------------------
  125. //  Implementation of the virtual message loader API
  126. // ---------------------------------------------------------------------------
  127. bool ICUMsgLoader::loadMsg( const   XMLMsgLoader::XMLMsgId  msgToLoad
  128.                             ,       XMLCh* const            toFill
  129.                             , const unsigned int           maxChars)
  130. {
  131.     //
  132.     //  Map the passed id to the required message bundle key name. We use
  133.     //  a local array to map the message id to the correct string. This array
  134.     //  is generated from a little utility program that can kick out the
  135.     //  message text in a couple of different formats.
  136.     //
  137.     const XMLCh* const keyStr = mapId(msgToLoad, fBundleType);
  138.     if (!keyStr)
  139.         return false;
  140.     // And now try to load that key's related message
  141.     UErrorCode err;
  142. //    UnicodeString keyVal(keyStr);
  143. //    const UnicodeString* msgString = fBundle->getStringEx(keyVal, err);
  144. //    if (!msgString)
  145. //        return false;
  146.     UnicodeString msgString = fBundle->getStringEx(XMLString::transcode(keyStr), err);
  147.     // Extract out from the UnicodeString to the passed buffer
  148.     const unsigned int len = msgString.length();
  149.     const unsigned int lesserLen = (len < maxChars) ? len : maxChars;
  150.     msgString.extract
  151.     (
  152.         0
  153.         , lesserLen
  154.         , toFill
  155.     );
  156.     // Cap it off and return success
  157.     toFill[lesserLen] = 0;
  158.     return true;
  159. }
  160. bool ICUMsgLoader::loadMsg( const   XMLMsgLoader::XMLMsgId  msgToLoad
  161.                             ,       XMLCh* const            toFill
  162.                             , const unsigned int           maxChars
  163.                             , const XMLCh* const            repText1
  164.                             , const XMLCh* const            repText2
  165.                             , const XMLCh* const            repText3
  166.                             , const XMLCh* const            repText4)
  167. {
  168.     // Call the other version to load up the message
  169.     if (!loadMsg(msgToLoad, toFill, maxChars))
  170.         return false;
  171.     // And do the token replacement
  172.     XMLString::replaceTokens(toFill, maxChars, repText1, repText2, repText3, repText4);
  173.     return true;
  174. }
  175. bool ICUMsgLoader::loadMsg( const   XMLMsgLoader::XMLMsgId  msgToLoad
  176.                             ,       XMLCh* const            toFill
  177.                             , const unsigned int           maxChars
  178.                             , const char* const             repText1
  179.                             , const char* const             repText2
  180.                             , const char* const             repText3
  181.                             , const char* const             repText4)
  182. {
  183.     //
  184.     //  Transcode the provided parameters and call the other version,
  185.     //  which will do the replacement work.
  186.     //
  187.     XMLCh* tmp1 = 0;
  188.     XMLCh* tmp2 = 0;
  189.     XMLCh* tmp3 = 0;
  190.     XMLCh* tmp4 = 0;
  191.     bool bRet = false;
  192.     if (repText1)
  193.         tmp1 = XMLString::transcode(repText1);
  194.     if (repText2)
  195.         tmp2 = XMLString::transcode(repText2);
  196.     if (repText3)
  197.         tmp3 = XMLString::transcode(repText3);
  198.     if (repText4)
  199.         tmp4 = XMLString::transcode(repText4);
  200.     bRet = loadMsg(msgToLoad, toFill, maxChars, tmp1, tmp2, tmp3, tmp4);
  201.     if (tmp1)
  202.         delete [] tmp1;
  203.     if (tmp2)
  204.         delete [] tmp2;
  205.     if (tmp3)
  206.         delete [] tmp3;
  207.     if (tmp4)
  208.         delete [] tmp4;
  209.     return bRet;
  210. }