mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
69 lines
1.3 KiB
C++
69 lines
1.3 KiB
C++
#include <Common/StringUtils/StringUtils.h>
|
|
#include <Parsers/CommonParsers.h>
|
|
#include <common/find_symbols.h>
|
|
#include <IO/Operators.h>
|
|
|
|
#include <string.h> /// strncmp, strncasecmp
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int LOGICAL_ERROR;
|
|
}
|
|
|
|
|
|
ParserKeyword::ParserKeyword(const char * s_) : s(s_)
|
|
{
|
|
}
|
|
|
|
|
|
const char * ParserKeyword::getName() const
|
|
{
|
|
return s;
|
|
}
|
|
|
|
|
|
bool ParserKeyword::parseImpl(Pos & pos, ASTPtr & /*node*/, Expected & expected)
|
|
{
|
|
if (pos->type != TokenType::BareWord)
|
|
return false;
|
|
|
|
const char * current_word = s;
|
|
|
|
size_t s_length = strlen(s);
|
|
if (!s_length)
|
|
throw Exception("Logical error: keyword cannot be empty string", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
const char * s_end = s + s_length;
|
|
|
|
while (true)
|
|
{
|
|
expected.add(pos, current_word);
|
|
if (pos->type != TokenType::BareWord)
|
|
return false;
|
|
|
|
const char * next_whitespace = find_first_symbols<' ', '\0'>(current_word, s_end);
|
|
size_t word_length = next_whitespace - current_word;
|
|
|
|
if (word_length != pos->size())
|
|
return false;
|
|
|
|
if (0 != strncasecmp(pos->begin, current_word, word_length))
|
|
return false;
|
|
|
|
++pos;
|
|
|
|
if (!*next_whitespace)
|
|
break;
|
|
|
|
current_word = next_whitespace + 1;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|