- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Problem with primitive type implicit conversion
Thu, 2011-10-13, 23:50
I'm making a DB-type toolkit and I'd like to convert between objects and primary keys, implicitly. My code works if I define primary keys as wrapped longs, but it won't compile if I define them as a parameterized type of long.
If I don't use a manifest on the implicit conversion, I get this error, "value name is not a member of Nothing," but if I do use a manifest, I get this error, "value name is not a member of pktest.PK_DEFS.PK[pktest.Person]". Here's my example code, with the PK[T] type uncommented and the PK[T] class commented out.
Can anyone help me with this?
-- Bill
object PK_DEFS { type PK[T] = Long val NULL_PK = -1 def pkFor[T](pk: Long) = pk.asInstanceOf[T]// class PK[T](val pk: Long) {override def toString() = "ID("+pk+")"} // val NULL_PK = null// def pkFor[T](pk: Long) = new PK[T](pk)
trait HasPK[T] {def pk: PK[T]}
implicit def pk2Obj[T: Manifest](pk: PK[T]): T = storage(pk).asInstanceOf[T] implicit def obj2Pk[T](obj: HasPK[T]) = obj.pk
var storage = Map[PK[_], Any]()
def store(obj: HasPK[_]) = storage += obj.pk -> obj def get[T](pk: PK[T]) = storage(pk) }
import PK_DEFS._
class Person(val pk: PK[Person], var name: String, var friend: PK[Person]) extends HasPK[Person] { override def toString = "Person("+name+")" }
object PkTest { import PK_DEFS._
def main(args: Array[String]) { val p1 = new Person(pkFor(1), "joe", NULL_PK) store(p1) val p2 = new Person(pkFor(2), "fred", p1) store(p2) println(p1.pk) println(p2.friend) println(p2.friend.name) }}
If I don't use a manifest on the implicit conversion, I get this error, "value name is not a member of Nothing," but if I do use a manifest, I get this error, "value name is not a member of pktest.PK_DEFS.PK[pktest.Person]". Here's my example code, with the PK[T] type uncommented and the PK[T] class commented out.
Can anyone help me with this?
-- Bill
object PK_DEFS { type PK[T] = Long val NULL_PK = -1 def pkFor[T](pk: Long) = pk.asInstanceOf[T]// class PK[T](val pk: Long) {override def toString() = "ID("+pk+")"} // val NULL_PK = null// def pkFor[T](pk: Long) = new PK[T](pk)
trait HasPK[T] {def pk: PK[T]}
implicit def pk2Obj[T: Manifest](pk: PK[T]): T = storage(pk).asInstanceOf[T] implicit def obj2Pk[T](obj: HasPK[T]) = obj.pk
var storage = Map[PK[_], Any]()
def store(obj: HasPK[_]) = storage += obj.pk -> obj def get[T](pk: PK[T]) = storage(pk) }
import PK_DEFS._
class Person(val pk: PK[Person], var name: String, var friend: PK[Person]) extends HasPK[Person] { override def toString = "Person("+name+")" }
object PkTest { import PK_DEFS._
def main(args: Array[String]) { val p1 = new Person(pkFor(1), "joe", NULL_PK) store(p1) val p2 = new Person(pkFor(2), "fred", p1) store(p2) println(p1.pk) println(p2.friend) println(p2.friend.name) }}