Skip to content

Instantly share code, notes, and snippets.

Created December 17, 2012 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/7ab617d054f28d68901b to your computer and use it in GitHub Desktop.
Save anonymous/7ab617d054f28d68901b to your computer and use it in GitHub Desktop.
import scala.reflect.runtime.universe._
object lifter extends App {
val classdef = q"""class Foo extends Liftable {
def bar[Baz](faz: Int) = faz * 2
def fuz(caz: Int)(shmaz: Int): Int = caz * shmaz
}"""
def lift(tree: Tree) = {
val q"class $name extends Liftable { ..$body }" = tree
val newdefs = body collect {
case q"def $fname[..$tparams](...$argss): $tresult = $fbody" =>
val newresult = if (tresult.nonEmpty) tq"Future[$tresult]" else tresult
val newname = TermName("async" + fname.toString.capitalize)
val argss0 = argss.map(a0 => a0.map(a1 => a1.asInstanceOf[ValDef]))
val tparams0 = tparams.map(_.asInstanceOf[TypeDef]).toList
q"def $newname[..$tparams0](...$argss0): $newresult = future { $fbody }"
}
val name0 = name.asInstanceOf[TypeName]
q"class $name0 extends AnyRef { ..${(body ++ newdefs).toList} }"
}
println(lift(classdef))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment