.NET嵌入IronPython交互详解_.Net教程
推荐:如何使ASP.NET 避免页面重新整理时重复送出有些使用者的行为真是令人猜不透,开网页有事没事就来给你 Refresh 一下,这个动作看似无害,但是在刚执行过 Submit 的情况下,Refresh 网页会造成重复执行,这也是为什么在各大购物网站的交易付款动作,都会提示「不要关闭网页或重新整理避免造成交易失败或
随着IronPyhon 2.0 的发布,.NET Dynamic Language Runtime 也更加成熟了,在2.0中我们可以用动态脚本以粘合剂的方式编写架构体系中的各种逻辑单元,既便于修改,又能灵活适合多变的业务场景。当然,我的目标是在 Platform Framework 中能嵌入脚本引擎,而不是用 ipy.exe 去执行一个 “独立” 的任务。要让.net 项目能真正跟脚本进行交互,还得需要提供脚本引擎的实现。这得提到DLR一些基本概念了。
下图摘自 DLR 帮助文件,通过它我们基本可以了解基于 DLR 的组成方式。
下图描述了 DLR 的基本执行流程。
ScriptRuntime: 创建 DLR 运行环境,这是整个执行过程的起始点,它表示一个全局的执行状态(比如程序集引用等等)。每个应用程序域(AppDomain)中可以启动多个 ScriptRuntime。
ScriptScope: 构建一个执行上下文,其中保存了环境及全局变量。宿主(Host)可以通过创建不同的 ScriptScope 来提供多个数据隔离的执行上下文。
ScriptEngine: DLR 动态语言(比如 IronPython) 执行类,可于解析和执行动态语言代码。
ScriptSource: 操控动态语言代码的类型,我们可以编译(Compile)、读取(Read Code Lines)或运行(Execute)代码。
CompiledCode: 调用 ScriptSource.Compile() 将源代码编译成 CompiledCode,这样多次执行就无需重复编译,从而提高执行性能。
ObjectOperations: 提供了相关方法,允许我们在宿主(Host)中操作 DLR 对象成员(Member)。
现在我们来构建脚本引擎
当然我们必须加入IronPyhton提供的相关引用并导入命名空间
using IronPython.Hosting;
using IronPython.Compiler;
using IronPython.Runtime;
using Microsoft.Scripting;
using System.Runtime.Remoting;
1、Hello World
以下为引用的内容: var py = @" def test(): return ‘hello world~!’; print test();"; var engine = Python.CreateEngine(); var code = engine.CreateScriptSourceFromString(py, SourceCodeKind.Statements); code.Execute(); |
输出: hello world~!
注意:Python 对于源代码缩进的格式有严格要求。
2、给Python上下文提供变量
var scope = engine.Runtime.Globals; //engine.Runtime.CreateScope();
scope.SetVariable(“x”, 123);
3、读取Python上下文中的变量
var x = scope.GetVariable<int>(“x”);
可以看出 ScriptScope 可以在 Host 和 ScriptRuntime 间传递数据。
4、对象实例共享
以下为引用的内容: var py = @" o.X = o.X + 2; print o.X;"; var engine = Python.CreateEngine(); var code = engine.CreateScriptSourceFromString(py, SourceCodeKind.Statements); var scope = engine.Runtime.Globals; var o = new Data { X = 123 }; scope.SetVariable("o", o); code.Execute(scope); Console.WriteLine(o.X); |
载入程序集并由ScriptRuntime管理
5、创建程序集test.dll
以下为引用的内容: namespace My.Library { public class MyClass { public int Test(int x) { return ++x; } } } |
创建Host程序
以下为引用的内容: var py = @" import clr; from My.Library import MyClass; from System import Console; o = MyClass(); x.X = o.Test(x.X); Console.WriteLine(x.X);"; var engine = Python.CreateEngine(); engine.Runtime.LoadAssembly(Assembly.GetAssembly(typeof(int))); // mscorlib.dll engine.Runtime.LoadAssembly(Assembly.LoadFrom("test.dll")); // test.dll var code = engine.CreateScriptSourceFromString(py, SourceCodeKind.Statements); var scope = engine.Runtime.Globals; var x = new Data { X = 123 }; scope.SetVariable("x", x); code.Execute(scope); Console.WriteLine(x.X); |
读取Python上下文对象实例属性
以下为引用的内容: var py = @" class Class1: def __init__(self): self.i = 100 def inc(self): self.i=self.i+100 o = Class1()"; var o = scope.GetVariable("o"); var i = engine.Operations.GetMember<int>(o, "i"); |
读取Python上下文对象实例方法
engine.Execute("o.inc()", scope); //已经在上下文环境中执行此对象方法
分享:实例解析.NET版分布式缓存Memcached下面测试下分布式缓存Memcached软件,一直在学习关注大访问量网站的缓存是如何实现,之前看过Memcached的资料,忙于没有时间来真正测试一下,本文测试分布式缓存Memcached的环境如下:(两台电脑作为服务器) 第一台: CPU:Inter(R) Pentium(R) 4 CPU 2.
- asp.net如何得到GRIDVIEW中某行某列值的方法
- .net SMTP发送Email实例(可带附件)
- js实现广告漂浮效果的小例子
- asp.net Repeater 数据绑定的具体实现
- Asp.Net 无刷新文件上传并显示进度条的实现方法及思路
- Asp.net获取客户端IP常见代码存在的伪造IP问题探讨
- VS2010 水晶报表的使用方法
- ASP.NET中操作SQL数据库(连接字符串的配置及获取)
- asp.net页面传值测试实例代码
- DataGridView - DataGridViewCheckBoxCell的使用介绍
- asp.net中javascript的引用(直接引入和间接引入)
- 三层+存储过程实现分页示例代码
- 相关链接:
- 教程说明:
.Net教程-.NET嵌入IronPython交互详解。