rename http\Env\Request::getPost() to getForm(), because it actually retrieves form...
[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-2011, 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
37 typedef struct php_http_message_parser {
38 php_http_header_parser_t header;
39 zend_stack stack;
40 size_t body_length;
41 php_http_message_t *message;
42 php_http_encoding_stream_t *dechunk;
43 php_http_encoding_stream_t *inflate;
44 #ifdef ZTS
45 void ***ts;
46 #endif
47 } php_http_message_parser_t;
48
49 PHP_HTTP_API php_http_message_parser_t *php_http_message_parser_init(php_http_message_parser_t *parser TSRMLS_DC);
50 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_state_push(php_http_message_parser_t *parser, unsigned argc, ...);
51 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_state_is(php_http_message_parser_t *parser);
52 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_state_pop(php_http_message_parser_t *parser);
53 PHP_HTTP_API void php_http_message_parser_dtor(php_http_message_parser_t *parser);
54 PHP_HTTP_API void php_http_message_parser_free(php_http_message_parser_t **parser);
55 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);
56 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_parse_stream(php_http_message_parser_t *parser, php_stream *s, php_http_message_t **message);
57
58 #endif
59
60 /*
61 * Local variables:
62 * tab-width: 4
63 * c-basic-offset: 4
64 * End:
65 * vim600: noet sw=4 ts=4 fdm=marker
66 * vim<600: noet sw=4 ts=4
67 */
68