new params parser
[m6w6/ext-http] / php_http_params.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_PARAMS_H
14 #define PHP_HTTP_PARAMS_H
15
16 typedef struct php_http_params_token {
17 char *str;
18 size_t len;
19 } php_http_params_token_t;
20
21 typedef struct php_http_params_opts {
22 php_http_params_token_t input;
23 php_http_params_token_t **param;
24 php_http_params_token_t **arg;
25 php_http_params_token_t **val;
26 } php_http_params_opts_t;
27
28 PHP_HTTP_API php_http_params_opts_t *php_http_params_opts_default_get(php_http_params_opts_t *opts);
29 PHP_HTTP_API HashTable *php_http_params_parse(HashTable *params, const php_http_params_opts_t *opts TSRMLS_DC);
30
31 typedef php_http_object_t php_http_params_object_t;
32
33 extern zend_class_entry *php_http_params_class_entry;
34 extern zend_function_entry php_http_params_method_entry[];
35
36 PHP_MINIT_FUNCTION(http_params);
37
38 #define php_http_params_object_new php_http_object_new
39 #define php_http_params_object_new_ex php_http_object_new_ex
40
41 PHP_METHOD(HttpParams, __construct);
42 PHP_METHOD(HttpParams, toString);
43 PHP_METHOD(HttpParams, toArray);
44 PHP_METHOD(HttpParams, offsetExists);
45 PHP_METHOD(HttpParams, offsetUnset);
46 PHP_METHOD(HttpParams, offsetSet);
47 PHP_METHOD(HttpParams, offsetGet);
48
49 #endif
50
51 /*
52 * Local variables:
53 * tab-width: 4
54 * c-basic-offset: 4
55 * End:
56 * vim600: noet sw=4 ts=4 fdm=marker
57 * vim<600: noet sw=4 ts=4
58 */
59