blob: a49384b9b986bf229c499ce1b4aec871c23e629b [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/**
31 * Manages inventory of infrastructure devices.
32 */
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 /**
43 * Returns an iterable collection of all devices known to the system.
44 *
45 * @return device collection
46 */
47 Iterable<Device> getDevices() {
48 return Collections.unmodifiableSet(new HashSet<Device>(devices.values()));
49 }
50
51 /**
52 * Returns the device with the specified identifier.
53 *
54 * @param deviceId device identifier
55 * @return device
56 */
57 Device getDevice(DeviceId deviceId) {
58 return devices.get(deviceId);
59 }
60
61 /**
62 * Creates a new infrastructure device, or updates an existing one using
63 * the supplied device description.
64 *
65 * @param providerId provider identifier
66 * @param deviceId device identifier
67 * @param deviceDescription device description
68 * @return ready to send event describing what occurred; null if no change
69 */
70 DeviceEvent createOrUpdateDevice(ProviderId providerId, DeviceId deviceId,
71 DeviceDescription deviceDescription) {
72 DefaultDevice device = devices.get(deviceId);
73 if (device == null) {
74 return createDevice(providerId, deviceId, deviceDescription);
75 }
76 return updateDevice(providerId, device, deviceDescription);
77 }
78
79 // Creates the device and returns the appropriate event if necessary.
80 private DeviceEvent createDevice(ProviderId providerId, DeviceId deviceId,
81 DeviceDescription desc) {
82 DefaultDevice device = new DefaultDevice(providerId, deviceId, desc.type(),
83 desc.manufacturer(),
84 desc.hwVersion(), desc.swVersion(),
85 desc.serialNumber());
86 synchronized (this) {
87 devices.put(deviceId, device);
tom249829a2014-09-04 15:28:04 -070088 availableDevices.add(deviceId);
tome5ec3fd2014-09-04 15:18:06 -070089 }
tom29df6f42014-09-05 08:14:14 -070090 return new DeviceEvent(DeviceEvent.Type.DEVICE_ADDED, device, null);
tome5ec3fd2014-09-04 15:18:06 -070091 }
92
93 // Updates the device and returns the appropriate event if necessary.
94 private DeviceEvent updateDevice(ProviderId providerId, DefaultDevice device,
95 DeviceDescription desc) {
96 // We allow only certain attributes to trigger update
97 if (!Objects.equals(device.hwVersion(), desc.hwVersion()) ||
98 !Objects.equals(device.swVersion(), desc.swVersion())) {
99 DefaultDevice updated = new DefaultDevice(providerId, device.id(),
100 desc.type(),
101 desc.manufacturer(),
102 desc.hwVersion(),
103 desc.swVersion(),
104 desc.serialNumber());
105 synchronized (this) {
106 devices.put(device.id(), updated);
tom249829a2014-09-04 15:28:04 -0700107 availableDevices.add(device.id());
tome5ec3fd2014-09-04 15:18:06 -0700108 }
tom29df6f42014-09-05 08:14:14 -0700109 return new DeviceEvent(DeviceEvent.Type.DEVICE_UPDATED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700110 }
111
112 // Otherwise merely attempt to change availability
113 synchronized (this) {
tom249829a2014-09-04 15:28:04 -0700114 boolean added = availableDevices.add(device.id());
tom29df6f42014-09-05 08:14:14 -0700115 return !added ? null :
116 new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700117 }
118 }
119
120 /**
121 * Removes the specified infrastructure device.
122 *
123 * @param deviceId device identifier
124 * @return ready to send event describing what occurred; null if no change
125 */
126 DeviceEvent markOffline(DeviceId deviceId) {
127 synchronized (this) {
128 Device device = devices.get(deviceId);
tom29df6f42014-09-05 08:14:14 -0700129 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
tom249829a2014-09-04 15:28:04 -0700130 boolean removed = availableDevices.remove(deviceId);
tom29df6f42014-09-05 08:14:14 -0700131 return !removed ? null :
132 new DeviceEvent(DEVICE_AVAILABILITY_CHANGED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700133 }
134 }
135
136 /**
137 * Updates the ports of the specified infrastructure device using the given
138 * list of port descriptions. The list is assumed to be comprehensive.
139 *
140 * @param deviceId device identifier
141 * @param portDescriptions list of port descriptions
142 * @return ready to send events describing what occurred; empty list if no change
143 */
144 List<DeviceEvent> updatePorts(DeviceId deviceId,
145 List<PortDescription> portDescriptions) {
tom29df6f42014-09-05 08:14:14 -0700146 List<DeviceEvent> events = new ArrayList<>();
147 synchronized (this) {
148 Device device = devices.get(deviceId);
149 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
150 Map<PortNumber, Port> ports = getPortMap(deviceId);
151
152 // Add new ports
153 Set<PortNumber> processed = new HashSet<>();
154 for (PortDescription portDescription : portDescriptions) {
155 Port port = ports.get(portDescription.portNumber());
tom24c55cd2014-09-06 10:47:25 -0700156 events.add(port == null ?
157 createPort(device, portDescription, ports) :
158 updatePort(device, port, portDescription, ports));
tom29df6f42014-09-05 08:14:14 -0700159 processed.add(portDescription.portNumber());
160 }
161
162 events.addAll(pruneOldPorts(device, ports, processed));
163 }
164 return events;
165 }
166
167 // Creates a new port based on the port description adds it to the map and
168 // Returns corresponding event.
169 private DeviceEvent createPort(Device device, PortDescription portDescription,
170 Map<PortNumber, Port> ports) {
171 DefaultPort port = new DefaultPort(device, portDescription.portNumber(),
172 portDescription.isEnabled());
173 ports.put(port.number(), port);
174 return new DeviceEvent(PORT_ADDED, device, port);
175 }
176
177 // CHecks if the specified port requires update and if so, it replaces the
178 // existing entry in the map and returns corresponding event.
179 private DeviceEvent updatePort(Device device, Port port,
180 PortDescription portDescription,
181 Map<PortNumber, Port> ports) {
182 if (port.isEnabled() != portDescription.isEnabled()) {
183 DefaultPort updatedPort =
184 new DefaultPort(device, portDescription.portNumber(),
185 portDescription.isEnabled());
186 ports.put(port.number(), updatedPort);
187 return new DeviceEvent(PORT_UPDATED, device, port);
188 }
189 return null;
190 }
191
192 // Prunes the specified list of ports based on which ports are in the
193 // processed list and returns list of corresponding events.
194 private List<DeviceEvent> pruneOldPorts(Device device,
195 Map<PortNumber, Port> ports,
196 Set<PortNumber> processed) {
197 List<DeviceEvent> events = new ArrayList<>();
198 Iterator<PortNumber> iterator = ports.keySet().iterator();
199 while (iterator.hasNext()) {
200 PortNumber portNumber = iterator.next();
tom24c55cd2014-09-06 10:47:25 -0700201 if (!processed.contains(portNumber)) {
tom29df6f42014-09-05 08:14:14 -0700202 events.add(new DeviceEvent(PORT_REMOVED, device,
203 ports.get(portNumber)));
204 iterator.remove();
205 }
206 }
207 return events;
208 }
209
210 // Gets the map of ports for the specified device; if one does not already
211 // exist, it creates and registers a new one.
212 private Map<PortNumber, Port> getPortMap(DeviceId deviceId) {
213 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
214 if (ports == null) {
215 ports = new HashMap<>();
216 devicePorts.put(deviceId, ports);
217 }
218 return ports;
tome5ec3fd2014-09-04 15:18:06 -0700219 }
220
221 /**
222 * Updates the port status of the specified infrastructure device using the
223 * given port description.
224 *
225 * @param deviceId device identifier
226 * @param portDescription port description
227 * @return ready to send event describing what occurred; null if no change
228 */
229 DeviceEvent updatePortStatus(DeviceId deviceId,
230 PortDescription portDescription) {
tom46a220d2014-09-05 08:25:56 -0700231 synchronized (this) {
232 Device device = devices.get(deviceId);
233 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
234 Map<PortNumber, Port> ports = getPortMap(deviceId);
235 Port port = ports.get(portDescription.portNumber());
236 return updatePort(device, port, portDescription, ports);
237 }
tome5ec3fd2014-09-04 15:18:06 -0700238 }
239
240 /**
241 * Returns the list of ports that belong to the specified device.
242 *
243 * @param deviceId device identifier
244 * @return list of device ports
245 */
246 List<Port> getPorts(DeviceId deviceId) {
tom46a220d2014-09-05 08:25:56 -0700247 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
248 return ports == null ? new ArrayList<Port>() : ImmutableList.copyOf(ports.values());
tome5ec3fd2014-09-04 15:18:06 -0700249 }
250
251 /**
252 * Returns the specified device port.
253 *
254 * @param deviceId device identifier
255 * @param portNumber port number
256 * @return device port
257 */
258 Port getPort(DeviceId deviceId, PortNumber portNumber) {
tom46a220d2014-09-05 08:25:56 -0700259 Map<PortNumber, Port> ports = devicePorts.get(deviceId);
260 return ports == null ? null : ports.get(portNumber);
tome5ec3fd2014-09-04 15:18:06 -0700261 }
262
263 /**
264 * Returns the mastership role determined for this device.
265 *
266 * @param deviceId device identifier
267 * @return mastership role
268 */
269 MastershipRole getRole(DeviceId deviceId) {
270 MastershipRole role = roles.get(deviceId);
271 return role != null ? role : MastershipRole.NONE;
272 }
273
274 /**
275 * Administratively sets the role of the specified device.
276 *
277 * @param deviceId device identifier
278 * @param role mastership role to apply
279 * @return mastership role change event or null if no change
280 */
281 DeviceEvent setRole(DeviceId deviceId, MastershipRole role) {
tom249829a2014-09-04 15:28:04 -0700282 synchronized (this) {
283 Device device = getDevice(deviceId);
tom29df6f42014-09-05 08:14:14 -0700284 checkArgument(device != null, DEVICE_NOT_FOUND, deviceId);
tom249829a2014-09-04 15:28:04 -0700285 MastershipRole oldRole = roles.put(deviceId, role);
tom29df6f42014-09-05 08:14:14 -0700286 return oldRole == role ? null :
287 new DeviceEvent(DEVICE_MASTERSHIP_CHANGED, device, null);
tom249829a2014-09-04 15:28:04 -0700288 }
tome5ec3fd2014-09-04 15:18:06 -0700289 }
290
291 /**
292 * Administratively removes the specified device from the store.
293 *
294 * @param deviceId device to be removed
295 */
296 DeviceEvent removeDevice(DeviceId deviceId) {
297 synchronized (this) {
298 roles.remove(deviceId);
299 Device device = devices.remove(deviceId);
tom29df6f42014-09-05 08:14:14 -0700300 return device == null ? null :
301 new DeviceEvent(DEVICE_REMOVED, device, null);
tome5ec3fd2014-09-04 15:18:06 -0700302 }
303 }
tom29df6f42014-09-05 08:14:14 -0700304
tome5ec3fd2014-09-04 15:18:06 -0700305}