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=2e66ef918e6e7541592449e9b51405610f4826a6;hb=f97618f25dfc073d1de5d883f1794eefdb3e5c16;hp=d12e9997bb29175c7d6c414efdc72b339b706932;hpb=139937c2e646894af6a9b2b8a8a1047c6ef82485;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 d12e9997bb..2e66ef918e 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 @@ -11,11 +11,21 @@ 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; import org.opendaylight.yangtools.yang.model.api.SchemaContext; /** @@ -23,11 +33,14 @@ import org.opendaylight.yangtools.yang.model.api.SchemaContext; * Date: 8/6/14 */ public class ShardReadTransaction extends ShardTransaction { + private static final YangInstanceIdentifier DATASTORE_ROOT = YangInstanceIdentifier.builder().build(); + private final DOMStoreReadTransaction transaction; public ShardReadTransaction(DOMStoreReadTransaction transaction, ActorRef shardActor, - SchemaContext schemaContext, ShardStats shardStats, String transactionID) { - super(shardActor, schemaContext, shardStats, transactionID); + SchemaContext schemaContext, ShardStats shardStats, String transactionID, + short clientTxVersion) { + super(shardActor, schemaContext, shardStats, transactionID, clientTxVersion); this.transaction = transaction; } @@ -38,7 +51,8 @@ public class ShardReadTransaction extends ShardTransaction { } else if (message instanceof DataExists) { dataExists(transaction, (DataExists) message, !SERIALIZED_REPLY); - + } else if (message instanceof CreateSnapshot) { + createSnapshot(); } else if(ReadData.SERIALIZABLE_CLASS.equals(message.getClass())) { readData(transaction, ReadData.fromSerializable(message), SERIALIZED_REPLY); @@ -50,8 +64,41 @@ public class ShardReadTransaction extends ShardTransaction { } } + private void createSnapshot() { + + // This is a special message sent by the shard to send back a serialized snapshot of the whole + // data store tree. This transaction was created for that purpose only so we can + // self-destruct after sending the reply. + + 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); + } + + @Override + public void onFailure(Throwable t) { + sender.tell(new akka.actor.Status.Failure(t), self); + + self.tell(PoisonPill.getInstance(), self); + } + }); + } + @Override protected DOMStoreTransaction getDOMStoreTransaction() { return transaction; } + + @Override + protected boolean returnCloseTransactionReply() { + return false; + } }