
Written November 3, 2015. Tagged Ruby, Elixir, Macros.
I've been struck by the emergent elegance of Elixir's scoping rules.
In my native Ruby, import/extend is a scattershot affair. You can do it within an individual method, but it applies to the entire module:
module MyModule
def say_hello(sender)
puts "Hello from #{sender}."
end
end
module MyOtherModule
extend self
def method_that_did_extend
extend MyModule
say_hello("method_that_did_extend")
end
def method_that_did_not_extend
say_hello("method_that_did_not_extend")
end
end
MyOtherModule.method_that_did_extend # => "Hello from method_that_did_extend."
MyOtherModule.method_that_did_not_extend # => "Hello from method_that_did_not_extend."In Elixir, on the other hand, an import (or require, or alias) inside a function only applies within that function. It actually goes further than that: if it happens inside a logic branch (in e.g. an if, cond or case) it only applies within that branch.
And it's from this simple fact that the elegance emerges.
with with importA few days ago, I saw this code example:
Gutenex.begin_text
|> Gutenex.set_font("Helvetica", 48)
|> Gutenex.text_position(40, 180)
|> Gutenex.text_render_mode(:fill)
|> Gutenex.write_text("ABC")
|> Gutenex.end_textIt would be nice to get rid of the noise of that repetition. import will do it, within our current scope only, without spilling into other code:
def render_gutenex do
import Gutenex
begin_text
|> set_font("Helvetica", 48)
|> text_position(40, 180)
|> text_render_mode(:fill)
|> write_text("ABC")
|> end_text
end
def do_all_the_things do
render_gutenex
# Wouldn't compile: end_text/1 is not available here.
# end_text
endThis reminds me of the notorious JavaScript with statement. We could very easily implement a with-alike in Elixir:
defmodule With do
defmacro with(module, do: block) do
quote do
fn ->
import unquote(module)
unquote(block)
end.()
end
end
end
defmodule Run do
import With
def run do
with String do
IO.puts "hi" |> reverse # => Output: "ih"
end
# Wouldn't compile: reverse/1 is not available here.
# IO.puts "hi" |> reverse
end
end
Run.runIn the macro, we create and then immediately call an anonymous function, to limit the scope of the import.
We could also limit the scope with a dummy conditional, but this comes with a higher WTF factor:
if true do
import unquote(module)
unquote(block)
endNote that the macro function definition and the quote do … end block on their own would not limit the scope of the import, because they are part of the macro infrastructure. They generate some code and then effectively disappear from the scoping hierarchy.
Also note that Elixir may be gaining something else called with in the future, so if you start using the above, don't get attached to the name…
instance_eval for a more civilized ageWhen I started out learning Elixir, I found myself wanting to understand how things like Ecto migrations work. So I painstakingly reimplemented the interesting parts of the syntax.
Let's say we want to support this:
create table(:users) do
add :name, :string
endIn my first implementation, I had an add function that you could call inside that block… and anywhere else as well. I wanted to do better.
In Ruby, I would have used instance_eval to evaluate a block of code in a context that has an add method available.
By consulting the mailing list, the elegance of Elixir scoping was finally revealed to me.
Of course, the solution was simply to import a module in a limited scope, just like with above.
If you're interested, you can see the implementation as a Gist.
Another elegant effect is that you can override operators within a single function, or a single logic branch.
The Pipespect library replaces the regular |> with one that inspects every intermediate value.
Its implementation is all about imports, so the scoping rules are the same ones that we discussed above:
if some_condition do
use Pipespect
"This will be inspected." |> String.reverse
else
"This will not." |> String.reverse
endThat's it. Any other interesting implications of the Elixir scoping rules? Let me know in the comments or on Twitter!
For some related reading, also see "The Value of Explicitness" by Drew Olson.