ClickHouse/dbms/src/Parsers/CommonParsers.cpp
2017-07-13 08:59:01 +03:00

63 lines
1.2 KiB
C++

#include <Common/StringUtils.h>
#include <Parsers/CommonParsers.h>
#include <common/find_first_symbols.h>
#include <string.h> /// strncmp, strncasecmp
namespace DB
{
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 (strncasecmp(pos->begin, current_word, word_length))
return false;
++pos;
if (!*next_whitespace)
break;
current_word = next_whitespace + 1;
}
return true;
}
}