summaryrefslogtreecommitdiff
path: root/cask/util/src/cask/util/BatchActor.scala
blob: 26f1c14b1395fe0b1cde89751755593536bce2e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package cask.util

import scala.collection.mutable
import scala.concurrent.ExecutionContext

/**
 * A simple asynchronous actor, allowing safe concurrent asynchronous processing
 * of queued items. `run` handles items in batches, to allow for batch
 * processing optimizations to be used where relevant.
 */
abstract class BatchActor[T]()(implicit ec: ExecutionContext,
                               log: Logger) {
  def run(items: Seq[T]): Unit

  private val queue = new mutable.Queue[T]()
  private var scheduled = false
  def send(t: T): Unit = synchronized{
    queue.enqueue(t)
    if (!scheduled){
      scheduled = true
      ec.execute(() => runWithItems())
    }
  }

  private[this] def runWithItems(): Unit = {
    val items = synchronized(queue.dequeueAll(_ => true))
    try run(items)
    catch{case e: Throwable => log.exception(e)}
    synchronized{
      if (queue.nonEmpty) ec.execute(() => runWithItems())
      else{
        assert(scheduled)
        scheduled = false
      }
    }
  }
}