This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Are there better way of extending this class?

1 reply
mailleux
Joined: 2008-08-23,
User offline. Last seen 4 years 7 weeks ago.
I need to create a handler which should behave like a partial function applied to a specific context and within a transaction scope.

I created it this way, because of the way I implemented transactions I need tem to be implicit.

abstract class  Handler[C,A](context:C) extends PartialFunction[(Transaction,A),Unit] {
  implicit var trans:Transaction=null
  val handler:PartialFunction[A,Unit]
 
  def isDefinedAt(p:(Transaction,A)) = handler.isDefinedAt(p._2)

  def apply(p:(Transaction,A)):Unit = {
    trans=p._1
    val r=handler.apply(p._2)
    trans=null
    r   
  }
}

To create a real handle I have to to this.

class HandleSomething(context:Context[Whatever]) extends Handler[Context[Whatever],Any](context) {
  val handler:PartialFunction[Any,Unit] = {
    case ('Apply,context.InMap(c),i:Int) => println(trans+"-> "+c+ "=" + i)
  }
}

Using this construction I can access both the context and the transaction in the partial function "handler". However I have to do a lot of writing (looks javaish) to get this class done. I'd like to know it there is a way to make this more scalaish and still allows the partial function to access the context and transaction varilables?

Thomas
Jon Pretty
Joined: 2009-02-02,
User offline. Last seen 42 years 45 weeks ago.
Re: Are there better way of extending this class?

Hi Thomas,

Thomas Sant Ana wrote:
> Using this construction I can access both the context and the
> transaction in the partial function "handler". However I have to do a
> lot of writing (looks javaish) to get this class done. I'd like to know
> it there is a way to make this more scalaish and still allows the
> partial function to access the context and transaction varilables?

I haven't looked at your code in detail, but have a look at:

http://scala.sygneca.com/patterns/dynamic-scope

for some options.

Cheers,
Jon

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland