IronPython 的表达式树

发布于 2024-11-09 04:12:56 字数 452 浏览 0 评论 0原文

我使用此代码通过 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 ?

I use this code to execute a python expression using IronPython.

    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);

Is there a way to get the produced Expression Tree as c# object, e.g. the BlockExpression
?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

向地狱狂奔 2024-11-16 04:12:56

IronPython 的内部 AST 也恰好是表达式树,因此您只需要获取代码的 AST,您可以使用 IronPython.Compiler.Parser 类。 Parser.ParseFile 方法将返回 < code>IronPython.Compiler.Ast.PythonAst 表示代码的实例。

使用解析器有点棘手,但您可以查看 _ast 模块的 BuildAst 方法 以获得一些提示。基本上,它是:

Parser parser = Parser.CreateParser(
    new CompilerContext(sourceUnit, opts, ThrowingErrorSink.Default),
    (PythonOptions)context.LanguageContext.Options);

PythonAst ast = parser.ParseFile(true);

ThrowingErrorSink 也来自 _ast 模块。您可以像这样获取 SourceUnit 实例(参见 compilebuiltin):

SourceUnit sourceUnit = context.LanguageContext.CreateSnippet(source, filename, SourceCodeKind.Statements);

然后你必须遍历 AST 才能从中获取有用的信息,但它们应该是相似的(但不是与)C# 表达式树相同。

IronPython's internal ASTs also happen to be Expression trees, so you just need to get the AST for your code, which you can do using the IronPython.Compiler.Parser class. The Parser.ParseFile method will return a IronPython.Compiler.Ast.PythonAst instance representing the code.

Using the parser is a bit tricky, but you can look at the BuildAst method of the _ast module for some hints. Basically, it's:

Parser parser = Parser.CreateParser(
    new CompilerContext(sourceUnit, opts, ThrowingErrorSink.Default),
    (PythonOptions)context.LanguageContext.Options);

PythonAst ast = parser.ParseFile(true);

ThrowingErrorSink also comes from the _ast module. You can get a SourceUnit instance like so (c.f. compile builtin):

SourceUnit sourceUnit = context.LanguageContext.CreateSnippet(source, filename, SourceCodeKind.Statements);

You then have to walk the AST to get useful information out of it, but they should be similar (but not identical to) C# expression trees.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文