繁体   English   中英

播放2.4参数化代数数据类型JSON验证

[英]Play 2.4 parameterized algebraic data types JSON validation

是否有可能在Scala / Play 2.4中做类似的事情:

sealed trait Location { val `type`: String }
case class CityLocation(zip_code: String, override val `type`: String = "city") extends Location
case class AddressLocation(
  society: Option[String],
  first_name: String,
  last_name: String,
  ...
  override val `type`: String = "address"
) extends Location

sealed trait Point[T <: Location] { val `type`: String; val location: T }
case class ShippingPoint[T](override val location: T, override val `type`: String = "shipping") extends Point[T]
case class PickupPoint[T](override val location: T, override val `type`: String = "pickup") extends Point[T]

object CityLocation {
  implicit val format = Json.format[CityLocation]
}
object AddressLocation {
  implicit val format = Json.format[AddressLocation]
}
object ShippingPoint {
  implicit def write[T] = Json.writes[ShippingPoint[T]]
  implicit def read[T]: Reads[ShippingPoint[T]] = (
    (__ \ "location").read[T] and
      (__ \ "type").read[String](exactWordRead("shipping", "error.route.shipping.type"))
  )(ShippingPoint[T].apply _)
}
object PickupPoint {
  implicit def write[T] = Json.writes[ShippingPoint[T]]
  implicit def read[T]: Reads[PickupPoint[T]] = (
    (__ \ "location").read[T] and
      (__ \ "type").read[String](exactWordRead("pickup", "error.route.pickup.type"))
  )(PickupPoint[T].apply _)
}

??

目前,它没有编译。

exactWordRead方法定义如下:

def exactWordRead(word: String, errorMessage: String): Reads[String] = Reads.constraints.pattern(s"^$word${"$"}".r, errorMessage)

编辑

由于这个答案https://stackoverflow.com/a/29834113/2431728 ,我似乎向前迈了一步:

sealed trait Location { val `type`: String }
case class CityLocation(zip_code: String, override val `type`: String = "city") extends Location
case class AddressLocation(
  society: Option[String],
  first_name: String,
  last_name: String,
  ...
  override val `type`: String = "address"
) extends Location

sealed trait Point[T <: Location] { val location: T; val `type`: String }
case class ShippingPoint[T](override val location: T, override val `type`: String = "shipping") extends Point[T]
case class PickupPoint[T](override val location: T, override val `type`: String = "pickup") extends Point[T]

object CityLocation {
  implicit val format = Json.format[CityLocation]
}
object AddressLocation {
  implicit val format = Json.format[AddressLocation]
}
object ShippingPoint {
  implicit def format[T: Format]: Format[ShippingPoint[T]] = (
    (__ \ "location").format[T] and
      (__ \ "type").format[String](exactWordRead("shipping", "error.route.shipping.type"))
  )(ShippingPoint.apply, unlift(ShippingPoint.unapply))
}
object PickupPoint {
  implicit def format[T: Format]: Format[PickupPoint[T]] = (
    (__ \ "location").format[T] and
      (__ \ "type").format[String](exactWordRead("pickup", "error.route.pickup.type"))
  )(PickupPoint.apply, unlift(PickupPoint.unapply))
}

但是,我还没编译。 编译错误是:

[error] type arguments [T] do not conform to trait Point's type parameter bounds [T <: services.coliswebApi.data.Location]
[error] case class ShippingPoint[T](override val location: T, override val `type`: String = "shipping") extends Point[T]
[error]                                                                                                         ^
[error] type arguments [T] do not conform to trait Point's type parameter bounds [T <: services.coliswebApi.data.Location]
[error] case class PickupPoint[T](override val location: T, override val `type`: String = "pickup") extends Point[T]

正如编译器所说,你有一方面,

sealed trait Point[T <: Location]

......而在另一边,

case class ShippingPoint[T](???) extends Point[T]
case class PickupPoint[T](???) extends Point[T]

但是, ShippingPointPickupPoint的声明中没有任何内容证明type参数与约束<: Location兼容,需要扩展Point

所以你需要解决这个问题。

case class ShippingPoint[T <: Location](???) extends Point[T]
case class PickupPoint[T <: Location](???) extends Point[T]

我认为你还需要以这样的格式绑定你的类型

implicit def format[T <: Location: Format]: Format[ShippingPoint[T]] = (
        (__ \ "location").format[T] and
        (__ \ "type").format[String](exactWordRead("shipping",   "error.route.shipping.type"))
    )(ShippingPoint.apply, unlift(ShippingPoint.unapply))

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM