blob: e219a6309b430f53c033b859b104923455111ecf [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/**
tomad2d2092014-09-06 23:24:20 -070031 * Manages inventory of infrastructure devices using trivial in-memory
32 * implementation.
tome5ec3fd2014-09-04 15:18:06 -070033 */
34class SimpleDeviceStore {
35
tom29df6f42014-09-05 08:14:14 -070036 public static final String DEVICE_NOT_FOUND = "Device with ID %s not found";
37
tome5ec3fd2014-09-04 15:18:06 -070038 private final Map<DeviceId, DefaultDevice> devices = new ConcurrentHashMap<>();
tom249829a2014-09-04 15:28:04 -070039 private final Map<DeviceId, MastershipRole> roles = new ConcurrentHashMap<>();
40 private final Set<DeviceId> availableDevices = new HashSet<>();
tom29df6f42014-09-05 08:14:14 -070041 private final Map<DeviceId, Map<PortNumber, Port>> devicePorts = new HashMap<>();
tome5ec3fd2014-09-04 15:18:06 -070042
43 /**
tomad2d2092014-09-06 23:24:20 -070044 * Returns the number of devices known to the system.
45 *
46 * @return number of devices
47 */
tomeadbb462014-09-07 16:10:19 -070048 int getDeviceCount() {
tomad2d2092014-09-06 23:24:20 -070049 return devices.size();
50 }
51
52 /**
tome5ec3fd2014-09-04 15:18:06 -070053 * Returns an iterable collection of all devices known to the system.
54 *
55 * @return device collection
56 */
57 Iterable<Device> getDevices() {
58 return Collections.unmodifiableSet(new HashSet<Device>(devices.values()));
59 }
60
61 /**
62 * Returns the device with the specified identifier.
63 *
64 * @param deviceId device identifier
65 * @return device
66 */
67 Device getDevice(DeviceId deviceId) {
68 return devices.get(deviceId);
69 }
70
71 /**
72 * Creates a new infrastructure device, or updates an existing one using
73 * the supplied device description.
74 *
75 * @param providerId provider identifier
76 * @param deviceId device identifier
77 * @param deviceDescription device description
78 * @return ready to send event describing what occurred; null if no change
79 */
80 DeviceEvent createOrUpdateDevice(ProviderId providerId, DeviceId deviceId,
81 DeviceDescription deviceDescription) {
82 DefaultDevice device = devices.get(deviceId);
83 if (device == null) {
84 return createDevice(providerId, deviceId, deviceDescription);
85 }
86 return updateDevice(providerId, device, deviceDescription);
87 }
88
89 // Creates the device and returns the appropriate event if necessary.
90 private DeviceEvent createDevice(ProviderId providerId, DeviceId deviceId,
91 DeviceDescription desc) {
92 DefaultDevice device = new DefaultDevice(providerId, deviceId, desc.type(),
93 desc.manufacturer(),
94 desc.hwVersion(), desc.swVersion(),
95 desc.serialNumber());
96 synchronized (this) {
97 devices.put(deviceId, device);
tom249829a2014-09-04 15:28:04 -070098 availableDevices.add(deviceId);
tom80c0e5e2014-09-08 18:08:58 -070099
100 // For now claim the device as a master automatically.
101 roles.put(deviceId, MastershipRole.MASTER);
tome5ec3fd2014-09-04 15:18:06 -0700102 }
tom29df6f42014-09-05 08:14:14 -0700103 return new DeviceEvent(DeviceEvent.Type.DEVICE_ADDED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700104 }
105
106 // Updates the device and returns the appropriate event if necessary.
107 private DeviceEvent updateDevice(ProviderId providerId, DefaultDevice device,
108 DeviceDescription desc) {
109 // We allow only certain attributes to trigger update
110 if (!Objects.equals(device.hwVersion(), desc.hwVersion()) ||
111 !Objects.equals(device.swVersion(), desc.swVersion())) {
112 DefaultDevice updated = new DefaultDevice(providerId, device.id(),
113 desc.type(),
114 desc.manufacturer(),
115 desc.hwVersion(),
116 desc.swVersion(),
117 desc.serialNumber());
118 synchronized (this) {
119 devices.put(device.id(), updated);
tom249829a2014-09-04 15:28:04 -0700120 availableDevices.add(device.id());
tome5ec3fd2014-09-04 15:18:06 -0700121 }
tom29df6f42014-09-05 08:14:14 -0700122 return new DeviceEvent(DeviceEvent.Type.DEVICE_UPDATED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700123 }
124
125 // Otherwise merely attempt to change availability
126 synchronized (this) {
tom249829a2014-09-04 15:28:04 -0700127 boolean added = availableDevices.add(device.id());
tom29df6f42014-09-05 08:14:14 -0700128 return !added ? null :
129 new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700130 }
131 }
132
133 /**
134 * Removes the specified infrastructure device.
135 *
136 * @param deviceId device identifier
137 * @return ready to send event describing what occurred; null if no change
138 */
139 DeviceEvent markOffline(DeviceId deviceId) {
140 synchronized (this) {
141 Device device = devices.get(deviceId);
tom29df6f42014-09-05 08:14:14 -0700142 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
tom249829a2014-09-04 15:28:04 -0700143 boolean removed = availableDevices.remove(deviceId);
tom29df6f42014-09-05 08:14:14 -0700144 return !removed ? null :
145 new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700146 }
147 }
148
149 /**
150 * Updates the ports of the specified infrastructure device using the given
151 * list of port descriptions. The list is assumed to be comprehensive.
152 *
153 * @param deviceId device identifier
154 * @param portDescriptions list of port descriptions
155 * @return ready to send events describing what occurred; empty list if no change
156 */
157 List<DeviceEvent> updatePorts(DeviceId deviceId,
158 List<PortDescription> portDescriptions) {
tom29df6f42014-09-05 08:14:14 -0700159 List<DeviceEvent> events = new ArrayList<>();
160 synchronized (this) {
161 Device device = devices.get(deviceId);
162 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
163 Map<PortNumber, Port> ports = getPortMap(deviceId);
164
165 // Add new ports
166 Set<PortNumber> processed = new HashSet<>();
167 for (PortDescription portDescription : portDescriptions) {
168 Port port = ports.get(portDescription.portNumber());
tom24c55cd2014-09-06 10:47:25 -0700169 events.add(port == null ?
170 createPort(device, portDescription, ports) :
171 updatePort(device, port, portDescription, ports));
tom29df6f42014-09-05 08:14:14 -0700172 processed.add(portDescription.portNumber());
173 }
174
175 events.addAll(pruneOldPorts(device, ports, processed));
176 }
177 return events;
178 }
179
180 // Creates a new port based on the port description adds it to the map and
181 // Returns corresponding event.
182 private DeviceEvent createPort(Device device, PortDescription portDescription,
183 Map<PortNumber, Port> ports) {
184 DefaultPort port = new DefaultPort(device, portDescription.portNumber(),
185 portDescription.isEnabled());
186 ports.put(port.number(), port);
187 return new DeviceEvent(PORT_ADDED, device, port);
188 }
189
190 // CHecks if the specified port requires update and if so, it replaces the
191 // existing entry in the map and returns corresponding event.
192 private DeviceEvent updatePort(Device device, Port port,
193 PortDescription portDescription,
194 Map<PortNumber, Port> ports) {
195 if (port.isEnabled() != portDescription.isEnabled()) {
196 DefaultPort updatedPort =
197 new DefaultPort(device, portDescription.portNumber(),
198 portDescription.isEnabled());
199 ports.put(port.number(), updatedPort);
200 return new DeviceEvent(PORT_UPDATED, device, port);
201 }
202 return null;
203 }
204
205 // Prunes the specified list of ports based on which ports are in the
206 // processed list and returns list of corresponding events.
207 private List<DeviceEvent> pruneOldPorts(Device device,
208 Map<PortNumber, Port> ports,
209 Set<PortNumber> processed) {
210 List<DeviceEvent> events = new ArrayList<>();
211 Iterator<PortNumber> iterator = ports.keySet().iterator();
212 while (iterator.hasNext()) {
213 PortNumber portNumber = iterator.next();
tom24c55cd2014-09-06 10:47:25 -0700214 if (!processed.contains(portNumber)) {
tom29df6f42014-09-05 08:14:14 -0700215 events.add(new DeviceEvent(PORT_REMOVED, device,
216 ports.get(portNumber)));
217 iterator.remove();
218 }
219 }
220 return events;
221 }
222
223 // Gets the map of ports for the specified device; if one does not already
224 // exist, it creates and registers a new one.
225 private Map<PortNumber, Port> getPortMap(DeviceId deviceId) {
226 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
227 if (ports == null) {
228 ports = new HashMap<>();
229 devicePorts.put(deviceId, ports);
230 }
231 return ports;
tome5ec3fd2014-09-04 15:18:06 -0700232 }
233
234 /**
235 * Updates the port status of the specified infrastructure device using the
236 * given port description.
237 *
238 * @param deviceId device identifier
239 * @param portDescription port description
240 * @return ready to send event describing what occurred; null if no change
241 */
242 DeviceEvent updatePortStatus(DeviceId deviceId,
243 PortDescription portDescription) {
tom46a220d2014-09-05 08:25:56 -0700244 synchronized (this) {
245 Device device = devices.get(deviceId);
246 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
247 Map<PortNumber, Port> ports = getPortMap(deviceId);
248 Port port = ports.get(portDescription.portNumber());
249 return updatePort(device, port, portDescription, ports);
250 }
tome5ec3fd2014-09-04 15:18:06 -0700251 }
252
253 /**
254 * Returns the list of ports that belong to the specified device.
255 *
256 * @param deviceId device identifier
257 * @return list of device ports
258 */
259 List<Port> getPorts(DeviceId deviceId) {
tom46a220d2014-09-05 08:25:56 -0700260 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
261 return ports == null ? new ArrayList<Port>() : ImmutableList.copyOf(ports.values());
tome5ec3fd2014-09-04 15:18:06 -0700262 }
263
264 /**
265 * Returns the specified device port.
266 *
267 * @param deviceId device identifier
268 * @param portNumber port number
269 * @return device port
270 */
271 Port getPort(DeviceId deviceId, PortNumber portNumber) {
tom46a220d2014-09-05 08:25:56 -0700272 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
273 return ports == null ? null : ports.get(portNumber);
tome5ec3fd2014-09-04 15:18:06 -0700274 }
275
276 /**
tomff7eb7c2014-09-08 12:49:03 -0700277 * Indicates whether the specified device is available/online.
278 *
279 * @param deviceId device identifier
280 * @return true if device is available
281 */
282 boolean isAvailable(DeviceId deviceId) {
283 return availableDevices.contains(deviceId);
284 }
285
286 /**
tome5ec3fd2014-09-04 15:18:06 -0700287 * Returns the mastership role determined for this device.
288 *
289 * @param deviceId device identifier
290 * @return mastership role
291 */
292 MastershipRole getRole(DeviceId deviceId) {
293 MastershipRole role = roles.get(deviceId);
294 return role != null ? role : MastershipRole.NONE;
295 }
296
297 /**
298 * Administratively sets the role of the specified device.
299 *
300 * @param deviceId device identifier
301 * @param role mastership role to apply
302 * @return mastership role change event or null if no change
303 */
304 DeviceEvent setRole(DeviceId deviceId, MastershipRole role) {
tom249829a2014-09-04 15:28:04 -0700305 synchronized (this) {
306 Device device = getDevice(deviceId);
tom29df6f42014-09-05 08:14:14 -0700307 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
tom249829a2014-09-04 15:28:04 -0700308 MastershipRole oldRole = roles.put(deviceId, role);
tom29df6f42014-09-05 08:14:14 -0700309 return oldRole == role ? null :
310 new DeviceEvent(DEVICE_MASTERSHIP_CHANGED, device, null);
tom249829a2014-09-04 15:28:04 -0700311 }
tome5ec3fd2014-09-04 15:18:06 -0700312 }
313
314 /**
315 * Administratively removes the specified device from the store.
316 *
317 * @param deviceId device to be removed
318 */
319 DeviceEvent removeDevice(DeviceId deviceId) {
320 synchronized (this) {
321 roles.remove(deviceId);
322 Device device = devices.remove(deviceId);
tom29df6f42014-09-05 08:14:14 -0700323 return device == null ? null :
324 new DeviceEvent(DEVICE_REMOVED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700325 }
326 }
tome5ec3fd2014-09-04 15:18:06 -0700327}