在运行时创建和存储方法链的方法
我遇到的问题是,我需要进行大约 40 多次转换才能将松散类型信息转换为存储在 db、xml 文件等中的强类型信息。
我计划用元组标记每种类型,即像这样的转换形式:
host.name.string:host.dotquad.string
它将提供从输入到输出形式的转换。例如,名称存储在字符串类型的主机字段中,输入将转换为字符串类型的点四符号并存储回主机字段。更复杂的转换可能需要几个步骤,每个步骤都通过方法调用来完成,因此是方法链接。
进一步检查上面的示例,元组“host.name.string”的字段主机名称为 www.domain.com。完成 DNS 查找以将域名隐藏为 IP 地址。另一种方法是将 DNS 查找返回的类型更改为 string 类型的 dotquad 内部类型。对于此转换,调用了 4 个单独的方法来从一个元组转换为另一个元组。其他一些转换可能需要更多步骤。
理想情况下,我想要一个关于如何在运行时构建方法链的小例子。开发时方法链接相对简单,但需要一页又一页的代码来涵盖所有可能性,并进行 40 多次转换。
我想到的一种方法是在启动时解析元组,并将链写入程序集,编译它,然后使用反射来加载/访问。它真的很难看,并且会抵消我希望获得的性能提升。
我使用的是 Mono,所以没有 C# 4.0
任何帮助将不胜感激。 鲍勃.
The problem I have is that I need to do about 40+ conversions to convert loosely typed info into strongly typed info stored in db, xml file, etc.
I'm plan to tag each type with a tuple i.e. a transformational form like this:
host.name.string:host.dotquad.string
which will offer a conversion from the input to an output form. For example, the name stored in the host field of type string, the input is converted into a dotquad notation of type string and stored back into host field. More complex conversions may need several steps, with each step being accomplished by a method call, hence method chaining.
Examining further the example above, the tuple 'host.name.string' with the field host of name www.domain.com. A DNS lookup is done to covert domain name to IP address. Another method is applied to change the type returned by the DNS lookup into the internal type of dotquad of type string. For this transformation, there is 4 seperate methods called to convert from one tuple into another. Some other conversions may require more steps.
Ideally I would like an small example of how method chains are constructed at runtime. Development time method chaining is relatively trivial, but would require pages and pages of code to cover all possibilites, with 40+ conversions.
One way I thought of doing is, is parsing the tuples at startup, and writing the chains out to an assembly, compiling it, then using reflection to load/access. Its would be really ugly and negate the performance increases i'm hoping to gain.
I'm using Mono, so no C# 4.0
Any help would be appreciated.
Bob.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一个使用 LINQ 表达式的快速但肮脏的解决方案。您已经表明您想要 C# 2.0,这是 3.5,但它确实可以在 Mono 2.6 上运行。方法链接有点hacky,因为我不完全知道你的版本是如何工作的,所以你可能需要调整表达式代码以适应。
真正的魔力确实发生在
Chainer
类中,它采用字符串集合,代表MethodChain
子类。采用这样的集合:这将生成如下链:
Chainer.CreateChain
将返回一个调用MethodChain.Execute()
的 lambda。由于 Chainer.CreateChain 使用了一些反射,因此速度很慢,但它只需要为每个表达式链运行一次。 lambda 的执行速度几乎与调用实际代码一样快。希望您能将其融入您的架构中。
Here is a quick and dirty solution using LINQ Expressions. You have indicated that you want C# 2.0, this is 3.5, but it does run on Mono 2.6. The method chaining is a bit hacky as i didn't exactly know how your version works, so you might need to tweak the expression code to suit.
The real magic really happens in the
Chainer
class, which takes a collection of strings, which represent theMethodChain
subclass. Take a collection like this:This will generate a chain like this:
Chainer.CreateChain
will return a lambda that callsMethodChain.Execute()
. BecauseChainer.CreateChain
uses a bit of reflection, it's slow, but it only needs to run once for each expression chain. The execution of the lambda is nearly as fast as calling actual code.Hope you can fit this into your architecture.
命令模式适合这里。您可以做的是将命令排队,因为您需要对不同的数据类型执行不同的操作。当您稍后准备好时,这些消息都可以被处理并调用适当的方法。
此模式可以在.NET 2.0 中实现。
The command pattern would fit here. What you could do is queue up commands as you need different operations performed on the different data types. Those messages could then all be processed and call the appropriate methods when you're ready later on.
This pattern can be implemented in .NET 2.0.
您真的需要在执行时执行此操作吗?不能使用代码生成来创建操作组合吗?
让我详细说明一下:
假设您有一个名为 Conversions 的类,其中包含您提到的所有 40 多个转换,如下所示:
编写一个简单的控制台应用程序或类似的东西,它使用反射来为如下方法生成代码:
将所有这些包装在一个不错的小执行中像这样的方法:
仅当您的方法签名更改或决定添加新的转换时,才需要执行此代码生成应用程序。
主要优点:
您觉得怎么样?
Do you really need to do this at execution time? Can't you create the combination of operations using code generation?
Let me elaborate:
Assuming you have a class called Conversions which contains all the 40+ convertions you mentioned like this:
Write a simple console app or something similar which uses reflection to generate code for methods like this:
Wrap all this in a Nice little execute method like this:
This code generation application need to be executed only when your method signatures changes or when you decide to add new transformations.
Main advantages:
What do you think?
我为冗长的代码转储以及它是用 Java 而不是 C# 的事实表示歉意,但我发现你的问题非常有趣,而且我没有太多 C# 经验。希望您能够毫无困难地适应此解决方案。
解决问题的一种方法是为每次转换创建成本 - 通常这与转换的准确性有关 - 然后执行搜索以找到从一种类型到另一种类型的最佳可能转换序列。
需要成本函数的原因是在多个转化路径中进行选择。例如,从整数转换为字符串是无损的,但不能保证每个字符串都可以用整数表示。因此,如果您有两个转换链
您可能需要选择第二个,因为它将减少转换失败的可能性。
下面的 Java 代码实现了这样的方案,并执行最佳优先搜索来找到最佳转换序列。我希望你觉得它有用。运行代码会产生以下输出:
这是 Java 代码。
I apologize for the long code dump and the fact that it is in Java, rather than C#, but I found your problem quite interesting and I do not have much C# experience. Hopefully you will be able to adapt this solution without difficulty.
One approach to solving your problem is to create a cost for each conversion -- usually this is related to the accuracy of the conversion -- and then perform a search to find the best possible conversion sequence to get from one type to another.
The reason for needing a cost function is to choose among multiple conversion paths. For example, converting from an integer to a string is lossless, but there is no guarantee that every string can be represented by an integer. So, if you had two conversion chains
You would want to select the second one because it will reduce the chance of a conversion failure.
The Java code below implements such a scheme and performs a best-first search to find an optimal conversion sequence. I hope you find it useful. Running the code produces the following output:
Here is the Java code.