/* * Copyright (c) 2015 Brocade Communications Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.cluster.datastore; import akka.actor.ActorSelection; import com.google.common.base.Optional; import com.google.common.base.Preconditions; import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.SettableFuture; import org.opendaylight.controller.cluster.datastore.identifiers.TransactionIdentifier; import org.opendaylight.controller.sal.core.spi.data.DOMStoreReadWriteTransaction; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; import scala.concurrent.Future; /** * Processes front-end transaction operations locally before being committed to the destination shard. * Instances of this class are used when the destination shard is local to the caller. * * @author Thomas Pantelis */ final class LocalTransactionContext extends AbstractTransactionContext { private final DOMStoreReadWriteTransaction delegate; private final OperationCompleter completer; LocalTransactionContext(TransactionIdentifier identifier, DOMStoreReadWriteTransaction delegate, OperationCompleter completer) { super(identifier); this.delegate = Preconditions.checkNotNull(delegate); this.completer = Preconditions.checkNotNull(completer); } @Override public void writeData(final YangInstanceIdentifier path, final NormalizedNode data) { delegate.write(path, data); completer.onComplete(null, null); } @Override public void mergeData(final YangInstanceIdentifier path, final NormalizedNode data) { delegate.merge(path, data); completer.onComplete(null, null); } @Override public void deleteData(final YangInstanceIdentifier path) { delegate.delete(path); completer.onComplete(null, null); } @Override public void readData(final YangInstanceIdentifier path, final SettableFuture>> proxyFuture) { Futures.addCallback(delegate.read(path), new FutureCallback>>() { @Override public void onSuccess(Optional> result) { proxyFuture.set(result); completer.onComplete(null, null); } @Override public void onFailure(Throwable t) { proxyFuture.setException(t); completer.onComplete(null, null); } }); } @Override public void dataExists(final YangInstanceIdentifier path, final SettableFuture proxyFuture) { Futures.addCallback(delegate.exists(path), new FutureCallback() { @Override public void onSuccess(Boolean result) { proxyFuture.set(result); completer.onComplete(null, null); } @Override public void onFailure(Throwable t) { proxyFuture.setException(t); completer.onComplete(null, null); } }); } private LocalThreePhaseCommitCohort ready() { LocalThreePhaseCommitCohort ready = (LocalThreePhaseCommitCohort) delegate.ready(); completer.onComplete(null, null); return ready; } @Override public Future readyTransaction() { return ready().initiateCoordinatedCommit(); } @Override public Future directCommit() { return ready().initiateDirectCommit(); } @Override public boolean supportsDirectCommit() { return true; } @Override public void closeTransaction() { delegate.close(); } }