我正在使用PDK 7.3作为使用.NET和Perl开发应用程序的开发工具。
我想将Perl构建到.NET兼容的dll中,并且此模块可以引发.NET GUI应用程序可以处理的事件。
我找不到任何关于它的文档。据我所知,PDK 7.3不支持实现代表。
这是真的吗?我有任何选择吗?
答案 0 :(得分:1)
我给ActiveState公司的Jan Dubois写了一封电子邮件。他建议了一种为它实现回调机制的方法。
希望得到这个帮助。
===========================================
嗨Minh,
你可以在PerlNET中实现一个委托,你就是不能在其中声明新的委托类型。
我附加了一些示例代码,用于在Perl中定义委托,然后将其传递给C#。您需要将各个部分分成单独的文件并手动编译;代码被从一些回归测试中删除,你将没有其余的测试工具按原样运行它。 (看起来格式化也被削减了一点,但代码的意图应该仍然清晰)。
干杯,
-Jan
#!./perl -w
# Define some properties and fields in perl and try to access them.
print "1..1\n";
require 'setup.pl';
csc("-target:library DB.cs");
cleanup("DB.dll");
plc(-target => "library", -out => "P.dll", -r => "DB.dll", "P.pm");
csc("test.cs -r:DB.dll -r:P.dll");
cleanup("./test.exe");
my $res = `./test.exe`;
print "----\n$res----\n";
print "not " unless $res eq <<'EOT';
XXX 65
XXX 66
XXX 67
XXX 68
XXX 69
XXX 70
XXX 71
XXX 4.2
XXX 4.30000019073486
XXX 4.4
XXX a
XXX 1
XXX ""
XXX Hi
XXX <undef>
EOT
print "ok 1\n";
__END__
======================= test.cs =====================
using System;
class main : IPrint
{
public static void Main(string[] args)
{
P p = new P(new main());
DataBase db = new DataBase();
db.Add((byte)65);
db.Add((short)66);
db.Add((int)67);
db.Add((long)68);
db.Add((uint)69);
db.Add((ushort)70);
db.Add((ulong)71);
db.Add(4.2D);
db.Add(4.3F);
db.Add(4.4M);
db.Add('a');
db.Add(true);
db.Add(false);
db.Add("Hi");
db.Add(null);
db.Scan(p.handler);
}
main() {}
public void print(string s) {
Console.WriteLine(s);
}
}
======================= DB.cs =====================
using System;
using System.Collections;
public delegate void ProcessItem(Object i);
public class DataBase : ArrayList {
public DataBase() {}
public void Scan(ProcessItem handler) {
foreach (object o in this) {
handler(o);
}
}
}
public interface IPrint {
void print(string s);
}
======================= P.pm =====================
package P;
=for interface
interface ProcessItem; # a delegate type
interface IPrint;
interface System.Object;
interface P {
static P P(IPrint ip);
readonly ProcessItem handler;
void x(System.Object y);
private field IPrint ip;
}
=cut
sub P {
my($self, $ip) = @_;
$self->{ip} = $ip;
}
sub handler {
my $self = shift;
return ProcessItem->new($self, "x");
}
sub x {
my($self, $obj) = @_;
$obj = "<undef>" unless defined $obj;
$obj = '""' unless length $obj;
$self->{ip}->print("XXX $obj");
}
1;