blob: 267ee4879f42a6a597791670ccbac8bd7e304b60 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present 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.device.impl;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -070017
Jonathan Hart46ab5cc2016-09-15 15:42:39 -070018import com.google.common.collect.FluentIterable;
19import com.google.common.collect.ImmutableList;
20import com.google.common.collect.Maps;
21import com.google.common.collect.Sets;
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -070022import org.apache.commons.lang3.RandomUtils;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -070023import org.apache.felix.scr.annotations.Activate;
24import org.apache.felix.scr.annotations.Component;
25import org.apache.felix.scr.annotations.Deactivate;
26import org.apache.felix.scr.annotations.Reference;
27import org.apache.felix.scr.annotations.ReferenceCardinality;
28import org.apache.felix.scr.annotations.Service;
Marc De Leenheerb473b9d2015-02-06 15:21:03 -080029import org.onlab.packet.ChassisId;
30import 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;
34import org.onosproject.mastership.MastershipService;
35import org.onosproject.mastership.MastershipTerm;
36import org.onosproject.mastership.MastershipTermService;
Marc De Leenheer88194c32015-05-29 22:10:59 -070037import org.onosproject.net.Annotations;
Brian O'Connorabafb502014-12-02 22:26:20 -080038import org.onosproject.net.AnnotationsUtil;
39import org.onosproject.net.DefaultAnnotations;
40import org.onosproject.net.DefaultDevice;
41import org.onosproject.net.DefaultPort;
42import org.onosproject.net.Device;
43import org.onosproject.net.Device.Type;
44import org.onosproject.net.DeviceId;
45import org.onosproject.net.MastershipRole;
Marc De Leenheer4b18a232015-04-30 11:58:20 -070046import org.onosproject.net.OchPort;
47import org.onosproject.net.OduCltPort;
48import org.onosproject.net.OmsPort;
Rimon Ashkenazy8ebfff02016-02-01 11:56:36 +020049import org.onosproject.net.OtuPort;
Brian O'Connorabafb502014-12-02 22:26:20 -080050import org.onosproject.net.Port;
51import org.onosproject.net.PortNumber;
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -070052import org.onosproject.net.device.DefaultPortStatistics;
Brian O'Connorabafb502014-12-02 22:26:20 -080053import org.onosproject.net.device.DeviceClockService;
54import org.onosproject.net.device.DeviceDescription;
55import org.onosproject.net.device.DeviceEvent;
56import org.onosproject.net.device.DeviceStore;
57import org.onosproject.net.device.DeviceStoreDelegate;
Marc De Leenheer4b18a232015-04-30 11:58:20 -070058import org.onosproject.net.device.OchPortDescription;
59import org.onosproject.net.device.OduCltPortDescription;
60import org.onosproject.net.device.OmsPortDescription;
Rimon Ashkenazy8ebfff02016-02-01 11:56:36 +020061import org.onosproject.net.device.OtuPortDescription;
Brian O'Connorabafb502014-12-02 22:26:20 -080062import org.onosproject.net.device.PortDescription;
sangho538108b2015-04-08 14:29:20 -070063import org.onosproject.net.device.PortStatistics;
Brian O'Connorabafb502014-12-02 22:26:20 -080064import org.onosproject.net.provider.ProviderId;
65import org.onosproject.store.AbstractStore;
66import org.onosproject.store.Timestamp;
67import org.onosproject.store.cluster.messaging.ClusterCommunicationService;
Brian O'Connorabafb502014-12-02 22:26:20 -080068import org.onosproject.store.cluster.messaging.MessageSubject;
69import org.onosproject.store.impl.Timestamped;
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -070070import org.onosproject.store.serializers.KryoNamespaces;
HIGUCHI Yutae7290652016-05-18 11:29:01 -070071import org.onosproject.store.serializers.StoreSerializer;
Brian O'Connor6de2e202015-05-21 14:30:41 -070072import org.onosproject.store.serializers.custom.DistributedStoreSerializers;
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -070073import org.onosproject.store.service.EventuallyConsistentMap;
74import org.onosproject.store.service.EventuallyConsistentMapEvent;
75import org.onosproject.store.service.EventuallyConsistentMapListener;
76import org.onosproject.store.service.MultiValuedTimestamp;
77import org.onosproject.store.service.StorageService;
78import org.onosproject.store.service.WallClockTimestamp;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -070079import org.slf4j.Logger;
80
Jonathan Hart46ab5cc2016-09-15 15:42:39 -070081import java.io.IOException;
82import java.util.ArrayList;
83import java.util.Collection;
84import java.util.Collections;
85import java.util.HashMap;
86import java.util.HashSet;
87import java.util.Iterator;
88import java.util.List;
89import java.util.Map;
90import java.util.Map.Entry;
91import java.util.Objects;
92import java.util.Optional;
93import java.util.Set;
94import java.util.concurrent.ConcurrentHashMap;
95import java.util.concurrent.ConcurrentMap;
96import java.util.concurrent.ExecutorService;
97import java.util.concurrent.ScheduledExecutorService;
98import java.util.concurrent.TimeUnit;
99import java.util.function.Consumer;
100import java.util.stream.Stream;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700101
102import static com.google.common.base.Preconditions.checkArgument;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700103import static com.google.common.base.Predicates.notNull;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700104import static com.google.common.base.Verify.verify;
HIGUCHI Yuta060da9a2016-03-11 19:16:35 -0800105import static java.util.concurrent.Executors.newCachedThreadPool;
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800106import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
Thomas Vachuska6f94ded2015-02-21 14:02:38 -0800107import static org.onlab.util.Tools.groupedThreads;
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800108import static org.onlab.util.Tools.minPriority;
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800109import static org.onosproject.cluster.ControllerNodeToNodeId.toNodeId;
110import static org.onosproject.net.DefaultAnnotations.merge;
Ray Milkey9ef22232016-07-14 12:42:37 -0700111import static org.onosproject.net.device.DeviceEvent.Type.DEVICE_AVAILABILITY_CHANGED;
112import static org.onosproject.net.device.DeviceEvent.Type.PORT_ADDED;
113import static org.onosproject.net.device.DeviceEvent.Type.PORT_REMOVED;
114import static org.onosproject.net.device.DeviceEvent.Type.PORT_STATS_UPDATED;
115import static org.onosproject.net.device.DeviceEvent.Type.PORT_UPDATED;
116import static org.onosproject.store.device.impl.GossipDeviceStoreMessageSubjects.DEVICE_ADVERTISE;
117import static org.onosproject.store.device.impl.GossipDeviceStoreMessageSubjects.DEVICE_INJECTED;
Jonathan Hart46ab5cc2016-09-15 15:42:39 -0700118import static org.onosproject.store.device.impl.GossipDeviceStoreMessageSubjects.DEVICE_OFFLINE;
119import static org.onosproject.store.device.impl.GossipDeviceStoreMessageSubjects.DEVICE_REMOVED;
Ray Milkey9ef22232016-07-14 12:42:37 -0700120import static org.onosproject.store.device.impl.GossipDeviceStoreMessageSubjects.DEVICE_REMOVE_REQ;
Jonathan Hart46ab5cc2016-09-15 15:42:39 -0700121import static org.onosproject.store.device.impl.GossipDeviceStoreMessageSubjects.DEVICE_UPDATE;
Ray Milkey9ef22232016-07-14 12:42:37 -0700122import static org.onosproject.store.device.impl.GossipDeviceStoreMessageSubjects.PORT_INJECTED;
Jonathan Hart46ab5cc2016-09-15 15:42:39 -0700123import static org.onosproject.store.device.impl.GossipDeviceStoreMessageSubjects.PORT_STATUS_UPDATE;
124import static org.onosproject.store.device.impl.GossipDeviceStoreMessageSubjects.PORT_UPDATE;
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700125import static org.onosproject.store.service.EventuallyConsistentMapEvent.Type.PUT;
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800126import static org.slf4j.LoggerFactory.getLogger;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700127
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700128/**
129 * Manages inventory of infrastructure devices using gossip protocol to distribute
130 * information.
131 */
132@Component(immediate = true)
133@Service
134public class GossipDeviceStore
135 extends AbstractStore<DeviceEvent, DeviceStoreDelegate>
136 implements DeviceStore {
137
138 private final Logger log = getLogger(getClass());
139
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700140 private static final String DEVICE_NOT_FOUND = "Device with ID %s not found";
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800141 // Timeout in milliseconds to process device or ports on remote master node
142 private static final int REMOTE_MASTER_TIMEOUT = 1000;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700143
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700144 // innerMap is used to lock a Device, thus instance should never be replaced.
145 // collection of Description given from various providers
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700146 private final ConcurrentMap<DeviceId, Map<ProviderId, DeviceDescriptions>>
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700147 deviceDescs = Maps.newConcurrentMap();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700148
149 // cache of Device and Ports generated by compositing descriptions from providers
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700150 private final ConcurrentMap<DeviceId, Device> devices = Maps.newConcurrentMap();
151 private final ConcurrentMap<DeviceId, ConcurrentMap<PortNumber, Port>> devicePorts = Maps.newConcurrentMap();
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700152
153 private EventuallyConsistentMap<DeviceId, Map<PortNumber, PortStatistics>> devicePortStats;
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200154 private EventuallyConsistentMap<DeviceId, Map<PortNumber, PortStatistics>> devicePortDeltaStats;
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700155 private final EventuallyConsistentMapListener<DeviceId, Map<PortNumber, PortStatistics>>
156 portStatsListener = new InternalPortStatsListener();
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700157
158 // to be updated under Device lock
159 private final Map<DeviceId, Timestamp> offline = Maps.newHashMap();
160 private final Map<DeviceId, Timestamp> removalRequest = Maps.newHashMap();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700161
162 // available(=UP) devices
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700163 private final Set<DeviceId> availableDevices = Sets.newConcurrentHashSet();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700164
165 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -0700166 protected DeviceClockService deviceClockService;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700167
Madan Jampani47c93732014-10-06 20:46:08 -0700168 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700169 protected StorageService storageService;
170
171 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Madan Jampani47c93732014-10-06 20:46:08 -0700172 protected ClusterCommunicationService clusterCommunicator;
173
Madan Jampani53e44e62014-10-07 12:39:51 -0700174 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
175 protected ClusterService clusterService;
176
Yuta HIGUCHIe8252bb2014-10-22 09:41:01 -0700177 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
178 protected MastershipService mastershipService;
179
Yuta HIGUCHIbcac4992014-11-22 19:27:57 -0800180 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
181 protected MastershipTermService termService;
182
183
HIGUCHI Yutae7290652016-05-18 11:29:01 -0700184 protected static final StoreSerializer SERIALIZER = StoreSerializer.using(KryoNamespace.newBuilder()
Yuta HIGUCHI91768e32014-11-22 05:06:35 -0800185 .register(DistributedStoreSerializers.STORE_COMMON)
186 .nextId(DistributedStoreSerializers.STORE_CUSTOM_BEGIN)
187 .register(new InternalDeviceEventSerializer(), InternalDeviceEvent.class)
188 .register(new InternalDeviceOfflineEventSerializer(), InternalDeviceOfflineEvent.class)
Madan Jampani3fc72ed2014-10-08 12:50:27 -0700189 .register(InternalDeviceRemovedEvent.class)
Yuta HIGUCHI91768e32014-11-22 05:06:35 -0800190 .register(new InternalPortEventSerializer(), InternalPortEvent.class)
191 .register(new InternalPortStatusEventSerializer(), InternalPortStatusEvent.class)
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -0700192 .register(DeviceAntiEntropyAdvertisement.class)
193 .register(DeviceFragmentId.class)
194 .register(PortFragmentId.class)
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800195 .register(DeviceInjectedEvent.class)
196 .register(PortInjectedEvent.class)
HIGUCHI Yutae7290652016-05-18 11:29:01 -0700197 .build("GossipDevice"));
Madan Jampani53e44e62014-10-07 12:39:51 -0700198
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800199 private ExecutorService executor;
200
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800201 private ScheduledExecutorService backgroundExecutor;
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -0700202
Yuta HIGUCHI65934892014-12-04 17:47:44 -0800203 // TODO make these anti-entropy parameters configurable
204 private long initialDelaySec = 5;
205 private long periodSec = 5;
206
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700207 @Activate
208 public void activate() {
HIGUCHI Yuta060da9a2016-03-11 19:16:35 -0800209 executor = newCachedThreadPool(groupedThreads("onos/device", "fg-%d", log));
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800210
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800211 backgroundExecutor =
HIGUCHI Yuta060da9a2016-03-11 19:16:35 -0800212 newSingleThreadScheduledExecutor(minPriority(groupedThreads("onos/device", "bg-%d", log)));
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -0700213
Jonathan Hart46ab5cc2016-09-15 15:42:39 -0700214 addSubscriber(DEVICE_UPDATE, this::handleDeviceEvent);
215 addSubscriber(DEVICE_OFFLINE, this::handleDeviceOfflineEvent);
216 addSubscriber(DEVICE_REMOVE_REQ, this::handleRemoveRequest);
217 addSubscriber(DEVICE_REMOVED, this::handleDeviceRemovedEvent);
218 addSubscriber(PORT_UPDATE, this::handlePortEvent);
219 addSubscriber(PORT_STATUS_UPDATE, this::handlePortStatusEvent);
220 addSubscriber(DEVICE_ADVERTISE, this::handleDeviceAdvertisement);
221 addSubscriber(DEVICE_INJECTED, this::handleDeviceInjectedEvent);
222 addSubscriber(PORT_INJECTED, this::handlePortInjectedEvent);
Madan Jampani2af244a2015-02-22 13:12:01 -0800223
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -0700224 // start anti-entropy thread
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800225 backgroundExecutor.scheduleAtFixedRate(new SendAdvertisementTask(),
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700226 initialDelaySec, periodSec, TimeUnit.SECONDS);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -0700227
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700228 // Create a distributed map for port stats.
229 KryoNamespace.Builder deviceDataSerializer = KryoNamespace.newBuilder()
230 .register(KryoNamespaces.API)
HIGUCHI Yuta03666a32016-05-18 11:49:09 -0700231 .nextId(KryoNamespaces.BEGIN_USER_CUSTOM_ID)
232 .register(MultiValuedTimestamp.class);
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700233
234 devicePortStats = storageService.<DeviceId, Map<PortNumber, PortStatistics>>eventuallyConsistentMapBuilder()
235 .withName("port-stats")
236 .withSerializer(deviceDataSerializer)
237 .withAntiEntropyPeriod(5, TimeUnit.SECONDS)
Madan Jampanibcf1a482015-06-24 19:05:56 -0700238 .withTimestampProvider((k, v) -> new WallClockTimestamp())
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700239 .withTombstonesDisabled()
240 .build();
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200241 devicePortDeltaStats = storageService.<DeviceId, Map<PortNumber, PortStatistics>>
242 eventuallyConsistentMapBuilder()
243 .withName("port-stats-delta")
244 .withSerializer(deviceDataSerializer)
245 .withAntiEntropyPeriod(5, TimeUnit.SECONDS)
246 .withTimestampProvider((k, v) -> new WallClockTimestamp())
247 .withTombstonesDisabled()
248 .build();
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700249 devicePortStats.addListener(portStatsListener);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700250 log.info("Started");
251 }
252
Jonathan Hart46ab5cc2016-09-15 15:42:39 -0700253 private <M> void addSubscriber(MessageSubject subject, Consumer<M> handler) {
254 clusterCommunicator.addSubscriber(subject, SERIALIZER::decode, handler, executor);
255 }
256
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700257 @Deactivate
258 public void deactivate() {
Frank Wange0eb5ce2016-07-01 18:21:25 +0800259 devicePortStats.removeListener(portStatsListener);
Madan Jampani632f16b2015-08-11 12:42:59 -0700260 devicePortStats.destroy();
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200261 devicePortDeltaStats.destroy();
Yuta HIGUCHI80d56592014-11-25 15:11:13 -0800262 executor.shutdownNow();
263
Yuta HIGUCHI06586272014-11-25 14:27:03 -0800264 backgroundExecutor.shutdownNow();
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -0700265 try {
Yuta HIGUCHIc5783592014-12-05 11:13:29 -0800266 if (!backgroundExecutor.awaitTermination(5, TimeUnit.SECONDS)) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -0700267 log.error("Timeout during executor shutdown");
268 }
269 } catch (InterruptedException e) {
270 log.error("Error during executor shutdown", e);
271 }
272
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700273 deviceDescs.clear();
274 devices.clear();
275 devicePorts.clear();
276 availableDevices.clear();
Jonathan Hart46ab5cc2016-09-15 15:42:39 -0700277 clusterCommunicator.removeSubscriber(DEVICE_UPDATE);
278 clusterCommunicator.removeSubscriber(DEVICE_OFFLINE);
279 clusterCommunicator.removeSubscriber(DEVICE_REMOVE_REQ);
280 clusterCommunicator.removeSubscriber(DEVICE_REMOVED);
281 clusterCommunicator.removeSubscriber(PORT_UPDATE);
282 clusterCommunicator.removeSubscriber(PORT_STATUS_UPDATE);
283 clusterCommunicator.removeSubscriber(DEVICE_ADVERTISE);
284 clusterCommunicator.removeSubscriber(DEVICE_INJECTED);
285 clusterCommunicator.removeSubscriber(PORT_INJECTED);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700286 log.info("Stopped");
287 }
288
289 @Override
290 public int getDeviceCount() {
291 return devices.size();
292 }
293
294 @Override
295 public Iterable<Device> getDevices() {
296 return Collections.unmodifiableCollection(devices.values());
297 }
298
299 @Override
Yuta HIGUCHIf1f2ac02014-11-26 14:02:22 -0800300 public Iterable<Device> getAvailableDevices() {
301 return FluentIterable.from(getDevices())
Sho SHIMIZU06a6c9f2015-06-12 14:49:06 -0700302 .filter(input -> isAvailable(input.id()));
Yuta HIGUCHIf1f2ac02014-11-26 14:02:22 -0800303 }
304
305 @Override
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700306 public Device getDevice(DeviceId deviceId) {
307 return devices.get(deviceId);
308 }
309
310 @Override
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700311 public synchronized DeviceEvent createOrUpdateDevice(ProviderId providerId,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700312 DeviceId deviceId,
313 DeviceDescription deviceDescription) {
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800314 NodeId localNode = clusterService.getLocalNode().id();
315 NodeId deviceNode = mastershipService.getMasterFor(deviceId);
316
317 // Process device update only if we're the master,
318 // otherwise signal the actual master.
319 DeviceEvent deviceEvent = null;
320 if (localNode.equals(deviceNode)) {
321
322 final Timestamp newTimestamp = deviceClockService.getTimestamp(deviceId);
323 final Timestamped<DeviceDescription> deltaDesc = new Timestamped<>(deviceDescription, newTimestamp);
324 final Timestamped<DeviceDescription> mergedDesc;
325 final Map<ProviderId, DeviceDescriptions> device = getOrCreateDeviceDescriptionsMap(deviceId);
326
327 synchronized (device) {
328 deviceEvent = createOrUpdateDeviceInternal(providerId, deviceId, deltaDesc);
329 mergedDesc = device.get(providerId).getDeviceDesc();
330 }
331
332 if (deviceEvent != null) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700333 log.debug("Notifying peers of a device update topology event for providerId: {} and deviceId: {}",
helenyrwufd296b62016-06-22 17:43:02 -0700334 providerId, deviceId);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800335 notifyPeers(new InternalDeviceEvent(providerId, deviceId, mergedDesc));
336 }
337
338 } else {
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800339 // Only forward for ConfigProvider
340 // Forwarding was added as a workaround for ONOS-490
Jon Halla3fcf672017-03-28 16:53:22 -0700341 if (!"cfg".equals(providerId.scheme())) {
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800342 return null;
343 }
HIGUCHI Yutadc2e7c22015-02-24 12:19:47 -0800344 // FIXME Temporary hack for NPE (ONOS-1171).
345 // Proper fix is to implement forwarding to master on ConfigProvider
346 // redo ONOS-490
347 if (deviceNode == null) {
348 // silently ignore
349 return null;
350 }
351
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800352
353 DeviceInjectedEvent deviceInjectedEvent = new DeviceInjectedEvent(
354 providerId, deviceId, deviceDescription);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800355
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800356 // TODO check unicast return value
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700357 clusterCommunicator.unicast(deviceInjectedEvent, DEVICE_INJECTED, SERIALIZER::encode, deviceNode);
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800358 /* error log:
359 log.warn("Failed to process injected device id: {} desc: {} " +
360 "(cluster messaging failed: {})",
361 deviceId, deviceDescription, e);
362 */
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700363 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800364
365 return deviceEvent;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700366 }
367
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700368 private DeviceEvent createOrUpdateDeviceInternal(ProviderId providerId,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700369 DeviceId deviceId,
370 Timestamped<DeviceDescription> deltaDesc) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700371
372 // Collection of DeviceDescriptions for a Device
Yuta HIGUCHI04c6b3f2014-11-07 14:47:01 -0800373 Map<ProviderId, DeviceDescriptions> device
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700374 = getOrCreateDeviceDescriptionsMap(deviceId);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700375
Yuta HIGUCHI04c6b3f2014-11-07 14:47:01 -0800376 synchronized (device) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700377 // locking per device
378
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700379 if (isDeviceRemoved(deviceId, deltaDesc.timestamp())) {
380 log.debug("Ignoring outdated event: {}", deltaDesc);
381 return null;
382 }
383
Yuta HIGUCHI04c6b3f2014-11-07 14:47:01 -0800384 DeviceDescriptions descs = getOrCreateProviderDeviceDescriptions(device, providerId, deltaDesc);
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700385
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700386 final Device oldDevice = devices.get(deviceId);
387 final Device newDevice;
388
389 if (deltaDesc == descs.getDeviceDesc() ||
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700390 deltaDesc.isNewer(descs.getDeviceDesc())) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700391 // on new device or valid update
392 descs.putDeviceDesc(deltaDesc);
Yuta HIGUCHI04c6b3f2014-11-07 14:47:01 -0800393 newDevice = composeDevice(deviceId, device);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700394 } else {
395 // outdated event, ignored.
396 return null;
397 }
398 if (oldDevice == null) {
helenyrwufd296b62016-06-22 17:43:02 -0700399 // REGISTER
400 if (!deltaDesc.value().isDefaultAvailable()) {
Jordan Halterman5b78dc82017-04-19 07:55:48 -0700401 return registerDevice(providerId, newDevice, deltaDesc.timestamp());
helenyrwufd296b62016-06-22 17:43:02 -0700402 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700403 // ADD
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700404 return createDevice(providerId, newDevice, deltaDesc.timestamp());
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700405 } else {
406 // UPDATE or ignore (no change or stale)
helenyrwufd296b62016-06-22 17:43:02 -0700407 return updateDevice(providerId, oldDevice, newDevice, deltaDesc.timestamp(),
408 deltaDesc.value().isDefaultAvailable());
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700409 }
410 }
411 }
412
413 // Creates the device and returns the appropriate event if necessary.
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700414 // Guarded by deviceDescs value (=Device lock)
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700415 private DeviceEvent createDevice(ProviderId providerId,
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700416 Device newDevice, Timestamp timestamp) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700417
418 // update composed device cache
419 Device oldDevice = devices.putIfAbsent(newDevice.id(), newDevice);
420 verify(oldDevice == null,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700421 "Unexpected Device in cache. PID:%s [old=%s, new=%s]",
422 providerId, oldDevice, newDevice);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700423
424 if (!providerId.isAncillary()) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700425 markOnline(newDevice.id(), timestamp);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700426 }
427
428 return new DeviceEvent(DeviceEvent.Type.DEVICE_ADDED, newDevice, null);
429 }
430
431 // Updates the device and returns the appropriate event if necessary.
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700432 // Guarded by deviceDescs value (=Device lock)
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700433 private DeviceEvent updateDevice(ProviderId providerId,
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700434 Device oldDevice,
helenyrwufd296b62016-06-22 17:43:02 -0700435 Device newDevice, Timestamp newTimestamp,
436 boolean forceAvailable) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700437 // We allow only certain attributes to trigger update
Thomas Vachuska56dbeb12014-10-22 16:40:44 -0700438 boolean propertiesChanged =
439 !Objects.equals(oldDevice.hwVersion(), newDevice.hwVersion()) ||
Thomas Vachuskadaaa42d2015-04-21 16:21:37 -0700440 !Objects.equals(oldDevice.swVersion(), newDevice.swVersion()) ||
441 !Objects.equals(oldDevice.providerId(), newDevice.providerId());
Thomas Vachuska56dbeb12014-10-22 16:40:44 -0700442 boolean annotationsChanged =
443 !AnnotationsUtil.isEqual(oldDevice.annotations(), newDevice.annotations());
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700444
Thomas Vachuska56dbeb12014-10-22 16:40:44 -0700445 // Primary providers can respond to all changes, but ancillary ones
446 // should respond only to annotation changes.
alshabibdc5d8bd2015-11-02 15:41:29 -0800447 DeviceEvent event = null;
Thomas Vachuska56dbeb12014-10-22 16:40:44 -0700448 if ((providerId.isAncillary() && annotationsChanged) ||
449 (!providerId.isAncillary() && (propertiesChanged || annotationsChanged))) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700450 boolean replaced = devices.replace(newDevice.id(), oldDevice, newDevice);
451 if (!replaced) {
452 verify(replaced,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700453 "Replacing devices cache failed. PID:%s [expected:%s, found:%s, new=%s]",
Jian Li68c4fc42016-01-11 16:07:03 -0800454 providerId, oldDevice, devices.get(newDevice.id()), newDevice);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700455 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700456
alshabibdc5d8bd2015-11-02 15:41:29 -0800457 event = new DeviceEvent(DeviceEvent.Type.DEVICE_UPDATED, newDevice, null);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700458 }
alshabibdc5d8bd2015-11-02 15:41:29 -0800459
helenyrwufd296b62016-06-22 17:43:02 -0700460 if (!providerId.isAncillary() && forceAvailable) {
alshabibdc5d8bd2015-11-02 15:41:29 -0800461 boolean wasOnline = availableDevices.contains(newDevice.id());
462 markOnline(newDevice.id(), newTimestamp);
463 if (!wasOnline) {
464 notifyDelegateIfNotNull(new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, newDevice, null));
465 }
466 }
467 return event;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700468 }
469
Jordan Halterman5b78dc82017-04-19 07:55:48 -0700470 private DeviceEvent registerDevice(ProviderId providerId, Device newDevice, Timestamp newTimestamp) {
helenyrwufd296b62016-06-22 17:43:02 -0700471 // update composed device cache
472 Device oldDevice = devices.putIfAbsent(newDevice.id(), newDevice);
473 verify(oldDevice == null,
474 "Unexpected Device in cache. PID:%s [old=%s, new=%s]",
475 providerId, oldDevice, newDevice);
476
477 if (!providerId.isAncillary()) {
Jordan Halterman5b78dc82017-04-19 07:55:48 -0700478 markOffline(newDevice.id(), newTimestamp);
helenyrwufd296b62016-06-22 17:43:02 -0700479 }
480
481 return new DeviceEvent(DeviceEvent.Type.DEVICE_ADDED, newDevice, null);
482 }
483
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700484 @Override
485 public DeviceEvent markOffline(DeviceId deviceId) {
Jordan Halterman5b78dc82017-04-19 07:55:48 -0700486 return markOffline(deviceId, deviceClockService.getTimestamp(deviceId));
487 }
488
489 private DeviceEvent markOffline(DeviceId deviceId, Timestamp timestamp) {
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700490 final DeviceEvent event = markOfflineInternal(deviceId, timestamp);
Madan Jampani25322532014-10-08 11:20:38 -0700491 if (event != null) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700492 log.debug("Notifying peers of a device offline topology event for deviceId: {} {}",
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700493 deviceId, timestamp);
Jonathan Hart7d656f42015-01-27 14:07:23 -0800494 notifyPeers(new InternalDeviceOfflineEvent(deviceId, timestamp));
Madan Jampani25322532014-10-08 11:20:38 -0700495 }
496 return event;
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700497 }
498
499 private DeviceEvent markOfflineInternal(DeviceId deviceId, Timestamp timestamp) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700500 Map<ProviderId, DeviceDescriptions> providerDescs
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700501 = getOrCreateDeviceDescriptionsMap(deviceId);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700502
503 // locking device
504 synchronized (providerDescs) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700505 // accept off-line if given timestamp is newer than
506 // the latest Timestamp from Primary provider
507 DeviceDescriptions primDescs = getPrimaryDescriptions(providerDescs);
Thomas Vachuska4bd10b92016-12-15 10:13:38 -0800508 if (primDescs == null) {
509 return null;
510 }
511
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700512 Timestamp lastTimestamp = primDescs.getLatestTimestamp();
513 if (timestamp.compareTo(lastTimestamp) <= 0) {
514 // outdated event ignore
515 return null;
516 }
517
518 offline.put(deviceId, timestamp);
519
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700520 Device device = devices.get(deviceId);
521 if (device == null) {
522 return null;
523 }
524 boolean removed = availableDevices.remove(deviceId);
525 if (removed) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700526 return new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, device, null);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700527 }
528 return null;
529 }
530 }
531
Yuta HIGUCHIc2e68152016-08-16 13:47:36 -0700532 @Override
helenyrwufd296b62016-06-22 17:43:02 -0700533 public boolean markOnline(DeviceId deviceId) {
534 if (devices.containsKey(deviceId)) {
535 final Timestamp timestamp = deviceClockService.getTimestamp(deviceId);
536 Map<?, ?> deviceLock = getOrCreateDeviceDescriptionsMap(deviceId);
537 synchronized (deviceLock) {
538 if (markOnline(deviceId, timestamp)) {
539 notifyDelegate(new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, getDevice(deviceId), null));
540 return true;
541 } else {
542 return false;
543 }
544 }
545 }
546 log.warn("Device {} does not exist in store", deviceId);
547 return false;
548
549 }
550
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700551 /**
552 * Marks the device as available if the given timestamp is not outdated,
553 * compared to the time the device has been marked offline.
554 *
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700555 * @param deviceId identifier of the device
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700556 * @param timestamp of the event triggering this change.
557 * @return true if availability change request was accepted and changed the state
558 */
559 // Guarded by deviceDescs value (=Device lock)
560 private boolean markOnline(DeviceId deviceId, Timestamp timestamp) {
561 // accept on-line if given timestamp is newer than
562 // the latest offline request Timestamp
563 Timestamp offlineTimestamp = offline.get(deviceId);
564 if (offlineTimestamp == null ||
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700565 offlineTimestamp.compareTo(timestamp) < 0) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700566
567 offline.remove(deviceId);
568 return availableDevices.add(deviceId);
569 }
570 return false;
571 }
572
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700573 @Override
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700574 public synchronized List<DeviceEvent> updatePorts(ProviderId providerId,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700575 DeviceId deviceId,
576 List<PortDescription> portDescriptions) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700577
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800578 NodeId localNode = clusterService.getLocalNode().id();
579 // TODO: It might be negligible, but this will have negative impact to topology discovery performance,
580 // since it will trigger distributed store read.
581 // Also, it'll probably be better if side-way communication happened on ConfigurationProvider, etc.
582 // outside Device subsystem. so that we don't have to modify both Device and Link stores.
583 // If we don't care much about topology performance, then it might be OK.
584 NodeId deviceNode = mastershipService.getMasterFor(deviceId);
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700585
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800586 // Process port update only if we're the master of the device,
587 // otherwise signal the actual master.
588 List<DeviceEvent> deviceEvents = null;
589 if (localNode.equals(deviceNode)) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700590
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800591 final Timestamp newTimestamp;
592 try {
593 newTimestamp = deviceClockService.getTimestamp(deviceId);
594 } catch (IllegalStateException e) {
595 log.info("Timestamp was not available for device {}", deviceId);
596 log.debug(" discarding {}", portDescriptions);
597 // Failed to generate timestamp.
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700598
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800599 // Possible situation:
600 // Device connected and became master for short period of time,
601 // but lost mastership before this instance had the chance to
602 // retrieve term information.
603
604 // Information dropped here is expected to be recoverable by
605 // device probing after mastership change
606
607 return Collections.emptyList();
608 }
609 log.debug("timestamp for {} {}", deviceId, newTimestamp);
610
611 final Timestamped<List<PortDescription>> timestampedInput
612 = new Timestamped<>(portDescriptions, newTimestamp);
613 final Timestamped<List<PortDescription>> merged;
614
615 final Map<ProviderId, DeviceDescriptions> device = getOrCreateDeviceDescriptionsMap(deviceId);
616
617 synchronized (device) {
618 deviceEvents = updatePortsInternal(providerId, deviceId, timestampedInput);
619 final DeviceDescriptions descs = device.get(providerId);
620 List<PortDescription> mergedList =
621 FluentIterable.from(portDescriptions)
Sho SHIMIZU74626412015-09-11 11:46:27 -0700622 .transform(input ->
623 // lookup merged port description
624 descs.getPortDesc(input.portNumber()).value()
625 ).toList();
Sho SHIMIZUa0fda212015-06-10 19:15:38 -0700626 merged = new Timestamped<>(mergedList, newTimestamp);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800627 }
628
629 if (!deviceEvents.isEmpty()) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700630 log.debug("Notifying peers of a ports update topology event for providerId: {} and deviceId: {}",
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700631 providerId, deviceId);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800632 notifyPeers(new InternalPortEvent(providerId, deviceId, merged));
633 }
634
635 } else {
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800636 // Only forward for ConfigProvider
637 // Forwarding was added as a workaround for ONOS-490
Jon Halla3fcf672017-03-28 16:53:22 -0700638 if (!"cfg".equals(providerId.scheme())) {
HIGUCHI Yuta89461772016-01-26 12:18:10 -0800639 return Collections.emptyList();
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800640 }
HIGUCHI Yutadc2e7c22015-02-24 12:19:47 -0800641 // FIXME Temporary hack for NPE (ONOS-1171).
642 // Proper fix is to implement forwarding to master on ConfigProvider
643 // redo ONOS-490
644 if (deviceNode == null) {
645 // silently ignore
Ayaka Koshibeeeb95102015-02-26 16:31:49 -0800646 return Collections.emptyList();
HIGUCHI Yutadc2e7c22015-02-24 12:19:47 -0800647 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800648
649 PortInjectedEvent portInjectedEvent = new PortInjectedEvent(providerId, deviceId, portDescriptions);
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800650
651 //TODO check unicast return value
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700652 clusterCommunicator.unicast(portInjectedEvent, PORT_INJECTED, SERIALIZER::encode, deviceNode);
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800653 /* error log:
654 log.warn("Failed to process injected ports of device id: {} " +
655 "(cluster messaging failed: {})",
656 deviceId, e);
657 */
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700658 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700659
Ayaka Koshibeeeb95102015-02-26 16:31:49 -0800660 return deviceEvents == null ? Collections.emptyList() : deviceEvents;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700661 }
662
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700663 private List<DeviceEvent> updatePortsInternal(ProviderId providerId,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700664 DeviceId deviceId,
665 Timestamped<List<PortDescription>> portDescriptions) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700666
667 Device device = devices.get(deviceId);
Ray Milkey9ef22232016-07-14 12:42:37 -0700668 if (device == null) {
669 log.debug("Device is no longer valid: {}", deviceId);
670 return Collections.emptyList();
671 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700672
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700673 Map<ProviderId, DeviceDescriptions> descsMap = deviceDescs.get(deviceId);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700674 checkArgument(descsMap != null, DEVICE_NOT_FOUND, deviceId);
675
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700676 List<DeviceEvent> events = new ArrayList<>();
677 synchronized (descsMap) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700678
679 if (isDeviceRemoved(deviceId, portDescriptions.timestamp())) {
680 log.debug("Ignoring outdated events: {}", portDescriptions);
Sho SHIMIZU7b7eabc2015-06-10 20:30:19 -0700681 return Collections.emptyList();
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700682 }
683
684 DeviceDescriptions descs = descsMap.get(providerId);
685 // every provider must provide DeviceDescription.
686 checkArgument(descs != null,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700687 "Device description for Device ID %s from Provider %s was not found",
688 deviceId, providerId);
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700689
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700690 Map<PortNumber, Port> ports = getPortMap(deviceId);
691
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700692 final Timestamp newTimestamp = portDescriptions.timestamp();
693
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700694 // Add new ports
695 Set<PortNumber> processed = new HashSet<>();
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700696 for (PortDescription portDescription : portDescriptions.value()) {
697 final PortNumber number = portDescription.portNumber();
698 processed.add(number);
699
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700700 final Port oldPort = ports.get(number);
701 final Port newPort;
702
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700703
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700704 final Timestamped<PortDescription> existingPortDesc = descs.getPortDesc(number);
705 if (existingPortDesc == null ||
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700706 newTimestamp.compareTo(existingPortDesc.timestamp()) >= 0) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700707 // on new port or valid update
708 // update description
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700709 descs.putPortDesc(new Timestamped<>(portDescription,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700710 portDescriptions.timestamp()));
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700711 newPort = composePort(device, number, descsMap);
712 } else {
713 // outdated event, ignored.
714 continue;
715 }
716
717 events.add(oldPort == null ?
718 createPort(device, newPort, ports) :
719 updatePort(device, oldPort, newPort, ports));
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700720 }
721
722 events.addAll(pruneOldPorts(device, ports, processed));
723 }
724 return FluentIterable.from(events).filter(notNull()).toList();
725 }
726
727 // Creates a new port based on the port description adds it to the map and
728 // Returns corresponding event.
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700729 // Guarded by deviceDescs value (=Device lock)
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700730 private DeviceEvent createPort(Device device, Port newPort,
731 Map<PortNumber, Port> ports) {
732 ports.put(newPort.number(), newPort);
733 return new DeviceEvent(PORT_ADDED, device, newPort);
734 }
735
736 // Checks if the specified port requires update and if so, it replaces the
737 // existing entry in the map and returns corresponding event.
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700738 // Guarded by deviceDescs value (=Device lock)
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700739 private DeviceEvent updatePort(Device device, Port oldPort,
740 Port newPort,
741 Map<PortNumber, Port> ports) {
Michal Machce774332017-01-25 11:02:55 +0100742
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700743 if (oldPort.isEnabled() != newPort.isEnabled() ||
Thomas Vachuskad16ce182014-10-29 17:25:29 -0700744 oldPort.type() != newPort.type() ||
745 oldPort.portSpeed() != newPort.portSpeed() ||
746 !AnnotationsUtil.isEqual(oldPort.annotations(), newPort.annotations())) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700747 ports.put(oldPort.number(), newPort);
748 return new DeviceEvent(PORT_UPDATED, device, newPort);
749 }
750 return null;
751 }
752
Michal Machce774332017-01-25 11:02:55 +0100753 private DeviceEvent removePort(DeviceId deviceId, PortNumber portNumber) {
754
755 log.info("Deleted port: " + deviceId.toString() + "/" + portNumber.toString());
756 Port deletedPort = devicePorts.get(deviceId).remove(portNumber);
757
758 return new DeviceEvent(PORT_REMOVED, getDevice(deviceId), deletedPort);
759 }
760
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700761 // Prunes the specified list of ports based on which ports are in the
762 // processed list and returns list of corresponding events.
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700763 // Guarded by deviceDescs value (=Device lock)
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700764 private List<DeviceEvent> pruneOldPorts(Device device,
765 Map<PortNumber, Port> ports,
766 Set<PortNumber> processed) {
767 List<DeviceEvent> events = new ArrayList<>();
Yuta HIGUCHI02649072014-10-15 23:28:20 -0700768 Iterator<Entry<PortNumber, Port>> iterator = ports.entrySet().iterator();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700769 while (iterator.hasNext()) {
Yuta HIGUCHI02649072014-10-15 23:28:20 -0700770 Entry<PortNumber, Port> e = iterator.next();
771 PortNumber portNumber = e.getKey();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700772 if (!processed.contains(portNumber)) {
Yuta HIGUCHI02649072014-10-15 23:28:20 -0700773 events.add(new DeviceEvent(PORT_REMOVED, device, e.getValue()));
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700774 iterator.remove();
775 }
776 }
777 return events;
778 }
779
780 // Gets the map of ports for the specified device; if one does not already
781 // exist, it creates and registers a new one.
782 private ConcurrentMap<PortNumber, Port> getPortMap(DeviceId deviceId) {
Yuta HIGUCHIc2e68152016-08-16 13:47:36 -0700783 return devicePorts.computeIfAbsent(deviceId, k -> new ConcurrentHashMap<>());
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -0700784 }
785
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700786 private Map<ProviderId, DeviceDescriptions> getOrCreateDeviceDescriptionsMap(
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -0700787 DeviceId deviceId) {
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700788 Map<ProviderId, DeviceDescriptions> r;
789 r = deviceDescs.get(deviceId);
790 if (r == null) {
Sho SHIMIZUa0fda212015-06-10 19:15:38 -0700791 r = new HashMap<>();
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700792 final Map<ProviderId, DeviceDescriptions> concurrentlyAdded;
793 concurrentlyAdded = deviceDescs.putIfAbsent(deviceId, r);
794 if (concurrentlyAdded != null) {
795 r = concurrentlyAdded;
796 }
797 }
798 return r;
799 }
800
801 // Guarded by deviceDescs value (=Device lock)
802 private DeviceDescriptions getOrCreateProviderDeviceDescriptions(
803 Map<ProviderId, DeviceDescriptions> device,
804 ProviderId providerId, Timestamped<DeviceDescription> deltaDesc) {
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700805 synchronized (device) {
806 DeviceDescriptions r = device.get(providerId);
807 if (r == null) {
808 r = new DeviceDescriptions(deltaDesc);
809 device.put(providerId, r);
810 }
811 return r;
812 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700813 }
814
815 @Override
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700816 public synchronized DeviceEvent updatePortStatus(ProviderId providerId,
817 DeviceId deviceId,
818 PortDescription portDescription) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700819 final Timestamp newTimestamp;
820 try {
821 newTimestamp = deviceClockService.getTimestamp(deviceId);
822 } catch (IllegalStateException e) {
823 log.info("Timestamp was not available for device {}", deviceId);
824 log.debug(" discarding {}", portDescription);
825 // Failed to generate timestamp. Ignoring.
826 // See updatePorts comment
827 return null;
828 }
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700829 final Timestamped<PortDescription> deltaDesc
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700830 = new Timestamped<>(portDescription, newTimestamp);
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700831 final DeviceEvent event;
832 final Timestamped<PortDescription> mergedDesc;
Yuta HIGUCHI04c6b3f2014-11-07 14:47:01 -0800833 final Map<ProviderId, DeviceDescriptions> device = getOrCreateDeviceDescriptionsMap(deviceId);
834 synchronized (device) {
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700835 event = updatePortStatusInternal(providerId, deviceId, deltaDesc);
Yuta HIGUCHI04c6b3f2014-11-07 14:47:01 -0800836 mergedDesc = device.get(providerId)
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700837 .getPortDesc(portDescription.portNumber());
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700838 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700839 if (event != null) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700840 log.debug("Notifying peers of a port status update topology event for providerId: {} and deviceId: {}",
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700841 providerId, deviceId);
Jonathan Hart7d656f42015-01-27 14:07:23 -0800842 notifyPeers(new InternalPortStatusEvent(providerId, deviceId, mergedDesc));
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700843 }
844 return event;
845 }
846
847 private DeviceEvent updatePortStatusInternal(ProviderId providerId, DeviceId deviceId,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700848 Timestamped<PortDescription> deltaDesc) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700849 Device device = devices.get(deviceId);
850 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
851
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700852 Map<ProviderId, DeviceDescriptions> descsMap = deviceDescs.get(deviceId);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700853 checkArgument(descsMap != null, DEVICE_NOT_FOUND, deviceId);
854
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700855 synchronized (descsMap) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700856
857 if (isDeviceRemoved(deviceId, deltaDesc.timestamp())) {
858 log.debug("Ignoring outdated event: {}", deltaDesc);
859 return null;
860 }
861
862 DeviceDescriptions descs = descsMap.get(providerId);
863 // assuming all providers must to give DeviceDescription
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700864 verify(descs != null,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700865 "Device description for Device ID %s from Provider %s was not found",
866 deviceId, providerId);
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700867
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700868 ConcurrentMap<PortNumber, Port> ports = getPortMap(deviceId);
869 final PortNumber number = deltaDesc.value().portNumber();
870 final Port oldPort = ports.get(number);
871 final Port newPort;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700872 final Timestamped<PortDescription> existingPortDesc = descs.getPortDesc(number);
Michal Machce774332017-01-25 11:02:55 +0100873 boolean toDelete = false;
874
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700875 if (existingPortDesc == null ||
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700876 deltaDesc.isNewer(existingPortDesc)) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700877 // on new port or valid update
878 // update description
879 descs.putPortDesc(deltaDesc);
880 newPort = composePort(device, number, descsMap);
Michal Machce774332017-01-25 11:02:55 +0100881 toDelete = deltaDesc.value().isRemoved();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700882 } else {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -0700883 // same or outdated event, ignored.
884 log.trace("ignore same or outdated {} >= {}", existingPortDesc, deltaDesc);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700885 return null;
886 }
887
888 if (oldPort == null) {
889 return createPort(device, newPort, ports);
890 } else {
Michal Machce774332017-01-25 11:02:55 +0100891 return toDelete ? removePort(deviceId, number) : updatePort(device, oldPort, newPort, ports);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700892 }
893 }
894 }
895
896 @Override
897 public List<Port> getPorts(DeviceId deviceId) {
898 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
899 if (ports == null) {
900 return Collections.emptyList();
901 }
902 return ImmutableList.copyOf(ports.values());
903 }
904
905 @Override
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700906 public Stream<PortDescription> getPortDescriptions(ProviderId pid,
907 DeviceId deviceId) {
908 Map<ProviderId, DeviceDescriptions> descs = this.deviceDescs.get(deviceId);
909 if (descs == null) {
910 return null;
911 }
912 // inner-Map(=descs) is HashMap, thus requires synchronization even for reads
913 final Optional<DeviceDescriptions> devDescs;
914 synchronized (descs) {
915 devDescs = Optional.ofNullable(descs.get(pid));
916 }
917 // DeviceDescriptions is concurrent access-safe
918 return devDescs
919 .map(dd -> dd.getPortDescs().values().stream()
920 .map(Timestamped::value))
921 .orElse(Stream.empty());
922 }
923
924 @Override
sangho538108b2015-04-08 14:29:20 -0700925 public DeviceEvent updatePortStatistics(ProviderId providerId, DeviceId deviceId,
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200926 Collection<PortStatistics> newStatsCollection) {
sangho538108b2015-04-08 14:29:20 -0700927
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200928 Map<PortNumber, PortStatistics> prvStatsMap = devicePortStats.get(deviceId);
929 Map<PortNumber, PortStatistics> newStatsMap = Maps.newHashMap();
930 Map<PortNumber, PortStatistics> deltaStatsMap = Maps.newHashMap();
931
932 if (prvStatsMap != null) {
933 for (PortStatistics newStats : newStatsCollection) {
934 PortNumber port = PortNumber.portNumber(newStats.port());
935 PortStatistics prvStats = prvStatsMap.get(port);
936 DefaultPortStatistics.Builder builder = DefaultPortStatistics.builder();
937 PortStatistics deltaStats = builder.build();
938 if (prvStats != null) {
939 deltaStats = calcDeltaStats(deviceId, prvStats, newStats);
940 }
941 deltaStatsMap.put(port, deltaStats);
942 newStatsMap.put(port, newStats);
943 }
944 } else {
945 for (PortStatistics newStats : newStatsCollection) {
946 PortNumber port = PortNumber.portNumber(newStats.port());
947 newStatsMap.put(port, newStats);
948 }
sangho538108b2015-04-08 14:29:20 -0700949 }
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200950 devicePortDeltaStats.put(deviceId, deltaStatsMap);
951 devicePortStats.put(deviceId, newStatsMap);
Dusan Pajin517e2232015-08-24 16:50:11 +0200952 // DeviceEvent returns null because of InternalPortStatsListener usage
953 return null;
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200954 }
955
956 /**
957 * Calculate delta statistics by subtracting previous from new statistics.
958 *
Madan Jampanif97edc12015-08-31 14:41:01 -0700959 * @param deviceId device identifier
960 * @param prvStats previous port statistics
961 * @param newStats new port statistics
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200962 * @return PortStatistics
963 */
964 public PortStatistics calcDeltaStats(DeviceId deviceId, PortStatistics prvStats, PortStatistics newStats) {
965 // calculate time difference
966 long deltaStatsSec, deltaStatsNano;
967 if (newStats.durationNano() < prvStats.durationNano()) {
968 deltaStatsNano = newStats.durationNano() - prvStats.durationNano() + TimeUnit.SECONDS.toNanos(1);
969 deltaStatsSec = newStats.durationSec() - prvStats.durationSec() - 1L;
970 } else {
971 deltaStatsNano = newStats.durationNano() - prvStats.durationNano();
972 deltaStatsSec = newStats.durationSec() - prvStats.durationSec();
973 }
974 DefaultPortStatistics.Builder builder = DefaultPortStatistics.builder();
975 DefaultPortStatistics deltaStats = builder.setDeviceId(deviceId)
976 .setPort(newStats.port())
977 .setPacketsReceived(newStats.packetsReceived() - prvStats.packetsReceived())
978 .setPacketsSent(newStats.packetsSent() - prvStats.packetsSent())
979 .setBytesReceived(newStats.bytesReceived() - prvStats.bytesReceived())
980 .setBytesSent(newStats.bytesSent() - prvStats.bytesSent())
981 .setPacketsRxDropped(newStats.packetsRxDropped() - prvStats.packetsRxDropped())
982 .setPacketsTxDropped(newStats.packetsTxDropped() - prvStats.packetsTxDropped())
983 .setPacketsRxErrors(newStats.packetsRxErrors() - prvStats.packetsRxErrors())
984 .setPacketsTxErrors(newStats.packetsTxErrors() - prvStats.packetsTxErrors())
985 .setDurationSec(deltaStatsSec)
986 .setDurationNano(deltaStatsNano)
987 .build();
988 return deltaStats;
sangho538108b2015-04-08 14:29:20 -0700989 }
990
991 @Override
992 public List<PortStatistics> getPortStatistics(DeviceId deviceId) {
sangho538108b2015-04-08 14:29:20 -0700993 Map<PortNumber, PortStatistics> portStats = devicePortStats.get(deviceId);
994 if (portStats == null) {
995 return Collections.emptyList();
996 }
997 return ImmutableList.copyOf(portStats.values());
998 }
999
1000 @Override
Viswanath KSP22774cd2016-08-20 20:06:30 +05301001 public PortStatistics getStatisticsForPort(DeviceId deviceId, PortNumber portNumber) {
1002 Map<PortNumber, PortStatistics> portStatsMap = devicePortStats.get(deviceId);
1003 if (portStatsMap == null) {
1004 return null;
1005 }
1006 PortStatistics portStats = portStatsMap.get(portNumber);
1007 return portStats;
1008 }
1009
1010 @Override
Dusan Pajin11ff4a82015-08-20 18:03:05 +02001011 public List<PortStatistics> getPortDeltaStatistics(DeviceId deviceId) {
1012 Map<PortNumber, PortStatistics> portStats = devicePortDeltaStats.get(deviceId);
1013 if (portStats == null) {
1014 return Collections.emptyList();
1015 }
1016 return ImmutableList.copyOf(portStats.values());
1017 }
1018
1019 @Override
Viswanath KSP22774cd2016-08-20 20:06:30 +05301020 public PortStatistics getDeltaStatisticsForPort(DeviceId deviceId, PortNumber portNumber) {
1021 Map<PortNumber, PortStatistics> portStatsMap = devicePortDeltaStats.get(deviceId);
1022 if (portStatsMap == null) {
1023 return null;
1024 }
1025 PortStatistics portStats = portStatsMap.get(portNumber);
1026 return portStats;
1027 }
1028
1029 @Override
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001030 public Port getPort(DeviceId deviceId, PortNumber portNumber) {
1031 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
1032 return ports == null ? null : ports.get(portNumber);
1033 }
1034
1035 @Override
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -07001036 public PortDescription getPortDescription(ProviderId pid,
1037 DeviceId deviceId,
1038 PortNumber portNumber) {
1039 Map<ProviderId, DeviceDescriptions> descs = this.deviceDescs.get(deviceId);
1040 if (descs == null) {
1041 return null;
1042 }
1043 // inner-Map(=descs) is HashMap, thus requires synchronization even for reads
1044 final Optional<DeviceDescriptions> devDescs;
1045 synchronized (descs) {
1046 devDescs = Optional.ofNullable(descs.get(pid));
1047 }
1048 // DeviceDescriptions is concurrent access-safe
1049 return devDescs
1050 .map(deviceDescriptions -> deviceDescriptions.getPortDesc(portNumber))
1051 .map(Timestamped::value)
1052 .orElse(null);
1053 }
1054
1055 @Override
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001056 public boolean isAvailable(DeviceId deviceId) {
1057 return availableDevices.contains(deviceId);
1058 }
1059
1060 @Override
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001061 public synchronized DeviceEvent removeDevice(DeviceId deviceId) {
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001062 final NodeId myId = clusterService.getLocalNode().id();
1063 NodeId master = mastershipService.getMasterFor(deviceId);
1064
1065 // if there exist a master, forward
1066 // if there is no master, try to become one and process
1067
1068 boolean relinquishAtEnd = false;
1069 if (master == null) {
1070 final MastershipRole myRole = mastershipService.getLocalRole(deviceId);
1071 if (myRole != MastershipRole.NONE) {
1072 relinquishAtEnd = true;
1073 }
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001074 log.debug("Temporarily requesting role for {} to remove", deviceId);
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001075 mastershipService.requestRoleFor(deviceId);
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001076 MastershipTerm term = termService.getMastershipTerm(deviceId);
Madan Jampani7cdf3f12015-05-12 23:18:05 -07001077 if (term != null && myId.equals(term.master())) {
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001078 master = myId;
1079 }
Yuta HIGUCHIe8252bb2014-10-22 09:41:01 -07001080 }
1081
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001082 if (!myId.equals(master)) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001083 log.debug("{} has control of {}, forwarding remove request",
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001084 master, deviceId);
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001085
Brian O'Connor5eb77c82015-03-02 18:09:39 -08001086 // TODO check unicast return value
Madan Jampani2bfa94c2015-04-11 05:03:49 -07001087 clusterCommunicator.unicast(deviceId, DEVICE_REMOVE_REQ, SERIALIZER::encode, master);
Brian O'Connor5eb77c82015-03-02 18:09:39 -08001088 /* error log:
1089 log.error("Failed to forward {} remove request to {}", deviceId, master, e);
1090 */
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001091
Brian O'Connor5eb77c82015-03-02 18:09:39 -08001092 // event will be triggered after master processes it.
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001093 return null;
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001094 }
1095
1096 // I have control..
1097
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -07001098 Timestamp timestamp = deviceClockService.getTimestamp(deviceId);
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001099 DeviceEvent event = removeDeviceInternal(deviceId, timestamp);
Madan Jampani3fc72ed2014-10-08 12:50:27 -07001100 if (event != null) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001101 log.debug("Notifying peers of a device removed topology event for deviceId: {}",
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001102 deviceId);
Jonathan Hart7d656f42015-01-27 14:07:23 -08001103 notifyPeers(new InternalDeviceRemovedEvent(deviceId, timestamp));
Madan Jampani3fc72ed2014-10-08 12:50:27 -07001104 }
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001105 if (relinquishAtEnd) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001106 log.debug("Relinquishing temporary role acquired for {}", deviceId);
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001107 mastershipService.relinquishMastership(deviceId);
1108 }
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001109 return event;
1110 }
1111
1112 private DeviceEvent removeDeviceInternal(DeviceId deviceId,
1113 Timestamp timestamp) {
1114
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001115 Map<ProviderId, DeviceDescriptions> descs = getOrCreateDeviceDescriptionsMap(deviceId);
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -07001116 synchronized (descs) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001117 // accept removal request if given timestamp is newer than
1118 // the latest Timestamp from Primary provider
1119 DeviceDescriptions primDescs = getPrimaryDescriptions(descs);
Thomas Vachuska710293f2015-11-13 12:29:31 -08001120 if (primDescs == null) {
1121 return null;
1122 }
1123
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001124 Timestamp lastTimestamp = primDescs.getLatestTimestamp();
1125 if (timestamp.compareTo(lastTimestamp) <= 0) {
1126 // outdated event ignore
1127 return null;
1128 }
1129 removalRequest.put(deviceId, timestamp);
1130
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -07001131 Device device = devices.remove(deviceId);
1132 // should DEVICE_REMOVED carry removed ports?
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001133 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
1134 if (ports != null) {
1135 ports.clear();
1136 }
1137 markOfflineInternal(deviceId, timestamp);
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -07001138 descs.clear();
1139 return device == null ? null :
Dusan Pajin11ff4a82015-08-20 18:03:05 +02001140 new DeviceEvent(DeviceEvent.Type.DEVICE_REMOVED, device, null);
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -07001141 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001142 }
1143
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001144 /**
1145 * Checks if given timestamp is superseded by removal request
1146 * with more recent timestamp.
1147 *
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001148 * @param deviceId identifier of a device
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001149 * @param timestampToCheck timestamp of an event to check
1150 * @return true if device is already removed
1151 */
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001152 private boolean isDeviceRemoved(DeviceId deviceId, Timestamp timestampToCheck) {
1153 Timestamp removalTimestamp = removalRequest.get(deviceId);
1154 if (removalTimestamp != null &&
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001155 removalTimestamp.compareTo(timestampToCheck) >= 0) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001156 // removalRequest is more recent
1157 return true;
1158 }
1159 return false;
1160 }
1161
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001162 /**
1163 * Returns a Device, merging description given from multiple Providers.
1164 *
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001165 * @param deviceId device identifier
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001166 * @param providerDescs Collection of Descriptions from multiple providers
1167 * @return Device instance
1168 */
1169 private Device composeDevice(DeviceId deviceId,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001170 Map<ProviderId, DeviceDescriptions> providerDescs) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001171
Thomas Vachuska444eda62014-10-28 13:09:42 -07001172 checkArgument(!providerDescs.isEmpty(), "No device descriptions supplied");
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001173
Jonathan Hartd9df7bd2015-11-10 17:10:25 -08001174 ProviderId primary = pickPrimaryPid(providerDescs);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001175
1176 DeviceDescriptions desc = providerDescs.get(primary);
1177
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001178 final DeviceDescription base = desc.getDeviceDesc().value();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001179 Type type = base.type();
1180 String manufacturer = base.manufacturer();
1181 String hwVersion = base.hwVersion();
1182 String swVersion = base.swVersion();
1183 String serialNumber = base.serialNumber();
alshabib7911a052014-10-16 17:49:37 -07001184 ChassisId chassisId = base.chassisId();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001185 DefaultAnnotations annotations = DefaultAnnotations.builder().build();
1186 annotations = merge(annotations, base.annotations());
1187
1188 for (Entry<ProviderId, DeviceDescriptions> e : providerDescs.entrySet()) {
1189 if (e.getKey().equals(primary)) {
1190 continue;
1191 }
Yuta HIGUCHI65934892014-12-04 17:47:44 -08001192 // Note: should keep track of Description timestamp in the future
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001193 // and only merge conflicting keys when timestamp is newer.
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001194 // Currently assuming there will never be a key conflict between
1195 // providers
1196
1197 // annotation merging. not so efficient, should revisit later
1198 annotations = merge(annotations, e.getValue().getDeviceDesc().value().annotations());
1199 }
1200
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001201 return new DefaultDevice(primary, deviceId, type, manufacturer,
1202 hwVersion, swVersion, serialNumber,
1203 chassisId, annotations);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001204 }
1205
Marc De Leenheer88194c32015-05-29 22:10:59 -07001206 private Port buildTypedPort(Device device, PortNumber number, boolean isEnabled,
1207 PortDescription description, Annotations annotations) {
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -08001208 // FIXME this switch need to go away once all ports are done.
Marc De Leenheer88194c32015-05-29 22:10:59 -07001209 switch (description.type()) {
1210 case OMS:
HIGUCHI Yuta95d83e82016-04-26 12:13:48 -07001211 if (description instanceof OmsPortDescription) {
1212 // remove if-block once deprecation is complete
1213 OmsPortDescription omsDesc = (OmsPortDescription) description;
1214 return new OmsPort(device, number, isEnabled, omsDesc.minFrequency(),
1215 omsDesc.maxFrequency(), omsDesc.grid(), annotations);
1216 }
1217 // same as default
1218 return new DefaultPort(device, number, isEnabled, description.type(),
1219 description.portSpeed(), annotations);
Marc De Leenheer88194c32015-05-29 22:10:59 -07001220 case OCH:
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -08001221 if (description instanceof OchPortDescription) {
1222 // remove if-block once Och deprecation is complete
1223 OchPortDescription ochDesc = (OchPortDescription) description;
1224 return new OchPort(device, number, isEnabled, ochDesc.signalType(),
1225 ochDesc.isTunable(), ochDesc.lambda(), annotations);
1226 }
1227 return new DefaultPort(device, number, isEnabled, description.type(),
1228 description.portSpeed(), annotations);
Marc De Leenheer88194c32015-05-29 22:10:59 -07001229 case ODUCLT:
HIGUCHI Yuta4c0ef6b2016-05-02 19:45:41 -07001230 if (description instanceof OduCltPortDescription) {
1231 // remove if-block once deprecation is complete
1232 OduCltPortDescription oduDesc = (OduCltPortDescription) description;
1233 return new OduCltPort(device, number, isEnabled, oduDesc.signalType(), annotations);
1234 }
1235 // same as default
1236 return new DefaultPort(device, number, isEnabled, description.type(),
1237 description.portSpeed(), annotations);
Rimon Ashkenazy8ebfff02016-02-01 11:56:36 +02001238 case OTU:
HIGUCHI Yuta5be3e822016-05-03 13:51:42 -07001239 if (description instanceof OtuPortDescription) {
1240 // remove if-block once deprecation is complete
1241 OtuPortDescription otuDesc = (OtuPortDescription) description;
1242 return new OtuPort(device, number, isEnabled, otuDesc.signalType(), annotations);
1243 }
1244 // same as default
1245 return new DefaultPort(device, number, isEnabled, description.type(),
1246 description.portSpeed(), annotations);
Marc De Leenheer88194c32015-05-29 22:10:59 -07001247 default:
1248 return new DefaultPort(device, number, isEnabled, description.type(),
1249 description.portSpeed(), annotations);
1250 }
1251 }
1252
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001253 /**
1254 * Returns a Port, merging description given from multiple Providers.
1255 *
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001256 * @param device device the port is on
1257 * @param number port number
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001258 * @param descsMap Collection of Descriptions from multiple providers
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001259 * @return Port instance
1260 */
1261 private Port composePort(Device device, PortNumber number,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001262 Map<ProviderId, DeviceDescriptions> descsMap) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001263
Jonathan Hartd9df7bd2015-11-10 17:10:25 -08001264 ProviderId primary = pickPrimaryPid(descsMap);
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001265 DeviceDescriptions primDescs = descsMap.get(primary);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001266 // if no primary, assume not enabled
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001267 boolean isEnabled = false;
1268 DefaultAnnotations annotations = DefaultAnnotations.builder().build();
Ayaka Koshibeae541732015-05-19 13:37:27 -07001269 Timestamp newest = null;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001270 final Timestamped<PortDescription> portDesc = primDescs.getPortDesc(number);
1271 if (portDesc != null) {
1272 isEnabled = portDesc.value().isEnabled();
1273 annotations = merge(annotations, portDesc.value().annotations());
Ayaka Koshibeae541732015-05-19 13:37:27 -07001274 newest = portDesc.timestamp();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001275 }
Ayaka Koshibeae541732015-05-19 13:37:27 -07001276 Port updated = null;
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001277 for (Entry<ProviderId, DeviceDescriptions> e : descsMap.entrySet()) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001278 if (e.getKey().equals(primary)) {
1279 continue;
1280 }
Yuta HIGUCHI65934892014-12-04 17:47:44 -08001281 // Note: should keep track of Description timestamp in the future
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001282 // and only merge conflicting keys when timestamp is newer.
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001283 // Currently assuming there will never be a key conflict between
1284 // providers
1285
1286 // annotation merging. not so efficient, should revisit later
1287 final Timestamped<PortDescription> otherPortDesc = e.getValue().getPortDesc(number);
1288 if (otherPortDesc != null) {
Ayaka Koshibeae541732015-05-19 13:37:27 -07001289 if (newest != null && newest.isNewerThan(otherPortDesc.timestamp())) {
1290 continue;
1291 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001292 annotations = merge(annotations, otherPortDesc.value().annotations());
Ayaka Koshibe74b55272015-05-28 15:16:04 -07001293 PortDescription other = otherPortDesc.value();
Marc De Leenheer88194c32015-05-29 22:10:59 -07001294 updated = buildTypedPort(device, number, isEnabled, other, annotations);
Ayaka Koshibeae541732015-05-19 13:37:27 -07001295 newest = otherPortDesc.timestamp();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001296 }
1297 }
Marc De Leenheer4b18a232015-04-30 11:58:20 -07001298 if (portDesc == null) {
Ayaka Koshibeae541732015-05-19 13:37:27 -07001299 return updated == null ? new DefaultPort(device, number, false, annotations) : updated;
Marc De Leenheer4b18a232015-04-30 11:58:20 -07001300 }
Ayaka Koshibe74b55272015-05-28 15:16:04 -07001301 PortDescription current = portDesc.value();
1302 return updated == null
Marc De Leenheer88194c32015-05-29 22:10:59 -07001303 ? buildTypedPort(device, number, isEnabled, current, annotations)
Ayaka Koshibe74b55272015-05-28 15:16:04 -07001304 : updated;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001305 }
1306
1307 /**
1308 * @return primary ProviderID, or randomly chosen one if none exists
1309 */
Jonathan Hartd9df7bd2015-11-10 17:10:25 -08001310 private ProviderId pickPrimaryPid(
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001311 Map<ProviderId, DeviceDescriptions> providerDescs) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001312 ProviderId fallBackPrimary = null;
1313 for (Entry<ProviderId, DeviceDescriptions> e : providerDescs.entrySet()) {
1314 if (!e.getKey().isAncillary()) {
1315 return e.getKey();
1316 } else if (fallBackPrimary == null) {
1317 // pick randomly as a fallback in case there is no primary
1318 fallBackPrimary = e.getKey();
1319 }
1320 }
1321 return fallBackPrimary;
1322 }
1323
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001324 private DeviceDescriptions getPrimaryDescriptions(
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001325 Map<ProviderId, DeviceDescriptions> providerDescs) {
Jonathan Hartd9df7bd2015-11-10 17:10:25 -08001326 ProviderId pid = pickPrimaryPid(providerDescs);
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001327 return providerDescs.get(pid);
1328 }
1329
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001330 private void unicastMessage(NodeId recipient, MessageSubject subject, Object event) throws IOException {
Madan Jampani2bfa94c2015-04-11 05:03:49 -07001331 clusterCommunicator.unicast(event, subject, SERIALIZER::encode, recipient);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001332 }
1333
Jonathan Hart7d656f42015-01-27 14:07:23 -08001334 private void broadcastMessage(MessageSubject subject, Object event) {
Madan Jampani2bfa94c2015-04-11 05:03:49 -07001335 clusterCommunicator.broadcast(event, subject, SERIALIZER::encode);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001336 }
Madan Jampani47c93732014-10-06 20:46:08 -07001337
Jonathan Hart7d656f42015-01-27 14:07:23 -08001338 private void notifyPeers(InternalDeviceEvent event) {
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001339 broadcastMessage(DEVICE_UPDATE, event);
Madan Jampani47c93732014-10-06 20:46:08 -07001340 }
1341
Jonathan Hart7d656f42015-01-27 14:07:23 -08001342 private void notifyPeers(InternalDeviceOfflineEvent event) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001343 broadcastMessage(GossipDeviceStoreMessageSubjects.DEVICE_OFFLINE, event);
Madan Jampani25322532014-10-08 11:20:38 -07001344 }
1345
Jonathan Hart7d656f42015-01-27 14:07:23 -08001346 private void notifyPeers(InternalDeviceRemovedEvent event) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001347 broadcastMessage(GossipDeviceStoreMessageSubjects.DEVICE_REMOVED, event);
Madan Jampani3fc72ed2014-10-08 12:50:27 -07001348 }
1349
Jonathan Hart7d656f42015-01-27 14:07:23 -08001350 private void notifyPeers(InternalPortEvent event) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001351 broadcastMessage(GossipDeviceStoreMessageSubjects.PORT_UPDATE, event);
Madan Jampani47c93732014-10-06 20:46:08 -07001352 }
1353
Jonathan Hart7d656f42015-01-27 14:07:23 -08001354 private void notifyPeers(InternalPortStatusEvent event) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001355 broadcastMessage(GossipDeviceStoreMessageSubjects.PORT_STATUS_UPDATE, event);
1356 }
1357
1358 private void notifyPeer(NodeId recipient, InternalDeviceEvent event) {
1359 try {
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001360 unicastMessage(recipient, DEVICE_UPDATE, event);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001361 } catch (IOException e) {
1362 log.error("Failed to send" + event + " to " + recipient, e);
1363 }
1364 }
1365
1366 private void notifyPeer(NodeId recipient, InternalDeviceOfflineEvent event) {
1367 try {
1368 unicastMessage(recipient, GossipDeviceStoreMessageSubjects.DEVICE_OFFLINE, event);
1369 } catch (IOException e) {
1370 log.error("Failed to send" + event + " to " + recipient, e);
1371 }
1372 }
1373
1374 private void notifyPeer(NodeId recipient, InternalDeviceRemovedEvent event) {
1375 try {
1376 unicastMessage(recipient, GossipDeviceStoreMessageSubjects.DEVICE_REMOVED, event);
1377 } catch (IOException e) {
1378 log.error("Failed to send" + event + " to " + recipient, e);
1379 }
1380 }
1381
1382 private void notifyPeer(NodeId recipient, InternalPortEvent event) {
1383 try {
1384 unicastMessage(recipient, GossipDeviceStoreMessageSubjects.PORT_UPDATE, event);
1385 } catch (IOException e) {
1386 log.error("Failed to send" + event + " to " + recipient, e);
1387 }
1388 }
1389
1390 private void notifyPeer(NodeId recipient, InternalPortStatusEvent event) {
1391 try {
1392 unicastMessage(recipient, GossipDeviceStoreMessageSubjects.PORT_STATUS_UPDATE, event);
1393 } catch (IOException e) {
1394 log.error("Failed to send" + event + " to " + recipient, e);
1395 }
1396 }
1397
1398 private DeviceAntiEntropyAdvertisement createAdvertisement() {
1399 final NodeId self = clusterService.getLocalNode().id();
1400
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001401 final int numDevices = deviceDescs.size();
1402 Map<DeviceFragmentId, Timestamp> adDevices = new HashMap<>(numDevices);
1403 final int portsPerDevice = 8; // random factor to minimize reallocation
1404 Map<PortFragmentId, Timestamp> adPorts = new HashMap<>(numDevices * portsPerDevice);
1405 Map<DeviceId, Timestamp> adOffline = new HashMap<>(numDevices);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001406
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -08001407 deviceDescs.forEach((deviceId, devDescs) -> {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001408
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001409 // for each Device...
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001410 synchronized (devDescs) {
1411
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001412 // send device offline timestamp
1413 Timestamp lOffline = this.offline.get(deviceId);
1414 if (lOffline != null) {
1415 adOffline.put(deviceId, lOffline);
1416 }
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001417
1418 for (Entry<ProviderId, DeviceDescriptions>
1419 prov : devDescs.entrySet()) {
1420
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001421 // for each Provider Descriptions...
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001422 final ProviderId provId = prov.getKey();
1423 final DeviceDescriptions descs = prov.getValue();
1424
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001425 adDevices.put(new DeviceFragmentId(deviceId, provId),
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001426 descs.getDeviceDesc().timestamp());
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001427
1428 for (Entry<PortNumber, Timestamped<PortDescription>>
1429 portDesc : descs.getPortDescs().entrySet()) {
1430
1431 final PortNumber number = portDesc.getKey();
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001432 adPorts.put(new PortFragmentId(deviceId, provId, number),
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001433 portDesc.getValue().timestamp());
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001434 }
1435 }
1436 }
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -08001437 });
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001438
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001439 return new DeviceAntiEntropyAdvertisement(self, adDevices, adPorts, adOffline);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001440 }
1441
1442 /**
1443 * Responds to anti-entropy advertisement message.
HIGUCHI Yuta67023a22016-03-28 13:35:44 -07001444 * <p>
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001445 * Notify sender about out-dated information using regular replication message.
1446 * Send back advertisement to sender if not in sync.
1447 *
1448 * @param advertisement to respond to
1449 */
1450 private void handleAdvertisement(DeviceAntiEntropyAdvertisement advertisement) {
1451
1452 final NodeId sender = advertisement.sender();
1453
1454 Map<DeviceFragmentId, Timestamp> devAds = new HashMap<>(advertisement.deviceFingerPrints());
1455 Map<PortFragmentId, Timestamp> portAds = new HashMap<>(advertisement.ports());
1456 Map<DeviceId, Timestamp> offlineAds = new HashMap<>(advertisement.offline());
1457
1458 // Fragments to request
1459 Collection<DeviceFragmentId> reqDevices = new ArrayList<>();
1460 Collection<PortFragmentId> reqPorts = new ArrayList<>();
1461
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001462 for (Entry<DeviceId, Map<ProviderId, DeviceDescriptions>> de : deviceDescs.entrySet()) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001463 final DeviceId deviceId = de.getKey();
1464 final Map<ProviderId, DeviceDescriptions> lDevice = de.getValue();
1465
1466 synchronized (lDevice) {
1467 // latestTimestamp across provider
1468 // Note: can be null initially
1469 Timestamp localLatest = offline.get(deviceId);
1470
1471 // handle device Ads
1472 for (Entry<ProviderId, DeviceDescriptions> prov : lDevice.entrySet()) {
1473 final ProviderId provId = prov.getKey();
1474 final DeviceDescriptions lDeviceDescs = prov.getValue();
1475
1476 final DeviceFragmentId devFragId = new DeviceFragmentId(deviceId, provId);
1477
1478
1479 Timestamped<DeviceDescription> lProvDevice = lDeviceDescs.getDeviceDesc();
1480 Timestamp advDevTimestamp = devAds.get(devFragId);
1481
Jonathan Hart403ea932015-02-20 16:23:00 -08001482 if (advDevTimestamp == null || lProvDevice.isNewerThan(
1483 advDevTimestamp)) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001484 // remote does not have it or outdated, suggest
1485 notifyPeer(sender, new InternalDeviceEvent(provId, deviceId, lProvDevice));
1486 } else if (!lProvDevice.timestamp().equals(advDevTimestamp)) {
1487 // local is outdated, request
1488 reqDevices.add(devFragId);
1489 }
1490
1491 // handle port Ads
1492 for (Entry<PortNumber, Timestamped<PortDescription>>
1493 pe : lDeviceDescs.getPortDescs().entrySet()) {
1494
1495 final PortNumber num = pe.getKey();
1496 final Timestamped<PortDescription> lPort = pe.getValue();
1497
1498 final PortFragmentId portFragId = new PortFragmentId(deviceId, provId, num);
1499
1500 Timestamp advPortTimestamp = portAds.get(portFragId);
Jonathan Hart403ea932015-02-20 16:23:00 -08001501 if (advPortTimestamp == null || lPort.isNewerThan(
1502 advPortTimestamp)) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001503 // remote does not have it or outdated, suggest
1504 notifyPeer(sender, new InternalPortStatusEvent(provId, deviceId, lPort));
1505 } else if (!lPort.timestamp().equals(advPortTimestamp)) {
1506 // local is outdated, request
1507 log.trace("need update {} < {}", lPort.timestamp(), advPortTimestamp);
1508 reqPorts.add(portFragId);
1509 }
1510
1511 // remove port Ad already processed
1512 portAds.remove(portFragId);
1513 } // end local port loop
1514
1515 // remove device Ad already processed
1516 devAds.remove(devFragId);
1517
1518 // find latest and update
1519 final Timestamp providerLatest = lDeviceDescs.getLatestTimestamp();
1520 if (localLatest == null ||
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001521 providerLatest.compareTo(localLatest) > 0) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001522 localLatest = providerLatest;
1523 }
1524 } // end local provider loop
1525
1526 // checking if remote timestamp is more recent.
1527 Timestamp rOffline = offlineAds.get(deviceId);
1528 if (rOffline != null &&
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001529 rOffline.compareTo(localLatest) > 0) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001530 // remote offline timestamp suggests that the
1531 // device is off-line
1532 markOfflineInternal(deviceId, rOffline);
1533 }
1534
1535 Timestamp lOffline = offline.get(deviceId);
1536 if (lOffline != null && rOffline == null) {
1537 // locally offline, but remote is online, suggest offline
1538 notifyPeer(sender, new InternalDeviceOfflineEvent(deviceId, lOffline));
1539 }
1540
1541 // remove device offline Ad already processed
1542 offlineAds.remove(deviceId);
1543 } // end local device loop
1544 } // device lock
1545
1546 // If there is any Ads left, request them
1547 log.trace("Ads left {}, {}", devAds, portAds);
1548 reqDevices.addAll(devAds.keySet());
1549 reqPorts.addAll(portAds.keySet());
1550
1551 if (reqDevices.isEmpty() && reqPorts.isEmpty()) {
1552 log.trace("Nothing to request to remote peer {}", sender);
1553 return;
1554 }
1555
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001556 log.debug("Need to sync {} {}", reqDevices, reqPorts);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001557
1558 // 2-way Anti-Entropy for now
1559 try {
1560 unicastMessage(sender, DEVICE_ADVERTISE, createAdvertisement());
1561 } catch (IOException e) {
1562 log.error("Failed to send response advertisement to " + sender, e);
1563 }
1564
1565// Sketch of 3-way Anti-Entropy
1566// DeviceAntiEntropyRequest request = new DeviceAntiEntropyRequest(self, reqDevices, reqPorts);
1567// ClusterMessage message = new ClusterMessage(
1568// clusterService.getLocalNode().id(),
1569// GossipDeviceStoreMessageSubjects.DEVICE_REQUEST,
1570// SERIALIZER.encode(request));
1571//
1572// try {
1573// clusterCommunicator.unicast(message, advertisement.sender());
1574// } catch (IOException e) {
1575// log.error("Failed to send advertisement reply to "
1576// + advertisement.sender(), e);
1577// }
Madan Jampani47c93732014-10-06 20:46:08 -07001578 }
1579
Madan Jampani255a58b2014-10-09 12:08:20 -07001580 private void notifyDelegateIfNotNull(DeviceEvent event) {
1581 if (event != null) {
1582 notifyDelegate(event);
1583 }
1584 }
1585
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001586 private final class SendAdvertisementTask implements Runnable {
1587
1588 @Override
1589 public void run() {
1590 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001591 log.debug("Interrupted, quitting");
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001592 return;
1593 }
1594
1595 try {
1596 final NodeId self = clusterService.getLocalNode().id();
1597 Set<ControllerNode> nodes = clusterService.getNodes();
1598
1599 ImmutableList<NodeId> nodeIds = FluentIterable.from(nodes)
1600 .transform(toNodeId())
1601 .toList();
1602
1603 if (nodeIds.size() == 1 && nodeIds.get(0).equals(self)) {
Yuta HIGUCHIfaf9e1c2014-11-20 00:31:29 -08001604 log.trace("No other peers in the cluster.");
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001605 return;
1606 }
1607
1608 NodeId peer;
1609 do {
1610 int idx = RandomUtils.nextInt(0, nodeIds.size());
1611 peer = nodeIds.get(idx);
1612 } while (peer.equals(self));
1613
1614 DeviceAntiEntropyAdvertisement ad = createAdvertisement();
1615
1616 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001617 log.debug("Interrupted, quitting");
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001618 return;
1619 }
1620
1621 try {
1622 unicastMessage(peer, DEVICE_ADVERTISE, ad);
1623 } catch (IOException e) {
Yuta HIGUCHI78f3a0a2014-10-16 17:24:20 -07001624 log.debug("Failed to send anti-entropy advertisement to {}", peer);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001625 return;
1626 }
1627 } catch (Exception e) {
1628 // catch all Exception to avoid Scheduled task being suppressed.
1629 log.error("Exception thrown while sending advertisement", e);
1630 }
1631 }
1632 }
1633
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001634 private void handleDeviceEvent(InternalDeviceEvent event) {
1635 ProviderId providerId = event.providerId();
1636 DeviceId deviceId = event.deviceId();
1637 Timestamped<DeviceDescription> deviceDescription = event.deviceDescription();
Madan Jampani25322532014-10-08 11:20:38 -07001638
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001639 try {
1640 notifyDelegateIfNotNull(createOrUpdateDeviceInternal(providerId, deviceId,
1641 deviceDescription));
1642 } catch (Exception e) {
1643 log.warn("Exception thrown handling device update", e);
Madan Jampani47c93732014-10-06 20:46:08 -07001644 }
1645 }
1646
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001647 private void handleDeviceOfflineEvent(InternalDeviceOfflineEvent event) {
1648 DeviceId deviceId = event.deviceId();
1649 Timestamp timestamp = event.timestamp();
Madan Jampani25322532014-10-08 11:20:38 -07001650
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001651 try {
1652 notifyDelegateIfNotNull(markOfflineInternal(deviceId, timestamp));
1653 } catch (Exception e) {
1654 log.warn("Exception thrown handling device offline", e);
Madan Jampani25322532014-10-08 11:20:38 -07001655 }
1656 }
1657
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001658 private void handleRemoveRequest(DeviceId did) {
1659 try {
1660 removeDevice(did);
1661 } catch (Exception e) {
1662 log.warn("Exception thrown handling device remove", e);
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001663 }
1664 }
1665
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001666 private void handleDeviceRemovedEvent(InternalDeviceRemovedEvent event) {
1667 DeviceId deviceId = event.deviceId();
1668 Timestamp timestamp = event.timestamp();
Madan Jampani3fc72ed2014-10-08 12:50:27 -07001669
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001670 try {
1671 notifyDelegateIfNotNull(removeDeviceInternal(deviceId, timestamp));
1672 } catch (Exception e) {
1673 log.warn("Exception thrown handling device removed", e);
Madan Jampani3fc72ed2014-10-08 12:50:27 -07001674 }
1675 }
1676
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001677 private void handlePortEvent(InternalPortEvent event) {
1678 ProviderId providerId = event.providerId();
1679 DeviceId deviceId = event.deviceId();
1680 Timestamped<List<PortDescription>> portDescriptions = event.portDescriptions();
Madan Jampani47c93732014-10-06 20:46:08 -07001681
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001682 if (getDevice(deviceId) == null) {
1683 log.debug("{} not found on this node yet, ignoring.", deviceId);
1684 // Note: dropped information will be recovered by anti-entropy
1685 return;
1686 }
Madan Jampani47c93732014-10-06 20:46:08 -07001687
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001688 try {
1689 notifyDelegate(updatePortsInternal(providerId, deviceId, portDescriptions));
1690 } catch (Exception e) {
1691 log.warn("Exception thrown handling port update", e);
Madan Jampani47c93732014-10-06 20:46:08 -07001692 }
1693 }
1694
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001695 private void handlePortStatusEvent(InternalPortStatusEvent event) {
1696 ProviderId providerId = event.providerId();
1697 DeviceId deviceId = event.deviceId();
1698 Timestamped<PortDescription> portDescription = event.portDescription();
Madan Jampani47c93732014-10-06 20:46:08 -07001699
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001700 if (getDevice(deviceId) == null) {
1701 log.debug("{} not found on this node yet, ignoring.", deviceId);
1702 // Note: dropped information will be recovered by anti-entropy
1703 return;
1704 }
Madan Jampani47c93732014-10-06 20:46:08 -07001705
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001706 try {
1707 notifyDelegateIfNotNull(updatePortStatusInternal(providerId, deviceId, portDescription));
1708 } catch (Exception e) {
1709 log.warn("Exception thrown handling port update", e);
Madan Jampani47c93732014-10-06 20:46:08 -07001710 }
1711 }
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001712
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001713 private void handleDeviceAdvertisement(DeviceAntiEntropyAdvertisement advertisement) {
1714 try {
1715 handleAdvertisement(advertisement);
1716 } catch (Exception e) {
1717 log.warn("Exception thrown handling Device advertisements.", e);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001718 }
1719 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -08001720
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001721 private void handleDeviceInjectedEvent(DeviceInjectedEvent event) {
1722 ProviderId providerId = event.providerId();
1723 DeviceId deviceId = event.deviceId();
1724 DeviceDescription deviceDescription = event.deviceDescription();
1725 if (!deviceClockService.isTimestampAvailable(deviceId)) {
1726 // workaround for ONOS-1208
1727 log.warn("Not ready to accept update. Dropping {}", deviceDescription);
1728 return;
1729 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -08001730
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001731 try {
1732 createOrUpdateDevice(providerId, deviceId, deviceDescription);
1733 } catch (Exception e) {
1734 log.warn("Exception thrown handling device injected event.", e);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -08001735 }
1736 }
1737
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001738 private void handlePortInjectedEvent(PortInjectedEvent event) {
1739 ProviderId providerId = event.providerId();
1740 DeviceId deviceId = event.deviceId();
1741 List<PortDescription> portDescriptions = event.portDescriptions();
1742 if (!deviceClockService.isTimestampAvailable(deviceId)) {
1743 // workaround for ONOS-1208
1744 log.warn("Not ready to accept update. Dropping {}", portDescriptions);
1745 return;
1746 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -08001747
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001748 try {
1749 updatePorts(providerId, deviceId, portDescriptions);
1750 } catch (Exception e) {
1751 log.warn("Exception thrown handling port injected event.", e);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -08001752 }
1753 }
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001754
1755 private class InternalPortStatsListener
1756 implements EventuallyConsistentMapListener<DeviceId, Map<PortNumber, PortStatistics>> {
1757 @Override
1758 public void event(EventuallyConsistentMapEvent<DeviceId, Map<PortNumber, PortStatistics>> event) {
1759 if (event.type() == PUT) {
1760 Device device = devices.get(event.key());
1761 if (device != null) {
Thomas Vachuskad4955ae2016-08-23 14:56:37 -07001762 notifyDelegate(new DeviceEvent(PORT_STATS_UPDATED, device));
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001763 }
1764 }
1765 }
1766 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001767}