blob: 5d3e60a7f7c5a0a690fe42b0ef78429878c7131b [file] [log] [blame]
Jonathan Hart062a2e82014-02-03 09:41:57 -08001package net.onrc.onos.ofcontroller.networkgraph;
2
Yuta HIGUCHI1c700102014-02-12 16:30:52 -08003import java.net.InetAddress;
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -08004import java.util.ArrayList;
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -08005import java.util.Collection;
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -08006import java.util.HashSet;
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -08007import java.util.LinkedList;
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -08008import java.util.List;
9import java.util.Set;
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -080010import java.util.concurrent.BlockingQueue;
Yuta HIGUCHIa536e762014-02-17 21:47:28 -080011import java.util.concurrent.CopyOnWriteArrayList;
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -080012import java.util.concurrent.LinkedBlockingQueue;
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -080013
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -080014import net.onrc.onos.datagrid.IDatagridService;
15import net.onrc.onos.datagrid.IEventChannel;
16import net.onrc.onos.datagrid.IEventChannelListener;
Yuta HIGUCHI765cd0d2014-02-06 12:46:41 -080017import net.onrc.onos.datastore.topology.RCLink;
Jonathan Hart062a2e82014-02-03 09:41:57 -080018import net.onrc.onos.datastore.topology.RCPort;
19import net.onrc.onos.datastore.topology.RCSwitch;
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -080020import net.onrc.onos.ofcontroller.networkgraph.PortEvent.SwitchPort;
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -080021import net.onrc.onos.ofcontroller.util.EventEntry;
Yuta HIGUCHI765cd0d2014-02-06 12:46:41 -080022import net.onrc.onos.ofcontroller.util.Dpid;
Yuta HIGUCHI170229f2014-02-17 15:47:54 -080023import net.onrc.onos.registry.controller.IControllerRegistryService;
Jonathan Hart062a2e82014-02-03 09:41:57 -080024
25import org.slf4j.Logger;
26import org.slf4j.LoggerFactory;
27
Yuta HIGUCHI181d34d2014-02-05 15:05:46 -080028/**
29 * The "NB" read-only Network Map.
30 *
Yuta HIGUCHI4bfdd532014-02-07 13:47:36 -080031 * - Maintain Invariant/Relationships between Topology Objects.
32 *
Yuta HIGUCHI765cd0d2014-02-06 12:46:41 -080033 * TODO To be synchronized based on TopologyEvent Notification.
Yuta HIGUCHI181d34d2014-02-05 15:05:46 -080034 *
Yuta HIGUCHIcb951982014-02-11 13:31:44 -080035 * TODO TBD: Caller is expected to maintain parent/child calling order. Parent
Yuta HIGUCHI1c700102014-02-12 16:30:52 -080036 * Object must exist before adding sub component(Add Switch -> Port).
Yuta HIGUCHIcb951982014-02-11 13:31:44 -080037 *
Yuta HIGUCHI4bfdd532014-02-07 13:47:36 -080038 * TODO TBD: This class may delay the requested change to handle event
39 * re-ordering. e.g.) Link Add came in, but Switch was not there.
Yuta HIGUCHIcb951982014-02-11 13:31:44 -080040 *
Yuta HIGUCHI181d34d2014-02-05 15:05:46 -080041 */
Yuta HIGUCHI928fa682014-02-11 19:07:57 -080042public class NetworkGraphImpl extends AbstractNetworkGraph implements
43 NetworkGraphDiscoveryInterface, NetworkGraphReplicationInterface {
Jonathan Hart062a2e82014-02-03 09:41:57 -080044
Yuta HIGUCHI80829d12014-02-05 20:16:56 -080045 private static final Logger log = LoggerFactory
46 .getLogger(NetworkGraphImpl.class);
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -080047
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -080048 private IEventChannel<byte[], TopologyEvent> eventChannel;
49 private static final String EVENT_CHANNEL_NAME = "onos.topology";
50 private EventHandler eventHandler = new EventHandler();
51
Jonathan Hart22eb9882014-02-11 15:52:59 -080052 private final NetworkGraphDatastore datastore;
Yuta HIGUCHI170229f2014-02-17 15:47:54 -080053 private final IControllerRegistryService registryService;
Yuta HIGUCHIa536e762014-02-17 21:47:28 -080054 private CopyOnWriteArrayList<INetworkGraphListener> networkGraphListeners;
Yuta HIGUCHI181d34d2014-02-05 15:05:46 -080055
Yuta HIGUCHIa536e762014-02-17 21:47:28 -080056 public NetworkGraphImpl(IControllerRegistryService registryService, CopyOnWriteArrayList<INetworkGraphListener> networkGraphListeners) {
Yuta HIGUCHI80829d12014-02-05 20:16:56 -080057 super();
Jonathan Hart22eb9882014-02-11 15:52:59 -080058 datastore = new NetworkGraphDatastore(this);
Yuta HIGUCHI170229f2014-02-17 15:47:54 -080059 this.registryService = registryService;
Yuta HIGUCHIa536e762014-02-17 21:47:28 -080060 this.networkGraphListeners = networkGraphListeners;
Yuta HIGUCHI80829d12014-02-05 20:16:56 -080061 }
Yuta HIGUCHI181d34d2014-02-05 15:05:46 -080062
Yuta HIGUCHI4bfdd532014-02-07 13:47:36 -080063 /**
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -080064 * Event handler class.
65 */
66 private class EventHandler extends Thread implements
67 IEventChannelListener<byte[], TopologyEvent> {
68 private BlockingQueue<EventEntry<TopologyEvent>> topologyEvents =
69 new LinkedBlockingQueue<EventEntry<TopologyEvent>>();
70
71 /**
72 * Startup processing.
73 */
74 private void startup() {
75 //
76 // TODO: Read all state from the database
77 // For now, as a shortcut we read it from the datagrid
78 //
79 Collection<TopologyEvent> topologyEvents =
80 eventChannel.getAllEntries();
81 Collection<EventEntry<TopologyEvent>> collection =
82 new LinkedList<EventEntry<TopologyEvent>>();
83
84 for (TopologyEvent topologyEvent : topologyEvents) {
85 EventEntry<TopologyEvent> eventEntry =
86 new EventEntry<TopologyEvent>(EventEntry.Type.ENTRY_ADD,
87 topologyEvent);
88 collection.add(eventEntry);
89 }
90 processEvents(collection);
91 }
92
93 /**
94 * Run the thread.
95 */
Yuta HIGUCHI240bf072014-02-17 10:55:21 -080096 @Override
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -080097 public void run() {
98 Collection<EventEntry<TopologyEvent>> collection =
99 new LinkedList<EventEntry<TopologyEvent>>();
100
101 this.setName("NetworkGraphImpl.EventHandler " + this.getId());
102 startup();
103
104 //
105 // The main loop
106 //
107 try {
108 while (true) {
109 EventEntry<TopologyEvent> eventEntry = topologyEvents.take();
110 collection.add(eventEntry);
111 topologyEvents.drainTo(collection);
112
113 processEvents(collection);
114 collection.clear();
115 }
116 } catch (Exception exception) {
117 log.debug("Exception processing Topology Events: ", exception);
118 }
119 }
120
121 /**
122 * Process all topology events.
123 *
124 * @param events the events to process.
125 */
126 private void processEvents(Collection<EventEntry<TopologyEvent>> events) {
127 for (EventEntry<TopologyEvent> event : events) {
Yuta HIGUCHI170229f2014-02-17 15:47:54 -0800128 if (event.eventData().getOriginID().equals(registryService.getControllerId())) {
129 // ignore event triggered by myself
130 continue;
131 }
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800132 TopologyEvent topologyEvent = event.eventData();
133 switch (event.eventType()) {
134 case ENTRY_ADD:
135 log.debug("Topology event ENTRY_ADD: {}", topologyEvent);
136 if (topologyEvent.switchEvent != null)
137 putSwitchReplicationEvent(topologyEvent.switchEvent);
138 if (topologyEvent.portEvent != null)
139 putPortReplicationEvent(topologyEvent.portEvent);
140 if (topologyEvent.linkEvent != null)
141 putLinkReplicationEvent(topologyEvent.linkEvent);
142 if (topologyEvent.deviceEvent != null)
143 putDeviceReplicationEvent(topologyEvent.deviceEvent);
144 break;
145 case ENTRY_REMOVE:
146 log.debug("Topology event ENTRY_REMOVE: {}", topologyEvent);
147 if (topologyEvent.switchEvent != null)
148 removeSwitchReplicationEvent(topologyEvent.switchEvent);
149 if (topologyEvent.portEvent != null)
150 removePortReplicationEvent(topologyEvent.portEvent);
151 if (topologyEvent.linkEvent != null)
152 removeLinkReplicationEvent(topologyEvent.linkEvent);
153 if (topologyEvent.deviceEvent != null)
154 removeDeviceReplicationEvent(topologyEvent.deviceEvent);
155 break;
156 }
157 }
158 }
159
160 /**
161 * Receive a notification that an entry is added.
162 *
163 * @param value the value for the entry.
164 */
165 @Override
166 public void entryAdded(TopologyEvent value) {
167 EventEntry<TopologyEvent> eventEntry =
168 new EventEntry<TopologyEvent>(EventEntry.Type.ENTRY_ADD,
169 value);
170 topologyEvents.add(eventEntry);
171 }
172
173 /**
174 * Receive a notification that an entry is removed.
175 *
176 * @param value the value for the entry.
177 */
178 @Override
179 public void entryRemoved(TopologyEvent value) {
180 EventEntry<TopologyEvent> eventEntry =
181 new EventEntry<TopologyEvent>(EventEntry.Type.ENTRY_REMOVE,
182 value);
183 topologyEvents.add(eventEntry);
184 }
185
186 /**
187 * Receive a notification that an entry is updated.
188 *
189 * @param value the value for the entry.
190 */
191 @Override
192 public void entryUpdated(TopologyEvent value) {
193 // NOTE: The ADD and UPDATE events are processed in same way
194 entryAdded(value);
195 }
196 }
197
198 /**
199 * Startup processing.
200 *
201 * @param datagridService the datagrid service to use.
202 */
203 void startup(IDatagridService datagridService) {
204 eventChannel = datagridService.addListener(EVENT_CHANNEL_NAME,
205 eventHandler,
206 byte[].class,
207 TopologyEvent.class);
208 eventHandler.start();
209 }
210
211 /**
Yuta HIGUCHIcb951982014-02-11 13:31:44 -0800212 * Exception to be thrown when Modification to the Network Graph cannot be continued due to broken invariant.
213 *
214 * XXX Should this be checked exception or RuntimeException
215 */
216 public static class BrokenInvariantException extends RuntimeException {
217 private static final long serialVersionUID = 1L;
218
219 public BrokenInvariantException() {
220 super();
221 }
222
223 public BrokenInvariantException(String message) {
224 super(message);
225 }
226 }
Jonathan Hart22eb9882014-02-11 15:52:59 -0800227
228 /* ******************************
229 * NetworkGraphDiscoveryInterface methods
230 * ******************************/
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -0800231
Jonathan Hart22eb9882014-02-11 15:52:59 -0800232 @Override
233 public void putSwitchEvent(SwitchEvent switchEvent) {
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800234 if (prepareForAddSwitchEvent(switchEvent)) {
Jonathan Hart22eb9882014-02-11 15:52:59 -0800235 datastore.addSwitch(switchEvent);
236 putSwitch(switchEvent);
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800237 // Send out notification
238 TopologyEvent topologyEvent =
Yuta HIGUCHI170229f2014-02-17 15:47:54 -0800239 new TopologyEvent(switchEvent, registryService.getControllerId());
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800240 eventChannel.addEntry(topologyEvent.getID(),
241 topologyEvent);
Jonathan Hart22eb9882014-02-11 15:52:59 -0800242 }
243 // TODO handle invariant violation
244 }
245
246 @Override
247 public void removeSwitchEvent(SwitchEvent switchEvent) {
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800248 if (prepareForRemoveSwitchEvent(switchEvent)) {
Jonathan Hart22eb9882014-02-11 15:52:59 -0800249 datastore.deactivateSwitch(switchEvent);
250 removeSwitch(switchEvent);
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800251 // Send out notification
252 eventChannel.removeEntry(switchEvent.getID());
Jonathan Hart22eb9882014-02-11 15:52:59 -0800253 }
254 // TODO handle invariant violation
255 }
256
257 @Override
258 public void putPortEvent(PortEvent portEvent) {
Jonathan Hart4c263272014-02-13 17:41:05 -0800259 if (prepareForAddPortEvent(portEvent)) {
260 datastore.addPort(portEvent);
261 putPort(portEvent);
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800262 // Send out notification
263 TopologyEvent topologyEvent =
Yuta HIGUCHI170229f2014-02-17 15:47:54 -0800264 new TopologyEvent(portEvent, registryService.getControllerId());
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800265 eventChannel.addEntry(topologyEvent.getID(),
266 topologyEvent);
Jonathan Hart4c263272014-02-13 17:41:05 -0800267 }
Yuta HIGUCHI75c51ed2014-02-13 17:02:26 -0800268 // TODO handle invariant violation
Jonathan Hart22eb9882014-02-11 15:52:59 -0800269 }
270
271 @Override
272 public void removePortEvent(PortEvent portEvent) {
Jonathan Hart4c263272014-02-13 17:41:05 -0800273 if (prepareForRemovePortEvent(portEvent)) {
274 datastore.deactivatePort(portEvent);
275 removePort(portEvent);
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800276 // Send out notification
277 eventChannel.removeEntry(portEvent.getID());
Jonathan Hart4c263272014-02-13 17:41:05 -0800278 }
Yuta HIGUCHI75c51ed2014-02-13 17:02:26 -0800279 // TODO handle invariant violation
Jonathan Hart22eb9882014-02-11 15:52:59 -0800280 }
281
282 @Override
283 public void putLinkEvent(LinkEvent linkEvent) {
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800284 if (prepareForAddLinkEvent(linkEvent)) {
Jonathan Hart22eb9882014-02-11 15:52:59 -0800285 datastore.addLink(linkEvent);
286 putLink(linkEvent);
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800287 // Send out notification
288 TopologyEvent topologyEvent =
Yuta HIGUCHI170229f2014-02-17 15:47:54 -0800289 new TopologyEvent(linkEvent, registryService.getControllerId());
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800290 eventChannel.addEntry(topologyEvent.getID(),
291 topologyEvent);
Jonathan Hart22eb9882014-02-11 15:52:59 -0800292 }
293 // TODO handle invariant violation
294 }
295
296 @Override
297 public void removeLinkEvent(LinkEvent linkEvent) {
Yuta HIGUCHI71e7a052014-02-17 22:14:15 -0800298 removeLinkEvent(linkEvent, false);
299
300 }
301
302 private void removeLinkEvent(LinkEvent linkEvent, boolean dstCheckBeforeDBmodify) {
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800303 if (prepareForRemoveLinkEvent(linkEvent)) {
Yuta HIGUCHI71e7a052014-02-17 22:14:15 -0800304 if (dstCheckBeforeDBmodify) {
305 // write to DB only if it is owner of the dst dpid
306 if (registryService.hasControl(linkEvent.getDst().dpid)) {
307 datastore.removeLink(linkEvent);
308 }
309 } else {
310 datastore.removeLink(linkEvent);
311 }
Jonathan Hart22eb9882014-02-11 15:52:59 -0800312 removeLink(linkEvent);
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800313 // Send out notification
314 eventChannel.removeEntry(linkEvent.getID());
Jonathan Hart22eb9882014-02-11 15:52:59 -0800315 }
316 // TODO handle invariant violation
317 }
318
319 @Override
Yuta HIGUCHI586d33e2014-02-13 17:05:08 -0800320 public void putDeviceEvent(DeviceEvent deviceEvent) {
321 if (prepareForAddDeviceEvent(deviceEvent)) {
322// datastore.addDevice(deviceEvent);
Yuta HIGUCHId457c052014-02-14 18:33:04 -0800323// putDevice(deviceEvent);
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800324 // Send out notification
325 TopologyEvent topologyEvent =
Yuta HIGUCHI170229f2014-02-17 15:47:54 -0800326 new TopologyEvent(deviceEvent, registryService.getControllerId());
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800327 eventChannel.addEntry(topologyEvent.getID(),
328 topologyEvent);
Yuta HIGUCHI586d33e2014-02-13 17:05:08 -0800329 }
330 // TODO handle invariant violation
331 // XXX if prepareFor~ method returned false, event should be dropped
Jonathan Hart22eb9882014-02-11 15:52:59 -0800332 }
333
334 @Override
335 public void removeDeviceEvent(DeviceEvent deviceEvent) {
Yuta HIGUCHI586d33e2014-02-13 17:05:08 -0800336 if (prepareForRemoveDeviceEvent(deviceEvent)) {
337// datastore.removeDevice(deviceEvent);
Yuta HIGUCHId457c052014-02-14 18:33:04 -0800338// removeDevice(deviceEvent);
Pavlin Radoslavov721a2e02014-02-14 23:40:14 -0800339 // Send out notification
340 eventChannel.removeEntry(deviceEvent.getID());
Yuta HIGUCHI586d33e2014-02-13 17:05:08 -0800341 }
342 // TODO handle invariant violation
343 // XXX if prepareFor~ method returned false, event should be dropped
Jonathan Hart22eb9882014-02-11 15:52:59 -0800344 }
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -0800345
Jonathan Hart22eb9882014-02-11 15:52:59 -0800346 /* *****************
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800347 * Internal methods to maintain invariants of the network graph
Jonathan Hart22eb9882014-02-11 15:52:59 -0800348 * *****************/
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -0800349
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800350 /**
351 *
352 * @param swEvt
353 * @return true if ready to accept event.
354 */
355 private boolean prepareForAddSwitchEvent(SwitchEvent swEvt) {
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800356 // No show stopping precondition
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800357 // Prep: remove(deactivate) Ports on Switch, which is not on event
358 removePortsNotOnEvent(swEvt);
359 return true;
Jonathan Hart22eb9882014-02-11 15:52:59 -0800360 }
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -0800361
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800362 private boolean prepareForRemoveSwitchEvent(SwitchEvent swEvt) {
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800363 // No show stopping precondition
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800364 // Prep: remove(deactivate) Ports on Switch, which is not on event
365 // XXX may be remove switch should imply wipe all ports
366 removePortsNotOnEvent(swEvt);
367 return true;
368 }
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800369
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800370 private void removePortsNotOnEvent(SwitchEvent swEvt) {
371 Switch sw = switches.get( swEvt.getDpid() );
372 if ( sw != null ) {
373 Set<Long> port_noOnEvent = new HashSet<>();
374 for( PortEvent portEvent : swEvt.getPorts()) {
375 port_noOnEvent.add(portEvent.getNumber());
376 }
377 // Existing ports not on event should be removed.
378 // TODO Should batch eventually for performance?
Jonathan Hart480c5572014-02-14 18:28:16 -0800379 List<Port> portsToRemove = new ArrayList<Port>();
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800380 for( Port p : sw.getPorts() ) {
381 if ( !port_noOnEvent.contains(p.getNumber()) ) {
Jonathan Hart480c5572014-02-14 18:28:16 -0800382 //PortEvent rmEvent = new PortEvent(p.getSwitch().getDpid(), p.getNumber());
383 // calling Discovery removePort() API to wipe from DB, etc.
384 //removePortEvent(rmEvent);
Yuta HIGUCHI240bf072014-02-17 10:55:21 -0800385
Jonathan Hart480c5572014-02-14 18:28:16 -0800386 // We can't remove ports here because this will trigger a remove
387 // from the switch's port list, which we are currently iterating
388 // over.
389 portsToRemove.add(p);
390 }
391 }
392 for (Port p : portsToRemove) {
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800393 PortEvent rmEvent = new PortEvent(p.getSwitch().getDpid(), p.getNumber());
394 // calling Discovery removePort() API to wipe from DB, etc.
395 removePortEvent(rmEvent);
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800396 }
397 }
Jonathan Hart22eb9882014-02-11 15:52:59 -0800398 }
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -0800399
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800400 private boolean prepareForAddPortEvent(PortEvent portEvt) {
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800401 // Parent Switch must exist
402 if ( getSwitch(portEvt.getDpid()) == null) {
403 return false;
404 }
405 // Prep: None
Jonathan Hart22eb9882014-02-11 15:52:59 -0800406 return true;
407 }
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -0800408
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800409 private boolean prepareForRemovePortEvent(PortEvent portEvt) {
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800410 // Parent Switch must exist
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800411 Switch sw = getSwitch(portEvt.getDpid());
412 if ( sw == null ) {
Yuta HIGUCHI88be0f22014-02-14 17:20:43 -0800413 log.debug("Switch already removed? {}", portEvt);
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800414 return false;
415 }
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800416 Port port = sw.getPort(portEvt.getNumber());
417 if ( port == null ) {
418 log.debug("Port already removed? {}", portEvt);
419 // let it pass
420 return true;
421 }
422
423 // Prep: Remove Link and Device Attachment
Yuta HIGUCHI240bf072014-02-17 10:55:21 -0800424 ArrayList<DeviceEvent> deviceEvts = new ArrayList<>();
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800425 for (Device device : port.getDevices()) {
Yuta HIGUCHI88be0f22014-02-14 17:20:43 -0800426 log.debug("Removing Device {} on Port {}", device, portEvt);
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800427 DeviceEvent devEvt = new DeviceEvent(device.getMacAddress());
428 devEvt.addAttachmentPoint(new SwitchPort(port.getSwitch().getDpid(), port.getNumber()));
Yuta HIGUCHI240bf072014-02-17 10:55:21 -0800429 deviceEvts.add(devEvt);
430 }
431 for (DeviceEvent devEvt : deviceEvts) {
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800432 // calling Discovery API to wipe from DB, etc.
433 removeDeviceEvent(devEvt);
434 }
Yuta HIGUCHI240bf072014-02-17 10:55:21 -0800435
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800436 Set<Link> links = new HashSet<>();
437 links.add(port.getOutgoingLink());
438 links.add(port.getIncomingLink());
439 for ( Link link : links) {
440 if (link == null ) {
441 continue;
442 }
Yuta HIGUCHI88be0f22014-02-14 17:20:43 -0800443 log.debug("Removing Link {} on Port {}", link, portEvt);
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800444 LinkEvent linkEvent = new LinkEvent(link.getSourceSwitchDpid(), link.getSourcePortNumber(), link.getDestinationSwitchDpid(), link.getDestinationPortNumber());
445 // calling Discovery API to wipe from DB, etc.
Yuta HIGUCHI71e7a052014-02-17 22:14:15 -0800446
447 // Call internal remove Link, which will check
448 // ownership of DST dpid and modify DB only if it is the owner
449 removeLinkEvent(linkEvent, true);
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800450 }
Jonathan Hart22eb9882014-02-11 15:52:59 -0800451 return true;
452 }
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -0800453
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800454 private boolean prepareForAddLinkEvent(LinkEvent linkEvt) {
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800455 // Src/Dst Switch must exist
456 Switch srcSw = getSwitch(linkEvt.getSrc().dpid);
457 Switch dstSw = getSwitch(linkEvt.getDst().dpid);
458 if ( srcSw == null || dstSw == null ) {
459 return false;
460 }
461 // Src/Dst Port must exist
462 Port srcPort = srcSw.getPort(linkEvt.getSrc().number);
Jonathan Hart4c263272014-02-13 17:41:05 -0800463 Port dstPort = dstSw.getPort(linkEvt.getDst().number);
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800464 if ( srcPort == null || dstPort == null ) {
465 return false;
466 }
467
468 // Prep: remove Device attachment on both Ports
Yuta HIGUCHI240bf072014-02-17 10:55:21 -0800469 ArrayList<DeviceEvent> deviceEvents = new ArrayList<>();
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800470 for (Device device : srcPort.getDevices()) {
471 DeviceEvent devEvt = new DeviceEvent(device.getMacAddress());
472 devEvt.addAttachmentPoint(new SwitchPort(srcPort.getSwitch().getDpid(), srcPort.getNumber()));
Yuta HIGUCHI240bf072014-02-17 10:55:21 -0800473 deviceEvents.add(devEvt);
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800474 }
475 for (Device device : dstPort.getDevices()) {
476 DeviceEvent devEvt = new DeviceEvent(device.getMacAddress());
477 devEvt.addAttachmentPoint(new SwitchPort(dstPort.getSwitch().getDpid(), dstPort.getNumber()));
Yuta HIGUCHI240bf072014-02-17 10:55:21 -0800478 deviceEvents.add(devEvt);
479 }
480 for (DeviceEvent devEvt : deviceEvents) {
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800481 // calling Discovery API to wipe from DB, etc.
482 removeDeviceEvent(devEvt);
483 }
484
485 return true;
Jonathan Hart22eb9882014-02-11 15:52:59 -0800486 }
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -0800487
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800488 private boolean prepareForRemoveLinkEvent(LinkEvent linkEvt) {
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800489 // Src/Dst Switch must exist
490 Switch srcSw = getSwitch(linkEvt.getSrc().dpid);
491 Switch dstSw = getSwitch(linkEvt.getDst().dpid);
492 if ( srcSw == null || dstSw == null ) {
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800493 log.warn("Rejecting removeLink {} because switch doesn't exist", linkEvt);
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800494 return false;
495 }
496 // Src/Dst Port must exist
497 Port srcPort = srcSw.getPort(linkEvt.getSrc().number);
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800498 Port dstPort = dstSw.getPort(linkEvt.getDst().number);
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800499 if ( srcPort == null || dstPort == null ) {
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800500 log.warn("Rejecting removeLink {} because port doesn't exist", linkEvt);
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800501 return false;
502 }
503
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800504 Link link = srcPort.getOutgoingLink();
505
506 // Link is already gone, or different Link exist in memory
507 // XXX Check if we should reject or just accept these cases.
508 // it should be harmless to remove the Link on event from DB anyways
509 if (link == null ||
510 !link.getDestinationPortNumber().equals(linkEvt.getDst().number)
511 || !link.getDestinationSwitchDpid().equals(linkEvt.getDst().dpid)) {
512 log.warn("Rejecting removeLink {} because link doesn't exist", linkEvt);
513 return false;
514 }
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800515 // Prep: None
516 return true;
Jonathan Hart22eb9882014-02-11 15:52:59 -0800517 }
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -0800518
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800519 /**
520 *
521 * @param deviceEvt Event will be modified to remove inapplicable attachemntPoints/ipAddress
522 * @return false if this event should be dropped.
523 */
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800524 private boolean prepareForAddDeviceEvent(DeviceEvent deviceEvt) {
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800525 boolean preconditionBroken = false;
526 ArrayList<PortEvent.SwitchPort> failedSwitchPort = new ArrayList<>();
527 for ( PortEvent.SwitchPort swp : deviceEvt.getAttachmentPoints() ) {
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800528 // Attached Ports' Parent Switch must exist
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800529 Switch sw = getSwitch(swp.dpid);
530 if ( sw == null ) {
531 preconditionBroken = true;
532 failedSwitchPort.add(swp);
533 continue;
534 }
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800535 // Attached Ports must exist
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800536 Port port = sw.getPort(swp.number);
537 if ( port == null ) {
538 preconditionBroken = true;
539 failedSwitchPort.add(swp);
540 continue;
541 }
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800542 // Attached Ports must not have Link
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800543 if ( port.getOutgoingLink() != null || port.getIncomingLink() != null ) {
544 preconditionBroken = true;
545 failedSwitchPort.add(swp);
546 continue;
547 }
548 }
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800549
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800550 // Rewriting event to exclude failed attachmentPoint
551 // XXX Assumption behind this is that inapplicable device event should
552 // be dropped, not deferred. If we decide to defer Device event,
553 // rewriting can become a problem
554 List<SwitchPort> attachmentPoints = deviceEvt.getAttachmentPoints();
555 attachmentPoints.removeAll(failedSwitchPort);
556 deviceEvt.setAttachmentPoints(attachmentPoints);
557
558 if ( deviceEvt.getAttachmentPoints().isEmpty() && deviceEvt.getIpAddresses().isEmpty() ) {
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800559 // return false to represent: Nothing left to do for this event. Caller should drop event
Yuta HIGUCHI8d762e92014-02-12 14:10:25 -0800560 return false;
561 }
562
563 // Should we return false to tell caller that the event was trimmed?
564 // if ( preconditionBroken ) {
565 // return false;
566 // }
567
568 return true;
Jonathan Hart22eb9882014-02-11 15:52:59 -0800569 }
Yuta HIGUCHIcd922f42014-02-11 18:59:11 -0800570
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800571 private boolean prepareForRemoveDeviceEvent(DeviceEvent deviceEvt) {
Yuta HIGUCHId02e9282014-02-12 09:24:41 -0800572 // No show stopping precondition?
573 // Prep: none
Jonathan Hart22eb9882014-02-11 15:52:59 -0800574 return true;
575 }
Yuta HIGUCHI928fa682014-02-11 19:07:57 -0800576
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800577 /* ******************************
578 * NetworkGraphReplicationInterface methods
579 * ******************************/
580
Yuta HIGUCHI928fa682014-02-11 19:07:57 -0800581 @Override
582 public void putSwitchReplicationEvent(SwitchEvent switchEvent) {
Yuta HIGUCHI9fc10ac2014-02-12 17:18:57 -0800583 if (prepareForAddSwitchEvent(switchEvent)) {
584 putSwitch(switchEvent);
585 }
586 // TODO handle invariant violation
Yuta HIGUCHIa536e762014-02-17 21:47:28 -0800587 // trigger instance local topology event handler
588 dispatchPutSwitchEvent(switchEvent);
Yuta HIGUCHI928fa682014-02-11 19:07:57 -0800589 }
590
591 @Override
592 public void removeSwitchReplicationEvent(SwitchEvent switchEvent) {
Yuta HIGUCHI9fc10ac2014-02-12 17:18:57 -0800593 if (prepareForRemoveSwitchEvent(switchEvent)) {
594 removeSwitch(switchEvent);
595 }
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800596 // TODO handle invariant violation
Yuta HIGUCHIa536e762014-02-17 21:47:28 -0800597 // trigger instance local topology event handler
598 dispatchRemoveSwitchEvent(switchEvent);
Yuta HIGUCHI928fa682014-02-11 19:07:57 -0800599 }
600
601 @Override
602 public void putPortReplicationEvent(PortEvent portEvent) {
Yuta HIGUCHI9fc10ac2014-02-12 17:18:57 -0800603 if (prepareForAddPortEvent(portEvent)) {
604 putPort(portEvent);
605 }
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800606 // TODO handle invariant violation
Yuta HIGUCHIa536e762014-02-17 21:47:28 -0800607 // trigger instance local topology event handler
608 dispatchPutPortEvent(portEvent);
Yuta HIGUCHI928fa682014-02-11 19:07:57 -0800609 }
610
611 @Override
612 public void removePortReplicationEvent(PortEvent portEvent) {
Yuta HIGUCHI9fc10ac2014-02-12 17:18:57 -0800613 if (prepareForRemovePortEvent(portEvent)) {
614 removePort(portEvent);
615 }
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800616 // TODO handle invariant violation
Yuta HIGUCHIa536e762014-02-17 21:47:28 -0800617 // trigger instance local topology event handler
618 dispatchRemovePortEvent(portEvent);
Yuta HIGUCHI928fa682014-02-11 19:07:57 -0800619 }
620
621 @Override
622 public void putLinkReplicationEvent(LinkEvent linkEvent) {
Yuta HIGUCHI9fc10ac2014-02-12 17:18:57 -0800623 if (prepareForAddLinkEvent(linkEvent)) {
624 putLink(linkEvent);
625 }
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800626 // TODO handle invariant violation
Yuta HIGUCHIa536e762014-02-17 21:47:28 -0800627 // trigger instance local topology event handler
628 dispatchPutLinkEvent(linkEvent);
Yuta HIGUCHI928fa682014-02-11 19:07:57 -0800629 }
630
631 @Override
632 public void removeLinkReplicationEvent(LinkEvent linkEvent) {
Yuta HIGUCHI9fc10ac2014-02-12 17:18:57 -0800633 if (prepareForRemoveLinkEvent(linkEvent)) {
634 removeLink(linkEvent);
635 }
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800636 // TODO handle invariant violation
Yuta HIGUCHIa536e762014-02-17 21:47:28 -0800637 // trigger instance local topology event handler
638 dispatchRemoveLinkEvent(linkEvent);
Yuta HIGUCHI928fa682014-02-11 19:07:57 -0800639 }
640
641 @Override
642 public void putDeviceReplicationEvent(DeviceEvent deviceEvent) {
Yuta HIGUCHI9fc10ac2014-02-12 17:18:57 -0800643 if (prepareForAddDeviceEvent(deviceEvent)) {
644 putDevice(deviceEvent);
645 }
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800646 // TODO handle invariant violation
Yuta HIGUCHIa536e762014-02-17 21:47:28 -0800647 // trigger instance local topology event handler
648 dispatchPutDeviceEvent(deviceEvent);
Yuta HIGUCHI928fa682014-02-11 19:07:57 -0800649 }
650
651 @Override
652 public void removeDeviceReplicationEvent(DeviceEvent deviceEvent) {
Yuta HIGUCHI9fc10ac2014-02-12 17:18:57 -0800653 if (prepareForRemoveDeviceEvent(deviceEvent)) {
654 removeDevice(deviceEvent);
655 }
Yuta HIGUCHI125c7df2014-02-14 12:28:10 -0800656 // TODO handle invariant violation
Yuta HIGUCHIa536e762014-02-17 21:47:28 -0800657 // trigger instance local topology event handler
658 dispatchRemoveDeviceEvent(deviceEvent);
Yuta HIGUCHI928fa682014-02-11 19:07:57 -0800659 }
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800660
661 /* ************************************************
662 * Internal In-memory object mutation methods.
663 * ************************************************/
664
665 void putSwitch(SwitchEvent swEvt) {
666 if (swEvt == null) {
667 throw new IllegalArgumentException("Switch cannot be null");
668 }
669
670 Switch sw = switches.get(swEvt.getDpid());
671
672 if (sw == null) {
673 sw = new SwitchImpl(this, swEvt.getDpid());
674 Switch existing = switches.putIfAbsent(swEvt.getDpid(), sw);
675 if (existing != null) {
676 log.warn(
677 "Concurrent putSwitch not expected. Continuing updating {}",
678 existing);
679 sw = existing;
680 }
681 }
682
683 // Update when more attributes are added to Event object
684 // no attribute to update for now
685
686 // TODO handle child Port event properly for performance
687 for (PortEvent portEvt : swEvt.getPorts() ) {
688 putPort(portEvt);
689 }
690
691 }
692
693 void removeSwitch(SwitchEvent swEvt) {
694 if (swEvt == null) {
695 throw new IllegalArgumentException("Switch cannot be null");
696 }
697
698 // TODO handle child Port event properly for performance
699 for (PortEvent portEvt : swEvt.getPorts() ) {
700 removePort(portEvt);
701 }
702
703 Switch sw = switches.get(swEvt.getDpid());
704
705 if (sw == null) {
706 log.warn("Switch {} already removed, ignoring", swEvt);
707 return;
708 }
709
Yuta HIGUCHI317bf542014-02-17 11:02:39 -0800710 // remove all ports if there still exist
711 ArrayList<PortEvent> portsToRemove = new ArrayList<>();
712 for (Port port : sw.getPorts()) {
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800713 log.warn(
Yuta HIGUCHI317bf542014-02-17 11:02:39 -0800714 "Port {} on Switch {} should be removed prior to removing Switch. Removing Port now",
715 port, swEvt);
716 PortEvent portEvt = new PortEvent(port.getDpid(), port.getNumber());
717 portsToRemove.add(portEvt);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800718 }
Yuta HIGUCHI0a4bd192014-02-17 13:52:34 -0800719 for (PortEvent portEvt : portsToRemove) {
Yuta HIGUCHI317bf542014-02-17 11:02:39 -0800720 // XXX calling removePortEvent() may trigger duplicate event, once at prepare phase, second time here
721 // If event can be squashed, ignored etc. at receiver side it shouldn't be a problem, but if not
722 // need to re-visit this issue.
723
724 // Note: removePortEvent() implies removal of attached Device, etc.
725 // if we decide not to call removePortEvent(), Device needs to be handled properly
726 removePortEvent(portEvt);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800727 }
728
729 boolean removed = switches.remove(swEvt.getDpid(), sw);
730 if (removed) {
731 log.warn(
732 "Switch instance was replaced concurrently while removing {}. Something is not right.",
733 sw);
734 }
735 }
736
737 void putPort(PortEvent portEvt) {
738 if (portEvt == null) {
739 throw new IllegalArgumentException("Port cannot be null");
740 }
741 Switch sw = switches.get(portEvt.getDpid());
742 if (sw == null) {
743 throw new BrokenInvariantException(String.format(
744 "Switch with dpid %s did not exist.",
745 new Dpid(portEvt.getDpid())));
746 }
747 Port p = sw.getPort(portEvt.getNumber());
748 PortImpl port = null;
749 if (p != null) {
750 port = getPortImpl(p);
751 }
752
753 if (port == null) {
754 port = new PortImpl(this, sw, portEvt.getNumber());
755 }
756
757 // TODO update attributes
758
759 SwitchImpl s = getSwitchImpl(sw);
760 s.addPort(port);
761 }
762
763 void removePort(PortEvent portEvt) {
764 if (portEvt == null) {
765 throw new IllegalArgumentException("Port cannot be null");
766 }
767
768 Switch sw = switches.get(portEvt.getDpid());
769 if (sw == null) {
770 log.warn("Parent Switch for Port {} already removed, ignoring", portEvt);
771 return;
772 }
773
774 Port p = sw.getPort(portEvt.getNumber());
775 if (p == null) {
776 log.warn("Port {} already removed, ignoring", portEvt);
777 return;
778 }
779
Yuta HIGUCHIde040642014-02-17 11:03:39 -0800780 // Remove Link and Device Attachment
781 for (Device device : p.getDevices()) {
782 log.debug("Removing Device {} on Port {}", device, portEvt);
783 DeviceEvent devEvt = new DeviceEvent(device.getMacAddress());
784 devEvt.addAttachmentPoint(new SwitchPort(p.getSwitch().getDpid(), p.getNumber()));
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800785
Yuta HIGUCHIde040642014-02-17 11:03:39 -0800786 // XXX calling removeDeviceEvent() may trigger duplicate event, once at prepare phase, second time here
787 // If event can be squashed, ignored etc. at receiver side it shouldn't be a problem, but if not
788 // need to re-visit
789
790 // calling Discovery API to wipe from DB, etc.
791 removeDeviceEvent(devEvt);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800792 }
Yuta HIGUCHIde040642014-02-17 11:03:39 -0800793 Set<Link> links = new HashSet<>();
794 links.add(p.getOutgoingLink());
795 links.add(p.getIncomingLink());
796 ArrayList<LinkEvent> linksToRemove = new ArrayList<>();
797 for (Link link : links) {
798 if (link == null) {
799 continue;
800 }
801 log.debug("Removing Link {} on Port {}", link, portEvt);
802 LinkEvent linkEvent = new LinkEvent(link.getSourceSwitchDpid(), link.getSourcePortNumber(), link.getDestinationSwitchDpid(), link.getDestinationPortNumber());
803 linksToRemove.add(linkEvent);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800804 }
Yuta HIGUCHIde040642014-02-17 11:03:39 -0800805 for (LinkEvent linkEvent : linksToRemove) {
806 // XXX calling removeLinkEvent() may trigger duplicate event, once at prepare phase, second time here
807 // If event can be squashed, ignored etc. at receiver side it shouldn't be a problem, but if not
808 // need to re-visit
809
810 // calling Discovery API to wipe from DB, etc.
811 removeLinkEvent(linkEvent);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800812 }
813
814 // remove Port from Switch
815 SwitchImpl s = getSwitchImpl(sw);
816 s.removePort(p);
817 }
818
819 void putLink(LinkEvent linkEvt) {
820 if (linkEvt == null) {
821 throw new IllegalArgumentException("Link cannot be null");
822 }
823
824 Switch srcSw = switches.get(linkEvt.getSrc().dpid);
825 if (srcSw == null) {
826 throw new BrokenInvariantException(
827 String.format(
828 "Switch with dpid %s did not exist.",
829 new Dpid(linkEvt.getSrc().dpid)));
830 }
831
832 Switch dstSw = switches.get(linkEvt.getDst().dpid);
833 if (dstSw == null) {
834 throw new BrokenInvariantException(
835 String.format(
836 "Switch with dpid %s did not exist.",
837 new Dpid(linkEvt.getDst().dpid)));
838 }
839
840 Port srcPort = srcSw.getPort(linkEvt.getSrc().number);
841 if (srcPort == null) {
842 throw new BrokenInvariantException(
843 String.format(
844 "Src Port %s of a Link did not exist.",
845 linkEvt.getSrc() ));
846 }
847
848 Port dstPort = dstSw.getPort(linkEvt.getDst().number);
849 if (dstPort == null) {
850 throw new BrokenInvariantException(
851 String.format(
852 "Dst Port %s of a Link did not exist.",
853 linkEvt.getDst() ));
854 }
855
856 // getting Link instance from destination port incoming Link
857 Link l = dstPort.getIncomingLink();
858 LinkImpl link = null;
859 assert( l == srcPort.getOutgoingLink() );
860 if (l != null) {
861 link = getLinkImpl(l);
862 }
863
864 if (link == null) {
865 link = new LinkImpl(this, srcPort, dstPort);
866 }
867
868
869 PortImpl dstPortMem = getPortImpl(dstPort);
870 PortImpl srcPortMem = getPortImpl(srcPort);
871
872 // Add Link first to avoid further Device addition
873
874 // add Link to Port
875 dstPortMem.setIncomingLink(link);
876 srcPortMem.setOutgoingLink(link);
877
878 // remove Device Pointing to Port if any
879 for(Device d : dstPortMem.getDevices() ) {
880 log.error("Device {} on Port {} should have been removed prior to adding Link {}", d, dstPort, linkEvt);
881 DeviceImpl dev = getDeviceImpl(d);
882 dev.removeAttachmentPoint(dstPort);
Yuta HIGUCHI407261a2014-02-13 16:34:06 -0800883 // This implies that change is made to Device Object.
884 // sending Device attachment point removed event
885 DeviceEvent rmEvent = new DeviceEvent(d.getMacAddress());
886 rmEvent.addAttachmentPoint(new SwitchPort(dstPort.getDpid(), dstPort.getNumber()));
887 removeDeviceEvent(rmEvent);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800888 }
889 dstPortMem.removeAllDevice();
890 for(Device d : srcPortMem.getDevices() ) {
891 log.error("Device {} on Port {} should have been removed prior to adding Link {}", d, srcPort, linkEvt);
892 DeviceImpl dev = getDeviceImpl(d);
893 dev.removeAttachmentPoint(srcPort);
Yuta HIGUCHI407261a2014-02-13 16:34:06 -0800894 // This implies that change is made to Device Object.
895 // sending Device attachment point removed event
896 DeviceEvent rmEvent = new DeviceEvent(d.getMacAddress());
897 rmEvent.addAttachmentPoint(new SwitchPort(dstPort.getDpid(), dstPort.getNumber()));
898 removeDeviceEvent(rmEvent);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800899 }
900 srcPortMem.removeAllDevice();
901
902 }
903
904 void removeLink(LinkEvent linkEvt) {
905 if (linkEvt == null) {
906 throw new IllegalArgumentException("Link cannot be null");
907 }
908
909 Switch srcSw = switches.get(linkEvt.getSrc().dpid);
910 if (srcSw == null) {
911 log.warn("Src Switch for Link {} already removed, ignoring", linkEvt);
912 return;
913 }
914
915 Switch dstSw = switches.get(linkEvt.getDst().dpid);
916 if (dstSw == null) {
917 log.warn("Dst Switch for Link {} already removed, ignoring", linkEvt);
918 return;
919 }
920
921 Port srcPort = srcSw.getPort(linkEvt.getSrc().number);
922 if (srcPort == null) {
923 log.warn("Src Port for Link {} already removed, ignoring", linkEvt);
924 return;
925 }
926
927 Port dstPort = dstSw.getPort(linkEvt.getDst().number);
928 if (dstPort == null) {
929 log.warn("Dst Port for Link {} already removed, ignoring", linkEvt);
930 return;
931 }
932
933 Link l = dstPort.getIncomingLink();
934 if ( l == null ) {
935 log.warn("Link {} already removed on destination Port", linkEvt);
936 }
937 l = srcPort.getOutgoingLink();
938 if ( l == null ) {
939 log.warn("Link {} already removed on src Port", linkEvt);
940 }
941
942 getPortImpl(dstPort).setIncomingLink(null);
943 getPortImpl(srcPort).setOutgoingLink(null);
944 }
945
946 // XXX Need to rework Device related
947 void putDevice(DeviceEvent deviceEvt) {
948 if (deviceEvt == null) {
949 throw new IllegalArgumentException("Device cannot be null");
950 }
951
952 Device device = getDeviceByMac(deviceEvt.getMac());
953 if ( device == null ) {
954 device = new DeviceImpl(this, deviceEvt.getMac());
955 Device existing = mac2Device.putIfAbsent(deviceEvt.getMac(), device);
956 if (existing != null) {
957 log.warn(
958 "Concurrent putDevice seems to be in action. Continuing updating {}",
959 existing);
960 device = existing;
961 }
962 }
963 DeviceImpl memDevice = getDeviceImpl(device);
964
965 // for each attachment point
966 for (SwitchPort swp : deviceEvt.getAttachmentPoints() ) {
967 // Attached Ports' Parent Switch must exist
968 Switch sw = getSwitch(swp.dpid);
969 if ( sw == null ) {
Yuta HIGUCHI25719052014-02-13 14:42:06 -0800970 log.warn("Switch for the attachment point {} did not exist. skipping mutation", swp);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800971 continue;
972 }
973 // Attached Ports must exist
974 Port port = sw.getPort(swp.number);
975 if ( port == null ) {
Yuta HIGUCHI25719052014-02-13 14:42:06 -0800976 log.warn("Port for the attachment point {} did not exist. skipping mutation", swp);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -0800977 continue;
978 }
979 // Attached Ports must not have Link
980 if ( port.getOutgoingLink() != null || port.getIncomingLink() != null ) {
981 log.warn("Link (Out:{},In:{}) exist on the attachment point, skipping mutation.", port.getOutgoingLink(), port.getIncomingLink());
982 continue;
983 }
984
985 // finally add Device <-> Port on In-memory structure
986 PortImpl memPort = getPortImpl(port);
987 memPort.addDevice(device);
988 memDevice.addAttachmentPoint(port);
989 }
990
991 // for each IP address
992 for( InetAddress ipAddr : deviceEvt.getIpAddresses() ) {
993 // Add Device -> IP
994 memDevice.addIpAddress(ipAddr);
995
996 // Add IP -> Set<Device>
997 boolean updated = false;
998 do {
999 Set<Device> devices = this.addr2Device.get(ipAddr);
1000 if ( devices == null ) {
1001 devices = new HashSet<>();
1002 Set<Device> existing = this.addr2Device.putIfAbsent(ipAddr, devices);
1003 if ( existing == null ) {
1004 // success
1005 updated = true;
1006 }
1007 } else {
1008 Set<Device> updateDevices = new HashSet<>(devices);
1009 updateDevices.add(device);
1010 updated = this.addr2Device.replace(ipAddr, devices, updateDevices);
1011 }
1012 if (!updated) {
1013 log.debug("Collision detected, updating IP to Device mapping retrying.");
1014 }
1015 } while( !updated );
1016 }
1017 }
1018
1019 void removeDevice(DeviceEvent deviceEvt) {
1020 if (deviceEvt == null) {
1021 throw new IllegalArgumentException("Device cannot be null");
1022 }
1023
1024 Device device = getDeviceByMac(deviceEvt.getMac());
1025 if ( device == null ) {
1026 log.warn("Device {} already removed, ignoring", deviceEvt);
1027 return;
1028 }
1029 DeviceImpl memDevice = getDeviceImpl(device);
1030
1031 // for each attachment point
1032 for (SwitchPort swp : deviceEvt.getAttachmentPoints() ) {
1033 // Attached Ports' Parent Switch must exist
1034 Switch sw = getSwitch(swp.dpid);
1035 if ( sw == null ) {
Yuta HIGUCHI25719052014-02-13 14:42:06 -08001036 log.warn("Switch for the attachment point {} did not exist. skipping attachment point mutation", swp);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -08001037 continue;
1038 }
1039 // Attached Ports must exist
1040 Port port = sw.getPort(swp.number);
1041 if ( port == null ) {
Yuta HIGUCHI25719052014-02-13 14:42:06 -08001042 log.warn("Port for the attachment point {} did not exist. skipping attachment point mutation", swp);
Yuta HIGUCHI76df2472014-02-12 22:36:51 -08001043 continue;
1044 }
1045
1046 // finally remove Device <-> Port on In-memory structure
1047 PortImpl memPort = getPortImpl(port);
1048 memPort.removeDevice(device);
1049 memDevice.removeAttachmentPoint(port);
1050 }
1051
1052 // for each IP address
1053 for( InetAddress ipAddr : deviceEvt.getIpAddresses() ) {
1054 // Remove Device -> IP
1055 memDevice.removeIpAddress(ipAddr);
1056
1057 // Remove IP -> Set<Device>
1058 boolean updated = false;
1059 do {
1060 Set<Device> devices = this.addr2Device.get(ipAddr);
1061 if ( devices == null ) {
1062 // already empty set, nothing to do
1063 updated = true;
1064 } else {
1065 Set<Device> updateDevices = new HashSet<>(devices);
1066 updateDevices.remove(device);
1067 updated = this.addr2Device.replace(ipAddr, devices, updateDevices);
1068 }
1069 if (!updated) {
1070 log.debug("Collision detected, updating IP to Device mapping retrying.");
1071 }
1072 } while( !updated );
1073 }
1074 }
1075
Yuta HIGUCHIa536e762014-02-17 21:47:28 -08001076 private void dispatchPutSwitchEvent(SwitchEvent switchEvent) {
1077 for (INetworkGraphListener listener : this.networkGraphListeners) {
1078 // TODO Should copy before handing them over to listener
1079 listener.putSwitchEvent(switchEvent);
1080 }
1081 }
1082
1083 private void dispatchRemoveSwitchEvent(SwitchEvent switchEvent) {
1084 for (INetworkGraphListener listener : this.networkGraphListeners) {
1085 // TODO Should copy before handing them over to listener
1086 listener.removeSwitchEvent(switchEvent);
1087 }
1088 }
1089
1090 private void dispatchPutPortEvent(PortEvent portEvent) {
1091 for (INetworkGraphListener listener : this.networkGraphListeners) {
1092 // TODO Should copy before handing them over to listener
1093 listener.putPortEvent(portEvent);
1094 }
1095 }
1096
1097 private void dispatchRemovePortEvent(PortEvent portEvent) {
1098 for (INetworkGraphListener listener : this.networkGraphListeners) {
1099 // TODO Should copy before handing them over to listener
1100 listener.removePortEvent(portEvent);
1101 }
1102 }
1103
1104 private void dispatchPutLinkEvent(LinkEvent linkEvent) {
1105 for (INetworkGraphListener listener : this.networkGraphListeners) {
1106 // TODO Should copy before handing them over to listener
1107 listener.putLinkEvent(linkEvent);
1108 }
1109 }
1110
1111 private void dispatchRemoveLinkEvent(LinkEvent linkEvent) {
1112 for (INetworkGraphListener listener : this.networkGraphListeners) {
1113 // TODO Should copy before handing them over to listener
1114 listener.removeLinkEvent(linkEvent);
1115 }
1116 }
1117
1118 private void dispatchPutDeviceEvent(DeviceEvent deviceEvent) {
1119 for (INetworkGraphListener listener : this.networkGraphListeners) {
1120 // TODO Should copy before handing them over to listener
1121 listener.putDeviceEvent(deviceEvent);;
1122 }
1123 }
1124
1125 private void dispatchRemoveDeviceEvent(DeviceEvent deviceEvent) {
1126 for (INetworkGraphListener listener : this.networkGraphListeners) {
1127 // TODO Should copy before handing them over to listener
1128 listener.removeDeviceEvent(deviceEvent);
1129 }
1130 }
1131
Yuta HIGUCHI76df2472014-02-12 22:36:51 -08001132 private SwitchImpl getSwitchImpl(Switch sw) {
1133 if (sw instanceof SwitchImpl) {
1134 return (SwitchImpl) sw;
1135 }
1136 throw new ClassCastException("SwitchImpl expected, but found: " + sw);
1137 }
1138
1139 private PortImpl getPortImpl(Port p) {
1140 if (p instanceof PortImpl) {
1141 return (PortImpl) p;
1142 }
1143 throw new ClassCastException("PortImpl expected, but found: " + p);
1144 }
1145
1146 private LinkImpl getLinkImpl(Link l) {
1147 if (l instanceof LinkImpl) {
1148 return (LinkImpl) l;
1149 }
1150 throw new ClassCastException("LinkImpl expected, but found: " + l);
1151 }
1152
1153 private DeviceImpl getDeviceImpl(Device d) {
1154 if (d instanceof DeviceImpl) {
1155 return (DeviceImpl) d;
1156 }
1157 throw new ClassCastException("DeviceImpl expected, but found: " + d);
1158 }
1159
1160 @Deprecated
1161 public void loadWholeTopologyFromDB() {
Yuta HIGUCHI0a4bd192014-02-17 13:52:34 -08001162 // XXX May need to clear whole topology first, depending on
1163 // how we initially subscribe to replication events
Yuta HIGUCHI76df2472014-02-12 22:36:51 -08001164
1165 for (RCSwitch sw : RCSwitch.getAllSwitches()) {
1166 if ( sw.getStatus() != RCSwitch.STATUS.ACTIVE ) {
1167 continue;
1168 }
1169 putSwitchReplicationEvent(new SwitchEvent(sw.getDpid()));
1170 }
1171
1172 for (RCPort p : RCPort.getAllPorts()) {
1173 if (p.getStatus() != RCPort.STATUS.ACTIVE) {
1174 continue;
1175 }
1176 putPortReplicationEvent(new PortEvent(p.getDpid(), p.getNumber() ));
1177 }
1178
1179 // TODO Is Device going to be in DB? If so, read from DB.
1180 // for (RCDevice d : RCDevice.getAllDevices()) {
1181 // DeviceEvent devEvent = new DeviceEvent( MACAddress.valueOf(d.getMac()) );
1182 // for (byte[] portId : d.getAllPortIds() ) {
1183 // devEvent.addAttachmentPoint( new SwitchPort( RCPort.getDpidFromKey(portId), RCPort.getNumberFromKey(portId) ));
1184 // }
1185 // }
1186
1187 for (RCLink l : RCLink.getAllLinks()) {
Yuta HIGUCHI0a4bd192014-02-17 13:52:34 -08001188 // TODO check if src/dst switch/port exist before triggering event
Yuta HIGUCHI76df2472014-02-12 22:36:51 -08001189 putLinkReplicationEvent( new LinkEvent(l.getSrc().dpid, l.getSrc().number, l.getDst().dpid, l.getDst().number));
1190 }
1191 }
Jonathan Hart062a2e82014-02-03 09:41:57 -08001192}