php_curl.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Sterling Hughes <sterling@php.net> |
  16. | Wez Furlong <wez@thebrainroom.com> |
  17. +----------------------------------------------------------------------+
  18. */
  19. /* $Id$ */
  20. #ifndef _PHP_CURL_H
  21. #define _PHP_CURL_H
  22. #include "php.h"
  23. #include "ext/standard/php_smart_str.h"
  24. #ifdef COMPILE_DL_CURL
  25. #undef HAVE_CURL
  26. #define HAVE_CURL 1
  27. #endif
  28. #if HAVE_CURL
  29. #define PHP_CURL_DEBUG 0
  30. #ifdef PHP_WIN32
  31. # define PHP_CURL_API __declspec(dllexport)
  32. #elif defined(__GNUC__) && __GNUC__ >= 4
  33. # define PHP_CURL_API __attribute__ ((visibility("default")))
  34. #else
  35. # define PHP_CURL_API
  36. #endif
  37. #include <curl/curl.h>
  38. #include <curl/multi.h>
  39. extern zend_module_entry curl_module_entry;
  40. #define curl_module_ptr &curl_module_entry
  41. #define CURLOPT_RETURNTRANSFER 19913
  42. #define CURLOPT_BINARYTRANSFER 19914 /* For Backward compatibility */
  43. #define PHP_CURL_STDOUT 0
  44. #define PHP_CURL_FILE 1
  45. #define PHP_CURL_USER 2
  46. #define PHP_CURL_DIRECT 3
  47. #define PHP_CURL_RETURN 4
  48. #define PHP_CURL_IGNORE 7
  49. extern int le_curl;
  50. #define le_curl_name "cURL handle"
  51. extern int le_curl_multi_handle;
  52. #define le_curl_multi_handle_name "cURL Multi Handle"
  53. extern int le_curl_share_handle;
  54. #define le_curl_share_handle_name "cURL Share Handle"
  55. PHP_MINIT_FUNCTION(curl);
  56. PHP_MSHUTDOWN_FUNCTION(curl);
  57. PHP_MINFO_FUNCTION(curl);
  58. PHP_FUNCTION(curl_close);
  59. PHP_FUNCTION(curl_copy_handle);
  60. PHP_FUNCTION(curl_errno);
  61. PHP_FUNCTION(curl_error);
  62. PHP_FUNCTION(curl_exec);
  63. PHP_FUNCTION(curl_getinfo);
  64. PHP_FUNCTION(curl_init);
  65. PHP_FUNCTION(curl_setopt);
  66. PHP_FUNCTION(curl_setopt_array);
  67. PHP_FUNCTION(curl_version);
  68. PHP_FUNCTION(curl_multi_add_handle);
  69. PHP_FUNCTION(curl_multi_close);
  70. PHP_FUNCTION(curl_multi_exec);
  71. PHP_FUNCTION(curl_multi_getcontent);
  72. PHP_FUNCTION(curl_multi_info_read);
  73. PHP_FUNCTION(curl_multi_init);
  74. PHP_FUNCTION(curl_multi_remove_handle);
  75. PHP_FUNCTION(curl_multi_select);
  76. PHP_FUNCTION(curl_share_close);
  77. PHP_FUNCTION(curl_share_init);
  78. PHP_FUNCTION(curl_share_setopt);
  79. #if LIBCURL_VERSION_NUM >= 0x070c00 /* 7.12.0 */
  80. PHP_FUNCTION(curl_strerror);
  81. PHP_FUNCTION(curl_multi_strerror);
  82. #endif
  83. #if LIBCURL_VERSION_NUM >= 0x070c01 /* 7.12.1 */
  84. PHP_FUNCTION(curl_reset);
  85. #endif
  86. #if LIBCURL_VERSION_NUM >= 0x070f04 /* 7.15.4 */
  87. PHP_FUNCTION(curl_escape);
  88. PHP_FUNCTION(curl_unescape);
  89. PHP_FUNCTION(curl_multi_setopt);
  90. #endif
  91. #if LIBCURL_VERSION_NUM >= 0x071200 /* 7.18.0 */
  92. PHP_FUNCTION(curl_pause);
  93. #endif
  94. PHP_FUNCTION(curl_file_create);
  95. void _php_curl_multi_close(zend_rsrc_list_entry * TSRMLS_DC);
  96. void _php_curl_share_close(zend_rsrc_list_entry * TSRMLS_DC);
  97. typedef struct {
  98. zval *func_name;
  99. zend_fcall_info_cache fci_cache;
  100. FILE *fp;
  101. smart_str buf;
  102. int method;
  103. zval *stream;
  104. } php_curl_write;
  105. typedef struct {
  106. zval *func_name;
  107. zend_fcall_info_cache fci_cache;
  108. FILE *fp;
  109. long fd;
  110. int method;
  111. zval *stream;
  112. } php_curl_read;
  113. typedef struct {
  114. zval *func_name;
  115. zend_fcall_info_cache fci_cache;
  116. int method;
  117. } php_curl_progress, php_curl_fnmatch;
  118. typedef struct {
  119. php_curl_write *write;
  120. php_curl_write *write_header;
  121. php_curl_read *read;
  122. #if CURLOPT_PASSWDFUNCTION != 0
  123. zval *passwd;
  124. #endif
  125. zval *std_err;
  126. php_curl_progress *progress;
  127. #if LIBCURL_VERSION_NUM >= 0x071500 /* Available since 7.21.0 */
  128. php_curl_fnmatch *fnmatch;
  129. #endif
  130. } php_curl_handlers;
  131. struct _php_curl_error {
  132. char str[CURL_ERROR_SIZE + 1];
  133. int no;
  134. };
  135. struct _php_curl_send_headers {
  136. char *str;
  137. size_t str_len;
  138. };
  139. struct _php_curl_free {
  140. zend_llist str;
  141. zend_llist post;
  142. HashTable *slist;
  143. };
  144. typedef struct {
  145. struct _php_curl_error err;
  146. struct _php_curl_free *to_free;
  147. struct _php_curl_send_headers header;
  148. void ***thread_ctx;
  149. CURL *cp;
  150. php_curl_handlers *handlers;
  151. long id;
  152. zend_bool in_callback;
  153. zval *clone;
  154. zend_bool safe_upload;
  155. } php_curl;
  156. #define CURLOPT_SAFE_UPLOAD -1
  157. typedef struct {
  158. int still_running;
  159. CURLM *multi;
  160. zend_llist easyh;
  161. } php_curlm;
  162. typedef struct {
  163. CURLSH *share;
  164. } php_curlsh;
  165. void _php_curl_cleanup_handle(php_curl *);
  166. void _php_curl_multi_cleanup_list(void *data);
  167. void _php_curl_verify_handlers(php_curl *ch, int reporterror TSRMLS_DC);
  168. void curlfile_register_class(TSRMLS_D);
  169. PHP_CURL_API extern zend_class_entry *curl_CURLFile_class;
  170. #else
  171. #define curl_module_ptr NULL
  172. #endif /* HAVE_CURL */
  173. #define phpext_curl_ptr curl_module_ptr
  174. #endif /* _PHP_CURL_H */