Inversion of Control (or IoC) can be quite confusing when it is first encountered.
- What is it?
- What problems does it solve?
- When is it appropriate and when not?
|
Inversion of Control (or IoC) can be quite confusing when it is first encountered.
|
|||||
|
|
The Inversion of Control (IoC) and Dependency Injection (DI) patterns are all about removing dependencies from your code. For example, say your application has a text editor component and you want to provide spell checking. Your standard code would look something like this:
What we've done here is create a dependency between the TextEditor and the SpellChecker. In an IoC scenario we would instead do something like this:
Now, the client creating the TextEditor class has the control over which SpellChecker implementation to use. We're injecting the TextEditor with the dependency. This is just a simple example, there's a good series of articles by Simone Busoli that explains it in greater detail. |
|||||||||||||||||||||
|
|
Inversion of Control is what you get when your program callbacks, e.g. like a gui program. For example, in an old school menu, you might have:
thereby controlling the flow of user interaction. In a GUI program or somesuch, instead we say
So now control is inverted... instead of the computer accepting user input in a fixed order, the user controls the order in which the data is entered, and when the data is saved in the database. Basically, anything with an event loop, callbacks, or execute triggers falls into this category. |
|||||||||||||||||||||
|
|
What is Inversion of Control? If you follow these simple two steps, you have done inversion of control:
There are several techniques possible for each of these steps based on the technology/language you are using for your implementation. -- The inversion part of the Inversion of Control (IoC) is the confusing thing; because inversion is the relative term. The best way to understand IoC is to forget about that word! -- Examples
|
|||||||||||||||
|
|
|||||||||
|
|
Before using Inversion of Control you should be well aware of the fact that it has its pros and cons and you should know why you use it if you do so. Pros:
Cons:
Personally I see the strong points of IoC and I really like them but I tend to avoid IoC whenever possible because it turns your software into a collection of classes that no longer constitute a "real" program but just something that needs to be put together by XML configuration or annotation metadata and would fall (and falls) apart without it. |
|||||||||||||||
|
|
But I think you have to be very careful with it. If you will overuse this pattern, you will make very complicated design and even more complicated code. Like in this example with TextEditor: if you have only one SpellChecker maybe it is not really necessary to use IoC ? Unless you need to write unit tests or something ... Anyway: be reasonable. Design pattern are good practices but not Bible to be preached. Do not stick it everywhere. |
|||
|
|
|
IoC / DI to me is pushing out dependencies to the calling objects. Super simple. The non-techy answer is being able to swap out an engine in a car right before you turn it on. If everything hooks up right (the interface), you are good. |
|||
|
|
|
|||||
|
|
I agree with NilObject, but I'd like to add to this:
If you find yourself copying and pasting code around, you're almost always doing something wrong. Codified as the design principle Once and Only Once. |
|||
|
|
|
It seems that the most confusing thing about "IoC" the acronym and the name for which it stands is that it's too glamorous of a name - almost a noise name. Do we really need a name by which to describe the difference between procedural and event driven programming? OK, if we need to, but do we need to pick a brand new "bigger than life" name that confuses more than it solves? |
|||
|
|
For example, task#1 is to create object. Without IOC concept, task#1 is supposed to be done by Programmer.But With IOC concept, task#1 would be done by container. In short Control gets inverted from Programmer to container. So, it is called as inversion of control. I found one good example here. |
|||||||||
|
|
Inversion of Control is about getting freedom, more flexibility, and less dependency. When you are using a desktop computer, you are slaved (or say, controlled). You have to sit before a screen and look at it. Using keyboard to type and using mouse to navigate. And a bad written software can slave you even more. If you replaced your desktop with a laptop, then you somewhat inverted control. You can easily take it and move around. So now you can control where you are with your computer, instead of computer controlling it. By implementing Inversion of Control, a software/object consumer get more controls/options over the software/objects, instead of being controlled or having less options. |
|||
|
|
In using a container like Castle Windsor, it solves maintenance issues even better. Being able to swap out a component that goes to a database for one that uses file based persistence without changing a line of code is awesome (configuration change, you're done). And once you get into generics, it gets even better. Imagine having a message publisher that receives records and publishes messages. It doesn't care what it publishes, but it needs a mapper to take something from a record to a message.
I wrote it once, but now I can inject many types into this set of code if I publish different types of messages. I can also write mappers that take a record of the same type and map them to different messages. Using DI with Generics has given me the ability to write very little code to accomplish many tasks. Oh yeah, there are testability concerns, but they are secondary to the benefits of IoC/DI. I am definitely loving IoC/DI. 3 . It becomes more appropriate the minute you have a medium sized project of somewhat more complexity. I would say it becomes appropriate the minute you start feeling pain. |
|||
|
|
|
Let to say that we make some meeting in some hotel. Many people, many carafes of water, many plastic cups. When somebody want to drink, she fill cup, drink and throw cup on the floor. After hour or something we have a floor covered of plastic cups and water. Let invert control. The same meeting in the same place, but instead of plastic cups we have a waiter with one glass cup (Singleton) and she all of time offers to guests drinking. When somebody want to drink, she get from waiter glass, drink and return it back to waiter. Leaving aside the question of the hygienic, last form of drinking process control is much more effective and economic. And this is exactly what the Spring (another IoC container, for example: Guice) does. Instead of let to application create what it need using new keyword (taking plastic cup), Spring IoC container all of time offer to application the same instance (singleton) of needed object(glass of water). Think about yourself as organizer of such meeting. You need the way to message to hotel administration that meeting members will need glass of water but not piece of cake. Example:-
Useful links:- |
|||
|
|
Spring-framework-referance.pfd page 34 |
|||
|
|
|
A very simple written explanation can be found here http://binstock.blogspot.in/2008/01/excellent-explanation-of-dependency.html it says
|
|||
|
|