X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FSimpleShardDataTreeCohort.java;h=cf9948cf03e0407f47103e4e2085d33a58d0346d;hp=f73d343bcec2ea4a0785ec84fa967b274345c3c6;hb=cd3a0e09db5a1def00c46a4be245dbdf648b539c;hpb=7991491f2854dde2ec625ed6c08b44df7d258795;ds=sidebyside diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/SimpleShardDataTreeCohort.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/SimpleShardDataTreeCohort.java index f73d343bce..cf9948cf03 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/SimpleShardDataTreeCohort.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/SimpleShardDataTreeCohort.java @@ -27,39 +27,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import scala.concurrent.Future; -abstract class SimpleShardDataTreeCohort extends ShardDataTreeCohort { - static final class DeadOnArrival extends SimpleShardDataTreeCohort { - private final Exception failure; - - DeadOnArrival(final ShardDataTree dataTree, final DataTreeModification transaction, - final TransactionIdentifier transactionId, final Exception failure) { - super(dataTree, transaction, transactionId, null); - this.failure = Preconditions.checkNotNull(failure); - } - - @Override - void throwCanCommitFailure() throws Exception { - throw failure; - } - - @Override - ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) { - return super.addToStringAttributes(toStringHelper).add("failure", failure); - } - } - - static final class Normal extends SimpleShardDataTreeCohort { - Normal(final ShardDataTree dataTree, final DataTreeModification transaction, - final TransactionIdentifier transactionId, final CompositeDataTreeCohort userCohorts) { - super(dataTree, transaction, transactionId, Preconditions.checkNotNull(userCohorts)); - } - - @Override - void throwCanCommitFailure() { - // No-op - } - } - +final class SimpleShardDataTreeCohort extends ShardDataTreeCohort { private static final Logger LOG = LoggerFactory.getLogger(SimpleShardDataTreeCohort.class); private final DataTreeModification transaction; @@ -77,7 +45,16 @@ abstract class SimpleShardDataTreeCohort extends ShardDataTreeCohort { this.dataTree = Preconditions.checkNotNull(dataTree); this.transaction = Preconditions.checkNotNull(transaction); this.transactionId = Preconditions.checkNotNull(transactionId); - this.userCohorts = userCohorts; + this.userCohorts = Preconditions.checkNotNull(userCohorts); + } + + SimpleShardDataTreeCohort(final ShardDataTree dataTree, final DataTreeModification transaction, + final TransactionIdentifier transactionId, final Exception nextFailure) { + this.dataTree = Preconditions.checkNotNull(dataTree); + this.transaction = Preconditions.checkNotNull(transaction); + this.transactionId = Preconditions.checkNotNull(transactionId); + this.userCohorts = null; + this.nextFailure = Preconditions.checkNotNull(nextFailure); } @Override @@ -258,16 +235,13 @@ abstract class SimpleShardDataTreeCohort extends ShardDataTreeCohort { } void reportFailure(final Exception cause) { - this.nextFailure = Preconditions.checkNotNull(cause); + if (nextFailure == null) { + this.nextFailure = Preconditions.checkNotNull(cause); + } else { + LOG.debug("Transaction {} already has a set failure, not updating it", transactionId, cause); + } } - /** - * If there is an initial failure, throw it so the caller can process it. - * - * @throws Exception reported failure. - */ - abstract void throwCanCommitFailure() throws Exception; - @Override public boolean isFailed() { return state == State.FAILED || nextFailure != null;