如何使用Shapeless一般性地提取字段名称?

时间:2017-10-02 12:33:31

标签: scala shapeless

给定案例类A我可以使用以下代码段使用Shapeless提取其字段名称:

val fieldNames: List[String] = {
  import shapeless._
  import shapeless.ops.record.Keys

  val gen = LabelledGeneric[A]
  val keys = Keys[gen.Repr].apply
  keys.toList.map(_.name)
}

这很好用,但我怎么能以更通用的方式实现它,这样我就可以方便地将这种技术用于任意类,比如

val fields: List[String] = fieldNames[AnyCaseClass]

是否有一个库已经为我做了这个?

1 个答案:

答案 0 :(得分:2)

这样的事情可能是this example的略微修改版本:

import shapeless._
import shapeless.ops.record._
import shapeless.ops.hlist.ToTraversable

trait FieldNames[T] {
  def apply(): List[String]
}

implicit def toNames[T, Repr <: HList, KeysRepr <: HList](
  implicit gen: LabelledGeneric.Aux[T, Repr],
  keys: Keys.Aux[Repr, KeysRepr],
  traversable: ToTraversable.Aux[KeysRepr, List, Symbol]
): FieldNames[T] = new FieldNames[T] {
  def apply() = keys().toList.map(_.name)
}

def fieldNames[T](implicit h : FieldNames[T]) = h()