utypes.h
上传用户: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: utypes.h,v $
  58.  * Revision 1.2  2002/11/04 15:14:33  tng
  59.  * C++ Namespace Support.
  60.  *
  61.  * Revision 1.1.1.1  2002/02/01 22:22:36  peiyongz
  62.  * sane_include
  63.  *
  64.  * Revision 1.1  2000/02/10 18:08:28  abagchi
  65.  * Initial checkin
  66.  *
  67.  */
  68. #ifndef UTYPES_H
  69. #define UTYPES_H
  70. #include <wchar.h>
  71. #include <stdlib.h>
  72. /*===========================================================================*/
  73. /* Include platform-dependent definitions                                    */
  74. /* which are contained in the platform-specific file platform.h              */
  75. /*===========================================================================*/
  76. #include "pos400.h"
  77. XERCES_CPP_NAMESPACE_BEGIN
  78. /* XP_CPLUSPLUS is a cross-platform symbol which should be defined when
  79.    using C++.  It should not be defined when compiling under C. */
  80. #ifdef __cplusplus
  81. #   ifndef XP_CPLUSPLUS
  82. #       define XP_CPLUSPLUS
  83. #   endif
  84. #else
  85. #   undef XP_CPLUSPLUS
  86. #endif
  87. /*===========================================================================*/
  88. /* Boolean data type                                                         */
  89. /*===========================================================================*/
  90. #if ! HAVE_BOOL_T
  91. typedef int8_t bool_t;
  92. #endif
  93. #ifndef TRUE
  94. #   define TRUE  1
  95. #endif
  96. #ifndef FALSE
  97. #   define FALSE 0
  98. #endif
  99. /*===========================================================================*/
  100. /* Unicode string offset                                                     */
  101. /*===========================================================================*/
  102. typedef int32_t UTextOffset;
  103. /*===========================================================================*/
  104. /* Unicode character                                                         */
  105. /*===========================================================================*/
  106. typedef uint16_t UChar;
  107. /*===========================================================================*/
  108. /* For C wrappers, we use the symbol U_CAPI.                                 */
  109. /* This works properly if the includer is C or C++.                          */
  110. /* Functions are declared   U_CAPI return-type U_EXPORT2 function-name() ... */
  111. /*===========================================================================*/
  112. #ifdef XP_CPLUSPLUS
  113. #   define U_CFUNC extern "C"
  114. #   define U_CDECL_BEGIN extern "C" {
  115. #   define U_CDECL_END   }
  116. #else
  117. #   define U_CFUNC
  118. #   define U_CDECL_BEGIN
  119. #   define U_CDECL_END
  120. #endif
  121. #define U_CAPI U_CFUNC U_EXPORT
  122. /* Define NULL pointer value  if it isn't already defined */
  123. #ifndef NULL
  124. #ifdef XP_CPLUSPLUS
  125. #define NULL    0
  126. #else
  127. #define NULL    ((void *)0)
  128. #endif
  129. #endif
  130. /* Maximum value of a (void*) - use to indicate the limit of
  131.    an 'infinite' buffer.  */
  132. #define U_MAX_PTR ((void*)-1)
  133. /*===========================================================================*/
  134. /* UErrorCode                                                                */
  135. /*===========================================================================*/
  136. /** Error code to replace exception handling */
  137. #ifdef __OS400__
  138. enum UErrorCode1 {
  139. #else
  140. enum UErrorCode {
  141. #endif
  142.     U_ERROR_INFO_START        = -128,     /* Start of information results (semantically successful) */
  143.     U_USING_FALLBACK_ERROR    = -128,
  144.     U_USING_DEFAULT_ERROR     = -127,
  145.     U_ERROR_INFO_LIMIT,
  146.     U_ZERO_ERROR              =  0,       /* success */
  147.     U_ILLEGAL_ARGUMENT_ERROR  =  1,       /* Start of codes indicating failure */
  148.     U_MISSING_RESOURCE_ERROR  =  2,
  149.     U_INVALID_FORMAT_ERROR    =  3,
  150.     U_FILE_ACCESS_ERROR       =  4,
  151.     U_INTERNAL_PROGRAM_ERROR  =  5,       /* Indicates a bug in the library code */
  152.     U_MESSAGE_PARSE_ERROR     =  6,
  153.     U_MEMORY_ALLOCATION_ERROR =  7,       /* Memory allocation error */
  154.     U_INDEX_OUTOFBOUNDS_ERROR =  8,
  155.     U_PARSE_ERROR             =  9,       /* Equivalent to Java ParseException */
  156.     U_INVALID_CHAR_FOUND      = 10,       /* In the Character conversion routines: Invalid character or sequence was encountered*/
  157.     U_TRUNCATED_CHAR_FOUND    = 11,       /* In the Character conversion routines: More bytes are required to complete the conversion successfully*/
  158.     U_ILLEGAL_CHAR_FOUND      = 12,       /* In codeset conversion: a sequence that does NOT belong in the codepage has been encountered*/
  159.     U_INVALID_TABLE_FORMAT    = 13,       /* Conversion table file found, but corrupted*/
  160.     U_INVALID_TABLE_FILE      = 14,       /* Conversion table file not found*/
  161.     U_BUFFER_OVERFLOW_ERROR   = 15,       /* A result would not fit in the supplied buffer */
  162.     U_UNSUPPORTED_ERROR       = 16,       /* Requested operation not supported in current context */
  163.     U_ERROR_LIMIT
  164. };
  165. #ifdef __OS400__
  166. typedef int UErrorCode;
  167. #define U_SUCCESS(x) ((x)<=U_ZERO_ERROR)
  168. #define U_FAILURE(x) ((x)>U_ZERO_ERROR)
  169. #else
  170. #ifndef XP_CPLUSPLUS
  171. typedef enum UErrorCode UErrorCode;
  172. #endif
  173. #endif
  174. /* Use the following to determine if an UErrorCode represents */
  175. /* operational success or failure. */
  176. #ifndef __OS400__
  177. #ifdef XP_CPLUSPLUS
  178. inline bool_t U_SUCCESS(UErrorCode code) { return (bool_t)(code<=U_ZERO_ERROR); }
  179. inline bool_t U_FAILURE(UErrorCode code) { return (bool_t)(code>U_ZERO_ERROR); }
  180. #else
  181. #define U_SUCCESS(x) ((x)<=U_ZERO_ERROR)
  182. #define U_FAILURE(x) ((x)>U_ZERO_ERROR)
  183. #endif
  184. #endif
  185. /* Casting function for int32_t (backward compatibility version, here until
  186.    T_INT32 is replaced) */
  187. #define T_INT32(i) ((int32_t)i)
  188. /*===========================================================================*/
  189. /* Debugging                                                                 */
  190. /*===========================================================================*/
  191. /* remove this */
  192. /* This function is useful for debugging; it returns the text name */
  193. /* of an UErrorCode result.  This is not the most efficient way of */
  194. /* doing this but it's just for Debug builds anyway. */
  195. /* Do not use these arrays directly: they will move to a .c file! */
  196. static const char *
  197. _uErrorInfoName[U_ERROR_INFO_LIMIT-U_ERROR_INFO_START]={
  198.     "U_USING_FALLBACK_ERROR",
  199.     "U_USING_DEFAULT_ERROR"
  200. };
  201. static const char *
  202. _uErrorName[U_ERROR_LIMIT]={
  203.     "U_ZERO_ERROR",
  204.     "U_ILLEGAL_ARGUMENT_ERROR",
  205.     "U_MISSING_RESOURCE_ERROR",
  206.     "U_INVALID_FORMAT_ERROR",
  207.     "U_FILE_ACCESS_ERROR",
  208.     "U_INTERNAL_PROGRAM_ERROR",
  209.     "U_MESSAGE_PARSE_ERROR",
  210.     "U_MEMORY_ALLOCATION_ERROR",
  211.     "U_INDEX_OUTOFBOUNDS_ERROR",
  212.     "U_PARSE_ERROR",
  213.     "U_INVALID_CHAR_FOUND",
  214.     "U_TRUNCATED_CHAR_FOUND",
  215.     "U_ILLEGAL_CHAR_FOUND",
  216.     "U_INVALID_TABLE_FORMAT",
  217.     "U_INVALID_TABLE_FILE",
  218.     "U_BUFFER_OVERFLOW_ERROR",
  219.     "U_UNSUPPORTED_ERROR"
  220. };
  221. #ifdef XP_CPLUSPLUS
  222. inline const char *
  223. errorName(UErrorCode code)
  224. {
  225.     if(code>=0 && code<U_ERROR_LIMIT) {
  226.         return _uErrorName[code];
  227.     } else if(code>=U_ERROR_INFO_START && code<U_ERROR_INFO_LIMIT) {
  228.         return _uErrorInfoName[code-U_ERROR_INFO_START];
  229.     } else {
  230.         return "[BOGUS UErrorCode]";
  231.     }
  232. }
  233. #else
  234. #   define errorName(code) 
  235.         ((code)>=0 && (code)<U_ERROR_LIMIT) ? 
  236.             _uErrorName[code] : 
  237.             ((code)>=U_ERROR_INFO_START && (code)<U_ERROR_INFO_LIMIT) ? 
  238.                 _uErrorInfoName[code-U_ERROR_INFO_START] : 
  239.                 "[BOGUS UErrorCode]"
  240. #endif
  241. XERCES_CPP_NAMESPACE_END
  242. #endif /* _UTYPES */