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

TAPI编程

开发平台:

Visual C++

  1. #ifndef __CURL_TYPECHECK_GCC_H
  2. #define __CURL_TYPECHECK_GCC_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: typecheck-gcc.h,v 1.8 2008-10-17 03:59:02 yangtse Exp $
  24.  ***************************************************************************/
  25. /* wraps curl_easy_setopt() with typechecking */
  26. /* To add a new kind of warning, add an
  27.  *   if(_curl_is_sometype_option(_curl_opt) && ! _curl_is_sometype(value))
  28.  *     _curl_easy_setopt_err_sometype();
  29.  * block and define _curl_is_sometype_option, _curl_is_sometype and
  30.  * _curl_easy_setopt_err_sometype below
  31.  *
  32.  * To add an option that uses the same type as an existing option, you'll just
  33.  * need to extend the appropriate _curl_*_option macro
  34.  */
  35. #define curl_easy_setopt(handle, option, value)                               
  36. __extension__ ({                                                              
  37.   __typeof__ (option) _curl_opt = option;                                     
  38.   if (__builtin_constant_p(_curl_opt)) {                                      
  39.     if (_curl_is_long_option(_curl_opt) && !_curl_is_long(value))             
  40.       _curl_easy_setopt_err_long();                                           
  41.     if (_curl_is_off_t_option(_curl_opt) && !_curl_is_off_t(value))           
  42.       _curl_easy_setopt_err_curl_off_t();                                     
  43.     if (_curl_is_string_option(_curl_opt) && !_curl_is_string(value))         
  44.       _curl_easy_setopt_err_string();                                         
  45.     if (_curl_is_write_cb_option(_curl_opt) && !_curl_is_write_cb(value))     
  46.       _curl_easy_setopt_err_write_callback();                                 
  47.     if ((_curl_opt) == CURLOPT_READFUNCTION && !_curl_is_read_cb(value))      
  48.       _curl_easy_setopt_err_read_cb();                                        
  49.     if ((_curl_opt) == CURLOPT_IOCTLFUNCTION && !_curl_is_ioctl_cb(value))    
  50.       _curl_easy_setopt_err_ioctl_cb();                                       
  51.     if ((_curl_opt) == CURLOPT_SOCKOPTFUNCTION && !_curl_is_sockopt_cb(value))
  52.       _curl_easy_setopt_err_sockopt_cb();                                     
  53.     if ((_curl_opt) == CURLOPT_OPENSOCKETFUNCTION &&                          
  54.             !_curl_is_opensocket_cb(value))                                   
  55.       _curl_easy_setopt_err_opensocket_cb();                                  
  56.     if ((_curl_opt) == CURLOPT_PROGRESSFUNCTION &&                            
  57.             !_curl_is_progress_cb(value))                                     
  58.       _curl_easy_setopt_err_progress_cb();                                    
  59.     if ((_curl_opt) == CURLOPT_DEBUGFUNCTION && !_curl_is_debug_cb(value))    
  60.       _curl_easy_setopt_err_debug_cb();                                       
  61.     if ((_curl_opt) == CURLOPT_SSL_CTX_FUNCTION &&                            
  62.             !_curl_is_ssl_ctx_cb(value))                                      
  63.       _curl_easy_setopt_err_ssl_ctx_cb();                                     
  64.     if (_curl_is_conv_cb_option(_curl_opt) && !_curl_is_conv_cb(value))       
  65.       _curl_easy_setopt_err_conv_cb();                                        
  66.     if ((_curl_opt) == CURLOPT_SEEKFUNCTION && !_curl_is_seek_cb(value))      
  67.       _curl_easy_setopt_err_seek_cb();                                        
  68.     if (_curl_is_cb_data_option(_curl_opt) && !_curl_is_cb_data(value))       
  69.       _curl_easy_setopt_err_cb_data();                                        
  70.     if ((_curl_opt) == CURLOPT_ERRORBUFFER && !_curl_is_error_buffer(value))  
  71.       _curl_easy_setopt_err_error_buffer();                                   
  72.     if ((_curl_opt) == CURLOPT_STDERR && !_curl_is_FILE(value))               
  73.       _curl_easy_setopt_err_FILE();                                           
  74.     if (_curl_is_postfields_option(_curl_opt) && !_curl_is_postfields(value)) 
  75.       _curl_easy_setopt_err_postfields();                                     
  76.     if ((_curl_opt) == CURLOPT_HTTPPOST &&                                    
  77.             !_curl_is_arr((value), struct curl_httppost))                     
  78.       _curl_easy_setopt_err_curl_httpost();                                   
  79.     if (_curl_is_slist_option(_curl_opt) &&                                   
  80.             !_curl_is_arr((value), struct curl_slist))                        
  81.       _curl_easy_setopt_err_curl_slist();                                     
  82.     if ((_curl_opt) == CURLOPT_SHARE && !_curl_is_ptr((value), CURLSH))       
  83.       _curl_easy_setopt_err_CURLSH();                                         
  84.   }                                                                           
  85.   curl_easy_setopt(handle, _curl_opt, value);                                 
  86. })
  87. /* wraps curl_easy_getinfo() with typechecking */
  88. /* FIXME: don't allow const pointers */
  89. #define curl_easy_getinfo(handle, info, arg)                                  
  90. __extension__ ({                                                              
  91.   __typeof__ (info) _curl_info = info;                                        
  92.   if (__builtin_constant_p(_curl_info)) {                                     
  93.     if (_curl_is_string_info(_curl_info) && !_curl_is_arr((arg), char *))     
  94.       _curl_easy_getinfo_err_string();                                        
  95.     if (_curl_is_long_info(_curl_info) && !_curl_is_arr((arg), long))         
  96.       _curl_easy_getinfo_err_long();                                          
  97.     if (_curl_is_double_info(_curl_info) && !_curl_is_arr((arg), double))     
  98.       _curl_easy_getinfo_err_double();                                        
  99.     if (_curl_is_slist_info(_curl_info) &&                                    
  100.            !_curl_is_arr((arg), struct curl_slist *))                         
  101.       _curl_easy_getinfo_err_curl_slist();                                    
  102.   }                                                                           
  103.   curl_easy_getinfo(handle, _curl_info, arg);                                 
  104. })
  105. /* TODO: typechecking for curl_share_setopt() and curl_multi_setopt(),
  106.  * for now just make sure that the functions are called with three
  107.  * arguments
  108.  */
  109. #define curl_share_setopt(share,opt,param) curl_share_setopt(share,opt,param)
  110. #define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param)
  111. /* the actual warnings, triggered by calling the _curl_easy_setopt_err*
  112.  * functions */
  113. /* To define a new warning, use _CURL_WARNING(identifier, "message") */
  114. #define _CURL_WARNING(id, message)                                            
  115.   static void __attribute__((warning(message))) __attribute__((unused))       
  116.   __attribute__((noinline)) id(void) { __asm__(""); }
  117. _CURL_WARNING(_curl_easy_setopt_err_long,
  118.   "curl_easy_setopt expects a long argument for this option")
  119. _CURL_WARNING(_curl_easy_setopt_err_curl_off_t,
  120.   "curl_easy_setopt expects a curl_off_t argument for this option")
  121. _CURL_WARNING(_curl_easy_setopt_err_string,
  122.   "curl_easy_setopt expects a string (char* or char[]) argument for this option"
  123.   )
  124. _CURL_WARNING(_curl_easy_setopt_err_write_callback,
  125.   "curl_easy_setopt expects a curl_write_callback argument for this option")
  126. _CURL_WARNING(_curl_easy_setopt_err_read_cb,
  127.   "curl_easy_setopt expects a curl_read_callback argument for this option")
  128. _CURL_WARNING(_curl_easy_setopt_err_ioctl_cb,
  129.   "curl_easy_setopt expects a curl_ioctl_callback argument for this option")
  130. _CURL_WARNING(_curl_easy_setopt_err_sockopt_cb,
  131.   "curl_easy_setopt expects a curl_sockopt_callback argument for this option")
  132. _CURL_WARNING(_curl_easy_setopt_err_opensocket_cb,
  133.   "curl_easy_setopt expects a curl_opensocket_callback argument for this option"
  134.   )
  135. _CURL_WARNING(_curl_easy_setopt_err_progress_cb,
  136.   "curl_easy_setopt expects a curl_progress_callback argument for this option")
  137. _CURL_WARNING(_curl_easy_setopt_err_debug_cb,
  138.   "curl_easy_setopt expects a curl_debug_callback argument for this option")
  139. _CURL_WARNING(_curl_easy_setopt_err_ssl_ctx_cb,
  140.   "curl_easy_setopt expects a curl_ssl_ctx_callback argument for this option")
  141. _CURL_WARNING(_curl_easy_setopt_err_conv_cb,
  142.   "curl_easy_setopt expects a curl_conv_callback argument for this option")
  143. _CURL_WARNING(_curl_easy_setopt_err_seek_cb,
  144.   "curl_easy_setopt expects a curl_seek_callback argument for this option")
  145. _CURL_WARNING(_curl_easy_setopt_err_cb_data,
  146.   "curl_easy_setopt expects a private data pointer as argument for this option")
  147. _CURL_WARNING(_curl_easy_setopt_err_error_buffer,
  148.   "curl_easy_setopt expects a char buffer of CURL_ERROR_SIZE as argument for this option")
  149. _CURL_WARNING(_curl_easy_setopt_err_FILE,
  150.   "curl_easy_setopt expects a FILE* argument for this option")
  151. _CURL_WARNING(_curl_easy_setopt_err_postfields,
  152.   "curl_easy_setopt expects a void* or char* argument for this option")
  153. _CURL_WARNING(_curl_easy_setopt_err_curl_httpost,
  154.   "curl_easy_setopt expects a struct curl_httppost* argument for this option")
  155. _CURL_WARNING(_curl_easy_setopt_err_curl_slist,
  156.   "curl_easy_setopt expects a struct curl_slist* argument for this option")
  157. _CURL_WARNING(_curl_easy_setopt_err_CURLSH,
  158.   "curl_easy_setopt expects a CURLSH* argument for this option")
  159. _CURL_WARNING(_curl_easy_getinfo_err_string,
  160.   "curl_easy_getinfo expects a pointer to char * for this info")
  161. _CURL_WARNING(_curl_easy_getinfo_err_long,
  162.   "curl_easy_getinfo expects a pointer to long for this info")
  163. _CURL_WARNING(_curl_easy_getinfo_err_double,
  164.   "curl_easy_getinfo expects a pointer to double for this info")
  165. _CURL_WARNING(_curl_easy_getinfo_err_curl_slist,
  166.   "curl_easy_getinfo expects a pointer to struct curl_slist * for this info")
  167. /* groups of curl_easy_setops options that take the same type of argument */
  168. /* To add a new option to one of the groups, just add
  169.  *   (option) == CURLOPT_SOMETHING
  170.  * to the or-expression. If the option takes a long or curl_off_t, you don't
  171.  * have to do anything
  172.  */
  173. /* evaluates to true if option takes a long argument */
  174. #define _curl_is_long_option(option)                                          
  175.   (0 < (option) && (option) < CURLOPTTYPE_OBJECTPOINT)
  176. #define _curl_is_off_t_option(option)                                         
  177.   ((option) > CURLOPTTYPE_OFF_T)
  178. /* evaluates to true if option takes a char* argument */
  179. #define _curl_is_string_option(option)                                        
  180.   ((option) == CURLOPT_URL ||                                                 
  181.    (option) == CURLOPT_PROXY ||                                               
  182.    (option) == CURLOPT_INTERFACE ||                                           
  183.    (option) == CURLOPT_NETRC_FILE ||                                          
  184.    (option) == CURLOPT_USERPWD ||                                             
  185.    (option) == CURLOPT_USERNAME ||                                            
  186.    (option) == CURLOPT_PASSWORD ||                                            
  187.    (option) == CURLOPT_PROXYUSERPWD ||                                        
  188.    (option) == CURLOPT_PROXYUSERNAME ||                                       
  189.    (option) == CURLOPT_PROXYPASSWORD ||                                       
  190.    (option) == CURLOPT_ENCODING ||                                            
  191.    (option) == CURLOPT_REFERER ||                                             
  192.    (option) == CURLOPT_USERAGENT ||                                           
  193.    (option) == CURLOPT_COOKIE ||                                              
  194.    (option) == CURLOPT_COOKIEFILE ||                                          
  195.    (option) == CURLOPT_COOKIEJAR ||                                           
  196.    (option) == CURLOPT_COOKIELIST ||                                          
  197.    (option) == CURLOPT_FTPPORT ||                                             
  198.    (option) == CURLOPT_FTP_ALTERNATIVE_TO_USER ||                             
  199.    (option) == CURLOPT_FTP_ACCOUNT ||                                         
  200.    (option) == CURLOPT_RANGE ||                                               
  201.    (option) == CURLOPT_CUSTOMREQUEST ||                                       
  202.    (option) == CURLOPT_SSLCERT ||                                             
  203.    (option) == CURLOPT_SSLCERTTYPE ||                                         
  204.    (option) == CURLOPT_SSLKEY ||                                              
  205.    (option) == CURLOPT_SSLKEYTYPE ||                                          
  206.    (option) == CURLOPT_KEYPASSWD ||                                           
  207.    (option) == CURLOPT_SSLENGINE ||                                           
  208.    (option) == CURLOPT_CAINFO ||                                              
  209.    (option) == CURLOPT_CAPATH ||                                              
  210.    (option) == CURLOPT_RANDOM_FILE ||                                         
  211.    (option) == CURLOPT_EGDSOCKET ||                                           
  212.    (option) == CURLOPT_SSL_CIPHER_LIST ||                                     
  213.    (option) == CURLOPT_KRBLEVEL ||                                            
  214.    (option) == CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 ||                             
  215.    (option) == CURLOPT_SSH_PUBLIC_KEYFILE ||                                  
  216.    (option) == CURLOPT_SSH_PRIVATE_KEYFILE ||                                 
  217.    (option) == CURLOPT_CRLFILE ||                                             
  218.    (option) == CURLOPT_ISSUERCERT ||                                          
  219.    0)
  220. /* evaluates to true if option takes a curl_write_callback argument */
  221. #define _curl_is_write_cb_option(option)                                      
  222.   ((option) == CURLOPT_HEADERFUNCTION ||                                      
  223.    (option) == CURLOPT_WRITEFUNCTION)
  224. /* evaluates to true if option takes a curl_conv_callback argument */
  225. #define _curl_is_conv_cb_option(option)                                       
  226.   ((option) == CURLOPT_CONV_TO_NETWORK_FUNCTION ||                            
  227.    (option) == CURLOPT_CONV_FROM_NETWORK_FUNCTION ||                          
  228.    (option) == CURLOPT_CONV_FROM_UTF8_FUNCTION)
  229. /* evaluates to true if option takes a data argument to pass to a callback */
  230. #define _curl_is_cb_data_option(option)                                       
  231.   ((option) == CURLOPT_WRITEDATA ||                                           
  232.    (option) == CURLOPT_READDATA ||                                            
  233.    (option) == CURLOPT_IOCTLDATA ||                                           
  234.    (option) == CURLOPT_SOCKOPTDATA ||                                         
  235.    (option) == CURLOPT_OPENSOCKETDATA ||                                      
  236.    (option) == CURLOPT_PROGRESSDATA ||                                        
  237.    (option) == CURLOPT_WRITEHEADER ||                                         
  238.    (option) == CURLOPT_DEBUGDATA ||                                           
  239.    (option) == CURLOPT_SSL_CTX_DATA ||                                        
  240.    (option) == CURLOPT_SEEKDATA ||                                            
  241.    (option) == CURLOPT_PRIVATE ||                                             
  242.    0)
  243. /* evaluates to true if option takes a POST data argument (void* or char*) */
  244. #define _curl_is_postfields_option(option)                                    
  245.   ((option) == CURLOPT_POSTFIELDS ||                                          
  246.    (option) == CURLOPT_COPYPOSTFIELDS ||                                      
  247.    0)
  248. /* evaluates to true if option takes a struct curl_slist * argument */
  249. #define _curl_is_slist_option(option)                                         
  250.   ((option) == CURLOPT_HTTPHEADER ||                                          
  251.    (option) == CURLOPT_HTTP200ALIASES ||                                      
  252.    (option) == CURLOPT_QUOTE ||                                               
  253.    (option) == CURLOPT_POSTQUOTE ||                                           
  254.    (option) == CURLOPT_PREQUOTE ||                                            
  255.    (option) == CURLOPT_TELNETOPTIONS ||                                       
  256.    0)
  257. /* groups of curl_easy_getinfo infos that take the same type of argument */
  258. /* evaluates to true if info expects a pointer to char * argument */
  259. #define _curl_is_string_info(info)                                            
  260.   (CURLINFO_STRING < (info) && (info) < CURLINFO_LONG)
  261. /* evaluates to true if info expects a pointer to long argument */
  262. #define _curl_is_long_info(info)                                              
  263.   (CURLINFO_LONG < (info) && (info) < CURLINFO_DOUBLE)
  264. /* evaluates to true if info expects a pointer to double argument */
  265. #define _curl_is_double_info(info)                                            
  266.   (CURLINFO_DOUBLE < (info) && (info) < CURLINFO_SLIST)
  267. /* true if info expects a pointer to struct curl_slist * argument */
  268. #define _curl_is_slist_info(info)                                             
  269.   (CURLINFO_SLIST < (info))
  270. /* typecheck helpers -- check whether given expression has requested type*/
  271. /* For pointers, you can use the _curl_is_ptr/_curl_is_arr macros,
  272.  * otherwise define a new macro. Search for __builtin_types_compatible_p
  273.  * in the GCC manual.
  274.  * NOTE: these macros MUST NOT EVALUATE their arguments! The argument is
  275.  * the actual expression passed to the curl_easy_setopt macro. This
  276.  * means that you can only apply the sizeof and __typeof__ operators, no
  277.  * == or whatsoever.
  278.  */
  279. /* XXX: should evaluate to true iff expr is a pointer */
  280. #define _curl_is_any_ptr(expr)                                                
  281.   (sizeof(expr) == sizeof(void*))
  282. /* evaluates to true if expr is NULL */
  283. /* XXX: must not evaluate expr, so this check is not accurate */
  284. #define _curl_is_NULL(expr)                                                   
  285.   (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
  286. /* evaluates to true if expr is type*, const type* or NULL */
  287. #define _curl_is_ptr(expr, type)                                              
  288.   (_curl_is_NULL(expr) ||                                                     
  289.    __builtin_types_compatible_p(__typeof__(expr), type *) ||                  
  290.    __builtin_types_compatible_p(__typeof__(expr), const type *))
  291. /* evaluates to true if expr is one of type[], type*, NULL or const type* */
  292. #define _curl_is_arr(expr, type)                                              
  293.   (_curl_is_ptr((expr), type) ||                                              
  294.    __builtin_types_compatible_p(__typeof__(expr), type []))
  295. /* evaluates to true if expr is a string */
  296. #define _curl_is_string(expr)                                                 
  297.   (_curl_is_arr((expr), char) ||                                              
  298.    _curl_is_arr((expr), signed char) ||                                       
  299.    _curl_is_arr((expr), unsigned char))
  300. /* evaluates to true if expr is a long (no matter the signedness)
  301.  * XXX: for now, int is also accepted (and therefore short and char, which
  302.  * are promoted to int when passed to a variadic function) */
  303. #define _curl_is_long(expr)                                                   
  304.   (__builtin_types_compatible_p(__typeof__(expr), long) ||                    
  305.    __builtin_types_compatible_p(__typeof__(expr), signed long) ||             
  306.    __builtin_types_compatible_p(__typeof__(expr), unsigned long) ||           
  307.    __builtin_types_compatible_p(__typeof__(expr), int) ||                     
  308.    __builtin_types_compatible_p(__typeof__(expr), signed int) ||              
  309.    __builtin_types_compatible_p(__typeof__(expr), unsigned int) ||            
  310.    __builtin_types_compatible_p(__typeof__(expr), short) ||                   
  311.    __builtin_types_compatible_p(__typeof__(expr), signed short) ||            
  312.    __builtin_types_compatible_p(__typeof__(expr), unsigned short) ||          
  313.    __builtin_types_compatible_p(__typeof__(expr), char) ||                    
  314.    __builtin_types_compatible_p(__typeof__(expr), signed char) ||             
  315.    __builtin_types_compatible_p(__typeof__(expr), unsigned char))
  316. /* evaluates to true if expr is of type curl_off_t */
  317. #define _curl_is_off_t(expr)                                                  
  318.   (__builtin_types_compatible_p(__typeof__(expr), curl_off_t))
  319. /* evaluates to true if expr is abuffer suitable for CURLOPT_ERRORBUFFER */
  320. /* XXX: also check size of an char[] array? */
  321. #define _curl_is_error_buffer(expr)                                           
  322.   (__builtin_types_compatible_p(__typeof__(expr), char *) ||                  
  323.    __builtin_types_compatible_p(__typeof__(expr), char[]))
  324. /* evaluates to true if expr is of type (const) void* or (const) FILE* */
  325. #if 0
  326. #define _curl_is_cb_data(expr)                                                
  327.   (_curl_is_ptr((expr), void) ||                                              
  328.    _curl_is_ptr((expr), FILE))
  329. #else /* be less strict */
  330. #define _curl_is_cb_data(expr)                                                
  331.   _curl_is_any_ptr(expr)
  332. #endif
  333. /* evaluates to true if expr is of type FILE* */
  334. #define _curl_is_FILE(expr)                                                   
  335.   (__builtin_types_compatible_p(__typeof__(expr), FILE *))
  336. /* evaluates to true if expr can be passed as POST data (void* or char*) */
  337. #define _curl_is_postfields(expr)                                             
  338.   (_curl_is_ptr((expr), void) ||                                              
  339.    _curl_is_arr((expr), char))
  340. /* FIXME: the whole callback checking is messy...
  341.  * The idea is to tolerate char vs. void and const vs. not const
  342.  * pointers in arguments at least
  343.  */
  344. /* helper: __builtin_types_compatible_p distinguishes between functions and
  345.  * function pointers, hide it */
  346. #define _curl_callback_compatible(func, type)                                 
  347.   (__builtin_types_compatible_p(__typeof__(func), type) ||                    
  348.    __builtin_types_compatible_p(__typeof__(func), type*))
  349. /* evaluates to true if expr is of type curl_read_callback or "similar" */
  350. #define _curl_is_read_cb(expr)                                          
  351.   (_curl_is_NULL(expr) ||                                                     
  352.    __builtin_types_compatible_p(__typeof__(expr), __typeof__(fread)) ||       
  353.    __builtin_types_compatible_p(__typeof__(expr), curl_read_callback) ||      
  354.    _curl_callback_compatible((expr), _curl_read_callback1) ||                 
  355.    _curl_callback_compatible((expr), _curl_read_callback2) ||                 
  356.    _curl_callback_compatible((expr), _curl_read_callback3) ||                 
  357.    _curl_callback_compatible((expr), _curl_read_callback4) ||                 
  358.    _curl_callback_compatible((expr), _curl_read_callback5) ||                 
  359.    _curl_callback_compatible((expr), _curl_read_callback6))
  360. typedef size_t (_curl_read_callback1)(char *, size_t, size_t, void*);
  361. typedef size_t (_curl_read_callback2)(char *, size_t, size_t, const void*);
  362. typedef size_t (_curl_read_callback3)(char *, size_t, size_t, FILE*);
  363. typedef size_t (_curl_read_callback4)(void *, size_t, size_t, void*);
  364. typedef size_t (_curl_read_callback5)(void *, size_t, size_t, const void*);
  365. typedef size_t (_curl_read_callback6)(void *, size_t, size_t, FILE*);
  366. /* evaluates to true if expr is of type curl_write_callback or "similar" */
  367. #define _curl_is_write_cb(expr)                                               
  368.   (_curl_is_read_cb(expr) ||                                            
  369.    __builtin_types_compatible_p(__typeof__(expr), __typeof__(fwrite)) ||      
  370.    __builtin_types_compatible_p(__typeof__(expr), curl_write_callback) ||     
  371.    _curl_callback_compatible((expr), _curl_write_callback1) ||                
  372.    _curl_callback_compatible((expr), _curl_write_callback2) ||                
  373.    _curl_callback_compatible((expr), _curl_write_callback3) ||                
  374.    _curl_callback_compatible((expr), _curl_write_callback4) ||                
  375.    _curl_callback_compatible((expr), _curl_write_callback5) ||                
  376.    _curl_callback_compatible((expr), _curl_write_callback6))
  377. typedef size_t (_curl_write_callback1)(const char *, size_t, size_t, void*);
  378. typedef size_t (_curl_write_callback2)(const char *, size_t, size_t,
  379.                                        const void*);
  380. typedef size_t (_curl_write_callback3)(const char *, size_t, size_t, FILE*);
  381. typedef size_t (_curl_write_callback4)(const void *, size_t, size_t, void*);
  382. typedef size_t (_curl_write_callback5)(const void *, size_t, size_t,
  383.                                        const void*);
  384. typedef size_t (_curl_write_callback6)(const void *, size_t, size_t, FILE*);
  385. /* evaluates to true if expr is of type curl_ioctl_callback or "similar" */
  386. #define _curl_is_ioctl_cb(expr)                                         
  387.   (_curl_is_NULL(expr) ||                                                     
  388.    __builtin_types_compatible_p(__typeof__(expr), curl_ioctl_callback) ||     
  389.    _curl_callback_compatible((expr), _curl_ioctl_callback1) ||                
  390.    _curl_callback_compatible((expr), _curl_ioctl_callback2) ||                
  391.    _curl_callback_compatible((expr), _curl_ioctl_callback3) ||                
  392.    _curl_callback_compatible((expr), _curl_ioctl_callback4))
  393. typedef curlioerr (_curl_ioctl_callback1)(CURL *, int, void*);
  394. typedef curlioerr (_curl_ioctl_callback2)(CURL *, int, const void*);
  395. typedef curlioerr (_curl_ioctl_callback3)(CURL *, curliocmd, void*);
  396. typedef curlioerr (_curl_ioctl_callback4)(CURL *, curliocmd, const void*);
  397. /* evaluates to true if expr is of type curl_sockopt_callback or "similar" */
  398. #define _curl_is_sockopt_cb(expr)                                       
  399.   (_curl_is_NULL(expr) ||                                                     
  400.    __builtin_types_compatible_p(__typeof__(expr), curl_sockopt_callback) ||   
  401.    _curl_callback_compatible((expr), _curl_sockopt_callback1) ||              
  402.    _curl_callback_compatible((expr), _curl_sockopt_callback2))
  403. typedef int (_curl_sockopt_callback1)(void *, curl_socket_t, curlsocktype);
  404. typedef int (_curl_sockopt_callback2)(const void *, curl_socket_t,
  405.                                       curlsocktype);
  406. /* evaluates to true if expr is of type curl_opensocket_callback or "similar" */
  407. #define _curl_is_opensocket_cb(expr)                                    
  408.   (_curl_is_NULL(expr) ||                                                     
  409.    __builtin_types_compatible_p(__typeof__(expr), curl_opensocket_callback) ||
  410.    _curl_callback_compatible((expr), _curl_opensocket_callback1) ||           
  411.    _curl_callback_compatible((expr), _curl_opensocket_callback2) ||           
  412.    _curl_callback_compatible((expr), _curl_opensocket_callback3) ||           
  413.    _curl_callback_compatible((expr), _curl_opensocket_callback4))
  414. typedef curl_socket_t (_curl_opensocket_callback1)
  415.   (void *, curlsocktype, struct curl_sockaddr *);
  416. typedef curl_socket_t (_curl_opensocket_callback2)
  417.   (void *, curlsocktype, const struct curl_sockaddr *);
  418. typedef curl_socket_t (_curl_opensocket_callback3)
  419.   (const void *, curlsocktype, struct curl_sockaddr *);
  420. typedef curl_socket_t (_curl_opensocket_callback4)
  421.   (const void *, curlsocktype, const struct curl_sockaddr *);
  422. /* evaluates to true if expr is of type curl_progress_callback or "similar" */
  423. #define _curl_is_progress_cb(expr)                                      
  424.   (_curl_is_NULL(expr) ||                                                     
  425.    __builtin_types_compatible_p(__typeof__(expr), curl_progress_callback) ||  
  426.    _curl_callback_compatible((expr), _curl_progress_callback1) ||             
  427.    _curl_callback_compatible((expr), _curl_progress_callback2))
  428. typedef int (_curl_progress_callback1)(void *,
  429.     double, double, double, double);
  430. typedef int (_curl_progress_callback2)(const void *,
  431.     double, double, double, double);
  432. /* evaluates to true if expr is of type curl_debug_callback or "similar" */
  433. #define _curl_is_debug_cb(expr)                                         
  434.   (_curl_is_NULL(expr) ||                                                     
  435.    __builtin_types_compatible_p(__typeof__(expr), curl_debug_callback) ||     
  436.    _curl_callback_compatible((expr), _curl_debug_callback1) ||                
  437.    _curl_callback_compatible((expr), _curl_debug_callback2) ||                
  438.    _curl_callback_compatible((expr), _curl_debug_callback3) ||                
  439.    _curl_callback_compatible((expr), _curl_debug_callback4))
  440. typedef int (_curl_debug_callback1) (CURL *,
  441.     curl_infotype, char *, size_t, void *);
  442. typedef int (_curl_debug_callback2) (CURL *,
  443.     curl_infotype, char *, size_t, const void *);
  444. typedef int (_curl_debug_callback3) (CURL *,
  445.     curl_infotype, const char *, size_t, void *);
  446. typedef int (_curl_debug_callback4) (CURL *,
  447.     curl_infotype, const char *, size_t, const void *);
  448. /* evaluates to true if expr is of type curl_ssl_ctx_callback or "similar" */
  449. /* this is getting even messier... */
  450. #define _curl_is_ssl_ctx_cb(expr)                                       
  451.   (_curl_is_NULL(expr) ||                                                     
  452.    __builtin_types_compatible_p(__typeof__(expr), curl_ssl_ctx_callback) ||   
  453.    _curl_callback_compatible((expr), _curl_ssl_ctx_callback1) ||              
  454.    _curl_callback_compatible((expr), _curl_ssl_ctx_callback2) ||              
  455.    _curl_callback_compatible((expr), _curl_ssl_ctx_callback3) ||              
  456.    _curl_callback_compatible((expr), _curl_ssl_ctx_callback4) ||              
  457.    _curl_callback_compatible((expr), _curl_ssl_ctx_callback5) ||              
  458.    _curl_callback_compatible((expr), _curl_ssl_ctx_callback6) ||              
  459.    _curl_callback_compatible((expr), _curl_ssl_ctx_callback7) ||              
  460.    _curl_callback_compatible((expr), _curl_ssl_ctx_callback8))
  461. typedef CURLcode (_curl_ssl_ctx_callback1)(CURL *, void *, void *);
  462. typedef CURLcode (_curl_ssl_ctx_callback2)(CURL *, void *, const void *);
  463. typedef CURLcode (_curl_ssl_ctx_callback3)(CURL *, const void *, void *);
  464. typedef CURLcode (_curl_ssl_ctx_callback4)(CURL *, const void *, const void *);
  465. #ifdef HEADER_SSL_H
  466. /* hack: if we included OpenSSL's ssl.h, we know about SSL_CTX
  467.  * this will of course break if we're included before OpenSSL headers...
  468.  */
  469. typedef CURLcode (_curl_ssl_ctx_callback5)(CURL *, SSL_CTX, void *);
  470. typedef CURLcode (_curl_ssl_ctx_callback6)(CURL *, SSL_CTX, const void *);
  471. typedef CURLcode (_curl_ssl_ctx_callback7)(CURL *, const SSL_CTX, void *);
  472. typedef CURLcode (_curl_ssl_ctx_callback8)(CURL *, const SSL_CTX, const void *);
  473. #else
  474. typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback5;
  475. typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback6;
  476. typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback7;
  477. typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback8;
  478. #endif
  479. /* evaluates to true if expr is of type curl_conv_callback or "similar" */
  480. #define _curl_is_conv_cb(expr)                                          
  481.   (_curl_is_NULL(expr) ||                                                     
  482.    __builtin_types_compatible_p(__typeof__(expr), curl_conv_callback) ||      
  483.    _curl_callback_compatible((expr), _curl_conv_callback1) ||                 
  484.    _curl_callback_compatible((expr), _curl_conv_callback2) ||                 
  485.    _curl_callback_compatible((expr), _curl_conv_callback3) ||                 
  486.    _curl_callback_compatible((expr), _curl_conv_callback4))
  487. typedef CURLcode (*_curl_conv_callback1)(char *, size_t length);
  488. typedef CURLcode (*_curl_conv_callback2)(const char *, size_t length);
  489. typedef CURLcode (*_curl_conv_callback3)(void *, size_t length);
  490. typedef CURLcode (*_curl_conv_callback4)(const void *, size_t length);
  491. /* evaluates to true if expr is of type curl_seek_callback or "similar" */
  492. #define _curl_is_seek_cb(expr)                                          
  493.   (_curl_is_NULL(expr) ||                                                     
  494.    __builtin_types_compatible_p(__typeof__(expr), curl_seek_callback) ||      
  495.    _curl_callback_compatible((expr), _curl_seek_callback1) ||                 
  496.    _curl_callback_compatible((expr), _curl_seek_callback2))
  497. typedef CURLcode (*_curl_seek_callback1)(void *, curl_off_t, int);
  498. typedef CURLcode (*_curl_seek_callback2)(const void *, curl_off_t, int);
  499. #endif /* __CURL_TYPECHECK_GCC_H */