flush WIP
[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 } php_http_message_parser_t;
46
47 PHP_HTTP_API php_http_message_parser_t *php_http_message_parser_init(php_http_message_parser_t *parser);
48 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_state_push(php_http_message_parser_t *parser, unsigned argc, ...);
49 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_state_is(php_http_message_parser_t *parser);
50 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_state_pop(php_http_message_parser_t *parser);
51 PHP_HTTP_API void php_http_message_parser_dtor(php_http_message_parser_t *parser);
52 PHP_HTTP_API void php_http_message_parser_free(php_http_message_parser_t **parser);
53 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);
54 PHP_HTTP_API php_http_message_parser_state_t php_http_message_parser_parse_stream(php_http_message_parser_t *parser, php_http_buffer_t *buffer, php_stream *s, unsigned flags, php_http_message_t **message);
55
56 typedef struct php_http_message_parser_object {
57 php_http_buffer_t buffer;
58 php_http_message_parser_t *parser;
59 zend_object zo;
60 } php_http_message_parser_object_t;
61
62 PHP_HTTP_API zend_class_entry *php_http_message_parser_class_entry;
63
64 PHP_MINIT_FUNCTION(http_message_parser);
65
66 zend_object *php_http_message_parser_object_new(zend_class_entry *ce);
67 php_http_message_parser_object_t *php_http_message_parser_object_new_ex(zend_class_entry *ce, php_http_message_parser_t *parser);
68 void php_http_message_parser_object_free(zend_object *object);
69
70 #endif
71
72 /*
73 * Local variables:
74 * tab-width: 4
75 * c-basic-offset: 4
76 * End:
77 * vim600: noet sw=4 ts=4 fdm=marker
78 * vim<600: noet sw=4 ts=4
79 */
80