dbms: development.

This commit is contained in:
Alexey Milovidov 2010-06-25 16:36:13 +00:00
parent e5d9895b57
commit a3470586b9
11 changed files with 46 additions and 49 deletions

View File

@ -18,6 +18,7 @@ public:
StringRange range;
ASTs children;
ASTExpressionList() {}
ASTExpressionList(StringRange range_) : range(range_) {}
/** Получить кусок текста, откуда был получен этот элемент. */

View File

@ -18,6 +18,7 @@ public:
/// параметры
ASTPtr arguments;
ASTFunction() {}
ASTFunction(StringRange range_) : range(range_) {}
/** Получить кусок текста, откуда был получен этот элемент. */

View File

@ -16,6 +16,7 @@ public:
/// имя
String name;
ASTIdentifier() {}
ASTIdentifier(StringRange range_, const String & name_) : range(range_), name(name_) {}
/** Получить кусок текста, откуда был получен этот элемент. */

View File

@ -17,6 +17,7 @@ public:
/// значение
Field value;
ASTLiteral() {}
ASTLiteral(StringRange range_, const Field & value_) : range(range_), value(value_) {}
/** Получить кусок текста, откуда был получен этот элемент. */

View File

@ -16,6 +16,7 @@ public:
StringRange range;
ASTPtr select, from, where, group, having, order, limit;
ASTSelectQuery() {}
ASTSelectQuery(StringRange range_) : range(range_) {}
/** Получить кусок текста, откуда был получен этот элемент. */

View File

@ -12,14 +12,24 @@ namespace DB
using Poco::SharedPtr;
/** если прямо сейчас не s, то ошибка
/** Если прямо сейчас не s, то ошибка.
* Если word_boundary установлен в true, и последний символ строки - словарный (\w),
* то проверяется, что последующий символ строки не словарный.
*/
class ParserString : public IParserBase
{
private:
String s;
bool word_boundary;
inline bool is_word(char c)
{
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || (c == '_');
}
public:
ParserString(const String & s_) : s(s_) {}
ParserString(const String & s_, bool word_boundary_ = false) : s(s_), word_boundary(word_boundary_) {}
protected:
String getName() { return s; }
@ -29,6 +39,10 @@ protected:
return false;
else
{
if (word_boundary && s.size() && is_word(*s.rbegin())
&& pos + s.size() != end && is_word(pos[s.size()]))
return false;
pos += s.size();
return true;
}
@ -36,28 +50,6 @@ protected:
};
/** если сейчас словарный символ - то ошибка
* понимается только латиница
*/
class ParserNotWordCharOrEnd : public IParserBase
{
protected:
String getName() { return "non-word character"; }
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expected)
{
if (pos == end)
return true;
if ((*pos >= 'a' && *pos <= 'z') || (*pos >= 'A' && *pos <= 'Z') || (*pos >= '0' && *pos <= '9') || *pos == '_')
return false;
++pos;
return true;
}
};
/** пробельные символы
*/
class ParserWhiteSpace : public IParserBase

View File

