X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsamples%2Fclustering-test-app%2Fprovider%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fclustering%2Fit%2Fprovider%2Fimpl%2FAbstractTransactionHandler.java;h=6b0657ee6ff59f08200d0caa35359c382b70b0b5;hb=2611e6a728e586ea34dd891f30a473bf54d6cbd8;hp=d3b0a7b0497fbbc204edb6900738cc15fa0005fa;hpb=df80cb74afc5dee73bbd930133b06add52801225;p=controller.git diff --git a/opendaylight/md-sal/samples/clustering-test-app/provider/src/main/java/org/opendaylight/controller/clustering/it/provider/impl/AbstractTransactionHandler.java b/opendaylight/md-sal/samples/clustering-test-app/provider/src/main/java/org/opendaylight/controller/clustering/it/provider/impl/AbstractTransactionHandler.java index d3b0a7b049..6b0657ee6f 100644 --- a/opendaylight/md-sal/samples/clustering-test-app/provider/src/main/java/org/opendaylight/controller/clustering/it/provider/impl/AbstractTransactionHandler.java +++ b/opendaylight/md-sal/samples/clustering-test-app/provider/src/main/java/org/opendaylight/controller/clustering/it/provider/impl/AbstractTransactionHandler.java @@ -8,8 +8,8 @@ package org.opendaylight.controller.clustering.it.provider.impl; import com.google.common.base.Stopwatch; +import com.google.common.util.concurrent.FluentFuture; import com.google.common.util.concurrent.FutureCallback; -import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture; import java.util.Collection; import java.util.Collections; @@ -19,6 +19,8 @@ import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ScheduledFuture; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; +import java.util.concurrent.atomic.AtomicLong; +import org.opendaylight.mdsal.common.api.CommitInfo; import org.opendaylight.yang.gen.v1.tag.opendaylight.org._2017.controller.yang.lowlevel.control.rev170215.TransactionsParams; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; @@ -69,19 +71,19 @@ abstract class AbstractTransactionHandler { * This thread only removes from futures set. */ private final ScheduledExecutorService completingExecutor = FinalizableScheduledExecutorService.newSingleThread(); - private final Collection> futures = Collections.synchronizedSet(new HashSet<>()); + private final Collection> futures = Collections.synchronizedSet(new HashSet<>()); private final Stopwatch stopwatch = Stopwatch.createUnstarted(); private final long runtimeNanos; private final long delayNanos; private ScheduledFuture writingFuture; private ScheduledFuture completingFuture; - private long txCounter; + private final AtomicLong txCounter = new AtomicLong(); private volatile State state; AbstractTransactionHandler(final TransactionsParams params) { - runtimeNanos = TimeUnit.SECONDS.toNanos(params.getSeconds()); - delayNanos = SECOND_AS_NANO / params.getTransactionsPerSecond(); + runtimeNanos = TimeUnit.SECONDS.toNanos(params.getSeconds().toJava()); + delayNanos = SECOND_AS_NANO / params.getTransactionsPerSecond().toJava(); } final synchronized void doStart() { @@ -117,15 +119,15 @@ abstract class AbstractTransactionHandler { } // Not completed yet: create a transaction and hook it up - final long txId = txCounter++; - final ListenableFuture execFuture = execWrite(txId); + final long txId = txCounter.incrementAndGet(); + final FluentFuture execFuture = execWrite(txId); LOG.debug("New future #{} allocated", txId); // Ordering is important: we need to add the future before hooking the callback futures.add(execFuture); - Futures.addCallback(execFuture, new FutureCallback() { + execFuture.addCallback(new FutureCallback() { @Override - public void onSuccess(final Void result) { + public void onSuccess(final CommitInfo result) { txSuccess(execFuture, txId); } @@ -150,14 +152,14 @@ abstract class AbstractTransactionHandler { LOG.debug("Completed waiting for all futures"); state = State.SUCCESSFUL; completingFuture.cancel(false); - runSuccessful(txCounter); + runSuccessful(txCounter.get()); return true; } return false; } - final void txSuccess(final ListenableFuture execFuture, final long txId) { + final void txSuccess(final ListenableFuture execFuture, final long txId) { LOG.debug("Future #{} completed successfully", txId); futures.remove(execFuture); @@ -175,8 +177,8 @@ abstract class AbstractTransactionHandler { } } - final void txFailure(final ListenableFuture execFuture, final long txId, final Throwable cause) { - LOG.debug("Future #{} failed", txId, cause); + final void txFailure(final ListenableFuture execFuture, final long txId, final Throwable cause) { + LOG.error("Commit future failed for tx # {}", txId, cause); futures.remove(execFuture); final State local = state; @@ -188,7 +190,7 @@ abstract class AbstractTransactionHandler { case WAITING: state = State.FAILED; writingFuture.cancel(false); - runFailed(cause); + runFailed(cause, txId); break; default: throw new IllegalStateException("Unhandled state " + local); @@ -205,7 +207,7 @@ abstract class AbstractTransactionHandler { synchronized (futures) { int offset = 0; - for (ListenableFuture future : futures) { + for (ListenableFuture future : futures) { try { future.get(0, TimeUnit.NANOSECONDS); } catch (final TimeoutException e) { @@ -221,14 +223,14 @@ abstract class AbstractTransactionHandler { } state = State.FAILED; - runTimedOut(new TimeoutException("Collection did not finish in " + DEAD_TIMEOUT_SECONDS + " seconds")); + runTimedOut("Transactions did not finish in " + DEAD_TIMEOUT_SECONDS + " seconds"); } - abstract ListenableFuture execWrite(final long txId); + abstract FluentFuture execWrite(long txId); - abstract void runFailed(Throwable cause); + abstract void runFailed(Throwable cause, long txId); abstract void runSuccessful(long allTx); - abstract void runTimedOut(Exception cause); + abstract void runTimedOut(String cause); }