MsgLoader.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:10k
源码类别:

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