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%2Fdatastore%2FShardReadTransaction.java;h=6a830a1ddbfd0a0645838cb9e7ed20c14ed976c7;hb=87c8362c7501408b281f5ddc9b78ed7440280fa1;hp=41ca486eb6cf9c15756b8e5748f75358fb61c409;hpb=f89552de4942d3709d6ee84415e672c6c7de489f;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardReadTransaction.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardReadTransaction.java index 41ca486eb6..6a830a1ddb 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardReadTransaction.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardReadTransaction.java @@ -1,11 +1,9 @@ /* + * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * - * Copyright (c) 2014 Cisco 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 - * + * 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; @@ -13,17 +11,12 @@ package org.opendaylight.controller.cluster.datastore; import akka.actor.ActorRef; import akka.actor.PoisonPill; import com.google.common.base.Optional; -import com.google.common.util.concurrent.FutureCallback; -import com.google.common.util.concurrent.Futures; -import com.google.common.util.concurrent.ListenableFuture; import org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard.ShardStats; import org.opendaylight.controller.cluster.datastore.messages.CreateSnapshot; import org.opendaylight.controller.cluster.datastore.messages.DataExists; import org.opendaylight.controller.cluster.datastore.messages.ReadData; import org.opendaylight.controller.cluster.datastore.utils.SerializationUtils; import org.opendaylight.controller.cluster.raft.base.messages.CaptureSnapshotReply; -import org.opendaylight.controller.sal.core.spi.data.DOMStoreReadTransaction; -import org.opendaylight.controller.sal.core.spi.data.DOMStoreTransaction; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; @@ -34,9 +27,9 @@ import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; public class ShardReadTransaction extends ShardTransaction { private static final YangInstanceIdentifier DATASTORE_ROOT = YangInstanceIdentifier.builder().build(); - private final DOMStoreReadTransaction transaction; + private final AbstractShardDataTreeTransaction transaction; - public ShardReadTransaction(DOMStoreReadTransaction transaction, ActorRef shardActor, + public ShardReadTransaction(AbstractShardDataTreeTransaction transaction, ActorRef shardActor, ShardStats shardStats, String transactionID, short clientTxVersion) { super(shardActor, shardStats, transactionID, clientTxVersion); this.transaction = transaction; @@ -70,28 +63,16 @@ public class ShardReadTransaction extends ShardTransaction { final ActorRef sender = getSender(); final ActorRef self = getSelf(); - final ListenableFuture>> future = transaction.read(DATASTORE_ROOT); - - Futures.addCallback(future, new FutureCallback>>() { - @Override - public void onSuccess(Optional> result) { - byte[] serialized = SerializationUtils.serializeNormalizedNode(result.get()); - sender.tell(new CaptureSnapshotReply(serialized), self); - - self.tell(PoisonPill.getInstance(), self); - } + final Optional> result = transaction.getSnapshot().readNode(DATASTORE_ROOT); - @Override - public void onFailure(Throwable t) { - sender.tell(new akka.actor.Status.Failure(t), self); + byte[] serialized = SerializationUtils.serializeNormalizedNode(result.get()); + sender.tell(new CaptureSnapshotReply(serialized), self); - self.tell(PoisonPill.getInstance(), self); - } - }); + self.tell(PoisonPill.getInstance(), self); } @Override - protected DOMStoreTransaction getDOMStoreTransaction() { + protected AbstractShardDataTreeTransaction getDOMStoreTransaction() { return transaction; }