blob: 95db70233f50af75fdb8d7338782d207c413703b [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
HIGUCHI Yuta4ea4e422016-01-13 16:40:34 -0800341 if (!providerId.scheme().equals("cfg")) {
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()) {
401 return registerDevice(providerId, newDevice);
402 }
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
helenyrwufd296b62016-06-22 17:43:02 -0700470 private DeviceEvent registerDevice(ProviderId providerId, Device newDevice) {
471 // 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()) {
478 markOffline(newDevice.id());
479 }
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) {
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -0700486 final Timestamp timestamp = deviceClockService.getTimestamp(deviceId);
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700487 final DeviceEvent event = markOfflineInternal(deviceId, timestamp);
Madan Jampani25322532014-10-08 11:20:38 -0700488 if (event != null) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700489 log.debug("Notifying peers of a device offline topology event for deviceId: {} {}",
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700490 deviceId, timestamp);
Jonathan Hart7d656f42015-01-27 14:07:23 -0800491 notifyPeers(new InternalDeviceOfflineEvent(deviceId, timestamp));
Madan Jampani25322532014-10-08 11:20:38 -0700492 }
493 return event;
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700494 }
495
496 private DeviceEvent markOfflineInternal(DeviceId deviceId, Timestamp timestamp) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700497 Map<ProviderId, DeviceDescriptions> providerDescs
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700498 = getOrCreateDeviceDescriptionsMap(deviceId);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700499
500 // locking device
501 synchronized (providerDescs) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700502 // accept off-line if given timestamp is newer than
503 // the latest Timestamp from Primary provider
504 DeviceDescriptions primDescs = getPrimaryDescriptions(providerDescs);
Thomas Vachuska4bd10b92016-12-15 10:13:38 -0800505 if (primDescs == null) {
506 return null;
507 }
508
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700509 Timestamp lastTimestamp = primDescs.getLatestTimestamp();
510 if (timestamp.compareTo(lastTimestamp) <= 0) {
511 // outdated event ignore
512 return null;
513 }
514
515 offline.put(deviceId, timestamp);
516
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700517 Device device = devices.get(deviceId);
518 if (device == null) {
519 return null;
520 }
521 boolean removed = availableDevices.remove(deviceId);
522 if (removed) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700523 return new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, device, null);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700524 }
525 return null;
526 }
527 }
528
Yuta HIGUCHIc2e68152016-08-16 13:47:36 -0700529 @Override
helenyrwufd296b62016-06-22 17:43:02 -0700530 public boolean markOnline(DeviceId deviceId) {
531 if (devices.containsKey(deviceId)) {
532 final Timestamp timestamp = deviceClockService.getTimestamp(deviceId);
533 Map<?, ?> deviceLock = getOrCreateDeviceDescriptionsMap(deviceId);
534 synchronized (deviceLock) {
535 if (markOnline(deviceId, timestamp)) {
536 notifyDelegate(new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, getDevice(deviceId), null));
537 return true;
538 } else {
539 return false;
540 }
541 }
542 }
543 log.warn("Device {} does not exist in store", deviceId);
544 return false;
545
546 }
547
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700548 /**
549 * Marks the device as available if the given timestamp is not outdated,
550 * compared to the time the device has been marked offline.
551 *
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700552 * @param deviceId identifier of the device
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700553 * @param timestamp of the event triggering this change.
554 * @return true if availability change request was accepted and changed the state
555 */
556 // Guarded by deviceDescs value (=Device lock)
557 private boolean markOnline(DeviceId deviceId, Timestamp timestamp) {
558 // accept on-line if given timestamp is newer than
559 // the latest offline request Timestamp
560 Timestamp offlineTimestamp = offline.get(deviceId);
561 if (offlineTimestamp == null ||
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700562 offlineTimestamp.compareTo(timestamp) < 0) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700563
564 offline.remove(deviceId);
565 return availableDevices.add(deviceId);
566 }
567 return false;
568 }
569
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700570 @Override
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700571 public synchronized List<DeviceEvent> updatePorts(ProviderId providerId,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700572 DeviceId deviceId,
573 List<PortDescription> portDescriptions) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700574
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800575 NodeId localNode = clusterService.getLocalNode().id();
576 // TODO: It might be negligible, but this will have negative impact to topology discovery performance,
577 // since it will trigger distributed store read.
578 // Also, it'll probably be better if side-way communication happened on ConfigurationProvider, etc.
579 // outside Device subsystem. so that we don't have to modify both Device and Link stores.
580 // If we don't care much about topology performance, then it might be OK.
581 NodeId deviceNode = mastershipService.getMasterFor(deviceId);
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700582
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800583 // Process port update only if we're the master of the device,
584 // otherwise signal the actual master.
585 List<DeviceEvent> deviceEvents = null;
586 if (localNode.equals(deviceNode)) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700587
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800588 final Timestamp newTimestamp;
589 try {
590 newTimestamp = deviceClockService.getTimestamp(deviceId);
591 } catch (IllegalStateException e) {
592 log.info("Timestamp was not available for device {}", deviceId);
593 log.debug(" discarding {}", portDescriptions);
594 // Failed to generate timestamp.
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700595
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800596 // Possible situation:
597 // Device connected and became master for short period of time,
598 // but lost mastership before this instance had the chance to
599 // retrieve term information.
600
601 // Information dropped here is expected to be recoverable by
602 // device probing after mastership change
603
604 return Collections.emptyList();
605 }
606 log.debug("timestamp for {} {}", deviceId, newTimestamp);
607
608 final Timestamped<List<PortDescription>> timestampedInput
609 = new Timestamped<>(portDescriptions, newTimestamp);
610 final Timestamped<List<PortDescription>> merged;
611
612 final Map<ProviderId, DeviceDescriptions> device = getOrCreateDeviceDescriptionsMap(deviceId);
613
614 synchronized (device) {
615 deviceEvents = updatePortsInternal(providerId, deviceId, timestampedInput);
616 final DeviceDescriptions descs = device.get(providerId);
617 List<PortDescription> mergedList =
618 FluentIterable.from(portDescriptions)
Sho SHIMIZU74626412015-09-11 11:46:27 -0700619 .transform(input ->
620 // lookup merged port description
621 descs.getPortDesc(input.portNumber()).value()
622 ).toList();
Sho SHIMIZUa0fda212015-06-10 19:15:38 -0700623 merged = new Timestamped<>(mergedList, newTimestamp);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800624 }
625
626 if (!deviceEvents.isEmpty()) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700627 log.debug("Notifying peers of a ports update topology event for providerId: {} and deviceId: {}",
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700628 providerId, deviceId);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800629 notifyPeers(new InternalPortEvent(providerId, deviceId, merged));
630 }
631
632 } else {
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800633 // Only forward for ConfigProvider
634 // Forwarding was added as a workaround for ONOS-490
HIGUCHI Yuta4ea4e422016-01-13 16:40:34 -0800635 if (!providerId.scheme().equals("cfg")) {
HIGUCHI Yuta89461772016-01-26 12:18:10 -0800636 return Collections.emptyList();
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800637 }
HIGUCHI Yutadc2e7c22015-02-24 12:19:47 -0800638 // FIXME Temporary hack for NPE (ONOS-1171).
639 // Proper fix is to implement forwarding to master on ConfigProvider
640 // redo ONOS-490
641 if (deviceNode == null) {
642 // silently ignore
Ayaka Koshibeeeb95102015-02-26 16:31:49 -0800643 return Collections.emptyList();
HIGUCHI Yutadc2e7c22015-02-24 12:19:47 -0800644 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -0800645
646 PortInjectedEvent portInjectedEvent = new PortInjectedEvent(providerId, deviceId, portDescriptions);
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800647
648 //TODO check unicast return value
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700649 clusterCommunicator.unicast(portInjectedEvent, PORT_INJECTED, SERIALIZER::encode, deviceNode);
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800650 /* error log:
651 log.warn("Failed to process injected ports of device id: {} " +
652 "(cluster messaging failed: {})",
653 deviceId, e);
654 */
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700655 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700656
Ayaka Koshibeeeb95102015-02-26 16:31:49 -0800657 return deviceEvents == null ? Collections.emptyList() : deviceEvents;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700658 }
659
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700660 private List<DeviceEvent> updatePortsInternal(ProviderId providerId,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700661 DeviceId deviceId,
662 Timestamped<List<PortDescription>> portDescriptions) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700663
664 Device device = devices.get(deviceId);
Ray Milkey9ef22232016-07-14 12:42:37 -0700665 if (device == null) {
666 log.debug("Device is no longer valid: {}", deviceId);
667 return Collections.emptyList();
668 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700669
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700670 Map<ProviderId, DeviceDescriptions> descsMap = deviceDescs.get(deviceId);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700671 checkArgument(descsMap != null, DEVICE_NOT_FOUND, deviceId);
672
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700673 List<DeviceEvent> events = new ArrayList<>();
674 synchronized (descsMap) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700675
676 if (isDeviceRemoved(deviceId, portDescriptions.timestamp())) {
677 log.debug("Ignoring outdated events: {}", portDescriptions);
Sho SHIMIZU7b7eabc2015-06-10 20:30:19 -0700678 return Collections.emptyList();
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700679 }
680
681 DeviceDescriptions descs = descsMap.get(providerId);
682 // every provider must provide DeviceDescription.
683 checkArgument(descs != null,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700684 "Device description for Device ID %s from Provider %s was not found",
685 deviceId, providerId);
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700686
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700687 Map<PortNumber, Port> ports = getPortMap(deviceId);
688
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700689 final Timestamp newTimestamp = portDescriptions.timestamp();
690
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700691 // Add new ports
692 Set<PortNumber> processed = new HashSet<>();
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700693 for (PortDescription portDescription : portDescriptions.value()) {
694 final PortNumber number = portDescription.portNumber();
695 processed.add(number);
696
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700697 final Port oldPort = ports.get(number);
698 final Port newPort;
699
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700700
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700701 final Timestamped<PortDescription> existingPortDesc = descs.getPortDesc(number);
702 if (existingPortDesc == null ||
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700703 newTimestamp.compareTo(existingPortDesc.timestamp()) >= 0) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700704 // on new port or valid update
705 // update description
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700706 descs.putPortDesc(new Timestamped<>(portDescription,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700707 portDescriptions.timestamp()));
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700708 newPort = composePort(device, number, descsMap);
709 } else {
710 // outdated event, ignored.
711 continue;
712 }
713
714 events.add(oldPort == null ?
715 createPort(device, newPort, ports) :
716 updatePort(device, oldPort, newPort, ports));
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700717 }
718
719 events.addAll(pruneOldPorts(device, ports, processed));
720 }
721 return FluentIterable.from(events).filter(notNull()).toList();
722 }
723
724 // Creates a new port based on the port description adds it to the map and
725 // Returns corresponding event.
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700726 // Guarded by deviceDescs value (=Device lock)
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700727 private DeviceEvent createPort(Device device, Port newPort,
728 Map<PortNumber, Port> ports) {
729 ports.put(newPort.number(), newPort);
730 return new DeviceEvent(PORT_ADDED, device, newPort);
731 }
732
733 // Checks if the specified port requires update and if so, it replaces the
734 // existing entry in the map and returns corresponding event.
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700735 // Guarded by deviceDescs value (=Device lock)
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700736 private DeviceEvent updatePort(Device device, Port oldPort,
737 Port newPort,
738 Map<PortNumber, Port> ports) {
Michal Machce774332017-01-25 11:02:55 +0100739
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700740 if (oldPort.isEnabled() != newPort.isEnabled() ||
Thomas Vachuskad16ce182014-10-29 17:25:29 -0700741 oldPort.type() != newPort.type() ||
742 oldPort.portSpeed() != newPort.portSpeed() ||
743 !AnnotationsUtil.isEqual(oldPort.annotations(), newPort.annotations())) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700744 ports.put(oldPort.number(), newPort);
745 return new DeviceEvent(PORT_UPDATED, device, newPort);
746 }
747 return null;
748 }
749
Michal Machce774332017-01-25 11:02:55 +0100750 private DeviceEvent removePort(DeviceId deviceId, PortNumber portNumber) {
751
752 log.info("Deleted port: " + deviceId.toString() + "/" + portNumber.toString());
753 Port deletedPort = devicePorts.get(deviceId).remove(portNumber);
754
755 return new DeviceEvent(PORT_REMOVED, getDevice(deviceId), deletedPort);
756 }
757
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700758 // Prunes the specified list of ports based on which ports are in the
759 // processed list and returns list of corresponding events.
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700760 // Guarded by deviceDescs value (=Device lock)
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700761 private List<DeviceEvent> pruneOldPorts(Device device,
762 Map<PortNumber, Port> ports,
763 Set<PortNumber> processed) {
764 List<DeviceEvent> events = new ArrayList<>();
Yuta HIGUCHI02649072014-10-15 23:28:20 -0700765 Iterator<Entry<PortNumber, Port>> iterator = ports.entrySet().iterator();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700766 while (iterator.hasNext()) {
Yuta HIGUCHI02649072014-10-15 23:28:20 -0700767 Entry<PortNumber, Port> e = iterator.next();
768 PortNumber portNumber = e.getKey();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700769 if (!processed.contains(portNumber)) {
Yuta HIGUCHI02649072014-10-15 23:28:20 -0700770 events.add(new DeviceEvent(PORT_REMOVED, device, e.getValue()));
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700771 iterator.remove();
772 }
773 }
774 return events;
775 }
776
777 // Gets the map of ports for the specified device; if one does not already
778 // exist, it creates and registers a new one.
779 private ConcurrentMap<PortNumber, Port> getPortMap(DeviceId deviceId) {
Yuta HIGUCHIc2e68152016-08-16 13:47:36 -0700780 return devicePorts.computeIfAbsent(deviceId, k -> new ConcurrentHashMap<>());
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -0700781 }
782
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700783 private Map<ProviderId, DeviceDescriptions> getOrCreateDeviceDescriptionsMap(
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -0700784 DeviceId deviceId) {
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700785 Map<ProviderId, DeviceDescriptions> r;
786 r = deviceDescs.get(deviceId);
787 if (r == null) {
Sho SHIMIZUa0fda212015-06-10 19:15:38 -0700788 r = new HashMap<>();
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700789 final Map<ProviderId, DeviceDescriptions> concurrentlyAdded;
790 concurrentlyAdded = deviceDescs.putIfAbsent(deviceId, r);
791 if (concurrentlyAdded != null) {
792 r = concurrentlyAdded;
793 }
794 }
795 return r;
796 }
797
798 // Guarded by deviceDescs value (=Device lock)
799 private DeviceDescriptions getOrCreateProviderDeviceDescriptions(
800 Map<ProviderId, DeviceDescriptions> device,
801 ProviderId providerId, Timestamped<DeviceDescription> deltaDesc) {
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700802 synchronized (device) {
803 DeviceDescriptions r = device.get(providerId);
804 if (r == null) {
805 r = new DeviceDescriptions(deltaDesc);
806 device.put(providerId, r);
807 }
808 return r;
809 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700810 }
811
812 @Override
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700813 public synchronized DeviceEvent updatePortStatus(ProviderId providerId,
814 DeviceId deviceId,
815 PortDescription portDescription) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700816 final Timestamp newTimestamp;
817 try {
818 newTimestamp = deviceClockService.getTimestamp(deviceId);
819 } catch (IllegalStateException e) {
820 log.info("Timestamp was not available for device {}", deviceId);
821 log.debug(" discarding {}", portDescription);
822 // Failed to generate timestamp. Ignoring.
823 // See updatePorts comment
824 return null;
825 }
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700826 final Timestamped<PortDescription> deltaDesc
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700827 = new Timestamped<>(portDescription, newTimestamp);
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700828 final DeviceEvent event;
829 final Timestamped<PortDescription> mergedDesc;
Yuta HIGUCHI04c6b3f2014-11-07 14:47:01 -0800830 final Map<ProviderId, DeviceDescriptions> device = getOrCreateDeviceDescriptionsMap(deviceId);
831 synchronized (device) {
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700832 event = updatePortStatusInternal(providerId, deviceId, deltaDesc);
Yuta HIGUCHI04c6b3f2014-11-07 14:47:01 -0800833 mergedDesc = device.get(providerId)
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700834 .getPortDesc(portDescription.portNumber());
Yuta HIGUCHI47c40882014-10-10 18:44:37 -0700835 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700836 if (event != null) {
Madan Jampanif2af7712015-05-29 18:43:52 -0700837 log.debug("Notifying peers of a port status update topology event for providerId: {} and deviceId: {}",
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700838 providerId, deviceId);
Jonathan Hart7d656f42015-01-27 14:07:23 -0800839 notifyPeers(new InternalPortStatusEvent(providerId, deviceId, mergedDesc));
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700840 }
841 return event;
842 }
843
844 private DeviceEvent updatePortStatusInternal(ProviderId providerId, DeviceId deviceId,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700845 Timestamped<PortDescription> deltaDesc) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700846 Device device = devices.get(deviceId);
847 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
848
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700849 Map<ProviderId, DeviceDescriptions> descsMap = deviceDescs.get(deviceId);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700850 checkArgument(descsMap != null, DEVICE_NOT_FOUND, deviceId);
851
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700852 synchronized (descsMap) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700853
854 if (isDeviceRemoved(deviceId, deltaDesc.timestamp())) {
855 log.debug("Ignoring outdated event: {}", deltaDesc);
856 return null;
857 }
858
859 DeviceDescriptions descs = descsMap.get(providerId);
860 // assuming all providers must to give DeviceDescription
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -0700861 verify(descs != null,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700862 "Device description for Device ID %s from Provider %s was not found",
863 deviceId, providerId);
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -0700864
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700865 ConcurrentMap<PortNumber, Port> ports = getPortMap(deviceId);
866 final PortNumber number = deltaDesc.value().portNumber();
867 final Port oldPort = ports.get(number);
868 final Port newPort;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700869 final Timestamped<PortDescription> existingPortDesc = descs.getPortDesc(number);
Michal Machce774332017-01-25 11:02:55 +0100870 boolean toDelete = false;
871
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700872 if (existingPortDesc == null ||
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -0700873 deltaDesc.isNewer(existingPortDesc)) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700874 // on new port or valid update
875 // update description
876 descs.putPortDesc(deltaDesc);
877 newPort = composePort(device, number, descsMap);
Michal Machce774332017-01-25 11:02:55 +0100878 toDelete = deltaDesc.value().isRemoved();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700879 } else {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -0700880 // same or outdated event, ignored.
881 log.trace("ignore same or outdated {} >= {}", existingPortDesc, deltaDesc);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700882 return null;
883 }
884
885 if (oldPort == null) {
886 return createPort(device, newPort, ports);
887 } else {
Michal Machce774332017-01-25 11:02:55 +0100888 return toDelete ? removePort(deviceId, number) : updatePort(device, oldPort, newPort, ports);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -0700889 }
890 }
891 }
892
893 @Override
894 public List<Port> getPorts(DeviceId deviceId) {
895 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
896 if (ports == null) {
897 return Collections.emptyList();
898 }
899 return ImmutableList.copyOf(ports.values());
900 }
901
902 @Override
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700903 public Stream<PortDescription> getPortDescriptions(ProviderId pid,
904 DeviceId deviceId) {
905 Map<ProviderId, DeviceDescriptions> descs = this.deviceDescs.get(deviceId);
906 if (descs == null) {
907 return null;
908 }
909 // inner-Map(=descs) is HashMap, thus requires synchronization even for reads
910 final Optional<DeviceDescriptions> devDescs;
911 synchronized (descs) {
912 devDescs = Optional.ofNullable(descs.get(pid));
913 }
914 // DeviceDescriptions is concurrent access-safe
915 return devDescs
916 .map(dd -> dd.getPortDescs().values().stream()
917 .map(Timestamped::value))
918 .orElse(Stream.empty());
919 }
920
921 @Override
sangho538108b2015-04-08 14:29:20 -0700922 public DeviceEvent updatePortStatistics(ProviderId providerId, DeviceId deviceId,
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200923 Collection<PortStatistics> newStatsCollection) {
sangho538108b2015-04-08 14:29:20 -0700924
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200925 Map<PortNumber, PortStatistics> prvStatsMap = devicePortStats.get(deviceId);
926 Map<PortNumber, PortStatistics> newStatsMap = Maps.newHashMap();
927 Map<PortNumber, PortStatistics> deltaStatsMap = Maps.newHashMap();
928
929 if (prvStatsMap != null) {
930 for (PortStatistics newStats : newStatsCollection) {
931 PortNumber port = PortNumber.portNumber(newStats.port());
932 PortStatistics prvStats = prvStatsMap.get(port);
933 DefaultPortStatistics.Builder builder = DefaultPortStatistics.builder();
934 PortStatistics deltaStats = builder.build();
935 if (prvStats != null) {
936 deltaStats = calcDeltaStats(deviceId, prvStats, newStats);
937 }
938 deltaStatsMap.put(port, deltaStats);
939 newStatsMap.put(port, newStats);
940 }
941 } else {
942 for (PortStatistics newStats : newStatsCollection) {
943 PortNumber port = PortNumber.portNumber(newStats.port());
944 newStatsMap.put(port, newStats);
945 }
sangho538108b2015-04-08 14:29:20 -0700946 }
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200947 devicePortDeltaStats.put(deviceId, deltaStatsMap);
948 devicePortStats.put(deviceId, newStatsMap);
Dusan Pajin517e2232015-08-24 16:50:11 +0200949 // DeviceEvent returns null because of InternalPortStatsListener usage
950 return null;
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200951 }
952
953 /**
954 * Calculate delta statistics by subtracting previous from new statistics.
955 *
Madan Jampanif97edc12015-08-31 14:41:01 -0700956 * @param deviceId device identifier
957 * @param prvStats previous port statistics
958 * @param newStats new port statistics
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200959 * @return PortStatistics
960 */
961 public PortStatistics calcDeltaStats(DeviceId deviceId, PortStatistics prvStats, PortStatistics newStats) {
962 // calculate time difference
963 long deltaStatsSec, deltaStatsNano;
964 if (newStats.durationNano() < prvStats.durationNano()) {
965 deltaStatsNano = newStats.durationNano() - prvStats.durationNano() + TimeUnit.SECONDS.toNanos(1);
966 deltaStatsSec = newStats.durationSec() - prvStats.durationSec() - 1L;
967 } else {
968 deltaStatsNano = newStats.durationNano() - prvStats.durationNano();
969 deltaStatsSec = newStats.durationSec() - prvStats.durationSec();
970 }
971 DefaultPortStatistics.Builder builder = DefaultPortStatistics.builder();
972 DefaultPortStatistics deltaStats = builder.setDeviceId(deviceId)
973 .setPort(newStats.port())
974 .setPacketsReceived(newStats.packetsReceived() - prvStats.packetsReceived())
975 .setPacketsSent(newStats.packetsSent() - prvStats.packetsSent())
976 .setBytesReceived(newStats.bytesReceived() - prvStats.bytesReceived())
977 .setBytesSent(newStats.bytesSent() - prvStats.bytesSent())
978 .setPacketsRxDropped(newStats.packetsRxDropped() - prvStats.packetsRxDropped())
979 .setPacketsTxDropped(newStats.packetsTxDropped() - prvStats.packetsTxDropped())
980 .setPacketsRxErrors(newStats.packetsRxErrors() - prvStats.packetsRxErrors())
981 .setPacketsTxErrors(newStats.packetsTxErrors() - prvStats.packetsTxErrors())
982 .setDurationSec(deltaStatsSec)
983 .setDurationNano(deltaStatsNano)
984 .build();
985 return deltaStats;
sangho538108b2015-04-08 14:29:20 -0700986 }
987
988 @Override
989 public List<PortStatistics> getPortStatistics(DeviceId deviceId) {
sangho538108b2015-04-08 14:29:20 -0700990 Map<PortNumber, PortStatistics> portStats = devicePortStats.get(deviceId);
991 if (portStats == null) {
992 return Collections.emptyList();
993 }
994 return ImmutableList.copyOf(portStats.values());
995 }
996
997 @Override
Viswanath KSP22774cd2016-08-20 20:06:30 +0530998 public PortStatistics getStatisticsForPort(DeviceId deviceId, PortNumber portNumber) {
999 Map<PortNumber, PortStatistics> portStatsMap = devicePortStats.get(deviceId);
1000 if (portStatsMap == null) {
1001 return null;
1002 }
1003 PortStatistics portStats = portStatsMap.get(portNumber);
1004 return portStats;
1005 }
1006
1007 @Override
Dusan Pajin11ff4a82015-08-20 18:03:05 +02001008 public List<PortStatistics> getPortDeltaStatistics(DeviceId deviceId) {
1009 Map<PortNumber, PortStatistics> portStats = devicePortDeltaStats.get(deviceId);
1010 if (portStats == null) {
1011 return Collections.emptyList();
1012 }
1013 return ImmutableList.copyOf(portStats.values());
1014 }
1015
1016 @Override
Viswanath KSP22774cd2016-08-20 20:06:30 +05301017 public PortStatistics getDeltaStatisticsForPort(DeviceId deviceId, PortNumber portNumber) {
1018 Map<PortNumber, PortStatistics> portStatsMap = devicePortDeltaStats.get(deviceId);
1019 if (portStatsMap == null) {
1020 return null;
1021 }
1022 PortStatistics portStats = portStatsMap.get(portNumber);
1023 return portStats;
1024 }
1025
1026 @Override
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001027 public Port getPort(DeviceId deviceId, PortNumber portNumber) {
1028 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
1029 return ports == null ? null : ports.get(portNumber);
1030 }
1031
1032 @Override
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -07001033 public PortDescription getPortDescription(ProviderId pid,
1034 DeviceId deviceId,
1035 PortNumber portNumber) {
1036 Map<ProviderId, DeviceDescriptions> descs = this.deviceDescs.get(deviceId);
1037 if (descs == null) {
1038 return null;
1039 }
1040 // inner-Map(=descs) is HashMap, thus requires synchronization even for reads
1041 final Optional<DeviceDescriptions> devDescs;
1042 synchronized (descs) {
1043 devDescs = Optional.ofNullable(descs.get(pid));
1044 }
1045 // DeviceDescriptions is concurrent access-safe
1046 return devDescs
1047 .map(deviceDescriptions -> deviceDescriptions.getPortDesc(portNumber))
1048 .map(Timestamped::value)
1049 .orElse(null);
1050 }
1051
1052 @Override
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001053 public boolean isAvailable(DeviceId deviceId) {
1054 return availableDevices.contains(deviceId);
1055 }
1056
1057 @Override
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001058 public synchronized DeviceEvent removeDevice(DeviceId deviceId) {
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001059 final NodeId myId = clusterService.getLocalNode().id();
1060 NodeId master = mastershipService.getMasterFor(deviceId);
1061
1062 // if there exist a master, forward
1063 // if there is no master, try to become one and process
1064
1065 boolean relinquishAtEnd = false;
1066 if (master == null) {
1067 final MastershipRole myRole = mastershipService.getLocalRole(deviceId);
1068 if (myRole != MastershipRole.NONE) {
1069 relinquishAtEnd = true;
1070 }
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001071 log.debug("Temporarily requesting role for {} to remove", deviceId);
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001072 mastershipService.requestRoleFor(deviceId);
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001073 MastershipTerm term = termService.getMastershipTerm(deviceId);
Madan Jampani7cdf3f12015-05-12 23:18:05 -07001074 if (term != null && myId.equals(term.master())) {
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001075 master = myId;
1076 }
Yuta HIGUCHIe8252bb2014-10-22 09:41:01 -07001077 }
1078
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001079 if (!myId.equals(master)) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001080 log.debug("{} has control of {}, forwarding remove request",
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001081 master, deviceId);
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001082
Brian O'Connor5eb77c82015-03-02 18:09:39 -08001083 // TODO check unicast return value
Madan Jampani2bfa94c2015-04-11 05:03:49 -07001084 clusterCommunicator.unicast(deviceId, DEVICE_REMOVE_REQ, SERIALIZER::encode, master);
Brian O'Connor5eb77c82015-03-02 18:09:39 -08001085 /* error log:
1086 log.error("Failed to forward {} remove request to {}", deviceId, master, e);
1087 */
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001088
Brian O'Connor5eb77c82015-03-02 18:09:39 -08001089 // event will be triggered after master processes it.
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001090 return null;
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001091 }
1092
1093 // I have control..
1094
Yuta HIGUCHI093e83e2014-10-10 22:26:11 -07001095 Timestamp timestamp = deviceClockService.getTimestamp(deviceId);
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001096 DeviceEvent event = removeDeviceInternal(deviceId, timestamp);
Madan Jampani3fc72ed2014-10-08 12:50:27 -07001097 if (event != null) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001098 log.debug("Notifying peers of a device removed topology event for deviceId: {}",
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001099 deviceId);
Jonathan Hart7d656f42015-01-27 14:07:23 -08001100 notifyPeers(new InternalDeviceRemovedEvent(deviceId, timestamp));
Madan Jampani3fc72ed2014-10-08 12:50:27 -07001101 }
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001102 if (relinquishAtEnd) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001103 log.debug("Relinquishing temporary role acquired for {}", deviceId);
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001104 mastershipService.relinquishMastership(deviceId);
1105 }
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001106 return event;
1107 }
1108
1109 private DeviceEvent removeDeviceInternal(DeviceId deviceId,
1110 Timestamp timestamp) {
1111
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001112 Map<ProviderId, DeviceDescriptions> descs = getOrCreateDeviceDescriptionsMap(deviceId);
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -07001113 synchronized (descs) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001114 // accept removal request if given timestamp is newer than
1115 // the latest Timestamp from Primary provider
1116 DeviceDescriptions primDescs = getPrimaryDescriptions(descs);
Thomas Vachuska710293f2015-11-13 12:29:31 -08001117 if (primDescs == null) {
1118 return null;
1119 }
1120
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001121 Timestamp lastTimestamp = primDescs.getLatestTimestamp();
1122 if (timestamp.compareTo(lastTimestamp) <= 0) {
1123 // outdated event ignore
1124 return null;
1125 }
1126 removalRequest.put(deviceId, timestamp);
1127
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -07001128 Device device = devices.remove(deviceId);
1129 // should DEVICE_REMOVED carry removed ports?
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001130 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
1131 if (ports != null) {
1132 ports.clear();
1133 }
1134 markOfflineInternal(deviceId, timestamp);
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -07001135 descs.clear();
1136 return device == null ? null :
Dusan Pajin11ff4a82015-08-20 18:03:05 +02001137 new DeviceEvent(DeviceEvent.Type.DEVICE_REMOVED, device, null);
Yuta HIGUCHI0d6a5e62014-10-03 15:54:09 -07001138 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001139 }
1140
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001141 /**
1142 * Checks if given timestamp is superseded by removal request
1143 * with more recent timestamp.
1144 *
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001145 * @param deviceId identifier of a device
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001146 * @param timestampToCheck timestamp of an event to check
1147 * @return true if device is already removed
1148 */
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001149 private boolean isDeviceRemoved(DeviceId deviceId, Timestamp timestampToCheck) {
1150 Timestamp removalTimestamp = removalRequest.get(deviceId);
1151 if (removalTimestamp != null &&
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001152 removalTimestamp.compareTo(timestampToCheck) >= 0) {
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001153 // removalRequest is more recent
1154 return true;
1155 }
1156 return false;
1157 }
1158
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001159 /**
1160 * Returns a Device, merging description given from multiple Providers.
1161 *
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001162 * @param deviceId device identifier
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001163 * @param providerDescs Collection of Descriptions from multiple providers
1164 * @return Device instance
1165 */
1166 private Device composeDevice(DeviceId deviceId,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001167 Map<ProviderId, DeviceDescriptions> providerDescs) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001168
Thomas Vachuska444eda62014-10-28 13:09:42 -07001169 checkArgument(!providerDescs.isEmpty(), "No device descriptions supplied");
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001170
Jonathan Hartd9df7bd2015-11-10 17:10:25 -08001171 ProviderId primary = pickPrimaryPid(providerDescs);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001172
1173 DeviceDescriptions desc = providerDescs.get(primary);
1174
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001175 final DeviceDescription base = desc.getDeviceDesc().value();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001176 Type type = base.type();
1177 String manufacturer = base.manufacturer();
1178 String hwVersion = base.hwVersion();
1179 String swVersion = base.swVersion();
1180 String serialNumber = base.serialNumber();
alshabib7911a052014-10-16 17:49:37 -07001181 ChassisId chassisId = base.chassisId();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001182 DefaultAnnotations annotations = DefaultAnnotations.builder().build();
1183 annotations = merge(annotations, base.annotations());
1184
1185 for (Entry<ProviderId, DeviceDescriptions> e : providerDescs.entrySet()) {
1186 if (e.getKey().equals(primary)) {
1187 continue;
1188 }
Yuta HIGUCHI65934892014-12-04 17:47:44 -08001189 // Note: should keep track of Description timestamp in the future
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001190 // and only merge conflicting keys when timestamp is newer.
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001191 // Currently assuming there will never be a key conflict between
1192 // providers
1193
1194 // annotation merging. not so efficient, should revisit later
1195 annotations = merge(annotations, e.getValue().getDeviceDesc().value().annotations());
1196 }
1197
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001198 return new DefaultDevice(primary, deviceId, type, manufacturer,
1199 hwVersion, swVersion, serialNumber,
1200 chassisId, annotations);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001201 }
1202
Marc De Leenheer88194c32015-05-29 22:10:59 -07001203 private Port buildTypedPort(Device device, PortNumber number, boolean isEnabled,
1204 PortDescription description, Annotations annotations) {
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -08001205 // FIXME this switch need to go away once all ports are done.
Marc De Leenheer88194c32015-05-29 22:10:59 -07001206 switch (description.type()) {
1207 case OMS:
HIGUCHI Yuta95d83e82016-04-26 12:13:48 -07001208 if (description instanceof OmsPortDescription) {
1209 // remove if-block once deprecation is complete
1210 OmsPortDescription omsDesc = (OmsPortDescription) description;
1211 return new OmsPort(device, number, isEnabled, omsDesc.minFrequency(),
1212 omsDesc.maxFrequency(), omsDesc.grid(), annotations);
1213 }
1214 // same as default
1215 return new DefaultPort(device, number, isEnabled, description.type(),
1216 description.portSpeed(), annotations);
Marc De Leenheer88194c32015-05-29 22:10:59 -07001217 case OCH:
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -08001218 if (description instanceof OchPortDescription) {
1219 // remove if-block once Och deprecation is complete
1220 OchPortDescription ochDesc = (OchPortDescription) description;
1221 return new OchPort(device, number, isEnabled, ochDesc.signalType(),
1222 ochDesc.isTunable(), ochDesc.lambda(), annotations);
1223 }
1224 return new DefaultPort(device, number, isEnabled, description.type(),
1225 description.portSpeed(), annotations);
Marc De Leenheer88194c32015-05-29 22:10:59 -07001226 case ODUCLT:
HIGUCHI Yuta4c0ef6b2016-05-02 19:45:41 -07001227 if (description instanceof OduCltPortDescription) {
1228 // remove if-block once deprecation is complete
1229 OduCltPortDescription oduDesc = (OduCltPortDescription) description;
1230 return new OduCltPort(device, number, isEnabled, oduDesc.signalType(), annotations);
1231 }
1232 // same as default
1233 return new DefaultPort(device, number, isEnabled, description.type(),
1234 description.portSpeed(), annotations);
Rimon Ashkenazy8ebfff02016-02-01 11:56:36 +02001235 case OTU:
HIGUCHI Yuta5be3e822016-05-03 13:51:42 -07001236 if (description instanceof OtuPortDescription) {
1237 // remove if-block once deprecation is complete
1238 OtuPortDescription otuDesc = (OtuPortDescription) description;
1239 return new OtuPort(device, number, isEnabled, otuDesc.signalType(), annotations);
1240 }
1241 // same as default
1242 return new DefaultPort(device, number, isEnabled, description.type(),
1243 description.portSpeed(), annotations);
Marc De Leenheer88194c32015-05-29 22:10:59 -07001244 default:
1245 return new DefaultPort(device, number, isEnabled, description.type(),
1246 description.portSpeed(), annotations);
1247 }
1248 }
1249
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001250 /**
1251 * Returns a Port, merging description given from multiple Providers.
1252 *
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001253 * @param device device the port is on
1254 * @param number port number
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001255 * @param descsMap Collection of Descriptions from multiple providers
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001256 * @return Port instance
1257 */
1258 private Port composePort(Device device, PortNumber number,
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001259 Map<ProviderId, DeviceDescriptions> descsMap) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001260
Jonathan Hartd9df7bd2015-11-10 17:10:25 -08001261 ProviderId primary = pickPrimaryPid(descsMap);
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001262 DeviceDescriptions primDescs = descsMap.get(primary);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001263 // if no primary, assume not enabled
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001264 boolean isEnabled = false;
1265 DefaultAnnotations annotations = DefaultAnnotations.builder().build();
Ayaka Koshibeae541732015-05-19 13:37:27 -07001266 Timestamp newest = null;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001267 final Timestamped<PortDescription> portDesc = primDescs.getPortDesc(number);
1268 if (portDesc != null) {
1269 isEnabled = portDesc.value().isEnabled();
1270 annotations = merge(annotations, portDesc.value().annotations());
Ayaka Koshibeae541732015-05-19 13:37:27 -07001271 newest = portDesc.timestamp();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001272 }
Ayaka Koshibeae541732015-05-19 13:37:27 -07001273 Port updated = null;
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001274 for (Entry<ProviderId, DeviceDescriptions> e : descsMap.entrySet()) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001275 if (e.getKey().equals(primary)) {
1276 continue;
1277 }
Yuta HIGUCHI65934892014-12-04 17:47:44 -08001278 // Note: should keep track of Description timestamp in the future
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001279 // and only merge conflicting keys when timestamp is newer.
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001280 // Currently assuming there will never be a key conflict between
1281 // providers
1282
1283 // annotation merging. not so efficient, should revisit later
1284 final Timestamped<PortDescription> otherPortDesc = e.getValue().getPortDesc(number);
1285 if (otherPortDesc != null) {
Ayaka Koshibeae541732015-05-19 13:37:27 -07001286 if (newest != null && newest.isNewerThan(otherPortDesc.timestamp())) {
1287 continue;
1288 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001289 annotations = merge(annotations, otherPortDesc.value().annotations());
Ayaka Koshibe74b55272015-05-28 15:16:04 -07001290 PortDescription other = otherPortDesc.value();
Marc De Leenheer88194c32015-05-29 22:10:59 -07001291 updated = buildTypedPort(device, number, isEnabled, other, annotations);
Ayaka Koshibeae541732015-05-19 13:37:27 -07001292 newest = otherPortDesc.timestamp();
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001293 }
1294 }
Marc De Leenheer4b18a232015-04-30 11:58:20 -07001295 if (portDesc == null) {
Ayaka Koshibeae541732015-05-19 13:37:27 -07001296 return updated == null ? new DefaultPort(device, number, false, annotations) : updated;
Marc De Leenheer4b18a232015-04-30 11:58:20 -07001297 }
Ayaka Koshibe74b55272015-05-28 15:16:04 -07001298 PortDescription current = portDesc.value();
1299 return updated == null
Marc De Leenheer88194c32015-05-29 22:10:59 -07001300 ? buildTypedPort(device, number, isEnabled, current, annotations)
Ayaka Koshibe74b55272015-05-28 15:16:04 -07001301 : updated;
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001302 }
1303
1304 /**
1305 * @return primary ProviderID, or randomly chosen one if none exists
1306 */
Jonathan Hartd9df7bd2015-11-10 17:10:25 -08001307 private ProviderId pickPrimaryPid(
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001308 Map<ProviderId, DeviceDescriptions> providerDescs) {
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001309 ProviderId fallBackPrimary = null;
1310 for (Entry<ProviderId, DeviceDescriptions> e : providerDescs.entrySet()) {
1311 if (!e.getKey().isAncillary()) {
1312 return e.getKey();
1313 } else if (fallBackPrimary == null) {
1314 // pick randomly as a fallback in case there is no primary
1315 fallBackPrimary = e.getKey();
1316 }
1317 }
1318 return fallBackPrimary;
1319 }
1320
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001321 private DeviceDescriptions getPrimaryDescriptions(
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001322 Map<ProviderId, DeviceDescriptions> providerDescs) {
Jonathan Hartd9df7bd2015-11-10 17:10:25 -08001323 ProviderId pid = pickPrimaryPid(providerDescs);
Yuta HIGUCHIc35efac2014-10-06 14:43:53 -07001324 return providerDescs.get(pid);
1325 }
1326
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001327 private void unicastMessage(NodeId recipient, MessageSubject subject, Object event) throws IOException {
Madan Jampani2bfa94c2015-04-11 05:03:49 -07001328 clusterCommunicator.unicast(event, subject, SERIALIZER::encode, recipient);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001329 }
1330
Jonathan Hart7d656f42015-01-27 14:07:23 -08001331 private void broadcastMessage(MessageSubject subject, Object event) {
Madan Jampani2bfa94c2015-04-11 05:03:49 -07001332 clusterCommunicator.broadcast(event, subject, SERIALIZER::encode);
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001333 }
Madan Jampani47c93732014-10-06 20:46:08 -07001334
Jonathan Hart7d656f42015-01-27 14:07:23 -08001335 private void notifyPeers(InternalDeviceEvent event) {
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001336 broadcastMessage(DEVICE_UPDATE, event);
Madan Jampani47c93732014-10-06 20:46:08 -07001337 }
1338
Jonathan Hart7d656f42015-01-27 14:07:23 -08001339 private void notifyPeers(InternalDeviceOfflineEvent event) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001340 broadcastMessage(GossipDeviceStoreMessageSubjects.DEVICE_OFFLINE, event);
Madan Jampani25322532014-10-08 11:20:38 -07001341 }
1342
Jonathan Hart7d656f42015-01-27 14:07:23 -08001343 private void notifyPeers(InternalDeviceRemovedEvent event) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001344 broadcastMessage(GossipDeviceStoreMessageSubjects.DEVICE_REMOVED, event);
Madan Jampani3fc72ed2014-10-08 12:50:27 -07001345 }
1346
Jonathan Hart7d656f42015-01-27 14:07:23 -08001347 private void notifyPeers(InternalPortEvent event) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001348 broadcastMessage(GossipDeviceStoreMessageSubjects.PORT_UPDATE, event);
Madan Jampani47c93732014-10-06 20:46:08 -07001349 }
1350
Jonathan Hart7d656f42015-01-27 14:07:23 -08001351 private void notifyPeers(InternalPortStatusEvent event) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001352 broadcastMessage(GossipDeviceStoreMessageSubjects.PORT_STATUS_UPDATE, event);
1353 }
1354
1355 private void notifyPeer(NodeId recipient, InternalDeviceEvent event) {
1356 try {
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001357 unicastMessage(recipient, DEVICE_UPDATE, event);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001358 } catch (IOException e) {
1359 log.error("Failed to send" + event + " to " + recipient, e);
1360 }
1361 }
1362
1363 private void notifyPeer(NodeId recipient, InternalDeviceOfflineEvent event) {
1364 try {
1365 unicastMessage(recipient, GossipDeviceStoreMessageSubjects.DEVICE_OFFLINE, event);
1366 } catch (IOException e) {
1367 log.error("Failed to send" + event + " to " + recipient, e);
1368 }
1369 }
1370
1371 private void notifyPeer(NodeId recipient, InternalDeviceRemovedEvent event) {
1372 try {
1373 unicastMessage(recipient, GossipDeviceStoreMessageSubjects.DEVICE_REMOVED, event);
1374 } catch (IOException e) {
1375 log.error("Failed to send" + event + " to " + recipient, e);
1376 }
1377 }
1378
1379 private void notifyPeer(NodeId recipient, InternalPortEvent event) {
1380 try {
1381 unicastMessage(recipient, GossipDeviceStoreMessageSubjects.PORT_UPDATE, event);
1382 } catch (IOException e) {
1383 log.error("Failed to send" + event + " to " + recipient, e);
1384 }
1385 }
1386
1387 private void notifyPeer(NodeId recipient, InternalPortStatusEvent event) {
1388 try {
1389 unicastMessage(recipient, GossipDeviceStoreMessageSubjects.PORT_STATUS_UPDATE, event);
1390 } catch (IOException e) {
1391 log.error("Failed to send" + event + " to " + recipient, e);
1392 }
1393 }
1394
1395 private DeviceAntiEntropyAdvertisement createAdvertisement() {
1396 final NodeId self = clusterService.getLocalNode().id();
1397
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001398 final int numDevices = deviceDescs.size();
1399 Map<DeviceFragmentId, Timestamp> adDevices = new HashMap<>(numDevices);
1400 final int portsPerDevice = 8; // random factor to minimize reallocation
1401 Map<PortFragmentId, Timestamp> adPorts = new HashMap<>(numDevices * portsPerDevice);
1402 Map<DeviceId, Timestamp> adOffline = new HashMap<>(numDevices);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001403
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -08001404 deviceDescs.forEach((deviceId, devDescs) -> {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001405
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001406 // for each Device...
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001407 synchronized (devDescs) {
1408
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001409 // send device offline timestamp
1410 Timestamp lOffline = this.offline.get(deviceId);
1411 if (lOffline != null) {
1412 adOffline.put(deviceId, lOffline);
1413 }
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001414
1415 for (Entry<ProviderId, DeviceDescriptions>
1416 prov : devDescs.entrySet()) {
1417
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001418 // for each Provider Descriptions...
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001419 final ProviderId provId = prov.getKey();
1420 final DeviceDescriptions descs = prov.getValue();
1421
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001422 adDevices.put(new DeviceFragmentId(deviceId, provId),
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001423 descs.getDeviceDesc().timestamp());
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001424
1425 for (Entry<PortNumber, Timestamped<PortDescription>>
1426 portDesc : descs.getPortDescs().entrySet()) {
1427
1428 final PortNumber number = portDesc.getKey();
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001429 adPorts.put(new PortFragmentId(deviceId, provId, number),
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001430 portDesc.getValue().timestamp());
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001431 }
1432 }
1433 }
Yuta HIGUCHIb6cfac32014-11-25 13:37:27 -08001434 });
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001435
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001436 return new DeviceAntiEntropyAdvertisement(self, adDevices, adPorts, adOffline);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001437 }
1438
1439 /**
1440 * Responds to anti-entropy advertisement message.
HIGUCHI Yuta67023a22016-03-28 13:35:44 -07001441 * <p>
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001442 * Notify sender about out-dated information using regular replication message.
1443 * Send back advertisement to sender if not in sync.
1444 *
1445 * @param advertisement to respond to
1446 */
1447 private void handleAdvertisement(DeviceAntiEntropyAdvertisement advertisement) {
1448
1449 final NodeId sender = advertisement.sender();
1450
1451 Map<DeviceFragmentId, Timestamp> devAds = new HashMap<>(advertisement.deviceFingerPrints());
1452 Map<PortFragmentId, Timestamp> portAds = new HashMap<>(advertisement.ports());
1453 Map<DeviceId, Timestamp> offlineAds = new HashMap<>(advertisement.offline());
1454
1455 // Fragments to request
1456 Collection<DeviceFragmentId> reqDevices = new ArrayList<>();
1457 Collection<PortFragmentId> reqPorts = new ArrayList<>();
1458
Yuta HIGUCHIbf71dff2014-10-14 16:02:33 -07001459 for (Entry<DeviceId, Map<ProviderId, DeviceDescriptions>> de : deviceDescs.entrySet()) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001460 final DeviceId deviceId = de.getKey();
1461 final Map<ProviderId, DeviceDescriptions> lDevice = de.getValue();
1462
1463 synchronized (lDevice) {
1464 // latestTimestamp across provider
1465 // Note: can be null initially
1466 Timestamp localLatest = offline.get(deviceId);
1467
1468 // handle device Ads
1469 for (Entry<ProviderId, DeviceDescriptions> prov : lDevice.entrySet()) {
1470 final ProviderId provId = prov.getKey();
1471 final DeviceDescriptions lDeviceDescs = prov.getValue();
1472
1473 final DeviceFragmentId devFragId = new DeviceFragmentId(deviceId, provId);
1474
1475
1476 Timestamped<DeviceDescription> lProvDevice = lDeviceDescs.getDeviceDesc();
1477 Timestamp advDevTimestamp = devAds.get(devFragId);
1478
Jonathan Hart403ea932015-02-20 16:23:00 -08001479 if (advDevTimestamp == null || lProvDevice.isNewerThan(
1480 advDevTimestamp)) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001481 // remote does not have it or outdated, suggest
1482 notifyPeer(sender, new InternalDeviceEvent(provId, deviceId, lProvDevice));
1483 } else if (!lProvDevice.timestamp().equals(advDevTimestamp)) {
1484 // local is outdated, request
1485 reqDevices.add(devFragId);
1486 }
1487
1488 // handle port Ads
1489 for (Entry<PortNumber, Timestamped<PortDescription>>
1490 pe : lDeviceDescs.getPortDescs().entrySet()) {
1491
1492 final PortNumber num = pe.getKey();
1493 final Timestamped<PortDescription> lPort = pe.getValue();
1494
1495 final PortFragmentId portFragId = new PortFragmentId(deviceId, provId, num);
1496
1497 Timestamp advPortTimestamp = portAds.get(portFragId);
Jonathan Hart403ea932015-02-20 16:23:00 -08001498 if (advPortTimestamp == null || lPort.isNewerThan(
1499 advPortTimestamp)) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001500 // remote does not have it or outdated, suggest
1501 notifyPeer(sender, new InternalPortStatusEvent(provId, deviceId, lPort));
1502 } else if (!lPort.timestamp().equals(advPortTimestamp)) {
1503 // local is outdated, request
1504 log.trace("need update {} < {}", lPort.timestamp(), advPortTimestamp);
1505 reqPorts.add(portFragId);
1506 }
1507
1508 // remove port Ad already processed
1509 portAds.remove(portFragId);
1510 } // end local port loop
1511
1512 // remove device Ad already processed
1513 devAds.remove(devFragId);
1514
1515 // find latest and update
1516 final Timestamp providerLatest = lDeviceDescs.getLatestTimestamp();
1517 if (localLatest == null ||
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001518 providerLatest.compareTo(localLatest) > 0) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001519 localLatest = providerLatest;
1520 }
1521 } // end local provider loop
1522
1523 // checking if remote timestamp is more recent.
1524 Timestamp rOffline = offlineAds.get(deviceId);
1525 if (rOffline != null &&
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001526 rOffline.compareTo(localLatest) > 0) {
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001527 // remote offline timestamp suggests that the
1528 // device is off-line
1529 markOfflineInternal(deviceId, rOffline);
1530 }
1531
1532 Timestamp lOffline = offline.get(deviceId);
1533 if (lOffline != null && rOffline == null) {
1534 // locally offline, but remote is online, suggest offline
1535 notifyPeer(sender, new InternalDeviceOfflineEvent(deviceId, lOffline));
1536 }
1537
1538 // remove device offline Ad already processed
1539 offlineAds.remove(deviceId);
1540 } // end local device loop
1541 } // device lock
1542
1543 // If there is any Ads left, request them
1544 log.trace("Ads left {}, {}", devAds, portAds);
1545 reqDevices.addAll(devAds.keySet());
1546 reqPorts.addAll(portAds.keySet());
1547
1548 if (reqDevices.isEmpty() && reqPorts.isEmpty()) {
1549 log.trace("Nothing to request to remote peer {}", sender);
1550 return;
1551 }
1552
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001553 log.debug("Need to sync {} {}", reqDevices, reqPorts);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001554
1555 // 2-way Anti-Entropy for now
1556 try {
1557 unicastMessage(sender, DEVICE_ADVERTISE, createAdvertisement());
1558 } catch (IOException e) {
1559 log.error("Failed to send response advertisement to " + sender, e);
1560 }
1561
1562// Sketch of 3-way Anti-Entropy
1563// DeviceAntiEntropyRequest request = new DeviceAntiEntropyRequest(self, reqDevices, reqPorts);
1564// ClusterMessage message = new ClusterMessage(
1565// clusterService.getLocalNode().id(),
1566// GossipDeviceStoreMessageSubjects.DEVICE_REQUEST,
1567// SERIALIZER.encode(request));
1568//
1569// try {
1570// clusterCommunicator.unicast(message, advertisement.sender());
1571// } catch (IOException e) {
1572// log.error("Failed to send advertisement reply to "
1573// + advertisement.sender(), e);
1574// }
Madan Jampani47c93732014-10-06 20:46:08 -07001575 }
1576
Madan Jampani255a58b2014-10-09 12:08:20 -07001577 private void notifyDelegateIfNotNull(DeviceEvent event) {
1578 if (event != null) {
1579 notifyDelegate(event);
1580 }
1581 }
1582
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001583 private final class SendAdvertisementTask implements Runnable {
1584
1585 @Override
1586 public void run() {
1587 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001588 log.debug("Interrupted, quitting");
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001589 return;
1590 }
1591
1592 try {
1593 final NodeId self = clusterService.getLocalNode().id();
1594 Set<ControllerNode> nodes = clusterService.getNodes();
1595
1596 ImmutableList<NodeId> nodeIds = FluentIterable.from(nodes)
1597 .transform(toNodeId())
1598 .toList();
1599
1600 if (nodeIds.size() == 1 && nodeIds.get(0).equals(self)) {
Yuta HIGUCHIfaf9e1c2014-11-20 00:31:29 -08001601 log.trace("No other peers in the cluster.");
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001602 return;
1603 }
1604
1605 NodeId peer;
1606 do {
1607 int idx = RandomUtils.nextInt(0, nodeIds.size());
1608 peer = nodeIds.get(idx);
1609 } while (peer.equals(self));
1610
1611 DeviceAntiEntropyAdvertisement ad = createAdvertisement();
1612
1613 if (Thread.currentThread().isInterrupted()) {
Yuta HIGUCHI1a012722014-11-20 15:21:41 -08001614 log.debug("Interrupted, quitting");
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001615 return;
1616 }
1617
1618 try {
1619 unicastMessage(peer, DEVICE_ADVERTISE, ad);
1620 } catch (IOException e) {
Yuta HIGUCHI78f3a0a2014-10-16 17:24:20 -07001621 log.debug("Failed to send anti-entropy advertisement to {}", peer);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001622 return;
1623 }
1624 } catch (Exception e) {
1625 // catch all Exception to avoid Scheduled task being suppressed.
1626 log.error("Exception thrown while sending advertisement", e);
1627 }
1628 }
1629 }
1630
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001631 private void handleDeviceEvent(InternalDeviceEvent event) {
1632 ProviderId providerId = event.providerId();
1633 DeviceId deviceId = event.deviceId();
1634 Timestamped<DeviceDescription> deviceDescription = event.deviceDescription();
Madan Jampani25322532014-10-08 11:20:38 -07001635
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001636 try {
1637 notifyDelegateIfNotNull(createOrUpdateDeviceInternal(providerId, deviceId,
1638 deviceDescription));
1639 } catch (Exception e) {
1640 log.warn("Exception thrown handling device update", e);
Madan Jampani47c93732014-10-06 20:46:08 -07001641 }
1642 }
1643
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001644 private void handleDeviceOfflineEvent(InternalDeviceOfflineEvent event) {
1645 DeviceId deviceId = event.deviceId();
1646 Timestamp timestamp = event.timestamp();
Madan Jampani25322532014-10-08 11:20:38 -07001647
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001648 try {
1649 notifyDelegateIfNotNull(markOfflineInternal(deviceId, timestamp));
1650 } catch (Exception e) {
1651 log.warn("Exception thrown handling device offline", e);
Madan Jampani25322532014-10-08 11:20:38 -07001652 }
1653 }
1654
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001655 private void handleRemoveRequest(DeviceId did) {
1656 try {
1657 removeDevice(did);
1658 } catch (Exception e) {
1659 log.warn("Exception thrown handling device remove", e);
Yuta HIGUCHI53afd5b2014-11-03 18:03:08 -08001660 }
1661 }
1662
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001663 private void handleDeviceRemovedEvent(InternalDeviceRemovedEvent event) {
1664 DeviceId deviceId = event.deviceId();
1665 Timestamp timestamp = event.timestamp();
Madan Jampani3fc72ed2014-10-08 12:50:27 -07001666
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001667 try {
1668 notifyDelegateIfNotNull(removeDeviceInternal(deviceId, timestamp));
1669 } catch (Exception e) {
1670 log.warn("Exception thrown handling device removed", e);
Madan Jampani3fc72ed2014-10-08 12:50:27 -07001671 }
1672 }
1673
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001674 private void handlePortEvent(InternalPortEvent event) {
1675 ProviderId providerId = event.providerId();
1676 DeviceId deviceId = event.deviceId();
1677 Timestamped<List<PortDescription>> portDescriptions = event.portDescriptions();
Madan Jampani47c93732014-10-06 20:46:08 -07001678
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001679 if (getDevice(deviceId) == null) {
1680 log.debug("{} not found on this node yet, ignoring.", deviceId);
1681 // Note: dropped information will be recovered by anti-entropy
1682 return;
1683 }
Madan Jampani47c93732014-10-06 20:46:08 -07001684
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001685 try {
1686 notifyDelegate(updatePortsInternal(providerId, deviceId, portDescriptions));
1687 } catch (Exception e) {
1688 log.warn("Exception thrown handling port update", e);
Madan Jampani47c93732014-10-06 20:46:08 -07001689 }
1690 }
1691
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001692 private void handlePortStatusEvent(InternalPortStatusEvent event) {
1693 ProviderId providerId = event.providerId();
1694 DeviceId deviceId = event.deviceId();
1695 Timestamped<PortDescription> portDescription = event.portDescription();
Madan Jampani47c93732014-10-06 20:46:08 -07001696
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001697 if (getDevice(deviceId) == null) {
1698 log.debug("{} not found on this node yet, ignoring.", deviceId);
1699 // Note: dropped information will be recovered by anti-entropy
1700 return;
1701 }
Madan Jampani47c93732014-10-06 20:46:08 -07001702
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001703 try {
1704 notifyDelegateIfNotNull(updatePortStatusInternal(providerId, deviceId, portDescription));
1705 } catch (Exception e) {
1706 log.warn("Exception thrown handling port update", e);
Madan Jampani47c93732014-10-06 20:46:08 -07001707 }
1708 }
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001709
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001710 private void handleDeviceAdvertisement(DeviceAntiEntropyAdvertisement advertisement) {
1711 try {
1712 handleAdvertisement(advertisement);
1713 } catch (Exception e) {
1714 log.warn("Exception thrown handling Device advertisements.", e);
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -07001715 }
1716 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -08001717
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001718 private void handleDeviceInjectedEvent(DeviceInjectedEvent event) {
1719 ProviderId providerId = event.providerId();
1720 DeviceId deviceId = event.deviceId();
1721 DeviceDescription deviceDescription = event.deviceDescription();
1722 if (!deviceClockService.isTimestampAvailable(deviceId)) {
1723 // workaround for ONOS-1208
1724 log.warn("Not ready to accept update. Dropping {}", deviceDescription);
1725 return;
1726 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -08001727
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001728 try {
1729 createOrUpdateDevice(providerId, deviceId, deviceDescription);
1730 } catch (Exception e) {
1731 log.warn("Exception thrown handling device injected event.", e);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -08001732 }
1733 }
1734
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001735 private void handlePortInjectedEvent(PortInjectedEvent event) {
1736 ProviderId providerId = event.providerId();
1737 DeviceId deviceId = event.deviceId();
1738 List<PortDescription> portDescriptions = event.portDescriptions();
1739 if (!deviceClockService.isTimestampAvailable(deviceId)) {
1740 // workaround for ONOS-1208
1741 log.warn("Not ready to accept update. Dropping {}", portDescriptions);
1742 return;
1743 }
Marc De Leenheerb473b9d2015-02-06 15:21:03 -08001744
Jonathan Hart46ab5cc2016-09-15 15:42:39 -07001745 try {
1746 updatePorts(providerId, deviceId, portDescriptions);
1747 } catch (Exception e) {
1748 log.warn("Exception thrown handling port injected event.", e);
Marc De Leenheerb473b9d2015-02-06 15:21:03 -08001749 }
1750 }
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001751
1752 private class InternalPortStatsListener
1753 implements EventuallyConsistentMapListener<DeviceId, Map<PortNumber, PortStatistics>> {
1754 @Override
1755 public void event(EventuallyConsistentMapEvent<DeviceId, Map<PortNumber, PortStatistics>> event) {
1756 if (event.type() == PUT) {
1757 Device device = devices.get(event.key());
1758 if (device != null) {
Thomas Vachuskad4955ae2016-08-23 14:56:37 -07001759 notifyDelegate(new DeviceEvent(PORT_STATS_UPDATED, device));
Thomas Vachuskafdbc4c22015-05-29 15:53:01 -07001760 }
1761 }
1762 }
1763 }
Yuta HIGUCHI67a527f2014-10-02 22:23:54 -07001764}