我使用此代码使用IronPython执行python表达式。
ScriptEngine engine = Python.CreateEngine();
ScriptScope scope = engine.CreateScope();
scope.SetVariable("m", mobject);
string code = "m.ID > 5 and m.ID < 10";
ScriptSource source =
engine.CreateScriptSourceFromString(code, SourceCodeKind.Expression);
source.Execute(scope);
有没有办法将生成的表达式树作为c#对象,例如BlockExpression
?
答案 0 :(得分:5)
IronPython的内部AST也恰好是Expression树,因此您只需要为您的代码获取AST,您可以使用IronPython.Compiler.Parser
类来完成。 Parser.ParseFile方法将返回表示代码的IronPython.Compiler.Ast.PythonAst
实例。
使用解析器有点棘手,但您可以查看_ast模块的BuildAst
method以获取一些提示。基本上,它是:
Parser parser = Parser.CreateParser(
new CompilerContext(sourceUnit, opts, ThrowingErrorSink.Default),
(PythonOptions)context.LanguageContext.Options);
PythonAst ast = parser.ParseFile(true);
ThrowingErrorSink
也来自_ast
模块。您可以获得SourceUnit
这样的实例(c.f。compile
builtin):
SourceUnit sourceUnit = context.LanguageContext.CreateSnippet(source, filename, SourceCodeKind.Statements);
然后你必须走AST,从中获取有用的信息,但它们应该与C#表达树相似(但不完全相同)。