项目作者: lloydmeta

项目描述 :
Boilerplate-free, zero-overhead Tagless Final / typed-final / Finally Tagless DSLs in Scala
高级语言: Scala
项目地址: git://github.com/lloydmeta/diesel.git
创建时间: 2017-04-07T16:44:09Z
项目社区:https://github.com/lloydmeta/diesel

开源协议:MIT License

下载


Diesel Build Status Maven Central Scala.js Join the chat at https://gitter.im/diesel-k/Lobby

diesel ˈdiːz(ə)l

  • Boilerplate-free Tagless Final DSLs via macro annotations (Scastie demo), written in scala.meta for future compatibility and other nice things (e.g. free IDE support, like in IntelliJ)
  • What “DSL” sounds like when you say it five times fast
  • More torque → more fun

This library provides 2 macros:

  1. @diesel to make it easier to compose algebras together.
  2. @ktrans to make it easier to perform Kind transforms on interpreters.

To use diesel in your project, add it to your build.

@diesel

The @diesel annotation cuts out the boilerplate associated with writing composable Tagless Final DSLs.

Your DSL can be accessed directly from the companion object if you import a converter located in ops (customisable by passing a name to the annotation as an argument) and you have an implementation of your DSL in scope. This is useful when you need to compose multiple DSLs in the context of F[_], but do not want to name all the interpreter parameters.

Note that this can be used along-side @ktrans (simply write the annotations next to each other).

Example:

  1. import diesel._, cats._, cats.implicits._
  2. object DieselDemo {
  3. // Declare your DSL
  4. @diesel
  5. trait Maths[F[_]] {
  6. def times(l: Int, r: Int): F[Int]
  7. def add(l: Int, r: Int): F[Int]
  8. }
  9. @diesel
  10. trait Logger[F[_]] {
  11. def info(s: String): F[Unit]
  12. }
  13. // Import companion-to-interpreter aliasing sugar
  14. import Maths.ops._, Logger.ops._
  15. def prog[F[_]: Monad: Maths: Logger](x: Int, y: Int): F[Int] = {
  16. for {
  17. p <- Maths.times(x, y)
  18. _ <- Logger.info(s"Product: $p")
  19. s <- Maths.add(x, y)
  20. _ <- Logger.info(s"Sum: $s")
  21. f <- Maths.add(p, s)
  22. _ <- Logger.info(s"Final: $f")
  23. } yield f
  24. }
  25. def main(args: Array[String]): Unit = {
  26. // Wire our interpreters in
  27. implicit val mathsInterp = new Maths[Id] {
  28. def times(l: Int, r: Int) = l * r
  29. def add(l: Int, r: Int) = l + r
  30. }
  31. implicit val loggingInterp = new Logger[Id] {
  32. def info(msg: String) = println(msg)
  33. }
  34. val _ = prog[Id](3, 4)
  35. }
  36. }
  37. /*
  38. [info] Running DieselDemo
  39. Product: 12
  40. Sum: 7
  41. Final: 19
  42. */

For more in-depth examples, check out:

  1. examples/KVSApp: a simple single-DSL program
  2. examples/KVSLoggingApp: composing 2 DSLs in a program
  3. examples/FibApp: composing 3 DSLs in a program that calculates fibonacci numbers and caches them.

All of the above examples use a pure KVS interpreter :)

How it works

  1. @diesel
  2. trait Maths[F[_]] {
  3. def times(l: Int, r: Int): F[Int]
  4. def add(l: Int, r: Int): F[Int]
  5. }

