ncbi_limits.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:8k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbi_limits.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:01:34  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef NCBI_LIMITS__H
  10. #define NCBI_LIMITS__H
  11. /*  $Id: ncbi_limits.h,v 1000.0 2003/10/29 15:01:34 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Denis Vakatov
  37.  *
  38.  * File Description:
  39.  *
  40.  *   Limits for the NCBI C/C++ fixed-size types:
  41.  *      Char, Uchar
  42.  *      Int1, Uint1  --  kMin_I1,       kMax_I1,       kMax_UI1
  43.  *      Int2, Uint2  --  kMin_I2,       kMax_I2,       kMax_UI2
  44.  *      Int4, Uint4  --  kMin_I4,       kMax_I4,       kMax_UI4
  45.  *      Int8, Uint8  --  kMin_I8,       kMax_I8,       kMax_UI8
  46.  *
  47.  *   Limits for the built-in integer types:
  48.  *      "char"       --  kMin_Char,     kMax_Char,     kMax_UChar
  49.  *      "short"      --  kMin_Short,    kMax_Short,    kMax_UShort
  50.  *      "int"        --  kMin_Int,      kMax_Int,      kMax_UInt
  51.  *      "long"       --  kMin_Long,     kMax_Long,     kMax_ULong
  52.  *      "long long"  --  kMin_LongLong, kMax_LongLong, kMax_ULongLong
  53.  *      "__int64"    --  kMin_Int64,    kMax_Int64,    kMax_UInt64
  54.  *
  55.  *   Limits for the built-in floating-point types:
  56.  *      "float"      --  kMin_Float,    kMax_Float
  57.  *      "double"     --  kMin_Double,   kMax_Double
  58.  *
  59.  */
  60. #include <corelib/ncbitype.h>
  61. #include <limits.h>
  62. #include <float.h>
  63. /** @addtogroup Portability
  64.  *
  65.  * @{
  66.  */
  67. /* Int8, Uint8
  68.  *   NOTE:  "NCBI_MIN/MAX_***8" are temporary preprocessor definitions, so
  69.  *          do not use them... always use "kMax_*" and "kMin_*" instead!
  70.  */
  71. #if   (SIZEOF_LONG == 8)
  72. #  define NCBI_MIN_I8  LONG_MIN
  73. #  define NCBI_MAX_I8  LONG_MAX
  74. #  define NCBI_MAX_UI8 ULONG_MAX
  75. #elif (SIZEOF_LONG_LONG == 8)
  76. #  define NCBI_MIN_I8  0x8000000000000000LL
  77. #  define NCBI_MAX_I8  0x7FFFFFFFFFFFFFFFLL
  78. #  define NCBI_MAX_UI8 0xFFFFFFFFFFFFFFFFULL
  79. #elif defined(NCBI_USE_INT64)
  80. #  define NCBI_MIN_I8  0x8000000000000000i64
  81. #  define NCBI_MAX_I8  0x7FFFFFFFFFFFFFFFi64
  82. #  define NCBI_MAX_UI8 0xFFFFFFFFFFFFFFFFui64
  83. #endif
  84. /*  Limits:  C++ and C interfaces
  85.  */
  86. #ifdef __cplusplus
  87. /* (BEGIN C++ interface) */
  88. /* [C++]  built-in integer types */
  89. const signed   char   kMin_Char   = CHAR_MIN;
  90. const signed   char   kMax_Char   = CHAR_MAX;
  91. const signed   char   kMin_SChar  = SCHAR_MIN;
  92. const signed   char   kMax_SChar  = SCHAR_MAX;
  93. const unsigned char   kMax_UChar  = UCHAR_MAX;
  94. const signed   short  kMin_Short  = SHRT_MIN;
  95. const signed   short  kMax_Short  = SHRT_MAX;
  96. const unsigned short  kMax_UShort = USHRT_MAX;
  97. const signed   int    kMin_Int    = INT_MIN;
  98. const signed   int    kMax_Int    = INT_MAX;
  99. const unsigned int    kMax_UInt   = UINT_MAX;
  100. const signed   long   kMin_Long   = LONG_MIN;
  101. const signed   long   kMax_Long   = LONG_MAX;
  102. const unsigned long   kMax_ULong  = ULONG_MAX;
  103. #  if (SIZEOF_LONG_LONG == 8)
  104. const signed   long long  kMin_LongLong   = 0x8000000000000000LL;
  105. const signed   long long  kMax_LongLong   = 0x7FFFFFFFFFFFFFFFLL;
  106. const unsigned long long  kMax_ULongLong  = 0xFFFFFFFFFFFFFFFFULL;
  107. #  elif (SIZEOF_LONG_LONG == 4)
  108. const signed   long long  kMin_LongLong   = 0x80000000LL;
  109. const signed   long long  kMax_LongLong   = 0x7FFFFFFFLL;
  110. const unsigned long long  kMax_ULongLong  = 0xFFFFFFFFULL;
  111. #  endif
  112. #  if defined(NCBI_USE_INT64)
  113. const signed   __int64 kMin_Int64  = NCBI_MIN_I8;
  114. const signed   __int64 kMax_Int64  = NCBI_MAX_I8;
  115. const unsigned __int64 kMax_UInt64 = NCBI_MAX_UI8;
  116. #  endif
  117. /* [C++]  built-in floating-point types */
  118. const float kMin_Float = FLT_MIN;
  119. const float kMax_Float = FLT_MAX;
  120. const double kMin_Double = DBL_MIN;
  121. const double kMax_Double = DBL_MAX;
  122. /* [C++]  NCBI fixed-size types */
  123. const Int1  kMin_I1  = SCHAR_MIN;
  124. const Int1  kMax_I1  = SCHAR_MAX;
  125. const Uint1 kMax_UI1 = UCHAR_MAX;
  126. const Int2  kMin_I2  = SHRT_MIN;
  127. const Int2  kMax_I2  = SHRT_MAX;
  128. const Uint2 kMax_UI2 = USHRT_MAX;
  129. const Int4  kMin_I4  = INT_MIN;
  130. const Int4  kMax_I4  = INT_MAX;
  131. const Uint4 kMax_UI4 = UINT_MAX;
  132. const Int8  kMin_I8  = NCBI_MIN_I8;
  133. const Int8  kMax_I8  = NCBI_MAX_I8;
  134. const Uint8 kMax_UI8 = NCBI_MAX_UI8;
  135. #  undef NCBI_MIN_I8
  136. #  undef NCBI_MAX_I8
  137. #  undef NCBI_MAX_UI8
  138. /* (END of C++ interface) */
  139. #else
  140. /* (BEGIN C interface) */
  141. /* [ C ]  built-in integer types */
  142. #  define kMin_Char   CHAR_MIN
  143. #  define kMax_Char   CHAR_MAX
  144. #  define kMin_SChar  SCHAR_MIN
  145. #  define kMax_SChar  SCHAR_MAX
  146. #  define kMax_UChar  UCHAR_MAX
  147. #  define kMin_Short  SHRT_MIN
  148. #  define kMax_Short  SHRT_MAX
  149. #  define kMax_UShort USHRT_MAX
  150. #  define kMin_Int    INT_MIN
  151. #  define kMax_Int    INT_MAX
  152. #  define kMax_UInt   UINT_MAX
  153. #  if (SIZEOF_LONG_LONG == 8)
  154. #    define kMin_LongLong   0x8000000000000000LL
  155. #    define kMax_LongLong   0x7FFFFFFFFFFFFFFFLL
  156. #    define kMax_ULongLong  0xFFFFFFFFFFFFFFFFULL
  157. #  elif (SIZEOF_LONG_LONG == 4)
  158. #    define kMin_LongLong   0x80000000LL
  159. #    define kMax_LongLong   0x7FFFFFFFLL
  160. #    define kMax_ULongLong  0xFFFFFFFFULL
  161. #  endif
  162. #  if (SIZEOF___INT64 == 8)
  163. #    define __int64 kMin_Int64  0x8000000000000000i64
  164. #    define __int64 kMax_Int64  0x7FFFFFFFFFFFFFFFi64
  165. #    define __int64 kMax_UInt64 0xFFFFFFFFFFFFFFFFui64
  166. #  endif
  167. /* [ C ]  built-in floating-point types */
  168. #  define kMin_Float  FLT_MIN;
  169. #  define kMax_Float  FLT_MAX;
  170. #  define kMin_Double DBL_MIN;
  171. #  define kMax_Double DBL_MAX;
  172. /* [ C ]  NCBI fixed-size types */
  173. #  define kMin_I1   SCHAR_MIN
  174. #  define kMax_I1   SCHAR_MAX
  175. #  define kMax_UI1  UCHAR_MAX
  176. #  define kMin_I2   SHRT_MIN
  177. #  define kMax_I2   SHRT_MAX
  178. #  define kMax_UI2  USHRT_MAX
  179. #  define kMin_I4   INT_MIN
  180. #  define kMax_I4   INT_MAX
  181. #  define kMax_UI4  UINT_MAX
  182. #  define kMin_I8   NCBI_MIN_I8
  183. #  define kMax_I8   NCBI_MAX_I8
  184. #  define kMax_UI8  NCBI_MAX_UI8
  185. /* (END of C interface) */
  186. #endif  /* __cplusplus */
  187. /* @} */
  188. /*
  189.  * ==========================================================================
  190.  * $Log: ncbi_limits.h,v $
  191.  * Revision 1000.0  2003/10/29 15:01:34  gouriano
  192.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  193.  *
  194.  * Revision 1.4  2003/04/01 14:18:44  siyan
  195.  * Added doxygen support
  196.  *
  197.  * Revision 1.3  2002/04/11 20:39:15  ivanov
  198.  * CVS log moved to end of the file
  199.  *
  200.  * Revision 1.2  2001/05/30 16:17:23  vakatov
  201.  * Introduced #NCBI_USE_INT64 -- in oreder to use "__int64" type
  202.  * only when absolutely necessary (otherwise it conflicted with
  203.  * "long long" for the Intel C++ compiler).
  204.  *
  205.  * Revision 1.1  2001/01/03 17:34:56  vakatov
  206.  * Initial revision
  207.  *
  208.  * ==========================================================================
  209.  */
  210. #endif /* NCBI_LIMITS__H */