Bug 4105: Remove candidates on PeerDown
[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 String logId;
51     private final ActorRef shard;
52     private final Map<YangInstanceIdentifier, Collection<String>> currentCandidates = new HashMap<>();
53
54     CandidateListChangeListener(ActorRef shard, String logId) {
55         this.shard = Preconditions.checkNotNull(shard, "shard should not be null");
56         this.logId = logId;
57     }
58
59     void init(ShardDataTree shardDataTree) {
60         shardDataTree.registerTreeChangeListener(YangInstanceIdentifier.builder(ENTITY_OWNERS_PATH).
61                 node(EntityType.QNAME).node(EntityType.QNAME).node(ENTITY_QNAME).node(ENTITY_QNAME).
62                         node(Candidate.QNAME).node(Candidate.QNAME).build(), this);
63     }
64
65     @Override
66     public void onDataTreeChanged(Collection<DataTreeCandidate> changes) {
67         for(DataTreeCandidate change: changes) {
68             DataTreeCandidateNode changeRoot = change.getRootNode();
69
70             LOG.debug("{}: Candidate node changed: {}, {}", logId, changeRoot.getModificationType(), change.getRootPath());
71
72             NodeIdentifierWithPredicates candidateKey =
73                     (NodeIdentifierWithPredicates) change.getRootPath().getLastPathArgument();
74             String candidate = candidateKey.getKeyValues().get(CANDIDATE_NAME_QNAME).toString();
75
76             YangInstanceIdentifier entityId = extractEntityPath(change.getRootPath());
77
78             if(changeRoot.getModificationType() == ModificationType.WRITE) {
79                 LOG.debug("{}: Candidate {} was added for entity {}", logId, candidate, entityId);
80
81                 Collection<String> currentCandidates = addToCurrentCandidates(entityId, candidate);
82                 shard.tell(new CandidateAdded(entityId, candidate, new ArrayList<>(currentCandidates)), shard);
83             } else if(changeRoot.getModificationType() == ModificationType.DELETE) {
84                 LOG.debug("{}: Candidate {} was removed for entity {}", logId, candidate, entityId);
85
86                 Collection<String> currentCandidates = removeFromCurrentCandidates(entityId, candidate);
87                 shard.tell(new CandidateRemoved(entityId, candidate, new ArrayList<>(currentCandidates)), shard);
88             }
89         }
90     }
91
92     private Collection<String> addToCurrentCandidates(YangInstanceIdentifier entityId, String newCandidate) {
93         Collection<String> candidates = currentCandidates.get(entityId);
94         if(candidates == null) {
95             candidates = new LinkedHashSet<>();
96             currentCandidates.put(entityId, candidates);
97         }
98
99         candidates.add(newCandidate);
100         return candidates;
101     }
102
103     private Collection<String> removeFromCurrentCandidates(YangInstanceIdentifier entityId, String candidateToRemove) {
104         Collection<String> candidates = currentCandidates.get(entityId);
105         if(candidates != null) {
106             candidates.remove(candidateToRemove);
107             return candidates;
108         }
109
110         // Shouldn't happen
111         return Collections.emptyList();
112     }
113
114     private YangInstanceIdentifier extractEntityPath(YangInstanceIdentifier candidatePath) {
115         List<PathArgument> newPathArgs = new ArrayList<>();
116         for(PathArgument pathArg: candidatePath.getPathArguments()) {
117             newPathArgs.add(pathArg);
118             if(pathArg instanceof NodeIdentifierWithPredicates) {
119                 NodeIdentifierWithPredicates nodeKey = (NodeIdentifierWithPredicates) pathArg;
120                 Entry<QName, Object> key = nodeKey.getKeyValues().entrySet().iterator().next();
121                 if(ENTITY_ID_QNAME.equals(key.getKey())) {
122                     break;
123                 }
124             }
125         }
126
127         return YangInstanceIdentifier.create(newPathArgs);
128     }
129 }