Runtime implementation substitution with Ruby - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:27:44Z http://stackoverflow.com/feeds/question/1081717 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081717/runtime-implementation-substitution-with-ruby 4 Runtime implementation substitution with Ruby James Gregory 2009-07-04T07:11:37Z 2009-07-04T07:42:42Z <p>Dependency Injection frameworks in Ruby have been pretty much declared unnecessary. Jamis Buck wrote about this last year in his <a href="http://weblog.jamisbuck.org/2008/11/9/legos-play-doh-and-programming" rel="nofollow">LEGOs, Play-Doh, and Programming</a> blog post.</p> <p>The general accepted alternative seems to be using some degree of constructor injection, but simply supplying defaults.</p> <pre><code>class A end class B def initialize(options={}) @client_impl = options[:client] || A end def new_client @client_impl.new end end </code></pre> <p>This approach is fine by me, but it seems to lack one thing from more traditional setups: a way of substituting implementations at runtime based on some external switch.</p> <p>For example with a Dependency Injection framework I could do something like this (pesudo-C#):</p> <pre><code>if (IsServerAvailable) container.Register&lt;IChatServer&gt;(new CenteralizedChatServer()); else container.Register&lt;IChatServer&gt;(new DistributedChatServer()); </code></pre> <p>This example just registers a different <code>IChatServer</code> implementation depending on whether our centeralized server is available.</p> <p>As we're still just using the constructor in Ruby, we don't have programatic control over the dependencies that are used (unless we specify each one ourselves). The examples Jamis gives seem well suited to making classes more testable, but seem to lack the facilities for substitution.</p> <p>What my question is, is how do you solve this situation in Ruby? I'm open to any answers, including "you just don't need to do that". I just want to know the Ruby perspective on these matters.</p> http://stackoverflow.com/questions/1081717/runtime-implementation-substitution-with-ruby/1081749#1081749 5 Answer by Yehuda Katz for Runtime implementation substitution with Ruby Yehuda Katz 2009-07-04T07:42:42Z 2009-07-04T07:42:42Z <p>In addition to constructor substitution, you could store the information in an instance variable ("attribute"). From your example:</p> <pre><code>class A end class B attr_accessor :client_impl def connect @connection = @client_impl.new.connect end end b = B.new b.client_impl = Twitterbot b.connect </code></pre> <p>You could also allow the dependency to be made available as an option to the method:</p> <pre><code>class A end class B def connect(impl = nil) impl ||= Twitterbot @connection = impl.new.connect end end b = B.new b.connect b = B.new b.connect(Facebookbot) </code></pre> <p>You could also mix-and-match techniques:</p> <pre><code>class A end class B attr_accessor :impl def initialize(impl = nil) @impl = impl || Twitterbot end def connect(impl = @impl) @connection = impl.new.connect end end b = B.new b.connect # Will use Twitterbot b = B.new(Facebookbot) b.connect # Will use Facebookbot b = B.new b.impl = Facebookbot b.connect # Will use Facebookbot b = B.new b.connect(Facebookbot) # Will use Facebookbot </code></pre> <p>Basically, when people talk about Ruby and DI, what they mean is that the language itself is flexible enough to make it possible to implement any number of styles of DI without needing a special framework.</p>