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

词法分析

开发平台:

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: Xlat_CppSrc.cpp,v $
  58.  * Revision 1.9  2003/04/14 08:41:00  gareth
  59.  * Xlat now works under linux - Big thanks to Neil Graham (I no longer have to find a windows box). Still slight problems working with glibc before 2.2.4 (If you mess up the parameters it seg faults due to handling of wprintf)
  60.  *
  61.  * Revision 1.8  2002/12/12 19:30:48  peiyongz
  62.  * Message file name changed.
  63.  *
  64.  * Revision 1.7  2002/11/12 17:24:58  tng
  65.  * DOM Message: add new domain for DOM Messages.
  66.  *
  67.  * Revision 1.6  2002/11/04 15:24:50  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.5  2002/07/31 18:39:53  tng
  71.  * [Bug 3788] very long lines in CppErrMsgs_EN_US.hpp causes problems for OS390 compiler.
  72.  *
  73.  * Revision 1.4  2000/03/02 19:55:53  roddey
  74.  * This checkin includes many changes done while waiting for the
  75.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  76.  * available elsewhere.
  77.  *
  78.  * Revision 1.3  2000/02/06 07:48:41  rahulj
  79.  * Year 2K copyright swat.
  80.  *
  81.  * Revision 1.2  2000/01/05 20:24:58  roddey
  82.  * Some changes to simplify life for the Messge Catalog message loader. The formatter
  83.  * for the message loader now spits out a simple header of ids that allows the loader to
  84.  * be independent of hard coded set numbers.
  85.  *
  86.  * Revision 1.1.1.1  1999/11/09 01:01:16  twl
  87.  * Initial checkin
  88.  *
  89.  * Revision 1.4  1999/11/08 20:42:05  rahul
  90.  * Swat for adding in Product name and CVS comment log variable.
  91.  *
  92.  */
  93. // ---------------------------------------------------------------------------
  94. //  Includes
  95. // ---------------------------------------------------------------------------
  96. #include "Xlat.hpp"
  97. // ---------------------------------------------------------------------------
  98. //  CppSrcFormatter: Implementation of the formatter interface
  99. // ---------------------------------------------------------------------------
  100. void CppSrcFormatter::endDomain(const   XMLCh* const    domainName
  101.                                 , const unsigned int    msgCount)
  102. {
  103.     // And close out the array declaration
  104.     fwprintf(fOutFl, L"n};n");
  105.     // Output the const size value
  106.     fwprintf(fOutFl, L"const unsigned int %s%s = %d;nn", xmlStrToPrintable(fCurDomainName), longChars("Size"), msgCount);
  107.     releasePrintableStr
  108. }
  109. void CppSrcFormatter::endMsgType(const MsgTypes type)
  110. {
  111.     if (fFirst)
  112.     {
  113.         fwprintf(fOutFl, L"    { ");
  114.         fFirst = false;
  115.     }
  116.      else
  117.     {
  118.         fwprintf(fOutFl, L"  , { ");
  119.     }
  120.     XMLCh* rawData = typePrefixes[type];
  121.     while (*rawData)
  122.         fwprintf(fOutFl, L"0x%04lX,", *rawData++);
  123.     XMLCh* tmpXMLStr = rawData = XMLString::transcode("End");
  124.     while (*rawData)
  125.         fwprintf(fOutFl, L"0x%04lX,", *rawData++);
  126.     XMLString::release(&tmpXMLStr);
  127.     fwprintf(fOutFl, L"0x00 }n");
  128. }
  129. void CppSrcFormatter::endOutput()
  130. {
  131.     fwprintf
  132.     (
  133.         fOutFl,
  134.           L"XERCES_CPP_NAMESPACE_ENDnn"
  135.     );
  136.     // Close the output file
  137.     fclose(fOutFl);
  138. }
  139. void
  140. CppSrcFormatter::nextMessage(const  XMLCh* const            msgText
  141.                             , const XMLCh* const            msgId
  142.                             , const unsigned int            messageId
  143.                             , const unsigned int            curId)
  144. {
  145.     //
  146.     //  We do not transcode to the output format in this case. Instead we
  147.     //  just store the straight Unicode format. Because we cannot assume 'L'
  148.     //  type prefix support, we have to put them out as numeric character
  149.     //  values.
  150.     //
  151.     const XMLCh* rawData = msgText;
  152.     if (fFirst)
  153.     {
  154.         fwprintf(fOutFl, L"    { ");
  155.         fFirst = false;
  156.     }
  157.      else
  158.     {
  159.         fwprintf(fOutFl, L"  , { ");
  160.     }
  161.     unsigned int i = 0;
  162.     while (*rawData) {
  163.         fwprintf(fOutFl, L"0x%04lX,", *rawData++);
  164.         if (++i == 35) {
  165.             i = 0;
  166.             fwprintf(fOutFl, L"n");
  167.             fwprintf(fOutFl, L"      ");
  168.         }
  169.     }
  170.     fwprintf(fOutFl, L"0x00 }n");
  171. }
  172. void CppSrcFormatter::startDomain(  const   XMLCh* const    domainName
  173.                                     , const XMLCh* const)
  174. {
  175.     //
  176.     //  We have a different array name for each domain, so store that for
  177.     //  later use and for use below.
  178.     //
  179.     XMLString::release(&fCurDomainName);
  180.     if (!XMLString::compareString(XMLUni::fgXMLErrDomain, domainName))
  181.     {
  182.         fCurDomainName = XMLString::transcode("gXMLErrArray");
  183.     }
  184.      else if (!XMLString::compareString(XMLUni::fgExceptDomain, domainName))
  185.     {
  186.         fCurDomainName = XMLString::transcode("gXMLExceptArray");
  187.     }
  188.      else if (!XMLString::compareString(XMLUni::fgValidityDomain, domainName))
  189.     {
  190.         fCurDomainName = XMLString::transcode("gXMLValidityArray");
  191.     }
  192.      else if (!XMLString::compareString(XMLUni::fgXMLDOMMsgDomain, domainName))
  193.     {
  194.         fCurDomainName = XMLString::transcode("gXMLDOMMsgArray");
  195.     }
  196.      else
  197.     {
  198.         wprintf(L"Unknown message domain: %sn", domainName);
  199.         throw ErrReturn_SrcFmtError;
  200.     }
  201.     //
  202.     //  Output the leading part of the array declaration. Its just an
  203.     //  array of pointers to Unicode chars.
  204.     //
  205.     fwprintf(fOutFl, L"const XMLCh %s[][128] = n{n", xmlStrToPrintable(fCurDomainName));
  206.     releasePrintableStr
  207.     // Reset the first message trigger
  208.     fFirst = true;
  209. }
  210. void CppSrcFormatter::startMsgType(const MsgTypes type)
  211. {
  212.     if (fFirst)
  213.     {
  214.         fwprintf(fOutFl, L"    { ");
  215.         fFirst = false;
  216.     }
  217.      else
  218.     {
  219.         fwprintf(fOutFl, L"  , { ");
  220.     }
  221.     XMLCh* rawData = typePrefixes[type];
  222.     while (*rawData)
  223.         fwprintf(fOutFl, L"0x%04lX,", *rawData++);
  224.     XMLCh *tmpXMLStr = rawData = XMLString::transcode("Start");
  225.     while (*rawData)
  226.         fwprintf(fOutFl, L"0x%04lX,", *rawData++);
  227.     XMLString::release(&tmpXMLStr);
  228.     fwprintf(fOutFl, L"0x00 }n");
  229. }
  230. void CppSrcFormatter::startOutput(  const   XMLCh* const    locale
  231.                                     , const XMLCh* const    outPath)
  232. {
  233.     //
  234.     //  Ok, lets try to open the the output file. All of the messages
  235.     //  for all the domains are put into a single Cpp file, which can be
  236.     //  compiled into the program.
  237.     //
  238.     //  CppErrMsgs_xxxx.cpp
  239.     //
  240.     //  where xxx is the locale suffix passed in.
  241.     //
  242.     const unsigned int bufSize = 4095;
  243.     XMLCh tmpBuf[bufSize + 1];
  244.     tmpBuf[0] = 0;
  245.     XMLCh *tmpXMLStr = XMLString::transcode("XercesMessages_");
  246.     XMLCh *tmpXMLStr2 = XMLString::transcode(".hpp");
  247.     XMLString::catString(tmpBuf, outPath); 
  248.     XMLString::catString(tmpBuf, tmpXMLStr );
  249.     XMLString::catString(tmpBuf, locale);
  250.     XMLString::catString(tmpBuf, tmpXMLStr2 );
  251.     XMLString::release(&tmpXMLStr);
  252.     XMLString::release(&tmpXMLStr2);
  253.     char *tmpStr = XMLString::transcode(tmpBuf);
  254.     fOutFl = fopen(tmpStr, "wt");
  255.     XMLString::release(&tmpStr);
  256.     if ((!fOutFl) || (fwide(fOutFl, 1) <  0))
  257.     {
  258.         wprintf(L"Could not open the output file: %snn", tmpBuf);
  259.         throw ErrReturn_OutFileOpenFailed;
  260.     }
  261.     //
  262.     //  Ok, lets output the grunt data at the start of the file. We put out a
  263.     //  comment that indicates its a generated file, and the title string.
  264.     //
  265.     fwprintf
  266.     (
  267.         fOutFl
  268.         , L"// ----------------------------------------------------------------n"
  269.           L"//  This file was generated from the XML error message source.n"
  270.           L"//  so do not edit this file directly!!n"
  271.           L"// ----------------------------------------------------------------nn"
  272.           L"#include <xercesc/util/XercesDefs.hpp>nn"
  273.           L"XERCES_CPP_NAMESPACE_BEGINnn"
  274.     );
  275. }