- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
NullPointerException for AbstractPartialFunction.orElse in 20110108 trunk (2.10)
Sun, 2012-01-08, 16:57
I'm trying out the latest trunk but had some problems running my code. The code segment react(messageMatcher orElse nomatchMatcher) generates NullPointerException:
trait Resumable {
this: scala.actors.Actor =>
protected val monitor: scala.actors.Actor with Monitoring
protected val messageMatcher: PartialFunction[Any, Unit]
private final val nomatchMatcher: PartialFunction[Any, Unit] = {
case Resumable.Exit => exit()
case msg => monitor.nomatchHandlers.foreach(f => f(this, msg))
}
final def act() {
link(monitor)
loop {
react(messageMatcher orElse nomatchMatcher)
}
}
}
with the following stack trace:
Caused by: java.lang.NullPointerException
at scala.runtime.AbstractPartialFunction.orElse(AbstractPartialFunction.scala:41)
at project.ActorUtil$Resumable$$anonfun$act$1.apply(ActorUtil.scala:34)
at project.ActorUtil$Resumable$$anonfun$act$1.apply(ActorUtil.scala:34)
Anyone able to spot the problem?
The AbstractPartialFunction is a new optimization for 2.10:
override def orElse[A1 <: T1, B1 >: R](that: PartialFunction[A1, B1]) : PartialFunction[A1, B1] = {
val result = this.clone.asInstanceOf[AbstractPartialFunction[A1, B1]]
result.synchronized {
result.fallBackField = this.fallBackField orElse that
result
}
}
trait Resumable {
this: scala.actors.Actor =>
protected val monitor: scala.actors.Actor with Monitoring
protected val messageMatcher: PartialFunction[Any, Unit]
private final val nomatchMatcher: PartialFunction[Any, Unit] = {
case Resumable.Exit => exit()
case msg => monitor.nomatchHandlers.foreach(f => f(this, msg))
}
final def act() {
link(monitor)
loop {
react(messageMatcher orElse nomatchMatcher)
}
}
}
with the following stack trace:
Caused by: java.lang.NullPointerException
at scala.runtime.AbstractPartialFunction.orElse(AbstractPartialFunction.scala:41)
at project.ActorUtil$Resumable$$anonfun$act$1.apply(ActorUtil.scala:34)
at project.ActorUtil$Resumable$$anonfun$act$1.apply(ActorUtil.scala:34)
Anyone able to spot the problem?
The AbstractPartialFunction is a new optimization for 2.10:
override def orElse[A1 <: T1, B1 >: R](that: PartialFunction[A1, B1]) : PartialFunction[A1, B1] = {
val result = this.clone.asInstanceOf[AbstractPartialFunction[A1, B1]]
result.synchronized {
result.fallBackField = this.fallBackField orElse that
result
}
}
Sun, 2012-01-08, 18:01
#2
Re: NullPointerException for AbstractPartialFunction.orElse in
In the classes that mixin the Resumable trait ala:
class A
extends Some
with Actor with Resumable {
protected val messageMatcher: PartialFunction[Any, Unit] = {
case msg =>
}
}
2012/1/8 √iktor Ҡlang <viktor.klang@gmail.com>
class A
extends Some
with Actor with Resumable {
protected val messageMatcher: PartialFunction[Any, Unit] = {
case msg =>
}
}
2012/1/8 √iktor Ҡlang <viktor.klang@gmail.com>
Where are you assinging:
protected val messageMatcher: PartialFunction[Any, Unit]
?
On Sun, Jan 8, 2012 at 4:57 PM, Trond Olsen <trond@steinbit.org> wrote:
I'm trying out the latest trunk but had some problems running my code. The code segment react(messageMatcher orElse nomatchMatcher) generates NullPointerException:
trait Resumable {
this: scala.actors.Actor =>
protected val monitor: scala.actors.Actor with Monitoring
protected val messageMatcher: PartialFunction[Any, Unit]
private final val nomatchMatcher: PartialFunction[Any, Unit] = {
case Resumable.Exit => exit()
case msg => monitor.nomatchHandlers.foreach(f => f(this, msg))
}
final def act() {
link(monitor)
loop {
react(messageMatcher orElse nomatchMatcher)
}
}
}
with the following stack trace:
Caused by: java.lang.NullPointerException
at scala.runtime.AbstractPartialFunction.orElse(AbstractPartialFunction.scala:41)
at project.ActorUtil$Resumable$$anonfun$act$1.apply(ActorUtil.scala:34)
at project.ActorUtil$Resumable$$anonfun$act$1.apply(ActorUtil.scala:34)
Anyone able to spot the problem?
The AbstractPartialFunction is a new optimization for 2.10:
override def orElse[A1 <: T1, B1 >: R](that: PartialFunction[A1, B1]) : PartialFunction[A1, B1] = {
val result = this.clone.asInstanceOf[AbstractPartialFunction[A1, B1]]
result.synchronized {
result.fallBackField = this.fallBackField orElse that
result
}
}
--
Viktor Klang
Akka Tech LeadTypesafe - Enterprise-Grade Scala from the Experts
Twitter: @viktorklang
protected val messageMatcher: PartialFunction[Any, Unit]
?
On Sun, Jan 8, 2012 at 4:57 PM, Trond Olsen <trond@steinbit.org> wrote:
--
Viktor Klang
Akka Tech LeadTypesafe - Enterprise-Grade Scala from the Experts
Twitter: @viktorklang