mysqli_libmysql.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Copyright (c) The PHP Group |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | https://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Authors: Georg Richter <georg@php.net> |
  14. | Andrey Hristov <andrey@php.net> |
  15. | Ulf Wendel <uw@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef MYSQLI_LIBMYSQL_H
  19. #define MYSQLI_LIBMYSQL_H
  20. /* These are unused */
  21. #define MYSQLI_CLOSE_EXPLICIT 0
  22. #define MYSQLI_CLOSE_IMPLICIT 1
  23. #define MYSQLI_CLOSE_DISCONNECTED 2
  24. /* r->data should be always NULL, at least in recent libmysql versions, the status changes once data is read*/
  25. #define mysqli_result_is_unbuffered(r) ((r)->handle && (r)->handle->status == MYSQL_STATUS_USE_RESULT && (r)->data == NULL)
  26. #define mysqli_result_is_unbuffered_and_not_everything_is_fetched(r) mysqli_result_is_unbuffered(r)
  27. #define mysqli_server_status(c) (c)->server_status
  28. #define mysqli_stmt_get_id(s) ((s)->stmt_id)
  29. #define mysqli_stmt_warning_count(s) mysql_warning_count((s)->mysql)
  30. #define mysqli_stmt_server_status(s) (s)->mysql->server_status
  31. #define mysqli_stmt_get_connection(s) (s)->mysql
  32. #define mysqli_close(c, is_forced) mysql_close((c))
  33. #define mysqli_stmt_close(c, implicit) mysql_stmt_close((c))
  34. #define mysqli_free_result(r, is_forced) mysql_free_result((r))
  35. #define mysqli_change_user_silent(c, u, p, d, p_len) mysql_change_user((c), (u), (p), (d))
  36. #define TRANS_START_NO_OPT 0
  37. #define TRANS_START_WITH_CONSISTENT_SNAPSHOT 1
  38. #define TRANS_START_READ_WRITE 2
  39. #define TRANS_START_READ_ONLY 4
  40. #define TRANS_COR_NO_OPT 0
  41. #define TRANS_COR_AND_CHAIN 1
  42. #define TRANS_COR_AND_NO_CHAIN 2
  43. #define TRANS_COR_RELEASE 4
  44. #define TRANS_COR_NO_RELEASE 8
  45. /*
  46. These functions also reside in ext/mysqlnd/mysqlnd_portability.h but since it is only made
  47. available if one wants to build mysqli against mysqlnd and they are useful for libmysql as
  48. well, we check whether they're not defined [build with libmysql is desired] and define them.
  49. Bit values are sent in reverted order of bytes, compared to normal !!!
  50. */
  51. #ifndef uint1korr
  52. #define uint1korr(A) (*(((uint8_t*)(A))))
  53. #endif
  54. #ifndef bit_uint2korr
  55. #define bit_uint2korr(A) ((uint16_t) (((uint16_t) (((unsigned char*) (A))[1])) +\
  56. ((uint16_t) (((unsigned char*) (A))[0]) << 8)))
  57. #endif
  58. #ifndef bit_uint3korr
  59. #define bit_uint3korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[2])) +\
  60. (((uint32_t) (((unsigned char*) (A))[1])) << 8) +\
  61. (((uint32_t) (((unsigned char*) (A))[0])) << 16)))
  62. #endif
  63. #ifndef bit_uint4korr
  64. #define bit_uint4korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[3])) +\
  65. (((uint32_t) (((unsigned char*) (A))[2])) << 8) +\
  66. (((uint32_t) (((unsigned char*) (A))[1])) << 16) +\
  67. (((uint32_t) (((unsigned char*) (A))[0])) << 24)))
  68. #endif
  69. #ifndef bit_uint5korr
  70. #define bit_uint5korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[4])) +\
  71. (((uint32_t) (((unsigned char*) (A))[3])) << 8) +\
  72. (((uint32_t) (((unsigned char*) (A))[2])) << 16) +\
  73. (((uint32_t) (((unsigned char*) (A))[1])) << 24)) +\
  74. (((uint64_t) (((unsigned char*) (A))[0])) << 32))
  75. #endif
  76. #ifndef bit_uint6korr
  77. #define bit_uint6korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[5])) +\
  78. (((uint32_t) (((unsigned char*) (A))[4])) << 8) +\
  79. (((uint32_t) (((unsigned char*) (A))[3])) << 16) +\
  80. (((uint32_t) (((unsigned char*) (A))[2])) << 24)) +\
  81. (((uint64_t) (((uint32_t) (((unsigned char*) (A))[1])) +\
  82. (((uint32_t) (((unsigned char*) (A))[0]) << 8)))) <<\
  83. 32))
  84. #endif
  85. #ifndef bit_uint7korr
  86. #define bit_uint7korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[6])) +\
  87. (((uint32_t) (((unsigned char*) (A))[5])) << 8) +\
  88. (((uint32_t) (((unsigned char*) (A))[4])) << 16) +\
  89. (((uint32_t) (((unsigned char*) (A))[3])) << 24)) +\
  90. (((uint64_t) (((uint32_t) (((unsigned char*) (A))[2])) +\
  91. (((uint32_t) (((unsigned char*) (A))[1])) << 8) +\
  92. (((uint32_t) (((unsigned char*) (A))[0])) << 16))) <<\
  93. 32))
  94. #endif
  95. #ifndef bit_uint8korr
  96. #define bit_uint8korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[7])) +\
  97. (((uint32_t) (((unsigned char*) (A))[6])) << 8) +\
  98. (((uint32_t) (((unsigned char*) (A))[5])) << 16) +\
  99. (((uint32_t) (((unsigned char*) (A))[4])) << 24)) +\
  100. (((uint64_t) (((uint32_t) (((unsigned char*) (A))[3])) +\
  101. (((uint32_t) (((unsigned char*) (A))[2])) << 8) +\
  102. (((uint32_t) (((unsigned char*) (A))[1])) << 16) +\
  103. (((uint32_t) (((unsigned char*) (A))[0])) << 24))) <<\
  104. 32))
  105. #endif
  106. #endif /* MYSQLI_LIBMYSQL_H */