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%2FShardTransactionChain.java;h=2991a7742abd986cdfcce96bd378aa00bdd110c9;hb=fe4049d34de103016d11f3a9050853c6380646d3;hp=83913fe416fb766698ce9bd4294819d48276905d;hpb=ebd9aba9e844229de613a2b60b5d21119fcee968;p=controller.git 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 83913fe416..2991a7742a 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 @@ -10,45 +10,59 @@ package org.opendaylight.controller.cluster.datastore; import akka.actor.ActorRef; import akka.actor.Props; -import akka.actor.UntypedActor; import akka.japi.Creator; 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.protobuff.messages.transaction.ShardTransactionMessages; import org.opendaylight.controller.sal.core.spi.data.DOMStoreReadWriteTransaction; import org.opendaylight.controller.sal.core.spi.data.DOMStoreTransactionChain; +import org.opendaylight.yangtools.yang.model.api.SchemaContext; /** * The ShardTransactionChain Actor represents a remote TransactionChain */ -public class ShardTransactionChain extends UntypedActor{ - - private final DOMStoreTransactionChain chain; - - public ShardTransactionChain(DOMStoreTransactionChain chain) { - this.chain = chain; - } - - @Override - public void onReceive(Object message) throws Exception { - if(message instanceof CreateTransaction){ - DOMStoreReadWriteTransaction transaction = chain.newReadWriteTransaction(); - ActorRef transactionActor = getContext().actorOf(ShardTransaction.props(transaction)); - getSender().tell(new CreateTransactionReply(transactionActor.path()), getSelf()); - } else if (message instanceof CloseTransactionChain){ - chain.close(); - getSender().tell(new CloseTransactionChainReply(), getSelf()); +public class ShardTransactionChain extends AbstractUntypedActor { + + private final DOMStoreTransactionChain chain; + private final SchemaContext schemaContext; + + public ShardTransactionChain(DOMStoreTransactionChain chain, SchemaContext schemaContext) { + this.chain = chain; + this.schemaContext = schemaContext; } - } - public static Props props(final DOMStoreTransactionChain chain){ - return Props.create(new Creator(){ + @Override + public void handleReceive(Object message) throws Exception { + if (message instanceof CreateTransaction) { + CreateTransaction createTransaction = (CreateTransaction) message; + createTransaction(createTransaction); + } else if (message instanceof CloseTransactionChain) { + chain.close(); + getSender().tell(new CloseTransactionChainReply(), getSelf()); + } + } - @Override - public ShardTransactionChain create() throws Exception { - return new ShardTransactionChain(chain); - } - }); - } + private void createTransaction(CreateTransaction createTransaction) { + DOMStoreReadWriteTransaction transaction = + chain.newReadWriteTransaction(); + ActorRef transactionActor = getContext().actorOf(ShardTransaction + .props(chain, transaction, getContext().parent(), schemaContext), "shard-" + createTransaction.getTransactionId()); + getSender() + .tell(ShardTransactionMessages.CreateTransactionReply.newBuilder() + .setTransactionActorPath(transactionActor.path().toString()) + .setTransactionId(createTransaction.getTransactionId()) + .build(), + getSelf()); + } + + public static Props props(final DOMStoreTransactionChain chain, final SchemaContext schemaContext) { + return Props.create(new Creator() { + + @Override + public ShardTransactionChain create() throws Exception { + return new ShardTransactionChain(chain, schemaContext); + } + }); + } }