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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2002 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: Xlat_ICUResourceBundle.cpp,v 1.5 2003/04/14 08:41:00 gareth Exp $
  58.  * $Log: Xlat_ICUResourceBundle.cpp,v $
  59.  * Revision 1.5  2003/04/14 08:41:00  gareth
  60.  * 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)
  61.  *
  62.  * Revision 1.4  2002/12/17 17:39:09  tng
  63.  * Xlat: generate icu message file with array format as default.
  64.  *
  65.  * Revision 1.3  2002/12/12 23:40:38  peiyongz
  66.  * normlize locale string.
  67.  *
  68.  * Revision 1.2  2002/11/05 21:15:16  peiyongz
  69.  * generate correct <locale>.txt file
  70.  *
  71.  * Revision 1.1  2002/09/30 22:09:28  peiyongz
  72.  * To generate icu resource file (in text) for error message.
  73.  *
  74.  *
  75.  */
  76. // ---------------------------------------------------------------------------
  77. //  Includes
  78. // ---------------------------------------------------------------------------
  79. #include "Xlat.hpp"
  80. // ---------------------------------------------------------------------------
  81. //  ICUResBundFormatter: Constructors and Destructor
  82. // ---------------------------------------------------------------------------
  83. ICUResBundFormatter::ICUResBundFormatter()
  84. :fOutFl(0)
  85. ,fTranscoder(0)
  86. {
  87.     //
  88.     //  Try to create a transcoder for the format that we were told
  89.     //  to output in.
  90.     //
  91.     //  <TBD> Right now we are just using an LCP transcoding, which is not
  92.     //  really the right thing to do!
  93.     //
  94.     fTranscoder = XMLPlatformUtils::fgTransService->makeNewLCPTranscoder();
  95.     if (!fTranscoder)
  96.     {
  97.         wprintf(L"Could not create LCP transcodern");
  98.         throw ErrReturn_NoTranscoder;
  99.     }
  100. }
  101. ICUResBundFormatter::~ICUResBundFormatter()
  102. {
  103. delete fTranscoder;
  104. }
  105. // ---------------------------------------------------------------------------
  106. //  ICUResBundFormatter: Implementation of the formatter interface
  107. // ---------------------------------------------------------------------------
  108. void ICUResBundFormatter::endDomain(const   XMLCh*        const    domainName
  109.                                   , const   unsigned int           msgCount)
  110. {
  111.     fwprintf(fOutFl, L"tt} nn");
  112. }
  113. void ICUResBundFormatter::endMsgType(const MsgTypes type)
  114. {
  115. #ifndef ICU_RESBUNDLE_IN_TABLE_FORM
  116.      fwprintf(fOutFl, L"tt"%s End " ,n", xmlStrToPrintable(typePrefixes[type]) );
  117.      releasePrintableStr
  118. #endif
  119. }
  120. void ICUResBundFormatter::endOutput()
  121. {
  122.     // Close the output files
  123.     fwprintf(fOutFl, L"} nn");
  124.     fclose(fOutFl);
  125. }
  126. void
  127. ICUResBundFormatter::nextMessage(const  XMLCh* const            msgText
  128.                                , const  XMLCh* const            msgId
  129.                                , const  unsigned int            messageId
  130.                                , const  unsigned int            curId)
  131. {
  132.     //
  133.     //  We have to transcode the message text to UTF-8 in order to be able
  134.     //  to write it out to a message catalog (which is not Unicode enabled.)
  135.     //  If the text is just US-ASCII, this won't have any effect, but don't
  136.     //  bother checking, just do it simple and stupid.
  137.     //
  138.     //
  139. //  array_name {
  140. //               "xxx" ,
  141. //               "yyy" ,
  142. //  }
  143. //
  144. //
  145. //  table_name {
  146. //       AB { "xxx" }
  147. //       CD { "yyy" }
  148. //  }
  149. //
  150. #ifdef ICU_RESBUNDLE_IN_TABLE_FORM
  151.     fwprintf(fOutFl, L"tt %3d { "%s " } n", curId, xmlStrToPrintable(msgText));
  152.     releasePrintableStr
  153. // need to print leading 0 if less than 100, not tested yet
  154. #else
  155.     fwprintf(fOutFl, L"tt"%s " ,n", xmlStrToPrintable(msgText));
  156.     releasePrintableStr
  157. // need a space between the last character and the closing "
  158. #endif
  159. }
  160. void ICUResBundFormatter::startDomain(const   XMLCh* const    domainName
  161.                                     , const   XMLCh* const    nameSpace)
  162. {
  163.     //
  164.     //  Output:
  165.     //           // an array
  166.     //           domainName {
  167. //
  168. int index = XMLString::lastIndexOf(domainName, chForwardSlash);
  169. #ifdef ICU_RESBUNDLE_IN_TABLE_FORM
  170.     fwprintf(fOutFl, L"nt // a table n");
  171. #else
  172.     fwprintf(fOutFl, L"nt // an array n");
  173. #endif
  174.     fwprintf(fOutFl, L"t%s { n" , xmlStrToPrintable(&(domainName[index+1])));
  175.     releasePrintableStr
  176. }
  177. void ICUResBundFormatter::startMsgType(const MsgTypes type)
  178. {
  179. #ifndef ICU_RESBUNDLE_IN_TABLE_FORM
  180.     fwprintf(fOutFl, L"tt"%s Start " , n", xmlStrToPrintable(typePrefixes[type]) );
  181.     releasePrintableStr
  182. #endif
  183. }
  184. void ICUResBundFormatter::startOutput(const   XMLCh* const    locale
  185.                                     , const   XMLCh* const    outPath)
  186. {
  187.     //
  188.     //  Ok, lets try to open the the output file. All of the messages
  189.     //  for all the domains are put into a single Msg file, which can be
  190.     //  compiled into the program.
  191.     //
  192.     //  CppErrMsgs_xxxx.Msg
  193.     //
  194.     //  where xxx is the locale suffix passed in.
  195.     //
  196.     const unsigned int bufSize = 4095;
  197.     XMLCh tmpBuf[bufSize + 1];
  198.     tmpBuf[0] = 0;
  199.     XMLCh *tmpXMLStr = XMLString::transcode(".txt");
  200.     XMLString::catString(tmpBuf, outPath);
  201.     XMLString::catString(tmpBuf, locale);
  202.     XMLString::catString(tmpBuf, tmpXMLStr );
  203.     XMLString::release(&tmpXMLStr);
  204.     char *tmpStr = XMLString::transcode(tmpBuf);
  205.     fOutFl = fopen(tmpStr, "wt");
  206.     XMLString::release(&tmpStr);
  207.     if ((!fOutFl) || (fwide(fOutFl, 1) < 0))
  208.     {        
  209.         wprintf(L"Could not open the output file: %snn", xmlStrToPrintable(tmpBuf) );        
  210.         releasePrintableStr
  211.         throw ErrReturn_OutFileOpenFailed;
  212.     }
  213.     // Set the message delimiter
  214.     fwprintf(fOutFl, L"%s { n", xmlStrToPrintable(locale) );
  215.     releasePrintableStr
  216. }