views:

472

answers:

2

I have decided to use IoC principles on a bigger project. However, i would like to get something straight that's been bothering me for a long time. The conclusion that i have come up with is that an IoC container is an architectural pattern, not a design pattern. In other words, no class should be aware of its presence and the container itself should be used at the application layer to stitch up all components. Essentially, it becomes an option, on top of a well designed object-oriented model. Having said that, how is it possible to access resolved types without sprinkling IoC containers all over the place (regardless of whether they are abstracted or not)? The only option i see here is to utilize abstract factories which use an IoC container to resolve concrete types. This should be easy enough to swap out for a set of standard factories. Is this a good approach? Has anyone on here used it and how well did it work for you? Is there anything else available?

Thanks!

+1  A: 

Well at the top most part of your application you will need a Bootstrap class that loads the IOC context. This context then will provide the actually instantiated objects and therefore acts as a factory.

But this should only happen with very few objects and the user of your Bootstrap/Factory class should know as little about the underlying architecture as possible. For example if you configured a HTTP server object completely via IOC and you want to start it your Bootstrap class only needs to provide a getHttpServer() method. Then your programs main method only needs to call Bootstrap.getHttpServer().start() to get it running.

The wiring of your other objects has already been done by the application context e.g. you configure Object A via IOC which is part of Object B so you configure Object B with the reference to Object A. None of them usually need to know neither about the container nor the factory.

Daff
+4  A: 

As you have already figured out, Dependency Injection (DI) itself is only a collection of patterns and techniques.

At the root of the application we wire up all necessary object graphs. This place is called the Composition Root, and we can use a DI Container to do this wiring for us, or we can do it manually (Poor Man's DI).

The point is that there's only one place in your application where there's a strong reference to a particular piece of technology (your DI Container). The rest of the app is blissfully unaware of how the object graph was wired up - all that matters is that all required dependencies were correctly injected (and you can use Constructor Injection with Null Guards to guarantee that this is so).

The Abstract Factory pattern is a very useful pattern when it comes to DI. In essence, use Abstract Factory when:

  • You need to supply one or more parameters only known at run-time before you can resolve a dependency.
  • The lifetime of the dependency is conceptually shorter than the lifetime of the consumer.

Examples and more information is available here:

Mark Seemann
I think i'm almost there. Stay with me here :) Let's just say i have IFruit interface which is implemented by class Apple. After registering this concrete type, i want to use it in my button click event in a Windows Form. How would i get to class Apple without explicitly accessing IoC container from the button event?
Sergey
That depends: are there many IFruit instances in your app, or only one? If there's only one, it should already be injected into the class with the button click handler. If there are many, you will most likely need an IFruitFactory that can create an IFruit instance from other run-time values. In the latter case, the IFruitFactory would be the injected dependency.
Mark Seemann
Considering only one IFruit instance exists, the only way i see it being injected into the Form class with the button click event is if i change the form constructor to include the IFruit interface and then register the Form itself with the IoC container to perform constructor injection. Does this sound correct? Thanks for helping out!
Sergey
Yes, that sounds correct.
Mark Seemann
Perfect! I think i am happy now. Thanks for the help!
Sergey