- typo
[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 #include "php.h"
23
24 #ifdef ZEND_ENGINE_2
25
26 #include "php_http_std_defs.h"
27 #include "php_http_response_object.h"
28
29 #include "missing.h"
30
31 #define http_response_object_declare_default_properties() _http_response_object_declare_default_properties(TSRMLS_C)
32 static inline void _http_response_object_declare_default_properties(TSRMLS_D);
33
34 zend_class_entry *http_response_object_ce;
35 zend_function_entry http_response_object_fe[] = {
36 PHP_ME(HttpResponse, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
37
38 PHP_ME(HttpResponse, setETag, NULL, ZEND_ACC_PUBLIC)
39 PHP_ME(HttpResponse, getETag, NULL, ZEND_ACC_PUBLIC)
40
41 PHP_ME(HttpResponse, setContentDisposition, NULL, ZEND_ACC_PUBLIC)
42 PHP_ME(HttpResponse, getContentDisposition, NULL, ZEND_ACC_PUBLIC)
43
44 PHP_ME(HttpResponse, setContentType, NULL, ZEND_ACC_PUBLIC)
45 PHP_ME(HttpResponse, getContentType, NULL, ZEND_ACC_PUBLIC)
46
47 PHP_ME(HttpResponse, setCache, NULL, ZEND_ACC_PUBLIC)
48 PHP_ME(HttpResponse, getCache, NULL, ZEND_ACC_PUBLIC)
49
50 PHP_ME(HttpResponse, setCacheControl, NULL, ZEND_ACC_PUBLIC)
51 PHP_ME(HttpResponse, getCacheControl, NULL, ZEND_ACC_PUBLIC)
52
53 PHP_ME(HttpResponse, setGzip, NULL, ZEND_ACC_PUBLIC)
54 PHP_ME(HttpResponse, getGzip, NULL, ZEND_ACC_PUBLIC)
55
56 PHP_ME(HttpResponse, setThrottleDelay, NULL, ZEND_ACC_PUBLIC)
57 PHP_ME(HttpResponse, getThrottleDelay, NULL, ZEND_ACC_PUBLIC)
58
59 PHP_ME(HttpResponse, setSendBuffersize, NULL, ZEND_ACC_PUBLIC)
60 PHP_ME(HttpResponse, getSendBuffersize, NULL, ZEND_ACC_PUBLIC)
61
62 PHP_ME(HttpResponse, setData, NULL, ZEND_ACC_PUBLIC)
63 PHP_ME(HttpResponse, getData, NULL, ZEND_ACC_PUBLIC)
64
65 PHP_ME(HttpResponse, setFile, NULL, ZEND_ACC_PUBLIC)
66 PHP_ME(HttpResponse, getFile, NULL, ZEND_ACC_PUBLIC)
67
68 PHP_ME(HttpResponse, setStream, NULL, ZEND_ACC_PUBLIC)
69 PHP_ME(HttpResponse, getStream, NULL, ZEND_ACC_PUBLIC)
70
71 PHP_ME(HttpResponse, send, NULL, ZEND_ACC_PUBLIC)
72
73 {NULL, NULL, NULL}
74 };
75 static zend_object_handlers http_response_object_handlers;
76
77 void _http_response_object_init(INIT_FUNC_ARGS)
78 {
79 HTTP_REGISTER_CLASS_EX(HttpResponse, http_response_object, NULL, 0);
80 }
81
82 zend_object_value _http_response_object_new(zend_class_entry *ce TSRMLS_DC)
83 {
84 zend_object_value ov;
85 http_response_object *o;
86
87 o = ecalloc(1, sizeof(http_response_object));
88 o->zo.ce = ce;
89
90 ALLOC_HASHTABLE(OBJ_PROP(o));
91 zend_hash_init(OBJ_PROP(o), 0, NULL, ZVAL_PTR_DTOR, 0);
92 zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
93
94 ov.handle = zend_objects_store_put(o, (zend_objects_store_dtor_t) zend_objects_destroy_object, http_response_object_free, NULL TSRMLS_CC);
95 ov.handlers = &http_response_object_handlers;
96
97 return ov;
98 }
99
100 static inline void _http_response_object_declare_default_properties(TSRMLS_D)
101 {
102 zend_class_entry *ce = http_response_object_ce;
103
104 DCL_PROP(PROTECTED, string, contentType, "application/x-octetstream");
105 DCL_PROP(PROTECTED, string, eTag, "");
106 DCL_PROP(PROTECTED, string, dispoFile, "");
107 DCL_PROP(PROTECTED, string, cacheControl, "public");
108 DCL_PROP(PROTECTED, string, data, "");
109 DCL_PROP(PROTECTED, string, file, "");
110 DCL_PROP(PROTECTED, long, stream, 0);
111 DCL_PROP(PROTECTED, long, lastModified, 0);
112 DCL_PROP(PROTECTED, long, dispoInline, 0);
113 DCL_PROP(PROTECTED, long, cache, 0);
114 DCL_PROP(PROTECTED, long, gzip, 0);
115 DCL_PROP(PROTECTED, long, sendBuffersize, HTTP_SENDBUF_SIZE);
116 DCL_PROP(PROTECTED, double, throttleDelay, 0.0);
117
118 DCL_PROP(PRIVATE, long, raw_cache_header, 0);
119 DCL_PROP(PRIVATE, long, send_mode, -1);
120 }
121
122 void _http_response_object_free(zend_object *object TSRMLS_DC)
123 {
124 http_response_object *o = (http_response_object *) object;
125
126 if (OBJ_PROP(o)) {
127 zend_hash_destroy(OBJ_PROP(o));
128 FREE_HASHTABLE(OBJ_PROP(o));
129 }
130 efree(o);
131 }
132
133 #endif /* ZEND_ENGINE_2 */
134
135 /*
136 * Local variables:
137 * tab-width: 4
138 * c-basic-offset: 4
139 * End:
140 * vim600: noet sw=4 ts=4 fdm=marker
141 * vim<600: noet sw=4 ts=4
142 */
143