merged multiverse branch with upstream
This commit is contained in:
commit
89aca17bc7
170 changed files with 3832 additions and 3261 deletions
127
akka-actors/src/main/scala/stm/TransactionManagement.scala
Normal file
127
akka-actors/src/main/scala/stm/TransactionManagement.scala
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
/**
|
||||
* Copyright (C) 2009 Scalable Solutions.
|
||||
*/
|
||||
|
||||
package se.scalablesolutions.akka.stm
|
||||
|
||||
import java.util.concurrent.atomic.AtomicBoolean
|
||||
|
||||
import reactor.MessageInvocation
|
||||
import util.Logging
|
||||
import org.codehaus.aspectwerkz.proxy.Uuid // FIXME is java.util.UUID better?
|
||||
|
||||
import org.multiverse.utils.TransactionThreadLocal._
|
||||
|
||||
class TransactionRollbackException(msg: String) extends RuntimeException(msg)
|
||||
|
||||
class TransactionAwareWrapperException(val cause: Throwable, val tx: Option[Transaction]) extends RuntimeException(cause) {
|
||||
override def toString(): String = "TransactionAwareWrapperException[" + cause + ", " + tx + "]"
|
||||
}
|
||||
|
||||
object TransactionManagement {
|
||||
import Config._
|
||||
val TIME_WAITING_FOR_COMPLETION = config.getInt("akka.stm.wait-for-completion", 100)
|
||||
val NR_OF_TIMES_WAITING_FOR_COMPLETION = config.getInt("akka.stm.wait-nr-of-times", 3)
|
||||
val TRANSACTION_ENABLED = new AtomicBoolean(config.getBool("akka.stm.service", true))
|
||||
// FIXME reenable 'akka.stm.restart-on-collision' when new STM is in place
|
||||
val RESTART_TRANSACTION_ON_COLLISION = false //akka.Kernel.config.getBool("akka.stm.restart-on-collision", true)
|
||||
|
||||
def isTransactionalityEnabled = TRANSACTION_ENABLED.get
|
||||
def disableTransactions = TRANSACTION_ENABLED.set(false)
|
||||
|
||||
private[akka] val threadBoundTx: ThreadLocal[Option[Transaction]] = new ThreadLocal[Option[Transaction]]() {
|
||||
override protected def initialValue: Option[Transaction] = None
|
||||
}
|
||||
}
|
||||
|
||||
trait TransactionManagement extends Logging {
|
||||
var uuid = Uuid.newUuid.toString
|
||||
|
||||
protected[this] var latestMessage: Option[MessageInvocation] = None
|
||||
protected[this] var messageToReschedule: Option[MessageInvocation] = None
|
||||
|
||||
import TransactionManagement.threadBoundTx
|
||||
private[akka] var activeTx: Option[Transaction] = None
|
||||
|
||||
protected def startNewTransaction: Option[Transaction] = {
|
||||
val newTx = new Transaction
|
||||
newTx.begin(uuid)
|
||||
val tx = Some(newTx)
|
||||
activeTx = tx
|
||||
threadBoundTx.set(tx)
|
||||
setThreadLocalTransaction(tx.get.transaction)
|
||||
println("------ Start: " + tx.get.transaction)
|
||||
tx
|
||||
}
|
||||
|
||||
protected def joinExistingTransaction = {
|
||||
val cflowTx = threadBoundTx.get
|
||||
if (!activeTx.isDefined && cflowTx.isDefined) {
|
||||
val currentTx = cflowTx.get
|
||||
currentTx.join(uuid)
|
||||
activeTx = Some(currentTx)
|
||||
}
|
||||
}
|
||||
|
||||
protected def tryToPrecommitTransaction = if (activeTx.isDefined) activeTx.get.precommit(uuid)
|
||||
|
||||
protected def tryToCommitTransaction: Boolean = if (activeTx.isDefined) {
|
||||
val tx = activeTx.get
|
||||
if (tx.commit(uuid)) {
|
||||
removeTransactionIfTopLevel
|
||||
true
|
||||
} else false
|
||||
} else true
|
||||
|
||||
protected def rollback(tx: Option[Transaction]) = tx match {
|
||||
case None => {} // no tx; nothing to do
|
||||
case Some(tx) =>
|
||||
tx.rollback(uuid)
|
||||
}
|
||||
|
||||
protected def rollbackForRescheduling(tx: Option[Transaction]) = tx match {
|
||||
case None => {} // no tx; nothing to do
|
||||
case Some(tx) =>
|
||||
tx.rollbackForRescheduling(uuid)
|
||||
}
|
||||
|
||||
protected def handleCollision = {
|
||||
var nrRetries = 0
|
||||
var failed = true
|
||||
do {
|
||||
Thread.sleep(TransactionManagement.TIME_WAITING_FOR_COMPLETION)
|
||||
nrRetries += 1
|
||||
log.debug("Pending transaction [%s] not completed, waiting %s milliseconds. Attempt %s", activeTx.get, TransactionManagement.TIME_WAITING_FOR_COMPLETION, nrRetries)
|
||||
failed = !tryToCommitTransaction
|
||||
} while(nrRetries < TransactionManagement.NR_OF_TIMES_WAITING_FOR_COMPLETION && failed)
|
||||
if (failed) {
|
||||
log.debug("Pending transaction [%s] still not completed, aborting and rescheduling message [%s]", activeTx.get, latestMessage)
|
||||
rollback(activeTx)
|
||||
if (TransactionManagement.RESTART_TRANSACTION_ON_COLLISION) messageToReschedule = Some(latestMessage.get)
|
||||
else throw new TransactionRollbackException("Conflicting transactions, rolling back transaction for message [" + latestMessage + "]")
|
||||
}
|
||||
}
|
||||
|
||||
protected def isTransactionTopLevel = activeTx.isDefined && activeTx.get.isTopLevel
|
||||
|
||||
protected def isInExistingTransaction = TransactionManagement.threadBoundTx.get.isDefined
|
||||
|
||||
protected def isTransactionAborted = activeTx.isDefined && activeTx.get.isAborted
|
||||
|
||||
protected def incrementTransaction = if (activeTx.isDefined) activeTx.get.increment
|
||||
|
||||
protected def decrementTransaction = if (activeTx.isDefined) activeTx.get.decrement
|
||||
|
||||
protected def removeTransactionIfTopLevel = if (isTransactionTopLevel) {
|
||||
activeTx = None
|
||||
threadBoundTx.set(None)
|
||||
setThreadLocalTransaction(null)
|
||||
}
|
||||
|
||||
protected def reenteringExistingTransaction= if (activeTx.isDefined) {
|
||||
val cflowTx = threadBoundTx.get
|
||||
if (cflowTx.isDefined && cflowTx.get.id == activeTx.get.id) false
|
||||
else true
|
||||
} else true
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue