remove dead code
[m6w6/ext-http] / php_http_message_body.c
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-2014, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #include "php_http_api.h"
14
15 #include <ext/standard/php_lcg.h>
16
17 #define BOUNDARY_OPEN(body) \
18 do {\
19 size_t size = php_http_message_body_size(body); \
20 if (size) { \
21 php_stream_truncate_set_size(php_http_message_body_stream(body), size - lenof("--" PHP_HTTP_CRLF)); \
22 php_http_message_body_append(body, ZEND_STRL(PHP_HTTP_CRLF)); \
23 } else { \
24 php_http_message_body_appendf(body, "--%s" PHP_HTTP_CRLF, php_http_message_body_boundary(body)); \
25 } \
26 } while(0)
27
28 #define BOUNDARY_CLOSE(body) \
29 php_http_message_body_appendf(body, PHP_HTTP_CRLF "--%s--" PHP_HTTP_CRLF, php_http_message_body_boundary(body))
30
31 static STATUS add_recursive_fields(php_http_message_body_t *body, const char *name, zval *value);
32 static STATUS add_recursive_files(php_http_message_body_t *body, const char *name, zval *value);
33
34 php_http_message_body_t *php_http_message_body_init(php_http_message_body_t **body_ptr, php_stream *stream TSRMLS_DC)
35 {
36 php_http_message_body_t *body;
37
38 if (body_ptr && *body_ptr) {
39 body = *body_ptr;
40 ++body->refcount;
41 return body;
42 }
43
44 body = ecalloc(1, sizeof(php_http_message_body_t));
45 body->refcount = 1;
46
47 if (stream) {
48 php_stream_auto_cleanup(stream);
49 body->stream_id = php_stream_get_resource_id(stream);
50 zend_list_addref(body->stream_id);
51 } else {
52 stream = php_stream_temp_create(TEMP_STREAM_DEFAULT, 0xffff);
53 php_stream_auto_cleanup(stream);
54 body->stream_id = php_stream_get_resource_id(stream);
55 }
56 TSRMLS_SET_CTX(body->ts);
57
58 if (body_ptr) {
59 *body_ptr = body;
60 }
61
62 return body;
63 }
64
65 unsigned php_http_message_body_addref(php_http_message_body_t *body)
66 {
67 return ++body->refcount;
68 }
69
70 php_http_message_body_t *php_http_message_body_copy(php_http_message_body_t *from, php_http_message_body_t *to)
71 {
72 if (from) {
73 TSRMLS_FETCH_FROM_CTX(from->ts);
74
75 if (to) {
76 php_stream_truncate_set_size(php_http_message_body_stream(to), 0);
77 } else {
78 to = php_http_message_body_init(NULL, NULL TSRMLS_CC);
79 }
80 php_http_message_body_to_stream(from, php_http_message_body_stream(to), 0, 0);
81
82 if (to->boundary) {
83 efree(to->boundary);
84 }
85 if (from->boundary) {
86 to->boundary = estrdup(from->boundary);
87 }
88 } else {
89 to = NULL;
90 }
91 return to;
92 }
93
94 void php_http_message_body_free(php_http_message_body_t **body_ptr)
95 {
96 if (*body_ptr) {
97 php_http_message_body_t *body = *body_ptr;
98
99 if (!--body->refcount) {
100 TSRMLS_FETCH_FROM_CTX(body->ts);
101 /* NOFIXME: shows leakinfo in DEBUG mode */
102 zend_list_delete(body->stream_id);
103 PTR_FREE(body->boundary);
104 efree(body);
105 }
106 *body_ptr = NULL;
107 }
108 }
109
110 const php_stream_statbuf *php_http_message_body_stat(php_http_message_body_t *body)
111 {
112 TSRMLS_FETCH_FROM_CTX(body->ts);
113 php_stream_stat(php_http_message_body_stream(body), &body->ssb);
114 return &body->ssb;
115 }
116
117 const char *php_http_message_body_boundary(php_http_message_body_t *body)
118 {
119 if (!body->boundary) {
120 union { double dbl; int num[2]; } data;
121 TSRMLS_FETCH_FROM_CTX(body->ts);
122
123 data.dbl = php_combined_lcg(TSRMLS_C);
124 spprintf(&body->boundary, 0, "%x.%x", data.num[0], data.num[1]);
125 }
126 return body->boundary;
127 }
128
129 char *php_http_message_body_etag(php_http_message_body_t *body)
130 {
131 php_http_etag_t *etag;
132 php_stream *s = php_http_message_body_stream(body);
133 TSRMLS_FETCH_FROM_CTX(body->ts);
134
135 /* real file or temp buffer ? */
136 if (s->ops != &php_stream_temp_ops && s->ops != &php_stream_memory_ops) {
137 php_stream_stat(php_http_message_body_stream(body), &body->ssb);
138
139 if (body->ssb.sb.st_mtime) {
140 char *etag;
141
142 spprintf(&etag, 0, "%lx-%lx-%lx", body->ssb.sb.st_ino, body->ssb.sb.st_mtime, body->ssb.sb.st_size);
143 return etag;
144 }
145 }
146
147 /* content based */
148 if ((etag = php_http_etag_init(PHP_HTTP_G->env.etag_mode TSRMLS_CC))) {
149 php_http_message_body_to_callback(body, (php_http_pass_callback_t) php_http_etag_update, etag, 0, 0);
150 return php_http_etag_finish(etag);
151 }
152
153 return NULL;
154 }
155
156 void php_http_message_body_to_string(php_http_message_body_t *body, char **buf, size_t *len, off_t offset, size_t forlen)
157 {
158 php_stream *s = php_http_message_body_stream(body);
159 TSRMLS_FETCH_FROM_CTX(body->ts);
160
161 php_stream_seek(s, offset, SEEK_SET);
162 if (!forlen) {
163 forlen = -1;
164 }
165 *len = php_stream_copy_to_mem(s, buf, forlen, 0);
166 }
167
168 STATUS php_http_message_body_to_stream(php_http_message_body_t *body, php_stream *dst, off_t offset, size_t forlen)
169 {
170 php_stream *s = php_http_message_body_stream(body);
171 TSRMLS_FETCH_FROM_CTX(body->ts);
172
173 php_stream_seek(s, offset, SEEK_SET);
174
175 if (!forlen) {
176 forlen = -1;
177 }
178 return php_stream_copy_to_stream_ex(s, dst, forlen, NULL);
179 }
180
181 STATUS php_http_message_body_to_callback(php_http_message_body_t *body, php_http_pass_callback_t cb, void *cb_arg, off_t offset, size_t forlen)
182 {
183 php_stream *s = php_http_message_body_stream(body);
184 char *buf = emalloc(0x1000);
185 TSRMLS_FETCH_FROM_CTX(body->ts);
186
187 php_stream_seek(s, offset, SEEK_SET);
188
189 if (!forlen) {
190 forlen = -1;
191 }
192 while (!php_stream_eof(s)) {
193 size_t read = php_stream_read(s, buf, MIN(forlen, 0x1000));
194
195 if (read) {
196 if (-1 == cb(cb_arg, buf, read)) {
197 return FAILURE;
198 }
199 }
200
201 if (read < MIN(forlen, sizeof(buf))) {
202 break;
203 }
204
205 if (forlen && !(forlen -= read)) {
206 break;
207 }
208 }
209 efree(buf);
210
211 return SUCCESS;
212 }
213
214 size_t php_http_message_body_append(php_http_message_body_t *body, const char *buf, size_t len)
215 {
216 php_stream *s;
217 size_t written;
218 TSRMLS_FETCH_FROM_CTX(body->ts);
219
220 if (!(s = php_http_message_body_stream(body))) {
221 return -1;
222 }
223
224 if (s->ops->seek) {
225 php_stream_seek(s, 0, SEEK_END);
226 }
227
228 written = php_stream_write(s, buf, len);
229
230 if (written != len) {
231 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to append %zu bytes to body; wrote %zu", len, written);
232 }
233
234 return len;
235 }
236
237 size_t php_http_message_body_appendf(php_http_message_body_t *body, const char *fmt, ...)
238 {
239 va_list argv;
240 char *print_str;
241 size_t print_len;
242
243 va_start(argv, fmt);
244 print_len = vspprintf(&print_str, 0, fmt, argv);
245 va_end(argv);
246
247 print_len = php_http_message_body_append(body, print_str, print_len);
248 efree(print_str);
249
250 return print_len;
251 }
252
253 STATUS php_http_message_body_add_form(php_http_message_body_t *body, HashTable *fields, HashTable *files)
254 {
255 zval tmp;
256
257 if (fields) {
258 INIT_PZVAL_ARRAY(&tmp, fields);
259 if (SUCCESS != add_recursive_fields(body, NULL, &tmp)) {
260 return FAILURE;
261 }
262 }
263 if (files) {
264 INIT_PZVAL_ARRAY(&tmp, files);
265 if (SUCCESS != add_recursive_files(body, NULL, &tmp)) {
266 return FAILURE;
267 }
268 }
269
270 return SUCCESS;
271 }
272
273 void php_http_message_body_add_part(php_http_message_body_t *body, php_http_message_t *part)
274 {
275 TSRMLS_FETCH_FROM_CTX(body->ts);
276
277 BOUNDARY_OPEN(body);
278 php_http_message_to_callback(part, (php_http_pass_callback_t) php_http_message_body_append, body);
279 BOUNDARY_CLOSE(body);
280 }
281
282
283 STATUS php_http_message_body_add_form_field(php_http_message_body_t *body, const char *name, const char *value_str, size_t value_len)
284 {
285 char *safe_name;
286 TSRMLS_FETCH_FROM_CTX(body->ts);
287
288 safe_name = php_addslashes(estrdup(name), strlen(name), NULL, 1 TSRMLS_CC);
289
290 BOUNDARY_OPEN(body);
291 php_http_message_body_appendf(
292 body,
293 "Content-Disposition: form-data; name=\"%s\"" PHP_HTTP_CRLF
294 "" PHP_HTTP_CRLF,
295 safe_name
296 );
297 php_http_message_body_append(body, value_str, value_len);
298 BOUNDARY_CLOSE(body);
299
300 efree(safe_name);
301 return SUCCESS;
302 }
303
304 STATUS php_http_message_body_add_form_file(php_http_message_body_t *body, const char *name, const char *ctype, const char *path, php_stream *in)
305 {
306 char *safe_name, *path_dup = estrdup(path), *bname;
307 size_t bname_len;
308 TSRMLS_FETCH_FROM_CTX(body->ts);
309
310 safe_name = php_addslashes(estrdup(name), strlen(name), NULL, 1 TSRMLS_CC);
311
312 php_basename(path_dup, strlen(path_dup), NULL, 0, &bname, &bname_len TSRMLS_CC);
313
314 BOUNDARY_OPEN(body);
315 php_http_message_body_appendf(
316 body,
317 "Content-Disposition: form-data; name=\"%s\"; filename=\"%s\"" PHP_HTTP_CRLF
318 "Content-Transfer-Encoding: binary" PHP_HTTP_CRLF
319 "Content-Type: %s" PHP_HTTP_CRLF
320 PHP_HTTP_CRLF,
321 safe_name, bname, ctype
322 );
323 php_stream_copy_to_stream_ex(in, php_http_message_body_stream(body), PHP_STREAM_COPY_ALL, NULL);
324 BOUNDARY_CLOSE(body);
325
326 efree(safe_name);
327 efree(path_dup);
328 efree(bname);
329
330 return SUCCESS;
331 }
332
333 static inline char *format_key(uint type, char *str, ulong num, const char *prefix) {
334 char *new_key = NULL;
335
336 if (prefix && *prefix) {
337 if (type == HASH_KEY_IS_STRING) {
338 spprintf(&new_key, 0, "%s[%s]", prefix, str);
339 } else {
340 spprintf(&new_key, 0, "%s[%lu]", prefix, num);
341 }
342 } else if (type == HASH_KEY_IS_STRING) {
343 new_key = estrdup(str);
344 } else {
345 new_key = estrdup("");
346 }
347
348 return new_key;
349 }
350
351 static STATUS add_recursive_fields(php_http_message_body_t *body, const char *name, zval *value)
352 {
353 if (Z_TYPE_P(value) == IS_ARRAY || Z_TYPE_P(value) == IS_OBJECT) {
354 zval **val;
355 HashTable *ht;
356 HashPosition pos;
357 php_http_array_hashkey_t key = php_http_array_hashkey_init(0);
358 TSRMLS_FETCH_FROM_CTX(body->ts);
359
360 ht = HASH_OF(value);
361 if (!ht->nApplyCount) {
362 ++ht->nApplyCount;
363 FOREACH_KEYVAL(pos, value, key, val) {
364 char *str = format_key(key.type, key.str, key.num, name);
365 if (SUCCESS != add_recursive_fields(body, str, *val)) {
366 efree(str);
367 ht->nApplyCount--;
368 return FAILURE;
369 }
370 efree(str);
371 }
372 --ht->nApplyCount;
373 }
374 } else {
375 zval *cpy = php_http_ztyp(IS_STRING, value);
376 php_http_message_body_add_form_field(body, name, Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
377 zval_ptr_dtor(&cpy);
378 }
379
380 return SUCCESS;
381 }
382
383 static STATUS add_recursive_files(php_http_message_body_t *body, const char *name, zval *value)
384 {
385 zval **zdata = NULL, **zfile, **zname, **ztype;
386 HashTable *ht;
387 TSRMLS_FETCH_FROM_CTX(body->ts);
388
389 if (Z_TYPE_P(value) != IS_ARRAY && Z_TYPE_P(value) != IS_OBJECT) {
390 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Expected array or object (name, type, file) for message body file to add");
391 return FAILURE;
392 }
393
394 ht = HASH_OF(value);
395
396 if ((SUCCESS != zend_hash_find(ht, ZEND_STRS("name"), (void *) &zname))
397 || (SUCCESS != zend_hash_find(ht, ZEND_STRS("type"), (void *) &ztype))
398 || (SUCCESS != zend_hash_find(ht, ZEND_STRS("file"), (void *) &zfile))
399 ) {
400 zval **val;
401 HashPosition pos;
402 php_http_array_hashkey_t key = php_http_array_hashkey_init(0);
403
404 if (!ht->nApplyCount) {
405 ++ht->nApplyCount;
406 FOREACH_HASH_KEYVAL(pos, ht, key, val) {
407 if (Z_TYPE_PP(val) == IS_ARRAY || Z_TYPE_PP(val) == IS_OBJECT) {
408 char *str = format_key(key.type, key.str, key.num, name);
409
410 if (SUCCESS != add_recursive_files(body, str, *val)) {
411 efree(str);
412 --ht->nApplyCount;
413 return FAILURE;
414 }
415 efree(str);
416 }
417 }
418 --ht->nApplyCount;
419 }
420 return SUCCESS;
421 } else {
422 php_stream *stream;
423 zval *zfc = php_http_ztyp(IS_STRING, *zfile);
424
425 if (SUCCESS == zend_hash_find(ht, ZEND_STRS("data"), (void *) &zdata)) {
426 if (Z_TYPE_PP(zdata) == IS_RESOURCE) {
427 php_stream_from_zval_no_verify(stream, zdata);
428 } else {
429 zval *tmp = php_http_ztyp(IS_STRING, *zdata);
430
431 stream = php_stream_memory_open(TEMP_STREAM_READONLY, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
432 zval_ptr_dtor(&tmp);
433 }
434 } else {
435 stream = php_stream_open_wrapper(Z_STRVAL_P(zfc), "r", REPORT_ERRORS|USE_PATH, NULL);
436 }
437
438 if (!stream) {
439 zval_ptr_dtor(&zfc);
440 return FAILURE;
441 } else {
442 zval *znc = php_http_ztyp(IS_STRING, *zname), *ztc = php_http_ztyp(IS_STRING, *ztype);
443 char *key = format_key(HASH_KEY_IS_STRING, Z_STRVAL_P(znc), 0, name);
444 STATUS ret = php_http_message_body_add_form_file(body, key, Z_STRVAL_P(ztc), Z_STRVAL_P(zfc), stream);
445
446 efree(key);
447 zval_ptr_dtor(&znc);
448 zval_ptr_dtor(&ztc);
449 zval_ptr_dtor(&zfc);
450 if (!zdata || Z_TYPE_PP(zdata) != IS_RESOURCE) {
451 php_stream_close(stream);
452 }
453 return ret;
454 }
455
456 }
457 }
458
459 struct splitbody_arg {
460 php_http_buffer_t buf;
461 php_http_message_parser_t *parser;
462 char *boundary_str;
463 size_t boundary_len;
464 size_t consumed;
465 };
466
467 static size_t splitbody(void *opaque, char *buf, size_t len TSRMLS_DC)
468 {
469 struct splitbody_arg *arg = opaque;
470 const char *boundary = NULL;
471 size_t consumed = 0;
472 int first_boundary;
473
474 do {
475 first_boundary = !(consumed || arg->consumed);
476
477 if ((boundary = php_http_locate_str(buf, len, arg->boundary_str + first_boundary, arg->boundary_len - first_boundary))) {
478 size_t real_boundary_len = arg->boundary_len - 1, cut;
479 const char *real_boundary = boundary + !first_boundary;
480 int eol_len = 0;
481
482 if (buf + len <= real_boundary + real_boundary_len) {
483 /* if we just have enough data for the boundary, it's just a byte too less */
484 arg->consumed += consumed;
485 return consumed;
486 }
487
488 if (!first_boundary) {
489 /* this is not the first boundary, read rest of this message */
490 php_http_buffer_append(&arg->buf, buf, real_boundary - buf);
491 }
492
493 /* move after the boundary */
494 cut = real_boundary - buf + real_boundary_len;
495 buf += cut;
496 len -= cut;
497 consumed += cut;
498
499 if (buf == php_http_locate_bin_eol(buf, len, &eol_len)) {
500 /* skip CRLF */
501 buf += eol_len;
502 len -= eol_len;
503 consumed += eol_len;
504
505 if (!first_boundary) {
506 /* advance messages */
507 php_http_message_t *msg;
508
509 msg = php_http_message_init(NULL, 0, NULL TSRMLS_CC);
510 msg->parent = arg->parser->message;
511 arg->parser->message = msg;
512 }
513 } else {
514 /* is this the last boundary? */
515 if (*buf == '-') {
516 /* ignore the rest */
517 consumed += len;
518 len = 0;
519 } else {
520 /* let this be garbage */
521 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Malformed multipart boundary at pos %zu", consumed);
522 return -1;
523 }
524 }
525 }
526 } while (boundary && len);
527
528 /* let there be room for the next boundary */
529 if (len > arg->boundary_len) {
530 consumed += len - arg->boundary_len;
531 php_http_buffer_append(&arg->buf, buf, len - arg->boundary_len);
532 php_http_message_parser_parse(arg->parser, &arg->buf, 0, &arg->parser->message);
533 }
534
535 arg->consumed += consumed;
536 return consumed;
537 }
538
539 php_http_message_t *php_http_message_body_split(php_http_message_body_t *body, const char *boundary)
540 {
541 php_stream *s = php_http_message_body_stream(body);
542 php_http_buffer_t *tmp = NULL;
543 php_http_message_t *msg = NULL;
544 struct splitbody_arg arg;
545 TSRMLS_FETCH_FROM_CTX(body->ts);
546
547 php_http_buffer_init(&arg.buf);
548 arg.parser = php_http_message_parser_init(NULL TSRMLS_CC);
549 arg.boundary_len = spprintf(&arg.boundary_str, 0, "\n--%s", boundary);
550 arg.consumed = 0;
551
552 php_stream_rewind(s);
553 while (!php_stream_eof(s)) {
554 php_http_buffer_passthru(&tmp, 0x1000, (php_http_buffer_pass_func_t) _php_stream_read, s, splitbody, &arg TSRMLS_CC);
555 }
556
557 msg = arg.parser->message;
558 arg.parser->message = NULL;
559
560 php_http_buffer_free(&tmp);
561 php_http_message_parser_free(&arg.parser);
562 php_http_buffer_dtor(&arg.buf);
563 PTR_FREE(arg.boundary_str);
564
565 return msg;
566 }
567
568 static zend_object_handlers php_http_message_body_object_handlers;
569
570 zend_object_value php_http_message_body_object_new(zend_class_entry *ce TSRMLS_DC)
571 {
572 return php_http_message_body_object_new_ex(ce, NULL, NULL TSRMLS_CC);
573 }
574
575 zend_object_value php_http_message_body_object_new_ex(zend_class_entry *ce, php_http_message_body_t *body, php_http_message_body_object_t **ptr TSRMLS_DC)
576 {
577 php_http_message_body_object_t *o;
578
579 o = ecalloc(1, sizeof(php_http_message_body_object_t));
580 zend_object_std_init((zend_object *) o, php_http_message_body_class_entry TSRMLS_CC);
581 object_properties_init((zend_object *) o, ce);
582
583 if (ptr) {
584 *ptr = o;
585 }
586
587 if (body) {
588 o->body = body;
589 }
590
591 o->zv.handle = zend_objects_store_put((zend_object *) o, NULL, php_http_message_body_object_free, NULL TSRMLS_CC);
592 o->zv.handlers = &php_http_message_body_object_handlers;
593
594 return o->zv;
595 }
596
597 zend_object_value php_http_message_body_object_clone(zval *object TSRMLS_DC)
598 {
599 zend_object_value new_ov;
600 php_http_message_body_object_t *new_obj = NULL;
601 php_http_message_body_object_t *old_obj = zend_object_store_get_object(object TSRMLS_CC);
602 php_http_message_body_t *body = php_http_message_body_copy(old_obj->body, NULL);
603
604 new_ov = php_http_message_body_object_new_ex(old_obj->zo.ce, body, &new_obj TSRMLS_CC);
605 zend_objects_clone_members(&new_obj->zo, new_ov, &old_obj->zo, Z_OBJ_HANDLE_P(object) TSRMLS_CC);
606
607 return new_ov;
608 }
609
610 void php_http_message_body_object_free(void *object TSRMLS_DC)
611 {
612 php_http_message_body_object_t *obj = object;
613
614 php_http_message_body_free(&obj->body);
615 zend_object_std_dtor((zend_object *) obj TSRMLS_CC);
616 efree(obj);
617 }
618
619 #define PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj) \
620 do { \
621 if (!obj->body) { \
622 obj->body = php_http_message_body_init(NULL, NULL TSRMLS_CC); \
623 } \
624 } while(0)
625
626 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody___construct, 0, 0, 0)
627 ZEND_ARG_INFO(0, stream)
628 ZEND_END_ARG_INFO();
629 PHP_METHOD(HttpMessageBody, __construct)
630 {
631 php_http_message_body_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
632 zval *zstream = NULL;
633 php_stream *stream;
634
635 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|r!", &zstream), invalid_arg, return);
636
637 if (zstream) {
638 php_http_expect(php_stream_from_zval_no_verify(stream, &zstream), unexpected_val, return);
639
640 if (obj->body) {
641 php_http_message_body_free(&obj->body);
642 }
643 obj->body = php_http_message_body_init(NULL, stream TSRMLS_CC);
644 }
645 }
646
647 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody___toString, 0, 0, 0)
648 ZEND_END_ARG_INFO();
649 PHP_METHOD(HttpMessageBody, __toString)
650 {
651 if (SUCCESS == zend_parse_parameters_none()) {
652 php_http_message_body_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
653 char *str;
654 size_t len;
655
656 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
657
658 php_http_message_body_to_string(obj->body, &str, &len, 0, 0);
659 if (str) {
660 RETURN_STRINGL(str, len, 0);
661 }
662 }
663 RETURN_EMPTY_STRING();
664 }
665
666 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_unserialize, 0, 0, 1)
667 ZEND_ARG_INFO(0, serialized)
668 ZEND_END_ARG_INFO();
669 PHP_METHOD(HttpMessageBody, unserialize)
670 {
671 char *us_str;
672 int us_len;
673
674 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &us_str, &us_len)) {
675 php_http_message_body_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
676 php_stream *s = php_stream_memory_open(0, us_str, us_len);
677
678 obj->body = php_http_message_body_init(NULL, s TSRMLS_CC);
679 }
680 }
681
682 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_toStream, 0, 0, 1)
683 ZEND_ARG_INFO(0, stream)
684 ZEND_ARG_INFO(0, offset)
685 ZEND_ARG_INFO(0, maxlen)
686 ZEND_END_ARG_INFO();
687 PHP_METHOD(HttpMessageBody, toStream)
688 {
689 zval *zstream;
690 long offset = 0, forlen = 0;
691
692 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|ll", &zstream, &offset, &forlen)) {
693 php_stream *stream;
694 php_http_message_body_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
695
696 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
697
698 php_stream_from_zval(stream, &zstream);
699 php_http_message_body_to_stream(obj->body, stream, offset, forlen);
700 RETURN_ZVAL(getThis(), 1, 0);
701 }
702 }
703
704 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_toCallback, 0, 0, 1)
705 ZEND_ARG_INFO(0, callback)
706 ZEND_ARG_INFO(0, offset)
707 ZEND_ARG_INFO(0, maxlen)
708 ZEND_END_ARG_INFO();
709 PHP_METHOD(HttpMessageBody, toCallback)
710 {
711 php_http_pass_fcall_arg_t fcd;
712 long offset = 0, forlen = 0;
713
714 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f|ll", &fcd.fci, &fcd.fcc, &offset, &forlen)) {
715 php_http_message_body_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
716
717 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
718
719 fcd.fcz = getThis();
720 Z_ADDREF_P(fcd.fcz);
721 TSRMLS_SET_CTX(fcd.ts);
722
723 php_http_message_body_to_callback(obj->body, php_http_pass_fcall_callback, &fcd, offset, forlen);
724 zend_fcall_info_args_clear(&fcd.fci, 1);
725
726 zval_ptr_dtor(&fcd.fcz);
727 RETURN_ZVAL(getThis(), 1, 0);
728 }
729 }
730
731 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_getResource, 0, 0, 0)
732 ZEND_END_ARG_INFO();
733 PHP_METHOD(HttpMessageBody, getResource)
734 {
735 if (SUCCESS == zend_parse_parameters_none()) {
736 php_http_message_body_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
737
738 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
739
740 zend_list_addref(obj->body->stream_id);
741 RETVAL_RESOURCE(obj->body->stream_id);
742 }
743 }
744
745 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_getBoundary, 0, 0, 0)
746 ZEND_END_ARG_INFO();
747 PHP_METHOD(HttpMessageBody, getBoundary)
748 {
749 if (SUCCESS == zend_parse_parameters_none()) {
750 php_http_message_body_object_t * obj = zend_object_store_get_object(getThis() TSRMLS_CC);
751
752 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
753
754 if (obj->body->boundary) {
755 RETURN_STRING(obj->body->boundary, 1);
756 }
757 }
758 }
759
760 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_append, 0, 0, 1)
761 ZEND_ARG_INFO(0, string)
762 ZEND_END_ARG_INFO();
763 PHP_METHOD(HttpMessageBody, append)
764 {
765 char *str;
766 int len;
767 php_http_message_body_object_t *obj;
768
769 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &len), invalid_arg, return);
770
771 obj = zend_object_store_get_object(getThis() TSRMLS_CC);
772
773 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
774
775 php_http_expect(len == php_http_message_body_append(obj->body, str, len), runtime, return);
776
777 RETURN_ZVAL(getThis(), 1, 0);
778 }
779
780 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_addForm, 0, 0, 0)
781 ZEND_ARG_ARRAY_INFO(0, fields, 1)
782 ZEND_ARG_ARRAY_INFO(0, files, 1)
783 ZEND_END_ARG_INFO();
784 PHP_METHOD(HttpMessageBody, addForm)
785 {
786 HashTable *fields = NULL, *files = NULL;
787 php_http_message_body_object_t *obj;
788
789 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|h!h!", &fields, &files), invalid_arg, return);
790
791 obj = zend_object_store_get_object(getThis() TSRMLS_CC);
792
793 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
794
795 php_http_expect(SUCCESS == php_http_message_body_add_form(obj->body, fields, files), runtime, return);
796
797 RETURN_ZVAL(getThis(), 1, 0);
798 }
799
800 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_addPart, 0, 0, 1)
801 ZEND_ARG_OBJ_INFO(0, message, http\\Message, 0)
802 ZEND_END_ARG_INFO();
803 PHP_METHOD(HttpMessageBody, addPart)
804 {
805 zval *zobj;
806 php_http_message_body_object_t *obj;
807 php_http_message_object_t *mobj;
808 zend_error_handling zeh;
809
810 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O", &zobj, php_http_message_class_entry), invalid_arg, return);
811
812 obj = zend_object_store_get_object(getThis() TSRMLS_CC);
813 mobj = zend_object_store_get_object(zobj TSRMLS_CC);
814
815 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
816
817 zend_replace_error_handling(EH_THROW, php_http_exception_runtime_class_entry, &zeh TSRMLS_CC);
818 php_http_message_body_add_part(obj->body, mobj->message);
819 zend_restore_error_handling(&zeh TSRMLS_CC);
820
821 if (!EG(exception)) {
822 RETURN_ZVAL(getThis(), 1, 0);
823 }
824 }
825
826 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_etag, 0, 0, 0)
827 ZEND_END_ARG_INFO();
828 PHP_METHOD(HttpMessageBody, etag)
829 {
830 if (SUCCESS == zend_parse_parameters_none()) {
831 php_http_message_body_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
832 char *etag;
833
834 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
835
836 if ((etag = php_http_message_body_etag(obj->body))) {
837 RETURN_STRING(etag, 0);
838 } else {
839 RETURN_FALSE;
840 }
841 }
842 }
843
844 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_stat, 0, 0, 0)
845 ZEND_ARG_INFO(0, field)
846 ZEND_END_ARG_INFO();
847 PHP_METHOD(HttpMessageBody, stat)
848 {
849 char *field_str = NULL;
850 int field_len = 0;
851
852 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &field_str, &field_len)) {
853 php_http_message_body_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
854 const php_stream_statbuf *sb;
855
856 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
857
858 if ((sb = php_http_message_body_stat(obj->body))) {
859 if (field_str && field_len) {
860 switch (*field_str) {
861 case 's':
862 case 'S':
863 RETURN_LONG(sb->sb.st_size);
864 break;
865 case 'a':
866 case 'A':
867 RETURN_LONG(sb->sb.st_atime);
868 break;
869 case 'm':
870 case 'M':
871 RETURN_LONG(sb->sb.st_mtime);
872 break;
873 case 'c':
874 case 'C':
875 RETURN_LONG(sb->sb.st_ctime);
876 break;
877 default:
878 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown stat field: '%s' (should be one of [s]ize, [a]time, [m]time or [c]time)", field_str);
879 break;
880 }
881 } else {
882 object_init(return_value);
883 add_property_long_ex(return_value, ZEND_STRS("size"), sb->sb.st_size TSRMLS_CC);
884 add_property_long_ex(return_value, ZEND_STRS("atime"), sb->sb.st_atime TSRMLS_CC);
885 add_property_long_ex(return_value, ZEND_STRS("mtime"), sb->sb.st_mtime TSRMLS_CC);
886 add_property_long_ex(return_value, ZEND_STRS("ctime"), sb->sb.st_ctime TSRMLS_CC);
887 }
888 }
889 }
890 }
891
892 static zend_function_entry php_http_message_body_methods[] = {
893 PHP_ME(HttpMessageBody, __construct, ai_HttpMessageBody___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
894 PHP_ME(HttpMessageBody, __toString, ai_HttpMessageBody___toString, ZEND_ACC_PUBLIC)
895 PHP_MALIAS(HttpMessageBody, toString, __toString, ai_HttpMessageBody___toString, ZEND_ACC_PUBLIC)
896 PHP_MALIAS(HttpMessageBody, serialize, __toString, ai_HttpMessageBody___toString, ZEND_ACC_PUBLIC)
897 PHP_ME(HttpMessageBody, unserialize, ai_HttpMessageBody_unserialize, ZEND_ACC_PUBLIC)
898 PHP_ME(HttpMessageBody, toStream, ai_HttpMessageBody_toStream, ZEND_ACC_PUBLIC)
899 PHP_ME(HttpMessageBody, toCallback, ai_HttpMessageBody_toCallback, ZEND_ACC_PUBLIC)
900 PHP_ME(HttpMessageBody, getResource, ai_HttpMessageBody_getResource, ZEND_ACC_PUBLIC)
901 PHP_ME(HttpMessageBody, getBoundary, ai_HttpMessageBody_getBoundary, ZEND_ACC_PUBLIC)
902 PHP_ME(HttpMessageBody, append, ai_HttpMessageBody_append, ZEND_ACC_PUBLIC)
903 PHP_ME(HttpMessageBody, addForm, ai_HttpMessageBody_addForm, ZEND_ACC_PUBLIC)
904 PHP_ME(HttpMessageBody, addPart, ai_HttpMessageBody_addPart, ZEND_ACC_PUBLIC)
905 PHP_ME(HttpMessageBody, etag, ai_HttpMessageBody_etag, ZEND_ACC_PUBLIC)
906 PHP_ME(HttpMessageBody, stat, ai_HttpMessageBody_stat, ZEND_ACC_PUBLIC)
907 EMPTY_FUNCTION_ENTRY
908 };
909
910 zend_class_entry *php_http_message_body_class_entry;
911
912 PHP_MINIT_FUNCTION(http_message_body)
913 {
914 zend_class_entry ce = {0};
915
916 INIT_NS_CLASS_ENTRY(ce, "http\\Message", "Body", php_http_message_body_methods);
917 php_http_message_body_class_entry = zend_register_internal_class(&ce TSRMLS_CC);
918 php_http_message_body_class_entry->create_object = php_http_message_body_object_new;
919 memcpy(&php_http_message_body_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
920 php_http_message_body_object_handlers.clone_obj = php_http_message_body_object_clone;
921 zend_class_implements(php_http_message_body_class_entry TSRMLS_CC, 1, zend_ce_serializable);
922
923 return SUCCESS;
924 }
925
926 /*
927 * Local variables:
928 * tab-width: 4
929 * c-basic-offset: 4
930 * End:
931 * vim600: noet sw=4 ts=4 fdm=marker
932 * vim<600: noet sw=4 ts=4
933 */