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

词法分析

开发平台:

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: MsgCatalogLoader.cpp,v $
  58.  * Revision 1.14  2003/05/15 18:29:49  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.13  2003/03/09 16:42:05  peiyongz
  62.  * PanicHandler
  63.  *
  64.  * Revision 1.12  2003/02/20 20:20:11  peiyongz
  65.  * Allow set user specified error message file location in PlatformUtils::Initialize().
  66.  *
  67.  * Revision 1.11  2002/12/12 16:46:18  peiyongz
  68.  * MsgCatalog file name changed.
  69.  *
  70.  * Revision 1.10  2002/12/06 16:49:47  peiyongz
  71.  * $XERCESCROOT/msg created as home directory for message files.
  72.  *
  73.  * Revision 1.9  2002/12/04 18:03:13  peiyongz
  74.  * use $XERCESCROOT to search for msg catalog file if XERCESC_NLS_HOME
  75.  * undefined
  76.  *
  77.  * Revision 1.8  2002/12/02 21:58:43  peiyongz
  78.  * nls support
  79.  *
  80.  * Revision 1.7  2002/11/12 17:27:12  tng
  81.  * DOM Message: add new domain for DOM Messages.
  82.  *
  83.  * Revision 1.6  2002/11/05 16:54:46  peiyongz
  84.  * Using XERCESC_NLS_HOME
  85.  *
  86.  * Revision 1.5  2002/11/04 15:10:41  tng
  87.  * C++ Namespace Support.
  88.  *
  89.  * Revision 1.4  2002/09/24 19:58:33  tng
  90.  * Performance: use XMLString::equals instead of XMLString::compareString
  91.  *
  92.  * Revision 1.3  2002/09/23 21:05:40  peiyongz
  93.  * remove debugging code
  94.  *
  95.  * Revision 1.2  2002/09/23 21:03:06  peiyongz
  96.  * Build MsgCatalog on Solaris
  97.  *
  98.  * Revision 1.1.1.1  2002/02/01 22:22:21  peiyongz
  99.  * sane_include
  100.  *
  101.  * Revision 1.7  2001/10/09 12:19:44  tng
  102.  * Leak fix: can call transcode directly instead of using copyString.
  103.  *
  104.  * Revision 1.6  2000/07/25 22:28:40  aruna1
  105.  * Char definitions in XMLUni moved to XMLUniDefs
  106.  *
  107.  * Revision 1.5  2000/03/02 19:55:16  roddey
  108.  * This checkin includes many changes done while waiting for the
  109.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  110.  * available elsewhere.
  111.  *
  112.  * Revision 1.4  2000/02/06 07:48:22  rahulj
  113.  * Year 2K copyright swat.
  114.  *
  115.  * Revision 1.3  2000/01/05 22:00:22  aruna1
  116.  * Modified message 'set' attribute reading sequence. Removed dependencies on  hard coded constants
  117.  *
  118.  * Revision 1.2  1999/12/23 01:43:37  aruna1
  119.  * MsgCatalog support added for solaris
  120.  *
  121.  * Revision 1.1.1.1  1999/11/09 01:07:16  twl
  122.  * Initial checkin
  123.  *
  124.  * Revision 1.2  1999/11/08 20:45:27  rahul
  125.  * Swat for adding in Product name and CVS comment log variable.
  126.  *
  127.  */
  128. // ---------------------------------------------------------------------------
  129. //  Includes
  130. // ---------------------------------------------------------------------------
  131. #include <xercesc/util/XercesDefs.hpp>
  132. #include <xercesc/util/PlatformUtils.hpp>
  133. #include <xercesc/util/XMLMsgLoader.hpp>
  134. #include <xercesc/util/XMLString.hpp>
  135. #include <xercesc/util/XMLUniDefs.hpp>
  136. #include <xercesc/util/XMLUni.hpp>
  137. #include "MsgCatalogLoader.hpp"
  138. #include "XMLMsgCat_Ids.hpp"
  139. #include <locale.h>
  140. #include <stdlib.h>
  141. #include <stdio.h>
  142. #include <string.h>
  143. XERCES_CPP_NAMESPACE_BEGIN
  144. // ---------------------------------------------------------------------------
  145. //  Public Constructors and Destructor
  146. // ---------------------------------------------------------------------------
  147. MsgCatalogLoader::MsgCatalogLoader(const XMLCh* const msgDomain)
  148. :fCatalogHandle(0)
  149. ,fMsgSet(0)
  150. {
  151.     if (!XMLString::equals(msgDomain, XMLUni::fgXMLErrDomain)
  152.     &&  !XMLString::equals(msgDomain, XMLUni::fgExceptDomain)
  153.     &&  !XMLString::equals(msgDomain, XMLUni::fgXMLDOMMsgDomain)
  154.     &&  !XMLString::equals(msgDomain, XMLUni::fgValidityDomain))
  155.     {
  156.         XMLPlatformUtils::panic(PanicHandler::Panic_UnknownMsgDomain);
  157.     }
  158.     // Prepare the path info
  159.     char locationBuf[1024];
  160.     memset(locationBuf, 0, sizeof locationBuf);
  161.     const char *nlsHome = XMLMsgLoader::getNLSHome();
  162.     
  163.     if (nlsHome)
  164.     {
  165.      strcpy(locationBuf, nlsHome);
  166.         strcat(locationBuf, "/");
  167.     }
  168.     else
  169.     {
  170.         nlsHome = getenv("XERCESC_NLS_HOME");
  171.         if (nlsHome)
  172.         {
  173.             strcpy(locationBuf, nlsHome);
  174.             strcat(locationBuf, "/");
  175.         }
  176.         else
  177.         {
  178.             nlsHome = getenv("XERCESCROOT");
  179.             if (nlsHome)
  180.             {                       
  181.                 strcpy(locationBuf, nlsHome);
  182.                 strcat(locationBuf, "/msg/");
  183.             }
  184.         }    
  185.     }
  186.     
  187.     // Prepare user-specified locale specific cat file
  188.     char catuser[1024];
  189.     memset(catuser, 0, sizeof catuser);
  190.     strcpy(catuser, locationBuf);
  191.     strcat(catuser, "XercesMessages_");
  192.     strcat(catuser, XMLMsgLoader::getLocale());
  193.     strcat(catuser, ".cat");
  194.         
  195.     char catdefault[1024];
  196.     memset(catdefault, 0, sizeof catdefault);
  197.     strcpy(catdefault, locationBuf);
  198.     strcat(catdefault, "XercesMessages_en_US.cat");
  199.    /**
  200.     * To open user-specified locale specific cat file
  201.     * and default cat file if necessary
  202.     */
  203.     if ( ((int)(fCatalogHandle=catopen(catuser, 0)) == -1) &&
  204.          ((int)(fCatalogHandle=catopen(catdefault, 0)) == -1)   )
  205.     {
  206.         // Probably have to call panic here
  207.         printf("Could not open catalog:n %sn or %sn", catuser, catdefault);
  208.         exit(1);
  209.     }
  210.     if (XMLString::equals(msgDomain, XMLUni::fgXMLErrDomain))
  211.         fMsgSet = CatId_XMLErrs;
  212.     else if (XMLString::equals(msgDomain, XMLUni::fgExceptDomain))
  213.         fMsgSet = CatId_XMLExcepts;
  214.     else if (XMLString::equals(msgDomain, XMLUni::fgValidityDomain))
  215.         fMsgSet = CatId_XMLValid;
  216.     else if (XMLString::equals(msgDomain, XMLUni::fgXMLDOMMsgDomain))
  217.         fMsgSet = CatId_XMLDOMMsg;
  218. }
  219. MsgCatalogLoader::~MsgCatalogLoader()
  220. {
  221.     catclose(fCatalogHandle);
  222. }
  223. // ---------------------------------------------------------------------------
  224. //  Implementation of the virtual message loader API
  225. // ---------------------------------------------------------------------------
  226. bool MsgCatalogLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  227.                               ,       XMLCh*   const          toFill
  228.                               , const unsigned int            maxChars)
  229. {
  230.     char msgString[100];
  231.     sprintf(msgString, "Could not find message ID %d from message set %dn", msgToLoad, fMsgSet);
  232.     char* catMessage = catgets( fCatalogHandle, fMsgSet, (int)msgToLoad, msgString);
  233.     // catgets returns a pointer to msgString if it fails to locate the message
  234.     // from the message catalog
  235.     if (XMLString::equals(catMessage, msgString))
  236.         return false;
  237.     else
  238.     {
  239.         XMLString::transcode(catMessage, toFill, maxChars);
  240.         return true;
  241.     }
  242. }
  243. bool MsgCatalogLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  244.                             ,       XMLCh* const            toFill
  245.                             , const unsigned int            maxChars
  246.                             , const XMLCh* const            repText1
  247.                             , const XMLCh* const            repText2
  248.                             , const XMLCh* const            repText3
  249.                             , const XMLCh* const            repText4)
  250. {
  251.     // Call the other version to load up the message
  252.     if (!loadMsg(msgToLoad, toFill, maxChars))
  253.         return false;
  254.     // And do the token replacement
  255.     XMLString::replaceTokens(toFill, maxChars, repText1, repText2, repText3, repText4);
  256.     return true;
  257. }
  258. bool MsgCatalogLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  259.                             ,       XMLCh* const            toFill
  260.                             , const unsigned int            maxChars
  261.                             , const char* const             repText1
  262.                             , const char* const             repText2
  263.                             , const char* const             repText3
  264.                             , const char* const             repText4)
  265. {
  266.     //
  267.     //  Transcode the provided parameters and call the other version,
  268.     //  which will do the replacement work.
  269.     //
  270.     XMLCh* tmp1 = 0;
  271.     XMLCh* tmp2 = 0;
  272.     XMLCh* tmp3 = 0;
  273.     XMLCh* tmp4 = 0;
  274.     bool bRet = false;
  275.     if (repText1)
  276.         tmp1 = XMLString::transcode(repText1, XMLPlatformUtils::fgMemoryManager);
  277.     if (repText2)
  278.         tmp2 = XMLString::transcode(repText2, XMLPlatformUtils::fgMemoryManager);
  279.     if (repText3)
  280.         tmp3 = XMLString::transcode(repText3, XMLPlatformUtils::fgMemoryManager);
  281.     if (repText4)
  282.         tmp4 = XMLString::transcode(repText4, XMLPlatformUtils::fgMemoryManager);
  283.     bRet = loadMsg(msgToLoad, toFill, maxChars, tmp1, tmp2, tmp3, tmp4);
  284.     if (tmp1)
  285.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp1);//delete [] tmp1;
  286.     if (tmp2)
  287.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp2);//delete [] tmp2;
  288.     if (tmp3)
  289.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp3);//delete [] tmp3;
  290.     if (tmp4)
  291.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp4);//delete [] tmp4;
  292.     return bRet;
  293. }
  294. XERCES_CPP_NAMESPACE_END