mysqlnd_reverse_api.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2006-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Andrey Hristov <andrey@php.net> |
  16. | Johannes Schlüter <johannes@php.net> |
  17. | Ulf Wendel <uw@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. #include "php.h"
  21. #include "mysqlnd.h"
  22. #include "mysqlnd_priv.h"
  23. #include "mysqlnd_debug.h"
  24. #include "mysqlnd_reverse_api.h"
  25. static HashTable mysqlnd_api_ext_ht;
  26. /* {{{ mysqlnd_reverse_api_init */
  27. PHPAPI void
  28. mysqlnd_reverse_api_init(void)
  29. {
  30. zend_hash_init(&mysqlnd_api_ext_ht, 3, NULL, NULL, 1);
  31. }
  32. /* }}} */
  33. /* {{{ mysqlnd_reverse_api_end */
  34. PHPAPI void
  35. mysqlnd_reverse_api_end(void)
  36. {
  37. zend_hash_destroy(&mysqlnd_api_ext_ht);
  38. }
  39. /* }}} */
  40. /* {{{ myslqnd_get_api_extensions */
  41. PHPAPI HashTable *
  42. mysqlnd_reverse_api_get_api_list(void)
  43. {
  44. return &mysqlnd_api_ext_ht;
  45. }
  46. /* }}} */
  47. /* {{{ mysqlnd_reverse_api_register_api */
  48. PHPAPI void
  49. mysqlnd_reverse_api_register_api(const MYSQLND_REVERSE_API * apiext)
  50. {
  51. zend_hash_str_add_ptr(&mysqlnd_api_ext_ht, apiext->module->name, strlen(apiext->module->name), (void*)apiext);
  52. }
  53. /* }}} */
  54. /* {{{ zval_to_mysqlnd */
  55. PHPAPI MYSQLND *
  56. zval_to_mysqlnd(zval * zv, const unsigned int client_api_capabilities, unsigned int * save_client_api_capabilities)
  57. {
  58. MYSQLND * retval;
  59. #ifdef OLD_CODE
  60. MYSQLND_REVERSE_API * elem;
  61. ZEND_HASH_FOREACH_PTR(&mysqlnd_api_ext_ht, elem) {
  62. if (elem->conversion_cb) {
  63. retval = elem->conversion_cb(zv);
  64. if (retval) {
  65. if (retval->data) {
  66. *save_client_api_capabilities = retval->data->m->negotiate_client_api_capabilities(retval->data, client_api_capabilities);
  67. }
  68. return retval;
  69. }
  70. }
  71. } ZEND_HASH_FOREACH_END();
  72. #else
  73. MYSQLND_REVERSE_API * api;
  74. ZEND_HASH_FOREACH_PTR(&mysqlnd_api_ext_ht, api) {
  75. if (api && api->conversion_cb) {
  76. retval = api->conversion_cb(zv);
  77. if (retval) {
  78. if (retval->data) {
  79. *save_client_api_capabilities = retval->data->m->negotiate_client_api_capabilities(retval->data, client_api_capabilities);
  80. }
  81. return retval;
  82. }
  83. }
  84. } ZEND_HASH_FOREACH_END();
  85. #endif
  86. return NULL;
  87. }
  88. /* }}} */
  89. /*
  90. * Local variables:
  91. * tab-width: 4
  92. * c-basic-offset: 4
  93. * End:
  94. * vim600: noet sw=4 ts=4 fdm=marker
  95. * vim<600: noet sw=4 ts=4
  96. */