我正在尝试创建一个 Scala 宏,它定义了一个 Class 参数,并根据作为参数提供的 Class 的实现来修改它所附加的类。
//Simple class with a few arguments
class A(a: String, b: String)
//Definition of this class should be modified based on class definition of A
@parameterized(classOf[A])
class B
我设法创建了一个简单的宏,它能够从注释中提取参数,从而生成一个包含完整类名的字符串表示的 TypeName 对象。
现在的问题是我需要从宏实现中访问 A 的定义(具体来说,我想看看构造函数参数是什么)。
有没有办法以某种方式访问/创建 TypeTag[A] ?有没有办法可以访问 A 类的 AST?
为了说明我想要实现的目标,这是我目前拥有的宏定义:
object parameterizedMacro {
def impl(c: Context)(annottees: c.Expr[Any]*): c.Expr[Any] = {
import c.universe._
import Flag._
//Extract the parameter type which was provided as an argument (rather hacky way of getting this info)
val parameterType = c.macroApplication match {
case Apply(Select(Apply(_, List(
TypeApply(Ident(TermName("classOf")), List(Ident(TypeName(parameterType))))
)) , _), _) => parameterType
case _ =>
sys.error("Could not match @parameterized arguments. Was a class provided?")
}
//Should generate method list based on the code of parameterType
val methods = ???
val result = {
annottees.map(_.tree).toList match {
case q"object $name extends ..$parents { ..$body }" :: Nil =>
q"""
object $name extends ..$parents {
..${methods}
..$body
}
"""
case q"class $name (..$args) extends ..$parents { ..$body }" :: Nil =>
q"""
class $name (..$args) extends ..$parents {
..${methods}
..$body
}
"""
}
}
c.Expr[Any](result)
}
}