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%2FShardTransactionChain.java;h=7a163088d4bec3938132285810ae35d70f2127fe;hp=c508255ea490ee09b370dae8a49320495166c820;hb=107324809285bfbb9890cba38ffa18390f8de4bd;hpb=bd943b7ee79b6324c561f8fbe2bea4a4293d5dd1 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardTransactionChain.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardTransactionChain.java index c508255ea4..7a163088d4 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardTransactionChain.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardTransactionChain.java @@ -8,14 +8,17 @@ package org.opendaylight.controller.cluster.datastore; +import com.google.common.base.Preconditions; import akka.actor.ActorRef; import akka.actor.Props; import akka.japi.Creator; +import org.opendaylight.controller.cluster.common.actor.AbstractUntypedActor; +import org.opendaylight.controller.cluster.datastore.TransactionProxy.TransactionType; +import org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard.ShardStats; import org.opendaylight.controller.cluster.datastore.messages.CloseTransactionChain; import org.opendaylight.controller.cluster.datastore.messages.CloseTransactionChainReply; import org.opendaylight.controller.cluster.datastore.messages.CreateTransaction; import org.opendaylight.controller.cluster.datastore.messages.CreateTransactionReply; -import org.opendaylight.controller.sal.core.spi.data.DOMStoreTransactionChain; import org.opendaylight.yangtools.yang.model.api.SchemaContext; /** @@ -23,12 +26,15 @@ import org.opendaylight.yangtools.yang.model.api.SchemaContext; */ public class ShardTransactionChain extends AbstractUntypedActor { - private final DOMStoreTransactionChain chain; - private final SchemaContext schemaContext; + private final ShardDataTreeTransactionChain chain; + private final DatastoreContext datastoreContext; + private final ShardStats shardStats; - public ShardTransactionChain(DOMStoreTransactionChain chain, SchemaContext schemaContext) { - this.chain = chain; - this.schemaContext = schemaContext; + public ShardTransactionChain(ShardDataTreeTransactionChain chain, DatastoreContext datastoreContext, + ShardStats shardStats) { + this.chain = Preconditions.checkNotNull(chain); + this.datastoreContext = datastoreContext; + this.shardStats = shardStats; } @Override @@ -38,7 +44,7 @@ public class ShardTransactionChain extends AbstractUntypedActor { createTransaction(createTransaction); } else if (message.getClass().equals(CloseTransactionChain.SERIALIZABLE_CLASS)) { chain.close(); - getSender().tell(new CloseTransactionChainReply().toSerializable(), getSelf()); + getSender().tell(CloseTransactionChainReply.INSTANCE.toSerializable(), getSelf()); }else{ unknownMessage(message); } @@ -48,39 +54,58 @@ public class ShardTransactionChain extends AbstractUntypedActor { return getContext().parent(); } - private ActorRef createTypedTransactionActor(CreateTransaction createTransaction,String transactionId){ - if(createTransaction.getTransactionType()== TransactionProxy.TransactionType.READ_ONLY.ordinal()){ - return getContext().actorOf( - ShardTransaction.props( chain.newReadOnlyTransaction(), getShardActor(), schemaContext), transactionId); - - }else if (createTransaction.getTransactionType()== TransactionProxy.TransactionType.READ_WRITE.ordinal()){ - return getContext().actorOf( - ShardTransaction.props( chain.newReadWriteTransaction(), getShardActor(), schemaContext), transactionId); + private ActorRef createTypedTransactionActor(CreateTransaction createTransaction) { + String transactionName = "shard-" + createTransaction.getTransactionId(); + final TransactionType type = TransactionType.fromInt(createTransaction.getTransactionType()); + final AbstractShardDataTreeTransaction transaction; + switch (type) { + case READ_ONLY: + transaction = chain.newReadOnlyTransaction(transactionName); + break; + case READ_WRITE: + case WRITE_ONLY: + transaction = chain.newReadWriteTransaction(transactionName); + break; + default: + throw new IllegalArgumentException("Unhandled transaction type " + type); + } - }else if (createTransaction.getTransactionType()== TransactionProxy.TransactionType.WRITE_ONLY.ordinal()){ - return getContext().actorOf( - ShardTransaction.props( chain.newWriteOnlyTransaction(), getShardActor(), schemaContext), transactionId); - }else{ - throw new IllegalArgumentException ("CreateTransaction message has unidentified transaction type="+createTransaction.getTransactionType()) ; + return getContext().actorOf( + ShardTransaction.props(type, transaction, getShardActor(), + datastoreContext, shardStats, createTransaction.getTransactionId(), + createTransaction.getVersion()), transactionName); } - } private void createTransaction(CreateTransaction createTransaction) { - ActorRef transactionActor = createTypedTransactionActor(createTransaction, "shard-" + createTransaction.getTransactionId()); - getSender() - .tell(new CreateTransactionReply(transactionActor.path().toString(),createTransaction.getTransactionId()).toSerializable(), - getSelf()); + ActorRef transactionActor = createTypedTransactionActor(createTransaction); + getSender().tell(new CreateTransactionReply(transactionActor.path().toString(), + createTransaction.getTransactionId()).toSerializable(), getSelf()); + } + + public static Props props(ShardDataTreeTransactionChain chain, SchemaContext schemaContext, + DatastoreContext datastoreContext, ShardStats shardStats) { + return Props.create(new ShardTransactionChainCreator(chain, datastoreContext, shardStats)); } - public static Props props(final DOMStoreTransactionChain chain, final SchemaContext schemaContext) { - return Props.create(new Creator() { + private static class ShardTransactionChainCreator implements Creator { + private static final long serialVersionUID = 1L; - @Override - public ShardTransactionChain create() throws Exception { - return new ShardTransactionChain(chain, schemaContext); - } - }); + final ShardDataTreeTransactionChain chain; + final DatastoreContext datastoreContext; + final ShardStats shardStats; + + ShardTransactionChainCreator(ShardDataTreeTransactionChain chain, DatastoreContext datastoreContext, + ShardStats shardStats) { + this.chain = chain; + this.datastoreContext = datastoreContext; + this.shardStats = shardStats; + } + + @Override + public ShardTransactionChain create() throws Exception { + return new ShardTransactionChain(chain, datastoreContext, shardStats); + } } }