4

我的目标是将 JSON 转换为以下模型:

case class Container(typeId: Int, timestamp: Long, content: Content)

sealed trait Content
case class ContentType1(...) extends Content
case class ContentType2(...) extends Content
case class ContentType3(...) extends Content
  • 有一种容器类型,其结构看起来总是相同的。
  • 容器的content类型由看起来完全不同的类型表示(关于属性的数量和类型)。但是,所有内容类型在编译时都是已知的,并实现了密封特征。
  • 容器的typeId属性表示内容类型。例如,具有类型等的N均值的值。contentContentTypeN
  • JSON 结构看起来与您期望的完全一样,并直接映射到上面显示的 Scala 类型。
  • Container[A <: Content](顺便说一句:如果这是一个更优雅的解决方案,我愿意将容器类型更改为)。

用circe解码它的好方法是什么?我猜在这种情况下自动解码不起作用。

编辑:json结构的文档将内容字段描述为?mixed (object, integer, bool),因此它也可以是简单的IntBoolean代替案例类对象。但是现在可以忽略这两种类型(尽管有一个解决方案会很好)。

4

1 回答 1

0

我会使用 semiauto (与 derivedDecoder),validateor

case class Container[+C](typeId: Int, timestamp: Long, content: C)

sealed trait Content
@JsonCodec case class ContentType1(...) extends Content
@JsonCodec case class ContentType2(...) extends Content

object Content {
  import shapeless._
  import io.circe._
  import io.circe.generic.semiauto._

  def decodeContentWithGuard[T: Decoder](number: Int): Decoder[Content[T]] = {
    deriveDecoder[Content[T]].validate(_.downField("typeId") == Right(number), s"wrong type number, expected $number")
  }

  implicit val contentDecoder: Decoder[Container[Content]] = {
    decodeWithGuard[ContentType1](1) or
    decodeWithGuard[ContentType2](2)
  }
}

如果您不想要协变注释,则必须将内部映射并向上ContentTypeX转换为Content.

可能还有一个没有泛型的解决方案,但是你不能使用半自动。

可能不会编译,没有测试它。

于 2017-06-25T15:43:57.097 回答