X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FShardReadTransaction.java;h=ec526d4fc07e01486fa7ed0cac9aa28b54e609c3;hp=f2c77e32d87f3bf12e841e6f25fef15c6191e7bb;hb=50a2f5eb1c94650bc1be1e49d3a5382a1a74a9b3;hpb=56c1339ee7dbd85bc567fc44f21ecfd322c9e803 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 f2c77e32d8..ec526d4fc0 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,6 +11,7 @@ package org.opendaylight.controller.cluster.datastore; import akka.actor.ActorRef; import akka.actor.PoisonPill; import com.google.common.base.Optional; +import com.google.common.base.Preconditions; 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; @@ -27,31 +26,22 @@ import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; * Date: 8/6/14 */ public class ShardReadTransaction extends ShardTransaction { - private static final YangInstanceIdentifier DATASTORE_ROOT = YangInstanceIdentifier.builder().build(); - private final AbstractShardDataTreeTransaction transaction; public ShardReadTransaction(AbstractShardDataTreeTransaction transaction, ActorRef shardActor, - ShardStats shardStats, String transactionID, short clientTxVersion) { - super(shardActor, shardStats, transactionID, clientTxVersion); - this.transaction = transaction; + ShardStats shardStats) { + super(shardActor, shardStats, transaction.getId()); + this.transaction = Preconditions.checkNotNull(transaction); } @Override - public void handleReceive(Object message) throws Exception { - if(message instanceof ReadData) { - readData(transaction, (ReadData) message, !SERIALIZED_REPLY); - - } else if (message instanceof DataExists) { - dataExists(transaction, (DataExists) message, !SERIALIZED_REPLY); - } else if (message instanceof CreateSnapshot) { + public void handleReceive(Object message) { + if (message instanceof CreateSnapshot) { createSnapshot(); - } else if(ReadData.SERIALIZABLE_CLASS.equals(message.getClass())) { - readData(transaction, ReadData.fromSerializable(message), SERIALIZED_REPLY); - - } else if(DataExists.SERIALIZABLE_CLASS.equals(message.getClass())) { - dataExists(transaction, DataExists.fromSerializable(message), SERIALIZED_REPLY); - + } else if(ReadData.isSerializedType(message)) { + readData(transaction, ReadData.fromSerializable(message)); + } else if(DataExists.isSerializedType(message)) { + dataExists(transaction, DataExists.fromSerializable(message)); } else { super.handleReceive(message); } @@ -65,7 +55,7 @@ public class ShardReadTransaction extends ShardTransaction { final ActorRef sender = getSender(); final ActorRef self = getSelf(); - final Optional> result = transaction.getSnapshot().readNode(DATASTORE_ROOT); + final Optional> result = transaction.getSnapshot().readNode(YangInstanceIdentifier.EMPTY); byte[] serialized = SerializationUtils.serializeNormalizedNode(result.get()); sender.tell(new CaptureSnapshotReply(serialized), self);