blob: f24a662e46b62d023c49ff78e65a06976d93bf7d [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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;
Madan Jampani2ff05592014-10-10 15:42:47 -070026import org.apache.felix.scr.annotations.Deactivate;
27import org.apache.felix.scr.annotations.Reference;
28import org.apache.felix.scr.annotations.ReferenceCardinality;
29import org.apache.felix.scr.annotations.Service;
Ray Milkey7bbeb3f2014-12-11 14:59:26 -080030import org.onlab.util.KryoNamespace;
Brian O'Connorabafb502014-12-02 22:26:20 -080031import org.onosproject.cluster.ClusterService;
32import org.onosproject.cluster.ControllerNode;
33import org.onosproject.cluster.NodeId;
Marc De Leenheerb473b9d2015-02-06 15:21:03 -080034import org.onosproject.mastership.MastershipService;
Brian O'Connorabafb502014-12-02 22:26:20 -080035import org.onosproject.net.AnnotationKeys;
36import org.onosproject.net.AnnotationsUtil;
37import org.onosproject.net.ConnectPoint;
38import org.onosproject.net.DefaultAnnotations;
39import org.onosproject.net.DefaultLink;
40import org.onosproject.net.DeviceId;
41import org.onosproject.net.Link;
42import org.onosproject.net.Link.Type;
43import org.onosproject.net.LinkKey;
44import org.onosproject.net.SparseAnnotations;
45import org.onosproject.net.device.DeviceClockService;
46import org.onosproject.net.link.DefaultLinkDescription;
47import org.onosproject.net.link.LinkDescription;
48import org.onosproject.net.link.LinkEvent;
49import org.onosproject.net.link.LinkStore;
50import org.onosproject.net.link.LinkStoreDelegate;
51import org.onosproject.net.provider.ProviderId;
52import org.onosproject.store.AbstractStore;
53import org.onosproject.store.Timestamp;
54import org.onosproject.store.cluster.messaging.ClusterCommunicationService;
55import org.onosproject.store.cluster.messaging.ClusterMessage;
56import org.onosproject.store.cluster.messaging.ClusterMessageHandler;
57import org.onosproject.store.cluster.messaging.MessageSubject;
58import org.onosproject.store.impl.Timestamped;
59import org.onosproject.store.serializers.KryoSerializer;
Brian O'Connor6de2e202015-05-21 14:30:41 -070060import org.onosproject.store.serializers.custom.DistributedStoreSerializers;
Madan Jampani2ff05592014-10-10 15:42:47 -070061import org.slf4j.Logger;
62
Jonathan Hart7d656f42015-01-27 14:07:23 -080063import java.io.IOException;
Jonathan Hart7d656f42015-01-27 14:07:23 -080064import java.util.Collections;
65import java.util.HashMap;
66import java.util.HashSet;
67import java.util.Map;
68import java.util.Map.Entry;
69import java.util.Objects;
70import java.util.Set;
71import java.util.concurrent.ConcurrentHashMap;
72import java.util.concurrent.ConcurrentMap;
73import java.util.concurrent.ExecutorService;
74import java.util.concurrent.Executors;
75import java.util.concurrent.ScheduledExecutorService;
76import java.util.concurrent.TimeUnit;
Madan Jampani2ff05592014-10-10 15:42:47 -070077
Thomas Vachuska57126fe2014-11-11 17:13:24 -080078import static com.google.common.base.Preconditions.checkNotNull;
79import static com.google.common.base.Predicates.notNull;
80import static com.google.common.collect.Multimaps.synchronizedSetMultimap;
Madan Jampania97e8202014-10-10 17:01:33 -070081import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
Thomas Vachuska6f94ded2015-02-21 14:02:38 -080082import static org.onlab.util.Tools.groupedThreads;
Ray Milkey7bbeb3f2014-12-11 14:59:26 -080083import static org.onlab.util.Tools.minPriority;
Brian O'Connorabafb502014-12-02 22:26:20 -080084import static org.onosproject.cluster.ControllerNodeToNodeId.toNodeId;
85import static org.onosproject.net.DefaultAnnotations.merge;
86import static org.onosproject.net.DefaultAnnotations.union;
87import static org.onosproject.net.Link.State.ACTIVE;
88import static org.onosproject.net.Link.State.INACTIVE;
89import static org.onosproject.net.Link.Type.DIRECT;
90import static org.onosproject.net.Link.Type.INDIRECT;
91import static org.onosproject.net.LinkKey.linkKey;
Jian Li11599162016-01-15 15:46:16 -080092import static org.onosproject.net.link.LinkEvent.Type.LINK_ADDED;
93import static org.onosproject.net.link.LinkEvent.Type.LINK_REMOVED;
94import static org.onosproject.net.link.LinkEvent.Type.LINK_UPDATED;
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 */
Jian Li11599162016-01-15 15:46:16 -0800102//@Component(immediate = true, enabled = false)
Madan Jampani2ff05592014-10-10 15:42:47 -0700103@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) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700320 log.debug("Notifying peers of a link update topology event from providerId: "
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800321 + "{} between src: {} and dst: {}",
322 providerId, linkDescription.src(), linkDescription.dst());
323 notifyPeers(new InternalLinkEvent(providerId, mergedDesc));
324 }
325
326 } else {
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800327 // Only forward for ConfigProvider
328 // Forwarding was added as a workaround for ONOS-490
HIGUCHI Yuta4ea4e422016-01-13 16:40:34 -0800329 if (!providerId.scheme().equals("cfg")) {
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800330 return null;
331 }
HIGUCHI Yutadc2e7c22015-02-24 12:19:47 -0800332 // FIXME Temporary hack for NPE (ONOS-1171).
333 // Proper fix is to implement forwarding to master on ConfigProvider
334 // redo ONOS-490
335 if (dstNode == null) {
336 // silently ignore
337 return null;
338 }
339
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800340
341 LinkInjectedEvent linkInjectedEvent = new LinkInjectedEvent(providerId, linkDescription);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800342
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800343 // TODO check unicast return value
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700344 clusterCommunicator.unicast(linkInjectedEvent,
345 GossipLinkStoreMessageSubjects.LINK_INJECTED,
346 SERIALIZER::encode,
347 dstNode);
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) {
Thomas Vachuska6f90c592015-06-03 20:06:58 -0700474 log.debug("Failed to remove link {}, was not the master", key);
475 // there are times when this is called before mastership
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700476 // 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) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700483 log.debug("Notifying peers of a link removed topology event for a link "
Madan Jampani2ff05592014-10-10 15:42:47 -0700484 + "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(
Sho SHIMIZU7a4087b2015-09-10 09:23:16 -0700559 Multimaps.newSetMultimap(new ConcurrentHashMap<>(),
Yuta HIGUCHI800fac62014-12-11 19:23:01 -0800560 () -> 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 Jampani2bfa94c2015-04-11 05:03:49 -0700656 clusterCommunicator.broadcast(event, subject, SERIALIZER::encode);
Madan Jampani2ff05592014-10-10 15:42:47 -0700657 }
658
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700659 private void unicastMessage(NodeId recipient, MessageSubject subject, Object event) throws IOException {
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700660 clusterCommunicator.unicast(event, subject, SERIALIZER::encode, recipient);
Madan Jampania97e8202014-10-10 17:01:33 -0700661 }
662
Jonathan Hart7d656f42015-01-27 14:07:23 -0800663 private void notifyPeers(InternalLinkEvent event) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700664 broadcastMessage(GossipLinkStoreMessageSubjects.LINK_UPDATE, event);
665 }
666
Jonathan Hart7d656f42015-01-27 14:07:23 -0800667 private void notifyPeers(InternalLinkRemovedEvent event) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700668 broadcastMessage(GossipLinkStoreMessageSubjects.LINK_REMOVED, event);
669 }
670
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700671 // notify peer, silently ignoring error
Madan Jampania97e8202014-10-10 17:01:33 -0700672 private void notifyPeer(NodeId peer, InternalLinkEvent event) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700673 try {
674 unicastMessage(peer, GossipLinkStoreMessageSubjects.LINK_UPDATE, event);
675 } catch (IOException e) {
676 log.debug("Failed to notify peer {} with message {}", peer, event);
677 }
Madan Jampania97e8202014-10-10 17:01:33 -0700678 }
679
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700680 // notify peer, silently ignoring error
Madan Jampania97e8202014-10-10 17:01:33 -0700681 private void notifyPeer(NodeId peer, InternalLinkRemovedEvent event) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700682 try {
683 unicastMessage(peer, GossipLinkStoreMessageSubjects.LINK_REMOVED, event);
684 } catch (IOException e) {
685 log.debug("Failed to notify peer {} with message {}", peer, event);
686 }
Madan Jampania97e8202014-10-10 17:01:33 -0700687 }
688
689 private final class SendAdvertisementTask implements Runnable {
690
691 @Override
692 public void run() {
693 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -0800694 log.debug("Interrupted, quitting");
Madan Jampania97e8202014-10-10 17:01:33 -0700695 return;
696 }
697
698 try {
699 final NodeId self = clusterService.getLocalNode().id();
700 Set<ControllerNode> nodes = clusterService.getNodes();
701
702 ImmutableList<NodeId> nodeIds = FluentIterable.from(nodes)
703 .transform(toNodeId())
704 .toList();
705
706 if (nodeIds.size() == 1 && nodeIds.get(0).equals(self)) {
Yuta HIGUCHIfaf9e1c2014-11-20 00:31:29 -0800707 log.trace("No other peers in the cluster.");
Madan Jampania97e8202014-10-10 17:01:33 -0700708 return;
709 }
710
711 NodeId peer;
712 do {
713 int idx = RandomUtils.nextInt(0, nodeIds.size());
714 peer = nodeIds.get(idx);
715 } while (peer.equals(self));
716
717 LinkAntiEntropyAdvertisement ad = createAdvertisement();
718
719 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -0800720 log.debug("Interrupted, quitting");
Madan Jampania97e8202014-10-10 17:01:33 -0700721 return;
722 }
723
724 try {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700725 unicastMessage(peer, LINK_ANTI_ENTROPY_ADVERTISEMENT, ad);
726 } catch (IOException e) {
727 log.debug("Failed to send anti-entropy advertisement to {}", peer);
Madan Jampania97e8202014-10-10 17:01:33 -0700728 return;
729 }
730 } catch (Exception e) {
731 // catch all Exception to avoid Scheduled task being suppressed.
732 log.error("Exception thrown while sending advertisement", e);
733 }
734 }
735 }
736
737 private LinkAntiEntropyAdvertisement createAdvertisement() {
738 final NodeId self = clusterService.getLocalNode().id();
739
740 Map<LinkFragmentId, Timestamp> linkTimestamps = new HashMap<>(linkDescs.size());
741 Map<LinkKey, Timestamp> linkTombstones = new HashMap<>(removedLinks.size());
742
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -0800743 linkDescs.forEach((linkKey, linkDesc) -> {
Madan Jampania97e8202014-10-10 17:01:33 -0700744 synchronized (linkDesc) {
745 for (Map.Entry<ProviderId, Timestamped<LinkDescription>> e : linkDesc.entrySet()) {
746 linkTimestamps.put(new LinkFragmentId(linkKey, e.getKey()), e.getValue().timestamp());
747 }
748 }
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -0800749 });
Madan Jampania97e8202014-10-10 17:01:33 -0700750
751 linkTombstones.putAll(removedLinks);
752
753 return new LinkAntiEntropyAdvertisement(self, linkTimestamps, linkTombstones);
754 }
755
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700756 private void handleAntiEntropyAdvertisement(LinkAntiEntropyAdvertisement ad) {
Madan Jampania97e8202014-10-10 17:01:33 -0700757
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700758 final NodeId sender = ad.sender();
759 boolean localOutdated = false;
Madan Jampania97e8202014-10-10 17:01:33 -0700760
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700761 for (Entry<LinkKey, Map<ProviderId, Timestamped<LinkDescription>>>
762 l : linkDescs.entrySet()) {
Madan Jampania97e8202014-10-10 17:01:33 -0700763
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700764 final LinkKey key = l.getKey();
765 final Map<ProviderId, Timestamped<LinkDescription>> link = l.getValue();
766 synchronized (link) {
767 Timestamp localLatest = removedLinks.get(key);
Madan Jampania97e8202014-10-10 17:01:33 -0700768
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700769 for (Entry<ProviderId, Timestamped<LinkDescription>> p : link.entrySet()) {
770 final ProviderId providerId = p.getKey();
771 final Timestamped<LinkDescription> pDesc = p.getValue();
Madan Jampania97e8202014-10-10 17:01:33 -0700772
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700773 final LinkFragmentId fragId = new LinkFragmentId(key, providerId);
774 // remote
775 Timestamp remoteTimestamp = ad.linkTimestamps().get(fragId);
776 if (remoteTimestamp == null) {
777 remoteTimestamp = ad.linkTombstones().get(key);
778 }
779 if (remoteTimestamp == null ||
Jonathan Hart403ea932015-02-20 16:23:00 -0800780 pDesc.isNewerThan(remoteTimestamp)) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700781 // I have more recent link description. update peer.
782 notifyPeer(sender, new InternalLinkEvent(providerId, pDesc));
783 } else {
784 final Timestamp remoteLive = ad.linkTimestamps().get(fragId);
785 if (remoteLive != null &&
786 remoteLive.compareTo(pDesc.timestamp()) > 0) {
787 // I have something outdated
788 localOutdated = true;
789 }
790 }
791
792 // search local latest along the way
793 if (localLatest == null ||
Jonathan Hart403ea932015-02-20 16:23:00 -0800794 pDesc.isNewerThan(localLatest)) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700795 localLatest = pDesc.timestamp();
796 }
797 }
798 // Tests if remote remove is more recent then local latest.
799 final Timestamp remoteRemove = ad.linkTombstones().get(key);
800 if (remoteRemove != null) {
801 if (localLatest != null &&
802 localLatest.compareTo(remoteRemove) < 0) {
803 // remote remove is more recent
804 notifyDelegateIfNotNull(removeLinkInternal(key, remoteRemove));
805 }
806 }
Madan Jampania97e8202014-10-10 17:01:33 -0700807 }
808 }
809
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700810 // populate remove info if not known locally
811 for (Entry<LinkKey, Timestamp> remoteRm : ad.linkTombstones().entrySet()) {
812 final LinkKey key = remoteRm.getKey();
813 final Timestamp remoteRemove = remoteRm.getValue();
814 // relying on removeLinkInternal to ignore stale info
815 notifyDelegateIfNotNull(removeLinkInternal(key, remoteRemove));
816 }
Madan Jampania97e8202014-10-10 17:01:33 -0700817
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700818 if (localOutdated) {
819 // send back advertisement to speed up convergence
820 try {
821 unicastMessage(sender, LINK_ANTI_ENTROPY_ADVERTISEMENT,
822 createAdvertisement());
823 } catch (IOException e) {
824 log.debug("Failed to send back active advertisement");
Madan Jampania97e8202014-10-10 17:01:33 -0700825 }
826 }
827 }
828
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800829 private final class InternalLinkEventListener
830 implements ClusterMessageHandler {
Madan Jampani2ff05592014-10-10 15:42:47 -0700831 @Override
832 public void handle(ClusterMessage message) {
833
Yuta HIGUCHIc01d2aa2014-10-19 01:19:34 -0700834 log.trace("Received link event from peer: {}", message.sender());
Sho SHIMIZU5eb79c52015-09-29 14:32:49 -0700835 InternalLinkEvent event = SERIALIZER.decode(message.payload());
Madan Jampani2ff05592014-10-10 15:42:47 -0700836
837 ProviderId providerId = event.providerId();
838 Timestamped<LinkDescription> linkDescription = event.linkDescription();
839
Madan Jampani2af244a2015-02-22 13:12:01 -0800840 try {
841 notifyDelegateIfNotNull(createOrUpdateLinkInternal(providerId, linkDescription));
842 } catch (Exception e) {
843 log.warn("Exception thrown handling link event", e);
844 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700845 }
846 }
847
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800848 private final class InternalLinkRemovedEventListener
849 implements ClusterMessageHandler {
Madan Jampani2ff05592014-10-10 15:42:47 -0700850 @Override
851 public void handle(ClusterMessage message) {
852
Yuta HIGUCHIc01d2aa2014-10-19 01:19:34 -0700853 log.trace("Received link removed event from peer: {}", message.sender());
Sho SHIMIZU5eb79c52015-09-29 14:32:49 -0700854 InternalLinkRemovedEvent event = SERIALIZER.decode(message.payload());
Madan Jampani2ff05592014-10-10 15:42:47 -0700855
856 LinkKey linkKey = event.linkKey();
857 Timestamp timestamp = event.timestamp();
858
Madan Jampani2af244a2015-02-22 13:12:01 -0800859 try {
860 notifyDelegateIfNotNull(removeLinkInternal(linkKey, timestamp));
861 } catch (Exception e) {
862 log.warn("Exception thrown handling link removed", e);
863 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700864 }
865 }
Madan Jampania97e8202014-10-10 17:01:33 -0700866
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800867 private final class InternalLinkAntiEntropyAdvertisementListener
868 implements ClusterMessageHandler {
Madan Jampania97e8202014-10-10 17:01:33 -0700869
870 @Override
871 public void handle(ClusterMessage message) {
Yuta HIGUCHIfaf9e1c2014-11-20 00:31:29 -0800872 log.trace("Received Link Anti-Entropy advertisement from peer: {}", message.sender());
Madan Jampania97e8202014-10-10 17:01:33 -0700873 LinkAntiEntropyAdvertisement advertisement = SERIALIZER.decode(message.payload());
Madan Jampani2af244a2015-02-22 13:12:01 -0800874 try {
875 handleAntiEntropyAdvertisement(advertisement);
876 } catch (Exception e) {
877 log.warn("Exception thrown while handling Link advertisements", e);
878 throw e;
879 }
Madan Jampania97e8202014-10-10 17:01:33 -0700880 }
881 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800882
883 private final class LinkInjectedEventListener
884 implements ClusterMessageHandler {
885 @Override
886 public void handle(ClusterMessage message) {
887
888 log.trace("Received injected link event from peer: {}", message.sender());
889 LinkInjectedEvent linkInjectedEvent = SERIALIZER.decode(message.payload());
890
891 ProviderId providerId = linkInjectedEvent.providerId();
892 LinkDescription linkDescription = linkInjectedEvent.linkDescription();
893
HIGUCHI Yuta0b4d2982015-02-27 23:18:52 -0800894 final DeviceId deviceId = linkDescription.dst().deviceId();
895 if (!deviceClockService.isTimestampAvailable(deviceId)) {
896 // workaround for ONOS-1208
897 log.warn("Not ready to accept update. Dropping {}", linkDescription);
898 return;
899 }
900
Madan Jampani2af244a2015-02-22 13:12:01 -0800901 try {
902 createOrUpdateLink(providerId, linkDescription);
903 } catch (Exception e) {
904 log.warn("Exception thrown while handling link injected event", e);
905 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800906 }
907 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700908}