Featured Post

IOC ModelBinder

I had an idea a couple of days ago, that I decided to play around with, and maybe collect opinions on. The ASP.NET MVC ModelBinder infrastructure is quite exhaustive, and allows you to perform almost any action when a something the developer wants to get data from the request into the domain/data/business...

Read More

IOC ModelBinder

Posted by BernhardGlueck | Posted in .net development, IOC, autofac, c# | Posted on 21-05-2010

Tags: , ,

0

I had an idea a couple of days ago, that I decided to play around with, and maybe collect opinions on. The ASP.NET MVC ModelBinder infrastructure is quite exhaustive, and allows you to perform almost any action when a something the developer wants to get data from the request into the domain/data/business model.

However recently I found myself in a situation where a controller got quite sophisticated and required a lot of dependencies from our Ioc Container of choice ( Autofac ). Since all of those were mandatory dependencies for execution for one or the other action method, our constructor arguments got a little bit out of hand ( I just don’t like constructors with more than, let’s say 4 arguments ). So I decided to build a model binder that injects dependencies into action method calls.

Without further ado, here is the interesting part of the code:

    public class IocBindAttribute : CustomModelBinderAttribute
    {
        public override IModelBinder GetBinder()
        {
            return new IocModelBinder();
        }
    }

    public class IocModelBinder : IModelBinder
    {
        public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
        {
            try
            {
                return GetContainer().Resolve(bindingContext.ModelName, bindingContext.ModelType);
            }
            catch (ComponentNotRegisteredException)
            {
                return GetContainer().Resolve(bindingContext.ModelType);
            }
        }

        private IContainer GetContainer()
        {
            return (HttpContext.Current.ApplicationInstance as IContainerProviderAccessor).ContainerProvider.ApplicationContainer;
        }
    }

    public class EmailController : Controller
    {
        public ActionResult Index()
        {
            return View();
        }

        public ActionResult Send([IocBind]IEmailService emailService,
                                 string from, string to, string subject, string text)
        {
            emailService.Send(from, to, subject, text);

            return RedirectToAction("Index");
        }
    }

As well as the sample project.

Basically you use your container as you like and register the given model binder either globally or via the provided ModelBinder attribute on a more granular level. Note that this code is not meant to be a production implementation, it’s just here to show the idea. The same basic idea can be implemented for virtually any container, or using the common service locator if you choose so.

However I am a bit torn with this idea in the context of architectural design:

Arguments for using it:

  • Reduces a lot of boilerplate code for dependency handling like constructor arguments and storage.
  • If you see each action as a distinct piece of code that is grouped by a container, it better reflects the correspondence between your actions and the dependencies they need, you can see at a glance what dependencies are required by each action, which might not be so obvious when you follow the traditional approach.
  • In the same vein it eases both refactoring as well as unit testing, because you can now treat each action more easily in isolation, move it around to different controllers, or set it up for a test case.

Arguments against using it:

  • If you have a controller whose action methods require such disparate dependencies, then you might have a deeper problem, either your controller is doing to much in terms of the single responsibility principle, or your dependencies are too granular and it might be a good idea to provide some bridge dependency for that case.
  • It mixes the concerns of data flow and the business layer of your application.

So please fire away with the comments to tell me what you think, or what I have done wrong with this.

  • Share/Bookmark

Visual Studio 2010 Beta2 Impressions

Posted by BernhardGlueck | Posted in .net development, VisualStudio, c# | Posted on 26-10-2009

Tags: , , ,

0

Beta 2 of Visual Studio 2010 has arrived and is available for download for just about anyone to grab.

I’ve played around with this release for a week now ( Msdn release was a few days prior to public availability )
and so far my feelings are best described in romantic terms: Love at first sight.

There are so many great features/improvements that I just don’t know where to begin, but I’ll try anyway.

For the first time since Visual Studio 6 back in the 90s, online help is fast again. Microsoft rewrote the complete help
system and based it around a small local Web server that serves Javascript enriched help content.
Hovering on some identifier, pressing F1 and waiting for the new context sensitve help to pop up takes about 0.5 seconds
on my local machine.

TFS Basic is great. I stayed clear of TeamFoundation server for the last releases since my initial evaluation turned out that it did
not offer much over other tools, but required insane ammounts of hardware and installation/administration effort that just were
not easily recouped by it’s functionality.

TFS Basic installs easy, fast ( 20 minutes for me without any error whatsoever ) and runs even on client OS editions if you’re into that.

UML Modelling support has finally arrived, of course it’s the first release, and code generation support seems not to be on the agenda, but
for some fast and simple diagramming it’s certainly enough.

The C++ compiler supports a few things from the upcoming revised standard, like the auto keyword, lambda functions and nullptr.
TR1 support has also matured and so we can write even better standard compliant code right now.
Performance of C++ intellisense seems also much better, especially with larger codebases.
Also C++ finally uses Msbuild for it’s build system as well as project files. So codebases that mix C++ with C# are now much easier to handle
in build environments.

For C# we have of course the new dynamic dispatch features, as well as optional and named parameters, and better co/contravariance support for generics.
I still don’t like dynamic dispatch support, simply because I think it will be used for all the wrong reasons, and because it throws out a lot of the investment
in static source code analysis technology, and proofing program correctness.

On the runtime side of things, of course we have additions to WCF/WPF a completly rewritten Workflow Foundation, and many other small things like
a few conveniance methods ( string.IsNullOrWhiteSpace ).

