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=91d629432f41f7633d128dd6c17e03a283c6bc18;hb=HEAD;hp=f78935b5e72b6c79070efe5b8cbd315fa535ac12;hpb=aa16c6b860255d4509f240fbcb416b8d3d6c0232;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 f78935b5e7..ac751fb33d 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,58 +1,51 @@ /* + * 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; +import static java.util.Objects.requireNonNull; + import akka.actor.ActorRef; -import akka.actor.PoisonPill; -import akka.event.Logging; -import akka.event.LoggingAdapter; -import org.opendaylight.controller.cluster.datastore.messages.CloseTransaction; -import org.opendaylight.controller.cluster.datastore.messages.CloseTransactionReply; +import org.opendaylight.controller.cluster.datastore.messages.DataExists; import org.opendaylight.controller.cluster.datastore.messages.ReadData; -import org.opendaylight.controller.sal.core.spi.data.DOMStoreReadTransaction; -import org.opendaylight.controller.sal.core.spi.data.DOMStoreTransactionChain; -import org.opendaylight.yangtools.yang.model.api.SchemaContext; /** - * @author: syedbahm - * Date: 8/6/14 + * Actor for a shard read transaction. + * + * @author syedbahm */ -public class ShardReadTransaction extends ShardTransaction { - private final DOMStoreReadTransaction transaction; - private final LoggingAdapter log = - Logging.getLogger(getContext().system(), this); - - public ShardReadTransaction(DOMStoreReadTransaction transaction, ActorRef shardActor, SchemaContext schemaContext) { - super(shardActor, schemaContext); - this.transaction = transaction; - - } +@Deprecated(since = "9.0.0", forRemoval = true) +public final class ShardReadTransaction extends ShardTransaction { + private final AbstractShardDataTreeTransaction transaction; + + public ShardReadTransaction(final AbstractShardDataTreeTransaction transaction, final ActorRef shardActor, + final ShardStats shardStats) { + super(shardActor, shardStats, transaction.getIdentifier()); + this.transaction = requireNonNull(transaction); + } - public ShardReadTransaction(DOMStoreTransactionChain transactionChain, DOMStoreReadTransaction transaction, ActorRef shardActor, SchemaContext schemaContext) { - super(transactionChain, shardActor, schemaContext); - this.transaction = transaction; - } + @Override + public void handleReceive(final Object message) { + if (ReadData.isSerializedType(message)) { + readData(transaction, ReadData.fromSerializable(message)); + } else if (DataExists.isSerializedType(message)) { + dataExists(transaction, DataExists.fromSerializable(message)); + } else { + super.handleReceive(message); + } + } - @Override - public void handleReceive(Object message) throws Exception { - if (ReadData.SERIALIZABLE_CLASS.equals(message.getClass())) { - readData(transaction,ReadData.fromSerializable(message)); - } else { - super.handleReceive(message); + @Override + protected AbstractShardDataTreeTransaction getDOMStoreTransaction() { + return transaction; } - } - protected void closeTransaction(CloseTransaction message) { - transaction.close(); - getSender().tell(new CloseTransactionReply().toSerializable(), getSelf()); - getSelf().tell(PoisonPill.getInstance(), getSelf()); - } + @Override + protected boolean returnCloseTransactionReply() { + return false; + } }