scala.tools.nsc.util.WorkScheduler.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-compiler Show documentation
Show all versions of scala-compiler Show documentation
Compiler for the Scala Programming Language
package scala.tools.nsc
package util
import scala.collection.mutable
class WorkScheduler {
type Action = () => Unit
private var todo = new mutable.Queue[Action]
private var throwables = new mutable.Queue[Throwable]
private var interruptReqs = new mutable.Queue[InterruptReq]
/** Called from server: block until one of todo list, throwables or interruptReqs is nonempty */
def waitForMoreWork() = synchronized {
while (todo.isEmpty && throwables.isEmpty && interruptReqs.isEmpty) { wait() }
}
/** called from Server: test whether one of todo list, throwables, or InterruptReqs is nonempty */
def moreWork: Boolean = synchronized {
todo.nonEmpty || throwables.nonEmpty || interruptReqs.nonEmpty
}
/** Called from server: get first action in todo list, and pop it off */
def nextWorkItem(): Option[Action] = synchronized {
if (todo.isEmpty) None else Some(todo.dequeue())
}
def dequeueAll[T](f: Action => Option[T]): Seq[T] = synchronized {
todo.dequeueAll(a => f(a).isDefined).map(a => f(a).get)
}
def dequeueAllInterrupts(f: InterruptReq => Unit): Unit = synchronized {
interruptReqs.dequeueAll { iq => f(iq); true }
}
/** Called from server: return optional exception posted by client
* Reset to no exception.
*/
def pollThrowable(): Option[Throwable] = synchronized {
if (throwables.isEmpty)
None
else {
val result = Some(throwables.dequeue())
if (!throwables.isEmpty)
postWorkItem { () => }
result
}
}
def pollInterrupt(): Option[InterruptReq] = synchronized {
if (interruptReqs.isEmpty) None else Some(interruptReqs.dequeue())
}
/** Called from client: have interrupt executed by server and return result */
def doQuickly[A](op: () => A): A = {
val ir = askDoQuickly(op)
ir.getResult()
}
def askDoQuickly[A](op: () => A): InterruptReq { type R = A } = {
val ir = new InterruptReq {
type R = A
val todo = op
}
synchronized {
interruptReqs enqueue ir
notify()
}
ir
}
/** Called from client: have action executed by server */
def postWorkItem(action: Action) = synchronized {
todo enqueue action
notify()
}
/** Called from client: cancel all queued actions */
def cancelQueued() = synchronized {
todo.clear()
}
/** Called from client:
* Require an exception to be thrown on next poll.
*/
def raise(exc: Throwable) = synchronized {
throwables enqueue exc
postWorkItem { new EmptyAction }
}
}
class EmptyAction extends (() => Unit) {
def apply() {}
}