这是使用 Shapeless 的一种相对无样板的方法。首先,我们在 上定义相关函数的一些多态版本Option
:
import shapeless._
object orElser extends Poly1 {
implicit def default[A] = at[Option[A]] {
oa => (o: Option[A]) => oa orElse o
}
}
object getOrElser extends Poly1 {
implicit def default[A] = at[Option[A]] {
oa => (a: A) => oa getOrElse a
}
}
我们将更新表示为HList
每个元素都是一个Option
,并且我们可以编写一个append
允许我们附加两个更新的方法:
import UnaryTCConstraint._
def append[U <: HList: *->*[Option]#λ, F <: HList](u: U, v: U)(implicit
mapper: MapperAux[orElser.type, U, F],
zipper: ZipApplyAux[F, U, U]
): U = v.map(orElser).zipApply(u)
最后我们可以自己编写update
方法:
def update[T, L <: HList, F <: HList, U <: HList](t: T, u: U)(implicit
iso: Iso[T, L],
mapped: MappedAux[L, Option, U],
mapper: MapperAux[getOrElser.type, U, F],
zipper: ZipApplyAux[F, L, L]
) = iso from u.map(getOrElser).zipApply(iso to t)
现在我们只需要一点样板文件(在未来这将不是必需的,这要归功于推理驱动宏):
implicit def pcIso =
Iso.hlist(PropositionContent.apply _, PropositionContent.unapply _)
我们还将为这个特定的更新类型定义一个别名(这不是绝对必要的,但会使以下示例更加简洁):
type PCUpdate = Option[String] :: Option[String] :: HNil
最后:
scala> val pc = PropositionContent("some title", "some content")
pc: PropositionContent = PropositionContent(some title,some content)
scala> val u1: PCUpdate = Some("another title") :: None :: HNil
u1: PCUpdate = Some(another title) :: None :: HNil
scala> val u2: PCUpdate = Some("newest title") :: Some("new content") :: HNil
u2: PCUpdate = Some(newest title) :: Some(new content) :: HNil
scala> append(u1, u2)
res0: PCUpdate = Some(newest title) :: Some(new content) :: HNil
scala> update(pc, append(u1, u2))
res1: PropositionContent = PropositionContent(newest title,new content)
这就是我们想要的。