blob: c5045ab413e62609a142c5d2f4e017e4918cd706 [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;
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;
Brian O'Connor6de2e202015-05-21 14:30:41 -070061import org.onosproject.store.serializers.custom.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);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800337
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800338 // TODO check unicast return value
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700339 clusterCommunicator.unicast(linkInjectedEvent,
340 GossipLinkStoreMessageSubjects.LINK_INJECTED,
341 SERIALIZER::encode,
342 dstNode);
Yuta HIGUCHI92cd51e2014-10-13 10:51:45 -0700343 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700344
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800345 return linkEvent;
Madan Jampani2ff05592014-10-10 15:42:47 -0700346 }
347
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800348 @Override
349 public LinkEvent removeOrDownLink(ConnectPoint src, ConnectPoint dst) {
350 Link link = getLink(src, dst);
351 if (link == null) {
352 return null;
353 }
354
355 if (link.isDurable()) {
356 // FIXME: this is not the right thing to call for the gossip store; will not sync link state!!!
357 return link.state() == INACTIVE ? null :
358 updateLink(linkKey(link.src(), link.dst()), link,
359 new DefaultLink(link.providerId(),
360 link.src(), link.dst(),
361 link.type(), INACTIVE,
362 link.isDurable(),
363 link.annotations()));
364 }
365 return removeLink(src, dst);
366 }
367
Madan Jampani2ff05592014-10-10 15:42:47 -0700368 private LinkEvent createOrUpdateLinkInternal(
369 ProviderId providerId,
370 Timestamped<LinkDescription> linkDescription) {
371
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700372 final LinkKey key = linkKey(linkDescription.value().src(),
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800373 linkDescription.value().dst());
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700374 Map<ProviderId, Timestamped<LinkDescription>> descs = getOrCreateLinkDescriptions(key);
Madan Jampani2ff05592014-10-10 15:42:47 -0700375
376 synchronized (descs) {
377 // if the link was previously removed, we should proceed if and
378 // only if this request is more recent.
379 Timestamp linkRemovedTimestamp = removedLinks.get(key);
380 if (linkRemovedTimestamp != null) {
Jonathan Hart403ea932015-02-20 16:23:00 -0800381 if (linkDescription.isNewerThan(linkRemovedTimestamp)) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700382 removedLinks.remove(key);
383 } else {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700384 log.trace("Link {} was already removed ignoring.", key);
Madan Jampani2ff05592014-10-10 15:42:47 -0700385 return null;
386 }
387 }
388
389 final Link oldLink = links.get(key);
390 // update description
391 createOrUpdateLinkDescription(descs, providerId, linkDescription);
392 final Link newLink = composeLink(descs);
393 if (oldLink == null) {
394 return createLink(key, newLink);
395 }
396 return updateLink(key, oldLink, newLink);
397 }
398 }
399
400 // Guarded by linkDescs value (=locking each Link)
401 private Timestamped<LinkDescription> createOrUpdateLinkDescription(
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700402 Map<ProviderId, Timestamped<LinkDescription>> descs,
Madan Jampani2ff05592014-10-10 15:42:47 -0700403 ProviderId providerId,
404 Timestamped<LinkDescription> linkDescription) {
405
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700406 // merge existing annotations
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700407 Timestamped<LinkDescription> existingLinkDescription = descs.get(providerId);
Madan Jampani2ff05592014-10-10 15:42:47 -0700408 if (existingLinkDescription != null && existingLinkDescription.isNewer(linkDescription)) {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700409 log.trace("local info is more up-to-date, ignoring {}.", linkDescription);
Madan Jampani2ff05592014-10-10 15:42:47 -0700410 return null;
411 }
412 Timestamped<LinkDescription> newLinkDescription = linkDescription;
413 if (existingLinkDescription != null) {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700414 // we only allow transition from INDIRECT -> DIRECT
415 final Type newType;
416 if (existingLinkDescription.value().type() == DIRECT) {
417 newType = DIRECT;
418 } else {
419 newType = linkDescription.value().type();
420 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700421 SparseAnnotations merged = union(existingLinkDescription.value().annotations(),
422 linkDescription.value().annotations());
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800423 newLinkDescription = new Timestamped<>(
Madan Jampani2ff05592014-10-10 15:42:47 -0700424 new DefaultLinkDescription(
425 linkDescription.value().src(),
426 linkDescription.value().dst(),
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700427 newType, merged),
Madan Jampani2ff05592014-10-10 15:42:47 -0700428 linkDescription.timestamp());
429 }
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700430 return descs.put(providerId, newLinkDescription);
Madan Jampani2ff05592014-10-10 15:42:47 -0700431 }
432
433 // Creates and stores the link and returns the appropriate event.
434 // Guarded by linkDescs value (=locking each Link)
435 private LinkEvent createLink(LinkKey key, Link newLink) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700436 links.put(key, newLink);
437 srcLinks.put(newLink.src().deviceId(), key);
438 dstLinks.put(newLink.dst().deviceId(), key);
439 return new LinkEvent(LINK_ADDED, newLink);
440 }
441
442 // Updates, if necessary the specified link and returns the appropriate event.
443 // Guarded by linkDescs value (=locking each Link)
444 private LinkEvent updateLink(LinkKey key, Link oldLink, Link newLink) {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700445 // Note: INDIRECT -> DIRECT transition only
446 // so that BDDP discovered Link will not overwrite LDDP Link
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800447 if (oldLink.state() != newLink.state() ||
448 (oldLink.type() == INDIRECT && newLink.type() == DIRECT) ||
Madan Jampani2ff05592014-10-10 15:42:47 -0700449 !AnnotationsUtil.isEqual(oldLink.annotations(), newLink.annotations())) {
450
451 links.put(key, newLink);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800452 // strictly speaking following can be omitted
Madan Jampani2ff05592014-10-10 15:42:47 -0700453 srcLinks.put(oldLink.src().deviceId(), key);
454 dstLinks.put(oldLink.dst().deviceId(), key);
455 return new LinkEvent(LINK_UPDATED, newLink);
456 }
457 return null;
458 }
459
460 @Override
461 public LinkEvent removeLink(ConnectPoint src, ConnectPoint dst) {
Yuta HIGUCHI18ab8a92014-10-13 11:16:19 -0700462 final LinkKey key = linkKey(src, dst);
Madan Jampani2ff05592014-10-10 15:42:47 -0700463
464 DeviceId dstDeviceId = dst.deviceId();
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700465 Timestamp timestamp = null;
466 try {
467 timestamp = deviceClockService.getTimestamp(dstDeviceId);
468 } catch (IllegalStateException e) {
Yuta HIGUCHId6a0ac32014-11-04 09:26:31 -0800469 log.warn("Failed to remove link {}, was not the master", key);
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700470 //there are times when this is called before mastership
471 // handoff correctly completes.
472 return null;
473 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700474
475 LinkEvent event = removeLinkInternal(key, timestamp);
476
477 if (event != null) {
478 log.info("Notifying peers of a link removed topology event for a link "
479 + "between src: {} and dst: {}", src, dst);
Jonathan Hart7d656f42015-01-27 14:07:23 -0800480 notifyPeers(new InternalLinkRemovedEvent(key, timestamp));
Madan Jampani2ff05592014-10-10 15:42:47 -0700481 }
482 return event;
483 }
484
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700485 private static Timestamped<LinkDescription> getPrimaryDescription(
486 Map<ProviderId, Timestamped<LinkDescription>> linkDescriptions) {
487
Madan Jampani2ff05592014-10-10 15:42:47 -0700488 synchronized (linkDescriptions) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700489 for (Entry<ProviderId, Timestamped<LinkDescription>>
490 e : linkDescriptions.entrySet()) {
491
492 if (!e.getKey().isAncillary()) {
493 return e.getValue();
494 }
495 }
496 }
497 return null;
498 }
499
500
501 // TODO: consider slicing out as Timestamp utils
502 /**
503 * Checks is timestamp is more recent than timestamped object.
504 *
505 * @param timestamp to check if this is more recent then other
506 * @param timestamped object to be tested against
507 * @return true if {@code timestamp} is more recent than {@code timestamped}
508 * or {@code timestamped is null}
509 */
510 private static boolean isMoreRecent(Timestamp timestamp, Timestamped<?> timestamped) {
511 checkNotNull(timestamp);
512 if (timestamped == null) {
513 return true;
514 }
515 return timestamp.compareTo(timestamped.timestamp()) > 0;
516 }
517
518 private LinkEvent removeLinkInternal(LinkKey key, Timestamp timestamp) {
519 Map<ProviderId, Timestamped<LinkDescription>> linkDescriptions
520 = getOrCreateLinkDescriptions(key);
521
522 synchronized (linkDescriptions) {
523 if (linkDescriptions.isEmpty()) {
524 // never seen such link before. keeping timestamp for record
525 removedLinks.put(key, timestamp);
526 return null;
527 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700528 // accept removal request if given timestamp is newer than
529 // the latest Timestamp from Primary provider
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700530 Timestamped<LinkDescription> prim = getPrimaryDescription(linkDescriptions);
531 if (!isMoreRecent(timestamp, prim)) {
532 // outdated remove request, ignore
Madan Jampani2ff05592014-10-10 15:42:47 -0700533 return null;
534 }
535 removedLinks.put(key, timestamp);
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800536 Link link = links.remove(key);
Madan Jampani2ff05592014-10-10 15:42:47 -0700537 linkDescriptions.clear();
538 if (link != null) {
539 srcLinks.remove(link.src().deviceId(), key);
540 dstLinks.remove(link.dst().deviceId(), key);
541 return new LinkEvent(LINK_REMOVED, link);
542 }
543 return null;
544 }
545 }
546
Yuta HIGUCHI800fac62014-12-11 19:23:01 -0800547 /**
548 * Creates concurrent readable, synchronized HashMultimap.
549 *
550 * @return SetMultimap
551 */
Madan Jampani2ff05592014-10-10 15:42:47 -0700552 private static <K, V> SetMultimap<K, V> createSynchronizedHashMultiMap() {
Yuta HIGUCHI800fac62014-12-11 19:23:01 -0800553 return synchronizedSetMultimap(
554 Multimaps.newSetMultimap(new ConcurrentHashMap<K, Collection<V>>(),
555 () -> Sets.newConcurrentHashSet()));
Madan Jampani2ff05592014-10-10 15:42:47 -0700556 }
557
558 /**
559 * @return primary ProviderID, or randomly chosen one if none exists
560 */
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700561 private static ProviderId pickBaseProviderId(
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700562 Map<ProviderId, Timestamped<LinkDescription>> linkDescriptions) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700563
564 ProviderId fallBackPrimary = null;
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700565 for (Entry<ProviderId, Timestamped<LinkDescription>> e : linkDescriptions.entrySet()) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700566 if (!e.getKey().isAncillary()) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700567 // found primary
Madan Jampani2ff05592014-10-10 15:42:47 -0700568 return e.getKey();
569 } else if (fallBackPrimary == null) {
570 // pick randomly as a fallback in case there is no primary
571 fallBackPrimary = e.getKey();
572 }
573 }
574 return fallBackPrimary;
575 }
576
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700577 // Guarded by linkDescs value (=locking each Link)
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700578 private Link composeLink(Map<ProviderId, Timestamped<LinkDescription>> descs) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700579 ProviderId baseProviderId = pickBaseProviderId(descs);
580 Timestamped<LinkDescription> base = descs.get(baseProviderId);
Madan Jampani2ff05592014-10-10 15:42:47 -0700581
582 ConnectPoint src = base.value().src();
583 ConnectPoint dst = base.value().dst();
584 Type type = base.value().type();
585 DefaultAnnotations annotations = DefaultAnnotations.builder().build();
586 annotations = merge(annotations, base.value().annotations());
587
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700588 for (Entry<ProviderId, Timestamped<LinkDescription>> e : descs.entrySet()) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700589 if (baseProviderId.equals(e.getKey())) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700590 continue;
591 }
592
Yuta HIGUCHI65934892014-12-04 17:47:44 -0800593 // Note: In the long run we should keep track of Description timestamp
Madan Jampani2ff05592014-10-10 15:42:47 -0700594 // and only merge conflicting keys when timestamp is newer
595 // Currently assuming there will never be a key conflict between
596 // providers
597
598 // annotation merging. not so efficient, should revisit later
599 annotations = merge(annotations, e.getValue().value().annotations());
600 }
601
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800602 boolean isDurable = Objects.equals(annotations.value(AnnotationKeys.DURABLE), "true");
Thomas Vachuskabadb93f2014-11-15 23:51:17 -0800603 return new DefaultLink(baseProviderId, src, dst, type, ACTIVE, isDurable, annotations);
Madan Jampani2ff05592014-10-10 15:42:47 -0700604 }
605
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700606 private Map<ProviderId, Timestamped<LinkDescription>> getOrCreateLinkDescriptions(LinkKey key) {
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700607 Map<ProviderId, Timestamped<LinkDescription>> r;
608 r = linkDescs.get(key);
609 if (r != null) {
610 return r;
611 }
612 r = new HashMap<>();
613 final Map<ProviderId, Timestamped<LinkDescription>> concurrentlyAdded;
614 concurrentlyAdded = linkDescs.putIfAbsent(key, r);
615 if (concurrentlyAdded != null) {
616 return concurrentlyAdded;
617 } else {
618 return r;
619 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700620 }
621
622 private final Function<LinkKey, Link> lookupLink = new LookupLink();
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800623
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700624 /**
625 * Returns a Function to lookup Link instance using LinkKey from cache.
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800626 *
627 * @return lookup link function
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700628 */
Madan Jampani2ff05592014-10-10 15:42:47 -0700629 private Function<LinkKey, Link> lookupLink() {
630 return lookupLink;
631 }
632
633 private final class LookupLink implements Function<LinkKey, Link> {
634 @Override
635 public Link apply(LinkKey input) {
Yuta HIGUCHI023295a2014-10-15 23:29:46 -0700636 if (input == null) {
637 return null;
638 } else {
639 return links.get(input);
640 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700641 }
642 }
643
Madan Jampani2ff05592014-10-10 15:42:47 -0700644 private void notifyDelegateIfNotNull(LinkEvent event) {
645 if (event != null) {
646 notifyDelegate(event);
647 }
648 }
649
Jonathan Hart7d656f42015-01-27 14:07:23 -0800650 private void broadcastMessage(MessageSubject subject, Object event) {
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700651 clusterCommunicator.broadcast(event, subject, SERIALIZER::encode);
Madan Jampani2ff05592014-10-10 15:42:47 -0700652 }
653
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700654 private void unicastMessage(NodeId recipient, MessageSubject subject, Object event) throws IOException {
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700655 clusterCommunicator.unicast(event, subject, SERIALIZER::encode, recipient);
Madan Jampania97e8202014-10-10 17:01:33 -0700656 }
657
Jonathan Hart7d656f42015-01-27 14:07:23 -0800658 private void notifyPeers(InternalLinkEvent event) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700659 broadcastMessage(GossipLinkStoreMessageSubjects.LINK_UPDATE, event);
660 }
661
Jonathan Hart7d656f42015-01-27 14:07:23 -0800662 private void notifyPeers(InternalLinkRemovedEvent event) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700663 broadcastMessage(GossipLinkStoreMessageSubjects.LINK_REMOVED, event);
664 }
665
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700666 // notify peer, silently ignoring error
Madan Jampania97e8202014-10-10 17:01:33 -0700667 private void notifyPeer(NodeId peer, InternalLinkEvent event) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700668 try {
669 unicastMessage(peer, GossipLinkStoreMessageSubjects.LINK_UPDATE, event);
670 } catch (IOException e) {
671 log.debug("Failed to notify peer {} with message {}", peer, event);
672 }
Madan Jampania97e8202014-10-10 17:01:33 -0700673 }
674
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700675 // notify peer, silently ignoring error
Madan Jampania97e8202014-10-10 17:01:33 -0700676 private void notifyPeer(NodeId peer, InternalLinkRemovedEvent event) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700677 try {
678 unicastMessage(peer, GossipLinkStoreMessageSubjects.LINK_REMOVED, event);
679 } catch (IOException e) {
680 log.debug("Failed to notify peer {} with message {}", peer, event);
681 }
Madan Jampania97e8202014-10-10 17:01:33 -0700682 }
683
684 private final class SendAdvertisementTask implements Runnable {
685
686 @Override
687 public void run() {
688 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -0800689 log.debug("Interrupted, quitting");
Madan Jampania97e8202014-10-10 17:01:33 -0700690 return;
691 }
692
693 try {
694 final NodeId self = clusterService.getLocalNode().id();
695 Set<ControllerNode> nodes = clusterService.getNodes();
696
697 ImmutableList<NodeId> nodeIds = FluentIterable.from(nodes)
698 .transform(toNodeId())
699 .toList();
700
701 if (nodeIds.size() == 1 && nodeIds.get(0).equals(self)) {
Yuta HIGUCHIfaf9e1c2014-11-20 00:31:29 -0800702 log.trace("No other peers in the cluster.");
Madan Jampania97e8202014-10-10 17:01:33 -0700703 return;
704 }
705
706 NodeId peer;
707 do {
708 int idx = RandomUtils.nextInt(0, nodeIds.size());
709 peer = nodeIds.get(idx);
710 } while (peer.equals(self));
711
712 LinkAntiEntropyAdvertisement ad = createAdvertisement();
713
714 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -0800715 log.debug("Interrupted, quitting");
Madan Jampania97e8202014-10-10 17:01:33 -0700716 return;
717 }
718
719 try {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700720 unicastMessage(peer, LINK_ANTI_ENTROPY_ADVERTISEMENT, ad);
721 } catch (IOException e) {
722 log.debug("Failed to send anti-entropy advertisement to {}", peer);
Madan Jampania97e8202014-10-10 17:01:33 -0700723 return;
724 }
725 } catch (Exception e) {
726 // catch all Exception to avoid Scheduled task being suppressed.
727 log.error("Exception thrown while sending advertisement", e);
728 }
729 }
730 }
731
732 private LinkAntiEntropyAdvertisement createAdvertisement() {
733 final NodeId self = clusterService.getLocalNode().id();
734
735 Map<LinkFragmentId, Timestamp> linkTimestamps = new HashMap<>(linkDescs.size());
736 Map<LinkKey, Timestamp> linkTombstones = new HashMap<>(removedLinks.size());
737
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -0800738 linkDescs.forEach((linkKey, linkDesc) -> {
Madan Jampania97e8202014-10-10 17:01:33 -0700739 synchronized (linkDesc) {
740 for (Map.Entry<ProviderId, Timestamped<LinkDescription>> e : linkDesc.entrySet()) {
741 linkTimestamps.put(new LinkFragmentId(linkKey, e.getKey()), e.getValue().timestamp());
742 }
743 }
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -0800744 });
Madan Jampania97e8202014-10-10 17:01:33 -0700745
746 linkTombstones.putAll(removedLinks);
747
748 return new LinkAntiEntropyAdvertisement(self, linkTimestamps, linkTombstones);
749 }
750
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700751 private void handleAntiEntropyAdvertisement(LinkAntiEntropyAdvertisement ad) {
Madan Jampania97e8202014-10-10 17:01:33 -0700752
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700753 final NodeId sender = ad.sender();
754 boolean localOutdated = false;
Madan Jampania97e8202014-10-10 17:01:33 -0700755
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700756 for (Entry<LinkKey, Map<ProviderId, Timestamped<LinkDescription>>>
757 l : linkDescs.entrySet()) {
Madan Jampania97e8202014-10-10 17:01:33 -0700758
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700759 final LinkKey key = l.getKey();
760 final Map<ProviderId, Timestamped<LinkDescription>> link = l.getValue();
761 synchronized (link) {
762 Timestamp localLatest = removedLinks.get(key);
Madan Jampania97e8202014-10-10 17:01:33 -0700763
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700764 for (Entry<ProviderId, Timestamped<LinkDescription>> p : link.entrySet()) {
765 final ProviderId providerId = p.getKey();
766 final Timestamped<LinkDescription> pDesc = p.getValue();
Madan Jampania97e8202014-10-10 17:01:33 -0700767
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700768 final LinkFragmentId fragId = new LinkFragmentId(key, providerId);
769 // remote
770 Timestamp remoteTimestamp = ad.linkTimestamps().get(fragId);
771 if (remoteTimestamp == null) {
772 remoteTimestamp = ad.linkTombstones().get(key);
773 }
774 if (remoteTimestamp == null ||
Jonathan Hart403ea932015-02-20 16:23:00 -0800775 pDesc.isNewerThan(remoteTimestamp)) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700776 // I have more recent link description. update peer.
777 notifyPeer(sender, new InternalLinkEvent(providerId, pDesc));
778 } else {
779 final Timestamp remoteLive = ad.linkTimestamps().get(fragId);
780 if (remoteLive != null &&
781 remoteLive.compareTo(pDesc.timestamp()) > 0) {
782 // I have something outdated
783 localOutdated = true;
784 }
785 }
786
787 // search local latest along the way
788 if (localLatest == null ||
Jonathan Hart403ea932015-02-20 16:23:00 -0800789 pDesc.isNewerThan(localLatest)) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700790 localLatest = pDesc.timestamp();
791 }
792 }
793 // Tests if remote remove is more recent then local latest.
794 final Timestamp remoteRemove = ad.linkTombstones().get(key);
795 if (remoteRemove != null) {
796 if (localLatest != null &&
797 localLatest.compareTo(remoteRemove) < 0) {
798 // remote remove is more recent
799 notifyDelegateIfNotNull(removeLinkInternal(key, remoteRemove));
800 }
801 }
Madan Jampania97e8202014-10-10 17:01:33 -0700802 }
803 }
804
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700805 // populate remove info if not known locally
806 for (Entry<LinkKey, Timestamp> remoteRm : ad.linkTombstones().entrySet()) {
807 final LinkKey key = remoteRm.getKey();
808 final Timestamp remoteRemove = remoteRm.getValue();
809 // relying on removeLinkInternal to ignore stale info
810 notifyDelegateIfNotNull(removeLinkInternal(key, remoteRemove));
811 }
Madan Jampania97e8202014-10-10 17:01:33 -0700812
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700813 if (localOutdated) {
814 // send back advertisement to speed up convergence
815 try {
816 unicastMessage(sender, LINK_ANTI_ENTROPY_ADVERTISEMENT,
817 createAdvertisement());
818 } catch (IOException e) {
819 log.debug("Failed to send back active advertisement");
Madan Jampania97e8202014-10-10 17:01:33 -0700820 }
821 }
822 }
823
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800824 private final class InternalLinkEventListener
825 implements ClusterMessageHandler {
Madan Jampani2ff05592014-10-10 15:42:47 -0700826 @Override
827 public void handle(ClusterMessage message) {
828
Yuta HIGUCHIc01d2aa2014-10-19 01:19:34 -0700829 log.trace("Received link event from peer: {}", message.sender());
Madan Jampani2ff05592014-10-10 15:42:47 -0700830 InternalLinkEvent event = (InternalLinkEvent) SERIALIZER.decode(message.payload());
831
832 ProviderId providerId = event.providerId();
833 Timestamped<LinkDescription> linkDescription = event.linkDescription();
834
Madan Jampani2af244a2015-02-22 13:12:01 -0800835 try {
836 notifyDelegateIfNotNull(createOrUpdateLinkInternal(providerId, linkDescription));
837 } catch (Exception e) {
838 log.warn("Exception thrown handling link event", e);
839 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700840 }
841 }
842
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800843 private final class InternalLinkRemovedEventListener
844 implements ClusterMessageHandler {
Madan Jampani2ff05592014-10-10 15:42:47 -0700845 @Override
846 public void handle(ClusterMessage message) {
847
Yuta HIGUCHIc01d2aa2014-10-19 01:19:34 -0700848 log.trace("Received link removed event from peer: {}", message.sender());
Madan Jampani2ff05592014-10-10 15:42:47 -0700849 InternalLinkRemovedEvent event = (InternalLinkRemovedEvent) SERIALIZER.decode(message.payload());
850
851 LinkKey linkKey = event.linkKey();
852 Timestamp timestamp = event.timestamp();
853
Madan Jampani2af244a2015-02-22 13:12:01 -0800854 try {
855 notifyDelegateIfNotNull(removeLinkInternal(linkKey, timestamp));
856 } catch (Exception e) {
857 log.warn("Exception thrown handling link removed", e);
858 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700859 }
860 }
Madan Jampania97e8202014-10-10 17:01:33 -0700861
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800862 private final class InternalLinkAntiEntropyAdvertisementListener
863 implements ClusterMessageHandler {
Madan Jampania97e8202014-10-10 17:01:33 -0700864
865 @Override
866 public void handle(ClusterMessage message) {
Yuta HIGUCHIfaf9e1c2014-11-20 00:31:29 -0800867 log.trace("Received Link Anti-Entropy advertisement from peer: {}", message.sender());
Madan Jampania97e8202014-10-10 17:01:33 -0700868 LinkAntiEntropyAdvertisement advertisement = SERIALIZER.decode(message.payload());
Madan Jampani2af244a2015-02-22 13:12:01 -0800869 try {
870 handleAntiEntropyAdvertisement(advertisement);
871 } catch (Exception e) {
872 log.warn("Exception thrown while handling Link advertisements", e);
873 throw e;
874 }
Madan Jampania97e8202014-10-10 17:01:33 -0700875 }
876 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800877
878 private final class LinkInjectedEventListener
879 implements ClusterMessageHandler {
880 @Override
881 public void handle(ClusterMessage message) {
882
883 log.trace("Received injected link event from peer: {}", message.sender());
884 LinkInjectedEvent linkInjectedEvent = SERIALIZER.decode(message.payload());
885
886 ProviderId providerId = linkInjectedEvent.providerId();
887 LinkDescription linkDescription = linkInjectedEvent.linkDescription();
888
HIGUCHI Yuta0b4d2982015-02-27 23:18:52 -0800889 final DeviceId deviceId = linkDescription.dst().deviceId();
890 if (!deviceClockService.isTimestampAvailable(deviceId)) {
891 // workaround for ONOS-1208
892 log.warn("Not ready to accept update. Dropping {}", linkDescription);
893 return;
894 }
895
Madan Jampani2af244a2015-02-22 13:12:01 -0800896 try {
897 createOrUpdateLink(providerId, linkDescription);
898 } catch (Exception e) {
899 log.warn("Exception thrown while handling link injected event", e);
900 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800901 }
902 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700903}