-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathphp_mysqlnd_azure.c
196 lines (165 loc) · 5.86 KB
/
php_mysqlnd_azure.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Qianqian Bu <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "mysqlnd_azure.h"
#include "php_mysqlnd_azure.h"
#include "utils.h"
#include "ext/mysqlnd/mysqlnd_ext_plugin.h"
#include "ext/standard/info.h"
ZEND_DECLARE_MODULE_GLOBALS(mysqlnd_azure)
/* {{{ OnUpdateEnableRedirect */
static ZEND_INI_MH(OnUpdateEnableRedirect)
{
if (STRING_EQUALS(new_value,"preferred")
|| STRING_EQUALS(new_value, "2")) {
MYSQLND_AZURE_G(enableRedirect) = REDIRECT_PREFERRED;
} else if (STRING_EQUALS(new_value, "on")
|| STRING_EQUALS(new_value, "yes")
|| STRING_EQUALS(new_value, "true")
|| STRING_EQUALS(new_value, "1")) {
MYSQLND_AZURE_G(enableRedirect) = REDIRECT_ON;
} else {
MYSQLND_AZURE_G(enableRedirect) = REDIRECT_OFF;
}
return SUCCESS;
}
static ZEND_INI_MH(OnUpdateEnableLogfile) {
MYSQLND_AZURE_G(logfilePath) = new_value;
return SUCCESS;
}
static ZEND_INI_MH(OnUpdateEnableLogLevel) {
if (STRING_EQUALS(new_value, "3")) {
MYSQLND_AZURE_G(logLevel) = 3;
} else if (STRING_EQUALS(new_value, "2")) {
MYSQLND_AZURE_G(logLevel) = 2;
} else if (STRING_EQUALS(new_value, "1")) {
MYSQLND_AZURE_G(logLevel) = 1;
} else {
MYSQLND_AZURE_G(logLevel) = 0;
}
return SUCCESS;
}
static ZEND_INI_MH(OnUpdateEnableLogOutput) {
int tval = atoi(ZSTR_VAL(new_value));
if (tval == ALOG_TYPE_FILE || tval == ALOG_TYPE_STDERR) {
MYSQLND_AZURE_G(logOutput) = tval;
} else {
MYSQLND_AZURE_G(logOutput) = 0;
}
return SUCCESS;
}
/* }}} */
/* {{{ PHP_INI */
PHP_INI_BEGIN()
STD_PHP_INI_ENTRY("mysqlnd_azure.enableRedirect", "preferred", PHP_INI_ALL, OnUpdateEnableRedirect, enableRedirect, zend_mysqlnd_azure_globals, mysqlnd_azure_globals)
STD_PHP_INI_ENTRY("mysqlnd_azure.logfilePath", "", PHP_INI_SYSTEM, OnUpdateEnableLogfile, logfilePath, zend_mysqlnd_azure_globals, mysqlnd_azure_globals)
STD_PHP_INI_ENTRY("mysqlnd_azure.logLevel", "0", PHP_INI_ALL, OnUpdateEnableLogLevel, logLevel, zend_mysqlnd_azure_globals, mysqlnd_azure_globals)
STD_PHP_INI_ENTRY("mysqlnd_azure.logOutput", "0", PHP_INI_SYSTEM, OnUpdateEnableLogOutput, logOutput, zend_mysqlnd_azure_globals, mysqlnd_azure_globals)
PHP_INI_END()
/* }}} */
/* {{{ PHP_GINIT_FUNCTION */
static PHP_GINIT_FUNCTION(mysqlnd_azure)
{
#if defined(COMPILE_DL_MYSQLND_AZURE) && defined(ZTS)
ZEND_TSRMLS_CACHE_UPDATE();
#endif
mysqlnd_azure_globals->enableRedirect = REDIRECT_PREFERRED;
mysqlnd_azure_globals->redirectCache = NULL;
mysqlnd_azure_globals->logLevel = 0;
mysqlnd_azure_globals->logOutput = 0;
mysqlnd_azure_globals->logfilePath = "";
}
/* }}} */
/* {{{ PHP_GSHUTDOWN_FUNCTION */
static PHP_GSHUTDOWN_FUNCTION(mysqlnd_azure)
{
if (mysqlnd_azure_globals->redirectCache) {
zend_hash_destroy(mysqlnd_azure_globals->redirectCache);
mnd_pefree(mysqlnd_azure_globals->redirectCache, 1);
mysqlnd_azure_globals->redirectCache = NULL;
}
}
/* }}} */
/* {{{ PHP_MINIT_FUNCTION
*/
static PHP_MINIT_FUNCTION(mysqlnd_azure)
{
/* globals, ini entries, resources, classes */
REGISTER_INI_ENTRIES();
/* register mysqlnd plugin */
mysqlnd_azure_minit_register_hooks();
mysqlnd_azure_apply_resources();
return SUCCESS;
}
/* {{{ PHP_MSHUTDOWN_FUNCTION
*/
static PHP_MSHUTDOWN_FUNCTION(mysqlnd_azure)
{
mysqlnd_azure_release_resources();
UNREGISTER_INI_ENTRIES();
return SUCCESS;
}
/* {{{ PHP_MINFO_FUNCTION
*/
PHP_MINFO_FUNCTION(mysqlnd_azure)
{
php_info_print_table_start();
php_info_print_table_header(2, "mysqlnd_azure", "enableRedirect");
php_info_print_table_row(2, "enableRedirect", MYSQLND_AZURE_G(enableRedirect) == REDIRECT_OFF ? "off" : (MYSQLND_AZURE_G(enableRedirect) == REDIRECT_ON ? "on" : "preferred"));
php_info_print_table_row(2, "logfilePath", ZSTR_VAL(MYSQLND_AZURE_G(logfilePath)));
char tmp[2];
snprintf(tmp, 2, "%d", MYSQLND_AZURE_G(logLevel));
php_info_print_table_row(2, "logLevel", tmp);
snprintf(tmp, 2, "%d", MYSQLND_AZURE_G(logOutput));
php_info_print_table_row(2, "logOutput", tmp);
php_info_print_table_end();
}
/* }}} */
static const zend_module_dep mysqlnd_azure_deps[] = {
ZEND_MOD_REQUIRED("mysqlnd")
ZEND_MOD_END
};
/* {{{ mysqlnd_azure_module_entry*/
zend_module_entry mysqlnd_azure_module_entry = {
STANDARD_MODULE_HEADER_EX,
NULL,
mysqlnd_azure_deps,
PHP_MYSQLND_AZURE_NAME,
NULL,
PHP_MINIT(mysqlnd_azure),
PHP_MSHUTDOWN(mysqlnd_azure),
NULL,
NULL,
PHP_MINFO(mysqlnd_azure),
PHP_MYSQLND_AZURE_VERSION,
PHP_MODULE_GLOBALS(mysqlnd_azure),
PHP_GINIT(mysqlnd_azure),
PHP_GSHUTDOWN(mysqlnd_azure),
NULL,
STANDARD_MODULE_PROPERTIES_EX
};
/* }}} */
#ifdef COMPILE_DL_MYSQLND_AZURE
#ifdef ZTS
ZEND_TSRMLS_CACHE_DEFINE()
#endif
ZEND_GET_MODULE(mysqlnd_azure)
#endif