curlrules.h
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:7k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. #ifndef __CURL_CURLRULES_H
  2. #define __CURL_CURLRULES_H
  3. /***************************************************************************
  4.  *                                  _   _ ____  _
  5.  *  Project                     ___| | | |  _ | |
  6.  *                             / __| | | | |_) | |
  7.  *                            | (__| |_| |  _ <| |___
  8.  *                             ___|___/|_| ______|
  9.  *
  10.  * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
  11.  *
  12.  * This software is licensed as described in the file COPYING, which
  13.  * you should have received as part of this distribution. The terms
  14.  * are also available at http://curl.haxx.se/docs/copyright.html.
  15.  *
  16.  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17.  * copies of the Software, and permit persons to whom the Software is
  18.  * furnished to do so, under the terms of the COPYING file.
  19.  *
  20.  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21.  * KIND, either express or implied.
  22.  *
  23.  * $Id: curlrules.h,v 1.5 2008-08-25 01:18:49 yangtse Exp $
  24.  ***************************************************************************/
  25. /* ================================================================ */
  26. /*                    COMPILE TIME SANITY CHECKS                    */
  27. /* ================================================================ */
  28. /*
  29.  * NOTE 1:
  30.  * -------
  31.  *
  32.  * All checks done in this file are intentionally placed in a public
  33.  * header file which is pulled by curl/curl.h when an application is
  34.  * being built using an already built libcurl library. Additionally
  35.  * this file is also included and used when building the library.
  36.  *
  37.  * If compilation fails on this file it is certainly sure that the
  38.  * problem is elsewhere. It could be a problem in the curlbuild.h
  39.  * header file, or simply that you are using different compilation
  40.  * settings than those used to build the library.
  41.  *
  42.  * Nothing in this file is intended to be modified or adjusted by the
  43.  * curl library user nor by the curl library builder.
  44.  *
  45.  * Do not deactivate any check, these are done to make sure that the
  46.  * library is properly built and used.
  47.  *
  48.  * You can find further help on the libcurl development mailing list:
  49.  * http://cool.haxx.se/mailman/listinfo/curl-library/
  50.  *
  51.  * NOTE 2
  52.  * ------
  53.  *
  54.  * Some of the following compile time checks are based on the fact
  55.  * that the dimension of a constant array can not be a negative one.
  56.  * In this way if the compile time verification fails, the compilation
  57.  * will fail issuing an error. The error description wording is compiler
  58.  * dependant but it will be quite similar to one of the following:
  59.  *
  60.  *   "negative subscript or subscript is too large"
  61.  *   "array must have at least one element"
  62.  *   "-1 is an illegal array size"
  63.  *   "size of array is negative"
  64.  *
  65.  * If you are building an application which tries to use an already
  66.  * built libcurl library and you are getting this kind of errors on
  67.  * this file, it is a clear indication that there is a mismatch between
  68.  * how the library was built and how you are trying to use it for your
  69.  * application. Your already compiled or binary library provider is the
  70.  * only one who can give you the details you need to properly use it.
  71.  */
  72. /*
  73.  * Verify that some macros are actually defined.
  74.  */
  75. #ifndef CURL_SIZEOF_LONG
  76. #  error "CURL_SIZEOF_LONG definition is missing!"
  77.    Error Compilation_aborted_CURL_SIZEOF_LONG_is_missing
  78. #endif
  79. #ifndef CURL_TYPEOF_CURL_OFF_T
  80. #  error "CURL_TYPEOF_CURL_OFF_T definition is missing!"
  81.    Error Compilation_aborted_CURL_TYPEOF_CURL_OFF_T_is_missing
  82. #endif
  83. #ifndef CURL_FORMAT_CURL_OFF_T
  84. #  error "CURL_FORMAT_CURL_OFF_T definition is missing!"
  85.    Error Compilation_aborted_CURL_FORMAT_CURL_OFF_T_is_missing
  86. #endif
  87. #ifndef CURL_FORMAT_CURL_OFF_TU
  88. #  error "CURL_FORMAT_CURL_OFF_TU definition is missing!"
  89.    Error Compilation_aborted_CURL_FORMAT_CURL_OFF_TU_is_missing
  90. #endif
  91. #ifndef CURL_FORMAT_OFF_T
  92. #  error "CURL_FORMAT_OFF_T definition is missing!"
  93.    Error Compilation_aborted_CURL_FORMAT_OFF_T_is_missing
  94. #endif
  95. #ifndef CURL_SIZEOF_CURL_OFF_T
  96. #  error "CURL_SIZEOF_CURL_OFF_T definition is missing!"
  97.    Error Compilation_aborted_CURL_SIZEOF_CURL_OFF_T_is_missing
  98. #endif
  99. #ifndef CURL_SUFFIX_CURL_OFF_T
  100. #  error "CURL_SUFFIX_CURL_OFF_T definition is missing!"
  101.    Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_T_is_missing
  102. #endif
  103. #ifndef CURL_SUFFIX_CURL_OFF_TU
  104. #  error "CURL_SUFFIX_CURL_OFF_TU definition is missing!"
  105.    Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_TU_is_missing
  106. #endif
  107. /*
  108.  * Macros private to this header file.
  109.  */
  110. #define CurlchkszEQ(t, s) sizeof(t) == s ? 1 : -1
  111. #define CurlchkszGE(t1, t2) sizeof(t1) >= sizeof(t2) ? 1 : -1
  112. /*
  113.  * Verify that the size previously defined and expected for long
  114.  * is the same as the one reported by sizeof() at compile time.
  115.  */
  116. typedef char
  117.   __curl_rule_01__
  118.     [CurlchkszEQ(long, CURL_SIZEOF_LONG)];
  119. /*
  120.  * Verify that the size previously defined and expected for
  121.  * curl_off_t is actually the the same as the one reported
  122.  * by sizeof() at compile time.
  123.  */
  124. typedef char
  125.   __curl_rule_02__
  126.     [CurlchkszEQ(curl_off_t, CURL_SIZEOF_CURL_OFF_T)];
  127. /*
  128.  * Verify at compile time that the size of curl_off_t as reported
  129.  * by sizeof() is greater or equal than the one reported for long
  130.  * for the current compilation.
  131.  */
  132. typedef char
  133.   __curl_rule_03__
  134.     [CurlchkszGE(curl_off_t, long)];
  135. /* ================================================================ */
  136. /*          EXTERNALLY AND INTERNALLY VISIBLE DEFINITIONS           */
  137. /* ================================================================ */
  138. /* 
  139.  * CURL_ISOCPP and CURL_OFF_T_C definitions are done here in order to allow
  140.  * these to be visible and exported by the external libcurl interface API,
  141.  * while also making them visible to the library internals, simply including
  142.  * setup.h, without actually needing to include curl.h internally.
  143.  * If some day this section would grow big enough, all this should be moved
  144.  * to its own header file.
  145.  */
  146. /*
  147.  * Figure out if we can use the ## preprocessor operator, which is supported
  148.  * by ISO/ANSI C and C++. Some compilers support it without setting __STDC__
  149.  * or  __cplusplus so we need to carefully check for them too.
  150.  */
  151. #if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) || 
  152.   defined(__HP_aCC) || defined(__BORLANDC__) || defined(__LCC__) || 
  153.   defined(__POCC__) || defined(__SALFORDC__) || defined(__HIGHC__) || 
  154.   defined(__ILEC400__)
  155.   /* This compiler is believed to have an ISO compatible preprocessor */
  156. #define CURL_ISOCPP
  157. #else
  158.   /* This compiler is believed NOT to have an ISO compatible preprocessor */
  159. #undef CURL_ISOCPP
  160. #endif
  161. /*
  162.  * Macros for minimum-width signed and unsigned curl_off_t integer constants.
  163.  */
  164. #ifdef CURL_ISOCPP
  165. #  define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val ## Suffix
  166. #else
  167. #  define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val/**/Suffix
  168. #endif
  169. #define __CURL_OFF_T_C_HELPER1(Val,Suffix) __CURL_OFF_T_C_HELPER2(Val,Suffix)
  170. #define CURL_OFF_T_C(Val)  __CURL_OFF_T_C_HELPER1(Val,CURL_SUFFIX_CURL_OFF_T)
  171. #define CURL_OFF_TU_C(Val) __CURL_OFF_T_C_HELPER1(Val,CURL_SUFFIX_CURL_OFF_TU)
  172. /*
  173.  * Get rid of macros private to this header file.
  174.  */
  175. #undef CurlchkszEQ
  176. #undef CurlchkszGE
  177. /*
  178.  * Get rid of macros not intended to exist beyond this point.
  179.  */
  180. #undef CURL_PULL_SYS_TYPES_H
  181. #undef CURL_PULL_STDINT_H
  182. #undef CURL_PULL_INTTYPES_H
  183. #undef CURL_TYPEOF_CURL_OFF_T
  184. #endif /* __CURL_CURLRULES_H */