|
@@ -7,6 +7,7 @@ import java.util.LinkedList;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Connection;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Connection;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Link;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Link;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Model;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Model;
|
|
|
|
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.PacketCollector;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Port;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Port;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Protocol;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Protocol;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.SmartDevice;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.SmartDevice;
|
|
@@ -103,7 +104,14 @@ public class NetworkController {
|
|
public void deleteSmartDevice(SmartDevice toDelete) {
|
|
public void deleteSmartDevice(SmartDevice toDelete) {
|
|
if (toDelete == null)
|
|
if (toDelete == null)
|
|
return;
|
|
return;
|
|
-
|
|
|
|
|
|
+ // Remove from Collectors
|
|
|
|
+ PacketCaptureController captureController = controller.getSimulationController().getPacketCaptureController();
|
|
|
|
+ for(PacketCollector collector:captureController.getPacketCollectors()){
|
|
|
|
+ if(collector.getDevices().contains(toDelete)){
|
|
|
|
+ captureController.removeDeviceFromCollector(collector, toDelete);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
// Delete Connections
|
|
// Delete Connections
|
|
for (Port p : toDelete.getPorts()) {
|
|
for (Port p : toDelete.getPorts()) {
|
|
//Skip ports that are not connected
|
|
//Skip ports that are not connected
|
|
@@ -554,29 +562,38 @@ public class NetworkController {
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- * Deletes Link l and all references
|
|
|
|
- * @param l Link to be deleted
|
|
|
|
|
|
+ * Deletes Link 'toDelete' and all references
|
|
|
|
+ * @param toDelete Link to be deleted
|
|
*/
|
|
*/
|
|
- public void deleteLink(Link l) {
|
|
|
|
- if(l==null)return;
|
|
|
|
- LinkedList<SmartDevice> devices = new LinkedList<SmartDevice>(l.getDevices());
|
|
|
|
|
|
+ public void deleteLink(Link toDelete) {
|
|
|
|
+ if(toDelete==null)return;
|
|
|
|
+ LinkedList<SmartDevice> devices = new LinkedList<SmartDevice>(toDelete.getDevices());
|
|
for(SmartDevice d : devices)
|
|
for(SmartDevice d : devices)
|
|
- removeLinkFromDevice(l, d);
|
|
|
|
|
|
+ removeLinkFromDevice(toDelete, d);
|
|
devices.clear();
|
|
devices.clear();
|
|
- LinkedList<Connection> connections = new LinkedList<Connection>(l.getConnections());
|
|
|
|
|
|
+ LinkedList<Connection> connections = new LinkedList<Connection>(toDelete.getConnections());
|
|
for(Connection c:connections)
|
|
for(Connection c:connections)
|
|
- removeConnectionFromLink(c,l);
|
|
|
|
|
|
+ removeConnectionFromLink(c,toDelete);
|
|
connections.clear();
|
|
connections.clear();
|
|
- l.getPackets().clear();
|
|
|
|
|
|
+ toDelete.getPackets().clear();
|
|
/**
|
|
/**
|
|
* Remove Link Color
|
|
* Remove Link Color
|
|
*/
|
|
*/
|
|
- controller.getSettingsController().getLinkColors().removeLink(l);
|
|
|
|
- networkTreeSettings.removeStatusOfObject(l);
|
|
|
|
|
|
+ controller.getSettingsController().getLinkColors().removeLink(toDelete);
|
|
|
|
+ networkTreeSettings.removeStatusOfObject(toDelete);
|
|
|
|
+ /**
|
|
|
|
+ * Remove from Collectors
|
|
|
|
+ */
|
|
|
|
+ PacketCaptureController captureController = controller.getSimulationController().getPacketCaptureController();
|
|
|
|
+ for(PacketCollector collector:captureController.getPacketCollectors()){
|
|
|
|
+ if(collector.getLinks().contains(toDelete)){
|
|
|
|
+ captureController.removeLinkFromCollector(collector, toDelete);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
/**
|
|
/**
|
|
* Remove Link from model
|
|
* Remove Link from model
|
|
*/
|
|
*/
|
|
- removeLink(l);
|
|
|
|
|
|
+ removeLink(toDelete);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -614,9 +631,18 @@ public class NetworkController {
|
|
if (newLink == null || !(newLink instanceof Link)) {
|
|
if (newLink == null || !(newLink instanceof Link)) {
|
|
return null;
|
|
return null;
|
|
}else {
|
|
}else {
|
|
|
|
+ //Update Link Color
|
|
LinkColorController linkColor = controller.getSettingsController().getLinkColors();
|
|
LinkColorController linkColor = controller.getSettingsController().getLinkColors();
|
|
linkColor.setColorOfLink(newLink, linkColor.getColorOfLink(oldLink).getRight());
|
|
linkColor.setColorOfLink(newLink, linkColor.getColorOfLink(oldLink).getRight());
|
|
copyNetworkTreeStatus(oldLink, newLink);
|
|
copyNetworkTreeStatus(oldLink, newLink);
|
|
|
|
+ //Update Collectors
|
|
|
|
+ PacketCaptureController captureController = controller.getSimulationController().getPacketCaptureController();
|
|
|
|
+ for(PacketCollector collector:captureController.getPacketCollectors()){
|
|
|
|
+ if(collector.getLinks().contains(oldLink)){
|
|
|
|
+ captureController.removeLinkFromCollector(collector, oldLink);
|
|
|
|
+ captureController.addLinkToCollector(collector, newLink);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
// Set old Name
|
|
// Set old Name
|
|
newLink.setName(oldLink.getName());
|
|
newLink.setName(oldLink.getName());
|
|
|
|
|
|
@@ -652,4 +678,27 @@ public class NetworkController {
|
|
newStatus.setVisible(oldStatus.isVisible());
|
|
newStatus.setVisible(oldStatus.isVisible());
|
|
networkTreeSettings.addStatusOfObject(newObject, newStatus);
|
|
networkTreeSettings.addStatusOfObject(newObject, newStatus);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Changes the Type of the SmartDevice
|
|
|
|
+ * @param old old Device which should be
|
|
|
|
+ * @param newClass new Class of the SmartDevice
|
|
|
|
+ * @return new SmartDevice, null on failure
|
|
|
|
+ */
|
|
|
|
+ public SmartDevice changeDeviceType(SmartDevice old, Class<? extends SmartDevice> newClass){
|
|
|
|
+ //Compile new SmartDevice
|
|
|
|
+ SmartDevice newDevice = old;
|
|
|
|
+ //Update Packet Collectors
|
|
|
|
+ PacketCaptureController captureController = controller.getSimulationController().getPacketCaptureController();
|
|
|
|
+ for(PacketCollector collector:captureController.getPacketCollectors()){
|
|
|
|
+ if(collector.getDevices().contains(old)){
|
|
|
|
+ captureController.removeDeviceFromCollector(collector, newDevice);
|
|
|
|
+ captureController.addDeviceToCollector(collector, newDevice);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ //Update all references
|
|
|
|
+
|
|
|
|
+ //Update Colors tree status ?
|
|
|
|
+ return newDevice;
|
|
|
|
+ }
|
|
}
|
|
}
|