Bug 4105: Integrate EntityOwnerChangeListener with EntityOwnershipShard
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / entityownership / CandidateListChangeListener.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.cluster.datastore.entityownership;
10
11 import static org.opendaylight.controller.cluster.datastore.entityownership.EntityOwnersModel.CANDIDATE_NAME_QNAME;
12 import static org.opendaylight.controller.cluster.datastore.entityownership.EntityOwnersModel.ENTITY_ID_QNAME;
13 import static org.opendaylight.controller.cluster.datastore.entityownership.EntityOwnersModel.ENTITY_OWNERS_PATH;
14 import static org.opendaylight.controller.cluster.datastore.entityownership.EntityOwnersModel.ENTITY_QNAME;
15 import akka.actor.ActorRef;
16 import com.google.common.base.Preconditions;
17 import java.util.ArrayList;
18 import java.util.Collection;
19 import java.util.Collections;
20 import java.util.HashMap;
21 import java.util.LinkedHashSet;
22 import java.util.List;
23 import java.util.Map;
24 import java.util.Map.Entry;
25 import org.opendaylight.controller.cluster.datastore.ShardDataTree;
26 import org.opendaylight.controller.cluster.datastore.entityownership.messages.CandidateAdded;
27 import org.opendaylight.controller.cluster.datastore.entityownership.messages.CandidateRemoved;
28 import org.opendaylight.controller.md.sal.dom.api.DOMDataTreeChangeListener;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.clustering.entity.owners.rev150804.entity.owners.EntityType;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.clustering.entity.owners.rev150804.entity.owners.entity.type.entity.Candidate;
31 import org.opendaylight.yangtools.yang.common.QName;
32 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
33 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
34 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
35 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate;
36 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidateNode;
37 import org.opendaylight.yangtools.yang.data.api.schema.tree.ModificationType;
38 import org.slf4j.Logger;
39 import org.slf4j.LoggerFactory;
40
41 /**
42  * Listens for candidate entries added/removed and notifies the EntityOwnershipShard appropriately.
43  *
44  * @author Moiz Raja
45  * @author Thomas Pantelis
46  */
47 class CandidateListChangeListener implements DOMDataTreeChangeListener {
48     private static final Logger LOG = LoggerFactory.getLogger(CandidateListChangeListener.class);
49
50     private final ActorRef shard;
51     private final Map<YangInstanceIdentifier, Collection<String>> currentCandidates = new HashMap<>();
52
53     CandidateListChangeListener(ActorRef shard) {
54         this.shard = Preconditions.checkNotNull(shard, "shard should not be null");
55     }
56
57     void init(ShardDataTree shardDataTree) {
58         shardDataTree.registerTreeChangeListener(YangInstanceIdentifier.builder(ENTITY_OWNERS_PATH).
59                 node(EntityType.QNAME).node(EntityType.QNAME).node(ENTITY_QNAME).node(ENTITY_QNAME).
60                         node(Candidate.QNAME).node(Candidate.QNAME).build(), this);
61     }
62
63     @Override
64     public void onDataTreeChanged(Collection<DataTreeCandidate> changes) {
65         for(DataTreeCandidate change: changes) {
66             DataTreeCandidateNode changeRoot = change.getRootNode();
67
68             LOG.debug("Candidate node changed: {}, {}", changeRoot.getModificationType(), change.getRootPath());
69
70             NodeIdentifierWithPredicates candidateKey =
71                     (NodeIdentifierWithPredicates) change.getRootPath().getLastPathArgument();
72             String candidate = candidateKey.getKeyValues().get(CANDIDATE_NAME_QNAME).toString();
73
74             YangInstanceIdentifier entityId = extractEntityPath(change.getRootPath());
75
76             if(changeRoot.getModificationType() == ModificationType.WRITE) {
77                 LOG.debug("Candidate {} was added for entity {}", candidate, entityId);
78
79                 Collection<String> currentCandidates = addToCurrentCandidates(entityId, candidate);
80                 shard.tell(new CandidateAdded(entityId, candidate, new ArrayList<>(currentCandidates)), shard);
81             } else if(changeRoot.getModificationType() == ModificationType.DELETE) {
82                 LOG.debug("Candidate {} was removed for entity {}", candidate, entityId);
83
84                 Collection<String> currentCandidates = removeFromCurrentCandidates(entityId, candidate);
85                 shard.tell(new CandidateRemoved(entityId, candidate, new ArrayList<>(currentCandidates)), shard);
86             }
87         }
88     }
89
90     private Collection<String> addToCurrentCandidates(YangInstanceIdentifier entityId, String newCandidate) {
91         Collection<String> candidates = currentCandidates.get(entityId);
92         if(candidates == null) {
93             candidates = new LinkedHashSet<>();
94             currentCandidates.put(entityId, candidates);
95         }
96
97         candidates.add(newCandidate);
98         return candidates;
99     }
100
101     private Collection<String> removeFromCurrentCandidates(YangInstanceIdentifier entityId, String candidateToRemove) {
102         Collection<String> candidates = currentCandidates.get(entityId);
103         if(candidates != null) {
104             candidates.remove(candidateToRemove);
105             return candidates;
106         }
107
108         // Shouldn't happen
109         return Collections.emptyList();
110     }
111
112     private YangInstanceIdentifier extractEntityPath(YangInstanceIdentifier candidatePath) {
113         List<PathArgument> newPathArgs = new ArrayList<>();
114         for(PathArgument pathArg: candidatePath.getPathArguments()) {
115             newPathArgs.add(pathArg);
116             if(pathArg instanceof NodeIdentifierWithPredicates) {
117                 NodeIdentifierWithPredicates nodeKey = (NodeIdentifierWithPredicates) pathArg;
118                 Entry<QName, Object> key = nodeKey.getKeyValues().entrySet().iterator().next();
119                 if(ENTITY_ID_QNAME.equals(key.getKey())) {
120                     break;
121                 }
122             }
123         }
124
125         return YangInstanceIdentifier.create(newPathArgs);
126     }
127 }