是否可以无形地获取scala case类字段的名称和类型?
我已经尝试过这样(T是案例类):
trait Cpo[T] {
def withPrimaryKey[R <: HList, K, V <: HList](f: Seq[Symbol] => Seq[Symbol])(
implicit labellGeneric: LabelledGeneric.Aux[T, R], keys: Keys.Aux[R, K],
ktl: hlist.ToList[K, Symbol]): Cpo[T]
}
但是我只能得到字段的名称。
Zlaja
答案 0 :(得分:1)
尝试
object typeablePoly extends Poly1 {
implicit def default[A](implicit typeable: Typeable[A]): Case.Aux[A, String] = at(_ => typeable.describe)
}
trait Cpo[T] {
def withPrimaryKey[R <: HList, K <: HList, V <: HList, V1 <: HList](f: Seq[Symbol] => Seq[Symbol])(implicit
labellGeneric: LabelledGeneric.Aux[T, R],
keys: Keys.Aux[R, K],
ktl: hlist.ToList[K, Symbol],
values: Values.Aux[R, V],
mapper: hlist.Mapper.Aux[typeablePoly.type, V, V1],
vtl: hlist.ToList[V1, String]
): Cpo[T]
}
现在ktl
给出字段名称的列表(如Symbol
s,而vtl
给出字段类型的列表(如String
s)。
尝试
object typeablePoly extends Poly1 {
implicit def default[A](implicit typeable: Typeable[A]): Case.Aux[A, String] = at(_ => typeable.describe)
}
object nullPoly extends Poly0 {
implicit def default[A]: ProductCase.Aux[HNil, A] = at(null.asInstanceOf[A])
}
trait Cpo[T] {
def withPrimaryKey[R <: HList, K <: HList, V <: HList, V1 <: HList](f: Seq[Symbol] => Seq[Symbol])(implicit
labellGeneric: LabelledGeneric.Aux[T, R],
keys: Keys.Aux[R, K],
ktl: hlist.ToList[K, Symbol],
values: Values.Aux[R, V],
mapper: hlist.Mapper.Aux[typeablePoly.type, V, V1],
fillWith: hlist.FillWith[nullPoly.type, V],
vtl: hlist.ToList[V1, String]
): Cpo[T] = {
println(ktl(keys())) // List('i, 's)
println(vtl(mapper(fillWith()))) // List(Int, String)
???
}
}
case class MyClass(i: Int, s: String)
new Cpo[MyClass] {}.withPrimaryKey(identity)
答案 1 :(得分:0)
您肯定可以获得字段名称。例如,在这里您可以找到如何编写基于无形的通用派生机制:Bits of shapeless part 2。 更具体地说,您应该查看派生案例类部分,有一个函数可以为任意案例类派生编码器,其签名为:
implicit def hconsToJson[Key <: Symbol, Head, Tail <: HList](
implicit key: Witness.Aux[Key],
headWrites: JsonWrites[Head],
tailWrites: JsonWrites[Tail])
: JsonWrites[FieldType[Key, Head] :: Tail] = ???
因此,key
参数允许您访问特定字段的字段名称。
对于类型,对我而言,唯一已知的方法是使用反射。请详细阅读Scala manual on type tags。
答案 2 :(得分:0)
如果没有必要使用shapeless,则可以使用scala中的Product类获取类型和值
case class Test(x:Int,y:String,z:Boolean)
println(getGeyNameValueType(Test(1,"a",true)).foreach(println))
def getGeyNameValueType(inp: Product): Iterator[(Any, Class[_])] = {
val itr = inp.productIterator
for {
item <- itr
} yield (item, item.getClass)
}
输出为
(1,class java.lang.Integer)
(a,class java.lang.String)
(true,class java.lang.Boolean)
()