Embedded domain specific language
(Redirected from EDSL)
Embedded Domain Specific Language means that you embed a Domain specific language in a language like Haskell. E.g. using the Functional MetaPost library you can write Haskell expressions, which are then translated to MetaPost (which produces vector graphic diagrams from geometric/algebraic descriptions), MetaPost is run on the generated code and the result of MetaPost can be post-processed in Haskell.
Degree of embedding[edit]
There are two major degrees of embedding:
- Shallow embedding: All Haskell operations immediately translate to the target language. E.g. the Haskell expression
a+b
is translated to aString
like"a + b"
containing that target language expression. - Deep embedding: Haskell operations only build an interim Haskell data structure that reflects the expression tree. E.g. the Haskell expression
a+b
is translated to the Haskell data structureAdd (Var "a") (Var "b")
. This structure allows transformations like optimizations before translating to the target language.
Discussion of common problems[edit]
Sharing and recursion are common problems when implementing DSLs. Often some kind of observable sharing is requested that requires a deep embedding.
- Oleg in Haskell-Cafe about Designing DSL with explicit sharing (was: I love purity, but it's killing me)
- Koen Classen: Observable Sharing for Functional Circuit Description
- Andy Gill: Type-Safe Observable Sharing
- Tom Lokhorst AwesomePrelude presentation (video)
- Leandro Lisboa Penz Haskell eDSL Tutorial - Shared expenses
- Bruno Oliveira and William Cook: Functional Programming with Structured Graphs
- Emil Axelsson and Koen Claessen: Using Circular Programs for Higher-Order Syntax
- Oleg Kiselyov: Implementing explicit and finding implicit sharing in embedded DSLs
Examples of Domain Specific Languages[edit]
- Functional MetaPost (funcmp) is a Haskell frontend to the MetaPost language by John Hobby. Users write their graphics as Haskell programs, which then emit MetaPost code that can be compiled into encapsulated PostScript files and smoothly included into e.g. LaTeX.
- orc: Orchestration-style coordination EDSL
- synthesizer-llvm provides audio signal processing functions that are translated to LLVM assembly language. This warrants very fast computation. It uses shallow embedding.
- The diagrams-cairo package. A full-featured backend for rendering diagrams using the cairo rendering engine. To get started, see Diagrams.Backend.Cairo.CmdLine.
- Workflow: library for transparent execution of interruptible computations
- Hamlet, Julius, Cassius and Lucius are languages embedded in the Yesod framework
- Lorentz: Implementing Smart Contract eDSL in Haskell Lorenz is a Haskell eDSL for Michelson smart contracts language [1]
More to read/view[edit]
- DSL for the Uninitiated, an introduction to DSLs, not Haskell-specific
- Haskell for embedded domain-specific languages (podcast)
- Research papers/Domain specific languages
- Practical Haskell: shell scripting with error handling and privilege separation (blog article)
- What's the best practice for building a DSL in haskell?, a discussion at Reddit
- Introduction to Tagless Final