|
@@ -0,0 +1,121 @@
|
|
|
+package de.tu_darmstadt.tk.SmartHomeNetworkSim.core;
|
|
|
+
|
|
|
+import java.util.Collection;
|
|
|
+import java.util.Comparator;
|
|
|
+import java.util.LinkedList;
|
|
|
+import java.util.ListIterator;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Implementation of the Connection Interface, with focus on precision
|
|
|
+ *
|
|
|
+ * @author Andreas T. Meyer-Berg
|
|
|
+ */
|
|
|
+public class ConnectionPrecision extends ConnectionPerformance {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Initializes the connection, adds participants of the protocol
|
|
|
+ *
|
|
|
+ * @param l Link which this connection uses
|
|
|
+ * @param p Protocol of the connection
|
|
|
+ */
|
|
|
+ public ConnectionPrecision(Link l, Protocol p) {
|
|
|
+ super(l,p);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Collection<Packet> simulateTimeInterval(long startTime, long duration) {
|
|
|
+ /**
|
|
|
+ * Time step the simulation interval ends
|
|
|
+ */
|
|
|
+ long endTime = startTime+duration;
|
|
|
+
|
|
|
+ LinkedList<Packet> returnPackets=new LinkedList<Packet>();
|
|
|
+ returnPackets.addAll(getTerminationPackages(startTime));
|
|
|
+ startTime+=returnPackets.size();
|
|
|
+ /**
|
|
|
+ * Self Sorting LinkedList for consistency
|
|
|
+ */
|
|
|
+ LinkedList<Port> list = new LinkedList<Port>();
|
|
|
+ list.addAll(participants);
|
|
|
+ //Sort by next trigger time step
|
|
|
+ list.sort(new PortComparator());
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Packages that should have been sent before the simulation time step
|
|
|
+ */
|
|
|
+ /**
|
|
|
+ * Iterator to move through the list
|
|
|
+ */
|
|
|
+ ListIterator<Port> it = list.listIterator();
|
|
|
+ boolean packageBeforeInterval = false;
|
|
|
+ while(it.hasNext()){
|
|
|
+ Port p = it.next();
|
|
|
+ if(p.getLastTrigger()+p.getTriggerInterval()<startTime){
|
|
|
+ if(p.getStatus()==Port.SENDING){
|
|
|
+ //Generate first package in the simulation interval
|
|
|
+ returnPackets.addAll(protocol.generateNextPakets(p, (long) (startTime+p.getJitter()*Math.random()/2),Math.random()<packetLossRate));
|
|
|
+ packageBeforeInterval = true;
|
|
|
+ startTime++;
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ //If not further calculations before the interval are required
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //If next package steps changed -> sort again (should occur rarely/never)
|
|
|
+ if(packageBeforeInterval)
|
|
|
+ list.sort(new PortComparator());
|
|
|
+ //Generate packages
|
|
|
+ it = list.listIterator();
|
|
|
+ while(it.hasNext()){
|
|
|
+ Port p = it.next();
|
|
|
+
|
|
|
+ if(p.getStatus()==Port.SENDING){
|
|
|
+ if(p.getLastTrigger()+p.getTriggerInterval()<endTime){
|
|
|
+ //Generate first package in the simulation interval
|
|
|
+ returnPackets.addAll(protocol.generateNextPakets(p, (long) (p.getLastTrigger()+p.getTriggerInterval()+p.getJitter()*(Math.random()-0.5)),Math.random()<packetLossRate));
|
|
|
+
|
|
|
+ //Remove Ports, which won't simulate again during this time step
|
|
|
+ it.remove();
|
|
|
+ //If further packages should be generated -> move inside the list
|
|
|
+ if(p.getLastTrigger()+p.getTriggerInterval()<endTime){
|
|
|
+ //move Port to it's new Position;
|
|
|
+ boolean added = false;
|
|
|
+ while(it.hasNext()){
|
|
|
+ Port next = it.next();
|
|
|
+ if(new PortComparator().compare(p, next)<0){
|
|
|
+ //Insert in front of this Port
|
|
|
+ it.add(p);
|
|
|
+ added = true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(!added){
|
|
|
+ //Add as last element
|
|
|
+ it.add(p);
|
|
|
+ }
|
|
|
+ it = list.listIterator();
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ it.remove();
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ //Remove ports, which are not sending
|
|
|
+ it.remove();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Sort and return packages
|
|
|
+ */
|
|
|
+ returnPackets.sort((a,b)->(Long.compare(a.getTimestamp(),b.getTimestamp())));
|
|
|
+ return returnPackets;
|
|
|
+ }
|
|
|
+ private class PortComparator implements Comparator<Port>{
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public int compare(Port o1, Port o2) {
|
|
|
+ return Long.compare(o1.getLastTrigger()+o1.getTriggerInterval(),o2.getLastTrigger()+o2.getTriggerInterval());
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|