X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fbroker%2Fimpl%2FPingPongTransactionChain.java;fp=opendaylight%2Fmd-sal%2Fsal-dom-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fbroker%2Fimpl%2FPingPongTransactionChain.java;h=26b5685094f42e2fc484867a8ac44c8ecab9f5d7;hb=91b351d9bca0c0621a464568d815cbe491dec856;hp=20e8422800312a0c415a8b182f5a65525c517436;hpb=2bf2e52f7001e81608c8219f35a1bf4f637aa5f1;p=controller.git diff --git a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/broker/impl/PingPongTransactionChain.java b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/broker/impl/PingPongTransactionChain.java index 20e8422800..26b5685094 100644 --- a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/broker/impl/PingPongTransactionChain.java +++ b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/broker/impl/PingPongTransactionChain.java @@ -57,6 +57,8 @@ public final class PingPongTransactionChain implements DOMTransactionChain { @GuardedBy("this") private boolean failed; + @GuardedBy("this") + private PingPongTransaction shutdownTx; /** * This updater is used to manipulate the "ready" transaction. We perform only atomic @@ -124,6 +126,8 @@ public final class PingPongTransactionChain implements DOMTransactionChain { } private synchronized PingPongTransaction slowAllocateTransaction() { + Preconditions.checkState(shutdownTx == null, "Transaction chain %s has been shut down", this); + final DOMDataReadWriteTransaction delegateTx = delegate.newReadWriteTransaction(); final PingPongTransaction newTx = new PingPongTransaction(delegateTx); @@ -203,27 +207,34 @@ public final class PingPongTransactionChain implements DOMTransactionChain { }); } - private void transactionSuccessful(final PingPongTransaction tx, final Void result) { - LOG.debug("Transaction {} completed successfully", tx); - + private void processNextTransaction(final PingPongTransaction tx) { final boolean success = INFLIGHT_UPDATER.compareAndSet(this, tx, null); - Preconditions.checkState(success, "Successful transaction %s while %s was submitted", tx, inflightTx); + Preconditions.checkState(success, "Completed transaction %s while %s was submitted", tx, inflightTx); synchronized (this) { - processIfReady(); + final PingPongTransaction nextTx = READY_UPDATER.getAndSet(this, null); + if (nextTx != null) { + processTransaction(nextTx); + } else if (shutdownTx != null) { + processTransaction(shutdownTx); + delegate.close(); + shutdownTx = null; + } } + } + + private void transactionSuccessful(final PingPongTransaction tx, final Void result) { + LOG.debug("Transaction {} completed successfully", tx); - // Can run unsynchronized tx.onSuccess(result); + processNextTransaction(tx); } private void transactionFailed(final PingPongTransaction tx, final Throwable t) { LOG.debug("Transaction {} failed", tx, t); - final boolean success = INFLIGHT_UPDATER.compareAndSet(this, tx, null); - Preconditions.checkState(success, "Failed transaction %s while %s was submitted", tx, inflightTx); - tx.onFailure(t); + processNextTransaction(tx); } private void readyTransaction(@Nonnull final PingPongTransaction tx) { @@ -258,23 +269,29 @@ public final class PingPongTransactionChain implements DOMTransactionChain { final PingPongTransaction notLocked = lockedTx; Preconditions.checkState(notLocked == null, "Attempted to close chain with outstanding transaction %s", notLocked); - // Force allocations on slow path. We will complete the rest - final PingPongTransaction tx = READY_UPDATER.getAndSet(this, null); + // This is not reliable, but if we observe it to be null and the process has already completed, + // the backend transaction chain will throw the appropriate error. + Preconditions.checkState(shutdownTx == null, "Attempted to close an already-closed chain"); - // Make sure no transaction is outstanding. Otherwise sleep a bit and retry - while (inflightTx != null) { - LOG.debug("Busy-waiting for in-flight transaction {} to complete", inflightTx); - Thread.yield(); - continue; - } + // Force allocations on slow path, picking up a potentially-outstanding transaction + final PingPongTransaction tx = READY_UPDATER.getAndSet(this, null); - // If we have an outstanding transaction, send it down if (tx != null) { - processTransaction(tx); + // We have one more transaction, which needs to be processed somewhere. If we do not + // a transaction in-flight, we need to push it down ourselves. + // If there is an in-flight transaction we will schedule this last one into a dedicated + // slot. Allocation slow path will check its presence and fail, the in-flight path will + // pick it up, submit and immediately close the chain. + if (inflightTx == null) { + processTransaction(tx); + delegate.close(); + } else { + shutdownTx = tx; + } + } else { + // Nothing outstanding, we can safely shutdown + delegate.close(); } - - // All done, close the delegate. All new allocations should fail. - delegate.close(); } @Override