这样我就不会遇到XY问题,我想要做的就是包装WCF调用以便重试(和其他规则)自动实现,但我不知道所有的接口时间(这是一块中间件)。所以我基本上采用了通用DuplexChannelFactory<TChannel>.CreateChannel()
的输出,然后再将其作为代理。关于包装调用和重试等问题,有几个不同的问题,但是没有一个问题涉及到拥有完全通用解决方案所需的未知数量的接口。
所以我想在每次客户端调用时注入代码,但我希望我的对象直接实现TChannel
接口。所以我想使用Reflection.Emit
子类化一个“基础”对象,该对象将保存DuplexChannelFactory<>
调用的结果,然后连接自己的方法,包括重试功能。这是我工厂方法中的初始“对象创建”:
static TInterface generateImplementor<TInterface, Tcallback>(params object[] parameters) where TInterface : class
{
// Get the information about the interface. This is necessary because this
// is a generic method, where literally anything could be passed in
Type interfaceType = typeof(TInterface);
// Create the assembly and module to hold the object created
// <snip>
// Define a public class based on the passed-in interface name.
TypeBuilder generatedType = myModule.DefineType(interfaceType.Name + "Implementor",
TypeAttributes.Public, typeof(ForwarderBase<TInterface, Tcallback>),
new Type[] { interfaceType });
// Implement 'TInterface' interface.
generatedType.AddInterfaceImplementation(interfaceType);
好的,但是从哪里去?这就像我提出的静态编码,但我需要用Reflection.Emit
进行最后两次调用。
class ForwarderBase<T, Tcallback>
{
protected T proxyObj;
public ForwarderBase(Tcallback callbackObj)
{
proxyObj = DuplexChannelFactory<T>.CreateChannel(callbackObj, "Endpoint");
}
private void noRetWrapper(Action call)
{
// Inject extra code here possibly
try
{
call();
}
catch (Exception ex)
{
// all of this in a retry loop possibly, or whatever
Console.WriteLine("Exception is: " + ex.ToString());
}
}
private TRet retWrapper<TRet>(Func<TRet> call)
{
// Inject extra code here possibly
try
{
return call();
}
catch (Exception ex)
{
// all of this in a retry loop possibly, or whatever
Console.WriteLine("Exception is: " + ex.ToString());
}
return default(TRet);
}
// Dynamically emit these two, as depending on T, there will be an arbitrary number, with arbitrary arguments
void firstMethod(int x)
{
// Lambda captures the arguments
noRetWrapper(() => proxyObj.noReturnMethodCall(x));
}
int secondMethod(int firstParam, double secondParam, string thirdParam)
{
// Lambda captures the arguments
return retWrapper(() => return proxyObj.returningMethodCall(firstParam, secondParam, thirdParam));
}
}
所以我没有问题Emit
最后两个方法(实际上任何数量的方法都应该没问题),除了捕获lambdas。这是必要的,否则上面的两个“包装器”会爆炸成任何可能的类型和返回值组合。
那么我如何Emit
我需要捕捉的lambdas?正如this question所说,没有Func<...>
之类的,因此我的Func
和Action
方法就在这里。
答案 0 :(得分:2)
这是Castle DynamicProxy(和类似的库)的用途。通过它,您可以编写一个拦截器类,每次调用代理上的方法时都会调用它。该代理是通过调用方法自动创建的。
拦截器看起来像这样:
class IgnoreExceptionsInterceptor : IInterceptor
{
public void Intercept(IInvocation invocation)
{
try
{
invocation.Proceed();
}
catch (Exception ex)
{
Console.WriteLine(ex);
invocation.ReturnValue = GetDefault(invocation.Method.ReturnType);
}
}
private static object GetDefault(Type type)
{
if (type.IsValueType && type != typeof(void))
{
return Activator.CreateInstance(type);
}
return null;
}
}
使用界面IFoo
及其实现Foo
,您可以像这样使用它:
var generator = new ProxyGenerator();
IFoo fooProxy = generator.CreateInterfaceProxyWithTargetInterface<IFoo>(
new Foo(), new IgnoreExceptionsInterceptor());
fooProxy.Whatever();