私は現在存在する世界で「最も素晴らしい」解析ライブラリを使用しています。パイパシング。当面の問題は、指定されたSQL文字列からPyMongoディクショナリを生成することです(selectステートメントの場合)。私が使用している文法定義は次のとおりです。
sql_stmt = (select_key_word + ('*' | column_list).setResultsName
("columns") + form_key_word + table_name_list.setResultsName
("collections") +
Optional(where_condition, "").setResultsName("where"))
ここで、select_key_word、column_listなどの構文は有効な文法定義です。これを使用して、「Select * from collection_1 where(Sal = 1000 or Sal = 5000)AND Car> 2」のような文字列を解析できます。問題は、解析されるwhere部分が次のようになることです。
[[u'where', [u'(', [u'Sal', '=', u'1000'], 'or', [u'Sal', '=', u'5000'], u')'], 'and', [u'Car', '>', u'2']]]
私がそれを何かsqlishに翻訳したいのであれば、これは問題ありません。しかし、pymongoでの同じものの有効な表現は、次のようになります。
{u'$or': [{u'$and': [{u'Sal': u'1000'}, {u'Sal': u'5000'}]}, {u'Car': {u'$gte': u'2'}}]}
それは私が立ち往生しているところです。誰かが私に指示を与えることができますか?setParseActionが進むべき道であるように私には思えますが、それを理解することはできません
where_contidionのコードは次のとおりです。
where_expr = Forward()
and_keyword = get_conjunction_as_grammar("and")
or_keyword = get_conjunction_as_grammar("or")
in_operation = get_operation_as_grammar("in")
column_value = get_real_number_as_grammar() | get_int_as_grammar() | \
quotedString
binary_operator = get_bin_op_as_grammar()
col_name = get_column_name_as_grammar()
where_condn = Group(
(col_name + binary_operator + column_value) |
(col_name + in_operation + "(" + delimitedList(column_value) + ")" ) |
("(" + where_expr + ")")
)
where_expr << where_condn + ZeroOrMore((and_keyword | or_keyword)
+ where_expr)
where_condition = Group(CaselessLiteral("where") + where_expr)
前もって感謝します。その他の情報が必要な場合はお知らせください。