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

词法分析

开发平台:

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.hpp,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/11/05 22:10:06  tng
  62.  * Explicit code using namespace in application.
  63.  *
  64.  * Revision 1.7  2002/09/30 22:09:58  peiyongz
  65.  * To generate icu resource file (in text) for error message.
  66.  *
  67.  * Revision 1.6  2002/07/04 17:40:07  tng
  68.  * Use new DOM in Xlat.
  69.  *
  70.  * Revision 1.5  2002/02/01 23:48:37  peiyongz
  71.  * sane_include
  72.  *
  73.  * Revision 1.4  2001/05/03 19:09:38  knoaman
  74.  * Support Warning/Error/FatalError messaging.
  75.  * Validity constraints errors are treated as errors, with the ability by user to set
  76.  * validity constraints as fatal errors.
  77.  *
  78.  * Revision 1.3  2000/03/02 19:55:53  roddey
  79.  * This checkin includes many changes done while waiting for the
  80.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  81.  * available elsewhere.
  82.  *
  83.  * Revision 1.2  2000/02/06 07:48:41  rahulj
  84.  * Year 2K copyright swat.
  85.  *
  86.  * Revision 1.1.1.1  1999/11/09 01:01:14  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. //  Some globally used types
  95. // ---------------------------------------------------------------------------
  96. enum MsgTypes
  97. {
  98.     MsgType_Warning
  99.     , MsgType_Error
  100.     , MsgType_FatalError
  101.     , MsgTypes_Count
  102. };
  103. // ---------------------------------------------------------------------------
  104. //  Includes
  105. // ---------------------------------------------------------------------------
  106. #include <stdio.h>
  107. #include <wchar.h>
  108. #include <stdlib.h>
  109. #include <xercesc/util/XercesDefs.hpp>
  110. #include <xercesc/util/PlatformUtils.hpp>
  111. #include <xercesc/util/TransService.hpp>
  112. #include <xercesc/sax/SAXParseException.hpp>
  113. #include <xercesc/parsers/XercesDOMParser.hpp>
  114. #include <xercesc/dom/DOM.hpp>
  115. #include "Xlat_ErrHandler.hpp"
  116. #include "Xlat_Types.hpp"
  117. #include "Xlat_Formatter.hpp"
  118. #include "Xlat_CppSrc.hpp"
  119. #include "Xlat_Win32RC.hpp"
  120. #include "Xlat_MsgCatalog.hpp"
  121. #include "Xlat_ICUResourceBundle.hpp"
  122. XERCES_CPP_NAMESPACE_USE
  123. // ---------------------------------------------------------------------------
  124. //  Some const global data
  125. // ---------------------------------------------------------------------------
  126. extern XMLCh* typePrefixes[MsgTypes_Count];
  127. // this ugly hack is needed because cygwin/linux and Windows (MSVC++) 
  128. // have irreconcileable differences about what to do with chars, wchar_t and XMLCh
  129. // in wfprintf.  Windows thinks that XMLCh * is fine here whereas 
  130. // char * is not; gcc will allow XMLCh to be cast to wchar_t but happily
  131. // prints out gobbledygook in this case; it only seems happy when 
  132. // the native transcoder is used to convert the XMLCh to a char *
  133. #if defined(__linux__) || defined(__CYGWIN__)
  134.     extern char *fTmpStr;
  135.     #define xmlStrToPrintable(xmlStr) 
  136.         (fTmpStr = XMLString::transcode(xmlStr))
  137.     #define releasePrintableStr 
  138.         XMLString::release(&fTmpStr);
  139.     #define longChars(str) str
  140. #elif defined(_WIN32) || defined(WIN32) || defined(__WINDOWS__)
  141.     extern wchar_t *longChars(const char *str);
  142.     #define xmlStrToPrintable(xmlStr) xmlStr
  143.     #define releasePrintableStr 
  144. #else
  145.     #error Code requires port to host OS!
  146. #endif