blockenspiel 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt ADDED
@@ -0,0 +1,4 @@
1
+ === 0.0.1 / 2008-10-20
2
+
3
+ * Initial release
4
+
@@ -0,0 +1,686 @@
1
+ == Implementing DSL Blocks
2
+
3
+ by Daniel Azuma, 19 October 2008
4
+
5
+ A <em>DSL block</em> is a construct commonly used in library APIs written in Ruby. This paper is a critical overview of the various implementation strategies proposed for this important pattern. I will first describe the features of DSL blocks, utilizing illustrations from several well-known Ruby libraries. I will then survey and critique five implementation strategies that have been put forth. Finally, I will present a new library, Blockenspiel[http://virtuoso.rubyforge.org/blockenspiel], designed to be a comprehensive implementation of DSL blocks, based on the emerging consensus.
6
+
7
+ === An illustrative overview of DSL blocks
8
+
9
+ If you've done any Ruby programming, chances are you've run into them here and there: mini-DSLs (Domain-Specific Languages) that live inside blocks. Perhaps you've encountered them in Ruby standard library calls, such as <tt>File#open</tt>, a call that lets you interact with a stream while performing automatic setup and cleanup for you:
10
+
11
+ File.open("myfile.txt") do |io|
12
+ io.each_line do |line|
13
+ puts line unless line =~ /^\s*#/
14
+ end
15
+ end
16
+
17
+ Or perhaps you've used the more sophisticated XML {builder}[http://builder.rubyforge.org/] library, which uses nested blocks to match the structure of the XML being generated:
18
+
19
+ builder = Builder::XmlMarkup.new
20
+ builder.page do
21
+ builder.element1('hello')
22
+ builder.element2('world')
23
+ builder.collection do
24
+ builder.interior do
25
+ builder.element3('foo')
26
+ end
27
+ end
28
+ end
29
+
30
+ Or perhaps you've described testing scenarios in {RSpec}[http://rspec.info/], building and documenting test cases using English-sounding commands such as "describe" or "it_should_behave_like"
31
+
32
+ describe Stack do
33
+
34
+ before(:each) do
35
+ @stack = Stack.new
36
+ end
37
+
38
+ describe "(empty)" do
39
+
40
+ it { @stack.should be_empty }
41
+
42
+ it_should_behave_like "non-full Stack"
43
+
44
+ it "should complain when sent #peek" do
45
+ lambda { @stack.peek }.should raise_error(StackUnderflowError)
46
+ end
47
+
48
+ it "should complain when sent #pop" do
49
+ lambda { @stack.pop }.should raise_error(StackUnderflowError)
50
+ end
51
+
52
+ end
53
+
54
+ # etc...
55
+
56
+ Or perhaps you are one of the thousands who were introduced to Ruby via the {Rails}[http://www.rubyonrails.org/] framework, and you're used to setting up configurations via blocks:
57
+
58
+ ActionController::Routing::Routes.draw do |map|
59
+ map.connect ':controller/:action/:id'
60
+ map.connect ':controller/:action/:page/:format'
61
+ # etc...
62
+ end
63
+
64
+ Rails::Initializer.run do |config|
65
+ config.time_zone = 'UTC'
66
+ config.log_level = :debug
67
+ # etc...
68
+ end
69
+
70
+ Blocks are central to Ruby as a language, and it feels natural to Ruby programmers to use them to delimit specialized code. When designing an API for a Ruby library, blocks like these are, in many cases, a natural and effective pattern.
71
+
72
+ === What is a DSL block?
73
+
74
+ Blocks in Ruby are used for a variety of purposes. In many cases, they are used to provide _callbacks_, specifying functionality to inject into an operation. A simple example is the +each+ method, which iterates over a collection, using the given block as a callback that allows the caller to specify processing to perform on each element. When we speak of DSL blocks, we are describing something somewhat different. In a DSL block, the method wants to provide the caller with a _language_ to describe something, and a space in which to use that language.
75
+
76
+ Consider the Rails Routing example above. The Rails application needs to specify how URLs should be interpreted as commands sent to controllers, and, conversely, how command descriptions should be expressed as URLs. Rails thus defines a language that can be used to describe these mappings. The language uses the "connect" verb, a string with embedded codes describing the URL's various parts, and optional parameters that specify further details about the mapping.
77
+
78
+ The Rails Initializer illustrates another common pattern: that of using a DSL block to perform extended configuration of the method call. Again, a language is being defined here: certain property names such as "time_zone" have meanings understood by the Rails framework.
79
+
80
+ Note that in both this case and the Routing case, it is possible to imagine a syntax in which all the necessary information is passed into the method (<tt>Routes#draw</tt> or <tt>Initializer#run</tt>) as parameters. However, a block-based language makes the code much more readable. Rather than trying to express complex information in a parameter list, a block containing descriptive declarations is specified and executed.
81
+
82
+ The RSpec example illustrates a more sophisticated case with many keywords and multiple levels of blocks, but it shares common features with the Rails examples. Again, a language is being defined to describe things that could conceivably have been passed in as parameters, but are being specified in a block for clarity and readability.
83
+
84
+ So far, we can see that DSL blocks have the following properties:
85
+
86
+ * An API requires a caller to communicate complex descriptive information.
87
+ * The API defines a domain-specific language designed to express this information.
88
+ * A method accepts a block from the caller, and executes the block exactly once.
89
+ * The domain-specific language is available to the caller lexically within the block.
90
+
91
+ As far as I have been able to determine, the term "DSL block" originated in 2007 with a {blog post}[http://blog.8thlight.com/articles/2007/05/20/] by Micah Martin. In it, he describes a way to implement certain types of DSL blocks using <tt>instance_eval</tt>, calling the technique the "DSL block pattern". We will discuss the nuances of the <tt>instance_eval</tt> implementation in greater detail below. But first, let us ease into implementation by describing a simple strategy that has worked very well for many libraries, including Rails.
92
+
93
+ === Implementation strategy 1: block parameters
94
+
95
+ In 2006, Jamis Buck posted a set of articles describing the Rails routing implementation. Tucked away at the top the {first article}[http://weblog.jamisbuck.org/2006/10/2/under-the-hood-rails-routing-dsl] is a code snippet showing the DSL block implementation for Rails routing. This code, along with some of its context from the file <tt>action_controller/routing/route_set.rb</tt>, is listed below.
96
+
97
+ class RouteSet
98
+
99
+ class Mapper
100
+ def initialize(set)
101
+ @set = set
102
+ end
103
+
104
+ def connect(path, options = {})
105
+ @set.add_route(path, options)
106
+ end
107
+ # ...
108
+ end
109
+
110
+ # ...
111
+
112
+ def draw
113
+ clear!
114
+ yield Mapper.new(self)
115
+ named_routes.install
116
+ end
117
+
118
+ # ...
119
+
120
+ def add_route(path, options = {})
121
+ # ...
122
+
123
+ Recall how we specify routes in Rails: we call the +draw+ method, and pass it a block. The block receives a parameter that we call "+map+". We can then create routes by calling the +connect+ method on the parameter.
124
+
125
+ ActionController::Routing::Routes.draw do |map|
126
+ map.connect ':controller/:action/:id'
127
+ map.connect ':controller/:action/:page/:format'
128
+ # etc.
129
+ end
130
+
131
+ It should be fairly easy to see how the code above accomplishes this. The +draw+ method creates an object of class +Mapper+. The "Mapper" class defines the domain-specific language, in particular the +connect+ method that we are so familiar with. Note how its implementation is simply to proxy those calls into the routing system: it keeps an instance variable called "<tt>@set</tt>" that points back at the +RouteSet+ we are modifying. Then, +draw+ yields the mapper instance back to the block, where we receive it as our +map+ variable.
132
+
133
+ A large number of DSL block implementations are variations on this theme. We define a proxy class (+Mapper+ in this case) that exposes the domain-specific language we want and communicates back to the system we are describing. We then yield an instance of that proxy back to the block, which receives it as a parameter. The block then manipulates the DSL using its parameter.
134
+
135
+ This pattern is extremely powerful and pervasive. It is simple and clean to implement, and straightforward to use by the caller. The caller knows exactly when it is interacting with the DSL: when it calls methods on the block parameter.
136
+
137
+ However, some have argued that it is too verbose. Why, in a DSL, is it necessary to litter the entire block with references to the block variable? If we know that the caller is supposed to be interacting with the DSL in the block, is it really necessary to have the explicit parameter? Perhaps Rails routing, for example, could be specified more succinctly like the following, in which the +map+ variable is implied.
138
+
139
+ ActionController::Routing::Routes.draw do
140
+ connect ':controller/:action/:id'
141
+ connect ':controller/:action/:page/:format'
142
+ # etc.
143
+ end
144
+
145
+ The differences become even more clear if you have nested blocks. Because Ruby 1.8 does not have block-local variables, nested blocks need different variable names. Consider an imaginary DSL block that looks like this:
146
+
147
+ create_container do |container|
148
+ container.create_subcontainer do |subcontainer1|
149
+ subcontainer1.create_subcontainer do |subcontainer2|
150
+ subcontainer2.create_object do |objconfig|
151
+ objconfig.set_value(3)
152
+ end
153
+ end
154
+ subcontainer1.create_subcontainer do |subcontainer3|
155
+ subcontainer3.create_object do |objconfig2|
156
+ objconfig2.set_value(1)
157
+ end
158
+ end
159
+ end
160
+ end
161
+
162
+ We might consider it nicer to see code that looks like this:
163
+
164
+ create_container do
165
+ create_subcontainer do
166
+ create_subcontainer do
167
+ create_object do
168
+ set_value(3)
169
+ end
170
+ end
171
+ create_subcontainer do
172
+ create_object do
173
+ set_value(1)
174
+ end
175
+ end
176
+ end
177
+ end
178
+
179
+ In the next section we examine an alternate implementation that supports such usage. But first, let us summarize our discussion of the "block parameter" implementation.
180
+
181
+ *Implementation*:
182
+
183
+ * Create a proxy class defining the DSL
184
+ * Yield the proxy object to the block as a parameter.
185
+
186
+ *Pros*:
187
+
188
+ * Easy to implement
189
+ * Clear syntax for the caller
190
+ * Clear separation between the DSL and surrounding code
191
+
192
+ *Cons*:
193
+
194
+ * Verbose: requires a block parameter
195
+
196
+ *Verdict*: Use it if you want a simple, effective DSL block and don't mind requiring a parameter.
197
+
198
+ === Implementation strategy 2: instance_eval
199
+
200
+ Micah Martin's post[http://blog.8thlight.com/articles/2007/05/20/] describes an alternate implementation strategy that does not require the block to take a parameter. Instead, he suggests using a powerful, if sometimes confusing, Ruby metaprogramming tool called <tt>instance_eval</tt>. This method, defined on the +Object+ class so it is available to every object, has a simple function: it executes a block given it, but does so with the +self+ reference redirected to the receiver. Hence, within the block, calling a method, or accessing an instance variable or class variable, (or, in Ruby 1.9, accessing a constant), will begin at a different place.
201
+
202
+ It is perhaps instructive to see an example. Let's create a simple class
203
+
204
+ Class C
205
+ def initialize
206
+ @instvar = 1
207
+ end
208
+ def foo
209
+ puts "in foo"
210
+ end
211
+ end
212
+
213
+ Things to note here is that the method +foo+ and the instance variable <tt>@instvar</tt> are defined on instances of +C+. Now let's <tt>instance_eval</tt> an instance of C from another class.
214
+
215
+ class Tester
216
+ def test
217
+ puts @instvar.inspect # prints "nil" since the Tester object has no @instvar
218
+ c = C.new # create a new instance of C
219
+ c.instance_eval do # change self to point to c during the block
220
+ puts @instvar.inspect # prints "1" since self now points at c
221
+ @instvar = 2 # changes c's @instvar to 2
222
+ foo # calls c's foo and prints "in foo"
223
+ puts c == self # prints "true". The local variable c is still accessible
224
+ end # end of the block. self is now back to the Tester instance
225
+ puts @instvar.inspect # prints "nil" since Tester still has no @instvar
226
+ foo # NameError since Tester has no foo method.
227
+ end
228
+ end
229
+ Tester.new.test # Runs the above test
230
+
231
+ How does this help us? Notice that within the <tt>instance_eval</tt> block, the methods of +c+ can be called without explicitly naming +c+ because the +self+ reference points to +c+. So in the Rails Routing example, if we could use <tt>instance_eval</tt> to get +self+ to point to the +Mapper+ instance in the block, then we wouldn't need to pass it explicitly as a parameter, and the block could call methods on it without explicitly naming it.
232
+
233
+ Here is a revised version of the Rails routing code:
234
+
235
+ class RouteSet
236
+
237
+ class Mapper
238
+ def initialize(set)
239
+ @set = set
240
+ end
241
+
242
+ def connect(path, options = {})
243
+ @set.add_route(path, options)
244
+ end
245
+ # ...
246
+ end
247
+
248
+ # ...
249
+
250
+ # We need to pass the block itself to instance_eval, so get it
251
+ # as a parameter to the draw method.
252
+ def draw(&block)
253
+ clear!
254
+ map = Mapper.new(self) # Create the proxy object as before
255
+ map.instance_eval(&block) # Call the block, setting self to point to map.
256
+ named_routes.install
257
+ end
258
+
259
+ # ...
260
+
261
+ def add_route(path, options = {})
262
+ # ...
263
+
264
+ This modified version of the routing API now no longer requires a block parameter, and the DSL is correspondingly more succinct. Sounds like a win all around, right? Well, not so fast. Our implementation here has a number of subtle side effects. Suppose, for instance, we were to specify our routing using a method to help us generate URLs:
265
+
266
+ URL_PREFIX = 'mywebsite/:controller/:action/'
267
+ def makeurl(*params)
268
+ URL_PREFIX + params.map{ |e| e.inspect }.join('/')
269
+ end
270
+
271
+ Using the above method, for example:
272
+
273
+ makeurl(:id, :style) # --> "mywebsite/:controller/:action/:id/:style"
274
+
275
+ Our <tt>routes.rb</tt> file, utilizing our "improvement" to the routing DSL, might now like this:
276
+
277
+ URL_PREFIX = 'mywebsite/:controller/:action/'
278
+ def makeurl(*params)
279
+ URL_PREFIX + params.map{ |e| e.inspect }.join('/')
280
+ end
281
+
282
+ ActionController::Routing::Routes.draw do
283
+ connect makeurl :id
284
+ connect makeurl :page, :format
285
+ # etc.
286
+ end
287
+
288
+ Looks nice, right? Except that when we try to run it, we get:
289
+
290
+ NoMethodError: undefined method `[]' for :id:Symbol
291
+ from /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.1/lib/action_controller/routing/builder.rb:168:in `build'
292
+ from /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.1/lib/action_controller/routing/route_set.rb:261:in `add_route'
293
+ ...
294
+
295
+ What's up with that cryptic error? After some furious digging into the guts of Rails, we discover to our surprise that the method "makeurl" is being called on the <em>+Mapper+</em> object, rather than calling our makeurl helper method. And then it dawns on us. We used <tt>instance_eval</tt> to change +self+ to point to the +Mapper+ proxy inside the block, and it did exactly what we asked. It let us call the +connect+ method on the +Mapper+ without having to pass it in as a block parameter. But it similarly also tried to call +makeurl+ on the +Mapper+. The helper method we so cleverly wrote is being bypassed.
296
+
297
+ The problem gets worse. Changing +self+ affects not only how methods are looked up, but also how instance variables are looked up. For example, we are now able to do this:
298
+
299
+ ActionController::Routing::Routes.draw do
300
+ @set = nil
301
+ connect ':controller/:action/:id' # Exception raised here!
302
+ connect ':controller/:action/:page/:format'
303
+ # etc.
304
+ end
305
+
306
+ What happened? If we recall, <tt>@set</tt> is used by the +Mapper+ object to point back to the routing +RouteSet+. It is how the proxy knows what it is proxying for. But since we've used <tt>instance_eval</tt>, we now have free rein over the +Mapper+ object's internal instance variables, including the ability to clobber them. Furthermore, maybe we were actually expecting to access our own <tt>@set</tt> variable, and we haven't done that. Any instance variables from the caller's closure are no longer accessible inside the block.
307
+
308
+ The problem gets even worse. If we think about the cryptic error message we got when we tried to use our +makeurl+ helper method, it should dawn on us that we've run into an ambiguity inherent in dropping the block parameter. If +self+ has changed inside the block, and we tried to call +makeurl+, wouldn't we expect a +NoMethodError+ to be raised for +makeurl+ on the +Mapper+ class, rather than for "<tt>[]</tt>" on the +Symbol+ class? What happened? Then we remember that Rails's routing DSL supports named routes. You do not have to call the specific +connect+ method to create a route. In fact, you can call _any_ method name. It is thus ambiguous, when we invoke +makeurl+, whether we mean our helper method or a named route called "makeurl". Rails assumed we meant the named route, but in fact that isn't what we had intended.
309
+
310
+ This all sounds pretty bad. Do we give up on <tt>instance_eval</tt>? Some members of the Ruby community have, and indeed the technique has generally fallen out of favor in major libraries. Jim Weirich originally[http://onestepback.org/index.cgi/Tech/Ruby/BuilderObjects.rdoc] utilized <tt>instance_eval</tt> in the XML Builder library illustrated above, but later deprecated and removed it because of its surprising behavior.
311
+
312
+ There are, however, a few specific exceptions. RSpec's DSL is intended as a class-constructive language: it constructs ruby classes behind the scenes. In the RSpec example at the beginning of this paper, you may notice the use of the <tt>@stack</tt> instance variable. In fact, this is intended as an instance variable of the RSpec test story being written, and as such, <tt>instance_eval</tt> is required because of the kind of language that RSpec wants to use. But in more common cases, such as specifying configuration, <tt>instance_eval</tt> does not give us the most desirable behavior. The general consensus now, expressed for example in recent articles from Why[http://hackety.org/2008/10/06/mixingOurWayOutOfInstanceEval.html] and {Ola Bini}[http://olabini.com/blog/2008/09/dont-overuse-instance_eval-and-instance_exec/], is that it should be avoided.
313
+
314
+ So does this mean we're stuck with block parameters for better or worse? Not quite. Several alternatives have been proposed recently, and we'll take a look at them in the next few sections. But first, let's summarize the discussion of <tt>instance_eval</tt>.
315
+
316
+ *Implementation*:
317
+
318
+ * Create a proxy class defining the DSL
319
+ * Use <tt>instance_eval</tt> to change +self+ to the proxy in the block.
320
+
321
+ *Pros*:
322
+
323
+ * Easy to implement
324
+ * Concise: does not require a block parameter
325
+ * Useful for class-constructive DSLs
326
+
327
+ *Cons*:
328
+
329
+ * Surprising lookup behavior for helper methods
330
+ * Surprising lookup behavior for instance variables
331
+ * Breaks encapuslation of proxy class
332
+ * Possibility of a helper method vs DSL method ambiguity
333
+
334
+ *Verdict*: Use it if you are writing a DSL that constructs classes or modifies class internals. Otherwise avoid it. There are better alternatives.
335
+
336
+ === Implementation strategy 3: delegation
337
+
338
+ In our discussion of <tt>instance_eval</tt>, a major problem we identified is that helper methods, or indeed any other methods from the calling context, are not available within the block. One way to improve the situation, perhaps, is by redirecting any methods not defined in the DSL (that is, not defined on the proxy object) back to the original context. That way, we still have access to our helper methods--they'll appear to be part of the DSL. This approach was proposed by Dan Manges in his {blog}[http://www.dcmanges.com/blog/ruby-dsls-instance-eval-with-delegation].
339
+
340
+ The implementation here is not difficult, if we pull out another tool from Ruby's metaprogramming toolbox, <tt>method_missing</tt>. This method is called whenever you call a method that is not explicitly defined on an object's class. It provides a "last ditch" opportunity to handle the method before Ruby bails with a dreaded +NoMethodError+. Again, an example is probably useful here.
341
+
342
+ class C
343
+ def foo
344
+ puts "in foo"
345
+ end
346
+ def method_missing(name, *params)
347
+ puts "undefined method #{name.inspect} called with params: #{params.inspect}"
348
+ end
349
+ end
350
+
351
+ c = C.new
352
+ c.foo # prints "in foo"
353
+ c.bar # prints "undefined method :bar called with params: []"
354
+ c.baz(1,2) # prints "undefined method :baz called with params: [1,2]"
355
+
356
+ How does this help us? Well, our goal is to redirect any calls that aren't available in the DSL, back to the block's original context. To do that, we simply define <tt>method_missing</tt> on our proxy class. In that method, we delegate the call, using +send+, back to the original +self+ from the block's context.
357
+
358
+ The remaining trick is how to get the original +self+. This can be done with a little bit of hackery if we realize that any +Proc+ object lets you access the +binding+ of the context where it came from. We can get the original +self+ reference by evaluating "self" in that binding.
359
+
360
+ Going back to our modification of the Rails routing code, let's see what this looks like.
361
+
362
+ class RouteSet
363
+
364
+ class Mapper
365
+ # We save the block's original "self" reference also, so that we
366
+ # can redirect unhandled methods back to the original context.
367
+ def initialize(set, original_self)
368
+ @set = set
369
+ @original_self = original_self
370
+ end
371
+
372
+ def connect(path, options = {})
373
+ @set.add_route(path, options)
374
+ end
375
+
376
+ # ...
377
+
378
+ # Redirect all other methods
379
+ def method_missing(name, *params, &blk)
380
+ @original_self.send(name, *params, &blk)
381
+ end
382
+ end
383
+
384
+ # ...
385
+
386
+ def draw(&block)
387
+ clear!
388
+ original_self = Kernel.eval('self', block.binding) # Get the block's context self
389
+ map = Mapper.new(self, original_self) # Give it to the proxy
390
+ map.instance_eval(&block)
391
+ named_routes.install
392
+ end
393
+
394
+ # ...
395
+
396
+ def add_route(path, options = {})
397
+ # ...
398
+
399
+ Now people familiar with how Rails works will probably object that +Mapper+ already _has_ a <tt>method_missing</tt> defined. It's used to implement the named routes that caused the ambiguity we described earlier regarding our +makeurl+ helper method. By replacing Rails's <tt>method_missing</tt> with my own <tt>method_missing</tt>, I effectively disable named routes. Granted, I'm ignoring that issue right now, and just trying to illustrate how method delegation works. As long as we don't use named routes, our +makeurl+ example will now work as we expect:
400
+
401
+ URL_PREFIX = 'mywebsite/:controller/:action/'
402
+ def makeurl(*params)
403
+ URL_PREFIX + params.map{ |e| e.inspect }.join('/')
404
+ end
405
+
406
+ ActionController::Routing::Routes.draw do
407
+ connect makeurl :id
408
+ connect makeurl :page, :format
409
+ # etc.
410
+ end
411
+
412
+ While this would appear to have solved the helper method issue, it does nothing to address the other issues we encountered. For example, invoking instance variables inside the block will still reference instance variables of the Mapper proxy object. There is, as far as I know, no way to delegate instance variable lookup. By using <tt>instance_eval</tt>, we still break encapsulation of the proxy class. And we have not solved the fundamental ambiguity in the method names such as "makeurl". Indeed, that ambiguity really is inherent to the goal of eliminating the block parameter. Without a block parameter, it becomes much harder, syntactically, to specify whether a method should be directed to the DSL or somewhere else.
413
+
414
+ There are several variations on the delegation theme that have been proposed. One such variation uses a technique proposed by Jim Weirich called {MethodDirector}[http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/19153]. In this variation, we create a small object whose sole purpose is to receive methods and delegate them to whatever object it thinks should handle them. Utilizing Jim's +MethodDirector+ implementation rather than adding a <tt>method_missing</tt> to our +Mapper+ proxy, we could rewrite the +draw+ method as follows:
415
+
416
+ def draw(&block)
417
+ clear!
418
+ original_self = Kernel.eval('self', block.binding) # Get the block's context self
419
+ map = Mapper.new(self) # Get the proxy
420
+ director = MethodDirector.new([map, original_self]) # Create a director
421
+ director.instance_eval(&block) # Use the director as self
422
+ named_routes.install
423
+ end
424
+
425
+ The upshot is not much different from Manges's delegation technique. Method calls get delegated in approximately the same way (though Weirich speculates that +MethodDirector+'s dispatch process may be slow). Within the block, +self+ now points to the +MethodDirector+ object rather than the +Mapper+ object. This means that we're no longer breaking encapsulation of the mapper proxy (but we are breaking the +MethodDirector+'s encapsulation.) We still cannot access instance variables from the block's context, though we no longer clobber +Mapper+'s variables. In short, it might be considered a slight improvement, but not much, at a possible performance cost.
426
+
427
+ Let's wrap up our discussion of delegation and then delve into some different, and perhaps more useful, ideas.
428
+
429
+ *Implementation*:
430
+
431
+ * Create a proxy class defining the DSL
432
+ * Use <tt>method_missing</tt> to delegate unhandled methods back to the block's context.
433
+ * Use <tt>instance_eval</tt> to change +self+ to the proxy in the block.
434
+
435
+ *Pros*:
436
+
437
+ * Concise: does not require a block parameter
438
+ * Better than a straight <tt>instance_eval</tt> in that it handles helper methods
439
+
440
+ *Cons*:
441
+
442
+ * Still exhibits surprising lookup behavior for instance variables
443
+ * Still breaks encapuslation of proxy class
444
+ * Does nothing to solve the helper method vs DSL method ambiguity
445
+ * Harder to implement than a simple <tt>instance_eval</tt>
446
+
447
+ *Verdict*: Use it for cases where <tt>instance_eval</tt> is appropriate (i.e. if you are writing a DSL that constructs classes or modifies class internals) and are worried about helper methods being available. Otherwise avoid it.
448
+
449
+ === Implementation strategy 4: arity detection
450
+
451
+ Intrigued by the discussion surrounding <tt>instance_eval</tt> and DSL blocks, James Edward Gray II (of {RubyQuiz}[http://rubyquiz.com/] fame) chimed in with a compromise. In his {blog}[http://blog.grayproductions.net/articles/dsl_block_styles], he argues that the the issue boils down to two basic strategies: block parameters and <tt>instance_eval</tt>, both of which have their own strengths and weaknesses. On one hand, block parameters avoid surprising behavior and ambiguity in exchange for somewhat more verbose syntax. On the other hand, <tt>instance_eval</tt> offers a more concise and perhaps more pleasing syntax in exchange for some possibly questionable semantics. Either solution might be more appropriate in different circumstances. Thus, why not let the _caller_ decide which one to use?
452
+
453
+ This is in fact easier to do than we might think. When you call a method using a DSL block, you already make the choice to have your block take a parameter or not. The caller does one of the following:
454
+
455
+ ActionController::Routing::Routes.draw do |map|
456
+ map.connect ':controller/:action/:id'
457
+ map.connect ':controller/:action/:page/:format'
458
+ # etc.
459
+ end
460
+
461
+ or
462
+
463
+ ActionController::Routing::Routes.draw do
464
+ connect ':controller/:action/:id'
465
+ connect ':controller/:action/:page/:format'
466
+ # etc.
467
+ end
468
+
469
+ It is in fact possible for the method itself to detect which case it is, just by examining the block. Every +Proc+ object provides a method called +arity+, which returns a notion of how many parameters the block expects. If you receive a block that expects a parameter, just use the block parameter strategy. If you receive a block that doesn't expect a parmaeter, use <tt>instance_eval</tt> or one of its modifications. Under this technique, our Routing +draw+ method might look like this:
470
+
471
+ def draw(&block)
472
+ clear!
473
+ map = Mapper.new(self) # Create the proxy object as before
474
+ if block.arity == 1
475
+ block.call(map) # Block takes one parameter: use block parameter technique
476
+ else
477
+ map.instance_eval(&block) # otherwise, use instance_eval technique.
478
+ end
479
+ named_routes.install
480
+ end
481
+
482
+ Gray's proposal has a compelling advantage. The basis for the entire discussion is the suggestion that eliminating block parameters is desirable for the caller, and the objections raised are also, almost without exception, based on the experience of the caller. The basic question is thus whether the _caller_ ought to consider the benefits of eliminating block parameters to outweigh the costs. Therefore, it makes sense to put that choice in the hands of the caller rather than letting the library API designer dictate one choice or the other.
483
+
484
+ For example, one apparently inherent issue with a DSL block style that eliminates block parameters is the ambiguity between DSL methods and helper methods. By giving the caller the choice, we at once solve the ambiguity by providing a language for it. If the caller does not need to distinguish between the two, because she is not using helper methods or named routes, then she can choose to omit the block parameter and use <tt>instance_eval</tt> without harm. If, on the other hand, she does need to distinguish between the two, as in the case of Rails routing where any method name could be a DSL method because of the named routes feature, then she can choose to make the block parameter explicit.
485
+
486
+ There is, however, a subtle disadvantage to providing the choice. By effectively allowing two DSL styles, a library that offers Gray's choice dilutes the identity and "branding" of its own DSL. If there are two "dialects" of the DSL, one that uses a block parameter and one that does not, it becomes harder for programmers to recognize the DSL. The two dialects might develop separate followings and distinct "best-practices" on account of their syntactic differences, and the overall power of the DSL is diminished. The overall cost of this diluting effect is of course difficult to measure, but it cannot be ignored when developing a DSL.
487
+
488
+ Finally, there are some cases when one or the other is specifically called for by the nature of the DSL being implemented. RSpec is a good example: it requires <tt>instance_eval</tt> in order to support access to the test story's instance variables. Allowing the caller to choose would not make sense in this case.
489
+
490
+ Let us summarize Gray's arity detection technique, and then proceed to an interesting new idea recently proposed by Why The Luck Stiff.
491
+
492
+ *Implementation*:
493
+
494
+ * Create a proxy class defining the DSL
495
+ * Detect the choice of the caller based on block arity.
496
+ * Use either a block parameter or <tt>instance_eval</tt> to invoke the block
497
+
498
+ *Pros*:
499
+
500
+ * Best of both worlds.
501
+ * Puts the choice in the hands of the caller, who can best make the decision
502
+ * Implementation cost is not significant.
503
+
504
+ *Cons*:
505
+
506
+ * Not an all-encompassing solution-- either choice still has its own pros and cons
507
+ * Possibility of dilution of DSL branding.
508
+
509
+ *Verdict*: Use it for most cases when it is not clear whether block parameters or <tt>instance_eval</tt> is clearly better.
510
+
511
+ === Implementation strategy 5: mixins
512
+
513
+ One of the most interesting entries into the DSL blocks discussion was proposed by Why The Lucky Stiff in his {blog}[http://hackety.org/2008/10/06/mixingOurWayOutOfInstanceEval.html]. Why observes that the problem with <tt>instance_eval</tt> is that it does too much. A DSL block merely wants to be able to intercept and respond to certain method calls, whereas <tt>instance_eval</tt> actually changes +self+, which has the additional side effects of blocking access to other methods and instance variables, and breaking encapsulation. A better solution, he maintains, is not to change +self+, but instead temporarily to add the DSL's methods to the block's context for the duration of the block. That is, instead of having the DSL proxy object delegate back to the block's context object, do the opposite: cause the block's context object to delegate to the DSL proxy object.
514
+
515
+ Implementing this is actually harder than it sounds. We need to take the block context object, dynamically add methods to it before calling the block, and then dynamically remove them afterward. We already know how to get the block context object, but adding and removing methods requires some more Ruby metaprogramming wizardry. And now we're stretching our toolbox to the breaking point.
516
+
517
+ Ruby provides tools for dynamically defining methods on and removing methods from an existing module. We might be tempted to try something like this:
518
+
519
+ def draw(&block)
520
+ clear!
521
+ save_self = self
522
+ original_self = Kernel.eval('self', block.binding)
523
+ original_self.class.module_eval do
524
+ define_method(:connect) do |path,options|
525
+ save_self.add_route(path,options)
526
+ end
527
+ end
528
+ yield
529
+ original_self.class.module_eval do
530
+ remove_method(:connect)
531
+ end
532
+ named_routes.install
533
+ end
534
+
535
+ This implementation, however, is fraught with problems. Notably, we are modifying the entire class of objects, including instances other than <tt>original_self</tt>, which is probably not what we intended. In addition, we could be unknowingly clobbering another +connect+ method defined on <tt>original_self</tt>'s class. (There are, of course, many other problems that I'm just ignoring for the sake of clarity, such as exception safety, and the fact that the +options+ parameter cannot take a default value when using <tt>define_method</tt>. Suffice to say that the above implementation is irrevocably broken.)
536
+
537
+ What we would really like is a way to add methods to just one object temporarily, and then remove them, restoring the original state (including any methods we may have overridden when we added ours.) Ruby _almost_ provides a reasonable way to do this, using the +extend+ method. This method lets you add a module's methods to a single object, like this:
538
+
539
+ module M
540
+ def foo
541
+ puts "foo called"
542
+ end
543
+ end
544
+
545
+ s = 'hello'
546
+ t = 'world'
547
+ s.extend(M) # adds the "foo" method only to object s, not to the entire string class
548
+ s.foo # prints "foo called"
549
+ t.foo # NameError: t is unchanged
550
+
551
+ Unfortunately, there is no way to remove the module from the object. Ruby has no "unextend" capability. This omission led Why to implement it himself as a Ruby language extension, lovingly entitled {"mixico"}[http://github.com/why/mixico/tree/master]. The name comes from the library's ability to add and remove "mixins" at will. A similar library exists as a gem called {mixology}[http://www.somethingnimble.com/bliki/mixology]. The two libraries use different APIs but perform the same basic function. For the discussion below, I will assume mixico is installed. However, the library I describe in the next section uses mixology because it is available as a gem.
552
+
553
+ Using mixico, we can now write the +draw+ method like this:
554
+
555
+ def draw(&block)
556
+ clear!
557
+ Module.mix_eval(MapperModule, &block)
558
+ named_routes.install
559
+ end
560
+
561
+ Wow! That was simple. Mixico even handles all the eval-block-binding crap for us. But the simplicity is a little deceptive: when we want to do a robust implementation, we run into two issues. First, we run into a challenge if we want to support multiple DSL blocks being invoked at once: for example in the case of nested blocks or multithreading. It is possible in such cases that a MapperModule is already mixed into the block's context. The <tt>mix_eval</tt> method by itself, as of this writing, doesn't handle this case well: the inner invocation will remove the module prematurely. Additional logic is necessary to track how many nested invocations (or invocations from other threads) want to mix-in each particular module into each object.
562
+
563
+ The other challenge is that of creating the +MapperModule+ module, implementing the +connect+ method and any others we want to mix-in. Because we're adding methods to someone else's object, we need to be as unobtrusive as possible, yet we need to provide the necessary functionality, including invoking the <tt>add_route</tt> method back on the +RouteSet+. This is unfortunately not trivial. I'll describe a full implementation in the next section on Blockenspiel, but for now let's explore some possible approaches.
564
+
565
+ Rails's original +Mapper+ proxy class, we recall from our earlier discussion, used an instance variable, <tt>@set</tt>, which pointed back to the +RouteSet+ instance and thus provided a way to invoke <tt>add_route</tt>. One approach could be to add such an instance variable to the block's context object, so it's available in methods of +MapperModule+. This seems to be the easiest approach, but it is also dangerous because it intrudes on the context object, adding an instance variable and potentially clobbering one used by the caller. Furthermore, in the case of nested blocks that try to add methods to the same object, the two blocks may clobber each other's instance variables.
566
+
567
+ Instead of adding information to the block's context object, it may be plausible simply to stash the information away in a global location, such as a class variable, that can be accessed by the +MapperModule+ from within the block. Again, this seems to work, until you have nested or multithreaded usage. It then becomes neccessary to keep a stack of references to handle nesting, and thread-local variables to handle multithreading-- all feasible to do, but a lot of work.
568
+
569
+ A third approach is to dynamically generate a singleton module, "hard coding" a reference to the +RouteSet+ in the module. For example:
570
+
571
+ def draw(&block)
572
+ clear!
573
+ save_self = self
574
+ mapper_module = Module.new
575
+ mapper_module.module_eval do
576
+ define_method(:connect) do |path,options|
577
+ save_self.add_route(path,options)
578
+ end
579
+ end
580
+ Module.mix_eval(mapper_module, &block)
581
+ named_routes.install
582
+ end
583
+
584
+ This probably can be made to work, and it also has the benefit of solving the nesting and multithreading issue neatly since each mixin is done exactly once. However, it seems to be a fairly heavyweight solution: creating a new module for every DSL block invocation may have performance implications. It is also not clear how to support constructs that are not available to <tt>define_method</tt>, such as blocks and parameter default values. However, such an approach may still be useful in cases where it makes sense to dynamically define a different DSL depending on the context.
585
+
586
+ As we have seen, the mixin idea seems like a compelling solution, particularly in conjunction with Gray's arity check, but the implementation details present some challenges. It may be a winner if a library can be written to hide the implementation complexity. Let's summarize this approach, and then proceed to examine such a library, one that uses some of the best of what we've discussed to make implementing DSL blocks simple.
587
+
588
+ *Implementation*:
589
+
590
+ * Install a mixin library such as mixico or mixology
591
+ * Define the DSL methods in a module.
592
+ * Mix the module into the block's context before invoking the block, and remove it afterwards
593
+ * Carefully handle any issues involving nested blocks, multithreading, or clobbering of instance variables.
594
+
595
+ *Pros*:
596
+
597
+ * Allows the concise syntax without a block parameter
598
+ * Doesn't change +self+, thus preserving the right behavior regarding helper methods and instance variables
599
+
600
+ *Cons*:
601
+
602
+ * Requires a separate library to implement mixin removal
603
+ * Implementation is convoluted.
604
+ * Does nothing to solve the helper method vs DSL method ambiguity
605
+
606
+ *Verdict*: Use it for cases where parameterless blocks are desired, if a library is available to handle the details of the implementation.
607
+
608
+ === Blockenspiel: a comprehensive implementation
609
+
610
+ As we have seen, the mixin implementation has some compelling qualities, but is hampered by the difficulty of implementing it in a robust way. It could be a useful implementation if a library were present to handle the details.
611
+
612
+ Blockenspiel was written to be that library. It provides a comprehensive and robust implementation of the mixin strategy, correctly handling nesting and multithreading. It offers the option to perform an arity check, giving the caller the choice of whether or not to use a block parameter. You can even tell Blockenspiel to use <tt>instance_eval</tt> instead of a mixin, in those cases when it is appropriate. Finally, Blockenspiel provides its own DSL block (which itself uses Blockenspiel), allowing you to dynamically construct DSLs.
613
+
614
+ But most importantly, it is easy to use. To write a DSL, just follow the first and easiest implementation strategy, creating a proxy class that can be passed into the block as a parameter. Then instead of yielding the proxy, pass it to Blockenspiel, and it will do the rest.
615
+
616
+ Our Rails routing example implemented using Blockenspiel might look like this:
617
+
618
+ class RouteSet
619
+
620
+ class Mapper
621
+ include Blockenspiel::DSL # Tell Blockenspiel this is a DSL proxy
622
+
623
+ def initialize(set)
624
+ @set = set
625
+ end
626
+
627
+ def connect(path, options = {})
628
+ @set.add_route(path, options)
629
+ end
630
+ # ...
631
+ end
632
+
633
+ # ...
634
+
635
+ def draw(&block)
636
+ clear!
637
+ Blockenspiel.invoke(block, Mapper.new(self)) # Blockenspiel does the rest
638
+ named_routes.install
639
+ end
640
+
641
+ # ...
642
+
643
+ def add_route(path, options = {})
644
+ # ...
645
+
646
+ The code above is as simple as a block parameter or <tt>instance_eval</tt> implementation. However, it performs a full-fledged mixin implementation, and even throws in the arity check. We recall from the previous section that one of the chief challenges is to mediate communication between the mixin and proxy in a re-entrant and thread-safe way. Blockenspiel implements this mediation using a global hash, avoiding the compatibility risk of adding instance variables to the block's context object, and avoiding the performance hit of dynamically generating proxies. All the implementation details are carefully handled behind the scenes.
647
+
648
+ Atop this basic usage, Blockenspiel provides two types of customization. First, you can customize the DSL, using a few simple directives to specify which methods on your proxy should be available in the mixin implementation, possibly even under different names. Second, you can customize the invocation, specifying whether to perform an arity check, whether to use <tt>instance_eval</tt> instead of mixins, and various other minor behavioral adjustments.
649
+
650
+ Blockenspiel is available as a gem:
651
+
652
+ sudo gem install blockenspiel
653
+
654
+ It requires the mixology gem to handle mixin removal.
655
+
656
+ === Conclusions
657
+
658
+ DSL blocks are a valuable and ubiquitous pattern for designing Ruby APIs. A flurry of discussion has recently occurred surrounding the implementation of DSL blocks, particularly addressing the desire to eliminate the need for parameters to the block. We have discussed five different strategies for DSL block implementation, each with its own advantages and disadvantages. Of these, the mixin strategy, recently proposed by Why The Lucky Stiff, appears promising, but its implementation is complex and requires attention to a number of details. The Blockenspiel library provides a concrete and robust implementation of this strategy, hiding the implementation complexity.
659
+
660
+ === References
661
+
662
+ {Daniel Azuma}[http://www.daniel-azuma.com/], <em>{Blockenspiel}[http://virtuoso.rubyforge.org/blockenspiel]</em> (Ruby library), 2008.
663
+
664
+ {Ola Bini}[http://olabini.com/], <em>{Don't overuse instance_eval and instance_exec}[http://olabini.com/blog/2008/09/dont-overuse-instance_eval-and-instance_exec]</em>, 2008.09.18
665
+
666
+ {Jamis Buck}[http://jamisbuck.org], <em>{Under the hood: Rails' routing DSL}[http://weblog.jamisbuck.org/2006/10/2/under-the-hood-rails-routing-dsl]</em>, 2006.10.02.
667
+
668
+ {James Edward Gray II}[http://blog.grayproductions.net/], <em>{DSL Block Styles}[http://blog.grayproductions.net/articles/dsl_block_styles]</em>, 2008.10.07
669
+
670
+ {Dan Manges}[http://www.dcmanges.com], <em>{Ruby DSLs: instance_eval with delegation}[http://www.dcmanges.com/blog/ruby-dsls-instance-eval-with-delegation]</em>, 2008.10.07
671
+
672
+ {Micah Martin}[http://www.8thlight.com/main/bios/micah], <em>{Ruby DSL Blocks}[http://blog.8thlight.com/articles/2007/05/20/]</em>, 2007.05.20.
673
+
674
+ <em>{Mixology}[http://www.somethingnimble.com/bliki/mixology]</em> (Ruby library), 2007.
675
+
676
+ <em>{RSpec}[http://rspec.info/]</em> (Ruby library), 2005-2008.
677
+
678
+ {Jim Weirich}[http://onestepback.org/], <em>{Builder}[http://builder.rubyforge.org]</em> (Ruby library), 2004-2008.
679
+
680
+ {Jim Weirich}[http://onestepback.org/], <em>{Builder Objects}[http://onestepback.org/index.cgi/Tech/Ruby/BuilderObjects.rdoc]</em> 2004.08.24.
681
+
682
+ {Jim Weirich}[http://onestepback.org/], <em>{ruby-core:19153}[http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/19153]</em>, 2008.10.07
683
+
684
+ {Why The Lucky Stiff}[http://whytheluckystiff.net/], <em>{Mixico}[http://github.com/why/mixico/tree/master]</em> (Ruby library), 2008.
685
+
686
+ {Why The Lucky Stiff}[http://whytheluckystiff.net/], <em>{Mixing Our Way Out Of Instance Eval?}[http://hackety.org/2008/10/06/mixingOurWayOutOfInstanceEval.html]</em>, 2008.10.06.