forked from oceanbase/oceanbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathob_parser.h
More file actions
213 lines (197 loc) · 7.25 KB
/
Copy pathob_parser.h
File metadata and controls
213 lines (197 loc) · 7.25 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
/**
* Copyright (c) 2021 OceanBase
* OceanBase CE is licensed under Mulan PubL v2.
* You can use this software according to the terms and conditions of the Mulan PubL v2.
* You may obtain a copy of Mulan PubL v2 at:
* http://license.coscl.org.cn/MulanPubL-2.0
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PubL v2 for more details.
*/
#ifndef _OB_PARSER_H
#define _OB_PARSER_H 1
#include "sql/parser/parse_node.h"
#include "sql/parser/parse_define.h"
#include "lib/allocator/ob_allocator.h"
#include "lib/container/ob_iarray.h"
#include "lib/string/ob_string.h"
#include "lib/charset/ob_charset.h"
#include "sql/parser/ob_parser_utils.h"
#include "sql/udr/ob_udr_struct.h"
namespace oceanbase
{
namespace sql
{
class ObSQLSessionInfo;
class ObMPParseStat
{
public:
ObMPParseStat() : parse_fail_(false), fail_ret_(common::OB_SUCCESS), fail_query_idx_(-1) {}
void reset()
{
parse_fail_ = false;
fail_ret_ = common::OB_SUCCESS;
fail_query_idx_ = -1;
}
bool parse_fail_;
int fail_ret_;
int64_t fail_query_idx_;
};
struct PreParseResult
{
common::ObString trace_id_;
};
class ObParser
{
public:
explicit ObParser(common::ObIAllocator &allocator, ObSQLMode mode,
ObCharsets4Parser charsets4parser = ObCharsets4Parser(),
QuestionMarkDefNameCtx *ctx = nullptr);
virtual ~ObParser();
/// @param queries Note that all three members of ObString is valid, size() is the length
/// of the single statement, length() is the length of remainer statements
bool is_single_stmt(const common::ObString &stmt);
int split_start_with_pl(const common::ObString &stmt,
common::ObIArray<common::ObString> &queries,
ObMPParseStat &parse_fail);
int split_multiple_stmt(const common::ObString &stmt,
common::ObIArray<common::ObString> &queries,
ObMPParseStat &parse_fail,
bool is_ret_first_stmt=false,
bool is_prepare = false);
void get_single_sql(const common::ObString &stmt, int64_t offset, int64_t remain, int64_t &str_len);
int check_is_insert(common::ObIArray<common::ObString> &queries, bool &is_ins);
int reconstruct_insert_sql(const common::ObString &stmt,
common::ObIArray<common::ObString> &queries,
common::ObIArray<common::ObString> &ins_queries,
bool &can_batch_exec);
//@param:
// no_throw_parser_error is used to mark not throw parser error. in the split multi stmt
// situation we will try find ';' delimiter to parser part of string in case of save memory,
// but this maybe parser error and throw error info. However, we will still try parser remain
// string when parse part of string failed, if we throw parse part error info, maybe will let
// someone misunderstand have bug, So, we introduce this mark to decide to throw parser error.
// eg: select '123;' from dual; select '123' from dual;
int parse_sql(const common::ObString &stmt,
ParseResult &parse_result,
const bool no_throw_parser_error);
virtual int parse(const common::ObString &stmt,
ParseResult &parse_result,
ParseMode mode=STD_MODE,
const bool is_batched_multi_stmt_split_on = false,
const bool no_throw_parser_error = false,
const bool is_pl_inner_parse = false,
const bool is_dbms_sql = false);
virtual void free_result(ParseResult &parse_result);
/**
* @brief 供prepare使用的parse接口
* @param [in] query - 待parse语句
* @param [in] ns - 外部名称空间
* @param [out] parse_result - parse结果
* @retval OB_SUCCESS execute success
* @retval OB_SOME_ERROR special errno need to handle
*
* 和通用prepare相比,传入了外部名称空间,并简化了此路径不会走到的冗余流程。
* 其主要思想是在parser的过程中,每当遇到一个sql中的变量,就尝试去pl名字空间
* 查找,如果找得到,把这个变量之前的sql语句拷贝出来,并把此变量改写为question mark,
* 同时记录下这个变量。
* 同时,把遇到的所有对象(表、视图、函数)也都记录下来。
*
*/
int prepare_parse(const common::ObString &query, void *ns, ParseResult &parse_result);
static int pre_parse(const common::ObString &stmt,
PreParseResult &res);
enum State {
S_START = 0,
S_COMMENT,
S_C_COMMENT,
S_NORMAL,
S_INVALID,
S_CREATE,
S_DO,
S_DD,
S_DECLARE,
S_BEGIN,
S_DROP,
S_CALL,
S_ALTER,
S_UPDATE,
S_FUNCTION,
S_PROCEDURE,
S_PACKAGE,
S_TRIGGER,
S_TYPE,
S_OR,
S_REPLACE,
S_DEFINER,
S_OF,
S_EDITIONABLE,
S_SIGNAL,
S_RESIGNAL,
S_FORCE,
S_EXPLAIN,
S_EXPLAIN_FORMAT,
S_EXPLAIN_BASIC,
S_EXPLAIN_EXTENDED,
S_EXPLAIN_EXTENDED_NOADDR,
S_EXPLAIN_PARTITIONS,
S_SELECT,
S_INSERT,
S_DELETE,
S_VALUES,
S_TABLE,
S_INTO,
// add new states above me
S_MAX
};
static State transform_normal(common::ObString &normal);
static State transform_normal(
State state, common::ObString &normal, bool &is_pl, bool &is_not_pl,
bool *is_create_func, bool *is_call_procedure);
static bool is_pl_stmt(const common::ObString &stmt,
bool *is_create_func = NULL,
bool *is_call_procedure = NULL);
static bool is_explain_stmt(const common::ObString &stmt,
const char *&p_normal_start);
static bool is_comment(const char *&p,
const char *&p_end,
State &save_state,
State &state,
State error_state);
private:
static int scan_trace_id(const char *ptr,
int64_t len,
int32_t &pos,
common::ObString &trace_id);
static bool is_trace_id_end(char ch);
static bool is_space(char ch);
static int32_t get_well_formed_errlen(const struct ObCharsetInfo *charset_info,
const char *err_begin,
int32_t err_len);
static void match_state(const char*&p,
bool &is_explain,
bool &has_error,
const char *lower[S_MAX],
const char *upper[S_MAX],
int &i,
State &save_state,
State &state,
State next_state);
// types and constants
private:
// disallow copy
DISALLOW_COPY_AND_ASSIGN(ObParser);
// function members
private:
// data members
common::ObIAllocator *allocator_;
// when sql_mode = "ANSI_QUOTES", Treat " as an identifier quote character
// we don't use it in parser now
ObSQLMode sql_mode_;
ObCharsets4Parser charsets4parser_;
QuestionMarkDefNameCtx *def_name_ctx_;
};
} // end namespace sql
} // end namespace oceanbase
#endif /* _OB_PARSER_H */