|
@@ -1,6 +1,7 @@
|
|
package de.tu_darmstadt.tk.SmartHomeNetworkSim.core;
|
|
package de.tu_darmstadt.tk.SmartHomeNetworkSim.core;
|
|
|
|
|
|
import java.util.Collection;
|
|
import java.util.Collection;
|
|
|
|
+import java.util.HashMap;
|
|
import java.util.LinkedList;
|
|
import java.util.LinkedList;
|
|
import java.util.function.Predicate;
|
|
import java.util.function.Predicate;
|
|
|
|
|
|
@@ -29,7 +30,7 @@ public class PacketCollector {
|
|
/**
|
|
/**
|
|
* Packets which were collected by this packet collector
|
|
* Packets which were collected by this packet collector
|
|
*/
|
|
*/
|
|
- private LinkedList<Packet> collectedPackets = new LinkedList<Packet>();
|
|
|
|
|
|
+ private HashMap<Link,LinkedList<Packet>> collectedPackets = new HashMap<Link, LinkedList<Packet>>();
|
|
|
|
|
|
/**
|
|
/**
|
|
* Adds a new Link, which packets should be collected. All packets send via
|
|
* Adds a new Link, which packets should be collected. All packets send via
|
|
@@ -39,8 +40,10 @@ public class PacketCollector {
|
|
* link, which packets should be collected.
|
|
* link, which packets should be collected.
|
|
*/
|
|
*/
|
|
public void addLink(Link link) {
|
|
public void addLink(Link link) {
|
|
- if(!links.contains(link))
|
|
|
|
|
|
+ if(!links.contains(link)){
|
|
links.add(link);
|
|
links.add(link);
|
|
|
|
+ collectedPackets.put(link, new LinkedList<Packet>());
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -52,6 +55,7 @@ public class PacketCollector {
|
|
*/
|
|
*/
|
|
public void removeLink(Link link) {
|
|
public void removeLink(Link link) {
|
|
links.remove(link);
|
|
links.remove(link);
|
|
|
|
+ collectedPackets.remove(link).clear();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -94,7 +98,7 @@ public class PacketCollector {
|
|
* @return true if it was sent from or to one of the devices stored in this
|
|
* @return true if it was sent from or to one of the devices stored in this
|
|
* packet collector
|
|
* packet collector
|
|
*/
|
|
*/
|
|
- public Predicate<? extends Packet> getFilter() {
|
|
|
|
|
|
+ public Predicate<? super Packet> getFilter() {
|
|
return p -> /* filter devices where source or destination is null */
|
|
return p -> /* filter devices where source or destination is null */
|
|
(p.getSource() != null && p.getDestination() != null && p.getSource().getOwner() != null
|
|
(p.getSource() != null && p.getDestination() != null && p.getSource().getOwner() != null
|
|
&& p.getDestination().getOwner() != null)
|
|
&& p.getDestination().getOwner() != null)
|
|
@@ -108,17 +112,33 @@ public class PacketCollector {
|
|
* @param packets packets which were sent
|
|
* @param packets packets which were sent
|
|
*/
|
|
*/
|
|
public void addPackets(Link link, Collection<Packet> packets) {
|
|
public void addPackets(Link link, Collection<Packet> packets) {
|
|
- collectedPackets.addAll(packets);
|
|
|
|
|
|
+ if(link == null)
|
|
|
|
+ return;
|
|
|
|
+ LinkedList<Packet> packetsOfLink = collectedPackets.get(link);
|
|
|
|
+ if(packetsOfLink !=null)
|
|
|
|
+ packetsOfLink.addAll(packets);
|
|
|
|
+ else if(links.contains(link))
|
|
|
|
+ collectedPackets.put(link, new LinkedList<>(packets));
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
* Returns the packets which were collected
|
|
* Returns the packets which were collected
|
|
* @return collected packets
|
|
* @return collected packets
|
|
*/
|
|
*/
|
|
- public LinkedList<Packet> getPackets(){
|
|
|
|
|
|
+ public HashMap<Link,LinkedList<Packet>> getPackets(){
|
|
return collectedPackets;
|
|
return collectedPackets;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Return the collected Packets of the link
|
|
|
|
+ * @param link Link, which packets should be returned
|
|
|
|
+ * @return packets, collected on the given link
|
|
|
|
+ */
|
|
|
|
+ public LinkedList<Packet> getPacketsOfLink(Link link){
|
|
|
|
+ return collectedPackets.get(link);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Resets the collected Packets list, by clearing the list.
|
|
* Resets the collected Packets list, by clearing the list.
|
|
*/
|
|
*/
|