-
Notifications
You must be signed in to change notification settings - Fork 1
/
swoole_http.h
195 lines (163 loc) · 5.22 KB
/
swoole_http.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*
+----------------------------------------------------------------------+
| Swoole |
+----------------------------------------------------------------------+
| Copyright (c) 2012-2015 The Swoole Group |
+----------------------------------------------------------------------+
| This source file is subject to version 2.0 of the Apache license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.apache.org/licenses/LICENSE-2.0.html |
| If you did not receive a copy of the Apache2.0 license and are unable|
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Tianfeng Han <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifndef SWOOLE_HTTP_H_
#define SWOOLE_HTTP_H_
#include "thirdparty/php_http_parser.h"
#include "thirdparty/multipart_parser.h"
#ifdef SW_USE_HTTP2
#include <nghttp2/nghttp2.h>
#endif
#define HTTP_SERVER_CALLBACK_NUM 3
enum http_callback_type
{
HTTP_CALLBACK_onRequest = 0,
HTTP_CALLBACK_onHandShake = 1,
};
enum http_response_flag
{
HTTP_RESPONSE_SERVER = 1u << 1,
HTTP_RESPONSE_CONNECTION = 1u << 2,
HTTP_RESPONSE_CONTENT_LENGTH = 1u << 3,
HTTP_RESPONSE_DATE = 1u << 4,
HTTP_RESPONSE_CONTENT_TYPE = 1u << 5,
};
typedef struct
{
enum php_http_method method;
int version;
char *path;
uint32_t path_len;
const char *ext;
uint32_t ext_len;
uint8_t post_form_urlencoded;
char *post_content;
uint32_t post_length;
zval *zdata;
zval *zobject;
zval *zserver;
zval *zheader;
zval *zget;
zval *zpost;
zval *zcookie;
zval *zrequest;
zval *zfiles;
#if PHP_MAJOR_VERSION >= 7
zval _zdata;
zval _zobject;
zval _zrequest;
zval _zserver;
zval _zheader;
zval _zget;
zval _zpost;
zval _zfiles;
zval _zcookie;
#endif
} http_request;
typedef struct
{
enum php_http_method method;
int version;
int status;
zval *zobject;
zval *zheader;
zval *zcookie;
#if PHP_MAJOR_VERSION >= 7
zval _zobject;
zval _zheader;
zval _zcookie;
#endif
} http_response;
typedef struct
{
int fd;
uint32_t end :1;
uint32_t send_header :1;
uint32_t gzip_enable :1;
uint32_t gzip_level :4;
uint32_t chunk :1;
uint32_t keepalive :1;
uint32_t http2 :1;
uint32_t request_read :1;
uint32_t current_header_name_allocated :1;
uint32_t content_sender_initialized :1;
#ifdef SW_USE_HTTP2
swString *buffer;
uint8_t priority;
uint32_t stream_id;
#endif
http_request request;
http_response response;
php_http_parser parser;
multipart_parser *mt_parser;
struct _swoole_http_client *client;
char *current_header_name;
size_t current_header_name_len;
char *current_input_name;
char *current_form_data_name;
size_t current_form_data_name_len;
char *current_form_data_value;
} http_context;
typedef struct _swoole_http_client
{
int fd;
uint32_t http2 :1;
#ifdef SW_USE_HTTP2
swHashMap *streams;
nghttp2_hd_inflater *deflater;
nghttp2_hd_inflater *inflater;
uint32_t window_size;
#endif
http_context context;
} swoole_http_client;
/**
* WebSocket
*/
int swoole_websocket_onMessage(swEventData *req);
int swoole_websocket_onHandshake(swoole_http_client *client);
void swoole_websocket_onOpen(swoole_http_client *client);
void swoole_websocket_onReuqest(swoole_http_client *client);
int swoole_websocket_isset_onMessage(void);
/**
* Http Context
*/
http_context* swoole_http_context_new(swoole_http_client* client TSRMLS_DC);
void swoole_http_context_free(http_context *ctx TSRMLS_DC);
int swoole_http_parse_form_data(http_context *ctx, const char *boundary_str, int boundary_len TSRMLS_DC);
#define swoole_http_server_array_init(name, class) SW_MAKE_STD_ZVAL(z##name);\
array_init(z##name);\
zend_update_property(swoole_http_##class##_class_entry_ptr, z##class##_object, ZEND_STRL(#name), z##name TSRMLS_CC);\
ctx->class.z##name = sw_zend_read_property(swoole_http_##class##_class_entry_ptr, z##class##_object, ZEND_STRL(#name), 0 TSRMLS_CC);\
sw_copy_to_stack(ctx->class.z##name, ctx->request._z##name);\
sw_zval_ptr_dtor(&z##name);
#ifdef SW_USE_HTTP2
/**
* Http v2
*/
int swoole_http2_onFrame(swoole_http_client *client, swEventData *req);
int swoole_http2_do_response(http_context *ctx, swString *body);
#endif
extern zend_class_entry swoole_http_server_ce;
extern zend_class_entry *swoole_http_server_class_entry_ptr;
extern zend_class_entry swoole_http_response_ce;
extern zend_class_entry *swoole_http_response_class_entry_ptr;
extern zend_class_entry swoole_http_request_ce;
extern zend_class_entry *swoole_http_request_class_entry_ptr;
extern swString *swoole_http_buffer;
extern swString *swoole_zlib_buffer;
extern zval* php_sw_http_server_callbacks[HTTP_SERVER_CALLBACK_NUM];
#endif /* SWOOLE_HTTP_H_ */