The Task Parallel library is a godsend, but I am still in fear of it’s usage patterns. I see a lot of developers who are not experienced in multithreading
just use things like Parallel.ForEach or PLINQ because it’s so damn easy thereby ignoring the concurrency issues, producing code that will just fail
at unpredictable times.
At least we have some by default threadsafe collections now, but the performance implications of those must not be overlooked, collections are rarely the
right place for some last effort “catch all” synchronization.

Things like native support for Memory Mapped files, the inclusion of Code Contracts which were previously available as an addon, as well as conveniance
data structures like tuples or sets round off the framework itself.

The client GC can now do parallel garbage collections under certain circumstances ( during full collections a certain number
of allocations can be still be done while the collection is running ).

The server GC does not support this apparently because of lack of development time, which is really not nice, since especially there it would have resolved certain issues in long running applications
that have bitten me in the past.

Last but not least ADO.NET Entity Framework is in it’s second release, supports forward engineering finally, and generally seems much more mature now, time to take it for a spin in the next few days.

All in all a great release, and the nice WPF UI of Visual Studio just make working that little extra spicy, so in conclusion: I really like it !

  • Share/Bookmark

Visual Studio Extensions

Posted by BernhardGlueck | Posted in .net development, VisualStudio, c# | Posted on 20-06-2009

Tags: , ,

0

As a friend asked me today, what kind of tools I use for my day to day .NET development work in addition
to Visual Studio, I thought I’ll whip up a list, and include some not so common tools as well.

So here it is:

Resharper: Not much to say, if you still write C# code without it, you can’t be helped.

Regionerate: Code layout/reformatting on steroids. A time saver if you have to reformat a lot of inherited code.

StyleCop: Code style analysis, based on the .NET framework design guidelines by Microsoft. There is also a plugin for Resharper available that executes the analysis in the background while you work. ( http://www.codeplex.com/StyleCopForReSharper )

Sandcastle for Visual Studio: Allows you to create documentation projects in a solution and automatically build
Msdn style documentation based on xml documentation comments, and manually edited content.

FxCop: Static code analysis. This is of course included in Visual Studio, but I am often surprised how little people make use of it, so I thought I’d mention it anyway.

RockScoller: Addin that provides you with an overview of the source file you’re working on. Great for large files.

Pex: Automated white box testing for your code. Allows you to generate unit test code by executing your code and trying to find the weak spots.

Chess: Automated testing of multithreaded code, to detect interleave patterns that cause deadlocks/livelocks or race conditions in your code. This is a godsend, I can’t reiterate enough how great this tool is.

InteliShade: HLSL syntax highlighting and intellisense support. For the graphics developers among us.

Code Contracts: Code contract support, which allows you to add precondition, postcondition and invariant checking code, enforce it at runtime, and find weak spots through static analysis.

Pinvoke.Net: Easy lookup of P/Invoke signatures for those pesky Win32 API imports ( and a lot of others ).

PostBuild.Net: Code obfuscation, compression and virtualization. Allows you to deploy your .NET client applications to systems without them even needing .NET installed.

PostSharp Great tool for post build code modification with included AOP support and msbuild integration. Use it for post processing your assemblies, injecting code, or modifying it.

Visual WebGui: Build AJAX or Silverlight based RIA applications with a development model similar to Windows Forms.

Script#: Write code in C# with a special class library, and have it automatically translated to client side JavaScript code at build time. Great if you don’t like the JavaScript syntax or object model.

VisualSVN: Work with Subversion from Visual Studio, based on the familiar TortoiseSVN base platform. Beats any other integration hands down.

Of course I left out some others, so if you have any ideas of tools to add, leave a comment.

  • Share/Bookmark

My DailyWTF

Posted by BernhardGlueck | Posted in .net development, c# | Posted on 08-06-2009

Tags: ,

0

Today during work I made a mistake that I want to share with you because I think this is a corner case of LINQ and maybe not immediately clear to everyone. At least it wasn’t clear to me.
The code:

var rootElement = XElement.Load("SomeFile.xml");
var result = from x in rootElement.Elements("Child") where x.Attribute("Value").Value == "0" select x.Elements("GrandChild");

I thought that result would be a normal IEnumerable of XElement where the elements are all grandchildren in all children of the root element combined.
But guess again, the result will be an IEnumerable of IEnumerables, because the select statement selects the return value and does not iterate over it implicitly.

  • Share/Bookmark

CHESS

Posted by BernhardGlueck | Posted in .net development | Posted on 07-06-2009

Tags: , , ,

0

No, I am not playing the game, ( that should be left to way smarter people than me ) but fiddling around with Microsoft CHESS a product by their research group, that is going to be included in Visual Studio 2010. Right now it’s available in Beta form and it simply rocks.

The basic premise is that a new Test Runner for the Microsoft Testing Framework will run your unit tests that make use of multiple threads a large number of times with different thread interleave patterns, and thus detecting many kinds of threading bugs in your code.

After it has found a thread interleave sequence that will make your unit test fail, you can save this information and add it to the unit test itself, making your unit test reproduce the problem each time reliably.

This is simply a godsend, and the magic does not stop there.

While debugging the running unit test you can also break on any thread preemption which are very likely the spots in your code that actually contain the code that is the root cause of your bug.

So give this awesome tool a try, and write even better multithreaded code.

Microsoft Chess

  • Share/Bookmark