mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
133 lines
4.0 KiB
C++
133 lines
4.0 KiB
C++
#pragma once
|
||
|
||
#include <DB/Parsers/IParserBase.h>
|
||
#include <DB/Parsers/ExpressionElementParsers.h>
|
||
#include <DB/Parsers/ASTNameTypePair.h>
|
||
#include <DB/Parsers/ASTIdentifier.h>
|
||
#include <DB/Parsers/CommonParsers.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
/** Вложенная таблица. Например, Nested(UInt32 CounterID, FixedString(2) UserAgentMajor)
|
||
*/
|
||
class ParserNestedTable : public IParserBase
|
||
{
|
||
protected:
|
||
const char * getName() const { return "nested table"; }
|
||
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
||
};
|
||
|
||
|
||
/** Параметрический тип или Storage. Например:
|
||
* FixedString(10) или
|
||
* Partitioned(Log, ChunkID) или
|
||
* Nested(UInt32 CounterID, FixedString(2) UserAgentMajor)
|
||
* Результат парсинга - ASTFunction с параметрами или без.
|
||
*/
|
||
class ParserIdentifierWithParameters : public IParserBase
|
||
{
|
||
protected:
|
||
const char * getName() const { return "identifier with parameters"; }
|
||
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
||
};
|
||
|
||
|
||
/** Тип или Storage, возможно, параметрический. Например, UInt8 или примеры из ParserIdentifierWithParameters
|
||
* Результат парсинга - ASTFunction с параметрами или без.
|
||
*/
|
||
class ParserIdentifierWithOptionalParameters : public IParserBase
|
||
{
|
||
protected:
|
||
const char * getName() const { return "identifier with optional parameters"; }
|
||
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
||
};
|
||
|
||
|
||
template <class NameParser>
|
||
class IParserNameTypePair : public IParserBase
|
||
{
|
||
protected:
|
||
const char * getName() const { return "name and type pair"; }
|
||
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
||
};
|
||
|
||
/** Имя и тип через пробел. Например, URL String. */
|
||
typedef IParserNameTypePair<ParserIdentifier> ParserNameTypePair;
|
||
/** Имя и тип через пробел. Имя может содержать точку. Например, Hits.URL String. */
|
||
typedef IParserNameTypePair<ParserCompoundIdentifier> ParserCompoundNameTypePair;
|
||
|
||
template <class NameParser>
|
||
bool IParserNameTypePair<NameParser>::parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected)
|
||
{
|
||
NameParser name_parser;
|
||
ParserIdentifierWithOptionalParameters type_parser;
|
||
ParserWhiteSpaceOrComments ws_parser;
|
||
|
||
Pos begin = pos;
|
||
|
||
ASTPtr name, type;
|
||
if (name_parser.parse(pos, end, name, expected)
|
||
&& ws_parser.ignore(pos, end, expected)
|
||
&& type_parser.parse(pos, end, type, expected))
|
||
{
|
||
ASTNameTypePair * name_type_pair = new ASTNameTypePair(StringRange(begin, pos));
|
||
node = name_type_pair;
|
||
name_type_pair->name = typeid_cast<ASTIdentifier &>(*name).name;
|
||
name_type_pair->type = type;
|
||
name_type_pair->children.push_back(type);
|
||
return true;
|
||
}
|
||
|
||
pos = begin;
|
||
return false;
|
||
}
|
||
|
||
/** Список столбцов. */
|
||
class ParserNameTypePairList : public IParserBase
|
||
{
|
||
protected:
|
||
const char * getName() const { return "name and type pair list"; }
|
||
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
||
};
|
||
|
||
|
||
/** ENGINE = name. */
|
||
class ParserEngine : public IParserBase
|
||
{
|
||
protected:
|
||
const char * getName() const { return "ENGINE"; }
|
||
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
||
};
|
||
|
||
|
||
/** Запрос типа такого:
|
||
* CREATE|ATTACH TABLE [IF NOT EXISTS] [db.]name
|
||
* (
|
||
* name1 type1,
|
||
* name2 type2,
|
||
* ...
|
||
* ) ENGINE = engine
|
||
*
|
||
* Или:
|
||
* CREATE|ATTACH TABLE [IF NOT EXISTS] [db.]name AS [db2.]name2 [ENGINE = engine]
|
||
*
|
||
* Или:
|
||
* CREATE|ATTACH TABLE [IF NOT EXISTS] [db.]name AS ENGINE = engine SELECT ...
|
||
*
|
||
* Или:
|
||
* CREATE|ATTACH DATABASE db
|
||
*
|
||
* Или:
|
||
* CREATE|ATTACH [MATERIALIZED] VIEW [IF NOT EXISTS] [db.]name [ENGINE = engine] [POPULATE] AS SELECT ...
|
||
*/
|
||
class ParserCreateQuery : public IParserBase
|
||
{
|
||
protected:
|
||
const char * getName() const { return "CREATE TABLE or ATTACH TABLE query"; }
|
||
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
||
};
|
||
|
||
}
|