@ -1,7 +1,7 @@
#ifndef DBMS_PARSERS_EXPRESSIONLISTPARSERS_H
#define DBMS_PARSERS_EXPRESSIONLISTPARSERS_H
#include <map>
#include <list>
#include <boost/assign/list_of.hpp>
@ -12,8 +12,10 @@
namespace DB
{
/** Оператор и соответствующая ему функция. Например, "+" -> "plus" */
typedef std::map<String, String> Operators_t;
/** Оператор и соответствующая ему функция. Например, "+" -> "plus"
* Не std::map, так как порядок парсинга операторов задаётся явно и может отличаться от алфавитного.
*/
typedef std::list<std::pair<String, String> > Operators_t;
/** Выражение с инфиксным бинарным лево-ассоциативным оператором.

View File

@ -23,14 +23,12 @@ protected:
ASTPtr select_expression_list;
ParserWhiteSpaceOrComments ws;
ParserString s("SELECT");
ParserNotWordCharOrEnd nw;
ParserString s("SELECT", true);
ParserNotEmptyExpressionList exp_list;
ws.ignore(pos, end);
if (!(s.ignore(pos, end, expected)
&& nw.check(pos, end, expected)))
if (!s.ignore(pos, end, expected))
return false;
ws.ignore(pos, end);

View File

@ -12,6 +12,7 @@
#include <DB/Parsers/ExpressionElementParsers.h>
#include <iostream>
namespace DB
{
@ -118,13 +119,10 @@ bool ParserFunction::parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expec
ParserExpressionList contents;
ParserWhiteSpaceOrComments ws;
ASTIdentifier * p_identifier = new ASTIdentifier(StringRange(begin, pos), "");
ASTIdentifier & identifier = *p_identifier;
ASTPtr identifier_node = p_identifier;
ASTPtr identifier = new ASTIdentifier;
ASTPtr expr_list = new ASTExpressionList;
ASTPtr expr_list_node = new ASTExpressionList(StringRange(begin, pos));
if (!id_parser.parse(pos, end, identifier_node, expected))
if (!id_parser.parse(pos, end, identifier, expected))
return false;
ws.ignore(pos, end);
@ -133,15 +131,15 @@ bool ParserFunction::parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expec
return false;
ws.ignore(pos, end);
contents.parse(pos, end, expr_list_node, expected);
contents.parse(pos, end, expr_list, expected);
ws.ignore(pos, end);
if (!close.ignore(pos, end, expected))
return false;
ASTFunction * function_node = new ASTFunction(StringRange(begin, pos));
function_node->name = identifier.name;
function_node->arguments = expr_list_node;
function_node->name = dynamic_cast<ASTIdentifier &>(*identifier).name;
function_node->arguments = expr_list;
node = function_node;
return true;
}
@ -150,7 +148,7 @@ bool ParserFunction::parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expec
bool ParserNull::parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expected)
{
Pos begin = pos;
ParserString nested_parser("NULL");
ParserString nested_parser("NULL", true);
if (nested_parser.parse(pos, end, node, expected))
{
node = new ASTLiteral(StringRange(StringRange(begin, pos)), Null());
@ -209,6 +207,8 @@ bool ParserStringLiteral::parseImpl(Pos & pos, Pos end, ASTPtr & node, String &
return false;
}
++pos;
while (pos != end)
{
size_t bytes = 0;

View File

@ -35,7 +35,7 @@ bool ParserLeftAssociativeBinaryOperatorList::parseImpl(Pos & pos, Pos end, ASTP
Operators_t::const_iterator it;
for (it = operators.begin(); it != operators.end(); ++it)
{
ParserString op(it->first);
ParserString op(it->first, true);
if (op.ignore(pos, end, expected))
break;
}
@ -46,12 +46,12 @@ bool ParserLeftAssociativeBinaryOperatorList::parseImpl(Pos & pos, Pos end, ASTP
ws.ignore(pos, end);
/// функция, соответствующая оператору
ASTFunction * p_function = new ASTFunction(StringRange(pos, pos));
ASTFunction * p_function = new ASTFunction;
ASTFunction & function = *p_function;
ASTPtr function_node = p_function;
/// аргументы функции
ASTExpressionList * p_exp_list = new ASTExpressionList(StringRange(pos, pos));
ASTExpressionList * p_exp_list = new ASTExpressionList;
ASTExpressionList & exp_list = *p_exp_list;
ASTPtr exp_list_node = p_exp_list;
@ -100,7 +100,7 @@ bool ParserPrefixUnaryOperatorExpression::parseImpl(Pos & pos, Pos end, ASTPtr &
Operators_t::const_iterator it;
for (it = operators.begin(); it != operators.end(); ++it)
{
ParserString op(it->first);
ParserString op(it->first, true);
if (op.ignore(pos, end, expected))
break;
}
@ -116,12 +116,12 @@ bool ParserPrefixUnaryOperatorExpression::parseImpl(Pos & pos, Pos end, ASTPtr &
ws.ignore(pos, end);
/// функция, соответствующая оператору
ASTFunction * p_function = new ASTFunction(StringRange(pos, pos));
ASTFunction * p_function = new ASTFunction;
ASTFunction & function = *p_function;
ASTPtr function_node = p_function;
/// аргументы функции
ASTExpressionList * p_exp_list = new ASTExpressionList(StringRange(pos, pos));
ASTExpressionList * p_exp_list = new ASTExpressionList;
ASTExpressionList & exp_list = *p_exp_list;
ASTPtr exp_list_node = p_exp_list;
@ -157,7 +157,7 @@ bool ParserExpressionList::parseImpl(Pos & pos, Pos end, ASTPtr & node, String &
ParserWhiteSpaceOrComments ws;
ParserString comma(",");
ASTExpressionList * p_expr_list = new ASTExpressionList(StringRange(pos, pos));
ASTExpressionList * p_expr_list = new ASTExpressionList;
ASTExpressionList & expr_list = *p_expr_list;
node = p_expr_list;

View File

@ -10,7 +10,7 @@ int main(int argc, char ** argv)
{
DB::ParserSelectQuery parser;
DB::ASTPtr ast;
std::string input = "SELECT 1, 2, 3";
std::string input = "SELECT f(x), 1, 2, 3, x, NULL, 'abc\\\\def\\'\\\\''";
std::string expected;
const char * begin = input.data();