gpt4 book ai didi

scala - shapeless 将 case 类转换为 HList 并跳过所有选项字段

转载 作者:行者123 更新时间:2023-12-04 14:55:59 25 4
gpt4 key购买 nike

我有下一节课:

case class Foo(a: Option[Int], b: Option[String], c: Option[Double])

如您所见,所有字段都是可选的,我想将此类转换为 HList 或 Tuple,例如
val f1 = Foo(Some(1) , None, Some(3D))
val f2 = Foo(None, "foo")

val result1 = f1.to[Int::Double::HNil] // => 1::3D
val result2 = f2.to[String::HNil] // "foo"

有没有可能,没有反射(reflection)?

最佳答案

可以使用 Shapeless 中的现有类型类(例如 NatTRelRemoveAll )来执行此操作,但我不能 100% 确定这一点,在这种情况下,我只需要编写自己的类型类(class):

import shapeless._

trait OptionalPieces[L <: HList, S <: HList] {
def apply(l: L): Option[S]
}

object OptionalPieces extends LowPriorityOptionalPieces {
implicit val hnilOptionalPieces: OptionalPieces[HNil, HNil] =
new OptionalPieces[HNil, HNil] {
def apply(l: HNil): Option[HNil] = Some(HNil)
}

implicit def hconsOptionalPiecesMatch[H, T <: HList, S <: HList](implicit
opt: OptionalPieces[T, S]
): OptionalPieces[Option[H] :: T, H :: S] =
new OptionalPieces[Option[H] :: T, H :: S] {
def apply(l: Option[H] :: T): Option[H :: S] = for {
h <- l.head
t <- opt(l.tail)
} yield h :: t
}
}

sealed class LowPriorityOptionalPieces {
implicit def hconsOptionalPiecesNoMatch[H, T <: HList, S <: HList](implicit
opt: OptionalPieces[T, S]
): OptionalPieces[Option[H] :: T, S] =
new OptionalPieces[Option[H] :: T, S] {
def apply(l: Option[H] :: T): Option[S] = opt(l.tail)
}
}

这见证了 L至少包含 S 的所有元素包裹在 Option ,按顺序,并为您提供一种在运行时(安全地)解包它们的方法。

然后我们可以像这样定义一个语法助手类:
implicit class OptionalPiecesSyntax[A, R <: HList](a: A)(implicit
gen: Generic.Aux[A, R]
) {
def to[S <: HList](implicit op: OptionalPieces[gen.Repr, S]): Option[S] =
op(gen.to(a))
}

进而:
scala> val f1 = Foo(Some(1) , None, Some(3D))
f1: Foo = Foo(Some(1),None,Some(3.0))

scala> val f2 = Foo(None, Some("foo"), None)
f2: Foo = Foo(None,Some(foo),None)

scala> val result1 = f1.to[Int :: Double :: HNil]
result1: Option[shapeless.::[Int,shapeless.::[Double,shapeless.HNil]]] = Some(1 :: 3.0 :: HNil)

scala> val result2 = f2.to[String :: HNil]
result2: Option[shapeless.::[String,shapeless.HNil]] = Some(foo :: HNil)

如果你真的想要异常(exception),你可以调用 .get在语法类中,但这似乎是个坏主意。

关于scala - shapeless 将 case 类转换为 HList 并跳过所有选项字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40448107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com