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%2Fentityownership%2FCandidateListChangeListener.java;h=729b7d8f82202ebf9cc253980df143c2494297ac;hp=bd41ebe94292a00d13097fc86251f39edead582e;hb=8232a626b43fdd2f5799da0fbcfb0f02d3c8f4fb;hpb=a4d9810d7211097f2803174d0c23a27b53dbc9d2 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/CandidateListChangeListener.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/CandidateListChangeListener.java index bd41ebe942..729b7d8f82 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/CandidateListChangeListener.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/CandidateListChangeListener.java @@ -12,7 +12,9 @@ import static org.opendaylight.controller.cluster.datastore.entityownership.Enti import static org.opendaylight.controller.cluster.datastore.entityownership.EntityOwnersModel.ENTITY_ID_QNAME; import static org.opendaylight.controller.cluster.datastore.entityownership.EntityOwnersModel.ENTITY_OWNERS_PATH; import static org.opendaylight.controller.cluster.datastore.entityownership.EntityOwnersModel.ENTITY_QNAME; + import akka.actor.ActorRef; +import com.google.common.base.Optional; import com.google.common.base.Preconditions; import java.util.ArrayList; import java.util.Collection; @@ -57,17 +59,18 @@ class CandidateListChangeListener implements DOMDataTreeChangeListener { } void init(ShardDataTree shardDataTree) { - shardDataTree.registerTreeChangeListener(YangInstanceIdentifier.builder(ENTITY_OWNERS_PATH). - node(EntityType.QNAME).node(EntityType.QNAME).node(ENTITY_QNAME).node(ENTITY_QNAME). - node(Candidate.QNAME).node(Candidate.QNAME).build(), this); + shardDataTree.registerTreeChangeListener(YangInstanceIdentifier.builder(ENTITY_OWNERS_PATH) + .node(EntityType.QNAME).node(EntityType.QNAME).node(ENTITY_QNAME).node(ENTITY_QNAME) + .node(Candidate.QNAME).node(Candidate.QNAME).build(), this, Optional.absent(), noop -> { /* NOOP */ }); } @Override public void onDataTreeChanged(Collection changes) { - for(DataTreeCandidate change: changes) { + for (DataTreeCandidate change: changes) { DataTreeCandidateNode changeRoot = change.getRootNode(); + ModificationType type = changeRoot.getModificationType(); - LOG.debug("{}: Candidate node changed: {}, {}", logId, changeRoot.getModificationType(), change.getRootPath()); + LOG.debug("{}: Candidate node changed: {}, {}", logId, type, change.getRootPath()); NodeIdentifierWithPredicates candidateKey = (NodeIdentifierWithPredicates) change.getRootPath().getLastPathArgument(); @@ -75,23 +78,23 @@ class CandidateListChangeListener implements DOMDataTreeChangeListener { YangInstanceIdentifier entityId = extractEntityPath(change.getRootPath()); - if(changeRoot.getModificationType() == ModificationType.WRITE) { + if (type == ModificationType.WRITE || type == ModificationType.APPEARED) { LOG.debug("{}: Candidate {} was added for entity {}", logId, candidate, entityId); - Collection currentCandidates = addToCurrentCandidates(entityId, candidate); - shard.tell(new CandidateAdded(entityId, candidate, new ArrayList<>(currentCandidates)), shard); - } else if(changeRoot.getModificationType() == ModificationType.DELETE) { + Collection newCandidates = addToCurrentCandidates(entityId, candidate); + shard.tell(new CandidateAdded(entityId, candidate, new ArrayList<>(newCandidates)), shard); + } else if (type == ModificationType.DELETE || type == ModificationType.DISAPPEARED) { LOG.debug("{}: Candidate {} was removed for entity {}", logId, candidate, entityId); - Collection currentCandidates = removeFromCurrentCandidates(entityId, candidate); - shard.tell(new CandidateRemoved(entityId, candidate, new ArrayList<>(currentCandidates)), shard); + Collection newCandidates = removeFromCurrentCandidates(entityId, candidate); + shard.tell(new CandidateRemoved(entityId, candidate, new ArrayList<>(newCandidates)), shard); } } } private Collection addToCurrentCandidates(YangInstanceIdentifier entityId, String newCandidate) { Collection candidates = currentCandidates.get(entityId); - if(candidates == null) { + if (candidates == null) { candidates = new LinkedHashSet<>(); currentCandidates.put(entityId, candidates); } @@ -102,7 +105,7 @@ class CandidateListChangeListener implements DOMDataTreeChangeListener { private Collection removeFromCurrentCandidates(YangInstanceIdentifier entityId, String candidateToRemove) { Collection candidates = currentCandidates.get(entityId); - if(candidates != null) { + if (candidates != null) { candidates.remove(candidateToRemove); return candidates; } @@ -111,14 +114,14 @@ class CandidateListChangeListener implements DOMDataTreeChangeListener { return Collections.emptyList(); } - private YangInstanceIdentifier extractEntityPath(YangInstanceIdentifier candidatePath) { + private static YangInstanceIdentifier extractEntityPath(YangInstanceIdentifier candidatePath) { List newPathArgs = new ArrayList<>(); - for(PathArgument pathArg: candidatePath.getPathArguments()) { + for (PathArgument pathArg: candidatePath.getPathArguments()) { newPathArgs.add(pathArg); - if(pathArg instanceof NodeIdentifierWithPredicates) { + if (pathArg instanceof NodeIdentifierWithPredicates) { NodeIdentifierWithPredicates nodeKey = (NodeIdentifierWithPredicates) pathArg; Entry key = nodeKey.getKeyValues().entrySet().iterator().next(); - if(ENTITY_ID_QNAME.equals(key.getKey())) { + if (ENTITY_ID_QNAME.equals(key.getKey())) { break; } } @@ -126,4 +129,4 @@ class CandidateListChangeListener implements DOMDataTreeChangeListener { return YangInstanceIdentifier.create(newPathArgs); } -} \ No newline at end of file +}