blob: 6d16a61c35425ca0b832e183e364f441c1141d5f [file] [log] [blame]
tome5ec3fd2014-09-04 15:18:06 -07001package org.onlab.onos.net.trivial.impl;
2
tom46a220d2014-09-05 08:25:56 -07003import com.google.common.collect.ImmutableList;
tome5ec3fd2014-09-04 15:18:06 -07004import org.onlab.onos.net.DefaultDevice;
tom29df6f42014-09-05 08:14:14 -07005import org.onlab.onos.net.DefaultPort;
tome5ec3fd2014-09-04 15:18:06 -07006import org.onlab.onos.net.Device;
7import org.onlab.onos.net.DeviceId;
8import org.onlab.onos.net.MastershipRole;
9import org.onlab.onos.net.Port;
10import org.onlab.onos.net.PortNumber;
11import org.onlab.onos.net.device.DeviceDescription;
12import org.onlab.onos.net.device.DeviceEvent;
13import org.onlab.onos.net.device.PortDescription;
14import org.onlab.onos.net.provider.ProviderId;
15
16import java.util.ArrayList;
17import java.util.Collections;
tom29df6f42014-09-05 08:14:14 -070018import java.util.HashMap;
tome5ec3fd2014-09-04 15:18:06 -070019import java.util.HashSet;
tom29df6f42014-09-05 08:14:14 -070020import java.util.Iterator;
tome5ec3fd2014-09-04 15:18:06 -070021import java.util.List;
22import java.util.Map;
23import java.util.Objects;
24import java.util.Set;
25import java.util.concurrent.ConcurrentHashMap;
26
27import static com.google.common.base.Preconditions.checkArgument;
tom29df6f42014-09-05 08:14:14 -070028import static org.onlab.onos.net.device.DeviceEvent.Type.*;
tome5ec3fd2014-09-04 15:18:06 -070029
30/**
tom7869ad92014-09-09 14:32:08 -070031
tome5ec3fd2014-09-04 15:18:06 -070032 */
33class SimpleDeviceStore {
34
tom29df6f42014-09-05 08:14:14 -070035 public static final String DEVICE_NOT_FOUND = "Device with ID %s not found";
36
tome5ec3fd2014-09-04 15:18:06 -070037 private final Map<DeviceId, DefaultDevice> devices = new ConcurrentHashMap<>();
tom249829a2014-09-04 15:28:04 -070038 private final Map<DeviceId, MastershipRole> roles = new ConcurrentHashMap<>();
39 private final Set<DeviceId> availableDevices = new HashSet<>();
tom29df6f42014-09-05 08:14:14 -070040 private final Map<DeviceId, Map<PortNumber, Port>> devicePorts = new HashMap<>();
tome5ec3fd2014-09-04 15:18:06 -070041
42 /**
tomad2d2092014-09-06 23:24:20 -070043 * Returns the number of devices known to the system.
44 *
45 * @return number of devices
46 */
tomeadbb462014-09-07 16:10:19 -070047 int getDeviceCount() {
tomad2d2092014-09-06 23:24:20 -070048 return devices.size();
49 }
50
51 /**
tome5ec3fd2014-09-04 15:18:06 -070052 * Returns an iterable collection of all devices known to the system.
53 *
54 * @return device collection
55 */
56 Iterable<Device> getDevices() {
57 return Collections.unmodifiableSet(new HashSet<Device>(devices.values()));
58 }
59
60 /**
61 * Returns the device with the specified identifier.
62 *
63 * @param deviceId device identifier
64 * @return device
65 */
66 Device getDevice(DeviceId deviceId) {
67 return devices.get(deviceId);
68 }
69
70 /**
71 * Creates a new infrastructure device, or updates an existing one using
72 * the supplied device description.
73 *
74 * @param providerId provider identifier
75 * @param deviceId device identifier
76 * @param deviceDescription device description
77 * @return ready to send event describing what occurred; null if no change
78 */
79 DeviceEvent createOrUpdateDevice(ProviderId providerId, DeviceId deviceId,
80 DeviceDescription deviceDescription) {
81 DefaultDevice device = devices.get(deviceId);
82 if (device == null) {
83 return createDevice(providerId, deviceId, deviceDescription);
84 }
85 return updateDevice(providerId, device, deviceDescription);
86 }
87
88 // Creates the device and returns the appropriate event if necessary.
89 private DeviceEvent createDevice(ProviderId providerId, DeviceId deviceId,
90 DeviceDescription desc) {
91 DefaultDevice device = new DefaultDevice(providerId, deviceId, desc.type(),
92 desc.manufacturer(),
93 desc.hwVersion(), desc.swVersion(),
94 desc.serialNumber());
95 synchronized (this) {
96 devices.put(deviceId, device);
tom249829a2014-09-04 15:28:04 -070097 availableDevices.add(deviceId);
tom80c0e5e2014-09-08 18:08:58 -070098
99 // For now claim the device as a master automatically.
100 roles.put(deviceId, MastershipRole.MASTER);
tome5ec3fd2014-09-04 15:18:06 -0700101 }
tom29df6f42014-09-05 08:14:14 -0700102 return new DeviceEvent(DeviceEvent.Type.DEVICE_ADDED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700103 }
104
105 // Updates the device and returns the appropriate event if necessary.
106 private DeviceEvent updateDevice(ProviderId providerId, DefaultDevice device,
107 DeviceDescription desc) {
108 // We allow only certain attributes to trigger update
109 if (!Objects.equals(device.hwVersion(), desc.hwVersion()) ||
110 !Objects.equals(device.swVersion(), desc.swVersion())) {
111 DefaultDevice updated = new DefaultDevice(providerId, device.id(),
112 desc.type(),
113 desc.manufacturer(),
114 desc.hwVersion(),
115 desc.swVersion(),
116 desc.serialNumber());
117 synchronized (this) {
118 devices.put(device.id(), updated);
tom249829a2014-09-04 15:28:04 -0700119 availableDevices.add(device.id());
tome5ec3fd2014-09-04 15:18:06 -0700120 }
tom29df6f42014-09-05 08:14:14 -0700121 return new DeviceEvent(DeviceEvent.Type.DEVICE_UPDATED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700122 }
123
124 // Otherwise merely attempt to change availability
125 synchronized (this) {
tom249829a2014-09-04 15:28:04 -0700126 boolean added = availableDevices.add(device.id());
tom29df6f42014-09-05 08:14:14 -0700127 return !added ? null :
128 new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700129 }
130 }
131
132 /**
133 * Removes the specified infrastructure device.
134 *
135 * @param deviceId device identifier
136 * @return ready to send event describing what occurred; null if no change
137 */
138 DeviceEvent markOffline(DeviceId deviceId) {
139 synchronized (this) {
140 Device device = devices.get(deviceId);
tom29df6f42014-09-05 08:14:14 -0700141 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
tom249829a2014-09-04 15:28:04 -0700142 boolean removed = availableDevices.remove(deviceId);
tom29df6f42014-09-05 08:14:14 -0700143 return !removed ? null :
144 new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700145 }
146 }
147
148 /**
149 * Updates the ports of the specified infrastructure device using the given
150 * list of port descriptions. The list is assumed to be comprehensive.
151 *
152 * @param deviceId device identifier
153 * @param portDescriptions list of port descriptions
154 * @return ready to send events describing what occurred; empty list if no change
155 */
156 List<DeviceEvent> updatePorts(DeviceId deviceId,
157 List<PortDescription> portDescriptions) {
tom29df6f42014-09-05 08:14:14 -0700158 List<DeviceEvent> events = new ArrayList<>();
159 synchronized (this) {
160 Device device = devices.get(deviceId);
161 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
162 Map<PortNumber, Port> ports = getPortMap(deviceId);
163
164 // Add new ports
165 Set<PortNumber> processed = new HashSet<>();
166 for (PortDescription portDescription : portDescriptions) {
167 Port port = ports.get(portDescription.portNumber());
tom24c55cd2014-09-06 10:47:25 -0700168 events.add(port == null ?
169 createPort(device, portDescription, ports) :
170 updatePort(device, port, portDescription, ports));
tom29df6f42014-09-05 08:14:14 -0700171 processed.add(portDescription.portNumber());
172 }
173
174 events.addAll(pruneOldPorts(device, ports, processed));
175 }
176 return events;
177 }
178
179 // Creates a new port based on the port description adds it to the map and
180 // Returns corresponding event.
181 private DeviceEvent createPort(Device device, PortDescription portDescription,
182 Map<PortNumber, Port> ports) {
183 DefaultPort port = new DefaultPort(device, portDescription.portNumber(),
184 portDescription.isEnabled());
185 ports.put(port.number(), port);
186 return new DeviceEvent(PORT_ADDED, device, port);
187 }
188
189 // CHecks if the specified port requires update and if so, it replaces the
190 // existing entry in the map and returns corresponding event.
191 private DeviceEvent updatePort(Device device, Port port,
192 PortDescription portDescription,
193 Map<PortNumber, Port> ports) {
194 if (port.isEnabled() != portDescription.isEnabled()) {
195 DefaultPort updatedPort =
196 new DefaultPort(device, portDescription.portNumber(),
197 portDescription.isEnabled());
198 ports.put(port.number(), updatedPort);
199 return new DeviceEvent(PORT_UPDATED, device, port);
200 }
201 return null;
202 }
203
204 // Prunes the specified list of ports based on which ports are in the
205 // processed list and returns list of corresponding events.
206 private List<DeviceEvent> pruneOldPorts(Device device,
207 Map<PortNumber, Port> ports,
208 Set<PortNumber> processed) {
209 List<DeviceEvent> events = new ArrayList<>();
210 Iterator<PortNumber> iterator = ports.keySet().iterator();
211 while (iterator.hasNext()) {
212 PortNumber portNumber = iterator.next();
tom24c55cd2014-09-06 10:47:25 -0700213 if (!processed.contains(portNumber)) {
tom29df6f42014-09-05 08:14:14 -0700214 events.add(new DeviceEvent(PORT_REMOVED, device,
215 ports.get(portNumber)));
216 iterator.remove();
217 }
218 }
219 return events;
220 }
221
222 // Gets the map of ports for the specified device; if one does not already
223 // exist, it creates and registers a new one.
224 private Map<PortNumber, Port> getPortMap(DeviceId deviceId) {
225 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
226 if (ports == null) {
227 ports = new HashMap<>();
228 devicePorts.put(deviceId, ports);
229 }
230 return ports;
tome5ec3fd2014-09-04 15:18:06 -0700231 }
232
233 /**
234 * Updates the port status of the specified infrastructure device using the
235 * given port description.
236 *
237 * @param deviceId device identifier
238 * @param portDescription port description
239 * @return ready to send event describing what occurred; null if no change
240 */
241 DeviceEvent updatePortStatus(DeviceId deviceId,
242 PortDescription portDescription) {
tom46a220d2014-09-05 08:25:56 -0700243 synchronized (this) {
244 Device device = devices.get(deviceId);
245 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
246 Map<PortNumber, Port> ports = getPortMap(deviceId);
247 Port port = ports.get(portDescription.portNumber());
248 return updatePort(device, port, portDescription, ports);
249 }
tome5ec3fd2014-09-04 15:18:06 -0700250 }
251
252 /**
253 * Returns the list of ports that belong to the specified device.
254 *
255 * @param deviceId device identifier
256 * @return list of device ports
257 */
258 List<Port> getPorts(DeviceId deviceId) {
tom46a220d2014-09-05 08:25:56 -0700259 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
260 return ports == null ? new ArrayList<Port>() : ImmutableList.copyOf(ports.values());
tome5ec3fd2014-09-04 15:18:06 -0700261 }
262
263 /**
264 * Returns the specified device port.
265 *
266 * @param deviceId device identifier
267 * @param portNumber port number
268 * @return device port
269 */
270 Port getPort(DeviceId deviceId, PortNumber portNumber) {
tom46a220d2014-09-05 08:25:56 -0700271 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
272 return ports == null ? null : ports.get(portNumber);
tome5ec3fd2014-09-04 15:18:06 -0700273 }
274
275 /**
tomff7eb7c2014-09-08 12:49:03 -0700276 * Indicates whether the specified device is available/online.
277 *
278 * @param deviceId device identifier
279 * @return true if device is available
280 */
281 boolean isAvailable(DeviceId deviceId) {
282 return availableDevices.contains(deviceId);
283 }
284
285 /**
tome5ec3fd2014-09-04 15:18:06 -0700286 * Returns the mastership role determined for this device.
287 *
288 * @param deviceId device identifier
289 * @return mastership role
290 */
291 MastershipRole getRole(DeviceId deviceId) {
292 MastershipRole role = roles.get(deviceId);
293 return role != null ? role : MastershipRole.NONE;
294 }
295
296 /**
297 * Administratively sets the role of the specified device.
298 *
299 * @param deviceId device identifier
300 * @param role mastership role to apply
301 * @return mastership role change event or null if no change
302 */
303 DeviceEvent setRole(DeviceId deviceId, MastershipRole role) {
tom249829a2014-09-04 15:28:04 -0700304 synchronized (this) {
305 Device device = getDevice(deviceId);
tom29df6f42014-09-05 08:14:14 -0700306 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
tom249829a2014-09-04 15:28:04 -0700307 MastershipRole oldRole = roles.put(deviceId, role);
tom29df6f42014-09-05 08:14:14 -0700308 return oldRole == role ? null :
309 new DeviceEvent(DEVICE_MASTERSHIP_CHANGED, device, null);
tom249829a2014-09-04 15:28:04 -0700310 }
tome5ec3fd2014-09-04 15:18:06 -0700311 }
312
313 /**
314 * Administratively removes the specified device from the store.
315 *
316 * @param deviceId device to be removed
317 */
318 DeviceEvent removeDevice(DeviceId deviceId) {
319 synchronized (this) {
320 roles.remove(deviceId);
321 Device device = devices.remove(deviceId);
tom29df6f42014-09-05 08:14:14 -0700322 return device == null ? null :
323 new DeviceEvent(DEVICE_REMOVED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700324 }
325 }
tome5ec3fd2014-09-04 15:18:06 -0700326}