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=8ba613958a9a5dfc1e0e2a9b45b921c3b6243b4e;hp=ce63f1107daafe31855c67c4eec4d676e94f384a;hb=37f0504d391efd8b7d61403759fcc22a6dd3a093;hpb=00a9f11655358387b6048b0a427adc50e7df4672 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 ce63f1107d..8ba613958a 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 @@ -11,6 +11,8 @@ package org.opendaylight.controller.cluster.datastore; 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.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; @@ -24,11 +26,16 @@ import org.opendaylight.yangtools.yang.model.api.SchemaContext; public class ShardTransactionChain extends AbstractUntypedActor { private final DOMStoreTransactionChain chain; + private final DatastoreContext datastoreContext; private final SchemaContext schemaContext; + private final ShardStats shardStats; - public ShardTransactionChain(DOMStoreTransactionChain chain, SchemaContext schemaContext) { + public ShardTransactionChain(DOMStoreTransactionChain chain, SchemaContext schemaContext, + DatastoreContext datastoreContext, ShardStats shardStats) { this.chain = chain; + this.datastoreContext = datastoreContext; this.schemaContext = schemaContext; + this.shardStats = shardStats; } @Override @@ -38,45 +45,79 @@ 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{ - throw new Exception("Not recognized message recieved="+message); + unknownMessage(message); } } - private ActorRef createTypedTransactionActor(CreateTransaction createTransaction,String transactionId){ - if(createTransaction.getTransactionType()== TransactionProxy.TransactionType.READ_ONLY.ordinal()){ - return getContext().actorOf( - ShardTransaction.props( chain.newReadOnlyTransaction(), getSelf(), schemaContext), transactionId); - - }else if (createTransaction.getTransactionType()== TransactionProxy.TransactionType.READ_WRITE.ordinal()){ - return getContext().actorOf( - ShardTransaction.props( chain.newReadWriteTransaction(), getSelf(), schemaContext), transactionId); - + private ActorRef getShardActor(){ + return getContext().parent(); + } - }else if (createTransaction.getTransactionType()== TransactionProxy.TransactionType.WRITE_ONLY.ordinal()){ - return getContext().actorOf( - ShardTransaction.props( chain.newWriteOnlyTransaction(), getSelf(), schemaContext), transactionId); - }else{ - throw new IllegalArgumentException ("CreateTransaction message has unidentified transaction type="+createTransaction.getTransactionType()) ; + private ActorRef createTypedTransactionActor(CreateTransaction createTransaction) { + String transactionName = "shard-" + createTransaction.getTransactionId(); + if(createTransaction.getTransactionType() == + TransactionProxy.TransactionType.READ_ONLY.ordinal()) { + return getContext().actorOf( + ShardTransaction.props( chain.newReadOnlyTransaction(), getShardActor(), + schemaContext, datastoreContext, shardStats, + createTransaction.getTransactionId(), + createTransaction.getVersion()), transactionName); + } else if (createTransaction.getTransactionType() == + TransactionProxy.TransactionType.READ_WRITE.ordinal()) { + return getContext().actorOf( + ShardTransaction.props( chain.newReadWriteTransaction(), getShardActor(), + schemaContext, datastoreContext, shardStats, + createTransaction.getTransactionId(), + createTransaction.getVersion()), transactionName); + } else if (createTransaction.getTransactionType() == + TransactionProxy.TransactionType.WRITE_ONLY.ordinal()) { + return getContext().actorOf( + ShardTransaction.props( chain.newWriteOnlyTransaction(), getShardActor(), + schemaContext, datastoreContext, shardStats, + createTransaction.getTransactionId(), + createTransaction.getVersion()), transactionName); + } else { + throw new IllegalArgumentException ( + "CreateTransaction message has unidentified transaction type=" + + createTransaction.getTransactionType()); + } } - } 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(DOMStoreTransactionChain chain, SchemaContext schemaContext, + DatastoreContext datastoreContext, ShardStats shardStats) { + return Props.create(new ShardTransactionChainCreator(chain, schemaContext, + 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 DOMStoreTransactionChain chain; + final DatastoreContext datastoreContext; + final SchemaContext schemaContext; + final ShardStats shardStats; + + + ShardTransactionChainCreator(DOMStoreTransactionChain chain, SchemaContext schemaContext, + DatastoreContext datastoreContext, ShardStats shardStats) { + this.chain = chain; + this.datastoreContext = datastoreContext; + this.schemaContext = schemaContext; + this.shardStats = shardStats; + } + + @Override + public ShardTransactionChain create() throws Exception { + return new ShardTransactionChain(chain, schemaContext, datastoreContext, shardStats); + } } }