2 * Copyright (c) 2015 Brocade Communications Systems, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
8 package org.opendaylight.controller.cluster.datastore;
10 import akka.actor.ActorSelection;
11 import com.google.common.base.Optional;
12 import com.google.common.base.Preconditions;
13 import com.google.common.util.concurrent.FutureCallback;
14 import com.google.common.util.concurrent.Futures;
15 import com.google.common.util.concurrent.SettableFuture;
16 import org.opendaylight.controller.cluster.datastore.utils.ActorContext;
17 import org.opendaylight.controller.sal.core.spi.data.DOMStoreReadTransaction;
18 import org.opendaylight.controller.sal.core.spi.data.DOMStoreTransaction;
19 import org.opendaylight.controller.sal.core.spi.data.DOMStoreWriteTransaction;
20 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
21 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
22 import scala.concurrent.Future;
25 * Processes front-end transaction operations locally before being committed to the destination shard.
26 * Instances of this class are used when the destination shard is local to the caller.
28 * @author Thomas Pantelis
30 abstract class LocalTransactionContext extends AbstractTransactionContext {
31 private final DOMStoreTransaction txDelegate;
33 LocalTransactionContext(DOMStoreTransaction txDelegate, OperationLimiter limiter) {
35 this.txDelegate = Preconditions.checkNotNull(txDelegate);
38 protected abstract DOMStoreWriteTransaction getWriteDelegate();
40 protected abstract DOMStoreReadTransaction getReadDelegate();
43 public void writeData(YangInstanceIdentifier path, NormalizedNode<?, ?> data) {
44 incrementModificationCount();
45 getWriteDelegate().write(path, data);
50 public void mergeData(YangInstanceIdentifier path, NormalizedNode<?, ?> data) {
51 incrementModificationCount();
52 getWriteDelegate().merge(path, data);
57 public void deleteData(YangInstanceIdentifier path) {
58 incrementModificationCount();
59 getWriteDelegate().delete(path);
64 public void readData(YangInstanceIdentifier path, final SettableFuture<Optional<NormalizedNode<?, ?>>> proxyFuture) {
65 Futures.addCallback(getReadDelegate().read(path), new FutureCallback<Optional<NormalizedNode<?, ?>>>() {
67 public void onSuccess(final Optional<NormalizedNode<?, ?>> result) {
68 proxyFuture.set(result);
73 public void onFailure(final Throwable t) {
74 proxyFuture.setException(t);
81 public void dataExists(YangInstanceIdentifier path, final SettableFuture<Boolean> proxyFuture) {
82 Futures.addCallback(getReadDelegate().exists(path), new FutureCallback<Boolean>() {
84 public void onSuccess(final Boolean result) {
85 proxyFuture.set(result);
90 public void onFailure(final Throwable t) {
91 proxyFuture.setException(t);
97 private LocalThreePhaseCommitCohort ready() {
98 logModificationCount();
100 return (LocalThreePhaseCommitCohort) getWriteDelegate().ready();
103 @SuppressWarnings({ "unchecked", "rawtypes" })
104 private <T extends Future> T completeOperation(final ActorContext actorContext, final T operationFuture) {
105 operationFuture.onComplete(getLimiter(), actorContext.getClientDispatcher());
106 return operationFuture;
110 public Future<ActorSelection> readyTransaction() {
111 final LocalThreePhaseCommitCohort cohort = ready();
112 return completeOperation(cohort.getActorContext(), cohort.initiateCoordinatedCommit());
116 public Future<Object> directCommit() {
117 final LocalThreePhaseCommitCohort cohort = ready();
118 return completeOperation(cohort.getActorContext(), cohort.initiateDirectCommit());
122 public boolean supportsDirectCommit() {
127 public void closeTransaction() {