release 2.6.0
[m6w6/ext-http] / src / php_http_client.h
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2014, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #ifndef PHP_HTTP_CLIENT_H
14 #define PHP_HTTP_CLIENT_H
15
16 typedef enum php_http_client_setopt_opt {
17 PHP_HTTP_CLIENT_OPT_ENABLE_PIPELINING,
18 PHP_HTTP_CLIENT_OPT_USE_EVENTS,
19 PHP_HTTP_CLIENT_OPT_CONFIGURATION,
20 } php_http_client_setopt_opt_t;
21
22 typedef enum php_http_client_getopt_opt {
23 PHP_HTTP_CLIENT_OPT_PROGRESS_INFO, /* php_http_client_enqueue_t*, php_http_client_progress_state_t** */
24 PHP_HTTP_CLIENT_OPT_TRANSFER_INFO, /* php_http_client_enqueue_t*, HashTable* */
25 PHP_HTTP_CLIENT_OPT_AVAILABLE_OPTIONS, /* NULL, HashTable* */
26 PHP_HTTP_CLIENT_OPT_AVAILABLE_CONFIGURATION,/* NULL, HashTable */
27 } php_http_client_getopt_opt_t;
28
29 typedef struct php_http_client_enqueue {
30 php_http_message_t *request; /* unique */
31 HashTable *options;
32 void (*dtor)(struct php_http_client_enqueue *);
33 void *opaque;
34 struct {
35 zend_fcall_info fci;
36 zend_fcall_info_cache fcc;
37 } closure;
38 } php_http_client_enqueue_t;
39
40 typedef struct php_http_client *(*php_http_client_init_func_t)(struct php_http_client *p, void *init_arg);
41 typedef struct php_http_client *(*php_http_client_copy_func_t)(struct php_http_client *from, struct php_http_client *to);
42 typedef void (*php_http_client_dtor_func_t)(struct php_http_client *p);
43 typedef void (*php_http_client_reset_func_t)(struct php_http_client *p);
44 typedef ZEND_RESULT_CODE (*php_http_client_exec_func_t)(struct php_http_client *p);
45 typedef int (*php_http_client_once_func_t)(struct php_http_client *p);
46 typedef ZEND_RESULT_CODE (*php_http_client_wait_func_t)(struct php_http_client *p, struct timeval *custom_timeout);
47 typedef ZEND_RESULT_CODE (*php_http_client_enqueue_func_t)(struct php_http_client *p, php_http_client_enqueue_t *enqueue);
48 typedef ZEND_RESULT_CODE (*php_http_client_dequeue_func_t)(struct php_http_client *p, php_http_client_enqueue_t *enqueue);
49 typedef ZEND_RESULT_CODE (*php_http_client_setopt_func_t)(struct php_http_client *p, php_http_client_setopt_opt_t opt, void *arg);
50 typedef ZEND_RESULT_CODE (*php_http_client_getopt_func_t)(struct php_http_client *h, php_http_client_getopt_opt_t opt, void *arg, void **res);
51
52 typedef struct php_http_client_ops {
53 php_resource_factory_ops_t *rsrc;
54 php_http_client_init_func_t init;
55 php_http_client_copy_func_t copy;
56 php_http_client_dtor_func_t dtor;
57 php_http_client_reset_func_t reset;
58 php_http_client_exec_func_t exec;
59 php_http_client_wait_func_t wait;
60 php_http_client_once_func_t once;
61 php_http_client_enqueue_func_t enqueue;
62 php_http_client_dequeue_func_t dequeue;
63 php_http_client_setopt_func_t setopt;
64 php_http_client_getopt_func_t getopt;
65 } php_http_client_ops_t;
66
67 typedef struct php_http_client_driver {
68 const char *name_str;
69 size_t name_len;
70 php_http_client_ops_t *client_ops;
71 } php_http_client_driver_t;
72
73 PHP_HTTP_API ZEND_RESULT_CODE php_http_client_driver_add(php_http_client_driver_t *driver);
74 PHP_HTTP_API ZEND_RESULT_CODE php_http_client_driver_get(const char *name_str, size_t name_len, php_http_client_driver_t *driver);
75
76 typedef struct php_http_client_progress_state {
77 struct {
78 double now;
79 double total;
80 } ul;
81 struct {
82 double now;
83 double total;
84 } dl;
85 const char *info;
86 unsigned started:1;
87 unsigned finished:1;
88 } php_http_client_progress_state_t;
89
90 typedef ZEND_RESULT_CODE (*php_http_client_response_callback_t)(void *arg, struct php_http_client *client, php_http_client_enqueue_t *e, php_http_message_t **response);
91 typedef void (*php_http_client_progress_callback_t)(void *arg, struct php_http_client *client, php_http_client_enqueue_t *e, php_http_client_progress_state_t *state);
92 typedef void (*php_http_client_debug_callback_t)(void *arg, struct php_http_client *client, php_http_client_enqueue_t *e, unsigned type, const char *data, size_t size);
93
94 #define PHP_HTTP_CLIENT_DEBUG_INFO 0x00
95 #define PHP_HTTP_CLIENT_DEBUG_IN 0x01
96 #define PHP_HTTP_CLIENT_DEBUG_OUT 0x02
97 #define PHP_HTTP_CLIENT_DEBUG_HEADER 0x10
98 #define PHP_HTTP_CLIENT_DEBUG_BODY 0x20
99 #define PHP_HTTP_CLIENT_DEBUG_SSL 0x40
100
101 typedef struct php_http_client {
102 void *ctx;
103 php_resource_factory_t *rf;
104 php_http_client_ops_t *ops;
105
106 struct {
107 struct {
108 php_http_client_response_callback_t func;
109 void *arg;
110 } response;
111 struct {
112 php_http_client_progress_callback_t func;
113 void *arg;
114 } progress;
115 struct {
116 php_http_client_debug_callback_t func;
117 void *arg;
118 } debug;
119 unsigned depth;
120 } callback;
121
122 zend_llist requests;
123 zend_llist responses;
124
125 #ifdef ZTS
126 void ***ts;
127 #endif
128 } php_http_client_t;
129
130 PHP_HTTP_API zend_class_entry *php_http_client_class_entry;
131
132 typedef struct php_http_client_object {
133 zend_object zo;
134 zend_object_value zv;
135 php_http_client_t *client;
136 long iterator;
137 php_http_object_method_t *update;
138 php_http_object_method_t notify;
139 struct {
140 zend_fcall_info fci;
141 zend_fcall_info_cache fcc;
142 } debug;
143 } php_http_client_object_t;
144
145 PHP_HTTP_API php_http_client_t *php_http_client_init(php_http_client_t *h, php_http_client_ops_t *ops, php_resource_factory_t *rf, void *init_arg TSRMLS_DC);
146 PHP_HTTP_API php_http_client_t *php_http_client_copy(php_http_client_t *from, php_http_client_t *to);
147 PHP_HTTP_API void php_http_client_dtor(php_http_client_t *h);
148 PHP_HTTP_API void php_http_client_free(php_http_client_t **h);
149
150 PHP_HTTP_API ZEND_RESULT_CODE php_http_client_enqueue(php_http_client_t *h, php_http_client_enqueue_t *enqueue);
151 PHP_HTTP_API ZEND_RESULT_CODE php_http_client_dequeue(php_http_client_t *h, php_http_message_t *request);
152
153 PHP_HTTP_API ZEND_RESULT_CODE php_http_client_wait(php_http_client_t *h, struct timeval *custom_timeout);
154 PHP_HTTP_API int php_http_client_once(php_http_client_t *h);
155
156 PHP_HTTP_API ZEND_RESULT_CODE php_http_client_exec(php_http_client_t *h);
157 PHP_HTTP_API void php_http_client_reset(php_http_client_t *h);
158
159 PHP_HTTP_API ZEND_RESULT_CODE php_http_client_setopt(php_http_client_t *h, php_http_client_setopt_opt_t opt, void *arg);
160 PHP_HTTP_API ZEND_RESULT_CODE php_http_client_getopt(php_http_client_t *h, php_http_client_getopt_opt_t opt, void *arg, void *res_ptr);
161
162 typedef int (*php_http_client_enqueue_cmp_func_t)(php_http_client_enqueue_t *cmp, void *arg);
163 /* compare with request message pointer if compare_func is NULL */
164 PHP_HTTP_API php_http_client_enqueue_t *php_http_client_enqueued(php_http_client_t *h, void *compare_arg, php_http_client_enqueue_cmp_func_t compare_func);
165
166 PHP_MINIT_FUNCTION(http_client);
167 PHP_MSHUTDOWN_FUNCTION(http_client);
168
169 #endif
170
171 /*
172 * Local variables:
173 * tab-width: 4
174 * c-basic-offset: 4
175 * End:
176 * vim600: noet sw=4 ts=4 fdm=marker
177 * vim<600: noet sw=4 ts=4
178 */