1 Star 0 Fork 345

wxxbard / swoole-src

forked from swoole / swoole-src 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
swoole_http.h 6.34 KB
一键复制 编辑 原始数据 按行查看 历史
韩天峰 提交于 2018-09-13 16:35 . rename
/*
+----------------------------------------------------------------------+
| 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 |
| license@swoole.com so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Tianfeng Han <mikan.tenny@gmail.com> |
+----------------------------------------------------------------------+
*/
#ifndef SWOOLE_HTTP_H_
#define SWOOLE_HTTP_H_
#ifdef __cplusplus
extern "C"
{
#endif
#include "thirdparty/swoole_http_parser.h"
#include "thirdparty/multipart_parser.h"
#ifdef SW_USE_HTTP2
#include <nghttp2/nghttp2.h>
#endif
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,
HTTP_RESPONSE_TRANSFER_ENCODING = 1u << 6,
};
enum http_compress_method
{
HTTP_COMPRESS_GZIP = 1,
HTTP_COMPRESS_DEFLATE,
HTTP_COMPRESS_BR,
};
typedef struct
{
enum swoole_http_method method;
int version;
char *path;
uint32_t path_len;
const char *ext;
uint32_t ext_len;
uint8_t post_form_urlencoded;
#ifdef SW_USE_HTTP2
swString *post_buffer;
#endif
uint32_t post_length;
zval *zobject;
zval *zserver;
zval *zheader;
zval *zget;
zval *zpost;
zval *zcookie;
zval *zrequest;
zval *zfiles;
zval *ztmpfiles;
zval _zobject;
zval _zrequest;
zval _zserver;
zval _zheader;
zval _zget;
zval _zpost;
zval _zfiles;
zval _zcookie;
zval _ztmpfiles;
} http_request;
typedef struct
{
enum swoole_http_method method;
int version;
int status;
char* reason;
zval *zobject;
zval *zheader;
zval *zcookie;
zval *ztrailer;
zval _zobject;
zval _zheader;
zval _zcookie;
zval _ztrailer;
} http_response;
typedef struct
{
int fd;
uint32_t end :1;
uint32_t send_header :1;
#ifdef SW_HAVE_ZLIB
uint32_t enable_compression :1;
#endif
uint32_t chunk :1;
uint32_t keepalive :1;
uint32_t upgrade :1;
uint32_t detached :1;
uint32_t request_read :1;
uint32_t current_header_name_allocated :1;
uint32_t content_sender_initialized :1;
#ifdef SW_HAVE_ZLIB
int8_t compression_level;
int8_t compression_method;
#endif
#ifdef SW_USE_HTTP2
void* stream;
#endif
http_request request;
http_response response;
swoole_http_parser parser;
multipart_parser *mt_parser;
uint16_t input_var_num;
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;
zval *current_multipart_header;
} http_context;
/**
* WebSocket
*/
int swoole_websocket_onMessage(swEventData *);
int swoole_websocket_onHandshake(swListenPort *port, http_context *);
void swoole_websocket_onOpen(http_context *);
void swoole_websocket_onRequest(http_context *);
/**
* Http Context
*/
http_context* swoole_http_context_new(int fd);
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->class._z##name);\
sw_zval_ptr_dtor(&z##name);\
z##name = ctx->class.z##name;
#define http_strncasecmp(const_str, at, length) ((length >= sizeof(const_str)-1) &&\
(strncasecmp(at, ZEND_STRL(const_str)) == 0))
#ifdef SW_USE_HTTP2
/**
* Http v2
*/
int swoole_http2_onFrame(swConnection *conn, swEventData *req);
int swoole_http2_do_response(http_context *ctx, swString *body);
void swoole_http2_free(swConnection *conn);
#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;
#ifdef SW_HAVE_ZLIB
extern swString *swoole_zlib_buffer;
int swoole_http_response_compress(swString *body, int method, int level);
void swoole_http_get_compression_method(http_context *ctx, const char *accept_encoding, size_t length);
const char* swoole_http_get_content_encoding(http_context *ctx);
#endif
static sw_inline int http_parse_set_cookies(const char *at, size_t length, zval *cookies, zval *set_cookie_headers)
{
size_t l_cookie = 0;
char *p = (char*) memchr(at, ';', length);
if (p)
{
l_cookie = p - at;
}
else
{
l_cookie = length;
}
p = (char*) memchr(at, '=', length);
size_t l_key = 0;
if (p)
{
l_key = p - at;
}
if (l_key == 0 || l_key >= SW_HTTP_COOKIE_KEYLEN || l_key >= length - 1)
{
swWarn("cookie key format is wrong.");
return SW_ERR;
}
char keybuf[SW_HTTP_COOKIE_KEYLEN];
memcpy(keybuf, at, l_key);
keybuf[l_key] = '\0';
sw_add_assoc_stringl_ex(cookies, keybuf, l_key + 1, (char*) at + l_key + 1, l_cookie - l_key - 1, 1);
sw_add_assoc_stringl_ex(set_cookie_headers, keybuf, l_key + 1, (char*) at, length, 1);
return SW_OK;
}
#ifdef __cplusplus
}
#endif
#endif /* SWOOLE_HTTP_H_ */
C
1
https://gitee.com/github-22386239213213/swoole.git
git@gitee.com:github-22386239213213/swoole.git
github-22386239213213
swoole
swoole-src
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891