Qqwy
This morning, I came to a sudden realization: Elixir’s Macro system is even more powerful than I’d thought.
My mind is blown.
Let me try to explain:
Macros take one or multiple expressions as input. These expressions are not evaluated before passing them into the macro. Instead, they are passed in as AST (an Abstract Syntax Tree). If, when and how we want to evaluate these ASTs is completely up to the macro implementation.
Observe the following example:
defmodule Symmath do
defmodule Expr do
defstruct [:ast]
defimpl Inspect do
def inspect(expr, opts) do
ast_str = Macro.to_string(expr.ast)
"Symmath.expr(#{ast_str})"
end
end
end
@doc """
Creates a Symmath Expression.
`expression` is not immediately evaluated.
Instead, it is treated as a symbolic representation.
"""
defmacro expr(expression) do
escaped_expr = Macro.escape(expression)
quote do
%Expr{ast: unquote(escaped_expr) }
end
end
end
Paste this in IEx or something, and call it as follows:
require Symmath
Symmath.expr(x*2 + 3*pi = pow(x, 2))
These things that blew my mind:
- neither
xorpihave to be defined. - functions like
powdo not actually need to be defined. They are just ‘abstract syntax’ as everyting else and we can decide what to do with it at a later time. - we can just use any valid Elixir operators in this expression, and change their meaning or manipulate them if we want.
- Things like
Symmath.expr(100/0)are completely valid statements.
The example above only reads the AST, puts it into a struct, and when someone inspects this struct, it shows the stringified version of the AST inside. But we could now pass these structs around, write ways to simplify these expressions, rewrite them, evaluate them (whole or partially), etc.
This opens up a whole new world for Domain Specific Languages.
I think we can build some really crazy and amazing things with this idea!
Trending in Discussions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
martin
Yeah, it sort of becomes a game of “is this valid Elixir syntax?”. Just
quoteexpressions and have a look. For example,pow(x, 2)is fine, but in an equation dsl, it might be nice to writex^2. Valid syntax.Qqwy
Yep, things that are special characters(of whom Elixir has very few) or attempting to use unary operators on two operands are the two things that are not possible. That basically means that
#and^are out. Nearly all other things are fair game.StevenXL
Macros are one of those items that are conceptually simple but hard to read and utilize in practice.
Each piece is simple in isolation.
Macrosare special functions that receive an AST and return an AST.quote/2turns an expression into an AST.unquote/1evaluates an expression and injects the results into a quoted expression (a.k.a. an AST fragment). And of course you have the concept of “hygiene” - variables created in a macro are private to that macro unless explicitly defined otherwise.So again, the pieces are, on their own, easy to wrap your head around, but putting them together I’ve found difficult.
There are two great resources out there for learning Elixir’s metaprogramming capabilities - @chrismccord’s Metaprogramming Elixir and @sasajuric’s Understanding Elixir Macros mini-series. Head still hurts, and it will probably take two readings of each to have macros really sink in for me. (Oh, and of course the documentation on quote/2 is incredible).
I’m not sure what the point of my post is/was now.
martin
So
^is a bit weird.It would be ill-advised to include an operator with the gotcha that it cannot operate on a literal.
Qqwy
The problem here isn’t that
^cannot operate on a literal (indeed, statements like^2are allowed), but that^is only defined as a unary operator (only taking a single input). For+and-this isn’t the case, as they have both a unary (-2) and a binary variant (1 - 2).rvirding
Of course the obvious solution to the problem of operators is to use lisp which doesn’t have operators, and practically no reserved characters.
Qqwy
Limiting the amount of definable operators was a deliberate choice by José Valim. Operators are a nice and concise way to express things, but nobody knows what
<<^or<*>or=>=or$~!means when you first encounter them. In that way, they are very implicit. This is the reason that languages like Haskell are deemed hard to understand, because they are very operator-heavy.I understand the choice @josevalim made here, but I do frequently miss this freedom in Elixir.
OvermindDL1
Eh, its ugly, but for a dsl it ‘might’ work depending on the purpose (probably not a math one)…
OvermindDL1
On a side-note, it would be freaking awesome to get some kind of defreadmacro or so, it gives you the binary/string input stream until some specified ending ‘thing’…
Hmm, although I guess you could already do things like that…
/me wonders if someone is actually going to make that now…
gregvaughn
Ah, lisp, in which every system is its own dialect of lisp