6

我一直在查看计算机数据库示例,我注意到为了重用计算机解析器,列表方法使用了 Computer.withCompany 解析器,它返回 (Computer, Company) 的元组

在我必须处理的情况下,我想要一个 Computer 对象,而不是对计算机 id 的引用,就像这样

case class Computer(id: Pk[Long] = NotAssigned, name: String, 介绍: Option[Date], 停产: Option[Date], company: Company)

所以我在想如何才能实现以下目标(当然是伪代码)

val simple = {
  get[Pk[Long]]("computer.id") ~
  get[String]("computer.name") ~
  get[Option[Date]]("computer.introduced") ~
  get[Option[Date]]("computer.discontinued") ~
  get[Company]("company.*") map {
    case id~name~introduced~discontinued~company => Computer(id, name, introduced, discontinued, company)
  }
}

显然,棘手的部分是如何解决 getCompany

任何想法???

4

1 回答 1

5

我有一个 Idea 实体和一个 IdeaType 实体(就像计算机和公司,在计算机数据库示例中)

case class IdeaTest(
  val id: Pk[Long]          = NotAssigned,
  val name: String          = "unknown idea",
  val description: String   = "no description",
  val kind: IdeaType        = IdeaType()
)

case class IdeaType (
  val id: Pk[Long] = NotAssigned,
  val name: String = "unknown idea type",
  val description: String = "no description"
)

我定义了一个 TypeParser

val typeParser: RowParser[IdeaType] = {
  get[Pk[Long]]("idea_type.id") ~
  get[String]("idea_type.name") ~
  get[String]("idea_type.description") map {
    case id~name~description => IdeaType(
      id, name, description
    )
  }
}

我尝试的第一件事是:

val ideaParser: RowParser[IdeaTest] = {
  get[Pk[Long]]("idea.id") ~
  get[String]("idea.name") ~
  get[String]("idea.description") ~
  typeParser map {
    case id~name~description~ideaType => IdeaTest(
      id, name, description, ideaType
    )
  }
}

即使它编译好,它总是无法加载ideaType。

最后,我不得不定义一个没有ideaType的ideaParser,并用typeParser组合它:

val typeParser: RowParser[IdeaType] = {
  get[Pk[Long]]("idea_type.id") ~
  get[String]("idea_type.name") ~
  get[String]("idea_type.description") map {
    case id~name~description => IdeaType(
      id, name, description
    )
  }
}

val ideaWithTypeParser = ideaParser ~ typeParser map {
  case idea~kind => (idea.copy(kind=kind))
}

这是使用它的代码:

def ideaById(id: Long): Option[IdeaTest] = {
  DB.withConnection { implicit connection =>
    SQL("""
      select * from
      idea inner join idea_type 
      on idea.idea_type_id = idea_type.id 
      where idea.id = {id}""").
      on('id -> id).
      as(ideaParser.singleOpt)
  }
}

我看到的唯一麻烦是我必须在不一致的状态下创建 IdeaTest 对象(没有ideaType),然后将其复制到另一个具有正确 IdeaType 的实例。

于 2012-10-02T07:03:15.057 回答