use the new params parser
[m6w6/ext-http] / php_http_request_factory.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_REQUEST_FACTORY_H
14 #define PHP_HTTP_REQUEST_FACTORY_H
15
16 #include "php_http_request.h"
17 #include "php_http_request_pool.h"
18
19 typedef struct php_http_request_factory_driver {
20 php_http_request_ops_t *request_ops;
21 php_http_request_pool_ops_t *request_pool_ops;
22 php_http_request_datashare_ops_t *request_datashare_ops;
23 } php_http_request_factory_driver_t;
24
25 PHP_HTTP_API STATUS php_http_request_factory_add_driver(const char *name_str, size_t name_len, php_http_request_factory_driver_t *driver);
26 PHP_HTTP_API STATUS php_http_request_factory_get_driver(const char *name_str, size_t name_len, php_http_request_factory_driver_t *driver);
27
28 extern zend_class_entry *php_http_request_factory_class_entry;
29 extern zend_function_entry php_http_request_factory_method_entry[];
30
31 #define php_http_request_factory_new php_http_object_new
32
33 PHP_METHOD(HttpRequestFactory, __construct);
34 PHP_METHOD(HttpRequestFactory, createRequest);
35 PHP_METHOD(HttpRequestFactory, createPool);
36 PHP_METHOD(HttpRequestFactory, createDataShare);
37 PHP_METHOD(HttpRequestFactory, getGlobalDataShareInstance);
38 PHP_METHOD(HttpRequestFactory, getDriver);
39 PHP_METHOD(HttpRequestFactory, getAvailableDrivers);
40
41 extern PHP_MINIT_FUNCTION(http_request_factory);
42 extern PHP_MSHUTDOWN_FUNCTION(http_request_factory);
43
44 #endif /* PHP_HTTP_REQUEST_FACTORY_H */
45
46 /*
47 * Local variables:
48 * tab-width: 4
49 * c-basic-offset: 4
50 * End:
51 * vim600: noet sw=4 ts=4 fdm=marker
52 * vim<600: noet sw=4 ts=4
53 */
54