- use exceptions in constructors and HttpRequest::send()
[m6w6/ext-http] / http_response_object.c
1 /*
2 +----------------------------------------------------------------------+
3 | PECL :: http |
4 +----------------------------------------------------------------------+
5 | This source file is subject to version 3.0 of the PHP license, that |
6 | is bundled with this package in the file LICENSE, and is available |
7 | through the world-wide-web at http://www.php.net/license/3_0.txt. |
8 | If you did not receive a copy of the PHP license and are unable to |
9 | obtain it through the world-wide-web, please send a note to |
10 | license@php.net so we can mail you a copy immediately. |
11 +----------------------------------------------------------------------+
12 | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
13 +----------------------------------------------------------------------+
14 */
15
16 /* $Id$ */
17
18
19 #ifdef HAVE_CONFIG_H
20 # include "config.h"
21 #endif
22
23 #include "php.h"
24
25 #include "php_http_std_defs.h"
26 #include "php_http_response_object.h"
27
28 #ifdef ZEND_ENGINE_2
29
30 #define http_response_object_declare_default_properties() _http_response_object_declare_default_properties(TSRMLS_C)
31 static inline void _http_response_object_declare_default_properties(TSRMLS_D);
32
33 zend_class_entry *http_response_object_ce;
34 zend_function_entry http_response_object_fe[] = {
35 PHP_ME(HttpResponse, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
36
37 PHP_ME(HttpResponse, setETag, NULL, ZEND_ACC_PUBLIC)
38 PHP_ME(HttpResponse, getETag, NULL, ZEND_ACC_PUBLIC)
39
40 PHP_ME(HttpResponse, setContentDisposition, NULL, ZEND_ACC_PUBLIC)
41 PHP_ME(HttpResponse, getContentDisposition, NULL, ZEND_ACC_PUBLIC)
42
43 PHP_ME(HttpResponse, setContentType, NULL, ZEND_ACC_PUBLIC)
44 PHP_ME(HttpResponse, getContentType, NULL, ZEND_ACC_PUBLIC)
45
46 PHP_ME(HttpResponse, setCache, NULL, ZEND_ACC_PUBLIC)
47 PHP_ME(HttpResponse, getCache, NULL, ZEND_ACC_PUBLIC)
48
49 PHP_ME(HttpResponse, setCacheControl, NULL, ZEND_ACC_PUBLIC)
50 PHP_ME(HttpResponse, getCacheControl, NULL, ZEND_ACC_PUBLIC)
51
52 PHP_ME(HttpResponse, setGzip, NULL, ZEND_ACC_PUBLIC)
53 PHP_ME(HttpResponse, getGzip, NULL, ZEND_ACC_PUBLIC)
54
55 PHP_ME(HttpResponse, setData, NULL, ZEND_ACC_PUBLIC)
56 PHP_ME(HttpResponse, getData, NULL, ZEND_ACC_PUBLIC)
57
58 PHP_ME(HttpResponse, setFile, NULL, ZEND_ACC_PUBLIC)
59 PHP_ME(HttpResponse, getFile, NULL, ZEND_ACC_PUBLIC)
60
61 PHP_ME(HttpResponse, setStream, NULL, ZEND_ACC_PUBLIC)
62 PHP_ME(HttpResponse, getStream, NULL, ZEND_ACC_PUBLIC)
63
64 PHP_ME(HttpResponse, send, NULL, ZEND_ACC_PUBLIC)
65
66 {NULL, NULL, NULL}
67 };
68 static zend_object_handlers http_response_object_handlers;
69
70 void _http_response_object_init(INIT_FUNC_ARGS)
71 {
72 HTTP_REGISTER_CLASS_EX(HttpResponse, http_response_object, NULL, 0);
73 }
74
75 zend_object_value _http_response_object_new(zend_class_entry *ce TSRMLS_DC)
76 {
77 zend_object_value ov;
78 http_response_object *o;
79
80 o = ecalloc(1, sizeof(http_response_object));
81 o->zo.ce = ce;
82
83 ALLOC_HASHTABLE(OBJ_PROP(o));
84 zend_hash_init(OBJ_PROP(o), 0, NULL, ZVAL_PTR_DTOR, 0);
85 zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
86
87 ov.handle = zend_objects_store_put(o, (zend_objects_store_dtor_t) zend_objects_destroy_object, http_response_object_free, NULL TSRMLS_CC);
88 ov.handlers = &http_response_object_handlers;
89
90 return ov;
91 }
92
93 static inline void _http_response_object_declare_default_properties(TSRMLS_D)
94 {
95 zend_class_entry *ce = http_response_object_ce;
96
97 DCL_PROP(PROTECTED, string, contentType, "application/x-octetstream");
98 DCL_PROP(PROTECTED, string, eTag, "");
99 DCL_PROP(PROTECTED, string, dispoFile, "");
100 DCL_PROP(PROTECTED, string, cacheControl, "public");
101 DCL_PROP(PROTECTED, string, data, "");
102 DCL_PROP(PROTECTED, string, file, "");
103 DCL_PROP(PROTECTED, long, stream, 0);
104 DCL_PROP(PROTECTED, long, lastModified, 0);
105 DCL_PROP(PROTECTED, long, dispoInline, 0);
106 DCL_PROP(PROTECTED, long, cache, 0);
107 DCL_PROP(PROTECTED, long, gzip, 0);
108
109 DCL_PROP(PRIVATE, long, raw_cache_header, 0);
110 DCL_PROP(PRIVATE, long, send_mode, -1);
111 }
112
113 void _http_response_object_free(zend_object *object TSRMLS_DC)
114 {
115 http_response_object *o = (http_response_object *) object;
116
117 if (OBJ_PROP(o)) {
118 zend_hash_destroy(OBJ_PROP(o));
119 FREE_HASHTABLE(OBJ_PROP(o));
120 }
121 efree(o);
122 }
123
124 #endif /* ZEND_ENGINE_2 */
125
126 /*
127 * Local variables:
128 * tab-width: 4
129 * c-basic-offset: 4
130 * End:
131 * vim600: noet sw=4 ts=4 fdm=marker
132 * vim<600: noet sw=4 ts=4
133 */
134