如何从Scala HList中读取元素?

时间:2017-01-13 15:12:00

标签: scala slick slick-3.0 hlist

很少有关于HLists的可读文档,我在SO上找到的答案来自外太空,对于一个不起眼的Scala初学者。

我遇到了HLists,因为Slick可以自动生成一些来表示数据库行。它们是slick.collection.heterogeneous.HList(不是无形的)。 例如:

type MyRow = HCons[Int,HCons[String,HCons[Option[String],HCons[Int,HCons[String,HCons[Int,HCons[Int,HCons[Option[Int],HCons[Option[Float],HCons[Option[Float],HCons[Option[String],HCons[Option[String],HCons[Boolean,HCons[Option[String],HCons[Option[String],HCons[Option[String],HCons[Option[String],HCons[Option[String],HCons[Option[Int],HCons[Option[Float],HCons[Option[Float],HCons[Option[Float],HCons[Option[String],HCons[Option[String],HNil]]]]]]]]]]]]]]]]]]]]]]]]
def MyRow(a, b, c, ...): MyRow = a :: b :: c :: ... :: HNil

现在给出其中一行,我需要读取一个元素,如果可能的话输入。我不能这样做。我试过了

row(4)  // error
row._4  // error
row.toList  // elements are inferred as Any
row match { case a :: b :: c :: x :: rest => x }  // "Pattern type is incompatible. Expected MyRow."
row match { case MyRow(_,_,_,_,_,x,...) => x }  // is not a case class like other rows
row match { HCons[Int,HCons[String,HCons[Option[String],HCons[Int,HCons[String, x]]]]] => x.head }  // error
row.tail.tail.tail.tail.head  // well, is that really the way??

有人可以解释我如何从恐龙中提取特定值?

2 个答案:

答案 0 :(得分:1)

我希望您的row(0)查询能够根据HList API doc for apply运行。这是我尝试使用Slick 3.1.1的一个例子:

scala> import slick.collection.heterogeneous._
import slick.collection.heterogeneous._

scala> import slick.collection.heterogeneous.syntax._
import slick.collection.heterogeneous.syntax._

scala> type MyRow = Int :: String :: HNil
defined type alias MyRow

scala> val row: MyRow = 1 :: "a" :: HNil
row: MyRow = 1 :: a :: HNil

scala> row(0) + 99
res1: Int = 100

scala> val a: String = row(1)
a: String = a

答案 1 :(得分:0)

只有一件事......如果它不仅仅是HList作为type那么重要。除非必要,否则不要aliasMyRow

所以..你有

val row = a :: b :: c :: ... :: HNil

这个怎么样?

val yourX = row match { case a :: b :: c :: x ::: rest => x }

最后注意:::而不是::

或者......怎么样,

val yourX = row.tail.tail.tail.head

// this may change a little if you had,
def MyRow(a, b, c, ...): MyRow = a :: b :: c :: ... :: HNil

val row = MyRow(a, b, c, ...)

val yourX = row.asInstanceOf[HList].tail.tail.tail.head