Ruby 'til 6

Written by Piers Cawley on

Oh, I say. It seems that Sam Ruby is another member of the “Ruby ’til [Perl] 6” club. I like Ruby a lot. For the kind dynamic OO/Functional coding style that I espouse, it’s a better Perl than Perl simply because it’s so much less verbose (I got so tired of always unpacking the argument list, it tended to put me off applying the Composed Method pattern anywhere near often enough).

Oh, I say. It seems that Sam Ruby is another member of the “Ruby ’til [Perl] 6” club.

I like Ruby a lot. For the kind dynamic OO/Functional coding style that I espouse, it’s a better Perl than Perl simply because it’s so much less verbose (I got so tired of always unpacking the argument list, it tended to put me off applying the Composed Method pattern anywhere near often enough).

But it’s not my One True Language. Perl 6 looks like it might be an awful lot closer to it. If nothing else, it has Lisp style macros.

A good macro system, especially when it’s combined with an accessible and well abstracted runtime is an awfully useful thing. For instance, consider the Rails controller. In a rails controller, public methods are ‘visible’ as actions that can be accessed via the web (usually with a url of the form /:controller/:action). Protected and private methods aren’t accessible in the same way.

But sometimes it’s quite handy to have a method on the controller that shouldn’t be deemed to be an action, but which you might want to call from a model. The canonical example here is when you’re doing Double Dispatch. Here’s an example of bad code:

results = @search\_results.collect do |item|
case item
when Comment: extract\_comment\_metadata(item)
when Trackback: extract\_trackback\_metadata(item)
else
fail "Oops!"
end
end


Look, we're using a case statement that dispatches on the class of another object! This is a job for Polymorphism. Let's assume that the two `extract_*_metadata` methods need to do some of the things that only a controller can and can't simply be replaced with `extract_metadata` on the Comment and Trackback objects. Here's how I'd rejig the controller code:

    
  • 0 likes
  • 0 reposts
  • 0 replies
  • 0 mentions