- better some leaks than mem read errors
[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 "SAPI.h"
27 #include "php_ini.h"
28
29 #include "php_http.h"
30 #include "php_http_api.h"
31 #include "php_http_std_defs.h"
32 #include "php_http_response_object.h"
33 #include "php_http_exception_object.h"
34 #include "php_http_send_api.h"
35 #include "php_http_cache_api.h"
36
37 #include "missing.h"
38
39 ZEND_EXTERN_MODULE_GLOBALS(http);
40
41 #define USE_STATIC_PROP() USE_STATIC_PROP_EX(http_response_object_ce)
42 #define GET_STATIC_PROP(n) *GET_STATIC_PROP_EX(http_response_object_ce, n)
43 #define SET_STATIC_PROP(n, v) SET_STATIC_PROP_EX(http_response_object_ce, n, v)
44 #define SET_STATIC_PROP_STRING(n, s, d) SET_STATIC_PROP_STRING_EX(http_response_object_ce, n, s, d)
45 #define SET_STATIC_PROP_STRINGL(n, s, l, d) SET_STATIC_PROP_STRINGL_EX(http_response_object_ce, n, s, l, d)
46
47 #define HTTP_BEGIN_ARGS(method, req_args) HTTP_BEGIN_ARGS_EX(HttpResponse, method, 0, req_args)
48 #define HTTP_EMPTY_ARGS(method, ret_ref) HTTP_EMPTY_ARGS_EX(HttpResponse, method, ret_ref)
49 #define HTTP_RESPONSE_ME(method, visibility) PHP_ME(HttpResponse, method, HTTP_ARGS(HttpResponse, method), visibility|ZEND_ACC_STATIC)
50
51 HTTP_EMPTY_ARGS(getETag, 0);
52 HTTP_BEGIN_ARGS(setETag, 1)
53 HTTP_ARG_VAL(etag, 0)
54 HTTP_END_ARGS;
55
56 HTTP_EMPTY_ARGS(getCache, 0);
57 HTTP_BEGIN_ARGS(setCache, 1)
58 HTTP_ARG_VAL(cache, 0)
59 HTTP_END_ARGS;
60
61 HTTP_EMPTY_ARGS(getGzip, 0);
62 HTTP_BEGIN_ARGS(setGzip, 1)
63 HTTP_ARG_VAL(gzip, 0)
64 HTTP_END_ARGS;
65
66 HTTP_EMPTY_ARGS(getCacheControl, 0);
67 HTTP_BEGIN_ARGS(setCacheControl, 1)
68 HTTP_ARG_VAL(cache_control, 0)
69 HTTP_ARG_VAL(max_age, 0)
70 HTTP_END_ARGS;
71
72 HTTP_EMPTY_ARGS(getContentType, 0);
73 HTTP_BEGIN_ARGS(setContentType, 1)
74 HTTP_ARG_VAL(content_type, 0)
75 HTTP_END_ARGS;
76
77 HTTP_EMPTY_ARGS(getContentDisposition, 0);
78 HTTP_BEGIN_ARGS(setContentDisposition, 1)
79 HTTP_ARG_VAL(filename, 0)
80 HTTP_ARG_VAL(send_inline, 0)
81 HTTP_END_ARGS;
82
83 HTTP_EMPTY_ARGS(getThrottleDelay, 0);
84 HTTP_BEGIN_ARGS(setThrottleDelay, 1)
85 HTTP_ARG_VAL(seconds, 0)
86 HTTP_END_ARGS;
87
88 HTTP_EMPTY_ARGS(getBufferSize, 0);
89 HTTP_BEGIN_ARGS(setBufferSize, 1)
90 HTTP_ARG_VAL(bytes, 0)
91 HTTP_END_ARGS;
92
93 HTTP_EMPTY_ARGS(getData, 0);
94 HTTP_BEGIN_ARGS(setData, 1)
95 HTTP_ARG_VAL(data, 0)
96 HTTP_END_ARGS;
97
98 HTTP_EMPTY_ARGS(getStream, 0);
99 HTTP_BEGIN_ARGS(setStream, 1)
100 HTTP_ARG_VAL(stream, 0)
101 HTTP_END_ARGS;
102
103 HTTP_EMPTY_ARGS(getFile, 0);
104 HTTP_BEGIN_ARGS(setFile, 1)
105 HTTP_ARG_VAL(filepath, 0)
106 HTTP_END_ARGS;
107
108 HTTP_BEGIN_ARGS(send, 0)
109 HTTP_ARG_VAL(clean_ob, 0)
110 HTTP_END_ARGS;
111
112 #define http_response_object_declare_default_properties() _http_response_object_declare_default_properties(TSRMLS_C)
113 static inline void _http_response_object_declare_default_properties(TSRMLS_D);
114
115 zend_class_entry *http_response_object_ce;
116 zend_function_entry http_response_object_fe[] = {
117
118 HTTP_RESPONSE_ME(setETag, ZEND_ACC_PUBLIC)
119 HTTP_RESPONSE_ME(getETag, ZEND_ACC_PUBLIC)
120
121 HTTP_RESPONSE_ME(setContentDisposition, ZEND_ACC_PUBLIC)
122 HTTP_RESPONSE_ME(getContentDisposition, ZEND_ACC_PUBLIC)
123
124 HTTP_RESPONSE_ME(setContentType, ZEND_ACC_PUBLIC)
125 HTTP_RESPONSE_ME(getContentType, ZEND_ACC_PUBLIC)
126
127 HTTP_RESPONSE_ME(setCache, ZEND_ACC_PUBLIC)
128 HTTP_RESPONSE_ME(getCache, ZEND_ACC_PUBLIC)
129
130 HTTP_RESPONSE_ME(setCacheControl, ZEND_ACC_PUBLIC)
131 HTTP_RESPONSE_ME(getCacheControl, ZEND_ACC_PUBLIC)
132
133 HTTP_RESPONSE_ME(setGzip, ZEND_ACC_PUBLIC)
134 HTTP_RESPONSE_ME(getGzip, ZEND_ACC_PUBLIC)
135
136 HTTP_RESPONSE_ME(setThrottleDelay, ZEND_ACC_PUBLIC)
137 HTTP_RESPONSE_ME(getThrottleDelay, ZEND_ACC_PUBLIC)
138
139 HTTP_RESPONSE_ME(setBufferSize, ZEND_ACC_PUBLIC)
140 HTTP_RESPONSE_ME(getBufferSize, ZEND_ACC_PUBLIC)
141
142 HTTP_RESPONSE_ME(setData, ZEND_ACC_PUBLIC)
143 HTTP_RESPONSE_ME(getData, ZEND_ACC_PUBLIC)
144
145 HTTP_RESPONSE_ME(setFile, ZEND_ACC_PUBLIC)
146 HTTP_RESPONSE_ME(getFile, ZEND_ACC_PUBLIC)
147
148 HTTP_RESPONSE_ME(setStream, ZEND_ACC_PUBLIC)
149 HTTP_RESPONSE_ME(getStream, ZEND_ACC_PUBLIC)
150
151 HTTP_RESPONSE_ME(send, ZEND_ACC_PUBLIC)
152
153 {NULL, NULL, NULL}
154 };
155 static zend_object_handlers http_response_object_handlers;
156
157 void _http_response_object_init(INIT_FUNC_ARGS)
158 {
159 HTTP_REGISTER_CLASS(HttpResponse, http_response_object, NULL, 0);
160 http_response_object_declare_default_properties();
161 }
162
163 static inline void _http_response_object_declare_default_properties(TSRMLS_D)
164 {
165 zend_class_entry *ce = http_response_object_ce;
166
167 DCL_STATIC_PROP(PRIVATE, bool, sent, 0);
168 DCL_STATIC_PROP(PRIVATE, bool, catch, 0);
169 DCL_STATIC_PROP(PRIVATE, long, mode, -1);
170 DCL_STATIC_PROP(PROTECTED, bool, cache, 0);
171 DCL_STATIC_PROP(PROTECTED, bool, gzip, 0);
172 DCL_STATIC_PROP(PROTECTED, long, stream, 0);
173 DCL_STATIC_PROP_N(PROTECTED, file);
174 DCL_STATIC_PROP_N(PROTECTED, data);
175 DCL_STATIC_PROP_N(PROTECTED, eTag);
176 DCL_STATIC_PROP(PROTECTED, long, lastModified, 0);
177 DCL_STATIC_PROP_N(PROTECTED, cacheControl);
178 DCL_STATIC_PROP_N(PROTECTED, contentType);
179 DCL_STATIC_PROP_N(PROTECTED, contentDisposition);
180 DCL_STATIC_PROP(PROTECTED, long, bufferSize, HTTP_SENDBUF_SIZE);
181 DCL_STATIC_PROP(PROTECTED, double, throttleDelay, 0.0);
182 }
183
184 /* ### USERLAND ### */
185
186 /* {{{ proto bool HttpResponse::setCache(bool cache)
187 *
188 * Whether it sould be attempted to cache the entitity.
189 * This will result in necessary caching headers and checks of clients
190 * "If-Modified-Since" and "If-None-Match" headers. If one of those headers
191 * matches a "304 Not Modified" status code will be issued.
192 *
193 * NOTE: If you're using sessions, be shure that you set session.cache_limiter
194 * to something more appropriate than "no-cache"!
195 */
196 PHP_METHOD(HttpResponse, setCache)
197 {
198 zend_bool do_cache = 0;
199
200 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &do_cache)) {
201 RETURN_FALSE;
202 }
203
204 ZVAL_BOOL(GET_STATIC_PROP(cache), do_cache);
205 RETURN_TRUE;
206 }
207 /* }}} */
208
209 /* {{{ proto bool HttpResponse::getCache()
210 *
211 * Get current caching setting.
212 */
213 PHP_METHOD(HttpResponse, getCache)
214 {
215 NO_ARGS;
216
217 IF_RETVAL_USED {
218 RETURN_BOOL(Z_LVAL_P(GET_STATIC_PROP(cache)));
219 }
220 }
221 /* }}}*/
222
223 /* {{{ proto bool HttpResponse::setGzip(bool gzip)
224 *
225 * Enable on-thy-fly gzipping of the sent entity. NOT IMPLEMENTED YET.
226 */
227 PHP_METHOD(HttpResponse, setGzip)
228 {
229 zend_bool do_gzip = 0;
230
231 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &do_gzip)) {
232 RETURN_FALSE;
233 }
234
235 ZVAL_BOOL(GET_STATIC_PROP(gzip), do_gzip);
236 RETURN_TRUE;
237 }
238 /* }}} */
239
240 /* {{{ proto bool HttpResponse::getGzip()
241 *
242 * Get current gzipping setting.
243 */
244 PHP_METHOD(HttpResponse, getGzip)
245 {
246 NO_ARGS;
247
248 IF_RETVAL_USED {
249 RETURN_BOOL(Z_LVAL_P(GET_STATIC_PROP(gzip)));
250 }
251 }
252 /* }}} */
253
254 /* {{{ proto bool HttpResponse::setCacheControl(string control[, long max_age = 0])
255 *
256 * Set a custom cache-control header, usually being "private" or "public";
257 * The max_age parameter controls how long the cache entry is valid on the client side.
258 */
259 PHP_METHOD(HttpResponse, setCacheControl)
260 {
261 char *ccontrol, *cctl;
262 int cc_len;
263 long max_age = 0;
264
265 #define HTTP_CACHECONTROL_TEMPLATE "%s, must-revalidate, max_age=%ld"
266
267 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b", &ccontrol, &cc_len, &max_age)) {
268 RETURN_FALSE;
269 }
270
271 if (strcmp(ccontrol, "public") && strcmp(ccontrol, "private") && strcmp(ccontrol, "no-cache")) {
272 http_error_ex(E_WARNING, HTTP_E_PARAM, "Cache-Control '%s' doesn't match public, private or no-cache", ccontrol);
273 RETURN_FALSE;
274 } else {
275 USE_STATIC_PROP();
276 spprintf(&cctl, 0, HTTP_CACHECONTROL_TEMPLATE, ccontrol, max_age);
277 SET_STATIC_PROP_STRING(cacheControl, cctl, 0);
278 RETURN_TRUE;
279 }
280 }
281 /* }}} */
282
283 /* {{{ proto string HttpResponse::getCacheControl()
284 *
285 * Get current Cache-Control header setting.
286 */
287 PHP_METHOD(HttpResponse, getCacheControl)
288 {
289 NO_ARGS;
290
291 IF_RETVAL_USED {
292 zval *ccontrol = GET_STATIC_PROP(cacheControl);
293 RETURN_STRINGL(Z_STRVAL_P(ccontrol), Z_STRLEN_P(ccontrol), 1);
294 }
295 }
296 /* }}} */
297
298 /* {{{ proto bool HttpResponse::setContentType(string content_type)
299 *
300 * Set the content-type of the sent entity.
301 */
302 PHP_METHOD(HttpResponse, setContentType)
303 {
304 char *ctype;
305 int ctype_len;
306
307 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &ctype, &ctype_len)) {
308 RETURN_FALSE;
309 }
310
311 if (!strchr(ctype, '/')) {
312 http_error_ex(E_WARNING, HTTP_E_PARAM, "Content type '%s' doesn't seem to contain a primary and a secondary part", ctype);
313 RETURN_FALSE;
314 }
315
316 USE_STATIC_PROP();
317 SET_STATIC_PROP_STRINGL(contentType, ctype, ctype_len, 1);
318 RETURN_TRUE;
319 }
320 /* }}} */
321
322 /* {{{ proto string HttpResponse::getContentType()
323 *
324 * Get current Content-Type header setting.
325 */
326 PHP_METHOD(HttpResponse, getContentType)
327 {
328 NO_ARGS;
329
330 IF_RETVAL_USED {
331 zval *ctype = GET_STATIC_PROP(contentType);
332 RETURN_STRINGL(Z_STRVAL_P(ctype), Z_STRLEN_P(ctype), 1);
333 }
334 }
335 /* }}} */
336
337 /* {{{ proto bool HttpResponse::setContentDisposition(string filename[, bool inline = false])
338 *
339 * Set the Content-Disposition of the sent entity. This setting aims to suggest
340 * the receiveing user agent how to handle the sent entity; usually the client
341 * will show the user a "Save As..." popup.
342 */
343 PHP_METHOD(HttpResponse, setContentDisposition)
344 {
345 char *file, *cd;
346 int file_len;
347 zend_bool send_inline = 0;
348
349 #define HTTP_CONTENTDISPOSITION_TEMPLATE "%s; filename=\"%s\""
350
351 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b", &file, &file_len, &send_inline)) {
352 RETURN_FALSE;
353 }
354
355 spprintf(&cd, 0, HTTP_CONTENTDISPOSITION_TEMPLATE, send_inline ? "inline" : "attachment", file);
356 ZVAL_STRING_FREE(GET_STATIC_PROP(contentDisposition), cd, 0);
357 RETURN_TRUE;
358 }
359 /* }}} */
360
361 /* {{{ proto string HttpResponse::getContentDisposition()
362 *
363 * Get current Content-Disposition setting.
364 */
365 PHP_METHOD(HttpResponse, getContentDisposition)
366 {
367 NO_ARGS;
368
369 IF_RETVAL_USED {
370 zval *cd = GET_STATIC_PROP(contentDisposition);
371 RETURN_STRINGL(Z_STRVAL_P(cd), Z_STRLEN_P(cd), 1);
372 }
373 }
374 /* }}} */
375
376 /* {{{ proto bool HttpResponse::setETag(string etag)
377 *
378 * Set a custom ETag. Use this only if you know what you're doing.
379 */
380 PHP_METHOD(HttpResponse, setETag)
381 {
382 char *etag;
383 int etag_len;
384
385 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &etag, &etag_len)) {
386 RETURN_FALSE;
387 }
388
389 ZVAL_STRINGL_FREE(GET_STATIC_PROP(eTag), etag, etag_len, 1);
390 RETURN_TRUE;
391 }
392 /* }}} */
393
394 /* {{{ proto string HttpResponse::getETag()
395 *
396 * Get the previously set custom ETag.
397 */
398 PHP_METHOD(HttpResponse, getETag)
399 {
400 NO_ARGS;
401
402 IF_RETVAL_USED {
403 zval *etag = GET_STATIC_PROP(eTag);
404 RETURN_STRINGL(Z_STRVAL_P(etag), Z_STRLEN_P(etag), 1);
405 }
406 }
407 /* }}} */
408
409 /* {{{ proto void HttpResponse::setThrottleDelay(double seconds)
410 *
411 */
412 PHP_METHOD(HttpResponse, setThrottleDelay)
413 {
414 double seconds;
415
416 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d", &seconds)) {
417 ZVAL_DOUBLE(GET_STATIC_PROP(throttleDelay), seconds);
418 }
419 }
420 /* }}} */
421
422 /* {{{ proto double HttpResponse::getThrottleDelay()
423 *
424 */
425 PHP_METHOD(HttpResponse, getThrottleDelay)
426 {
427 NO_ARGS;
428
429 IF_RETVAL_USED {
430 RETURN_DOUBLE(Z_DVAL_P(GET_STATIC_PROP(throttleDelay)));
431 }
432 }
433 /* }}} */
434
435 /* {{{ proto void HttpResponse::setBufferSize(long bytes)
436 *
437 */
438 PHP_METHOD(HttpResponse, setBufferSize)
439 {
440 long bytes;
441
442 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &bytes)) {
443 ZVAL_LONG(GET_STATIC_PROP(bufferSize), bytes);
444 }
445 }
446 /* }}} */
447
448 /* {{{ proto long HttpResponse::getBufferSize()
449 *
450 */
451 PHP_METHOD(HttpResponse, getBufferSize)
452 {
453 NO_ARGS;
454
455 IF_RETVAL_USED {
456 RETURN_LONG(Z_LVAL_P(GET_STATIC_PROP(bufferSize)));
457 }
458 }
459 /* }}} */
460
461 /* {{{ proto bool HttpResponse::setData(string data)
462 *
463 * Set the data to be sent.
464 */
465 PHP_METHOD(HttpResponse, setData)
466 {
467 zval *the_data, **data;
468
469 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &the_data)) {
470 RETURN_FALSE;
471 }
472 convert_to_string_ex(&the_data);
473
474 USE_STATIC_PROP();
475 SET_STATIC_PROP(data, the_data);
476 ZVAL_LONG(GET_STATIC_PROP(lastModified), http_last_modified(the_data, SEND_DATA));
477 ZVAL_LONG(GET_STATIC_PROP(mode), SEND_DATA);
478 RETURN_TRUE;
479 }
480 /* }}} */
481
482 /* {{{ proto string HttpResponse::getData()
483 *
484 * Get the previously set data to be sent.
485 */
486 PHP_METHOD(HttpResponse, getData)
487 {
488 NO_ARGS;
489
490 IF_RETVAL_USED {
491 zval *the_data = GET_STATIC_PROP(data);
492 RETURN_STRINGL(Z_STRVAL_P(the_data), Z_STRLEN_P(the_data), 1);
493 }
494 }
495 /* }}} */
496
497 /* {{{ proto bool HttpResponse::setStream(resource stream)
498 *
499 * Set the resource to be sent.
500 */
501 PHP_METHOD(HttpResponse, setStream)
502 {
503 zval *the_stream;
504 php_stream *the_real_stream;
505
506 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &the_stream)) {
507 RETURN_FALSE;
508 }
509
510 USE_STATIC_PROP();
511 php_stream_from_zval(the_real_stream, &the_stream);
512 ZVAL_LONG(GET_STATIC_PROP(stream), Z_LVAL_P(the_stream));
513 ZVAL_LONG(GET_STATIC_PROP(lastModified), http_last_modified(the_real_stream, SEND_RSRC));
514 ZVAL_LONG(GET_STATIC_PROP(mode), SEND_RSRC);
515 RETURN_TRUE;
516 }
517 /* }}} */
518
519 /* {{{ proto resource HttpResponse::getStream()
520 *
521 * Get the previously set resource to be sent.
522 */
523 PHP_METHOD(HttpResponse, getStream)
524 {
525 NO_ARGS;
526
527 IF_RETVAL_USED {
528 RETURN_RESOURCE(Z_LVAL_P(GET_STATIC_PROP(stream)));
529 }
530 }
531 /* }}} */
532
533 /* {{{ proto bool HttpResponse::setFile(string file)
534 *
535 * Set the file to be sent.
536 */
537 PHP_METHOD(HttpResponse, setFile)
538 {
539 zval *the_file;
540
541 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &the_file)) {
542 RETURN_FALSE;
543 }
544
545 convert_to_string_ex(&the_file);
546 USE_STATIC_PROP();
547 SET_STATIC_PROP(file, the_file);
548 ZVAL_LONG(GET_STATIC_PROP(lastModified), http_last_modified(the_file, -1));
549 ZVAL_LONG(GET_STATIC_PROP(mode), -1);
550
551 RETURN_TRUE;
552 }
553 /* }}} */
554
555 /* {{{ proto string HttpResponse::getFile()
556 *
557 * Get the previously set file to be sent.
558 */
559 PHP_METHOD(HttpResponse, getFile)
560 {
561 NO_ARGS;
562
563 IF_RETVAL_USED {
564 zval *the_file = GET_STATIC_PROP(file);
565 RETURN_STRINGL(Z_STRVAL_P(the_file), Z_STRLEN_P(the_file), 1);
566 }
567 }
568 /* }}} */
569
570 /* {{{ proto bool HttpResponse::send([bool clean_ob = true])
571 *
572 * Finally send the entity.
573 */
574 PHP_METHOD(HttpResponse, send)
575 {
576 zval *do_cache, *do_gzip;
577 zend_bool clean_ob = 1;
578
579 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &clean_ob)) {
580 RETURN_FALSE;
581 }
582
583 if (clean_ob) {
584 /* interrupt on-the-fly etag generation */
585 HTTP_G(etag).started = 0;
586 /* discard previous output buffers */
587 //php_end_ob_buffers(0 TSRMLS_CC);
588 }
589
590 /* gzip */
591 if (Z_LVAL_P(GET_STATIC_PROP(gzip))) {
592 php_start_ob_buffer_named("ob_gzhandler", 0, 1 TSRMLS_CC);
593 }
594
595 /* caching */
596 if (Z_LVAL_P(GET_STATIC_PROP(cache))) {
597 char *cc_hdr;
598 int cc_len;
599 zval *cctl, *etag, *lmod;
600
601 etag = GET_STATIC_PROP(eTag);
602 lmod = GET_STATIC_PROP(lastModified);
603 cctl = GET_STATIC_PROP(cacheControl);
604
605 http_cache_etag(Z_STRVAL_P(etag), Z_STRLEN_P(etag),Z_STRVAL_P(cctl), Z_STRLEN_P(cctl));
606 http_cache_last_modified(Z_LVAL_P(lmod), Z_LVAL_P(lmod) ? Z_LVAL_P(lmod) : time(NULL), Z_STRVAL_P(cctl), Z_STRLEN_P(cctl));
607 }
608
609 /* content type */
610 {
611 zval *ctype = GET_STATIC_PROP(contentType);
612 if (Z_STRLEN_P(ctype)) {
613 http_send_content_type(Z_STRVAL_P(ctype), Z_STRLEN_P(ctype));
614 } else {
615 http_send_content_type("application/x-octetstream", lenof("application/x-octetstream"));
616 }
617 }
618
619 /* content disposition */
620 {
621 zval *cd = GET_STATIC_PROP(contentDisposition);
622 if (Z_STRLEN_P(cd)) {
623 char *cds;
624
625 spprintf(&cds, 0, "Content-Disposition: %s", Z_STRVAL_P(cd));
626 http_send_header(cds);
627 efree(cds);
628 }
629 }
630
631 /* throttling */
632 {
633 HTTP_G(send).buffer_size = Z_LVAL_P(GET_STATIC_PROP(bufferSize));
634 HTTP_G(send).throttle_delay = Z_DVAL_P(GET_STATIC_PROP(throttleDelay));
635 }
636
637 /* send */
638 {
639 switch (Z_LVAL_P(GET_STATIC_PROP(mode)))
640 {
641 case SEND_DATA:
642 {
643 zval *zdata = GET_STATIC_PROP(data);
644 RETURN_SUCCESS(http_send_data(Z_STRVAL_P(zdata), Z_STRLEN_P(zdata)));
645 }
646
647 case SEND_RSRC:
648 {
649 php_stream *the_real_stream;
650 zval *the_stream = GET_STATIC_PROP(stream);
651 php_stream_from_zval(the_real_stream, &the_stream);
652 RETURN_SUCCESS(http_send_stream(the_real_stream));
653 }
654
655 default:
656 {
657 RETURN_SUCCESS(http_send_file(Z_STRVAL_P(GET_STATIC_PROP(file))));
658 }
659 }
660 }
661 }
662 /* }}} */
663
664 #endif /* ZEND_ENGINE_2 */
665
666 /*
667 * Local variables:
668 * tab-width: 4
669 * c-basic-offset: 4
670 * End:
671 * vim600: noet sw=4 ts=4 fdm=marker
672 * vim<600: noet sw=4 ts=4
673 */
674