Tai*_*aig 5 android scala hlist shapeless
我试图通过android.os.BundleAPI 进行抽象,旨在以这种方式生成Bundles:
case class MyClass( a: Int, b: String )
val mc = MyClass( 3, "5" )
implicit val bundleable = Bundle.from[MyClass]()
val bundle = bundleable.write( mc )
assert( mc == bundleable.read( bundle ) )
Run Code Online (Sandbox Code Playgroud)
将case类转换为a LabelledGeneric并将键值对写入Bundle是很简单.但是我找不到将值从Bundle后面提取到原始类型的方法.我想那里的众多JSON库已经解决了这个问题,但我仍然无法找到如何继续的线索.
object Bundle {
def from[T] = new {
def apply[LG <: HList, K <: HList, N <: Nat]()(
implicit
lg: LabelledGeneric.Aux[T, LG],
l: Length.Aux[LG, N],
k: Keys.Aux[LG, K],
lfw: LeftFolder.Aux[LG, Bundle, fold.write.type, Bundle],
//lfr: LeftFolder.Aux[K, Bundle, fold.read.type, LG],
ti: ToInt[N]
) = new Bundleable[T] {
override def write( value: T ): Bundle = {
lg.to( value ).foldLeft( new Bundle( toInt[N] ) )( fold.write )
}
override def read( bundle: Bundle ): T = ???
}
}
object fold {
object write extends Poly2 {
implicit def default[K <: Symbol, V: Bundleize]( implicit key: Witness.Aux[K] ): Case.Aux[Bundle, FieldType[K, V], Bundle] = {
at { ( bundle, value ) ?
implicitly[Bundleize[V]].write( key.value.name, value, bundle )
bundle
}
}
}
object read extends Poly2 {
???
}
}
}
/**
* Read or write a single value from/into a Bundle
*/
trait Bundleize[T] {
def read( key: String, bundle: Bundle ): T
def write( key: String, value: T, bundle: Bundle ): Unit
}
/**
* Transformation T <> Bundle
*/
trait Bundleable[T] {
def read( bundle: Bundle ): T
def write( value: T ): Bundle
}
Run Code Online (Sandbox Code Playgroud)
另外,有没有办法以这种方式重构代码,我可以写Bundle.from[MyClass],而不是Bundle.from[MyClass]()(省略括号)?
感谢指向无形S-Expression示例的指针,我能够整理出一个可行的解决方案.
import android.os.Bundle
import shapeless.labelled._
import shapeless.ops.hlist.{ Length, LeftFolder }
import shapeless._
import shapeless.Nat.toInt
import shapeless.ops.nat.ToInt
import shapeless.syntax.std.tuple._
/**
* Type class that instructs how to deserialize/serialize a value from/to a Bundle
*/
trait Bundleable[T] {
def read( bundle: Bundle ): T
def write( value: T ): Bundle
}
object Bundleable {
def apply[T]( r: Bundle ? T, w: T ? Bundle ) = new Bundleable[T] {
override def read( bundle: Bundle ) = r( bundle )
override def write( value: T ) = w( value )
}
def from[T: Bundleable]: Bundleable[T] = the[Bundleable[T]]
private object fold {
object write extends Poly2 {
implicit def default[K <: Symbol, V: Bundleize]( implicit key: Witness.Aux[K] ) = {
at[Bundle, FieldType[K, V]] { ( bundle, value ) ?
implicitly[Bundleize[V]].write( key.value.name, value, bundle )
bundle
}
}
}
}
implicit val `Bundleable[HNil]` = Bundleable[HNil]( _ ? HNil, _ ? Bundle.EMPTY )
implicit def `Bundleable[HList]`[K <: Symbol, V, T <: HList, N <: Nat](
implicit
key: Witness.Aux[K],
bv: Bundleize[V],
bt: Bundleable[T],
l: Length.Aux[FieldType[K, V] :: T, N],
ti: ToInt[N],
lf: LeftFolder.Aux[FieldType[K, V] :: T, Bundle, fold.write.type, Bundle]
) = Bundleable[FieldType[K, V] :: T](
bundle ? field[K]( bv.read( key.value.name, bundle ) ) :: bt.read( bundle ),
_.foldLeft( new Bundle( toInt[N] ) )( fold.write )
)
implicit def `Bundleable[LabelledGeneric]`[T, LG](
implicit
lg: LabelledGeneric.Aux[T, LG],
b: Bundleable[LG]
) = Bundleable[T]( bundle ? lg.from( b.read( bundle ) ), value ? b.write( lg.to( value ) ) )
}
Run Code Online (Sandbox Code Playgroud)
样品用法:
case class MyCaseClass( a: String, b: Int, c: Double )
val instance = MyCaseClass( "3", 3, 3 )
val bundleable = Bundleable.from[MyCaseClass]
val bundle: Bundle = bundleable.write( instance )
val deserialized = bundleable.read( bundle )
assert( instance == deserialized )
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
294 次 |
| 最近记录: |