I very new to pyparsing and Python so this is a warning that I might be doing something really wrong.
What I am trying to do is build a SQL parser and build up tree with nodes that I can then walk.
I'm trying to copy this kind of thing from a yacc/bison grammer file:
| scalar_exp '^' scalar_exp
{ $$ = new QgsSearchTreeNode(QgsSearchTreeNode::opPOW, $1, $3);
joinTmpNodes($$,$1,$3); }
This is the code that I have in Python:
LPAR = Suppress('(')
RPAR = Suppress(')')
COMMA = Suppress(',')
AND = CaselessKeyword('AND')
ASC = CaselessKeyword('ASC')
DESC = CaselessKeyword('DESC')
ON = CaselessKeyword('ON')
USING = CaselessKeyword("USING")
INNER = CaselessKeyword("INNER")
JOIN = CaselessKeyword("JOIN")
AS = CaselessKeyword("AS")
NOT = CaselessKeyword("NOT")
SELECT = CaselessKeyword("SELECT")
FROM = CaselessKeyword("FROM")
WHERE = CaselessKeyword("WHERE")
GROUP = CaselessKeyword("GROUP")
BY = CaselessKeyword("BY")
ORDER = CaselessKeyword("ORDER")
LIMIT = CaselessKeyword("LIMIT")
BETWEEN = CaselessKeyword("BETWEEN")
UNARY = 1
BINARY = 2
TERNARY = 3
keyword = MatchFirst(( ASC, DESC, ON, USING, INNER,
JOIN, AS, NOT, SELECT, FROM, WHERE, GROUP, BY,
ORDER, BY, LIMIT,BETWEEN))
identifier = ~keyword + Word(alphas, alphanums+"_")
collation_name = identifier.copy()
column_name = Suppress('[') + ~keyword + Word(alphas, alphanums+"_") + Suppress(']')
column_alias = identifier.copy()
table_name = identifier.copy()
table_alias = identifier.copy()
index_name = identifier.copy()
function_name = identifier.copy()
parameter_name = identifier.copy()
expr = Forward().setName("expression")
select_stmt = Forward().setName("select statement")
integer = Regex(r"[+-]?\d+")
numeric_literal = Regex(r"\d+(\.\d*)?([eE][+-]?\d+)?")
string_literal = QuotedString("'")
literal_value = ( numeric_literal | string_literal)
expr_term = (
function_name + LPAR + Optional(delimitedList(expr)) + RPAR |
literal_value |
identifier |
column_name
)
expr << operatorPrecedence(expr_term,
[
(oneOf('- + ~') | NOT, UNARY, opAssoc.LEFT, setObject),
('||', BINARY, opAssoc.LEFT),
(oneOf('* / %'), BINARY, opAssoc.LEFT,setObject),
(oneOf('+ -'), BINARY, opAssoc.LEFT),
(oneOf('<< >> & |'), BINARY, opAssoc.LEFT),
(oneOf('< <= > >='), BINARY, opAssoc.LEFT),
(oneOf('= == != <>') , BINARY, opAssoc.LEFT),
('||', BINARY, opAssoc.LEFT),
((BETWEEN,AND), TERNARY, opAssoc.LEFT),
])
ordering_term = expr + Optional(ASC | DESC)
join_constraint = ON + expr('join_expression')
join_op = COMMA | (INNER + JOIN)
join_source = Forward()
single_source = ( table_name("table") +
Optional(Optional(AS) + table_alias("table_alias")))
join_source << single_source + Group(ZeroOrMore(join_op + single_source + Optional(join_constraint)))("join")
result_column = "*" | table_name + "." + "*" | (expr + Optional(Optional(AS) + column_alias))
select_core = (SELECT + Group(delimitedList(result_column))("columns") +
Optional(FROM + join_source).setParseAction(setObject) +
Optional(WHERE + expr("where_expr")) +
Optional(GROUP + BY + Group(delimitedList(ordering_term)("group_by_terms")))
)
select_stmt << (select_core + ZeroOrMore(select_core) +
Optional(ORDER + BY + Group(delimitedList(ordering_term))("order_by_terms"))
)
note: it's a strip down version of select_parser.py by Paul McGuire
I think I have to use setParseAction but when ever I do I always get None for the tokens in the method that I call. I get the full string and location but no tokens.
Where would the best place to call setParseAction to copy the yacc/bison logic?