ClickHouse/dbms/include/DB/Parsers/IParser.h

71 lines
2.2 KiB
C++
Raw Normal View History

#pragma once
2010-06-24 19:12:10 +00:00
#include <list>
#include <memory>
2010-06-24 19:12:10 +00:00
#include <DB/Core/Defines.h>
2010-06-24 19:12:10 +00:00
#include <DB/Core/Types.h>
#include <DB/Parsers/IAST.h>
namespace DB
{
using Expected = const char *;
2010-06-24 19:12:10 +00:00
/** Интерфейс для классов-парсеров
*/
class IParser
{
public:
using Pos = const char *;
2010-06-24 19:12:10 +00:00
/** Получить текст о том, что парсит этот парсер. */
virtual const char * getName() const = 0;
2010-06-24 19:12:10 +00:00
/** Распарсить кусок текста с позиции pos, но не дальше конца строки (end - позиция после конца строки),
* переместить указатель pos на максимальное место, до которого удалось распарсить,
* вернуть в случае успеха true и результат в node, если он нужен, иначе false,
* в expected записать, что ожидалось в максимальной позиции,
* до которой удалось распарсить, если парсинг был неуспешным,
* или что парсит этот парсер, если парсинг был успешным.
* Строка, в которую входит диапазон [begin, end) может быть не 0-terminated.
2010-06-24 19:12:10 +00:00
*/
virtual bool parse(Pos & pos, Pos end, ASTPtr & node, Pos & max_parsed_pos, Expected & expected) = 0;
2010-06-24 19:12:10 +00:00
bool ignore(Pos & pos, Pos end, Pos & max_parsed_pos, Expected & expected)
2010-06-24 19:12:10 +00:00
{
ASTPtr ignore_node;
return parse(pos, end, ignore_node, max_parsed_pos, expected);
2010-06-24 19:12:10 +00:00
}
2015-02-01 07:27:56 +00:00
2010-06-24 19:12:10 +00:00
bool ignore(Pos & pos, Pos end)
{
Pos max_parsed_pos = pos;
Expected expected;
return ignore(pos, end, max_parsed_pos, expected);
2010-06-24 19:12:10 +00:00
}
/** То же самое, но не двигать позицию и не записывать результат в node.
*/
bool check(Pos & pos, Pos end, Pos & max_parsed_pos, Expected & expected)
2010-06-24 19:12:10 +00:00
{
Pos begin = pos;
ASTPtr node;
if (!parse(pos, end, node, max_parsed_pos, expected))
2010-06-24 19:12:10 +00:00
{
pos = begin;
return false;
}
else
return true;
}
virtual ~IParser() {}
};
using ParserPtr = std::unique_ptr<IParser>;
2010-06-24 19:12:10 +00:00
}