is expanded approximately into

  1. // Your algebra. Implement by providing a concrete F and you have your interpreter
  2. trait Maths[F[_]] {
  3. def times(l: Int, r: Int): F[Int]
  4. def add(l: Int, r: Int): F[Int]
  5. }
  6. // Helper methods will be added to the algebra's companion object (one will be created if there isn't one yet)
  7. object Maths {
  8. /**
  9. * In charge of aliasing your singleton Maths object to an in-scope Maths[F].
  10. * Simply `import Maths.ops._` :)
  11. **/
  12. object ops {
  13. implicit def toDsl[F[_]](o: Maths.type)(implicit m: Maths[F]): Maths[F] = m
  14. }
  15. /**
  16. * For when you feel like calling an in-scope interpreter via
  17. * `Maths[F]` syntax. Also helpful when you want to import all
  18. * the DSL methods using something like
  19. *
  20. *
  1. * val m = Maths[F]
  2. * import m._
  3. * add(1, 3)
  4. * ```

**/
def applyF[_]: Maths[F] = m
}

  1. ## `@ktrans`
  2. The `@ktrans` annotation adds a `transformK` method (customisable by passing a name to the annotation as an argument)
  3. to a trait/abstract class that is parameterised by a Kind that takes 1 type parameter. It's handy when you want
  4. to transform any given implementation of that trait on `F[_]` into one that implements it on `G[_]`.
  5. Useful because it saves you from having to write boilerplate (method forwarding and results wrapping) that
  6. you would otherwise need to deal with manually (or via an IDE) when instantiating a new trait/abstract class.
  7. Note that this can be used along-side `@diesel` (simply write the annotations next to each other).
  8. ### Example
  9. ```scala
  10. import diesel._, cats._
  11. import diesel.implicits._
  12. @ktrans
  13. trait Maths[G[_]] {
  14. def add(l: Int, r: Int): G[Int]
  15. def subtract(l: Int, r: Int): G[Int]
  16. def times(l: Int, r: Int): G[Int]
  17. }
  18. val MathsIdInterp = new Maths[Id] {
  19. def add(l: Int, r: Int) = l + r
  20. def subtract(l: Int, r: Int) = l - r
  21. def times(l: Int, r: Int) = l * r
  22. }
  23. // Using kind-project syntax to build our natural transformation from
  24. // Id to Option
  25. val idToOpt = λ[FunK[Id, Option]](Some(_))
  26. // use the auto-generated transformK method to create a Maths[Option] from Maths[Id]
  27. // via idToOpt
  28. val MathsOptInterp = MathsIdInterp.transformK(idToOpt)
  29. assert(MathsOptInterp.add(3, 10) == Some(13))

There are conversions from Cat’s natural transformation (FunctionK) or Scalaz’s NaturalTransformation to FunK in the
diesel-cats and diesel-scalaz companion projects.

How it works

  1. @ktrans
  2. trait Maths[G[_]] {
  3. def add(l: Int, r: Int): G[Int]
  4. def subtract(l: Int, r: Int): G[Int]
  5. def times(l: Int, r: Int): G[Int]
  6. }

is roughly expanded into

  1. trait Maths[G[_]] {
  2. def add(l: Int, r: Int): G[Int]
  3. def subtract(l: Int, r: Int): G[Int]
  4. def times(l: Int, r: Int): G[Int]
  5. // Note that FunK is a really simple NaturalTransform / FunctionK
  6. final def transformK[H[_]](natTrans: FunK[G, H]): Maths[H] = {
  7. val curr = this
  8. new Maths[H] {
  9. def add(l: Int, r: Int): H[Int] = natTrans(curr.add(l, r))
  10. def subtract(l: Int, r: Int): H[Int] = natTrans(curr.subtract(l, r))
  11. def times(l: Int, r: Int): H[Int] = natTrans(curr.times(l, r))
  12. }
  13. }
  14. }

Limitations

Because the @ktrans annotation’s goal is to generate a kind-transformation method for your trait, it is subject to a few limitations:

  • Annottee must be parameterised by a higher kinded type with just 1 type parameter (context bounds allowed though)
  • No unimplemented methods that return types parameterised by the kind parameter of the algebra
  • No unimplemented type members
  • No vals that are not assignments

A lot of attention (in fact most of the code in the macro) has been dedicated to outputting understandable compile-time errors for those cases, so please reach out if anything seems amiss.

Sbt

Maven Central

Diesel is published for Scala 2.11, 2.12 and ScalaJS.

  1. libraryDependencies += "com.beachape" %% "diesel-core" % s"$latest_version"
  2. // Additional ceremony for using Scalameta macro annotations
  3. resolvers += Resolver.url(
  4. "scalameta",
  5. url("http://dl.bintray.com/scalameta/maven"))(Resolver.ivyStylePatterns)
  6. // A dependency on macro paradise is required to both write and expand
  7. // new-style macros. This is similar to how it works for old-style macro
  8. // annotations and a dependency on macro paradise 2.x.
  9. addCompilerPlugin(
  10. "org.scalameta" % "paradise" % "3.0.0-M8" cross CrossVersion.full)
  11. scalacOptions += "-Xplugin-require:macroparadise"

Credit

Learnt quite a lot about tagless final from the following resources.

  1. Free vs Tagless final talk
  2. Alternatives to GADTS in Scala
  3. Quark talk
  4. Tagless final effects à la Ermine writers
  5. EDSLs as functions