mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/IParserBase.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Parse specified keyword such as SELECT or compound keyword such as ORDER BY.
|
|
* All case insensitive. Requires word boundary.
|
|
* For compound keywords, any whitespace characters and comments could be in the middle.
|
|
*/
|
|
/// Example: ORDER/* Hello */BY
|
|
class ParserKeyword : public IParserBase
|
|
{
|
|
private:
|
|
const char * s;
|
|
|
|
public:
|
|
ParserKeyword(const char * s_);
|
|
|
|
protected:
|
|
const char * getName() const override;
|
|
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
};
|
|
|
|
|
|
class ParserToken : public IParserBase
|
|
{
|
|
private:
|
|
TokenType token_type;
|
|
public:
|
|
ParserToken(TokenType token_type_) : token_type(token_type_) {}
|
|
protected:
|
|
const char * getName() const override { return "token"; }
|
|
|
|
bool parseImpl(Pos & pos, ASTPtr & /*node*/, Expected & expected) override
|
|
{
|
|
if (pos->type != token_type)
|
|
{
|
|
expected.add(pos, getTokenName(token_type));
|
|
return false;
|
|
}
|
|
++pos;
|
|
return true;
|
|
}
|
|
};
|
|
|
|
|
|
// Parser always returns true and do nothing.
|
|
class ParserNothing : public IParserBase
|
|
{
|
|
public:
|
|
const char * getName() const override { return "nothing"; }
|
|
|
|
bool parseImpl(Pos & /*pos*/, ASTPtr & /*node*/, Expected & /*expected*/) override { return true; }
|
|
};
|
|
|
|
}
|