forked from oceanbase/seekdb
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsql_parser_base.c
More file actions
335 lines (322 loc) · 11.9 KB
/
Copy pathsql_parser_base.c
File metadata and controls
335 lines (322 loc) · 11.9 KB
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/*
* Copyright (c) 2025 OceanBase.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "sql_parser_base.h"
#include "ob_parser_charset_utils.h"
#define YY_EXTRA_TYPE void *
#define yyconst const
typedef void* yyscan_t;
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#define IS_ORACLE_MODE(mode) (0 != (mode & SMO_ORACLE))
#define IS_ORACLE_COMPATIBLE (IS_ORACLE_MODE(p->sql_mode_))
extern int obsql_mysql_yylex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_yy_globals );
extern int obsql_mysql_yyparse(ParseResult *result);
extern int obsql_mysql_multi_fast_parse(ParseResult *p);
extern int obsql_mysql_multi_values_parse(ParseResult *p);
extern int obsql_mysql_fast_parse(ParseResult *p);
extern int obsql_mysql_yylex_destroy (yyscan_t yyscanner );
extern YY_BUFFER_STATE obsql_mysql_yy_scan_bytes (yyconst char *bytes,int len ,yyscan_t yyscanner );
extern void obsql_mysql_yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
extern void obsql_mysql_yy_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
int parse_init(ParseResult *p)
{
int ret = 0; // can not include C++ file "ob_define.h"
static __thread char error_msg[MAX_ERROR_MSG] = {'\0'};
p->error_msg_ = error_msg;
if (OB_UNLIKELY(NULL == p || NULL == p->malloc_pool_)) {
ret = OB_PARSER_ERR_UNEXPECTED;
if (NULL != p) {
(void)snprintf(p->error_msg_, MAX_ERROR_MSG, "malloc_pool_ must be set");
}
}
if (OB_LIKELY( 0 == ret)) {
ret = obsql_mysql_yylex_init_extra(p, &(p->yyscan_info_));
#define ENOMEM 12 /* Out of memory */
//refine parser error code to OB error code
if (0 == ret) {
ret = OB_PARSER_SUCCESS;
} else if (ENOMEM == ret) {
ret = OB_PARSER_ERR_NO_MEMORY;
} else {
ret = OB_PARSER_ERR_PARSE_SQL;
}
}
return ret;
}
int parse_terminate(ParseResult *p)
{
int ret = 0;
if (OB_LIKELY(NULL != p->yyscan_info_)) {
ret = obsql_mysql_yylex_destroy(p->yyscan_info_);
}
return ret;
}
int parse_sql(ParseResult *p, const char *buf, size_t input_len)
{
int ret = OB_PARSER_ERR_PARSE_SQL;
if (OB_UNLIKELY(NULL == p)) {
} else if (OB_UNLIKELY(NULL == buf || input_len <= 0 || input_len > INT32_MAX)) {
snprintf(p->error_msg_, MAX_ERROR_MSG, "Input SQL can not be empty");
ret = OB_PARSER_ERR_EMPTY_QUERY;
} else {
const int32_t len = (int32_t)input_len;
p->input_sql_ = buf;
p->input_sql_len_ = len;
p->start_col_ = 1;
p->end_col_ = 1;
p->line_ = 1;
p->yycolumn_ = 1;
p->yylineno_ = 1;
#ifdef SQL_PARSER_COMPILATION
p->realloc_cnt_ = p->realloc_cnt_ <= 0 ? 10 : p->realloc_cnt_;
p->comment_cap_ = p->realloc_cnt_;
p->comment_cnt_ = 0;
p->stop_add_comment_ = false;
#endif
if (false == p->pl_parse_info_.is_pl_parse_ && !p->is_for_udr_) {//If this interface is called by PLParse, do not reset}
p->question_mark_ctx_.count_ = 0;
}
// Remove spaces at the end of the SQL statement (outer layer has done)
// while (len > 0 && ISSPACE(buf[len - 1])) {
// --len;
// }
//if (OB_UNLIKELY(len <= 0)) {
// (void)snprintf(p->error_msg_, MAX_ERROR_MSG, "Input SQL can not be white space only");
// ret = OB_PARSER_ERR_EMPTY_QUERY;
// } else {
{
static __thread jmp_buf jmp_buf_;
p->jmp_buf_ = &jmp_buf_;
int val = setjmp(*(p->jmp_buf_));
if (val) {
if (p->extra_errno_ == OB_PARSER_ERR_NO_MEMORY) {
// for error other than NO_MEMORY, we return OB_PARSER_ERR_PARSE_SQL to avoid lost connection.
ret = OB_PARSER_ERR_NO_MEMORY;
} else {
ret = OB_PARSER_ERR_PARSE_SQL;
}
#ifdef SQL_PARSER_COMPILATION
} else if (OB_ISNULL(p->comment_list_ = (TokenPosInfo*)(parse_malloc(
p->realloc_cnt_ * sizeof(TokenPosInfo),
p->malloc_pool_)))) {
ret = OB_PARSER_ERR_NO_MEMORY;
#endif
} else {
YY_BUFFER_STATE bp = obsql_mysql_yy_scan_bytes(buf, len, p->yyscan_info_);
obsql_mysql_yy_switch_to_buffer(bp, p->yyscan_info_);
int tmp_ret = -1;
if (p->is_fp_) {
tmp_ret = obsql_mysql_fast_parse(p);
} else if (p->is_multi_query_) {
tmp_ret = obsql_mysql_multi_fast_parse(p);
} else if (p->is_multi_values_parser_) {
tmp_ret = obsql_mysql_multi_values_parse(p);
} else {
tmp_ret = obsql_mysql_yyparse(p);
}
if (0 == tmp_ret) {
ret = OB_PARSER_SUCCESS;
} else if (2 == tmp_ret) {
ret = OB_PARSER_ERR_NO_MEMORY;
} else {
if (0 != p->extra_errno_) {
ret = p->extra_errno_;
} else {
ret = OB_PARSER_ERR_PARSE_SQL;
}
}
obsql_mysql_yy_delete_buffer(bp, p->yyscan_info_);
}
}
}
return ret;
}
int parse_sql_stmt(ParseResult *parse_result)
{
int ret = -1;
if (0 != (ret = parse_init(parse_result))) {
// fix bug #16298144
// fprintf(stderr, "init parse result failed, ret=%d\n", ret);
} else if (0 != (ret = parse_sql(parse_result, parse_result->input_sql_, parse_result->input_sql_len_))) {
// fix bug #16298144
// fprintf(stderr, "parse sql failed, ret=%d, input_sql=%.*s\n", ret, parse_result->input_sql_len_, parse_result->input_sql_);
}
return ret;
}
void setup_token_pos_info(ParseNode *node, int off, int len)
{
#ifdef SQL_PARSER_COMPILATION
if (node != NULL) {
node->token_off_ = off;
node->token_len_ = len;
}
#else
// do nothing
#endif
}
int setup_token_pos_info_and_dup_string(ParseNode *node,
ParseResult *result,
int start,
int end)
{
int ret = OB_PARSER_SUCCESS;
#ifdef SQL_PARSER_COMPILATION
node->token_off_ = start - 1;
node->token_len_ = end - start + 1;
if (start > end) {
ret = OB_PARSER_ERR_UNEXPECTED;
} else if (OB_UNLIKELY((NULL == (node->str_value_ = copy_expr_string(result,
start,
end))))) {
ret = OB_PARSER_ERR_NO_MEMORY;
} else {
node->str_len_ = end - start + 1;
}
#else
// do nothing
#endif
return ret;
}
#ifdef SQL_PARSER_COMPILATION
int add_comment_list(ParseResult *p, const TokenPosInfo *info)
{
int ret = OB_PARSER_SUCCESS;
if (OB_ISNULL(p) || OB_ISNULL(info)) {
ret = OB_PARSER_ERR_UNEXPECTED;
}
if (OB_PARSER_SUCCESS == ret && p->comment_cnt_ + 1 >= p->comment_cap_) {
int alloc_cnt = p->comment_cnt_ + p->realloc_cnt_;
char *buf = parse_malloc(sizeof(TokenPosInfo) * alloc_cnt, p->malloc_pool_);
if (OB_ISNULL(buf)) {
ret = OB_PARSER_ERR_NO_MEMORY;
} else {
memset(buf, 0, sizeof(TokenPosInfo) * alloc_cnt);
memcpy(buf, (void*)(p->comment_list_), sizeof(TokenPosInfo) * p->comment_cnt_);
p->comment_list_ = (TokenPosInfo*)buf;
p->comment_cap_ += p->realloc_cnt_;
}
}
if (OB_PARSER_SUCCESS == ret) {
p->comment_list_[p->comment_cnt_].token_off_ = info->token_off_;
p->comment_list_[p->comment_cnt_].token_len_ = info->token_len_;
p->comment_cnt_ += 1;
}
return ret;
}
#endif
void REPUT_NEG_SIGN(ParseResult *p)
{
if (p->minus_ctx_.has_minus_) {
int start_pos = p->no_param_sql_len_;
int end_pos = p->minus_ctx_.pos_;
for (; start_pos > end_pos; start_pos--) {
p->no_param_sql_[start_pos] = p->no_param_sql_[start_pos - 1];
}
p->no_param_sql_[end_pos] = '-';
p->no_param_sql_[++p->no_param_sql_len_] = '\0';
p->minus_ctx_.pos_ = -1;
p->minus_ctx_.raw_sql_offset_ = -1;
p->minus_ctx_.has_minus_ = false;
}
}
int STORE_PARAM_NODE_NEED_PARAMETERIZE(ParamList *param,
struct _ParseNode *node, ParseResult *p, const int first_column)
{
if (p->minus_ctx_.has_minus_ && p->minus_ctx_.is_cur_numeric_) {
p->no_param_sql_[p->minus_ctx_.pos_] = '?';
p->no_param_sql_len_ = p->minus_ctx_.pos_ + 1;
} else {
REPUT_NEG_SIGN(p);
p->no_param_sql_[p->no_param_sql_len_++] = '?';
}
p->no_param_sql_[p->no_param_sql_len_] = '\0';
node->pos_ = p->no_param_sql_len_ - 1;
node->raw_sql_offset_ = (p->minus_ctx_.has_minus_
&& p->minus_ctx_.is_cur_numeric_) ?
p->minus_ctx_.raw_sql_offset_ : first_column - 1;
param->node_ = node;
param->next_ = NULL;
if (NULL == p->param_nodes_) {
p->param_nodes_ = param;
} else {
p->tail_param_node_->next_ = param;
}
p->tail_param_node_ = param;
p->param_node_num_++;
p->token_num_++;
p->minus_ctx_.has_minus_ = false;
p->minus_ctx_.pos_ = -1;
p->minus_ctx_.is_cur_numeric_ = false;
p->minus_ctx_.raw_sql_offset_ = -1;
return 0;
}
int add_alias_name(ParseNode *node, ParseResult *result, int end)
{
int ret = OB_PARSER_SUCCESS;
if (NULL == node || NULL == result || NULL == node->str_value_) {
ret = OB_PARSER_ERR_UNEXPECTED;
} else {
int need_len = strlen(" as ") + node->str_len_ + 2 * strlen("\"");
if (end > result->pl_parse_info_.last_pl_symbol_pos_) {
need_len += end - result->pl_parse_info_.last_pl_symbol_pos_;
}
for (int i = 0; i < node->str_len_; ++i) {
if ('\"' == node->str_value_[i] && !(i > 0 && '\\' == node->str_value_[i - 1])) {
need_len++;
}
}
if (result->no_param_sql_len_ + need_len >= result->no_param_sql_buf_len_) {
char *buf = parse_malloc(result->no_param_sql_buf_len_ * 2, result->malloc_pool_);
if (OB_UNLIKELY(NULL == buf)) {
ret = OB_PARSER_ERR_NO_MEMORY;
} else {
memmove(buf, result->no_param_sql_, result->no_param_sql_len_);
result->no_param_sql_ = buf;
result->no_param_sql_buf_len_ = result->no_param_sql_buf_len_ * 2;
}
}
if (OB_PARSER_SUCCESS == ret) {
if (end > result->pl_parse_info_.last_pl_symbol_pos_) {
memmove(result->no_param_sql_ + result->no_param_sql_len_, result->input_sql_ + result->pl_parse_info_.last_pl_symbol_pos_, end - result->pl_parse_info_.last_pl_symbol_pos_);
result->no_param_sql_len_ += end - result->pl_parse_info_.last_pl_symbol_pos_;
result->pl_parse_info_.last_pl_symbol_pos_ = end;
}
result->no_param_sql_len_ += sprintf(result->no_param_sql_ + result->no_param_sql_len_, "%.*s", (int)strlen(" as "), " as ");
result->no_param_sql_len_ += sprintf(result->no_param_sql_ + result->no_param_sql_len_, "%.*s", (int)strlen("\""), "\"");
int index1 = 0;
int index2 = 0;
char *trans_buf = parse_malloc((int)node->str_len_ * 2, result->malloc_pool_);
if (OB_UNLIKELY(NULL == trans_buf)) {
ret = OB_PARSER_ERR_NO_MEMORY;
} else {
bool is_ansi_quotes = false;
IS_ANSI_QUOTES(result->sql_mode_, is_ansi_quotes);
for (; index1 < node->str_len_; index1++) {
if (is_ansi_quotes && '\"' == node->str_value_[index1]) {
//do nothing, in mysql ansi quotes sql mode: " <==> `, just skip
} else if ('\"' == node->str_value_[index1] && !(index1 > 0 && '\\' == node->str_value_[index1 - 1])) {
trans_buf[index2++] = '\\';
trans_buf[index2++] = '\"';
} else {
trans_buf[index2++] = node->str_value_[index1];
}
}
result->no_param_sql_len_ += sprintf(result->no_param_sql_ + result->no_param_sql_len_, "%.*s", index2, trans_buf);
result->no_param_sql_len_ += sprintf(result->no_param_sql_ + result->no_param_sql_len_, "%.*s", (int)strlen("\""), "\"");
}
}
}
return ret;
}