A way to perform conversion between open and closed delegates - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T22:49:54Zhttp://stackoverflow.com/feeds/question/1070584http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1070584/a-way-to-perform-conversion-between-open-and-closed-delegates1A way to perform conversion between open and closed delegatesLBushkin2009-07-01T18:15:53Z2009-07-09T02:50:28Z
<p>I need to convert an open delegate (one in which the Target is not specified) into a closed one efficiently. I have profiled my code, and the cost of using <code>CreateDelegate()</code> to produce a closed delegate for an instance method is a significant fraction (>60%) of the overall run time (as it takes place for each new instance of the type). </p>
<p>Some basic information about open and closed delegates is <a href="http://msdn.microsoft.com/en-us/library/74x8f551.aspx" rel="nofollow">described on the MSDN site</a> in the documentation for <code>CreateDelegate</code>.</p>
<p>My current approach, is to find a way to cache the open delegate (so the cost of producing it is incurred just once) and invoke it using another method that supplies the implicit "this" parameter to the delegate.</p>
<p>A complicating factor is that I don't know the signature of the method that the delegate will represent at compile-time, other than through a generic parameter in the code. In addition, I want to avoid reflection (e.g. <code>Invoke()</code> and <code>DynamicInvoke()</code>) as they are no better in terms of performance.</p>
<pre><code>static TDel CreateOpenDelegate<TDel>( MethodInfo mi )
{
// creates and returns an open delegate for a delegate of signature TDel
// that will invoke some method as described by MethodInfo {mi}
return (TDel)(object)Delegate.CreateDelegate( typeof(TDel), mi );
}
// simplification of some other code...
// Note that Action<T> is a sample usage, the actual delegate signature and
// invocation parameters vary, and are defined by the consumers of my code
private Action<T> myAction = CreateOpenDelegate<Action<U,T>>( someMethodInfo );
myAction( this, default(T) ); // can't do this since {this} is a hidden parameter...
</code></pre>
<p>I have already read Jon Skeet's article on <a href="http://msmvps.com/blogs/jon%5Fskeet/archive/2008/08/09/making-reflection-fly-and-exploring-delegates.aspx" rel="nofollow">Making Reflection Fly and Exploring Delegates</a>, unfortunately, since I don't know the delegate signature in advance, I don't see a way to adapt the approach described there.</p>
<p>Any help would be appreciated.</p>
http://stackoverflow.com/questions/1070584/a-way-to-perform-conversion-between-open-and-closed-delegates/1070769#10707690Answer by SLaks for A way to perform conversion between open and closed delegatesSLaks2009-07-01T19:01:31Z2009-07-01T19:01:31Z<p>Are you trying to convert a delegate or a <code>MethodInfo</code> to a closed delegate?</p>
<p>If you're trying to convert a delegate to a closed delegate, how about currying, like this?</p>
<pre><code>static Action<T2> Curry<T1, T2>(Action<T1, T2> del, T1 obj) { return p => del(obj, p); }
</code></pre>
http://stackoverflow.com/questions/1070584/a-way-to-perform-conversion-between-open-and-closed-delegates/1101610#11016100Answer by dahlbyk for A way to perform conversion between open and closed delegatesdahlbyk2009-07-09T02:50:28Z2009-07-09T02:50:28Z<p>If I understand your requirements correctly, you could probably use expression trees to accomplish this - I have a post exploring the topic <a href="http://solutionizing.net/2009/01/20/generic-method-invocation-with-expression-trees/" rel="nofollow">here</a>*. Here's a simplified version:</p>
<pre><code>public static D GetMethodAccessor<D>(MethodInfo mi) where D : class
{
Type[] args = typeof(D).GetGenericArguments();
if (args.Length == 0)
throw new ArgumentException("Type argument D must be generic.");
Type instanceType = args[0];
// If return type is not null, use one less arg
bool isAction = mi.ReturnType == typeof(void);
int callArgCount = args.Length - (isAction ? 1 : 2);
Type[] argTypes = args.Skip(1).Take(callArgCount).ToArray();
var param = Expression.Parameter(instanceType, "obj");
var arguments = argTypes.Select((t, i) => Expression.Parameter(t, "p" + i))
.ToArray();
var invoke = Expression.Call(param, mi, arguments);
var lambda = Expression.Lambda<D>(invoke,
Enumerable.Repeat(param, 1).Concat(arguments));
Debug.WriteLine(lambda.Body);
return lambda.Compile();
}
</code></pre>
<p>All that said, I'm not sure how the additional type argument processing and expression compilation would compare with your method.</p>
<p>As far as providing the implicit 'this', could use use extension methods?</p>
<pre><code>private static Action<U,T> myAction = GetMethodAccessor<Action<U,T>>(myMethod);
public static void MyAction<U,T>(this U u, T t)
{
myAction(u, t);
}
</code></pre>
<p>*Note that the string-based dictionary cache I use in the post is terribly inefficient - you'll want to cache the delegate to a private instance like in your example.</p>