Someone on the Herding Code podcast No. 68, http://herdingcode.com/?p=231, stated that IOC containers had no place with Python or Javascript, or words to that effect. I'm assuming this is conventional wisdom and that it applies to all dynamic languages. Why? What is it about dynamic languages that makes IOC containers unnecessary?
|
|
IoC provides a mechanism to break the coupling you get when an object calls 'new' on another class. This coupling ties the calling object with the instantiated implementation of whatever interface it implements. In static languages when you reference a class by name (to call In dynamic languages calling This subtle difference means that in a dynamic language you can usually change what However, personally I find there are two advantages to IoC that I don't get by relying on the dynamic language to allow injection. One of the side effects of passing dependencies in through constructors is that you end up with "building block" classes that are very decoupled, reusable and easy to test. They have no idea what context they are intended to be used in, so you can reuse them all over the place. The other result is having explicit code to do the wiring. Done correctly this cleanly represents the structure of your application and it's decomposition into subsystems and life-cycles. This makes people explicitly decide which life-cycle or subsystem they want to associate their class with (when writing the wiring code), and concentrate on the behavior of the object when writing the class. Like Jörg W Mittag said.. "Those tools are unnecessary, the design principles aren't." I believe they are unnecessary, but done right, still valuable. |
|||||||||
|
|
I have a different opinion. I think IOC containers certainly have a role in dynamic languages. I do not share the opinion that a language being dynamic removes the need for a clearly structured composition of objects. Or that a dynamic language 'provides' the same functionality. An IOC container is simply a tool to manage this organization. Even in a dynamic language I want to 'wire' together components. Without making hard dependencies between those components. Or maybe even without specifying the actual implementation class for those components. |
|||
|
|
Because they are already built into the language. An IoC container provides two things:
Dynamic binding is already part of the dynamic language and the dynamic language is already a dynamic language. Therefore, an IoC container simply doesn't make sense: the language is already an IoC container. Another way to look at it: what is it that an IoC container allows you to do? It allows you to take independent components and wire them up together into an application, without any of the components knowing anything about each other. There is a name for wiring independent pieces together into an application: scripting! (That's pretty much the definition of scripting.) Many dynamic languages happen to also be pretty good at scripting, therefore they are perfect as IoC containers. Please note that I am not talking about Dependency Injection or Inversion of Control. DI and IoC are just as important in dynamic languages as they are in static languages, for exactly the same reasons. What I am talking about are IoC containers and DI frameworks. Those tools are unnecessary, the design principles aren't. |
|||||
|
|
One of the main features of IOC containers is that you can automatically "wire" your modules together at runtime. In dynamic languages you can do this fairly easily without any fancy reflection-based logic. However, IOC containers are a useful pattern that many people understand and it may sometimes be of some benefit to use the same design style. See this article for another viewpoint. |
|||
|
|
|
I agree with the answers above, but I thought I'd chip in a little bit here too regarding testing: In complex systems where there are interactions between sub-systems dependency injection is the best way that I'm aware of to do unit testing. If you have a logic unit X, that has known interactions with logic unit Y, you can create a MockY that has a predefined behaviour and explicitly test the logic of X. Without dependency injection, writing tests is a nightmare. You cannot get good code coverage. Some frameworks (eg. django) work around this problem by spinning up mock database instances to talk to for tests, etc. but it's basically a poor solution to the problem. There should be two sorts of tests:
Now to the question: IoC. What is IoC good for? It's handy for a few things, but its really really good for making it easier to use dependency injection:
Into this logic:
Now, why don't we see IOC in many dynamic languages? I'd say the reason is that we don't see much dependency injection in those languages. ...and that would be because typically the testing done in them is non-existent. I've heard all kinds of excuses for this; interacting with the DOM makes tests hard, my code is simple enough it doesn't require tests, dynamic languages don't need unit tests because they're awesome and expressive. It's all nonsense. There is no excuse for a project without unit tests or unit tests with poor code coverage. ...but it's amazing the number of javascript and python projects I've seen (picking on these two specifically only because they're an area of interest and I've seen more projects of this type than others) with no IoC, no DI, and unsurprisingly, no tests. There is an excellent article on DI on the guice website here: http://code.google.com/p/google-guice/wiki/Motivation There is nothing about dynamic languages that solves any of these problems. Summary:
|
|||
|
|
It's naive view on IoC. Usually IoC also solves:
full article You underestimate the power of IoC |
||||
|
|
|
IoC containers really allow for a compositional layer in statically typed, procedural/OO languages. This compositional layer exists relatively naturally in dynamic languages such as Python or Javascript (consider that Javascript is heavily based on Scheme). You could probably make a good argument that IoC containers are just a generalization of the Interpreter pattern. |
|||
|
|
|
Herding Code 82 (6/6/10) compares Ruby with .NET and includes some detailed discussion on the extent to which .NET needs more IOC/DI than Ruby. |
||||
|
|