xref: /PHP-8.0/ext/mysqli/mysqli_libmysql.h (revision 5d6e923d)
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   | http://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 
19 #ifndef MYSQLI_LIBMYSQL_H
20 #define MYSQLI_LIBMYSQL_H
21 
22 /* These are unused */
23 #define MYSQLI_CLOSE_EXPLICIT 0
24 #define MYSQLI_CLOSE_IMPLICIT 1
25 #define MYSQLI_CLOSE_DISCONNECTED 2
26 #define MYSQLND_OPT_NUMERIC_AND_DATETIME_AS_UNICODE	200
27 #define MYSQLND_OPT_INT_AND_YEAR_AS_INT				201
28 
29 /* r->data should be always NULL, at least in recent libmysql versions, the status changes once data is read*/
30 #define mysqli_result_is_unbuffered(r)		((r)->handle && (r)->handle->status == MYSQL_STATUS_USE_RESULT && (r)->data == NULL)
31 #define mysqli_result_is_unbuffered_and_not_everything_is_fetched(r)  mysqli_result_is_unbuffered(r)
32 #define mysqli_server_status(c)				(c)->server_status
33 #define mysqli_stmt_get_id(s)				((s)->stmt_id)
34 #define mysqli_stmt_warning_count(s)		mysql_warning_count((s)->mysql)
35 #define mysqli_stmt_server_status(s)		(s)->mysql->server_status
36 #define mysqli_stmt_get_connection(s)		(s)->mysql
37 #define mysqli_close(c, is_forced)			mysql_close((c))
38 #define mysqli_stmt_close(c, implicit)		mysql_stmt_close((c))
39 #define mysqli_free_result(r, is_forced)	mysql_free_result((r))
40 #define mysqli_change_user_silent(c, u, p, d, p_len)   mysql_change_user((c), (u), (p), (d))
41 
42 
43 #define TRANS_START_NO_OPT						0
44 #define TRANS_START_WITH_CONSISTENT_SNAPSHOT	1
45 #define TRANS_START_READ_WRITE					2
46 #define TRANS_START_READ_ONLY					4
47 
48 #define TRANS_COR_NO_OPT		0
49 #define TRANS_COR_AND_CHAIN		1
50 #define TRANS_COR_AND_NO_CHAIN	2
51 #define TRANS_COR_RELEASE		4
52 #define TRANS_COR_NO_RELEASE	8
53 
54 
55 /*
56   These functions also reside in ext/mysqlnd/mysqlnd_portability.h but since it is only made
57   available if one wants to build mysqli against mysqlnd and they are useful for libmysql as
58   well, we check whether they're not defined [build with libmysql is desired] and define them.
59 
60   Bit values are sent in reverted order of bytes, compared to normal !!!
61 */
62 
63 
64 #ifndef uint1korr
65 #define uint1korr(A)	(*(((uint8_t*)(A))))
66 #endif
67 
68 #ifndef bit_uint2korr
69 #define bit_uint2korr(A) ((uint16_t) (((uint16_t) (((unsigned char*) (A))[1])) +\
70                                    ((uint16_t) (((unsigned char*) (A))[0]) << 8)))
71 #endif
72 
73 #ifndef bit_uint3korr
74 #define bit_uint3korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[2])) +\
75                                    (((uint32_t) (((unsigned char*) (A))[1])) << 8) +\
76                                    (((uint32_t) (((unsigned char*) (A))[0])) << 16)))
77 #endif
78 
79 #ifndef bit_uint4korr
80 #define bit_uint4korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[3])) +\
81                                    (((uint32_t) (((unsigned char*) (A))[2])) << 8) +\
82                                    (((uint32_t) (((unsigned char*) (A))[1])) << 16) +\
83                                    (((uint32_t) (((unsigned char*) (A))[0])) << 24)))
84 #endif
85 
86 #ifndef bit_uint5korr
87 #define bit_uint5korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[4])) +\
88                                     (((uint32_t) (((unsigned char*) (A))[3])) << 8) +\
89                                     (((uint32_t) (((unsigned char*) (A))[2])) << 16) +\
90                                    (((uint32_t) (((unsigned char*) (A))[1])) << 24)) +\
91                                     (((uint64_t) (((unsigned char*) (A))[0])) << 32))
92 #endif
93 
94 #ifndef bit_uint6korr
95 #define bit_uint6korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[5])) +\
96                                     (((uint32_t) (((unsigned char*) (A))[4])) << 8) +\
97                                     (((uint32_t) (((unsigned char*) (A))[3])) << 16) +\
98                                     (((uint32_t) (((unsigned char*) (A))[2])) << 24)) +\
99                         (((uint64_t) (((uint32_t) (((unsigned char*) (A))[1])) +\
100                                     (((uint32_t) (((unsigned char*) (A))[0]) << 8)))) <<\
101                                      32))
102 #endif
103 
104 #ifndef bit_uint7korr
105 #define bit_uint7korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[6])) +\
106                                     (((uint32_t) (((unsigned char*) (A))[5])) << 8) +\
107                                     (((uint32_t) (((unsigned char*) (A))[4])) << 16) +\
108                                    (((uint32_t) (((unsigned char*) (A))[3])) << 24)) +\
109                         (((uint64_t) (((uint32_t) (((unsigned char*) (A))[2])) +\
110                                     (((uint32_t) (((unsigned char*) (A))[1])) << 8) +\
111                                     (((uint32_t) (((unsigned char*) (A))[0])) << 16))) <<\
112                                      32))
113 #endif
114 
115 #ifndef bit_uint8korr
116 #define bit_uint8korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[7])) +\
117                                     (((uint32_t) (((unsigned char*) (A))[6])) << 8) +\
118                                     (((uint32_t) (((unsigned char*) (A))[5])) << 16) +\
119                                     (((uint32_t) (((unsigned char*) (A))[4])) << 24)) +\
120                         (((uint64_t) (((uint32_t) (((unsigned char*) (A))[3])) +\
121                                     (((uint32_t) (((unsigned char*) (A))[2])) << 8) +\
122                                     (((uint32_t) (((unsigned char*) (A))[1])) << 16) +\
123                                     (((uint32_t) (((unsigned char*) (A))[0])) << 24))) <<\
124                                     32))
125 #endif
126 
127 #endif /* MYSQLI_LIBMYSQL_H */
128