* flush *
[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, setThrottleDelay, NULL, ZEND_ACC_PUBLIC)
56 PHP_ME(HttpResponse, getThrottleDelay, NULL, ZEND_ACC_PUBLIC)
57
58 PHP_ME(HttpResponse, setSendBuffersize, NULL, ZEND_ACC_PUBLIC)
59 PHP_ME(HttpResponse, getSendBuffersize, NULL, ZEND_ACC_PUBLIC)
60
61 PHP_ME(HttpResponse, setData, NULL, ZEND_ACC_PUBLIC)
62 PHP_ME(HttpResponse, getData, NULL, ZEND_ACC_PUBLIC)
63
64 PHP_ME(HttpResponse, setFile, NULL, ZEND_ACC_PUBLIC)
65 PHP_ME(HttpResponse, getFile, NULL, ZEND_ACC_PUBLIC)
66
67 PHP_ME(HttpResponse, setStream, NULL, ZEND_ACC_PUBLIC)
68 PHP_ME(HttpResponse, getStream, NULL, ZEND_ACC_PUBLIC)
69
70 PHP_ME(HttpResponse, send, NULL, ZEND_ACC_PUBLIC)
71
72 {NULL, NULL, NULL}
73 };
74 static zend_object_handlers http_response_object_handlers;
75
76 void _http_response_object_init(INIT_FUNC_ARGS)
77 {
78 HTTP_REGISTER_CLASS_EX(HttpResponse, http_response_object, NULL, 0);
79 }
80
81 zend_object_value _http_response_object_new(zend_class_entry *ce TSRMLS_DC)
82 {
83 zend_object_value ov;
84 http_response_object *o;
85
86 o = ecalloc(1, sizeof(http_response_object));
87 o->zo.ce = ce;
88
89 ALLOC_HASHTABLE(OBJ_PROP(o));
90 zend_hash_init(OBJ_PROP(o), 0, NULL, ZVAL_PTR_DTOR, 0);
91 zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
92
93 ov.handle = zend_objects_store_put(o, (zend_objects_store_dtor_t) zend_objects_destroy_object, http_response_object_free, NULL TSRMLS_CC);
94 ov.handlers = &http_response_object_handlers;
95
96 return ov;
97 }
98
99 static inline void _http_response_object_declare_default_properties(TSRMLS_D)
100 {
101 zend_class_entry *ce = http_response_object_ce;
102
103 DCL_PROP(PROTECTED, string, contentType, "application/x-octetstream");
104 DCL_PROP(PROTECTED, string, eTag, "");
105 DCL_PROP(PROTECTED, string, dispoFile, "");
106 DCL_PROP(PROTECTED, string, cacheControl, "public");
107 DCL_PROP(PROTECTED, string, data, "");
108 DCL_PROP(PROTECTED, string, file, "");
109 DCL_PROP(PROTECTED, long, stream, 0);
110 DCL_PROP(PROTECTED, long, lastModified, 0);
111 DCL_PROP(PROTECTED, long, dispoInline, 0);
112 DCL_PROP(PROTECTED, long, cache, 0);
113 DCL_PROP(PROTECTED, long, gzip, 0);
114 DCL_PROP(PROTECTED, long, sendBuffersize, HTTP_SENDBUF_SIZE);
115 DCL_PROP(PROTECTED, double, throttleDelay, 0.0);
116
117 DCL_PROP(PRIVATE, long, raw_cache_header, 0);
118 DCL_PROP(PRIVATE, long, send_mode, -1);
119 }
120
121 void _http_response_object_free(zend_object *object TSRMLS_DC)
122 {
123 http_response_object *o = (http_response_object *) object;
124
125 if (OBJ_PROP(o)) {
126 zend_hash_destroy(OBJ_PROP(o));
127 FREE_HASHTABLE(OBJ_PROP(o));
128 }
129 efree(o);
130 }
131
132 #endif /* ZEND_ENGINE_2 */
133
134 /*
135 * Local variables:
136 * tab-width: 4
137 * c-basic-offset: 4
138 * End:
139 * vim600: noet sw=4 ts=4 fdm=marker
140 * vim<600: noet sw=4 ts=4
141 */
142