-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Expand file tree
/
Copy pathParserSetQuery.cpp
More file actions
402 lines (317 loc) · 10.4 KB
/
ParserSetQuery.cpp
File metadata and controls
402 lines (317 loc) · 10.4 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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
#include <Parsers/ASTIdentifier_fwd.h>
#include <Parsers/ASTLiteral.h>
#include <Parsers/ASTSetQuery.h>
#include <Parsers/CommonParsers.h>
#include <Parsers/ParserSetQuery.h>
#include <Parsers/ExpressionElementParsers.h>
#include <Parsers/ExpressionListParsers.h>
#include <Parsers/ASTFunction.h>
#include <Parsers/FieldFromAST.h>
#include <Core/Names.h>
#include <Core/Settings.h>
#include <IO/ReadBufferFromString.h>
#include <IO/WriteBufferFromString.h>
#include <IO/ReadHelpers.h>
#include <IO/Operators.h>
#include <Common/FieldVisitorToString.h>
#include <Common/SettingsChanges.h>
#include <Common/typeid_cast.h>
namespace DB
{
namespace ErrorCodes
{
extern const int BAD_ARGUMENTS;
}
class ParameterFieldVisitorToString : public StaticVisitor<String>
{
public:
template <class T>
String operator() (const T & x) const
{
FieldVisitorToString visitor;
return visitor(x);
}
String operator() (const Array & x) const
{
WriteBufferFromOwnString wb;
wb << '[';
for (Array::const_iterator it = x.begin(); it != x.end(); ++it)
{
if (it != x.begin())
wb.write(", ", 2);
wb << applyVisitor(*this, *it);
}
wb << ']';
return wb.str();
}
String operator() (const Map & x) const
{
WriteBufferFromOwnString wb;
wb << '{';
auto it = x.begin();
while (it != x.end())
{
if (it != x.begin())
wb << ", ";
wb << applyVisitor(*this, *it);
++it;
if (it != x.end())
{
wb << ':';
wb << applyVisitor(*this, *it);
++it;
}
}
wb << '}';
return wb.str();
}
String operator() (const Tuple & x) const
{
WriteBufferFromOwnString wb;
wb << '(';
for (auto it = x.begin(); it != x.end(); ++it)
{
if (it != x.begin())
wb << ", ";
wb << applyVisitor(*this, *it);
}
wb << ')';
return wb.str();
}
};
class ParserLiteralOrMap : public IParserBase
{
public:
protected:
const char * getName() const override { return "literal or map"; }
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override
{
{
ParserLiteral literal;
if (literal.parse(pos, node, expected))
return true;
}
ParserToken l_br(TokenType::OpeningCurlyBrace);
ParserToken r_br(TokenType::ClosingCurlyBrace);
ParserToken comma(TokenType::Comma);
ParserToken colon(TokenType::Colon);
ParserStringLiteral literal;
if (!l_br.ignore(pos, expected))
return false;
Map map;
while (!r_br.ignore(pos, expected))
{
if (!map.empty() && !comma.ignore(pos, expected))
return false;
ASTPtr key;
ASTPtr val;
if (!literal.parse(pos, key, expected))
return false;
if (!colon.ignore(pos, expected))
return false;
if (!literal.parse(pos, val, expected))
return false;
Tuple tuple;
tuple.push_back(std::move(key->as<ASTLiteral>()->value));
tuple.push_back(std::move(val->as<ASTLiteral>()->value));
map.push_back(std::move(tuple));
}
node = make_intrusive<ASTLiteral>(std::move(map));
return true;
}
};
/// Parse Identifier, Literal, Array/Tuple/Map of literals
bool parseParameterValueIntoString(IParser::Pos & pos, String & value, Expected & expected)
{
ASTPtr node;
/// 1. Identifier
ParserCompoundIdentifier identifier_p;
if (identifier_p.parse(pos, node, expected))
{
tryGetIdentifierNameInto(node, value);
return true;
}
/// 2. Literal
ParserLiteral literal_p;
if (literal_p.parse(pos, node, expected))
{
value = applyVisitor(FieldVisitorToString(), node->as<ASTLiteral>()->value);
/// writeQuoted is not always quoted in line with SQL standard https://github.com/ClickHouse/ClickHouse/blob/master/src/IO/WriteHelpers.h
if (value.starts_with('\''))
{
ReadBufferFromOwnString buf(value);
readQuoted(value, buf);
}
return true;
}
/// 3. Map, Array, Tuple of literals and their combination
ParserAllCollectionsOfLiterals all_collections_p;
if (all_collections_p.parse(pos, node, expected))
{
value = applyVisitor(ParameterFieldVisitorToString(), node->as<ASTLiteral>()->value);
return true;
}
return false;
}
/// Parse `name = value`.
bool ParserSetQuery::parseNameValuePair(SettingChange & change, IParser::Pos & pos, Expected & expected)
{
ParserCompoundIdentifier name_p;
ParserLiteralOrMap literal_or_map_p;
ParserToken s_eq(TokenType::Equals);
ParserSetQuery set_p(true);
ParserFunction function_p;
ASTPtr name;
ASTPtr value;
ASTPtr function_ast;
if (!name_p.parse(pos, name, expected))
return false;
if (!s_eq.ignore(pos, expected))
return false;
/// for SETTINGS disk=disk(type='s3', path='', ...)
{
auto pos_before_func = pos;
if (function_p.parse(pos, function_ast, expected) && function_ast->as<ASTFunction>()->name == "disk")
{
tryGetIdentifierNameInto(name, change.name);
change.value = createFieldFromAST(function_ast);
return true;
}
pos = pos_before_func;
}
if (!literal_or_map_p.parse(pos, value, expected))
return false;
tryGetIdentifierNameInto(name, change.name);
change.value = value->as<ASTLiteral &>().value;
return true;
}
bool ParserSetQuery::parseNameValuePairWithParameterOrDefault(
SettingChange & change, String & default_settings, ParserSetQuery::Parameter & parameter, IParser::Pos & pos, Expected & expected, bool enable_shorthand_syntax)
{
ParserCompoundIdentifier name_p;
ParserLiteralOrMap value_p;
ParserToken s_eq(TokenType::Equals);
ParserFunction function_p;
ASTPtr node;
String name;
ASTPtr function_ast;
bool have_eq;
if (!name_p.parse(pos, node, expected))
return false;
have_eq = s_eq.ignore(pos, expected);
if (!enable_shorthand_syntax && !have_eq)
return false;
tryGetIdentifierNameInto(node, name);
/// Parameter
if (name.starts_with(QUERY_PARAMETER_NAME_PREFIX))
{
if (!have_eq)
return false;
name = name.substr(strlen(QUERY_PARAMETER_NAME_PREFIX));
if (name.empty())
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Parameter name cannot be empty");
String value;
if (!parseParameterValueIntoString(pos, value, expected))
return false;
parameter = {std::move(name), std::move(value)};
return true;
}
if (have_eq)
{
/// Default
if (ParserKeyword(Keyword::DEFAULT).ignore(pos, expected))
{
default_settings = name;
return true;
}
/// Setting
{
auto pos_before_func = pos;
if (function_p.parse(pos, function_ast, expected) && function_ast->as<ASTFunction>()->name == "disk")
{
change.name = name;
change.value = createFieldFromAST(function_ast);
return true;
}
pos = pos_before_func;
}
if (!value_p.parse(pos, node, expected))
return false;
}
else
{
try
{
Field type_test = Settings::castValueUtil(name, true);
if (type_test.getType() == Field::Types::Which::Bool)
node = make_intrusive<ASTLiteral>(Field(true));
else
return false;
}
catch (const Exception &)
{
return false;
}
}
change.name = name;
change.value = node->as<ASTLiteral &>().value;
return true;
}
bool ParserSetQuery::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
{
ParserToken s_comma(TokenType::Comma);
if (!parse_only_internals)
{
ParserKeyword s_set(Keyword::SET);
if (!s_set.ignore(pos, expected))
return false;
/// Parse SET TRANSACTION ... queries using ParserTransactionControl
if (ParserKeyword{Keyword::TRANSACTION}.check(pos, expected))
return false;
/// Parse SET TIME ZONE 'tz' as an alias for SET session_timezone = 'tz'
if (ParserKeyword{Keyword::TIME_ZONE}.ignore(pos, expected))
{
ParserToken eq(TokenType::Equals);
eq.ignore(pos, expected); // optional, for PostgreSQL compatibility
ASTPtr value_node;
ParserLiteralOrMap literal_parser;
if (!literal_parser.parse(pos, value_node, expected))
return false;
auto query = make_intrusive<ASTSetQuery>();
node = query;
query->is_standalone = !parse_only_internals;
SettingChange change;
change.name = "session_timezone";
change.value = value_node->as<ASTLiteral &>().value;
query->changes.push_back(std::move(change));
return true;
}
}
SettingsChanges changes;
NameToNameVector query_parameters;
std::vector<String> default_settings;
while (true)
{
if ((!changes.empty() || !query_parameters.empty() || !default_settings.empty()) && !s_comma.ignore(pos))
break;
SettingChange setting;
String name_of_default_setting;
Parameter parameter;
if (!parseNameValuePairWithParameterOrDefault(setting, name_of_default_setting, parameter, pos, expected, shorthand_syntax))
return false;
if (!parameter.first.empty())
query_parameters.emplace_back(std::move(parameter));
else if (!name_of_default_setting.empty())
default_settings.emplace_back(std::move(name_of_default_setting));
else
changes.push_back(std::move(setting));
}
auto query = make_intrusive<ASTSetQuery>();
node = query;
query->is_standalone = !parse_only_internals;
query->changes = std::move(changes);
query->query_parameters = std::move(query_parameters);
query->default_settings = std::move(default_settings);
return true;
}
}