Howto emit a delegate or lambda expression - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:24:04Z http://stackoverflow.com/feeds/question/939956 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/939956/howto-emit-a-delegate-or-lambda-expression 0 Howto emit a delegate or lambda expression tanascius 2009-06-02T14:42:45Z 2009-06-03T09:01:03Z <p>Hello,</p> <p>I want to emit a method that returns a Func&lt;>. Inside this method I have to create a delegate or a lambda expression which exactly serves the return type.</p> <p>Altogether it should look like this:</p> <pre><code>// I have a resolve method that will be called inside my missing method // This is it's signature: object Resolve( params object[] args); // This is how I use it: var barFactory = ( Func&lt;IBar&gt; )MissingMethod( typeof( IBar ) ); var bar = barFactory.Invoke(); // or - with one string argument: var fooFactory = ( Func&lt;string, IFoo&gt; )MissingMethod( typeof( IFoo ), typeof( string ) ); var foo = fooFactory.Invoke( "argument for foo" ); </code></pre> <p>Inside the MissingMethod() it should look like:</p> <pre><code>object MissingMethod( Type returnType, params Type[] argTypes ) { // Create the type of Func&lt;&gt; based on the passed returnType and the argTypes var funcType = typeof(Func&lt;,...,&gt;).MakeGenericType( ... ) // Here I have to use the Resolve() method and cast the lambda to the correct type return (cast to funcType)( (arg1, arg2) =&gt; Resolve( arg1, arg2 ) ); } </code></pre> <p>I think that the only way to get my MissingMethod() is, to use reflection.emit.</p> <p>Do you know good resources or tutorials about emitting a lambda or a delegate?</p> <p>Do you see another possible solution for this problem?</p> <p><b>EDIT:</b><br/>Here is a scenario of what I want to achive:</p> <pre><code>static void Main() { var container = new Container(); container.Register&lt;Foo&gt;(); container.Register&lt;ConsumerClass&gt;(); var consumerClass = Container.Resolve&lt;ConsumerClass&gt;(); } class Foo() { public Foo( string argument ) {} } class ConsumerClass { public ConsumerClass( [Inject] Func&lt;string, Foo&gt; factory ) { var foo1 = factory.Invoke( "first foo" ); var foo2 = factory.Invoke( "another foo" ); // ... } } </code></pre> <p>I am trying to implement the Container and the Resolve() method. I know that there is a "Foo" type registered. And I know that its constructor needs a string to be invoked.</p> <p>When I have to resolve the type "ConsumerClass" I see that it wants to get a Func injected. That is not exactly what my container can provide, because normally it provides single instaces to Foo like this:</p> <pre><code>Container.Resolve&lt;Foo&gt;( "argument" ); </code></pre> <p>But nevertheless the container should be able to provide a Func, too. It has all informations needed.</p> <p>But now I am stuck in creating this bound Func&lt;,>. And remeber it could be a Func&lt;,,,>, too. So I am looking for a solution that can create my this delegates on the fly. They have to be castable to the exact bound type.</p> <p><b>EDIT:</b><br/> I am not sure how to describe it better ... I am trying to do something like <a href="http://kohari.org/2009/03/06/fast-late-bound-invocation-with-expression-trees/" rel="nofollow">this</a>. But I do not want to pass a target. Instead of </p> <pre><code>delegate void object LateBoundMethod( object target, object[] arguments ); </code></pre> <p>my delegate should look like</p> <pre><code>delegate void object LateBoundMethod( object[] arguments ); </code></pre> <p>and the target is provided as an instance field. By taking and 'improving' the solution of Marc I get:</p> <pre><code>private Delegate CreateDelegate( Type returnType, Type[] parameterTypes ) { m_Type = returnType; var i = 0; var param = Array.ConvertAll( parameterTypes, arg =&gt; Expression.Parameter( arg, "arg" + i++ ) ); var asObj = Array.ConvertAll( param, p =&gt; Expression.Convert( p, typeof( object ) ) ); var argsArray = Expression.NewArrayInit( typeof( object ), asObj ); var callEx = Expression.Call( null, typeof( FuncFactory ).GetMethod( "Resolve" ), argsArray ); var body = Expression.Convert( callEx, returnType ); var ret = Expression.Lambda( body, param ).Compile(); return ret; } private readonly Container m_Container; private Type m_Type; public object Resolve( params object[] args ) { return m_Container.Resolve( m_Type, args ); } </code></pre> <p>But this is incomplete. The Resolve()-method is not static anymore (because it needs two instance fields) and cannot be called. So the problem here is</p> <pre><code>var callEx = Expression.Call( null, typeof( FuncFactory ).GetMethod( "Resolve" ), argsArray ); </code></pre> <p>Instead of passing null as the first argument I think I need a reference to 'this'. How do I do that?</p> http://stackoverflow.com/questions/939956/howto-emit-a-delegate-or-lambda-expression/939980#939980 5 Answer by Marc Gravell for Howto emit a delegate or lambda expression Marc Gravell 2009-06-02T14:47:37Z 2009-06-02T15:03:08Z <p>The first problem is that <code>Func&lt;...&gt;</code> doesn't exist - you'd need to code to <code>Func&lt;&gt;</code>, <code>Func&lt;,&gt;</code>, <code>Func&lt;,,&gt;</code>, <code>Func&lt;,,,&gt;</code> separately.</p> <p>Now; I understand the code, but I'm not sure what the scenario is that you are trying to solve... can you clarify? There are probably better options...</p> <p>If it is as complex as it sounds, a custom <code>Expression</code> is probably the most appropriate option (far simpler than <code>Reflection.Emit</code>).</p> <p><hr /></p> <p>This works, for example...</p> <pre><code>static Delegate MissingFunc(Type result, params Type[] args) { int i = 0; var param = Array.ConvertAll(args, arg =&gt; Expression.Parameter(arg, "arg" + i++)); var asObj = Array.ConvertAll(param, p =&gt; Expression.Convert(p, typeof(object))); var argsArray = Expression.NewArrayInit(typeof(object), asObj); var body = Expression.Convert(Expression.Call( null, typeof(Program).GetMethod("Resolve"), argsArray), result); return Expression.Lambda(body, param).Compile(); } static void Main() { var func2 = MissingFunc(typeof(string), typeof(int), typeof(float)); } public static object Resolve( params object[] args) { throw new NotImplementedException(); } </code></pre>