I am designing a new system and I want to know IoC and more important when to use it. Does it have to be implemented with interfaces or can be done with classes?
Thanks
|
10
|
I am designing a new system and I want to know IoC and more important when to use it. Does it have to be implemented with interfaces or can be done with classes? Thanks
|
|||
|
|
|
|
IoC (see Inversion of control on Wikipedia) is applicable in case when some component can not perform a task entirely because it doesn't have some necessary information or functionality. IoC allows you to decouple you program in separate components that don't know about each other. One of the most common version of IoC is Dependecy Injection. Each component declares a list of dependencies required to perform it's task. At run time special component called IoC container performs binding between components. It tries to provide values for published component dependencies.
In this example class Foo has a constructor that requires argument of type Boo to perform some action. You can create instance of class Foo using something like this code:
MyContainer - is an IoC container. It takes care of getting instance of Boo somehow and pass it to Foo constructor. To sum it up, IoC allows you to decouple you program in separate parts. It gives you bonuses like:
However IoC makes code harder to understand. If you want to see good example of real-world usage of IoC, have a look at Mircosoft Composite UI Application Block and CompositeWPF Hope my explanation will help you. Regards, |
|||
|
|
|
|
Hey JMS, basically IoC/DI will allow you to define which implementation you're using once, and keep a static copy of your container to reference each time you want to reference it. The Wikipedia will probably help you, but I wanted to reference your second part - yes, dependency injection can be done for classes (ie, every time this class type needs to be passed to a method, use this class), but it's better to use interfaces, because that way you can change which version of a provider, repository, etc you're using just by re-referencing it in your setup. IE, say you had an interface to read a stream in, and you had an XMLStreamReader and a SQLStreamReader implementation. Then you can pass the reference to the interface to your methods and then in your IoC container tell it which one to use. So, you could have public List ReadPeople(IStreamReader reader) and in your setup for your IoC container tell it, every time you expect an IStreamReader use SQLStreamReader. Then if you change your mind later, you only need to change it in the one place (the setup of your container) and it won't matter how many methods ask for an IStreamReader, it will always get the default you told your container to serve up. |
||
|
|
|
|
Since I dug into this myself recently, and kept all the bookmarks, the following I found invaluable for learning about IOC/DI. Martin Fowlers Original Article on IOC/DI An excellent collection of IOC/DI Tutorials Book on IOC/DI From Manning Press Source and Explanation of how to create your own IOC - Cause reading source code is always the best way to understand a concept. |
||
|
|
|
|
Let's say you have a validator for checking whether or not a business is valid in your system. Your "BusinessValidator" may have a field of type AddressValidator which validates the address part of the business. If you want to test the BusinessValidator without executing outside code (i.e. the addressValidator code) then if you have used some sort of IoC/DI in your framework you can easliy "inject" a mock addressValidator in it's place and not have to worry about testing code outside the scope of the class under test. |
||
|
|