|
@@ -1,6 +1,7 @@
|
|
package de.tu_darmstadt.tk.SmartHomeNetworkSim.control;
|
|
package de.tu_darmstadt.tk.SmartHomeNetworkSim.control;
|
|
|
|
|
|
import java.util.LinkedList;
|
|
import java.util.LinkedList;
|
|
|
|
+import java.util.Observer;
|
|
|
|
|
|
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;
|
|
@@ -49,6 +50,7 @@ public class PacketCaptureController {
|
|
public PacketCollector addPacketCapturer(PacketSniffer packetSniffer){
|
|
public PacketCollector addPacketCapturer(PacketSniffer packetSniffer){
|
|
PacketCollector collector = new PacketCollector(packetSniffer);
|
|
PacketCollector collector = new PacketCollector(packetSniffer);
|
|
packetCollectionManager.addPacketCollector(collector);
|
|
packetCollectionManager.addPacketCollector(collector);
|
|
|
|
+ notifyObservers();
|
|
return collector;
|
|
return collector;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -82,8 +84,10 @@ public class PacketCaptureController {
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if(packetCollector!=null)
|
|
|
|
|
|
+ if(packetCollector!=null){
|
|
removePacketCollector(packetCollector);
|
|
removePacketCollector(packetCollector);
|
|
|
|
+ notifyObservers();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -100,6 +104,7 @@ public class PacketCaptureController {
|
|
*/
|
|
*/
|
|
public void addPacketCollector(PacketCollector collector){
|
|
public void addPacketCollector(PacketCollector collector){
|
|
packetCollectionManager.addPacketCollector(collector);
|
|
packetCollectionManager.addPacketCollector(collector);
|
|
|
|
+ notifyObservers();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -108,6 +113,7 @@ public class PacketCaptureController {
|
|
*/
|
|
*/
|
|
public void removePacketCollector(PacketCollector collector){
|
|
public void removePacketCollector(PacketCollector collector){
|
|
packetCollectionManager.removePacketCollector(collector);
|
|
packetCollectionManager.removePacketCollector(collector);
|
|
|
|
+ notifyObservers();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -116,8 +122,10 @@ public class PacketCaptureController {
|
|
* @param link Link which should be captured
|
|
* @param link Link which should be captured
|
|
*/
|
|
*/
|
|
public void addLinkToCollector(PacketCollector collector, Link link){
|
|
public void addLinkToCollector(PacketCollector collector, Link link){
|
|
- if(collector!=null && link != null)
|
|
|
|
|
|
+ if(collector!=null && link != null){
|
|
collector.addLink(link);
|
|
collector.addLink(link);
|
|
|
|
+ notifyObservers();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -126,8 +134,10 @@ public class PacketCaptureController {
|
|
* @param link Link which should no longer be captured
|
|
* @param link Link which should no longer be captured
|
|
*/
|
|
*/
|
|
public void removeLinkFromCollector(PacketCollector collector, Link link){
|
|
public void removeLinkFromCollector(PacketCollector collector, Link link){
|
|
- if(collector!=null && link != null)
|
|
|
|
|
|
+ if(collector!=null && link != null){
|
|
collector.removeLink(link);
|
|
collector.removeLink(link);
|
|
|
|
+ notifyObservers();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -136,8 +146,10 @@ public class PacketCaptureController {
|
|
* @param device Device which packets should be captured
|
|
* @param device Device which packets should be captured
|
|
*/
|
|
*/
|
|
public void addDeviceToCollector(PacketCollector collector, SmartDevice device){
|
|
public void addDeviceToCollector(PacketCollector collector, SmartDevice device){
|
|
- if(collector!=null && device != null)
|
|
|
|
|
|
+ if(collector!=null && device != null){
|
|
collector.addDevice(device);
|
|
collector.addDevice(device);
|
|
|
|
+ notifyObservers();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -146,7 +158,32 @@ public class PacketCaptureController {
|
|
* @param device SmartDevice which should no longer be captured
|
|
* @param device SmartDevice which should no longer be captured
|
|
*/
|
|
*/
|
|
public void removeDeviceFromCollector(PacketCollector collector, SmartDevice device){
|
|
public void removeDeviceFromCollector(PacketCollector collector, SmartDevice device){
|
|
- if(collector!=null && device != null)
|
|
|
|
|
|
+ if(collector!=null && device != null){
|
|
collector.removeDevice(device);
|
|
collector.removeDevice(device);
|
|
|
|
+ notifyObservers();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Notify all observers of the packet collection managers
|
|
|
|
+ */
|
|
|
|
+ public void notifyObservers(){
|
|
|
|
+ packetCollectionManager.notifyObservers();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Add Observer, will be notified on updates
|
|
|
|
+ * @param o Observer which should be notified
|
|
|
|
+ */
|
|
|
|
+ public void addObserver(Observer o){
|
|
|
|
+ packetCollectionManager.addObserver(o);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Remove Observer, which will no longer be notified
|
|
|
|
+ * @param o Observer to be removed
|
|
|
|
+ */
|
|
|
|
+ public void removeObserver(Observer o){
|
|
|
|
+ packetCollectionManager.deleteObserver(o);
|
|
}
|
|
}
|
|
}
|
|
}
|