Injecting properties into .NET classes post-compile - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T01:22:36Zhttp://stackoverflow.com/feeds/question/678024http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/678024/injecting-properties-into-net-classes-post-compile0Injecting properties into .NET classes post-compileaoven2009-03-24T15:47:40Z2009-03-31T08:23:14Z
<p>I'd like to implement the ViewModel part of WPF's MVVM pattern without referencing WPF assemblies. The problematic part is command routing, which requires that ViewModels implement properties of type <code>ICommand</code> so that command bindings can work.</p>
<p>Now, I can avoid the <code>ICommand</code> and simply declare the properties as <code>object</code>. Everything still works, so that's that. But what bothers me is, <strong>I still have to declare them</strong>, and I really don't want to, because they feel like <strong>boiler plate code</strong>.</p>
<p>My ViewModels currently look like this:</p>
<pre><code>public class HelloWorldViewModel : ViewModel
{
[BoundProperty]
public string Name { get; set; }
[CommandHandler("SayHello")]
public bool CanSayHello()
{
return Name != "" && Name != null;
}
[CommandHandler("SayHello")]
public void SayHello()
{
View.ShowMessage("Hello, {0}!", Name);
}
public object SayHello { get; private set; }
}
</code></pre>
<p>The <code>CommandHandlerAttribute</code> enables runtime discovery of command handlers (an <code>Action</code> and an optional <code>Func<bool></code>), while the <code>BoundPropertyAttribute</code> is really <strong>an aspect</strong> that injects itself into the property setter and calls <code>INotifyPropertyChanged</code>. I accompish this by using a <strong>compile time IL weaver</strong>.</p>
<p>Ideally, I'd like to make the last line (the SayHello property) implicit, too. There would be no point in having it there in the source if it wasn't for WPF's requirement.</p>
<p>So, naturally, I'm thinking of using the <code>CommandHandlerAttribute</code> aspect to inject the necessary IL into class and essentially <strong>creating the property post-compile</strong>. This is quite hard, although a good IL weaver (such as <strong>PostSharp</strong>) can go a long way to make it easier.</p>
<p>Before I embark on this journey, I'd like to hear what you all think of my approach. Is it sound? Is there a better way? How would/do you do it?</p>
http://stackoverflow.com/questions/678024/injecting-properties-into-net-classes-post-compile/678054#6780540Answer by Reed Copsey for Injecting properties into .NET classes post-compileReed Copsey2009-03-24T15:54:06Z2009-03-24T15:54:06Z<p>My personal opinion is that this is interesting, but I would avoid it in general.</p>
<p>Avoiding boiler-plate code (or code that feels like boiler plate code) has consequences. It may seem like a good idea, since you're not retyping things constantly, but in the long run, you're making it less readable and understandable.</p>
<p>Personally, I try to just setup good code templates to insert the boiler plate code for me, and wrap it in regions so I can hide it in the source code. The 30 seconds it takes to fill in a file with boiler plate in that case is less painful (for me) than the 2 hours I spend, two years later when I'm trying to understand the code, or worse, the two weeks somebody else spends two years later when they're trying to understand my code....</p>
http://stackoverflow.com/questions/678024/injecting-properties-into-net-classes-post-compile/678062#6780620Answer by lsalamon for Injecting properties into .NET classes post-compilelsalamon2009-03-24T15:56:12Z2009-03-24T15:56:12Z<p>Read this <a href="http://www.codethinked.com/post/2009/03/23/To-Inject-Or-Not-To-Inject.aspx" rel="nofollow">To Inject Or Not To Inject</a><br></p>
<p>You know this libraries :</p>
<p><a href="http://kohari.org/" rel="nofollow">Ninject 2 and Extensions</a><br>
<a href="http://www.ninject.org/" rel="nofollow">Ninject</a><br></p>
http://stackoverflow.com/questions/678024/injecting-properties-into-net-classes-post-compile/678143#6781431Answer by Daniel Pratt for Injecting properties into .NET classes post-compileDaniel Pratt2009-03-24T16:19:39Z2009-03-24T16:19:39Z<p>Some time after playing with Prism, but before I'd seem the MVVM stuff, I came up with a strategy that I still think has some validity:</p>
<p>I created an implementation of the ICommand interface based on reflection. The constructor accepted a target object and an operation name. Using reflection, the code looked for a method with name "[operation]", property or method with name "Can[operation]" or "[operation]Enabled" and an event with name "Can[operation]Changed" or "[operation]Enabled Changed". Only the first was required, but the reflected method/property/event were wired up to a pretty basic implementation of the ICommand interface.</p>
<p>I then created an implementation of IValueConverter that would create an instance of the previous class, passing the value to be converted as the target object, and the parameter of the converter being the operation name.</p>
<p>Given the above components, I was then able to, for example, bind a button's Command property directly to the source of the operation (along with specifying the converter), and set the Button's CommandParameter property to the name of the operation. In this way, I got declarative command binding without the command source having carnal knowledge of anything WPF.</p>
http://stackoverflow.com/questions/678024/injecting-properties-into-net-classes-post-compile/678203#6782031Answer by wekempf for Injecting properties into .NET classes post-compilewekempf2009-03-24T16:33:29Z2009-03-24T16:33:29Z<p>To me this sounds too clever by far. There's too much "magic" happening. In particular, I dislike the magic strings and other aspects of your CommandHandlerAttribute. That said, if I were to go down this route, I'd use something akin to the EventAggregator but for commands. IOW, SayHello wouldn't exist on your ViewModel at all. What ever magic creates the command bindings to SayHell() and CanSayHello() would instead locate the command in the global CommandAggregator. As long as we're using magic strings for this, the commands in the CommandAggregator could be lazily created, thus requiring no "boiler plate" coding on your part. All that's left is to create some XAML magic (markup extension) to specify the command on the ICommandSource.</p>
<pre><code><Button Command="{my:AggregateCommand SayHello}"/>
</code></pre>
http://stackoverflow.com/questions/678024/injecting-properties-into-net-classes-post-compile/698286#6982860Answer by Denis Vuyka for Injecting properties into .NET classes post-compileDenis Vuyka2009-03-30T17:52:11Z2009-03-30T17:52:11Z<p>The best way in your case is Proxy or Decorator pattern I think. You can low level entities that are wrapped/decorated with UI/WPF stuff members during runtime. This is the simplest but yet efficient way to save your time and don't bother with frameworks, injections, etc.</p>
<p>The only thing is you will have to design some small infrastructure to wrap your entities with appropriate decorators.</p>
http://stackoverflow.com/questions/678024/injecting-properties-into-net-classes-post-compile/700545#700545-1Answer by Nir for Injecting properties into .NET classes post-compileNir2009-03-31T08:23:14Z2009-03-31T08:23:14Z<p>Take a look at PostSharp <a href="http://www.postsharp.org/" rel="nofollow">http://www.postsharp.org/</a></p>