blob: 75cb96c03fb8413b271da7749281fc3c110137f7 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.store.link.impl;
Madan Jampani2ff05592014-10-10 15:42:47 -070017
Jonathan Hart7d656f42015-01-27 14:07:23 -080018import com.google.common.base.Function;
19import com.google.common.collect.FluentIterable;
20import com.google.common.collect.ImmutableList;
21import com.google.common.collect.Multimaps;
22import com.google.common.collect.SetMultimap;
23import com.google.common.collect.Sets;
Madan Jampania97e8202014-10-10 17:01:33 -070024import org.apache.commons.lang3.RandomUtils;
Madan Jampani2ff05592014-10-10 15:42:47 -070025import org.apache.felix.scr.annotations.Activate;
26import org.apache.felix.scr.annotations.Component;
27import org.apache.felix.scr.annotations.Deactivate;
28import org.apache.felix.scr.annotations.Reference;
29import org.apache.felix.scr.annotations.ReferenceCardinality;
30import org.apache.felix.scr.annotations.Service;
Ray Milkey7bbeb3f2014-12-11 14:59:26 -080031import org.onlab.util.KryoNamespace;
Brian O'Connorabafb502014-12-02 22:26:20 -080032import org.onosproject.cluster.ClusterService;
33import org.onosproject.cluster.ControllerNode;
34import org.onosproject.cluster.NodeId;
Marc De Leenheerb473b9d2015-02-06 15:21:03 -080035import org.onosproject.mastership.MastershipService;
Brian O'Connorabafb502014-12-02 22:26:20 -080036import org.onosproject.net.AnnotationKeys;
37import org.onosproject.net.AnnotationsUtil;
38import org.onosproject.net.ConnectPoint;
39import org.onosproject.net.DefaultAnnotations;
40import org.onosproject.net.DefaultLink;
41import org.onosproject.net.DeviceId;
42import org.onosproject.net.Link;
43import org.onosproject.net.Link.Type;
44import org.onosproject.net.LinkKey;
45import org.onosproject.net.SparseAnnotations;
46import org.onosproject.net.device.DeviceClockService;
47import org.onosproject.net.link.DefaultLinkDescription;
48import org.onosproject.net.link.LinkDescription;
49import org.onosproject.net.link.LinkEvent;
50import org.onosproject.net.link.LinkStore;
51import org.onosproject.net.link.LinkStoreDelegate;
52import org.onosproject.net.provider.ProviderId;
53import org.onosproject.store.AbstractStore;
54import org.onosproject.store.Timestamp;
55import org.onosproject.store.cluster.messaging.ClusterCommunicationService;
56import org.onosproject.store.cluster.messaging.ClusterMessage;
57import org.onosproject.store.cluster.messaging.ClusterMessageHandler;
58import org.onosproject.store.cluster.messaging.MessageSubject;
59import org.onosproject.store.impl.Timestamped;
60import org.onosproject.store.serializers.KryoSerializer;
61import org.onosproject.store.serializers.impl.DistributedStoreSerializers;
Madan Jampani2ff05592014-10-10 15:42:47 -070062import org.slf4j.Logger;
63
Jonathan Hart7d656f42015-01-27 14:07:23 -080064import java.io.IOException;
65import java.util.Collection;
66import java.util.Collections;
67import java.util.HashMap;
68import java.util.HashSet;
69import java.util.Map;
70import java.util.Map.Entry;
71import java.util.Objects;
72import java.util.Set;
73import java.util.concurrent.ConcurrentHashMap;
74import java.util.concurrent.ConcurrentMap;
75import java.util.concurrent.ExecutorService;
76import java.util.concurrent.Executors;
77import java.util.concurrent.ScheduledExecutorService;
78import java.util.concurrent.TimeUnit;
Madan Jampani2ff05592014-10-10 15:42:47 -070079
Thomas Vachuska57126fe2014-11-11 17:13:24 -080080import static com.google.common.base.Preconditions.checkNotNull;
81import static com.google.common.base.Predicates.notNull;
82import static com.google.common.collect.Multimaps.synchronizedSetMultimap;
Madan Jampania97e8202014-10-10 17:01:33 -070083import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
Thomas Vachuska6f94ded2015-02-21 14:02:38 -080084import static org.onlab.util.Tools.groupedThreads;
Ray Milkey7bbeb3f2014-12-11 14:59:26 -080085import static org.onlab.util.Tools.minPriority;
Brian O'Connorabafb502014-12-02 22:26:20 -080086import static org.onosproject.cluster.ControllerNodeToNodeId.toNodeId;
87import static org.onosproject.net.DefaultAnnotations.merge;
88import static org.onosproject.net.DefaultAnnotations.union;
89import static org.onosproject.net.Link.State.ACTIVE;
90import static org.onosproject.net.Link.State.INACTIVE;
91import static org.onosproject.net.Link.Type.DIRECT;
92import static org.onosproject.net.Link.Type.INDIRECT;
93import static org.onosproject.net.LinkKey.linkKey;
Marc De Leenheerb473b9d2015-02-06 15:21:03 -080094import static org.onosproject.net.link.LinkEvent.Type.*;
Brian O'Connorabafb502014-12-02 22:26:20 -080095import static org.onosproject.store.link.impl.GossipLinkStoreMessageSubjects.LINK_ANTI_ENTROPY_ADVERTISEMENT;
Madan Jampani2ff05592014-10-10 15:42:47 -070096import static org.slf4j.LoggerFactory.getLogger;
Madan Jampani2ff05592014-10-10 15:42:47 -070097
98/**
99 * Manages inventory of infrastructure links in distributed data store
100 * that uses optimistic replication and gossip based techniques.
101 */
102@Component(immediate = true)
103@Service
104public class GossipLinkStore
105 extends AbstractStore<LinkEvent, LinkStoreDelegate>
106 implements LinkStore {
107
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800108 // Timeout in milliseconds to process links on remote master node
109 private static final int REMOTE_MASTER_TIMEOUT = 1000;
110
Madan Jampani2ff05592014-10-10 15:42:47 -0700111 private final Logger log = getLogger(getClass());
112
113 // Link inventory
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700114 private final ConcurrentMap<LinkKey, Map<ProviderId, Timestamped<LinkDescription>>> linkDescs =
Madan Jampani2ff05592014-10-10 15:42:47 -0700115 new ConcurrentHashMap<>();
116
117 // Link instance cache
118 private final ConcurrentMap<LinkKey, Link> links = new ConcurrentHashMap<>();
119
120 // Egress and ingress link sets
121 private final SetMultimap<DeviceId, LinkKey> srcLinks = createSynchronizedHashMultiMap();
122 private final SetMultimap<DeviceId, LinkKey> dstLinks = createSynchronizedHashMultiMap();
123
124 // Remove links
Yuta HIGUCHIb9125562014-12-01 23:28:22 -0800125 private final Map<LinkKey, Timestamp> removedLinks = new ConcurrentHashMap<>();
Madan Jampani2ff05592014-10-10 15:42:47 -0700126
127 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -0700128 protected DeviceClockService deviceClockService;
Madan Jampani2ff05592014-10-10 15:42:47 -0700129
130 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
131 protected ClusterCommunicationService clusterCommunicator;
132
133 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
134 protected ClusterService clusterService;
135
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800136 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
137 protected MastershipService mastershipService;
138
Yuta HIGUCHI3e5d11a2014-11-04 14:16:44 -0800139 protected static final KryoSerializer SERIALIZER = new KryoSerializer() {
Madan Jampani2ff05592014-10-10 15:42:47 -0700140 @Override
141 protected void setupKryoPool() {
Yuta HIGUCHI8d143d22014-10-19 23:15:09 -0700142 serializerPool = KryoNamespace.newBuilder()
Yuta HIGUCHI91768e32014-11-22 05:06:35 -0800143 .register(DistributedStoreSerializers.STORE_COMMON)
144 .nextId(DistributedStoreSerializers.STORE_CUSTOM_BEGIN)
Madan Jampani2ff05592014-10-10 15:42:47 -0700145 .register(InternalLinkEvent.class)
146 .register(InternalLinkRemovedEvent.class)
Madan Jampanid2054d42014-10-10 17:27:06 -0700147 .register(LinkAntiEntropyAdvertisement.class)
148 .register(LinkFragmentId.class)
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800149 .register(LinkInjectedEvent.class)
Yuta HIGUCHI91768e32014-11-22 05:06:35 -0800150 .build();
Madan Jampani2ff05592014-10-10 15:42:47 -0700151 }
152 };
153
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800154 private ExecutorService executor;
155
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800156 private ScheduledExecutorService backgroundExecutors;
Madan Jampania97e8202014-10-10 17:01:33 -0700157
Madan Jampani2ff05592014-10-10 15:42:47 -0700158 @Activate
159 public void activate() {
160
Thomas Vachuska6f94ded2015-02-21 14:02:38 -0800161 executor = Executors.newCachedThreadPool(groupedThreads("onos/link", "fg-%d"));
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800162
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800163 backgroundExecutors =
Thomas Vachuska6f94ded2015-02-21 14:02:38 -0800164 newSingleThreadScheduledExecutor(minPriority(groupedThreads("onos/link", "bg-%d")));
Madan Jampania97e8202014-10-10 17:01:33 -0700165
Madan Jampani2af244a2015-02-22 13:12:01 -0800166 clusterCommunicator.addSubscriber(
167 GossipLinkStoreMessageSubjects.LINK_UPDATE,
168 new InternalLinkEventListener(), executor);
169 clusterCommunicator.addSubscriber(
170 GossipLinkStoreMessageSubjects.LINK_REMOVED,
171 new InternalLinkRemovedEventListener(), executor);
172 clusterCommunicator.addSubscriber(
173 GossipLinkStoreMessageSubjects.LINK_ANTI_ENTROPY_ADVERTISEMENT,
174 new InternalLinkAntiEntropyAdvertisementListener(), backgroundExecutors);
175 clusterCommunicator.addSubscriber(
176 GossipLinkStoreMessageSubjects.LINK_INJECTED,
177 new LinkInjectedEventListener(), executor);
178
Madan Jampania97e8202014-10-10 17:01:33 -0700179 long initialDelaySec = 5;
180 long periodSec = 5;
181 // start anti-entropy thread
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800182 backgroundExecutors.scheduleAtFixedRate(new SendAdvertisementTask(),
Madan Jampania97e8202014-10-10 17:01:33 -0700183 initialDelaySec, periodSec, TimeUnit.SECONDS);
Madan Jampani2ff05592014-10-10 15:42:47 -0700184
185 log.info("Started");
186 }
187
188 @Deactivate
189 public void deactivate() {
Madan Jampani3ffbb272014-10-13 11:19:37 -0700190
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800191 executor.shutdownNow();
192
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800193 backgroundExecutors.shutdownNow();
Madan Jampani3ffbb272014-10-13 11:19:37 -0700194 try {
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800195 if (!backgroundExecutors.awaitTermination(5, TimeUnit.SECONDS)) {
Madan Jampani3ffbb272014-10-13 11:19:37 -0700196 log.error("Timeout during executor shutdown");
197 }
198 } catch (InterruptedException e) {
199 log.error("Error during executor shutdown", e);
200 }
201
Madan Jampani2ff05592014-10-10 15:42:47 -0700202 linkDescs.clear();
203 links.clear();
204 srcLinks.clear();
205 dstLinks.clear();
206 log.info("Stopped");
207 }
208
209 @Override
210 public int getLinkCount() {
211 return links.size();
212 }
213
214 @Override
215 public Iterable<Link> getLinks() {
216 return Collections.unmodifiableCollection(links.values());
217 }
218
219 @Override
220 public Set<Link> getDeviceEgressLinks(DeviceId deviceId) {
221 // lock for iteration
222 synchronized (srcLinks) {
223 return FluentIterable.from(srcLinks.get(deviceId))
224 .transform(lookupLink())
225 .filter(notNull())
226 .toSet();
227 }
228 }
229
230 @Override
231 public Set<Link> getDeviceIngressLinks(DeviceId deviceId) {
232 // lock for iteration
233 synchronized (dstLinks) {
234 return FluentIterable.from(dstLinks.get(deviceId))
235 .transform(lookupLink())
236 .filter(notNull())
237 .toSet();
238 }
239 }
240
241 @Override
242 public Link getLink(ConnectPoint src, ConnectPoint dst) {
Yuta HIGUCHI18ab8a92014-10-13 11:16:19 -0700243 return links.get(linkKey(src, dst));
Madan Jampani2ff05592014-10-10 15:42:47 -0700244 }
245
246 @Override
247 public Set<Link> getEgressLinks(ConnectPoint src) {
248 Set<Link> egress = new HashSet<>();
HIGUCHI Yuta4d973eb2015-02-26 14:28:49 -0800249 //
250 // Change `srcLinks` to ConcurrentMap<DeviceId, (Concurrent)Set>
251 // to remove this synchronized block, if we hit performance issue.
252 // SetMultiMap#get returns wrapped collection to provide modifiable-view.
253 // And the wrapped collection is not concurrent access safe.
254 //
255 // Our use case here does not require returned collection to be modifiable,
256 // so the wrapped collection forces us to lock the whole multiset,
257 // for benefit we don't need.
258 //
259 // Same applies to `dstLinks`
260 synchronized (srcLinks) {
261 for (LinkKey linkKey : srcLinks.get(src.deviceId())) {
262 if (linkKey.src().equals(src)) {
263 Link link = links.get(linkKey);
264 if (link != null) {
265 egress.add(link);
266 } else {
267 log.debug("Egress link for {} was null, skipped", linkKey);
268 }
Ray Milkey7bbeb3f2014-12-11 14:59:26 -0800269 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700270 }
271 }
272 return egress;
273 }
274
275 @Override
276 public Set<Link> getIngressLinks(ConnectPoint dst) {
277 Set<Link> ingress = new HashSet<>();
HIGUCHI Yuta4d973eb2015-02-26 14:28:49 -0800278 synchronized (dstLinks) {
279 for (LinkKey linkKey : dstLinks.get(dst.deviceId())) {
280 if (linkKey.dst().equals(dst)) {
281 Link link = links.get(linkKey);
282 if (link != null) {
283 ingress.add(link);
284 } else {
285 log.debug("Ingress link for {} was null, skipped", linkKey);
286 }
Ray Milkey7bbeb3f2014-12-11 14:59:26 -0800287 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700288 }
289 }
290 return ingress;
291 }
292
293 @Override
294 public LinkEvent createOrUpdateLink(ProviderId providerId,
295 LinkDescription linkDescription) {
296
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800297 final DeviceId dstDeviceId = linkDescription.dst().deviceId();
298 final NodeId localNode = clusterService.getLocalNode().id();
299 final NodeId dstNode = mastershipService.getMasterFor(dstDeviceId);
Madan Jampani2ff05592014-10-10 15:42:47 -0700300
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800301 // Process link update only if we're the master of the destination node,
302 // otherwise signal the actual master.
303 LinkEvent linkEvent = null;
304 if (localNode.equals(dstNode)) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700305
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800306 Timestamp newTimestamp = deviceClockService.getTimestamp(dstDeviceId);
307
308 final Timestamped<LinkDescription> deltaDesc = new Timestamped<>(linkDescription, newTimestamp);
309
310 LinkKey key = linkKey(linkDescription.src(), linkDescription.dst());
311 final Timestamped<LinkDescription> mergedDesc;
312 Map<ProviderId, Timestamped<LinkDescription>> map = getOrCreateLinkDescriptions(key);
313
314 synchronized (map) {
315 linkEvent = createOrUpdateLinkInternal(providerId, deltaDesc);
316 mergedDesc = map.get(providerId);
317 }
318
319 if (linkEvent != null) {
320 log.info("Notifying peers of a link update topology event from providerId: "
321 + "{} between src: {} and dst: {}",
322 providerId, linkDescription.src(), linkDescription.dst());
323 notifyPeers(new InternalLinkEvent(providerId, mergedDesc));
324 }
325
326 } else {
HIGUCHI Yutadc2e7c22015-02-24 12:19:47 -0800327 // FIXME Temporary hack for NPE (ONOS-1171).
328 // Proper fix is to implement forwarding to master on ConfigProvider
329 // redo ONOS-490
330 if (dstNode == null) {
331 // silently ignore
332 return null;
333 }
334
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800335
336 LinkInjectedEvent linkInjectedEvent = new LinkInjectedEvent(providerId, linkDescription);
337 ClusterMessage linkInjectedMessage = new ClusterMessage(localNode,
338 GossipLinkStoreMessageSubjects.LINK_INJECTED, SERIALIZER.encode(linkInjectedEvent));
339
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800340 // TODO check unicast return value
341 clusterCommunicator.unicast(linkInjectedMessage, dstNode);
342 /* error log:
343 log.warn("Failed to process link update between src: {} and dst: {} " +
344 "(cluster messaging failed: {})",
345 linkDescription.src(), linkDescription.dst(), e);
346 */
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800347
Yuta HIGUCHI92cd51e2014-10-13 10:51:45 -0700348 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700349
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800350 return linkEvent;
Madan Jampani2ff05592014-10-10 15:42:47 -0700351 }
352
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800353 @Override
354 public LinkEvent removeOrDownLink(ConnectPoint src, ConnectPoint dst) {
355 Link link = getLink(src, dst);
356 if (link == null) {
357 return null;
358 }
359
360 if (link.isDurable()) {
361 // FIXME: this is not the right thing to call for the gossip store; will not sync link state!!!
362 return link.state() == INACTIVE ? null :
363 updateLink(linkKey(link.src(), link.dst()), link,
364 new DefaultLink(link.providerId(),
365 link.src(), link.dst(),
366 link.type(), INACTIVE,
367 link.isDurable(),
368 link.annotations()));
369 }
370 return removeLink(src, dst);
371 }
372
Madan Jampani2ff05592014-10-10 15:42:47 -0700373 private LinkEvent createOrUpdateLinkInternal(
374 ProviderId providerId,
375 Timestamped<LinkDescription> linkDescription) {
376
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700377 final LinkKey key = linkKey(linkDescription.value().src(),
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800378 linkDescription.value().dst());
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700379 Map<ProviderId, Timestamped<LinkDescription>> descs = getOrCreateLinkDescriptions(key);
Madan Jampani2ff05592014-10-10 15:42:47 -0700380
381 synchronized (descs) {
382 // if the link was previously removed, we should proceed if and
383 // only if this request is more recent.
384 Timestamp linkRemovedTimestamp = removedLinks.get(key);
385 if (linkRemovedTimestamp != null) {
Jonathan Hart403ea932015-02-20 16:23:00 -0800386 if (linkDescription.isNewerThan(linkRemovedTimestamp)) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700387 removedLinks.remove(key);
388 } else {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700389 log.trace("Link {} was already removed ignoring.", key);
Madan Jampani2ff05592014-10-10 15:42:47 -0700390 return null;
391 }
392 }
393
394 final Link oldLink = links.get(key);
395 // update description
396 createOrUpdateLinkDescription(descs, providerId, linkDescription);
397 final Link newLink = composeLink(descs);
398 if (oldLink == null) {
399 return createLink(key, newLink);
400 }
401 return updateLink(key, oldLink, newLink);
402 }
403 }
404
405 // Guarded by linkDescs value (=locking each Link)
406 private Timestamped<LinkDescription> createOrUpdateLinkDescription(
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700407 Map<ProviderId, Timestamped<LinkDescription>> descs,
Madan Jampani2ff05592014-10-10 15:42:47 -0700408 ProviderId providerId,
409 Timestamped<LinkDescription> linkDescription) {
410
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700411 // merge existing annotations
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700412 Timestamped<LinkDescription> existingLinkDescription = descs.get(providerId);
Madan Jampani2ff05592014-10-10 15:42:47 -0700413 if (existingLinkDescription != null && existingLinkDescription.isNewer(linkDescription)) {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700414 log.trace("local info is more up-to-date, ignoring {}.", linkDescription);
Madan Jampani2ff05592014-10-10 15:42:47 -0700415 return null;
416 }
417 Timestamped<LinkDescription> newLinkDescription = linkDescription;
418 if (existingLinkDescription != null) {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700419 // we only allow transition from INDIRECT -> DIRECT
420 final Type newType;
421 if (existingLinkDescription.value().type() == DIRECT) {
422 newType = DIRECT;
423 } else {
424 newType = linkDescription.value().type();
425 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700426 SparseAnnotations merged = union(existingLinkDescription.value().annotations(),
427 linkDescription.value().annotations());
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800428 newLinkDescription = new Timestamped<>(
Madan Jampani2ff05592014-10-10 15:42:47 -0700429 new DefaultLinkDescription(
430 linkDescription.value().src(),
431 linkDescription.value().dst(),
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700432 newType, merged),
Madan Jampani2ff05592014-10-10 15:42:47 -0700433 linkDescription.timestamp());
434 }
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700435 return descs.put(providerId, newLinkDescription);
Madan Jampani2ff05592014-10-10 15:42:47 -0700436 }
437
438 // Creates and stores the link and returns the appropriate event.
439 // Guarded by linkDescs value (=locking each Link)
440 private LinkEvent createLink(LinkKey key, Link newLink) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700441 links.put(key, newLink);
442 srcLinks.put(newLink.src().deviceId(), key);
443 dstLinks.put(newLink.dst().deviceId(), key);
444 return new LinkEvent(LINK_ADDED, newLink);
445 }
446
447 // Updates, if necessary the specified link and returns the appropriate event.
448 // Guarded by linkDescs value (=locking each Link)
449 private LinkEvent updateLink(LinkKey key, Link oldLink, Link newLink) {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700450 // Note: INDIRECT -> DIRECT transition only
451 // so that BDDP discovered Link will not overwrite LDDP Link
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800452 if (oldLink.state() != newLink.state() ||
453 (oldLink.type() == INDIRECT && newLink.type() == DIRECT) ||
Madan Jampani2ff05592014-10-10 15:42:47 -0700454 !AnnotationsUtil.isEqual(oldLink.annotations(), newLink.annotations())) {
455
456 links.put(key, newLink);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800457 // strictly speaking following can be omitted
Madan Jampani2ff05592014-10-10 15:42:47 -0700458 srcLinks.put(oldLink.src().deviceId(), key);
459 dstLinks.put(oldLink.dst().deviceId(), key);
460 return new LinkEvent(LINK_UPDATED, newLink);
461 }
462 return null;
463 }
464
465 @Override
466 public LinkEvent removeLink(ConnectPoint src, ConnectPoint dst) {
Yuta HIGUCHI18ab8a92014-10-13 11:16:19 -0700467 final LinkKey key = linkKey(src, dst);
Madan Jampani2ff05592014-10-10 15:42:47 -0700468
469 DeviceId dstDeviceId = dst.deviceId();
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700470 Timestamp timestamp = null;
471 try {
472 timestamp = deviceClockService.getTimestamp(dstDeviceId);
473 } catch (IllegalStateException e) {
Yuta HIGUCHId6a0ac32014-11-04 09:26:31 -0800474 log.warn("Failed to remove link {}, was not the master", key);
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700475 //there are times when this is called before mastership
476 // handoff correctly completes.
477 return null;
478 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700479
480 LinkEvent event = removeLinkInternal(key, timestamp);
481
482 if (event != null) {
483 log.info("Notifying peers of a link removed topology event for a link "
484 + "between src: {} and dst: {}", src, dst);
Jonathan Hart7d656f42015-01-27 14:07:23 -0800485 notifyPeers(new InternalLinkRemovedEvent(key, timestamp));
Madan Jampani2ff05592014-10-10 15:42:47 -0700486 }
487 return event;
488 }
489
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700490 private static Timestamped<LinkDescription> getPrimaryDescription(
491 Map<ProviderId, Timestamped<LinkDescription>> linkDescriptions) {
492
Madan Jampani2ff05592014-10-10 15:42:47 -0700493 synchronized (linkDescriptions) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700494 for (Entry<ProviderId, Timestamped<LinkDescription>>
495 e : linkDescriptions.entrySet()) {
496
497 if (!e.getKey().isAncillary()) {
498 return e.getValue();
499 }
500 }
501 }
502 return null;
503 }
504
505
506 // TODO: consider slicing out as Timestamp utils
507 /**
508 * Checks is timestamp is more recent than timestamped object.
509 *
510 * @param timestamp to check if this is more recent then other
511 * @param timestamped object to be tested against
512 * @return true if {@code timestamp} is more recent than {@code timestamped}
513 * or {@code timestamped is null}
514 */
515 private static boolean isMoreRecent(Timestamp timestamp, Timestamped<?> timestamped) {
516 checkNotNull(timestamp);
517 if (timestamped == null) {
518 return true;
519 }
520 return timestamp.compareTo(timestamped.timestamp()) > 0;
521 }
522
523 private LinkEvent removeLinkInternal(LinkKey key, Timestamp timestamp) {
524 Map<ProviderId, Timestamped<LinkDescription>> linkDescriptions
525 = getOrCreateLinkDescriptions(key);
526
527 synchronized (linkDescriptions) {
528 if (linkDescriptions.isEmpty()) {
529 // never seen such link before. keeping timestamp for record
530 removedLinks.put(key, timestamp);
531 return null;
532 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700533 // accept removal request if given timestamp is newer than
534 // the latest Timestamp from Primary provider
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700535 Timestamped<LinkDescription> prim = getPrimaryDescription(linkDescriptions);
536 if (!isMoreRecent(timestamp, prim)) {
537 // outdated remove request, ignore
Madan Jampani2ff05592014-10-10 15:42:47 -0700538 return null;
539 }
540 removedLinks.put(key, timestamp);
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800541 Link link = links.remove(key);
Madan Jampani2ff05592014-10-10 15:42:47 -0700542 linkDescriptions.clear();
543 if (link != null) {
544 srcLinks.remove(link.src().deviceId(), key);
545 dstLinks.remove(link.dst().deviceId(), key);
546 return new LinkEvent(LINK_REMOVED, link);
547 }
548 return null;
549 }
550 }
551
Yuta HIGUCHI800fac62014-12-11 19:23:01 -0800552 /**
553 * Creates concurrent readable, synchronized HashMultimap.
554 *
555 * @return SetMultimap
556 */
Madan Jampani2ff05592014-10-10 15:42:47 -0700557 private static <K, V> SetMultimap<K, V> createSynchronizedHashMultiMap() {
Yuta HIGUCHI800fac62014-12-11 19:23:01 -0800558 return synchronizedSetMultimap(
559 Multimaps.newSetMultimap(new ConcurrentHashMap<K, Collection<V>>(),
560 () -> Sets.newConcurrentHashSet()));
Madan Jampani2ff05592014-10-10 15:42:47 -0700561 }
562
563 /**
564 * @return primary ProviderID, or randomly chosen one if none exists
565 */
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700566 private static ProviderId pickBaseProviderId(
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700567 Map<ProviderId, Timestamped<LinkDescription>> linkDescriptions) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700568
569 ProviderId fallBackPrimary = null;
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700570 for (Entry<ProviderId, Timestamped<LinkDescription>> e : linkDescriptions.entrySet()) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700571 if (!e.getKey().isAncillary()) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700572 // found primary
Madan Jampani2ff05592014-10-10 15:42:47 -0700573 return e.getKey();
574 } else if (fallBackPrimary == null) {
575 // pick randomly as a fallback in case there is no primary
576 fallBackPrimary = e.getKey();
577 }
578 }
579 return fallBackPrimary;
580 }
581
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700582 // Guarded by linkDescs value (=locking each Link)
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700583 private Link composeLink(Map<ProviderId, Timestamped<LinkDescription>> descs) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700584 ProviderId baseProviderId = pickBaseProviderId(descs);
585 Timestamped<LinkDescription> base = descs.get(baseProviderId);
Madan Jampani2ff05592014-10-10 15:42:47 -0700586
587 ConnectPoint src = base.value().src();
588 ConnectPoint dst = base.value().dst();
589 Type type = base.value().type();
590 DefaultAnnotations annotations = DefaultAnnotations.builder().build();
591 annotations = merge(annotations, base.value().annotations());
592
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700593 for (Entry<ProviderId, Timestamped<LinkDescription>> e : descs.entrySet()) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700594 if (baseProviderId.equals(e.getKey())) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700595 continue;
596 }
597
Yuta HIGUCHI65934892014-12-04 17:47:44 -0800598 // Note: In the long run we should keep track of Description timestamp
Madan Jampani2ff05592014-10-10 15:42:47 -0700599 // and only merge conflicting keys when timestamp is newer
600 // Currently assuming there will never be a key conflict between
601 // providers
602
603 // annotation merging. not so efficient, should revisit later
604 annotations = merge(annotations, e.getValue().value().annotations());
605 }
606
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800607 boolean isDurable = Objects.equals(annotations.value(AnnotationKeys.DURABLE), "true");
Thomas Vachuskabadb93f2014-11-15 23:51:17 -0800608 return new DefaultLink(baseProviderId, src, dst, type, ACTIVE, isDurable, annotations);
Madan Jampani2ff05592014-10-10 15:42:47 -0700609 }
610
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700611 private Map<ProviderId, Timestamped<LinkDescription>> getOrCreateLinkDescriptions(LinkKey key) {
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700612 Map<ProviderId, Timestamped<LinkDescription>> r;
613 r = linkDescs.get(key);
614 if (r != null) {
615 return r;
616 }
617 r = new HashMap<>();
618 final Map<ProviderId, Timestamped<LinkDescription>> concurrentlyAdded;
619 concurrentlyAdded = linkDescs.putIfAbsent(key, r);
620 if (concurrentlyAdded != null) {
621 return concurrentlyAdded;
622 } else {
623 return r;
624 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700625 }
626
627 private final Function<LinkKey, Link> lookupLink = new LookupLink();
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800628
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700629 /**
630 * Returns a Function to lookup Link instance using LinkKey from cache.
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800631 *
632 * @return lookup link function
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700633 */
Madan Jampani2ff05592014-10-10 15:42:47 -0700634 private Function<LinkKey, Link> lookupLink() {
635 return lookupLink;
636 }
637
638 private final class LookupLink implements Function<LinkKey, Link> {
639 @Override
640 public Link apply(LinkKey input) {
Yuta HIGUCHI023295a2014-10-15 23:29:46 -0700641 if (input == null) {
642 return null;
643 } else {
644 return links.get(input);
645 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700646 }
647 }
648
Madan Jampani2ff05592014-10-10 15:42:47 -0700649 private void notifyDelegateIfNotNull(LinkEvent event) {
650 if (event != null) {
651 notifyDelegate(event);
652 }
653 }
654
Jonathan Hart7d656f42015-01-27 14:07:23 -0800655 private void broadcastMessage(MessageSubject subject, Object event) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700656 ClusterMessage message = new ClusterMessage(
657 clusterService.getLocalNode().id(),
658 subject,
659 SERIALIZER.encode(event));
660 clusterCommunicator.broadcast(message);
661 }
662
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700663 private void unicastMessage(NodeId recipient, MessageSubject subject, Object event) throws IOException {
664 ClusterMessage message = new ClusterMessage(
665 clusterService.getLocalNode().id(),
666 subject,
667 SERIALIZER.encode(event));
668 clusterCommunicator.unicast(message, recipient);
Madan Jampania97e8202014-10-10 17:01:33 -0700669 }
670
Jonathan Hart7d656f42015-01-27 14:07:23 -0800671 private void notifyPeers(InternalLinkEvent event) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700672 broadcastMessage(GossipLinkStoreMessageSubjects.LINK_UPDATE, event);
673 }
674
Jonathan Hart7d656f42015-01-27 14:07:23 -0800675 private void notifyPeers(InternalLinkRemovedEvent event) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700676 broadcastMessage(GossipLinkStoreMessageSubjects.LINK_REMOVED, event);
677 }
678
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700679 // notify peer, silently ignoring error
Madan Jampania97e8202014-10-10 17:01:33 -0700680 private void notifyPeer(NodeId peer, InternalLinkEvent event) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700681 try {
682 unicastMessage(peer, GossipLinkStoreMessageSubjects.LINK_UPDATE, event);
683 } catch (IOException e) {
684 log.debug("Failed to notify peer {} with message {}", peer, event);
685 }
Madan Jampania97e8202014-10-10 17:01:33 -0700686 }
687
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700688 // notify peer, silently ignoring error
Madan Jampania97e8202014-10-10 17:01:33 -0700689 private void notifyPeer(NodeId peer, InternalLinkRemovedEvent event) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700690 try {
691 unicastMessage(peer, GossipLinkStoreMessageSubjects.LINK_REMOVED, event);
692 } catch (IOException e) {
693 log.debug("Failed to notify peer {} with message {}", peer, event);
694 }
Madan Jampania97e8202014-10-10 17:01:33 -0700695 }
696
697 private final class SendAdvertisementTask implements Runnable {
698
699 @Override
700 public void run() {
701 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -0800702 log.debug("Interrupted, quitting");
Madan Jampania97e8202014-10-10 17:01:33 -0700703 return;
704 }
705
706 try {
707 final NodeId self = clusterService.getLocalNode().id();
708 Set<ControllerNode> nodes = clusterService.getNodes();
709
710 ImmutableList<NodeId> nodeIds = FluentIterable.from(nodes)
711 .transform(toNodeId())
712 .toList();
713
714 if (nodeIds.size() == 1 && nodeIds.get(0).equals(self)) {
Yuta HIGUCHIfaf9e1c2014-11-20 00:31:29 -0800715 log.trace("No other peers in the cluster.");
Madan Jampania97e8202014-10-10 17:01:33 -0700716 return;
717 }
718
719 NodeId peer;
720 do {
721 int idx = RandomUtils.nextInt(0, nodeIds.size());
722 peer = nodeIds.get(idx);
723 } while (peer.equals(self));
724
725 LinkAntiEntropyAdvertisement ad = createAdvertisement();
726
727 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -0800728 log.debug("Interrupted, quitting");
Madan Jampania97e8202014-10-10 17:01:33 -0700729 return;
730 }
731
732 try {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700733 unicastMessage(peer, LINK_ANTI_ENTROPY_ADVERTISEMENT, ad);
734 } catch (IOException e) {
735 log.debug("Failed to send anti-entropy advertisement to {}", peer);
Madan Jampania97e8202014-10-10 17:01:33 -0700736 return;
737 }
738 } catch (Exception e) {
739 // catch all Exception to avoid Scheduled task being suppressed.
740 log.error("Exception thrown while sending advertisement", e);
741 }
742 }
743 }
744
745 private LinkAntiEntropyAdvertisement createAdvertisement() {
746 final NodeId self = clusterService.getLocalNode().id();
747
748 Map<LinkFragmentId, Timestamp> linkTimestamps = new HashMap<>(linkDescs.size());
749 Map<LinkKey, Timestamp> linkTombstones = new HashMap<>(removedLinks.size());
750
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -0800751 linkDescs.forEach((linkKey, linkDesc) -> {
Madan Jampania97e8202014-10-10 17:01:33 -0700752 synchronized (linkDesc) {
753 for (Map.Entry<ProviderId, Timestamped<LinkDescription>> e : linkDesc.entrySet()) {
754 linkTimestamps.put(new LinkFragmentId(linkKey, e.getKey()), e.getValue().timestamp());
755 }
756 }
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -0800757 });
Madan Jampania97e8202014-10-10 17:01:33 -0700758
759 linkTombstones.putAll(removedLinks);
760
761 return new LinkAntiEntropyAdvertisement(self, linkTimestamps, linkTombstones);
762 }
763
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700764 private void handleAntiEntropyAdvertisement(LinkAntiEntropyAdvertisement ad) {
Madan Jampania97e8202014-10-10 17:01:33 -0700765
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700766 final NodeId sender = ad.sender();
767 boolean localOutdated = false;
Madan Jampania97e8202014-10-10 17:01:33 -0700768
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700769 for (Entry<LinkKey, Map<ProviderId, Timestamped<LinkDescription>>>
770 l : linkDescs.entrySet()) {
Madan Jampania97e8202014-10-10 17:01:33 -0700771
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700772 final LinkKey key = l.getKey();
773 final Map<ProviderId, Timestamped<LinkDescription>> link = l.getValue();
774 synchronized (link) {
775 Timestamp localLatest = removedLinks.get(key);
Madan Jampania97e8202014-10-10 17:01:33 -0700776
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700777 for (Entry<ProviderId, Timestamped<LinkDescription>> p : link.entrySet()) {
778 final ProviderId providerId = p.getKey();
779 final Timestamped<LinkDescription> pDesc = p.getValue();
Madan Jampania97e8202014-10-10 17:01:33 -0700780
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700781 final LinkFragmentId fragId = new LinkFragmentId(key, providerId);
782 // remote
783 Timestamp remoteTimestamp = ad.linkTimestamps().get(fragId);
784 if (remoteTimestamp == null) {
785 remoteTimestamp = ad.linkTombstones().get(key);
786 }
787 if (remoteTimestamp == null ||
Jonathan Hart403ea932015-02-20 16:23:00 -0800788 pDesc.isNewerThan(remoteTimestamp)) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700789 // I have more recent link description. update peer.
790 notifyPeer(sender, new InternalLinkEvent(providerId, pDesc));
791 } else {
792 final Timestamp remoteLive = ad.linkTimestamps().get(fragId);
793 if (remoteLive != null &&
794 remoteLive.compareTo(pDesc.timestamp()) > 0) {
795 // I have something outdated
796 localOutdated = true;
797 }
798 }
799
800 // search local latest along the way
801 if (localLatest == null ||
Jonathan Hart403ea932015-02-20 16:23:00 -0800802 pDesc.isNewerThan(localLatest)) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700803 localLatest = pDesc.timestamp();
804 }
805 }
806 // Tests if remote remove is more recent then local latest.
807 final Timestamp remoteRemove = ad.linkTombstones().get(key);
808 if (remoteRemove != null) {
809 if (localLatest != null &&
810 localLatest.compareTo(remoteRemove) < 0) {
811 // remote remove is more recent
812 notifyDelegateIfNotNull(removeLinkInternal(key, remoteRemove));
813 }
814 }
Madan Jampania97e8202014-10-10 17:01:33 -0700815 }
816 }
817
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700818 // populate remove info if not known locally
819 for (Entry<LinkKey, Timestamp> remoteRm : ad.linkTombstones().entrySet()) {
820 final LinkKey key = remoteRm.getKey();
821 final Timestamp remoteRemove = remoteRm.getValue();
822 // relying on removeLinkInternal to ignore stale info
823 notifyDelegateIfNotNull(removeLinkInternal(key, remoteRemove));
824 }
Madan Jampania97e8202014-10-10 17:01:33 -0700825
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700826 if (localOutdated) {
827 // send back advertisement to speed up convergence
828 try {
829 unicastMessage(sender, LINK_ANTI_ENTROPY_ADVERTISEMENT,
830 createAdvertisement());
831 } catch (IOException e) {
832 log.debug("Failed to send back active advertisement");
Madan Jampania97e8202014-10-10 17:01:33 -0700833 }
834 }
835 }
836
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800837 private final class InternalLinkEventListener
838 implements ClusterMessageHandler {
Madan Jampani2ff05592014-10-10 15:42:47 -0700839 @Override
840 public void handle(ClusterMessage message) {
841
Yuta HIGUCHIc01d2aa2014-10-19 01:19:34 -0700842 log.trace("Received link event from peer: {}", message.sender());
Madan Jampani2ff05592014-10-10 15:42:47 -0700843 InternalLinkEvent event = (InternalLinkEvent) SERIALIZER.decode(message.payload());
844
845 ProviderId providerId = event.providerId();
846 Timestamped<LinkDescription> linkDescription = event.linkDescription();
847
Madan Jampani2af244a2015-02-22 13:12:01 -0800848 try {
849 notifyDelegateIfNotNull(createOrUpdateLinkInternal(providerId, linkDescription));
850 } catch (Exception e) {
851 log.warn("Exception thrown handling link event", e);
852 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700853 }
854 }
855
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800856 private final class InternalLinkRemovedEventListener
857 implements ClusterMessageHandler {
Madan Jampani2ff05592014-10-10 15:42:47 -0700858 @Override
859 public void handle(ClusterMessage message) {
860
Yuta HIGUCHIc01d2aa2014-10-19 01:19:34 -0700861 log.trace("Received link removed event from peer: {}", message.sender());
Madan Jampani2ff05592014-10-10 15:42:47 -0700862 InternalLinkRemovedEvent event = (InternalLinkRemovedEvent) SERIALIZER.decode(message.payload());
863
864 LinkKey linkKey = event.linkKey();
865 Timestamp timestamp = event.timestamp();
866
Madan Jampani2af244a2015-02-22 13:12:01 -0800867 try {
868 notifyDelegateIfNotNull(removeLinkInternal(linkKey, timestamp));
869 } catch (Exception e) {
870 log.warn("Exception thrown handling link removed", e);
871 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700872 }
873 }
Madan Jampania97e8202014-10-10 17:01:33 -0700874
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800875 private final class InternalLinkAntiEntropyAdvertisementListener
876 implements ClusterMessageHandler {
Madan Jampania97e8202014-10-10 17:01:33 -0700877
878 @Override
879 public void handle(ClusterMessage message) {
Yuta HIGUCHIfaf9e1c2014-11-20 00:31:29 -0800880 log.trace("Received Link Anti-Entropy advertisement from peer: {}", message.sender());
Madan Jampania97e8202014-10-10 17:01:33 -0700881 LinkAntiEntropyAdvertisement advertisement = SERIALIZER.decode(message.payload());
Madan Jampani2af244a2015-02-22 13:12:01 -0800882 try {
883 handleAntiEntropyAdvertisement(advertisement);
884 } catch (Exception e) {
885 log.warn("Exception thrown while handling Link advertisements", e);
886 throw e;
887 }
Madan Jampania97e8202014-10-10 17:01:33 -0700888 }
889 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800890
891 private final class LinkInjectedEventListener
892 implements ClusterMessageHandler {
893 @Override
894 public void handle(ClusterMessage message) {
895
896 log.trace("Received injected link event from peer: {}", message.sender());
897 LinkInjectedEvent linkInjectedEvent = SERIALIZER.decode(message.payload());
898
899 ProviderId providerId = linkInjectedEvent.providerId();
900 LinkDescription linkDescription = linkInjectedEvent.linkDescription();
901
Madan Jampani2af244a2015-02-22 13:12:01 -0800902 try {
903 createOrUpdateLink(providerId, linkDescription);
904 } catch (Exception e) {
905 log.warn("Exception thrown while handling link injected event", e);
906 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800907 }
908 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700909}