Merge pull request #96 from Jan-E/master
[m6w6/ext-http] / src / 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_UPDATE_CL,
31 PHP_HTTP_MESSAGE_PARSER_STATE_DONE
32 } php_http_message_parser_state_t;
33
34 #define PHP_HTTP_MESSAGE_PARSER_CLEANUP 0x1
35 #define PHP_HTTP_MESSAGE_PARSER_DUMB_BODIES 0x2
36 #define PHP_HTTP_MESSAGE_PARSER_EMPTY_REDIRECTS 0x4
37 #define PHP_HTTP_MESSAGE_PARSER_GREEDY 0x8
38
39 typedef struct php_http_message_parser {
40 php_http_header_parser_t header;
41 zend_ptr_stack stack;
42 size_t body_length;
43 php_http_message_t *message;
44 php_http_encoding_stream_t *dechunk;
45 php_http_encoding_stream_t *inflate;
46 } php_http_message_parser_t;
47
48 PHP_HTTP_API php_http_message_parser_t *php_http_message_parser_init(php_http_message_parser_t *parser);
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 void php_http_message_parser_dtor(php_http_message_parser_t *parser);
51 PHP_HTTP_API void php_http_message_parser_free(php_http_message_parser_t **parser);
52 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);
53 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);
54
55 typedef struct php_http_message_parser_object {
56 php_http_buffer_t buffer;
57 php_http_message_parser_t *parser;
58 zend_object zo;
59 } php_http_message_parser_object_t;
60
61 PHP_HTTP_API zend_class_entry *php_http_get_message_parser_class_entry(void);
62
63 PHP_MINIT_FUNCTION(http_message_parser);
64
65 zend_object *php_http_message_parser_object_new(zend_class_entry *ce);
66 php_http_message_parser_object_t *php_http_message_parser_object_new_ex(zend_class_entry *ce, php_http_message_parser_t *parser);
67 void php_http_message_parser_object_free(zend_object *object);
68
69 #endif
70
71 /*
72 * Local variables:
73 * tab-width: 4
74 * c-basic-offset: 4
75 * End:
76 * vim600: noet sw=4 ts=4 fdm=marker
77 * vim<600: noet sw=4 ts=4
78 */
79