X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_misc.h;h=19ae6428de2665012c0fa295d5da681c72c51433;hp=7e5953031dffffc4e09db91a2c01eb79e03ebef0;hb=880540695ec6784e5570a15533467f7dff98d4f1;hpb=df06e2dbf48a3b0d96f2c62071c1b5fc907a98d0 diff --git a/php_http_misc.h b/php_http_misc.h index 7e59530..19ae642 100644 --- a/php_http_misc.h +++ b/php_http_misc.h @@ -6,12 +6,10 @@ | modification, are permitted provided that the conditions mentioned | | in the accompanying LICENSE file are met. | +--------------------------------------------------------------------+ - | Copyright (c) 2004-2010, Michael Wallner | + | Copyright (c) 2004-2011, Michael Wallner | +--------------------------------------------------------------------+ */ -/* $Id: php_http_api.h 298891 2010-05-03 08:26:38Z mike $ */ - #ifndef PHP_HTTP_MISC_H #define PHP_HTTP_MISC_H @@ -79,12 +77,12 @@ PHP_HTTP_API void php_http_sleep(double s); #define PHP_HTTP_MATCH_CASE 0x01 #define PHP_HTTP_MATCH_WORD 0x10 #define PHP_HTTP_MATCH_FULL 0x20 -#define PHP_HTTP_MATCH_STRICT (PHP_HTTP_ENV_MATCH_CASE|PHP_HTTP_ENV_MATCH_FULL) +#define PHP_HTTP_MATCH_STRICT (PHP_HTTP_MATCH_CASE|PHP_HTTP_MATCH_FULL) extern int php_http_match(const char *haystack, const char *needle, int flags); - extern char *php_http_pretty_key(char *key, size_t key_len, zend_bool uctitle, zend_bool xhyphen); extern size_t php_http_boundary(char *buf, size_t len TSRMLS_DC); +extern int php_http_select_str(const char *cmp, int argc, ...); static inline const char *php_http_locate_str(const char *h, size_t h_len, const char *n, size_t n_len) { @@ -141,7 +139,9 @@ static inline const char *php_http_locate_bin_eol(const char *bin, size_t len, i for (eol = bin; eol - bin < len; ++eol) { if (*eol == '\r' || *eol == '\n') { - *eol_len = eol ? ((eol[0] == '\r' && eol[1] == '\n') ? 2 : 1) : 0; + if (eol_len) { + *eol_len = eol ? ((eol[0] == '\r' && eol[1] == '\n') ? 2 : 1) : 0; + } return eol; } } @@ -158,7 +158,7 @@ static inline const char *php_http_locate_bin_eol(const char *bin, size_t len, i Z_ARRVAL_P(zv) = (ht); \ } -static inline zval *php_http_zsep(int type, zval *z) +static inline zval *php_http_ztyp(int type, zval *z) { SEPARATE_ARG_IF_REF(z); if (Z_TYPE_P(z) != type) { @@ -175,6 +175,26 @@ static inline zval *php_http_zsep(int type, zval *z) return z; } +static inline zval *php_http_zsep(zend_bool add_ref, int type, zval *z) { + if (add_ref) { + Z_ADDREF_P(z); + } + if (Z_TYPE_P(z) != type) { + switch (type) { + case IS_NULL: convert_to_null_ex(&z); break; + case IS_BOOL: convert_to_boolean_ex(&z); break; + case IS_LONG: convert_to_long_ex(&z); break; + case IS_DOUBLE: convert_to_double_ex(&z); break; + case IS_STRING: convert_to_string_ex(&z); break; + case IS_ARRAY: convert_to_array_ex(&z); break; + case IS_OBJECT: convert_to_object_ex(&z); break; + } + } else { + SEPARATE_ZVAL_IF_NOT_REF(&z); + } + return z; +} + /* return bool (v == SUCCESS) */ #define RETVAL_SUCCESS(v) RETVAL_BOOL(SUCCESS == (v)) @@ -252,6 +272,7 @@ static inline zval *php_http_zsep(int type, zval *z) #define PHP_HTTP_ARGS(class, method) args_for_ ##class## _ ##method #define PHP_HTTP_ARG_VAL(name, pass_ref) ZEND_ARG_INFO(pass_ref, name) #define PHP_HTTP_ARG_OBJ(class, name, allow_null) ZEND_ARG_OBJ_INFO(0, name, class, allow_null) +#define PHP_HTTP_ARG_ARR(name, allow_null, pass_ref) ZEND_ARG_ARRAY_INFO(pass_ref, name, allow_null) #define EMPTY_FUNCTION_ENTRY {NULL, NULL, NULL, 0, 0} @@ -332,6 +353,12 @@ static inline zval *php_http_zsep(int type, zval *z) ZEND_ARG_PASS_INFO(0) \ ZEND_ARG_PASS_INFO(1) \ ZEND_END_ARG_INFO(); \ +\ + ZEND_BEGIN_ARG_INFO(http_arg_pass_ref_3, 0) \ + ZEND_ARG_PASS_INFO(0) \ + ZEND_ARG_PASS_INFO(0) \ + ZEND_ARG_PASS_INFO(1) \ + ZEND_END_ARG_INFO(); \ \ ZEND_BEGIN_ARG_INFO(http_arg_pass_ref_4, 0) \ ZEND_ARG_PASS_INFO(0) \ @@ -391,6 +418,17 @@ typedef struct php_http_pass_callback_arg { PHP_HTTP_API size_t php_http_pass_wrapper(php_http_pass_callback_arg_t *cb_arg, const char *str, size_t len); +typedef struct php_http_pass_fcall_arg { + zval *fcz; + zend_fcall_info fci; + zend_fcall_info_cache fcc; +#ifdef ZTS + void ***ts; +#endif +} php_http_pass_fcall_arg_t; + +PHP_HTTP_API size_t php_http_pass_fcall_callback(void *cb_arg, const char *str, size_t len); + /* ERROR */ extern void php_http_error(long type TSRMLS_DC, long code, const char *format, ...); @@ -413,6 +451,7 @@ extern void php_http_error(long type TSRMLS_DC, long code, const char *format, . #define HE_ERROR E_ERROR TSRMLS_CC typedef enum php_http_error { + PHP_HTTP_E_UNKNOWN = 0, PHP_HTTP_E_RUNTIME, PHP_HTTP_E_INVALID_PARAM, PHP_HTTP_E_HEADER,