|
@@ -2,6 +2,7 @@ package de.tu_darmstadt.tk.SmartHomeNetworkSim.control;
|
|
|
|
|
|
import java.util.Collection;
|
|
import java.util.Collection;
|
|
import java.util.Iterator;
|
|
import java.util.Iterator;
|
|
|
|
+import java.util.LinkedList;
|
|
import java.util.Observer;
|
|
import java.util.Observer;
|
|
|
|
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Connection;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Connection;
|
|
@@ -546,4 +547,76 @@ public class Controller {
|
|
|
|
|
|
return newCon;
|
|
return newCon;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Deletes the network model, removes all Devices, Connections and Links
|
|
|
|
+ */
|
|
|
|
+ public void deleteNetworkModel(){
|
|
|
|
+ /**
|
|
|
|
+ * Devices which should be deleted
|
|
|
|
+ */
|
|
|
|
+ LinkedList<SmartDevice> devicesToDelete = new LinkedList<SmartDevice>(model.getDevices());
|
|
|
|
+ for(SmartDevice d: devicesToDelete)
|
|
|
|
+ deleteSmartDevice(d);
|
|
|
|
+ devicesToDelete.clear();
|
|
|
|
+ /**
|
|
|
|
+ * Connections which should be deleted
|
|
|
|
+ */
|
|
|
|
+ LinkedList<Connection> connectionsToDelete = new LinkedList<Connection>(model.getConnections());
|
|
|
|
+ for(Connection c: connectionsToDelete)
|
|
|
|
+ deleteConnection(c);
|
|
|
|
+ connectionsToDelete.clear();
|
|
|
|
+ /**
|
|
|
|
+ * Links which should be delted
|
|
|
|
+ */
|
|
|
|
+ LinkedList<Link> linksToDelete = new LinkedList<Link>(model.getConnectionNetworks());
|
|
|
|
+ for(Link l: model.getConnectionNetworks())
|
|
|
|
+ deleteLink(l);
|
|
|
|
+ linksToDelete.clear();
|
|
|
|
+ /**
|
|
|
|
+ * Update the GUI
|
|
|
|
+ */
|
|
|
|
+ notifyObservers();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Deletes the Connection c and all references
|
|
|
|
+ * @param c Connection to be deleted
|
|
|
|
+ */
|
|
|
|
+ public void deleteConnection(Connection c) {
|
|
|
|
+ if(c == null)return;
|
|
|
|
+ for(Port p:c.getParticipants())
|
|
|
|
+ removeDeviceFromConnection(p, c);
|
|
|
|
+ removeConnectionFromLink(c, c.getLink());
|
|
|
|
+ c.setStatus(Connection.TERMINATED);
|
|
|
|
+ removeConnection(c);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Deletes Link l and all references
|
|
|
|
+ * @param l Link to be deleted
|
|
|
|
+ */
|
|
|
|
+ public void deleteLink(Link l) {
|
|
|
|
+ if(l==null)return;
|
|
|
|
+ for(SmartDevice d : l.getDevices())
|
|
|
|
+ removeLinkFromDevice(l, d);
|
|
|
|
+ for(Connection c:l.getConnections())
|
|
|
|
+ removeConnectionFromLink(c,l);
|
|
|
|
+ l.getPackets().clear();
|
|
|
|
+ removeLink(l);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Removes Connection from Link
|
|
|
|
+ * @param c Connection to be removed
|
|
|
|
+ * @param l Link to be removed
|
|
|
|
+ */
|
|
|
|
+ private void removeConnectionFromLink(Connection c, Link l) {
|
|
|
|
+ if(c!=null && c.getLink()==l){
|
|
|
|
+ c.setLink(null);
|
|
|
|
+ }
|
|
|
|
+ if(l!=null){
|
|
|
|
+ l.removeConnection(c);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|