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

词法分析

开发平台:

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.  * $Id: MsgLoader.cpp,v 1.5 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/XMLUniDefs.hpp>
  67. #include <xercesc/util/XMLUni.hpp>
  68. #include "MsgLoader.hpp"
  69. #include "XMLMessages.h"
  70. #include <locale.h>
  71. #include <stdlib.h>
  72. #include <stdio.h>
  73. #include <qmhrtvm.h>
  74. #include <qusec.h>
  75. XERCES_CPP_NAMESPACE_BEGIN
  76. // ---------------------------------------------------------------------------
  77. //  Public Constructors and Destructor
  78. // ---------------------------------------------------------------------------
  79. MsgCatalogLoader::MsgCatalogLoader(const XMLCh* const msgDomain) :
  80.     fCatalogHandle(0)
  81.     , fMsgDomain(0)
  82. {
  83.     fMsgDomain = XMLString::replicate(msgDomain, XMLPlatformUtils::fgMemoryManager);
  84. }
  85. MsgCatalogLoader::~MsgCatalogLoader()
  86. {
  87.     XMLPlatformUtils::fgMemoryManager->deallocate(fMsgDomain);//delete[] fMsgDomain;
  88. }
  89. char* PackingRepText(const char * const repText1,
  90.      const char * const repText2,
  91.      const char * const repText3,
  92.      const char * const repText4,
  93.      int& totalsize)
  94. {
  95.     short sizes[4];
  96.     char* reps[4];
  97.     char *buffer; // Allocate just what we need
  98.     char* anchor;
  99.     char temp[2];
  100.     reps[0] = (char*)repText1;
  101.     reps[1] = (char*)repText2;
  102.     reps[2] = (char*)repText3;
  103.     reps[3] = (char*)repText4;
  104.     int count = 0;
  105.     for(int i = 0; i < 4; i++)
  106. if(reps[i] != NULL)
  107. { // Collect all the sizes and count how many we've got
  108.     sizes[i] = strlen(reps[i]);
  109.             totalsize += sizes[i]+2;
  110.     count++;
  111. }
  112.     buffer = (char*)malloc(totalsize); // Allocate just what we need
  113.     anchor = buffer;
  114.     for(i = 0; i < count; i++) // Stuff everything into the buffer
  115.     {
  116. memcpy(buffer, (void *)&sizes[i], sizeof(short));
  117. buffer += sizeof(short);
  118. memcpy(buffer, reps[i], sizes[i]);
  119. buffer += sizes[i];
  120.     }
  121.     return anchor; // This guy is still holding the beginning of the buffer
  122. }
  123. // ---------------------------------------------------------------------------
  124. //  Implementation of the local retrieve message
  125. // ---------------------------------------------------------------------------
  126. bool localMsg(char * msgId
  127.                             ,       XMLCh* const            toFill
  128.                             , const unsigned int            maxChars
  129.     , char*     repTexts
  130.     , int     size)
  131. {
  132.     typedef _Packed struct {
  133. Qmh_Rtvm_RTVM0100_t mdata;        /* Basic Message Data                  */
  134. char                mtext[1024];  /* Kind of arbitrary, enough?      */
  135.     } MyMessage_t;
  136.     /* Information about the message that we're going to retrieve               */
  137.     char         msgformat[9]  = "RTVM0100";
  138.     char         msgfile[21]   = "QXMLMSG   *LIBL     ";
  139.     char  *msgsubstdta  = repTexts; // ??
  140.     int   msgsubstlen = 0;
  141.     if(repTexts)
  142. msgsubstlen = size;  //strlen(repTexts); // ??
  143.     char         msgsubst[11]  = "*YES      ";
  144.     char         msgfmtctl[11] = "*NO       ";
  145.     Qus_EC_t     errorcode;
  146.     MyMessage_t  message;                 /* message we'll retrieve        */
  147.   memset(&errorcode, 0, sizeof(errorcode));    /* Clear the error area   */
  148.   errorcode.Bytes_Provided = sizeof(errorcode);/* Init the error code    */
  149.   memset(&message, 0, sizeof(message.mdata));  /* Clear the message area */
  150.   message.mtext[0]='';                       /* Null Text String       */
  151.   int len = sizeof(message);
  152.   for(int i = 0; i < 1024; i++)
  153.       message.mtext[i] = '';
  154.   QMHRTVM( &message, len, msgformat, msgId,
  155.            msgfile, msgsubstdta, msgsubstlen, msgsubst, msgfmtctl, &errorcode);  /*,
  156.    "*MSGID    ", 1200, 1200);  */
  157.                                          /* The error message should now be stored in message.mtext */
  158.  /* with the CCSID 1200     */
  159. //    char msgString[100];
  160. //    char* catMessage = catgets( fCatalogHandle, msgSet, (int)msgToLoad, msgString);
  161.     XMLString::transcode(message.mtext, toFill, maxChars);
  162.     return true;
  163. }
  164. // ---------------------------------------------------------------------------
  165. //  Implementation of the virtual message loader API
  166. // ---------------------------------------------------------------------------
  167. bool MsgCatalogLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  168.                             ,       XMLCh* const            toFill
  169.                             , const unsigned int            maxChars)
  170. {
  171.     char * msgId;
  172.     char * repTexts = NULL;
  173.     int size = 0;
  174.     if (XMLString::equals(fMsgDomain, XMLUni::fgXMLErrDomain))
  175.     {
  176.         if(msgToLoad < 7) // Warning messages
  177.             msgId = Warnings[msgToLoad - 2];
  178.         else               // Fatal Errors
  179.             msgId = Errors[msgToLoad - 9];
  180.     }
  181.     else if (XMLString::equals(fMsgDomain, XMLUni::fgExceptDomain))
  182.         msgId = Exceptions[msgToLoad - 2];
  183.     else if (XMLString::equals(fMsgDomain, XMLUni::fgValidityDomain))
  184.         msgId = Invalid[msgToLoad - 2];
  185.     else if (XMLString::equals(fMsgDomain, XMLUni::fgXMLDOMMsgDomain))
  186.         msgId = DOMMsg[msgToLoad - 2];
  187.     if (!localMsg(msgId, toFill, maxChars, repTexts, size))
  188.         return false;
  189.     return true;
  190. }
  191. bool MsgCatalogLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  192.                             ,       XMLCh* const            toFill
  193.                             , const unsigned int            maxChars
  194.                             , const char* const            repText1
  195.                             , const char* const            repText2
  196.                             , const char* const            repText3
  197.                             , const char* const            repText4)
  198. {
  199.     char * msgId;
  200.     int size=0;
  201.     char* repTexts = PackingRepText(repText1, repText2, repText3, repText4, size);
  202.     if (XMLString::equals(fMsgDomain, XMLUni::fgXMLErrDomain))
  203.     {
  204.         if(msgToLoad < 7)
  205.             msgId = Warnings[msgToLoad - 2];
  206.         else
  207.             msgId = Errors[msgToLoad - 9];
  208.     }
  209.     else if (XMLString::equals(fMsgDomain, XMLUni::fgExceptDomain))
  210.         msgId = Exceptions[msgToLoad - 2];
  211.     else if (XMLString::equals(fMsgDomain, XMLUni::fgValidityDomain))
  212.         msgId = Invalid[msgToLoad - 2];
  213.     else if (XMLString::equals(fMsgDomain, XMLUni::fgXMLDOMMsgDomain))
  214.         msgId = DOMMsg[msgToLoad - 2];
  215.     // Call the other version to load up the message
  216.     if (!localMsg(msgId, toFill, maxChars, repTexts, size))
  217.         return false;
  218.     return true;
  219. }
  220. bool MsgCatalogLoader::loadMsg(const  XMLMsgLoader::XMLMsgId  msgToLoad
  221.                             ,       XMLCh* const            toFill
  222.                             , const unsigned int           maxChars
  223.                             , const XMLCh* const             repText1
  224.                             , const XMLCh* const             repText2
  225.                             , const XMLCh* const             repText3
  226.                             , const XMLCh* const             repText4)
  227. {
  228.     //
  229.     //  Transcode the provided parameters and call the other version,
  230.     //  which will do the replacement work.
  231.     //
  232.     char* tmp1 = 0;
  233.     char* tmp2 = 0;
  234.     char* tmp3 = 0;
  235.     char* tmp4 = 0;
  236.     bool bRet = false;
  237.     if (repText1)
  238.         tmp1 = XMLString::transcode(repText1, XMLPlatformUtils::fgMemoryManager);
  239.     if (repText2)
  240.         tmp2 = XMLString::transcode(repText2, XMLPlatformUtils::fgMemoryManager);
  241.     if (repText3)
  242.         tmp3 = XMLString::transcode(repText3, XMLPlatformUtils::fgMemoryManager);
  243.     if (repText4)
  244.         tmp4 = XMLString::transcode(repText4, XMLPlatformUtils::fgMemoryManager);
  245.     bRet = loadMsg(msgToLoad, toFill, maxChars, tmp1, tmp2, tmp3, tmp4);
  246.     if (tmp1)
  247.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp1);//delete [] tmp1;
  248.     if (tmp2)
  249.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp2);//delete [] tmp2;
  250.     if (tmp3)
  251.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp3);//delete [] tmp3;
  252.     if (tmp4)
  253.         XMLPlatformUtils::fgMemoryManager->deallocate(tmp4);//delete [] tmp4;
  254.     return bRet;
  255. }
  256. XERCES_CPP_NAMESPACE_END