PageRenderTime 444ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/php-pecl-http-2.0.0/pecl_http-2.0.0alpha1/php_http_url.h

#
C++ Header | 175 lines | 134 code | 21 blank | 20 comment | 32 complexity | cd97eb01618446d92ae0add4275109cb MD5 | raw file
Possible License(s): BSD-2-Clause
  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-2011, Michael Wallner <mike@php.net> |
  10. +--------------------------------------------------------------------+
  11. */
  12. #ifndef PHP_HTTP_URL_H
  13. #define PHP_HTTP_URL_H
  14. #include <ext/standard/url.h>
  15. #define PHP_HTTP_URL_REPLACE 0x000
  16. #define PHP_HTTP_URL_JOIN_PATH 0x001
  17. #define PHP_HTTP_URL_JOIN_QUERY 0x002
  18. #define PHP_HTTP_URL_STRIP_USER 0x004
  19. #define PHP_HTTP_URL_STRIP_PASS 0x008
  20. #define PHP_HTTP_URL_STRIP_AUTH (PHP_HTTP_URL_STRIP_USER|PHP_HTTP_URL_STRIP_PASS)
  21. #define PHP_HTTP_URL_STRIP_PORT 0x020
  22. #define PHP_HTTP_URL_STRIP_PATH 0x040
  23. #define PHP_HTTP_URL_STRIP_QUERY 0x080
  24. #define PHP_HTTP_URL_STRIP_FRAGMENT 0x100
  25. #define PHP_HTTP_URL_STRIP_ALL ( \
  26. PHP_HTTP_URL_STRIP_AUTH | \
  27. PHP_HTTP_URL_STRIP_PORT | \
  28. PHP_HTTP_URL_STRIP_PATH | \
  29. PHP_HTTP_URL_STRIP_QUERY | \
  30. PHP_HTTP_URL_STRIP_FRAGMENT \
  31. )
  32. #define PHP_HTTP_URL_FROM_ENV 0x1000
  33. PHP_HTTP_API void php_http_url(int flags, const php_url *old_url, const php_url *new_url, php_url **url_ptr, char **url_str, size_t *url_len TSRMLS_DC);
  34. PHP_HTTP_API STATUS php_http_url_encode_hash(HashTable *hash, const char *pre_encoded_str, size_t pre_encoded_len, char **encoded_str, size_t *encoded_len TSRMLS_DC);
  35. PHP_HTTP_API STATUS php_http_url_encode_hash_ex(HashTable *ht, php_http_buffer_t *str, const char *arg_sep_str, size_t arg_sep_len, const char *val_sep_str, size_t val_sep_len, const char *prefix_str, size_t prefix_len TSRMLS_DC);
  36. static inline void php_http_url_argsep(const char **str, size_t *len TSRMLS_DC)
  37. {
  38. if (SUCCESS != php_http_ini_entry(ZEND_STRL("arg_separator.output"), str, len, 0 TSRMLS_CC) || !*len) {
  39. *str = PHP_HTTP_URL_ARGSEP;
  40. *len = lenof(PHP_HTTP_URL_ARGSEP);
  41. }
  42. }
  43. static inline php_url *php_http_url_from_struct(php_url *url, HashTable *ht TSRMLS_DC)
  44. {
  45. zval **e;
  46. if (!url) {
  47. url = emalloc(sizeof(*url));
  48. }
  49. memset(url, 0, sizeof(*url));
  50. if (SUCCESS == zend_hash_find(ht, "scheme", sizeof("scheme"), (void *) &e)) {
  51. zval *cpy = php_http_ztyp(IS_STRING, *e);
  52. url->scheme = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
  53. zval_ptr_dtor(&cpy);
  54. }
  55. if (SUCCESS == zend_hash_find(ht, "user", sizeof("user"), (void *) &e)) {
  56. zval *cpy = php_http_ztyp(IS_STRING, *e);
  57. url->user = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
  58. zval_ptr_dtor(&cpy);
  59. }
  60. if (SUCCESS == zend_hash_find(ht, "pass", sizeof("pass"), (void *) &e)) {
  61. zval *cpy = php_http_ztyp(IS_STRING, *e);
  62. url->pass = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
  63. zval_ptr_dtor(&cpy);
  64. }
  65. if (SUCCESS == zend_hash_find(ht, "host", sizeof("host"), (void *) &e)) {
  66. zval *cpy = php_http_ztyp(IS_STRING, *e);
  67. url->host = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
  68. zval_ptr_dtor(&cpy);
  69. }
  70. if (SUCCESS == zend_hash_find(ht, "path", sizeof("path"), (void *) &e)) {
  71. zval *cpy = php_http_ztyp(IS_STRING, *e);
  72. url->path = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
  73. zval_ptr_dtor(&cpy);
  74. }
  75. if (SUCCESS == zend_hash_find(ht, "query", sizeof("query"), (void *) &e)) {
  76. zval *cpy = php_http_ztyp(IS_STRING, *e);
  77. url->query = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
  78. zval_ptr_dtor(&cpy);
  79. }
  80. if (SUCCESS == zend_hash_find(ht, "fragment", sizeof("fragment"), (void *) &e)) {
  81. zval *cpy = php_http_ztyp(IS_STRING, *e);
  82. url->fragment = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
  83. zval_ptr_dtor(&cpy);
  84. }
  85. if (SUCCESS == zend_hash_find(ht, "port", sizeof("port"), (void *) &e)) {
  86. zval *cpy = php_http_ztyp(IS_LONG, *e);
  87. url->port = (unsigned short) Z_LVAL_P(cpy);
  88. zval_ptr_dtor(&cpy);
  89. }
  90. return url;
  91. }
  92. static inline HashTable *php_http_url_to_struct(php_url *url, zval *strct TSRMLS_DC)
  93. {
  94. zval arr;
  95. if (strct) {
  96. switch (Z_TYPE_P(strct)) {
  97. default:
  98. zval_dtor(strct);
  99. array_init(strct);
  100. /* no break */
  101. case IS_ARRAY:
  102. case IS_OBJECT:
  103. INIT_PZVAL_ARRAY((&arr), HASH_OF(strct));
  104. break;
  105. }
  106. } else {
  107. INIT_PZVAL(&arr);
  108. array_init(&arr);
  109. }
  110. if (url) {
  111. if (url->scheme) {
  112. add_assoc_string(&arr, "scheme", url->scheme, 1);
  113. }
  114. if (url->user) {
  115. add_assoc_string(&arr, "user", url->user, 1);
  116. }
  117. if (url->pass) {
  118. add_assoc_string(&arr, "pass", url->pass, 1);
  119. }
  120. if (url->host) {
  121. add_assoc_string(&arr, "host", url->host, 1);
  122. }
  123. if (url->port) {
  124. add_assoc_long(&arr, "port", (long) url->port);
  125. }
  126. if (url->path) {
  127. add_assoc_string(&arr, "path", url->path, 1);
  128. }
  129. if (url->query) {
  130. add_assoc_string(&arr, "query", url->query, 1);
  131. }
  132. if (url->fragment) {
  133. add_assoc_string(&arr, "fragment", url->fragment, 1);
  134. }
  135. }
  136. return Z_ARRVAL(arr);
  137. }
  138. zend_class_entry *php_http_url_get_class_entry(void);
  139. #define php_http_url_object_new php_http_object_new
  140. #define php_http_url_object_new_ex php_http_object_new_ex
  141. PHP_METHOD(HttpUrl, __construct);
  142. PHP_METHOD(HttpUrl, mod);
  143. PHP_METHOD(HttpUrl, toString);
  144. PHP_METHOD(HttpUrl, toArray);
  145. PHP_MINIT_FUNCTION(http_url);
  146. #endif
  147. /*
  148. * Local variables:
  149. * tab-width: 4
  150. * c-basic-offset: 4
  151. * End:
  152. * vim600: noet sw=4 ts=4 fdm=marker
  153. * vim<600: noet sw=4 ts=4
  154. */