MsgCatalogLoader.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: MsgCatalogLoader.cpp,v $
  58.  * Revision 1.7  2001/10/09 12:19:44  tng
  59.  * Leak fix: can call transcode directly instead of using copyString.
  60.  *
  61.  * Revision 1.6  2000/07/25 22:28:40  aruna1
  62.  * Char definitions in XMLUni moved to XMLUniDefs
  63.  *
  64.  * Revision 1.5  2000/03/02 19:55:16  roddey
  65.  * This checkin includes many changes done while waiting for the
  66.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  67.  * available elsewhere.
  68.  *
  69.  * Revision 1.4  2000/02/06 07:48:22  rahulj
  70.  * Year 2K copyright swat.
  71.  *
  72.  * Revision 1.3  2000/01/05 22:00:22  aruna1
  73.  * Modified message 'set' attribute reading sequence. Removed dependencies on  hard coded constants
  74.  *
  75.  * Revision 1.2  1999/12/23 01:43:37  aruna1
  76.  * MsgCatalog support added for solaris
  77.  *
  78.  * Revision 1.1.1.1  1999/11/09 01:07:16  twl
  79.  * Initial checkin
  80.  *
  81.  * Revision 1.2  1999/11/08 20:45:27  rahul
  82.  * Swat for adding in Product name and CVS comment log variable.
  83.  *
  84.  */
  85. // ---------------------------------------------------------------------------
  86. //  Includes
  87. // ---------------------------------------------------------------------------
  88. #include <util/XercesDefs.hpp>
  89. #include <util/PlatformUtils.hpp>
  90. #include <util/XMLMsgLoader.hpp>
  91. #include <util/XMLString.hpp>
  92. #include <util/XMLUniDefs.hpp>
  93. #include <util/XMLUni.hpp>
  94. #include "MsgCatalogLoader.hpp"
  95. #include "XMLMsgCat_Ids.hpp"
  96. #include <locale.h>
  97. #include <stdlib.h>
  98. #include <stdio.h>
  99. #include <string.h>
  100. // ---------------------------------------------------------------------------
  101. //  Public Constructors and Destructor
  102. // ---------------------------------------------------------------------------
  103. MsgCatalogLoader::MsgCatalogLoader(const XMLCh* const msgDomain) :
  104.     fCatalogHandle(0)
  105.     , fMsgDomain(0)
  106. {
  107.     // Try to get the module handle
  108. char* tempLoc = setlocale(LC_ALL, "");
  109.     char catfile[256];
  110.     if (XMLPlatformUtils::fgLibLocation) {
  111.         strcpy(catfile, XMLPlatformUtils::fgLibLocation);
  112.         strcat(catfile, "/msg/");
  113.         strcat(catfile, "XMLMessages.cat");
  114.     }
  115. fCatalogHandle = catopen(catfile , 0);
  116.     if ((int)fCatalogHandle == -1)
  117.     {
  118.         // Probably have to call panic here
  119. printf("Could not open catalog XMLMessagesn");
  120. // TBD: Tell user what the locale is
  121. exit(1);
  122.     }
  123.     fMsgDomain = XMLString::replicate(msgDomain);
  124. }
  125. MsgCatalogLoader::~MsgCatalogLoader()
  126. {
  127.     if (fCatalogHandle)
  128. catclose( fCatalogHandle );
  129.     delete fMsgDomain;
  130. }
  131. // ---------------------------------------------------------------------------
  132. //  Implementation of the virtual message loader API
  133. // ---------------------------------------------------------------------------
  134. bool MsgCatalogLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  135.                             ,       XMLCh* const            toFill
  136.                             , const unsigned long           maxChars)
  137. {
  138.     int msgSet = CatId_XMLErrs;
  139.     if (!XMLString::compareString(fMsgDomain, XMLUni::fgXMLErrDomain))
  140.         msgSet = CatId_XMLErrs;
  141.     else if (!XMLString::compareString(fMsgDomain, XMLUni::fgExceptDomain))
  142.         msgSet = CatId_XMLExcepts;
  143.     else if (!XMLString::compareString(fMsgDomain, XMLUni::fgValidityDomain))
  144.         msgSet = CatId_XMLValid;
  145.     char msgString[100];
  146.     sprintf(msgString, "Could not find message ID %d from message set %dn", msgToLoad, msgSet);
  147.     char* catMessage = catgets( fCatalogHandle, msgSet, (int)msgToLoad, msgString);
  148.     XMLString::transcode(catMessage, toFill, maxChars);
  149.     return true;
  150. }
  151. bool MsgCatalogLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  152.                             ,       XMLCh* const            toFill
  153.                             , const unsigned long           maxChars
  154.                             , const XMLCh* const            repText1
  155.                             , const XMLCh* const            repText2
  156.                             , const XMLCh* const            repText3
  157.                             , const XMLCh* const            repText4)
  158. {
  159.     // Call the other version to load up the message
  160.     if (!loadMsg(msgToLoad, toFill, maxChars))
  161.         return false;
  162.     // And do the token replacement
  163.     XMLString::replaceTokens(toFill, maxChars, repText1, repText2, repText3, repText4);
  164.     return true;
  165. }
  166. bool MsgCatalogLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  167.                             ,       XMLCh* const            toFill
  168.                             , const unsigned long           maxChars
  169.                             , const char* const             repText1
  170.                             , const char* const             repText2
  171.                             , const char* const             repText3
  172.                             , const char* const             repText4)
  173. {
  174.     //
  175.     //  Transcode the provided parameters and call the other version,
  176.     //  which will do the replacement work.
  177.     //
  178.     XMLCh* tmp1 = 0;
  179.     XMLCh* tmp2 = 0;
  180.     XMLCh* tmp3 = 0;
  181.     XMLCh* tmp4 = 0;
  182.     bool bRet = false;
  183.     if (repText1)
  184.         tmp1 = XMLString::transcode(repText1);
  185.     if (repText2)
  186.         tmp2 = XMLString::transcode(repText2);
  187.     if (repText3)
  188.         tmp3 = XMLString::transcode(repText3);
  189.     if (repText4)
  190.         tmp4 = XMLString::transcode(repText4);
  191.     bRet = loadMsg(msgToLoad, toFill, maxChars, tmp1, tmp2, tmp3, tmp4);
  192.     if (tmp1)
  193.         delete [] tmp1;
  194.     if (tmp2)
  195.         delete [] tmp2;
  196.     if (tmp3)
  197.         delete [] tmp3;
  198.     if (tmp4)
  199.         delete [] tmp4;
  200.     return bRet;
  201. }