blob: 105c77df1c499a1288b6c3a584f0994bb844b446 [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;
Jonathan Hart7d656f42015-01-27 14:07:23 -080065import java.util.Collections;
66import java.util.HashMap;
67import java.util.HashSet;
68import java.util.Map;
69import java.util.Map.Entry;
70import java.util.Objects;
71import java.util.Set;
72import java.util.concurrent.ConcurrentHashMap;
73import java.util.concurrent.ConcurrentMap;
74import java.util.concurrent.ExecutorService;
75import java.util.concurrent.Executors;
76import java.util.concurrent.ScheduledExecutorService;
77import java.util.concurrent.TimeUnit;
Madan Jampani2ff05592014-10-10 15:42:47 -070078
Thomas Vachuska57126fe2014-11-11 17:13:24 -080079import static com.google.common.base.Preconditions.checkNotNull;
80import static com.google.common.base.Predicates.notNull;
81import static com.google.common.collect.Multimaps.synchronizedSetMultimap;
Madan Jampania97e8202014-10-10 17:01:33 -070082import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
Thomas Vachuska6f94ded2015-02-21 14:02:38 -080083import static org.onlab.util.Tools.groupedThreads;
Ray Milkey7bbeb3f2014-12-11 14:59:26 -080084import static org.onlab.util.Tools.minPriority;
Brian O'Connorabafb502014-12-02 22:26:20 -080085import static org.onosproject.cluster.ControllerNodeToNodeId.toNodeId;
86import static org.onosproject.net.DefaultAnnotations.merge;
87import static org.onosproject.net.DefaultAnnotations.union;
88import static org.onosproject.net.Link.State.ACTIVE;
89import static org.onosproject.net.Link.State.INACTIVE;
90import static org.onosproject.net.Link.Type.DIRECT;
91import static org.onosproject.net.Link.Type.INDIRECT;
92import static org.onosproject.net.LinkKey.linkKey;
Marc De Leenheerb473b9d2015-02-06 15:21:03 -080093import static org.onosproject.net.link.LinkEvent.Type.*;
Brian O'Connorabafb502014-12-02 22:26:20 -080094import static org.onosproject.store.link.impl.GossipLinkStoreMessageSubjects.LINK_ANTI_ENTROPY_ADVERTISEMENT;
Madan Jampani2ff05592014-10-10 15:42:47 -070095import static org.slf4j.LoggerFactory.getLogger;
Madan Jampani2ff05592014-10-10 15:42:47 -070096
97/**
98 * Manages inventory of infrastructure links in distributed data store
99 * that uses optimistic replication and gossip based techniques.
100 */
Madan Jampani8856ee12015-08-21 09:24:27 -0700101@Component(immediate = true, enabled = false)
Madan Jampani2ff05592014-10-10 15:42:47 -0700102@Service
103public class GossipLinkStore
104 extends AbstractStore<LinkEvent, LinkStoreDelegate>
105 implements LinkStore {
106
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800107 // Timeout in milliseconds to process links on remote master node
108 private static final int REMOTE_MASTER_TIMEOUT = 1000;
109
Madan Jampani2ff05592014-10-10 15:42:47 -0700110 private final Logger log = getLogger(getClass());
111
112 // Link inventory
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700113 private final ConcurrentMap<LinkKey, Map<ProviderId, Timestamped<LinkDescription>>> linkDescs =
Madan Jampani2ff05592014-10-10 15:42:47 -0700114 new ConcurrentHashMap<>();
115
116 // Link instance cache
117 private final ConcurrentMap<LinkKey, Link> links = new ConcurrentHashMap<>();
118
119 // Egress and ingress link sets
120 private final SetMultimap<DeviceId, LinkKey> srcLinks = createSynchronizedHashMultiMap();
121 private final SetMultimap<DeviceId, LinkKey> dstLinks = createSynchronizedHashMultiMap();
122
123 // Remove links
Yuta HIGUCHIb9125562014-12-01 23:28:22 -0800124 private final Map<LinkKey, Timestamp> removedLinks = new ConcurrentHashMap<>();
Madan Jampani2ff05592014-10-10 15:42:47 -0700125
126 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -0700127 protected DeviceClockService deviceClockService;
Madan Jampani2ff05592014-10-10 15:42:47 -0700128
129 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
130 protected ClusterCommunicationService clusterCommunicator;
131
132 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
133 protected ClusterService clusterService;
134
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800135 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
136 protected MastershipService mastershipService;
137
Yuta HIGUCHI3e5d11a2014-11-04 14:16:44 -0800138 protected static final KryoSerializer SERIALIZER = new KryoSerializer() {
Madan Jampani2ff05592014-10-10 15:42:47 -0700139 @Override
140 protected void setupKryoPool() {
Yuta HIGUCHI8d143d22014-10-19 23:15:09 -0700141 serializerPool = KryoNamespace.newBuilder()
Yuta HIGUCHI91768e32014-11-22 05:06:35 -0800142 .register(DistributedStoreSerializers.STORE_COMMON)
143 .nextId(DistributedStoreSerializers.STORE_CUSTOM_BEGIN)
Madan Jampani2ff05592014-10-10 15:42:47 -0700144 .register(InternalLinkEvent.class)
145 .register(InternalLinkRemovedEvent.class)
Madan Jampanid2054d42014-10-10 17:27:06 -0700146 .register(LinkAntiEntropyAdvertisement.class)
147 .register(LinkFragmentId.class)
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800148 .register(LinkInjectedEvent.class)
Yuta HIGUCHI91768e32014-11-22 05:06:35 -0800149 .build();
Madan Jampani2ff05592014-10-10 15:42:47 -0700150 }
151 };
152
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800153 private ExecutorService executor;
154
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800155 private ScheduledExecutorService backgroundExecutors;
Madan Jampania97e8202014-10-10 17:01:33 -0700156
Madan Jampani2ff05592014-10-10 15:42:47 -0700157 @Activate
158 public void activate() {
159
Thomas Vachuska6f94ded2015-02-21 14:02:38 -0800160 executor = Executors.newCachedThreadPool(groupedThreads("onos/link", "fg-%d"));
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800161
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800162 backgroundExecutors =
Thomas Vachuska6f94ded2015-02-21 14:02:38 -0800163 newSingleThreadScheduledExecutor(minPriority(groupedThreads("onos/link", "bg-%d")));
Madan Jampania97e8202014-10-10 17:01:33 -0700164
Madan Jampani2af244a2015-02-22 13:12:01 -0800165 clusterCommunicator.addSubscriber(
166 GossipLinkStoreMessageSubjects.LINK_UPDATE,
167 new InternalLinkEventListener(), executor);
168 clusterCommunicator.addSubscriber(
169 GossipLinkStoreMessageSubjects.LINK_REMOVED,
170 new InternalLinkRemovedEventListener(), executor);
171 clusterCommunicator.addSubscriber(
172 GossipLinkStoreMessageSubjects.LINK_ANTI_ENTROPY_ADVERTISEMENT,
173 new InternalLinkAntiEntropyAdvertisementListener(), backgroundExecutors);
174 clusterCommunicator.addSubscriber(
175 GossipLinkStoreMessageSubjects.LINK_INJECTED,
176 new LinkInjectedEventListener(), executor);
177
Madan Jampania97e8202014-10-10 17:01:33 -0700178 long initialDelaySec = 5;
179 long periodSec = 5;
180 // start anti-entropy thread
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800181 backgroundExecutors.scheduleAtFixedRate(new SendAdvertisementTask(),
Madan Jampania97e8202014-10-10 17:01:33 -0700182 initialDelaySec, periodSec, TimeUnit.SECONDS);
Madan Jampani2ff05592014-10-10 15:42:47 -0700183
184 log.info("Started");
185 }
186
187 @Deactivate
188 public void deactivate() {
Madan Jampani3ffbb272014-10-13 11:19:37 -0700189
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800190 executor.shutdownNow();
191
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800192 backgroundExecutors.shutdownNow();
Madan Jampani3ffbb272014-10-13 11:19:37 -0700193 try {
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800194 if (!backgroundExecutors.awaitTermination(5, TimeUnit.SECONDS)) {
Madan Jampani3ffbb272014-10-13 11:19:37 -0700195 log.error("Timeout during executor shutdown");
196 }
197 } catch (InterruptedException e) {
198 log.error("Error during executor shutdown", e);
199 }
200
Madan Jampani2ff05592014-10-10 15:42:47 -0700201 linkDescs.clear();
202 links.clear();
203 srcLinks.clear();
204 dstLinks.clear();
205 log.info("Stopped");
206 }
207
208 @Override
209 public int getLinkCount() {
210 return links.size();
211 }
212
213 @Override
214 public Iterable<Link> getLinks() {
215 return Collections.unmodifiableCollection(links.values());
216 }
217
218 @Override
219 public Set<Link> getDeviceEgressLinks(DeviceId deviceId) {
220 // lock for iteration
221 synchronized (srcLinks) {
222 return FluentIterable.from(srcLinks.get(deviceId))
223 .transform(lookupLink())
224 .filter(notNull())
225 .toSet();
226 }
227 }
228
229 @Override
230 public Set<Link> getDeviceIngressLinks(DeviceId deviceId) {
231 // lock for iteration
232 synchronized (dstLinks) {
233 return FluentIterable.from(dstLinks.get(deviceId))
234 .transform(lookupLink())
235 .filter(notNull())
236 .toSet();
237 }
238 }
239
240 @Override
241 public Link getLink(ConnectPoint src, ConnectPoint dst) {
Yuta HIGUCHI18ab8a92014-10-13 11:16:19 -0700242 return links.get(linkKey(src, dst));
Madan Jampani2ff05592014-10-10 15:42:47 -0700243 }
244
245 @Override
246 public Set<Link> getEgressLinks(ConnectPoint src) {
247 Set<Link> egress = new HashSet<>();
HIGUCHI Yuta4d973eb2015-02-26 14:28:49 -0800248 //
249 // Change `srcLinks` to ConcurrentMap<DeviceId, (Concurrent)Set>
250 // to remove this synchronized block, if we hit performance issue.
251 // SetMultiMap#get returns wrapped collection to provide modifiable-view.
252 // And the wrapped collection is not concurrent access safe.
253 //
254 // Our use case here does not require returned collection to be modifiable,
255 // so the wrapped collection forces us to lock the whole multiset,
256 // for benefit we don't need.
257 //
258 // Same applies to `dstLinks`
259 synchronized (srcLinks) {
260 for (LinkKey linkKey : srcLinks.get(src.deviceId())) {
261 if (linkKey.src().equals(src)) {
262 Link link = links.get(linkKey);
263 if (link != null) {
264 egress.add(link);
265 } else {
266 log.debug("Egress link for {} was null, skipped", linkKey);
267 }
Ray Milkey7bbeb3f2014-12-11 14:59:26 -0800268 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700269 }
270 }
271 return egress;
272 }
273
274 @Override
275 public Set<Link> getIngressLinks(ConnectPoint dst) {
276 Set<Link> ingress = new HashSet<>();
HIGUCHI Yuta4d973eb2015-02-26 14:28:49 -0800277 synchronized (dstLinks) {
278 for (LinkKey linkKey : dstLinks.get(dst.deviceId())) {
279 if (linkKey.dst().equals(dst)) {
280 Link link = links.get(linkKey);
281 if (link != null) {
282 ingress.add(link);
283 } else {
284 log.debug("Ingress link for {} was null, skipped", linkKey);
285 }
Ray Milkey7bbeb3f2014-12-11 14:59:26 -0800286 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700287 }
288 }
289 return ingress;
290 }
291
292 @Override
293 public LinkEvent createOrUpdateLink(ProviderId providerId,
294 LinkDescription linkDescription) {
295
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800296 final DeviceId dstDeviceId = linkDescription.dst().deviceId();
297 final NodeId localNode = clusterService.getLocalNode().id();
298 final NodeId dstNode = mastershipService.getMasterFor(dstDeviceId);
Madan Jampani2ff05592014-10-10 15:42:47 -0700299
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800300 // Process link update only if we're the master of the destination node,
301 // otherwise signal the actual master.
302 LinkEvent linkEvent = null;
303 if (localNode.equals(dstNode)) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700304
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800305 Timestamp newTimestamp = deviceClockService.getTimestamp(dstDeviceId);
306
307 final Timestamped<LinkDescription> deltaDesc = new Timestamped<>(linkDescription, newTimestamp);
308
309 LinkKey key = linkKey(linkDescription.src(), linkDescription.dst());
310 final Timestamped<LinkDescription> mergedDesc;
311 Map<ProviderId, Timestamped<LinkDescription>> map = getOrCreateLinkDescriptions(key);
312
313 synchronized (map) {
314 linkEvent = createOrUpdateLinkInternal(providerId, deltaDesc);
315 mergedDesc = map.get(providerId);
316 }
317
318 if (linkEvent != null) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700319 log.debug("Notifying peers of a link update topology event from providerId: "
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800320 + "{} between src: {} and dst: {}",
321 providerId, linkDescription.src(), linkDescription.dst());
322 notifyPeers(new InternalLinkEvent(providerId, mergedDesc));
323 }
324
325 } else {
HIGUCHI Yutadc2e7c22015-02-24 12:19:47 -0800326 // FIXME Temporary hack for NPE (ONOS-1171).
327 // Proper fix is to implement forwarding to master on ConfigProvider
328 // redo ONOS-490
329 if (dstNode == null) {
330 // silently ignore
331 return null;
332 }
333
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800334
335 LinkInjectedEvent linkInjectedEvent = new LinkInjectedEvent(providerId, linkDescription);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800336
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800337 // TODO check unicast return value
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700338 clusterCommunicator.unicast(linkInjectedEvent,
339 GossipLinkStoreMessageSubjects.LINK_INJECTED,
340 SERIALIZER::encode,
341 dstNode);
Yuta HIGUCHI92cd51e2014-10-13 10:51:45 -0700342 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700343
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800344 return linkEvent;
Madan Jampani2ff05592014-10-10 15:42:47 -0700345 }
346
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800347 @Override
348 public LinkEvent removeOrDownLink(ConnectPoint src, ConnectPoint dst) {
349 Link link = getLink(src, dst);
350 if (link == null) {
351 return null;
352 }
353
354 if (link.isDurable()) {
355 // FIXME: this is not the right thing to call for the gossip store; will not sync link state!!!
356 return link.state() == INACTIVE ? null :
357 updateLink(linkKey(link.src(), link.dst()), link,
358 new DefaultLink(link.providerId(),
359 link.src(), link.dst(),
360 link.type(), INACTIVE,
361 link.isDurable(),
362 link.annotations()));
363 }
364 return removeLink(src, dst);
365 }
366
Madan Jampani2ff05592014-10-10 15:42:47 -0700367 private LinkEvent createOrUpdateLinkInternal(
368 ProviderId providerId,
369 Timestamped<LinkDescription> linkDescription) {
370
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700371 final LinkKey key = linkKey(linkDescription.value().src(),
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800372 linkDescription.value().dst());
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700373 Map<ProviderId, Timestamped<LinkDescription>> descs = getOrCreateLinkDescriptions(key);
Madan Jampani2ff05592014-10-10 15:42:47 -0700374
375 synchronized (descs) {
376 // if the link was previously removed, we should proceed if and
377 // only if this request is more recent.
378 Timestamp linkRemovedTimestamp = removedLinks.get(key);
379 if (linkRemovedTimestamp != null) {
Jonathan Hart403ea932015-02-20 16:23:00 -0800380 if (linkDescription.isNewerThan(linkRemovedTimestamp)) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700381 removedLinks.remove(key);
382 } else {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700383 log.trace("Link {} was already removed ignoring.", key);
Madan Jampani2ff05592014-10-10 15:42:47 -0700384 return null;
385 }
386 }
387
388 final Link oldLink = links.get(key);
389 // update description
390 createOrUpdateLinkDescription(descs, providerId, linkDescription);
391 final Link newLink = composeLink(descs);
392 if (oldLink == null) {
393 return createLink(key, newLink);
394 }
395 return updateLink(key, oldLink, newLink);
396 }
397 }
398
399 // Guarded by linkDescs value (=locking each Link)
400 private Timestamped<LinkDescription> createOrUpdateLinkDescription(
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700401 Map<ProviderId, Timestamped<LinkDescription>> descs,
Madan Jampani2ff05592014-10-10 15:42:47 -0700402 ProviderId providerId,
403 Timestamped<LinkDescription> linkDescription) {
404
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700405 // merge existing annotations
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700406 Timestamped<LinkDescription> existingLinkDescription = descs.get(providerId);
Madan Jampani2ff05592014-10-10 15:42:47 -0700407 if (existingLinkDescription != null && existingLinkDescription.isNewer(linkDescription)) {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700408 log.trace("local info is more up-to-date, ignoring {}.", linkDescription);
Madan Jampani2ff05592014-10-10 15:42:47 -0700409 return null;
410 }
411 Timestamped<LinkDescription> newLinkDescription = linkDescription;
412 if (existingLinkDescription != null) {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700413 // we only allow transition from INDIRECT -> DIRECT
414 final Type newType;
415 if (existingLinkDescription.value().type() == DIRECT) {
416 newType = DIRECT;
417 } else {
418 newType = linkDescription.value().type();
419 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700420 SparseAnnotations merged = union(existingLinkDescription.value().annotations(),
421 linkDescription.value().annotations());
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800422 newLinkDescription = new Timestamped<>(
Madan Jampani2ff05592014-10-10 15:42:47 -0700423 new DefaultLinkDescription(
424 linkDescription.value().src(),
425 linkDescription.value().dst(),
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700426 newType, merged),
Madan Jampani2ff05592014-10-10 15:42:47 -0700427 linkDescription.timestamp());
428 }
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700429 return descs.put(providerId, newLinkDescription);
Madan Jampani2ff05592014-10-10 15:42:47 -0700430 }
431
432 // Creates and stores the link and returns the appropriate event.
433 // Guarded by linkDescs value (=locking each Link)
434 private LinkEvent createLink(LinkKey key, Link newLink) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700435 links.put(key, newLink);
436 srcLinks.put(newLink.src().deviceId(), key);
437 dstLinks.put(newLink.dst().deviceId(), key);
438 return new LinkEvent(LINK_ADDED, newLink);
439 }
440
441 // Updates, if necessary the specified link and returns the appropriate event.
442 // Guarded by linkDescs value (=locking each Link)
443 private LinkEvent updateLink(LinkKey key, Link oldLink, Link newLink) {
Yuta HIGUCHIa85542b2014-10-21 19:29:49 -0700444 // Note: INDIRECT -> DIRECT transition only
445 // so that BDDP discovered Link will not overwrite LDDP Link
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800446 if (oldLink.state() != newLink.state() ||
447 (oldLink.type() == INDIRECT && newLink.type() == DIRECT) ||
Madan Jampani2ff05592014-10-10 15:42:47 -0700448 !AnnotationsUtil.isEqual(oldLink.annotations(), newLink.annotations())) {
449
450 links.put(key, newLink);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800451 // strictly speaking following can be omitted
Madan Jampani2ff05592014-10-10 15:42:47 -0700452 srcLinks.put(oldLink.src().deviceId(), key);
453 dstLinks.put(oldLink.dst().deviceId(), key);
454 return new LinkEvent(LINK_UPDATED, newLink);
455 }
456 return null;
457 }
458
459 @Override
460 public LinkEvent removeLink(ConnectPoint src, ConnectPoint dst) {
Yuta HIGUCHI18ab8a92014-10-13 11:16:19 -0700461 final LinkKey key = linkKey(src, dst);
Madan Jampani2ff05592014-10-10 15:42:47 -0700462
463 DeviceId dstDeviceId = dst.deviceId();
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700464 Timestamp timestamp = null;
465 try {
466 timestamp = deviceClockService.getTimestamp(dstDeviceId);
467 } catch (IllegalStateException e) {
Thomas Vachuska6f90c592015-06-03 20:06:58 -0700468 log.debug("Failed to remove link {}, was not the master", key);
469 // there are times when this is called before mastership
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700470 // handoff correctly completes.
471 return null;
472 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700473
474 LinkEvent event = removeLinkInternal(key, timestamp);
475
476 if (event != null) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700477 log.debug("Notifying peers of a link removed topology event for a link "
Madan Jampani2ff05592014-10-10 15:42:47 -0700478 + "between src: {} and dst: {}", src, dst);
Jonathan Hart7d656f42015-01-27 14:07:23 -0800479 notifyPeers(new InternalLinkRemovedEvent(key, timestamp));
Madan Jampani2ff05592014-10-10 15:42:47 -0700480 }
481 return event;
482 }
483
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700484 private static Timestamped<LinkDescription> getPrimaryDescription(
485 Map<ProviderId, Timestamped<LinkDescription>> linkDescriptions) {
486
Madan Jampani2ff05592014-10-10 15:42:47 -0700487 synchronized (linkDescriptions) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700488 for (Entry<ProviderId, Timestamped<LinkDescription>>
489 e : linkDescriptions.entrySet()) {
490
491 if (!e.getKey().isAncillary()) {
492 return e.getValue();
493 }
494 }
495 }
496 return null;
497 }
498
499
500 // TODO: consider slicing out as Timestamp utils
501 /**
502 * Checks is timestamp is more recent than timestamped object.
503 *
504 * @param timestamp to check if this is more recent then other
505 * @param timestamped object to be tested against
506 * @return true if {@code timestamp} is more recent than {@code timestamped}
507 * or {@code timestamped is null}
508 */
509 private static boolean isMoreRecent(Timestamp timestamp, Timestamped<?> timestamped) {
510 checkNotNull(timestamp);
511 if (timestamped == null) {
512 return true;
513 }
514 return timestamp.compareTo(timestamped.timestamp()) > 0;
515 }
516
517 private LinkEvent removeLinkInternal(LinkKey key, Timestamp timestamp) {
518 Map<ProviderId, Timestamped<LinkDescription>> linkDescriptions
519 = getOrCreateLinkDescriptions(key);
520
521 synchronized (linkDescriptions) {
522 if (linkDescriptions.isEmpty()) {
523 // never seen such link before. keeping timestamp for record
524 removedLinks.put(key, timestamp);
525 return null;
526 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700527 // accept removal request if given timestamp is newer than
528 // the latest Timestamp from Primary provider
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700529 Timestamped<LinkDescription> prim = getPrimaryDescription(linkDescriptions);
530 if (!isMoreRecent(timestamp, prim)) {
531 // outdated remove request, ignore
Madan Jampani2ff05592014-10-10 15:42:47 -0700532 return null;
533 }
534 removedLinks.put(key, timestamp);
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800535 Link link = links.remove(key);
Madan Jampani2ff05592014-10-10 15:42:47 -0700536 linkDescriptions.clear();
537 if (link != null) {
538 srcLinks.remove(link.src().deviceId(), key);
539 dstLinks.remove(link.dst().deviceId(), key);
540 return new LinkEvent(LINK_REMOVED, link);
541 }
542 return null;
543 }
544 }
545
Yuta HIGUCHI800fac62014-12-11 19:23:01 -0800546 /**
547 * Creates concurrent readable, synchronized HashMultimap.
548 *
549 * @return SetMultimap
550 */
Madan Jampani2ff05592014-10-10 15:42:47 -0700551 private static <K, V> SetMultimap<K, V> createSynchronizedHashMultiMap() {
Yuta HIGUCHI800fac62014-12-11 19:23:01 -0800552 return synchronizedSetMultimap(
Sho SHIMIZU7a4087b2015-09-10 09:23:16 -0700553 Multimaps.newSetMultimap(new ConcurrentHashMap<>(),
Yuta HIGUCHI800fac62014-12-11 19:23:01 -0800554 () -> Sets.newConcurrentHashSet()));
Madan Jampani2ff05592014-10-10 15:42:47 -0700555 }
556
557 /**
558 * @return primary ProviderID, or randomly chosen one if none exists
559 */
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700560 private static ProviderId pickBaseProviderId(
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700561 Map<ProviderId, Timestamped<LinkDescription>> linkDescriptions) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700562
563 ProviderId fallBackPrimary = null;
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700564 for (Entry<ProviderId, Timestamped<LinkDescription>> e : linkDescriptions.entrySet()) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700565 if (!e.getKey().isAncillary()) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700566 // found primary
Madan Jampani2ff05592014-10-10 15:42:47 -0700567 return e.getKey();
568 } else if (fallBackPrimary == null) {
569 // pick randomly as a fallback in case there is no primary
570 fallBackPrimary = e.getKey();
571 }
572 }
573 return fallBackPrimary;
574 }
575
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700576 // Guarded by linkDescs value (=locking each Link)
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700577 private Link composeLink(Map<ProviderId, Timestamped<LinkDescription>> descs) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700578 ProviderId baseProviderId = pickBaseProviderId(descs);
579 Timestamped<LinkDescription> base = descs.get(baseProviderId);
Madan Jampani2ff05592014-10-10 15:42:47 -0700580
581 ConnectPoint src = base.value().src();
582 ConnectPoint dst = base.value().dst();
583 Type type = base.value().type();
584 DefaultAnnotations annotations = DefaultAnnotations.builder().build();
585 annotations = merge(annotations, base.value().annotations());
586
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700587 for (Entry<ProviderId, Timestamped<LinkDescription>> e : descs.entrySet()) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700588 if (baseProviderId.equals(e.getKey())) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700589 continue;
590 }
591
Yuta HIGUCHI65934892014-12-04 17:47:44 -0800592 // Note: In the long run we should keep track of Description timestamp
Madan Jampani2ff05592014-10-10 15:42:47 -0700593 // and only merge conflicting keys when timestamp is newer
594 // Currently assuming there will never be a key conflict between
595 // providers
596
597 // annotation merging. not so efficient, should revisit later
598 annotations = merge(annotations, e.getValue().value().annotations());
599 }
600
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800601 boolean isDurable = Objects.equals(annotations.value(AnnotationKeys.DURABLE), "true");
Thomas Vachuskabadb93f2014-11-15 23:51:17 -0800602 return new DefaultLink(baseProviderId, src, dst, type, ACTIVE, isDurable, annotations);
Madan Jampani2ff05592014-10-10 15:42:47 -0700603 }
604
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700605 private Map<ProviderId, Timestamped<LinkDescription>> getOrCreateLinkDescriptions(LinkKey key) {
Yuta HIGUCHI3e1a5bf2014-10-14 19:39:58 -0700606 Map<ProviderId, Timestamped<LinkDescription>> r;
607 r = linkDescs.get(key);
608 if (r != null) {
609 return r;
610 }
611 r = new HashMap<>();
612 final Map<ProviderId, Timestamped<LinkDescription>> concurrentlyAdded;
613 concurrentlyAdded = linkDescs.putIfAbsent(key, r);
614 if (concurrentlyAdded != null) {
615 return concurrentlyAdded;
616 } else {
617 return r;
618 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700619 }
620
621 private final Function<LinkKey, Link> lookupLink = new LookupLink();
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800622
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700623 /**
624 * Returns a Function to lookup Link instance using LinkKey from cache.
Thomas Vachuska57126fe2014-11-11 17:13:24 -0800625 *
626 * @return lookup link function
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700627 */
Madan Jampani2ff05592014-10-10 15:42:47 -0700628 private Function<LinkKey, Link> lookupLink() {
629 return lookupLink;
630 }
631
632 private final class LookupLink implements Function<LinkKey, Link> {
633 @Override
634 public Link apply(LinkKey input) {
Yuta HIGUCHI023295a2014-10-15 23:29:46 -0700635 if (input == null) {
636 return null;
637 } else {
638 return links.get(input);
639 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700640 }
641 }
642
Madan Jampani2ff05592014-10-10 15:42:47 -0700643 private void notifyDelegateIfNotNull(LinkEvent event) {
644 if (event != null) {
645 notifyDelegate(event);
646 }
647 }
648
Jonathan Hart7d656f42015-01-27 14:07:23 -0800649 private void broadcastMessage(MessageSubject subject, Object event) {
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700650 clusterCommunicator.broadcast(event, subject, SERIALIZER::encode);
Madan Jampani2ff05592014-10-10 15:42:47 -0700651 }
652
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700653 private void unicastMessage(NodeId recipient, MessageSubject subject, Object event) throws IOException {
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700654 clusterCommunicator.unicast(event, subject, SERIALIZER::encode, recipient);
Madan Jampania97e8202014-10-10 17:01:33 -0700655 }
656
Jonathan Hart7d656f42015-01-27 14:07:23 -0800657 private void notifyPeers(InternalLinkEvent event) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700658 broadcastMessage(GossipLinkStoreMessageSubjects.LINK_UPDATE, event);
659 }
660
Jonathan Hart7d656f42015-01-27 14:07:23 -0800661 private void notifyPeers(InternalLinkRemovedEvent event) {
Madan Jampani2ff05592014-10-10 15:42:47 -0700662 broadcastMessage(GossipLinkStoreMessageSubjects.LINK_REMOVED, event);
663 }
664
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700665 // notify peer, silently ignoring error
Madan Jampania97e8202014-10-10 17:01:33 -0700666 private void notifyPeer(NodeId peer, InternalLinkEvent event) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700667 try {
668 unicastMessage(peer, GossipLinkStoreMessageSubjects.LINK_UPDATE, event);
669 } catch (IOException e) {
670 log.debug("Failed to notify peer {} with message {}", peer, event);
671 }
Madan Jampania97e8202014-10-10 17:01:33 -0700672 }
673
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700674 // notify peer, silently ignoring error
Madan Jampania97e8202014-10-10 17:01:33 -0700675 private void notifyPeer(NodeId peer, InternalLinkRemovedEvent event) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700676 try {
677 unicastMessage(peer, GossipLinkStoreMessageSubjects.LINK_REMOVED, event);
678 } catch (IOException e) {
679 log.debug("Failed to notify peer {} with message {}", peer, event);
680 }
Madan Jampania97e8202014-10-10 17:01:33 -0700681 }
682
683 private final class SendAdvertisementTask implements Runnable {
684
685 @Override
686 public void run() {
687 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -0800688 log.debug("Interrupted, quitting");
Madan Jampania97e8202014-10-10 17:01:33 -0700689 return;
690 }
691
692 try {
693 final NodeId self = clusterService.getLocalNode().id();
694 Set<ControllerNode> nodes = clusterService.getNodes();
695
696 ImmutableList<NodeId> nodeIds = FluentIterable.from(nodes)
697 .transform(toNodeId())
698 .toList();
699
700 if (nodeIds.size() == 1 && nodeIds.get(0).equals(self)) {
Yuta HIGUCHIfaf9e1c2014-11-20 00:31:29 -0800701 log.trace("No other peers in the cluster.");
Madan Jampania97e8202014-10-10 17:01:33 -0700702 return;
703 }
704
705 NodeId peer;
706 do {
707 int idx = RandomUtils.nextInt(0, nodeIds.size());
708 peer = nodeIds.get(idx);
709 } while (peer.equals(self));
710
711 LinkAntiEntropyAdvertisement ad = createAdvertisement();
712
713 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -0800714 log.debug("Interrupted, quitting");
Madan Jampania97e8202014-10-10 17:01:33 -0700715 return;
716 }
717
718 try {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700719 unicastMessage(peer, LINK_ANTI_ENTROPY_ADVERTISEMENT, ad);
720 } catch (IOException e) {
721 log.debug("Failed to send anti-entropy advertisement to {}", peer);
Madan Jampania97e8202014-10-10 17:01:33 -0700722 return;
723 }
724 } catch (Exception e) {
725 // catch all Exception to avoid Scheduled task being suppressed.
726 log.error("Exception thrown while sending advertisement", e);
727 }
728 }
729 }
730
731 private LinkAntiEntropyAdvertisement createAdvertisement() {
732 final NodeId self = clusterService.getLocalNode().id();
733
734 Map<LinkFragmentId, Timestamp> linkTimestamps = new HashMap<>(linkDescs.size());
735 Map<LinkKey, Timestamp> linkTombstones = new HashMap<>(removedLinks.size());
736
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -0800737 linkDescs.forEach((linkKey, linkDesc) -> {
Madan Jampania97e8202014-10-10 17:01:33 -0700738 synchronized (linkDesc) {
739 for (Map.Entry<ProviderId, Timestamped<LinkDescription>> e : linkDesc.entrySet()) {
740 linkTimestamps.put(new LinkFragmentId(linkKey, e.getKey()), e.getValue().timestamp());
741 }
742 }
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -0800743 });
Madan Jampania97e8202014-10-10 17:01:33 -0700744
745 linkTombstones.putAll(removedLinks);
746
747 return new LinkAntiEntropyAdvertisement(self, linkTimestamps, linkTombstones);
748 }
749
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700750 private void handleAntiEntropyAdvertisement(LinkAntiEntropyAdvertisement ad) {
Madan Jampania97e8202014-10-10 17:01:33 -0700751
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700752 final NodeId sender = ad.sender();
753 boolean localOutdated = false;
Madan Jampania97e8202014-10-10 17:01:33 -0700754
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700755 for (Entry<LinkKey, Map<ProviderId, Timestamped<LinkDescription>>>
756 l : linkDescs.entrySet()) {
Madan Jampania97e8202014-10-10 17:01:33 -0700757
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700758 final LinkKey key = l.getKey();
759 final Map<ProviderId, Timestamped<LinkDescription>> link = l.getValue();
760 synchronized (link) {
761 Timestamp localLatest = removedLinks.get(key);
Madan Jampania97e8202014-10-10 17:01:33 -0700762
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700763 for (Entry<ProviderId, Timestamped<LinkDescription>> p : link.entrySet()) {
764 final ProviderId providerId = p.getKey();
765 final Timestamped<LinkDescription> pDesc = p.getValue();
Madan Jampania97e8202014-10-10 17:01:33 -0700766
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700767 final LinkFragmentId fragId = new LinkFragmentId(key, providerId);
768 // remote
769 Timestamp remoteTimestamp = ad.linkTimestamps().get(fragId);
770 if (remoteTimestamp == null) {
771 remoteTimestamp = ad.linkTombstones().get(key);
772 }
773 if (remoteTimestamp == null ||
Jonathan Hart403ea932015-02-20 16:23:00 -0800774 pDesc.isNewerThan(remoteTimestamp)) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700775 // I have more recent link description. update peer.
776 notifyPeer(sender, new InternalLinkEvent(providerId, pDesc));
777 } else {
778 final Timestamp remoteLive = ad.linkTimestamps().get(fragId);
779 if (remoteLive != null &&
780 remoteLive.compareTo(pDesc.timestamp()) > 0) {
781 // I have something outdated
782 localOutdated = true;
783 }
784 }
785
786 // search local latest along the way
787 if (localLatest == null ||
Jonathan Hart403ea932015-02-20 16:23:00 -0800788 pDesc.isNewerThan(localLatest)) {
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700789 localLatest = pDesc.timestamp();
790 }
791 }
792 // Tests if remote remove is more recent then local latest.
793 final Timestamp remoteRemove = ad.linkTombstones().get(key);
794 if (remoteRemove != null) {
795 if (localLatest != null &&
796 localLatest.compareTo(remoteRemove) < 0) {
797 // remote remove is more recent
798 notifyDelegateIfNotNull(removeLinkInternal(key, remoteRemove));
799 }
800 }
Madan Jampania97e8202014-10-10 17:01:33 -0700801 }
802 }
803
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700804 // populate remove info if not known locally
805 for (Entry<LinkKey, Timestamp> remoteRm : ad.linkTombstones().entrySet()) {
806 final LinkKey key = remoteRm.getKey();
807 final Timestamp remoteRemove = remoteRm.getValue();
808 // relying on removeLinkInternal to ignore stale info
809 notifyDelegateIfNotNull(removeLinkInternal(key, remoteRemove));
810 }
Madan Jampania97e8202014-10-10 17:01:33 -0700811
Yuta HIGUCHI2fe46a22014-10-15 22:51:02 -0700812 if (localOutdated) {
813 // send back advertisement to speed up convergence
814 try {
815 unicastMessage(sender, LINK_ANTI_ENTROPY_ADVERTISEMENT,
816 createAdvertisement());
817 } catch (IOException e) {
818 log.debug("Failed to send back active advertisement");
Madan Jampania97e8202014-10-10 17:01:33 -0700819 }
820 }
821 }
822
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800823 private final class InternalLinkEventListener
824 implements ClusterMessageHandler {
Madan Jampani2ff05592014-10-10 15:42:47 -0700825 @Override
826 public void handle(ClusterMessage message) {
827
Yuta HIGUCHIc01d2aa2014-10-19 01:19:34 -0700828 log.trace("Received link event from peer: {}", message.sender());
Madan Jampani2ff05592014-10-10 15:42:47 -0700829 InternalLinkEvent event = (InternalLinkEvent) SERIALIZER.decode(message.payload());
830
831 ProviderId providerId = event.providerId();
832 Timestamped<LinkDescription> linkDescription = event.linkDescription();
833
Madan Jampani2af244a2015-02-22 13:12:01 -0800834 try {
835 notifyDelegateIfNotNull(createOrUpdateLinkInternal(providerId, linkDescription));
836 } catch (Exception e) {
837 log.warn("Exception thrown handling link event", e);
838 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700839 }
840 }
841
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800842 private final class InternalLinkRemovedEventListener
843 implements ClusterMessageHandler {
Madan Jampani2ff05592014-10-10 15:42:47 -0700844 @Override
845 public void handle(ClusterMessage message) {
846
Yuta HIGUCHIc01d2aa2014-10-19 01:19:34 -0700847 log.trace("Received link removed event from peer: {}", message.sender());
Madan Jampani2ff05592014-10-10 15:42:47 -0700848 InternalLinkRemovedEvent event = (InternalLinkRemovedEvent) SERIALIZER.decode(message.payload());
849
850 LinkKey linkKey = event.linkKey();
851 Timestamp timestamp = event.timestamp();
852
Madan Jampani2af244a2015-02-22 13:12:01 -0800853 try {
854 notifyDelegateIfNotNull(removeLinkInternal(linkKey, timestamp));
855 } catch (Exception e) {
856 log.warn("Exception thrown handling link removed", e);
857 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700858 }
859 }
Madan Jampania97e8202014-10-10 17:01:33 -0700860
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800861 private final class InternalLinkAntiEntropyAdvertisementListener
862 implements ClusterMessageHandler {
Madan Jampania97e8202014-10-10 17:01:33 -0700863
864 @Override
865 public void handle(ClusterMessage message) {
Yuta HIGUCHIfaf9e1c2014-11-20 00:31:29 -0800866 log.trace("Received Link Anti-Entropy advertisement from peer: {}", message.sender());
Madan Jampania97e8202014-10-10 17:01:33 -0700867 LinkAntiEntropyAdvertisement advertisement = SERIALIZER.decode(message.payload());
Madan Jampani2af244a2015-02-22 13:12:01 -0800868 try {
869 handleAntiEntropyAdvertisement(advertisement);
870 } catch (Exception e) {
871 log.warn("Exception thrown while handling Link advertisements", e);
872 throw e;
873 }
Madan Jampania97e8202014-10-10 17:01:33 -0700874 }
875 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800876
877 private final class LinkInjectedEventListener
878 implements ClusterMessageHandler {
879 @Override
880 public void handle(ClusterMessage message) {
881
882 log.trace("Received injected link event from peer: {}", message.sender());
883 LinkInjectedEvent linkInjectedEvent = SERIALIZER.decode(message.payload());
884
885 ProviderId providerId = linkInjectedEvent.providerId();
886 LinkDescription linkDescription = linkInjectedEvent.linkDescription();
887
HIGUCHI Yuta0b4d2982015-02-27 23:18:52 -0800888 final DeviceId deviceId = linkDescription.dst().deviceId();
889 if (!deviceClockService.isTimestampAvailable(deviceId)) {
890 // workaround for ONOS-1208
891 log.warn("Not ready to accept update. Dropping {}", linkDescription);
892 return;
893 }
894
Madan Jampani2af244a2015-02-22 13:12:01 -0800895 try {
896 createOrUpdateLink(providerId, linkDescription);
897 } catch (Exception e) {
898 log.warn("Exception thrown while handling link injected event", e);
899 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800900 }
901 }
Madan Jampani2ff05592014-10-10 15:42:47 -0700902}