Ruby and duck typing: design by contract impossible? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T22:57:31Zhttp://stackoverflow.com/feeds/question/177080http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/177080/ruby-and-duck-typing-design-by-contract-impossible11Ruby and duck typing: design by contract impossible?davetron50002008-10-07T02:56:09Z2008-10-07T12:40:06Z
<p>Method signature in Java:</p>
<pre><code>public List<String> getFilesIn(List<File> directories)
</code></pre>
<p>similar one in ruby</p>
<pre><code>def get_files_in(directories)
</code></pre>
<p>In the case of Java, the type system gives me information about what the method expects and delivers. In Ruby's case, I have <strong>no</strong> clue what I'm supposed to pass in, or what I'll expect to receive.</p>
<p>In Java, the object must formally implement the interface. In Ruby, the object being passed in must respond to whatever methods are called in the method defined here. </p>
<p>This seems highly problematic:</p>
<ol>
<li>Even with 100% accurate, up-to-date documentation, the Ruby code has to essentially expose its implementation, breaking encapsulation. "OO purity" aside, this would seem to be a maintenance nightmare.</li>
<li>The Ruby code gives me <strong>no</strong> clue what's being returned; I would have to essentially experiment, or read the code to find out what methods the returned object would respond to.</li>
</ol>
<p>Not looking to debate static typing vs duck typing, but looking to understand how you maintain a production system where you have almost no ability to design by contract.</p>
<h3>Update</h3>
<p>No one has really addressed the exposure of a method's internal implementation via documentation that this approach requires. Since there are no interfaces, if I'm not expecting a particular type, don't I have to itemize every method I might call so that the caller knows what can be passed in? Or is this just an edge case that doesn't really come up?</p>
http://stackoverflow.com/questions/177080/ruby-and-duck-typing-design-by-contract-impossible/177103#1771030Answer by Camilo Díaz for Ruby and duck typing: design by contract impossible?Camilo Díaz2008-10-07T03:09:24Z2008-10-07T03:09:24Z<p>It's by no means a maintenance nightmare, just another way of working, that calls for consistence in the API and good documentation. </p>
<p>Your concern seems related to the fact that any dynamic language is a dangerous tool, that cannot enforce API input/output contracts. The fact is, while chosing static may seem safer, the better thing you can do in both worlds is to keep a good set of tests that verify not only the type of the data returned (which is the only thing the Java compiler can verify and enforce), but also it's correctness and inner workings(Black box/white box testing).</p>
<p>As a side note, I don't know about Ruby, but in PHP you can use @phpdoc tags to hint the IDE (Eclipse PDT) about the data types returned by a certain method.</p>
http://stackoverflow.com/questions/177080/ruby-and-duck-typing-design-by-contract-impossible/177110#1771103Answer by Kent Fredric for Ruby and duck typing: design by contract impossible?Kent Fredric2008-10-07T03:13:10Z2008-10-07T03:21:02Z<p>Method Validation via duck-typing:</p>
<pre><code>i = {}
=> {}
i.methods.sort
=> ["==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "class", "clear", "clone", "collect", "default", "default=", "default_proc", "delete", "delete_if", "detect", "display", "dup", "each", "each_key", "each_pair", "each_value", "each_with_index", "empty?", "entries", "eql?", "equal?", "extend", "fetch", "find", "find_all", "freeze", "frozen?", "gem", "grep", "has_key?", "has_value?", "hash", "id", "include?", "index", "indexes", "indices", "inject", "inspect", "instance_eval", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "key?", "keys", "kind_of?", "length", "map", "max", "member?", "merge", "merge!", "method", "methods", "min", "nil?", "object_id", "partition", "private_methods", "protected_methods", "public_methods", "rehash", "reject", "reject!", "replace", "require", "respond_to?", "select", "send", "shift", "singleton_methods", "size", "sort", "sort_by", "store", "taint", "tainted?", "to_a", "to_hash", "to_s", "type", "untaint", "update", "value?", "values", "values_at", "zip"]
i.respond_to?('keys')
=> true
i.respond_to?('get_files_in')
=> false
</code></pre>
<p>Once you've got that reasoning down, method signatures are moot because you can test them in the function dynamically. ( this is partially due to not being able do do signature-match-based-function-dispatch, but this is more flexible because you can define unlimited combinations of signatures ) </p>
<pre><code> def get_files_in(directories)
fail "Not a List" unless directories.instance_of?('List')
end
def example2( *params )
lists = params.map{|x| (x.instance_of?(List))?x:nil }.compact
fail "No list" unless lists.length > 0
p lists[0]
end
x = List.new
get_files_in(x)
example2( 'this', 'should', 'still' , 1,2,3,4,5,'work' , x )
</code></pre>
<p>If you want a more assurable test, you can try <a href="http://rspec.info/" rel="nofollow">RSpec</a> for Behaviour driven developement. </p>
http://stackoverflow.com/questions/177080/ruby-and-duck-typing-design-by-contract-impossible/177115#1771152Answer by Alan for Ruby and duck typing: design by contract impossible?Alan2008-10-07T03:16:35Z2008-10-07T03:16:35Z<p>While I love static typing when I'm writing Java code, there's no reason that you can't insist upon thoughtful preconditions in Ruby code (or any kind of code for that matter). When I really need to insist upon preconditions for method params (in Ruby), I'm happy to write a condition that could throw a runtime exception to warn of programmer errors. I even give myself a semblance of static typing by writing:</p>
<pre><code>def get_files_in(directories)
unless File.directory? directories
raise ArgumentError, "directories should be a file directory, you bozo :)"
end
# rest of my block
end
</code></pre>
<p>It doesn't seem to me that the language prevents you from doing design-by-contract. Rather, it seems to me that this is up to the developers.</p>
<p>(BTW, "bozo" refers to yours truly :)</p>
http://stackoverflow.com/questions/177080/ruby-and-duck-typing-design-by-contract-impossible/177127#17712714Answer by Orion Edwards for Ruby and duck typing: design by contract impossible?Orion Edwards2008-10-07T03:26:12Z2008-10-07T03:33:05Z<p>What it comes down to is that <code>get_files_in</code> is a bad name <em>in Ruby</em> - let me explain.</p>
<p>In java/C#/C++, and especially in objective C, the function arguments <em>are part of the name</em>. In ruby they are not.<br />
The fancy term for this is <a href="http://en.wikipedia.org/wiki/Method_overloading" rel="nofollow">Method Overloading</a>, and it's enforced by the compiler.</p>
<p>Thinking of it in those terms, you're just defining a method called <code>get_files_in</code> and you're not actually saying what it should get files in. The arguments are <em>not</em> part of the name so you can't rely on them to identify it.<br />
Should it get files in a directory? a drive? a network share? This opens up the possibility for it to work in all of the above situations.</p>
<p>If you wanted to limit it to a directory, then to take this information into account, you should call the method <code>get_files_in_directory</code>. Alternatively you could make it a method on the <code>Directory</code> class, which <a href="http://www.ruby-doc.org/core/" rel="nofollow">Ruby already does for you</a>.</p>
<p>As for the return type, it's implied from <code>get_files</code> that you are returning an array of files. You don't have to worry about it being a <code>List<File></code> or an <code>ArrayList<File</code>>, or so on, because everyone just uses arrays (and if they've written a custom one, they'll write it to inherit from the built in array).</p>
<p>If you only wanted to get one file, you'd call it <code>get_file</code> or <code>get_first_file</code> or so on. If you are doing something more complex such as returning <code>FileWrapper</code> objects rather than just strings, then there is a really good solution:</p>
<pre><code># returns a list of FileWrapper objects
def get_files_in_directory( dir )
end
</code></pre>
<p>At any rate. You can't enforce contracts in ruby like you can in java, but this is a subset of the wider point, which is that you can't enforce <em>anything</em> in ruby like you can in java. Because of ruby's more expressive syntax, you instead get to more clearly write english-like code which tells other people what your contract is (therein saving you several thousand angle brackets).</p>
<p>I for one believe that this is a net win. You can use your newfound spare time to write some <a href="http://rspec.info" rel="nofollow">specs and tests</a> and come out with a much better product at the end of the day.</p>
http://stackoverflow.com/questions/177080/ruby-and-duck-typing-design-by-contract-impossible/177158#1771581Answer by jop for Ruby and duck typing: design by contract impossible?jop2008-10-07T03:42:18Z2008-10-07T03:42:18Z<p><strong>Short answer:</strong> Automated unit tests and good naming practices.</p>
<p>The proper naming of methods is essential. By giving the name <code>get_files_in(directory)</code> to a method, you are also giving a hint to the users on what the method expects to get and what it will give back in return. For example, I would not expect a <code>Potato</code> object coming out of <code>get_files_in()</code> - it just doesn't make sense. It only makes sense to get a list of filenames or more appropriately, a list of File instances from that method. As for the concrete type of the list, depending on what you wanted to do, the actual type of List returned is not really important. What's important is that you can somehow enumerate the items on that list.</p>
<p>Finally, you make that explicit by writing unit tests against that method - showing examples on how it should work. So that if <code>get_files_in</code> suddenly returns a Potato, the test will raise an error and you'll know that the initial assumptions are now wrong.</p>
http://stackoverflow.com/questions/177080/ruby-and-duck-typing-design-by-contract-impossible/177710#1777101Answer by Darren Greaves for Ruby and duck typing: design by contract impossible?Darren Greaves2008-10-07T09:08:25Z2008-10-07T09:08:25Z<p>I would argue that although the Java method gives you <em>more</em> information, it doesn't give you <em>enough</em> information to comfortably program against.<br />
For example, is that List of Strings just filenames or fully-qualified paths?</p>
<p>Given that, your argument that Ruby doesn't give you enough information also applies to Java.<br />
You're still relying on reading documentation, looking at the source code, or calling the method and looking at its output (and decent testing of course).</p>