ERB as a macro pre-processor?

R

Rich Morin

"The Ruby Way" (pp. 43-45) shows a couple of different ways
to generate methods dynamically (using eval). Looking at the
examples, I began to wonder about different Ways To Do It.

One possibility that occurred to me is to use ERB as a macro
pre-processor. The book suggests the following code:

if platform == Windows
def my_action
action1
end
if platform == Linux
def my_action
action2
end
else
def my_action
default_action
end
end

Although this is approach is direct and simple, it seems like it
wouldn't scale very well, given multiple variations. However, I
think that the following approach might:


% cat erb_ml
#!/usr/bin/env ruby

require 'erb'

def action_D; print "default action\n"; end
def action_L; print "Linux action\n"; end
def action_W; print "Windows action\n"; end

action = { :Linux => 'action_L',
:Windows => 'action_W' }

template = ERB.new <<-EOF
def my_action
<%= action[platform] || 'action_D' %>
end
EOF

for platform in [ :Linux, :Windows, :plan9 ] do
eval template.result(binding)
print "#{platform.to_s}: "
my_action
end

% erb_ml
Linux: Linux action
Windows: Windows action
Plan9: default action


Obviously, the "action" hash could be replaced by other
code-generation and/or -retrieval methods. Is anyone
here using ERB in this manner? Are there any caveats
or alternative approaches that I should be aware of?

-r
--
http://www.cfcl.com/rdm Rich Morin
http://www.cfcl.com/rdm/resume (e-mail address removed)
http://www.cfcl.com/rdm/weblog +1 650-873-7841

Technical editing and writing, programming, and web development
 
L

Logan Capaldo

"The Ruby Way" (pp. 43-45) shows a couple of different ways
to generate methods dynamically (using eval). Looking at the
examples, I began to wonder about different Ways To Do It.

One possibility that occurred to me is to use ERB as a macro
pre-processor. The book suggests the following code:

if platform == Windows
def my_action
action1
end
if platform == Linux
def my_action
action2
end
else
def my_action
default_action
end
end

Although this is approach is direct and simple, it seems like it
wouldn't scale very well, given multiple variations. However, I
think that the following approach might:


% cat erb_ml
#!/usr/bin/env ruby

require 'erb'

def action_D; print "default action\n"; end
def action_L; print "Linux action\n"; end
def action_W; print "Windows action\n"; end

action = { :Linux => 'action_L',
:Windows => 'action_W' }

template = ERB.new <<-EOF
def my_action
<%= action[platform] || 'action_D' %>
end
EOF

for platform in [ :Linux, :Windows, :plan9 ] do
eval template.result(binding)
print "#{platform.to_s}: "
my_action
end

% erb_ml
Linux: Linux action
Windows: Windows action
Plan9: default action


Obviously, the "action" hash could be replaced by other
code-generation and/or -retrieval methods. Is anyone
here using ERB in this manner? Are there any caveats
or alternative approaches that I should be aware of?
Bah I say! How does that saying go, "Replace conditionals with
polymorphism"?

class Platform
end

class Linux < Platform
def define_methods
def a
puts "linux"
end
end
end

class Windows < Platform
def define_methods
def a
puts "windows"
end
end
end

class Platform
def self.get_platform
case RUBY_PLATFORM
when /linux/
Linux
when /win32/
Windows
end
end
end

platform = Platform.get_platform.new
platform.define_methods
 
A

ara.t.howard

"The Ruby Way" (pp. 43-45) shows a couple of different ways
to generate methods dynamically (using eval). Looking at the
examples, I began to wonder about different Ways To Do It.
Obviously, the "action" hash could be replaced by other
code-generation and/or -retrieval methods. Is anyone
here using ERB in this manner? Are there any caveats
or alternative approaches that I should be aware of?

http://groups.google.com/group/comp...050d88d5?lnk=gst&q=r4&rnum=1#d985a8bf050d88d5

i did quite a bit more work on it but never released...

cheers.

-a
 
R

Rich Morin

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top