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