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%2FShard.java;h=2a1e70b4ce639d71d1cd48df854f93afbd3f256a;hp=d75edc7922f54ea46d72e4fd62fc4bc0e0aa3143;hb=744726a5d58c50102bb391dc9e4f9bd8defb691a;hpb=43b9f7880866caef7d5ea58dbad2bba318a1f3e8 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/Shard.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/Shard.java index d75edc7922..2a1e70b4ce 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/Shard.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/Shard.java @@ -9,6 +9,7 @@ package org.opendaylight.controller.cluster.datastore; import akka.actor.ActorRef; +import akka.actor.ActorSelection; import akka.actor.Props; import akka.event.Logging; import akka.event.LoggingAdapter; @@ -46,89 +47,112 @@ import java.util.concurrent.Executors; */ public class Shard extends UntypedProcessor { - public static final String DEFAULT_NAME = "default"; + public static final String DEFAULT_NAME = "default"; - private final ListeningExecutorService storeExecutor = MoreExecutors.listeningDecorator(Executors.newFixedThreadPool(2)); + private final ListeningExecutorService storeExecutor = + MoreExecutors.listeningDecorator(Executors.newFixedThreadPool(2)); - private final InMemoryDOMDataStore store; + private final InMemoryDOMDataStore store; - private final Map modificationToCohort = new HashMap<>(); + private final Map + modificationToCohort = new HashMap<>(); - private final LoggingAdapter log = Logging.getLogger(getContext().system(), this); + private final LoggingAdapter log = + Logging.getLogger(getContext().system(), this); - private Shard(String name){ - store = new InMemoryDOMDataStore(name, storeExecutor); - } - - public static Props props(final String name) { - return Props.create(new Creator() { + private Shard(String name) { + store = new InMemoryDOMDataStore(name, storeExecutor); + } - @Override - public Shard create() throws Exception { - return new Shard(name); - } + public static Props props(final String name) { + return Props.create(new Creator() { - }); - } + @Override + public Shard create() throws Exception { + return new Shard(name); + } - @Override - public void onReceive(Object message) throws Exception { - if (message instanceof CreateTransactionChain) { - createTransactionChain(); - } else if (message instanceof RegisterChangeListener) { - registerChangeListener((RegisterChangeListener) message); - } else if (message instanceof UpdateSchemaContext) { - updateSchemaContext((UpdateSchemaContext) message); - } else if (message instanceof ForwardedCommitTransaction ) { - handleForwardedCommit((ForwardedCommitTransaction) message); - } else if (message instanceof Persistent){ - commit((Persistent) message); + }); } - } - - private void commit(Persistent message) { - Modification modification = (Modification) message.payload(); - DOMStoreThreePhaseCommitCohort cohort = modificationToCohort.remove(modification); - if(cohort == null){ - log.error("Could not find cohort for modification : " + modification); - return; + + @Override + public void onReceive(Object message) throws Exception { + if (message instanceof CreateTransactionChain) { + createTransactionChain(); + } else if (message instanceof RegisterChangeListener) { + registerChangeListener((RegisterChangeListener) message); + } else if (message instanceof UpdateSchemaContext) { + updateSchemaContext((UpdateSchemaContext) message); + } else if (message instanceof ForwardedCommitTransaction) { + handleForwardedCommit((ForwardedCommitTransaction) message); + } else if (message instanceof Persistent) { + commit((Persistent) message); + } } - final ListenableFuture future = cohort.commit(); - final ActorRef sender = getSender(); - final ActorRef self = getSelf(); - future.addListener(new Runnable() { - @Override - public void run() { - try { - future.get(); - sender.tell(new CommitTransactionReply(), self); - } catch (InterruptedException | ExecutionException e) { - log.error(e, "An exception happened when committing"); + + private void commit(Persistent message) { + Modification modification = (Modification) message.payload(); + DOMStoreThreePhaseCommitCohort cohort = + modificationToCohort.remove(modification); + if (cohort == null) { + log.error( + "Could not find cohort for modification : " + modification); + return; } - } - }, getContext().dispatcher()); - } - - private void handleForwardedCommit(ForwardedCommitTransaction message) { - log.info("received forwarded transaction"); - modificationToCohort.put(message.getModification(), message.getCohort()); - getSelf().forward(Persistent.create(message.getModification()), getContext()); - } - - private void updateSchemaContext(UpdateSchemaContext message) { - store.onGlobalContextUpdated(message.getSchemaContext()); - } - - private void registerChangeListener(RegisterChangeListener registerChangeListener) { - org.opendaylight.yangtools.concepts.ListenerRegistration>> registration = - store.registerChangeListener(registerChangeListener.getPath(), registerChangeListener.getListener(), registerChangeListener.getScope()); - ActorRef listenerRegistration = getContext().actorOf(ListenerRegistration.props(registration)); - getSender().tell(new RegisterChangeListenerReply(listenerRegistration.path()), getSelf()); - } - - private void createTransactionChain() { - DOMStoreTransactionChain chain = store.createTransactionChain(); - ActorRef transactionChain = getContext().actorOf(ShardTransactionChain.props(chain)); - getSender().tell(new CreateTransactionChainReply(transactionChain.path()), getSelf()); - } + final ListenableFuture future = cohort.commit(); + final ActorRef sender = getSender(); + final ActorRef self = getSelf(); + future.addListener(new Runnable() { + @Override + public void run() { + try { + future.get(); + sender.tell(new CommitTransactionReply(), self); + } catch (InterruptedException | ExecutionException e) { + log.error(e, "An exception happened when committing"); + } + } + }, getContext().dispatcher()); + } + + private void handleForwardedCommit(ForwardedCommitTransaction message) { + log.info("received forwarded transaction"); + modificationToCohort + .put(message.getModification(), message.getCohort()); + getSelf().forward(Persistent.create(message.getModification()), + getContext()); + } + + private void updateSchemaContext(UpdateSchemaContext message) { + store.onGlobalContextUpdated(message.getSchemaContext()); + } + + private void registerChangeListener( + RegisterChangeListener registerChangeListener) { + + ActorSelection dataChangeListenerPath = getContext() + .system().actorSelection(registerChangeListener.getDataChangeListenerPath()); + + AsyncDataChangeListener> + listener = new DataChangeListenerProxy(dataChangeListenerPath); + + org.opendaylight.yangtools.concepts.ListenerRegistration>> + registration = + store.registerChangeListener(registerChangeListener.getPath(), + listener, registerChangeListener.getScope()); + ActorRef listenerRegistration = + getContext().actorOf(ListenerRegistration.props(registration)); + getSender() + .tell(new RegisterChangeListenerReply(listenerRegistration.path()), + getSelf()); + } + + private void createTransactionChain() { + DOMStoreTransactionChain chain = store.createTransactionChain(); + ActorRef transactionChain = + getContext().actorOf(ShardTransactionChain.props(chain)); + getSender() + .tell(new CreateTransactionChainReply(transactionChain.path()), + getSelf()); + } }