utypes.h
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:10k
源码类别:

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