简体   繁体   English

无法找到参数lgen的隐式值:shapeless.LabelledGeneric.Aux

[英]Could not find implicit value for parameter lgen: shapeless.LabelledGeneric.Aux

I am new to Shapeless. 我是Shapeless的新手。 I have a helper class that leverages the shapeless 'Automatic Typeclass Derivation' ( https://gist.github.com/negator/fbbcd1b2ce9a85b762b7 ) to help me populate json reads and writes. 我有一个帮助类,它利用无形的“自动类型类派生”( https://gist.github.com/negator/fbbcd1b2ce9a85b762b7 )来帮助我填充json的读写。

import play.api.libs._
import json._

import shapeless.{ `::` => :#:, _ }
import poly._

object SReads extends LabelledTypeClassCompanion[Reads] {
  object typeClass extends LabelledTypeClass[Reads] {

    def emptyProduct: Reads[HNil] = Reads(_ => JsSuccess(HNil))

    def product[F, T <: HList](name: String, FHead: Reads[F], FTail: Reads[T]) = Reads[F :#: T] {
      case obj @ JsObject(fields) =>
      for {
        head <- FHead.reads(obj \ name)
        tail <- FTail.reads(obj - name)
        } yield head :: tail

        case _ => JsError("Json object required")
      }

    def project[F, G](instance: => Reads[G], to: F => G, from: G => F) = Reads[F](instance.map(from).reads)

    def emptyCoproduct: Reads[CNil] = Reads[CNil](_ => JsError("CNil object not available"))

    def coproduct[L, R <: Coproduct](
      name: String,
      cl: => Reads[L],
      cr: => Reads[R]) = Reads[L :+: R]{ js =>

      js match {
        case js @ JsString(n) if n == name => cl.reads(js).map(Inl.apply)
        case js @ _                        => cr.reads(js).map(Inr.apply)
      }
    }
  }
}

This is how I used it: 这就是我使用它的方式:

case class TrialMember(
  @Key("_id") var id: String,
  var weeks: String,
  var `type`: Option[String] = Some("email"),
  var updatedDate: Date = DateTime.now.toDate
)

object TrialMemberDao extends ModelCompanion[TrialMember, String] {
  def collection = mongoCollection("trial_member")
  val dao = new SalatDAO[TrialMember, String](collection) {}
  def emails() = dao.find(MongoDBObject("type" -> "email")).toList.map(_.id)
  def domains() = dao.find(MongoDBObject("type" -> "domain")).toList.map(_.id)
  def isTrialMember(userEmail: String): Boolean = {
    val trialMembers = emails() // whitelisted emails
    val trialDomains = domains() // whitelisted domains
    trialMembers.contains(userEmail) ||
      trialDomains.filter(userEmail.contains(_)).headOption.isDefined
  }

}

object TrialMember {
  implicit val jsonWrites: Writes[TrialMember] = SWrites.deriveInstance
  implicit val jsonReads: Reads[TrialMember] = SReads.deriveInstance
}

But after upgrading to sbt 0.13.8 and Play 2.4, now it gives me this error: 但升级到sbt 0.13.8和Play 2.4之后,现在它给了我这个错误:

could not find implicit value for parameter lgen: shapeless.LabelledGeneric.Aux[T,LKV]
[error]   implicit val reads: Reads[TrialMember] = SReads.deriveInstance

The trouble is somewhat funny, your typeclass deriver is perfectly implemented while compiler could not find Reads instance for Option[String] which should be used for the type field. 麻烦有点搞笑,你的类型类派生完美实现,而编译器找不到应该用于type字段的Option[String] Reads实例。 Just supply your code with something like following definition: 只需为您的代码提供以下定义:

object optionFormats {
  def noneReads[T]: Reads[Option[T]] = Reads(Function.const(JsSuccess(None)))

  implicit def optFormat[T](implicit w: Writes[T], r: Reads[T]) =
    Format[Option[T]](
      r.map[Option[T]](Some(_)).orElse(noneReads),
      Writes(_.fold[JsValue](JsNull)(w.writes)))
}

And then in any code just 然后在任何代码中

import optionFormats._

And your instance should be constructed as desired. 你的实例应该按照需要构建。

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

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