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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2001 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.  * $Id: Win32MsgLoader.cpp,v 1.8 2003/05/15 18:29:49 knoaman Exp $
  58.  */
  59. // ---------------------------------------------------------------------------
  60. //  Includes
  61. // ---------------------------------------------------------------------------
  62. #include <xercesc/util/XercesDefs.hpp>
  63. #include <xercesc/util/PlatformUtils.hpp>
  64. #include <xercesc/util/XMLMsgLoader.hpp>
  65. #include <xercesc/util/XMLString.hpp>
  66. #include <xercesc/util/XMLUni.hpp>
  67. #include <windows.h>
  68. #include "Win32MsgLoader.hpp"
  69. // Function prototypes
  70. BOOL APIENTRY DllMain(HINSTANCE hModule,
  71.                              DWORD  ul_reason_for_call,
  72.                              LPVOID lpReserved);
  73. // ---------------------------------------------------------------------------
  74. //  Public Constructors and Destructor
  75. // ---------------------------------------------------------------------------
  76. HINSTANCE globalModuleHandle;
  77. BOOL APIENTRY DllMain(HINSTANCE hModule,
  78.                       DWORD  ul_reason_for_call,
  79.                       LPVOID lpReserved)
  80. {
  81.   switch (ul_reason_for_call) {
  82.   case DLL_PROCESS_ATTACH:
  83.     globalModuleHandle = hModule;
  84.     break;
  85.   case DLL_THREAD_ATTACH:
  86.     break;
  87.   case DLL_THREAD_DETACH:
  88.     break;
  89.   case DLL_PROCESS_DETACH:
  90.     break;
  91.   }
  92.   return TRUE;
  93. }
  94. XERCES_CPP_NAMESPACE_BEGIN
  95. // ---------------------------------------------------------------------------
  96. //  Global module handle
  97. // ---------------------------------------------------------------------------
  98. Win32MsgLoader::Win32MsgLoader(const XMLCh* const msgDomain) :
  99.     fDomainOfs(0)
  100.     , fModHandle(0)
  101.     , fMsgDomain(0)
  102. {
  103.     // Try to get the module handle
  104.     fModHandle = globalModuleHandle;
  105.     if (!fModHandle)
  106.     {
  107.         //
  108.         //  If we didn't find it, its probably because its a development
  109.         //  build which is built as separate DLLs, so lets look for the DLL
  110.         //  that we are part of.
  111.         //
  112.         static const char* const privDLLName = "IXUTIL";
  113.         fModHandle = ::GetModuleHandleA(privDLLName);
  114.         // If neither exists, then we give up
  115.         if (!fModHandle)
  116.         {
  117.             // Probably have to call panic here
  118.         }
  119.     }
  120.     // Store the domain name
  121.     fMsgDomain = XMLString::replicate(msgDomain, XMLPlatformUtils::fgMemoryManager);
  122.     // And precalc the id offset we use for this domain
  123.     if (XMLString::equals(fMsgDomain, XMLUni::fgXMLErrDomain))
  124.         fDomainOfs = 0;
  125.     else if (XMLString::equals(fMsgDomain, XMLUni::fgExceptDomain))
  126.         fDomainOfs = 0x2000;
  127.     else if (XMLString::equals(fMsgDomain, XMLUni::fgValidityDomain))
  128.         fDomainOfs = 0x4000;
  129.     else if (XMLString::equals(fMsgDomain, XMLUni::fgXMLDOMMsgDomain))
  130.         fDomainOfs = 0x6000;
  131.     else
  132.         XMLPlatformUtils::panic(PanicHandler::Panic_UnknownMsgDomain);
  133. }
  134. Win32MsgLoader::~Win32MsgLoader()
  135. {
  136.     XMLPlatformUtils::fgMemoryManager->deallocate(fMsgDomain);//delete [] fMsgDomain;
  137. }
  138. // ---------------------------------------------------------------------------
  139. //  Implementation of the virtual message loader API
  140. // ---------------------------------------------------------------------------
  141. //
  142. //  This is the method that actually does the work of loading a message from
  143. //  the attached resources. Note that we don't use LoadStringW here, since it
  144. //  won't work on Win98. So we go the next level down and do what LoadStringW
  145. //  would have done, since this will work on either platform.
  146. //
  147. bool Win32MsgLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  148.                             ,       XMLCh* const            toFill
  149.                             , const unsigned int            maxChars)
  150. {
  151.     // In case we error return, and they don't check it...
  152.     toFill[0] = 0;
  153.     // Adjust the message id by the domain offset
  154.     const unsigned int theMsgId = msgToLoad + fDomainOfs;
  155.     //
  156.     //  Figure out the actual id the id, adjusting it by the domain offset.
  157.     //  Then first we calculate the particular 16 string block that this id
  158.     //  is in, and the offset within that block of the string in question.
  159.     //
  160.     const unsigned int theBlock = (theMsgId >> 4) + 1;
  161.     const unsigned int theOfs   = theMsgId & 0x000F;
  162.     // Try to find this resource. If we fail to find it, return false
  163.     HRSRC hMsgRsc = ::FindResourceExA
  164.     (
  165.         fModHandle
  166.         , RT_STRING
  167.         , MAKEINTRESOURCE(theBlock)
  168.         , MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL)
  169.     );
  170.     if (!hMsgRsc)
  171.         return false;
  172.     // We found it, so load the block. If this fails, also return a false
  173.     HGLOBAL hGbl = ::LoadResource(fModHandle, hMsgRsc);
  174.     if (!hGbl)
  175.         return false;
  176.     // Lock this resource into memory. Again, if it fails, just return false
  177.     const XMLCh* pBlock = (const XMLCh*)::LockResource(hGbl);
  178.     if (!pBlock)
  179.         return false;
  180.     //
  181.     //  Look through the block for our desired message. Its stored such that
  182.     //  the zeroth entry has the length minus the separator null.
  183.     //
  184.     for (unsigned int index = 0; index < theOfs; index++)
  185.         pBlock += *pBlock + 1;
  186.     // Calculate how many actual chars we will end up with
  187.     const unsigned int actualChars = ((maxChars < *pBlock) ? maxChars : *pBlock);
  188.     // Ok, finally now copy as much as we can into the caller's buffer
  189.     wcsncpy(toFill, pBlock + 1, actualChars);
  190.     toFill[actualChars] = 0;
  191.     return true;
  192. }
  193. bool Win32MsgLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  194.                             ,       XMLCh* const            toFill
  195.                             , const unsigned int            maxChars
  196.                             , const XMLCh* const            repText1
  197.                             , const XMLCh* const            repText2
  198.                             , const XMLCh* const            repText3
  199.                             , const XMLCh* const            repText4)
  200. {
  201.     // Call the other version to load up the message
  202.     if (!loadMsg(msgToLoad, toFill, maxChars))
  203.         return false;
  204.     // And do the token replacement
  205.     XMLString::replaceTokens(toFill, maxChars, repText1, repText2, repText3, repText4);
  206.     return true;
  207. }
  208. bool Win32MsgLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  209.                             ,       XMLCh* const            toFill
  210.                             , const unsigned int            maxChars
  211.                             , const char* const             repText1
  212.                             , const char* const             repText2
  213.                             , const char* const             repText3
  214.                             , const char* const             repText4)
  215. {
  216.     //
  217.     //  Transcode the provided parameters and call the other version,
  218.     //  which will do the replacement work.
  219.     //
  220.     XMLCh* tmp1 = 0;
  221.     XMLCh* tmp2 = 0;
  222.     XMLCh* tmp3 = 0;
  223.     XMLCh* tmp4 = 0;
  224.     bool bRet = false;
  225.     if (repText1)
  226.         tmp1 = XMLString::transcode(repText1, XMLPlatformUtils::fgMemoryManager);
  227.     if (repText2)
  228.         tmp2 = XMLString::transcode(repText2, XMLPlatformUtils::fgMemoryManager);
  229.     if (repText3)
  230.         tmp3 = XMLString::transcode(repText3, XMLPlatformUtils::fgMemoryManager);
  231.     if (repText4)
  232.         tmp4 = XMLString::transcode(repText4, XMLPlatformUtils::fgMemoryManager);
  233.     bRet = loadMsg(msgToLoad, toFill, maxChars, tmp1, tmp2, tmp3, tmp4);
  234.     if (tmp1)
  235.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp1);//delete [] tmp1;
  236.     if (tmp2)
  237.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp2);//delete [] tmp2;
  238.     if (tmp3)
  239.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp3);//delete [] tmp3;
  240.     if (tmp4)
  241.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp4);//delete [] tmp4;
  242.     return bRet;
  243. }
  244. XERCES_CPP_NAMESPACE_END