mysqlnd_connection.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. | Ulf Wendel <uw@php.net> |
  17. +----------------------------------------------------------------------+
  18. */
  19. #ifndef MYSQLND_CONNECTION_H
  20. #define MYSQLND_CONNECTION_H
  21. PHPAPI extern const char * const mysqlnd_out_of_sync;
  22. PHPAPI extern const char * const mysqlnd_server_gone;
  23. PHPAPI extern const char * const mysqlnd_out_of_memory;
  24. void mysqlnd_upsert_status_init(MYSQLND_UPSERT_STATUS * const upsert_status);
  25. #define UPSERT_STATUS_RESET(status) (status)->m->reset((status))
  26. #define UPSERT_STATUS_GET_SERVER_STATUS(status) (status)->server_status
  27. #define UPSERT_STATUS_SET_SERVER_STATUS(status, server_st) (status)->server_status = (server_st)
  28. #define UPSERT_STATUS_GET_WARNINGS(status) (status)->warning_count
  29. #define UPSERT_STATUS_SET_WARNINGS(status, warnings) (status)->warning_count = (warnings)
  30. #define UPSERT_STATUS_GET_AFFECTED_ROWS(status) (status)->affected_rows
  31. #define UPSERT_STATUS_SET_AFFECTED_ROWS(status, rows) (status)->affected_rows = (rows)
  32. #define UPSERT_STATUS_SET_AFFECTED_ROWS_TO_ERROR(status) (status)->m->set_affected_rows_to_error((status))
  33. #define UPSERT_STATUS_GET_LAST_INSERT_ID(status) (status)->last_insert_id
  34. #define UPSERT_STATUS_SET_LAST_INSERT_ID(status, id) (status)->last_insert_id = (id)
  35. /* Error handling */
  36. #define SET_NEW_MESSAGE(buf, buf_len, message, len) \
  37. {\
  38. if ((buf)) { \
  39. mnd_efree((buf)); \
  40. } \
  41. if ((message)) { \
  42. (buf) = mnd_pestrndup((message), (len), 0); \
  43. } else { \
  44. (buf) = NULL; \
  45. } \
  46. (buf_len) = (len); \
  47. }
  48. #define SET_EMPTY_MESSAGE(buf, buf_len) \
  49. {\
  50. if ((buf)) { \
  51. mnd_efree((buf)); \
  52. (buf) = NULL; \
  53. } \
  54. (buf_len) = 0; \
  55. }
  56. PHPAPI enum_func_status mysqlnd_error_info_init(MYSQLND_ERROR_INFO * const info, const zend_bool persistent);
  57. PHPAPI void mysqlnd_error_info_free_contents(MYSQLND_ERROR_INFO * const info);
  58. #define GET_CONNECTION_STATE(state_struct) (state_struct)->m->get((state_struct))
  59. #define SET_CONNECTION_STATE(state_struct, s) (state_struct)->m->set((state_struct), (s))
  60. PHPAPI void mysqlnd_connection_state_init(struct st_mysqlnd_connection_state * const state);
  61. #endif /* MYSQLND_CONNECTION_H */
  62. /*
  63. * Local variables:
  64. * tab-width: 4
  65. * c-basic-offset: 4
  66. * End:
  67. * vim600: noet sw=4 ts=4 fdm=marker
  68. * vim<600: noet sw=4 ts=4
  69. */