我想从C#创建一个IronPython类的实例,但我目前的尝试似乎都失败了。
这是我目前的代码:
ConstructorInfo[] ci = type.GetConstructors();
foreach (ConstructorInfo t in from t in ci
where t.GetParameters().Length == 1
select t)
{
PythonType pytype = DynamicHelpers.GetPythonTypeFromType(type);
object[] consparams = new object[1];
consparams[0] = pytype;
_objects[type] = t.Invoke(consparams);
pytype.__init__(_objects[type]);
break;
}
我能够从调用t.Invoke(consparams)获取对象的创建实例,但似乎没有调用__init__
方法,因此我从Python设置的所有属性脚本未使用。即使使用显式pytype.__init__
调用,构造的对象仍然似乎没有被初始化。
使用ScriptEngine.Operations.CreateInstance似乎也不起作用。
我正在使用.NET 4.0和IronPython 2.6 for .NET 4.0。
编辑:关于我打算如何做到这一点的小说明:
在C#中,我有一个类如下:
public static class Foo
{
public static object Instantiate(Type type)
{
// do the instantiation here
}
}
在Python中,代码如下:
class MyClass(object):
def __init__(self):
print "this should be called"
Foo.Instantiate(MyClass)
似乎永远不会调用__init__
方法。
答案 0 :(得分:10)
此代码适用于IronPython 2.6.1
static void Main(string[] args)
{
const string script = @"
class A(object) :
def __init__(self) :
self.a = 100
class B(object) :
def __init__(self, a, v) :
self.a = a
self.v = v
def run(self) :
return self.a.a + self.v
";
var engine = Python.CreateEngine();
var scope = engine.CreateScope();
engine.Execute(script, scope);
var typeA = scope.GetVariable("A");
var typeB = scope.GetVariable("B");
var a = engine.Operations.CreateInstance(typeA);
var b = engine.Operations.CreateInstance(typeB, a, 20);
Console.WriteLine(b.run()); // 120
}
根据澄清的问题编辑
class Program
{
static void Main(string[] args)
{
var engine = Python.CreateEngine();
var scriptScope = engine.CreateScope();
var foo = new Foo(engine);
scriptScope.SetVariable("Foo", foo);
const string script = @"
class MyClass(object):
def __init__(self):
print ""this should be called""
Foo.Create(MyClass)
";
var v = engine.Execute(script, scriptScope);
}
}
public class Foo
{
private readonly ScriptEngine engine;
public Foo(ScriptEngine engine)
{
this.engine = engine;
}
public object Create(object t)
{
return engine.Operations.CreateInstance(t);
}
}
答案 1 :(得分:2)
我认为我解决了自己的问题 - 使用.NET Type
类似乎已经丢弃了Python类型信息。
用IronPython.Runtime.Types.PythonType
替换它可以很好地工作。
答案 2 :(得分:0)
看起来您正在寻找this SO question给出的答案。