back to dev
[m6w6/ext-http] / php_http_message_parser.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_MESSAGE_PARSER_H
14 #define PHP_HTTP_MESSAGE_PARSER_H
15
16 #include "php_http_header_parser.h"
17 #include "php_http_encoding.h"
18 #include "php_http_message.h"
19
20 typedef enum php_http_message_parser_state {
21 PHP_HTTP_MESSAGE_PARSER_STATE_FAILURE = FAILURE,
22 PHP_HTTP_MESSAGE_PARSER_STATE_START = 0,
23 PHP_HTTP_MESSAGE_PARSER_STATE_HEADER,
24 PHP_HTTP_MESSAGE_PARSER_STATE_HEADER_DONE,
25 PHP_HTTP_MESSAGE_PARSER_STATE_BODY,
26 PHP_HTTP_MESSAGE_PARSER_STATE_BODY_DUMB,
27 PHP_HTTP_MESSAGE_PARSER_STATE_BODY_LENGTH,
28 PHP_HTTP_MESSAGE_PARSER_STATE_BODY_CHUNKED,
29 PHP_HTTP_MESSAGE_PARSER_STATE_BODY_DONE,
30 PHP_HTTP_MESSAGE_PARSER_STATE_DONE
31 } php_http_message_parser_state_t;
32
33 #define PHP_HTTP_MESSAGE_PARSER_CLEANUP 0x1
34 #define PHP_HTTP_MESSAGE_PARSER_DUMB_BODIES 0x2
35 #define PHP_HTTP_MESSAGE_PARSER_EMPTY_REDIRECTS 0x4
36 #define PHP_HTTP_MESSAGE_PARSER_GREEDY 0x8
37
38 typedef struct php_http_message_parser {
39 php_http_header_parser_t header;
40 zend_ptr_stack stack;
41 size_t body_length;
42 php_http_message_t *message;
43 php_http_encoding_stream_t *dechunk;
44 php_http_encoding_stream_t *inflate;
45 #ifdef ZTS
46 void ***ts;
47 #endif
48 } php_http_message_parser_t;
49
50 PHP_HTTP_API php_http_message_parser_t *php_http_message_parser_init(php_http_message_parser_t *parser TSRMLS_DC);
51 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_state_push(php_http_message_parser_t *parser, unsigned argc, ...);
52 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_state_is(php_http_message_parser_t *parser);
53 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_state_pop(php_http_message_parser_t *parser);
54 PHP_HTTP_API void php_http_message_parser_dtor(php_http_message_parser_t *parser);
55 PHP_HTTP_API void php_http_message_parser_free(php_http_message_parser_t **parser);
56 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_parse(php_http_message_parser_t *parser, php_http_buffer_t *buffer, unsigned flags, php_http_message_t **message);
57 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_parse_stream(php_http_message_parser_t *parser, php_stream *s, unsigned flags, php_http_message_t **message);
58
59 #endif
60
61 /*
62 * Local variables:
63 * tab-width: 4
64 * c-basic-offset: 4
65 * End:
66 * vim600: noet sw=4 ts=4 fdm=marker
67 * vim<600: noet sw=4 ts=4
68 */
69