X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatabroker%2Factors%2Fdds%2FClientLocalHistory.java;h=26b03e39b092c57d00876b030df15d1aeda015e8;hb=b66d5a3c59525a1c7885c3d653d9657a99f4103d;hp=102d0506173a24bfc01bb6239e7fa4af98cc9698;hpb=cc1ec4a8e2ec99ad7711d0e5e649b34d37d87da0;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/ClientLocalHistory.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/ClientLocalHistory.java index 102d050617..26b03e39b0 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/ClientLocalHistory.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/databroker/actors/dds/ClientLocalHistory.java @@ -9,8 +9,7 @@ package org.opendaylight.controller.cluster.databroker.actors.dds; import com.google.common.annotations.Beta; import com.google.common.base.Preconditions; -import com.google.common.base.Verify; -import java.util.Optional; +import org.opendaylight.controller.cluster.access.client.AbstractClientConnection; import org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier; import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier; @@ -20,14 +19,14 @@ import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier * *

* This interface is used by the world outside of the actor system and in the actor system it is manifested via - * its client actor. That requires some state transfer with {@link DistributedDataStoreClientBehavior}. In order to + * its client actor. That requires some state transfer with {@link AbstractDataStoreClientBehavior}. In order to * reduce request latency, all messages are carbon-copied (and enqueued first) to the client actor. * * @author Robert Varga */ @Beta public final class ClientLocalHistory extends AbstractClientHistory implements AutoCloseable { - ClientLocalHistory(final DistributedDataStoreClientBehavior client, final LocalHistoryIdentifier historyId) { + ClientLocalHistory(final AbstractDataStoreClientBehavior client, final LocalHistoryIdentifier historyId) { super(client, historyId); } @@ -40,29 +39,59 @@ public final class ClientLocalHistory extends AbstractClientHistory implements A } } - @Override - ClientTransaction doCreateTransaction() { + private State ensureIdleState() { final State local = state(); Preconditions.checkState(local == State.IDLE, "Local history %s state is %s", this, local); - updateState(local, State.TX_OPEN); + return local; + } + + @Override + ClientSnapshot doCreateSnapshot() { + ensureIdleState(); + return new ClientSnapshot(this, new TransactionIdentifier(getIdentifier(), nextTx())); + } + @Override + ClientTransaction doCreateTransaction() { + updateState(ensureIdleState(), State.TX_OPEN); return new ClientTransaction(this, new TransactionIdentifier(getIdentifier(), nextTx())); } @Override - AbstractTransactionCommitCohort onTransactionReady(final TransactionIdentifier txId, + void onTransactionAbort(final AbstractClientHandle snap) { + if (snap instanceof ClientTransaction) { + final State local = state(); + if (local == State.TX_OPEN) { + updateState(local, State.IDLE); + } + } + + super.onTransactionAbort(snap); + } + + @Override + AbstractTransactionCommitCohort onTransactionReady(final ClientTransaction tx, final AbstractTransactionCommitCohort cohort) { - // FIXME: deal with CLOSED here + final State local = state(); - Verify.verify(local == State.TX_OPEN, "Local history %s is in unexpected state %s", this, local); - updateState(local, State.IDLE); + switch (local) { + case CLOSED: + return super.onTransactionReady(tx, cohort); + case IDLE: + throw new IllegalStateException(String.format("Local history %s is idle when readying transaction %s", + this, tx.getIdentifier())); + case TX_OPEN: + updateState(local, State.IDLE); + return super.onTransactionReady(tx, cohort); + default: + throw new IllegalStateException(String.format("Local history %s in unhandled state %s", this, local)); - return super.onTransactionReady(txId, cohort); + } } @Override - AbstractProxyHistory createHistoryProxy(final LocalHistoryIdentifier historyId, - final Optional backendInfo) { - return AbstractProxyHistory.createClient(getClient(), backendInfo, historyId); + ProxyHistory createHistoryProxy(final LocalHistoryIdentifier historyId, + final AbstractClientConnection connection) { + return ProxyHistory.createClient(connection, historyId); } }