Xlat_CppSrc.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: Xlat_CppSrc.cpp,v $
  58.  * Revision 1.4  2000/03/02 19:55:53  roddey
  59.  * This checkin includes many changes done while waiting for the
  60.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  61.  * available elsewhere.
  62.  *
  63.  * Revision 1.3  2000/02/06 07:48:41  rahulj
  64.  * Year 2K copyright swat.
  65.  *
  66.  * Revision 1.2  2000/01/05 20:24:58  roddey
  67.  * Some changes to simplify life for the Messge Catalog message loader. The formatter
  68.  * for the message loader now spits out a simple header of ids that allows the loader to
  69.  * be independent of hard coded set numbers.
  70.  *
  71.  * Revision 1.1.1.1  1999/11/09 01:01:16  twl
  72.  * Initial checkin
  73.  *
  74.  * Revision 1.4  1999/11/08 20:42:05  rahul
  75.  * Swat for adding in Product name and CVS comment log variable.
  76.  *
  77.  */
  78. // ---------------------------------------------------------------------------
  79. //  Includes
  80. // ---------------------------------------------------------------------------
  81. #include "Xlat.hpp"
  82. // ---------------------------------------------------------------------------
  83. //  CppSrcFormatter: Implementation of the formatter interface
  84. // ---------------------------------------------------------------------------
  85. void CppSrcFormatter::endDomain(const   XMLCh* const    domainName
  86.                                 , const unsigned int    msgCount)
  87. {
  88.     // And close out the array declaration
  89.     fwprintf(fOutFl, L"n};n");
  90.     // Output the const size value
  91.     fwprintf(fOutFl, L"const unsigned int %s%s = %d;nn", fCurDomainName, L"Size", msgCount);
  92. }
  93. void CppSrcFormatter::endMsgType(const MsgTypes type)
  94. {
  95.     if (fFirst)
  96.     {
  97.         fwprintf(fOutFl, L"    { ");
  98.         fFirst = false;
  99.     }
  100.      else
  101.     {
  102.         fwprintf(fOutFl, L"  , { ");
  103.     }
  104.     const XMLCh* rawData = typePrefixes[type];
  105.     while (*rawData)
  106.         fwprintf(fOutFl, L"0x%04lX,", *rawData++);
  107.     rawData = L"End";
  108.     while (*rawData)
  109.         fwprintf(fOutFl, L"0x%04lX,", *rawData++);
  110.     fwprintf(fOutFl, L"0x00 }n");
  111. }
  112. void CppSrcFormatter::endOutput()
  113. {
  114.     // Close the output file
  115.     fclose(fOutFl);
  116. }
  117. void
  118. CppSrcFormatter::nextMessage(const  XMLCh* const            msgText
  119.                             , const XMLCh* const            msgId
  120.                             , const unsigned int            messageId
  121.                             , const unsigned int            curId)
  122. {
  123.     //
  124.     //  We do not transcode to the output format in this case. Instead we
  125.     //  just store the straight Unicode format. Because we cannot assume 'L'
  126.     //  type prefix support, we have to put them out as numeric character
  127.     //  values.
  128.     //
  129.     const XMLCh* rawData = msgText;
  130.     if (fFirst)
  131.     {
  132.         fwprintf(fOutFl, L"    { ");
  133.         fFirst = false;
  134.     }
  135.      else
  136.     {
  137.         fwprintf(fOutFl, L"  , { ");
  138.     }
  139.     while (*rawData)
  140.         fwprintf(fOutFl, L"0x%04lX,", *rawData++);
  141.     fwprintf(fOutFl, L"0x00 }n");
  142. }
  143. void CppSrcFormatter::startDomain(  const   XMLCh* const    domainName
  144.                                     , const XMLCh* const)
  145. {
  146.     //
  147.     //  We have a different array name for each domain, so store that for
  148.     //  later use and for use below.
  149.     //
  150.     if (!XMLString::compareString(XMLUni::fgXMLErrDomain, domainName))
  151.     {
  152.         fCurDomainName = L"gXMLErrArray";
  153.     }
  154.      else if (!XMLString::compareString(XMLUni::fgExceptDomain, domainName))
  155.     {
  156.         fCurDomainName = L"gXMLExceptArray";
  157.     }
  158.      else if (!XMLString::compareString(XMLUni::fgValidityDomain, domainName))
  159.     {
  160.         fCurDomainName = L"gXMLValidityArray";
  161.     }
  162.      else
  163.     {
  164.         wprintf(L"Unknown message domain: %sn", domainName);
  165.         throw ErrReturn_SrcFmtError;
  166.     }
  167.     //
  168.     //  Output the leading part of the array declaration. Its just an
  169.     //  array of pointers to Unicode chars.
  170.     //
  171.     fwprintf(fOutFl, L"const XMLCh %s[][128] = n{n", fCurDomainName);
  172.     // Reset the first message trigger
  173.     fFirst = true;
  174. }
  175. void CppSrcFormatter::startMsgType(const MsgTypes type)
  176. {
  177.     if (fFirst)
  178.     {
  179.         fwprintf(fOutFl, L"    { ");
  180.         fFirst = false;
  181.     }
  182.      else
  183.     {
  184.         fwprintf(fOutFl, L"  , { ");
  185.     }
  186.     const XMLCh* rawData = typePrefixes[type];
  187.     while (*rawData)
  188.         fwprintf(fOutFl, L"0x%04lX,", *rawData++);
  189.     rawData = L"Start";
  190.     while (*rawData)
  191.         fwprintf(fOutFl, L"0x%04lX,", *rawData++);
  192.     fwprintf(fOutFl, L"0x00 }n");
  193. }
  194. void CppSrcFormatter::startOutput(  const   XMLCh* const    locale
  195.                                     , const XMLCh* const    outPath)
  196. {
  197.     //
  198.     //  Ok, lets try to open the the output file. All of the messages
  199.     //  for all the domains are put into a single Cpp file, which can be
  200.     //  compiled into the program.
  201.     //
  202.     //  CppErrMsgs_xxxx.cpp
  203.     //
  204.     //  where xxx is the locale suffix passed in.
  205.     //
  206.     const unsigned int bufSize = 4095;
  207.     XMLCh tmpBuf[bufSize + 1];
  208.     swprintf(tmpBuf, L"%s/%s_%s.hpp", outPath, L"CppErrMsgs", locale);
  209.     fOutFl = _wfopen(tmpBuf, L"wt");
  210.     if (!fOutFl)
  211.     {
  212.         wprintf(L"Could not open the output file: %snn", tmpBuf);
  213.         throw ErrReturn_OutFileOpenFailed;
  214.     }
  215.     //
  216.     //  Ok, lets output the grunt data at the start of the file. We put out a
  217.     //  comment that indicates its a generated file, and the title string.
  218.     //
  219.     fwprintf
  220.     (
  221.         fOutFl
  222.         , L"// ----------------------------------------------------------------n"
  223.           L"//  This file was generated from the XML error message source.n"
  224.           L"//  so do not edit this file directly!!n"
  225.           L"// ----------------------------------------------------------------nn"
  226.     );
  227. }