Przeglądaj źródła

Adds connection Names

Andreas T. Meyer-Berg 6 lat temu
rodzic
commit
1574e83eb0

+ 12 - 0
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/core/Connection.java

@@ -153,4 +153,16 @@ public interface Connection {
 	 * @return true, if status changed
 	 */
 	public boolean getStatusChanged();
+	
+	/**
+	 * Returns the Name of the connection if set
+	 * @return
+	 */
+	public String getName();
+	
+	/**
+	 * Sets the name of the connection
+	 * @param name new name of the connection
+	 */
+	public void setName(String name);
 }

+ 15 - 0
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/core/ConnectionImplementation.java

@@ -12,6 +12,7 @@ public class ConnectionImplementation implements Connection {
 	private double packetLossRate;
 	private byte status;
 	private boolean changed = false;
+	private String name;
 	
 	public ConnectionImplementation(Link l, Protocol p) {
 		link = l;
@@ -19,6 +20,10 @@ public class ConnectionImplementation implements Connection {
 		removedParticipants = new LinkedList<Port>();
 		this.protocol = p;
 		status =Connection.ACTIVE;
+		if(p==null)
+			name = "unspecified";
+		else
+			name = p.getName()+"-connection";
 	}
 	
 	@Override
@@ -113,4 +118,14 @@ public class ConnectionImplementation implements Connection {
 		return changed;
 	}
 
+	@Override
+	public String getName() {
+		return name;
+	}
+
+	@Override
+	public void setName(String name) {
+		this.name = name;
+	}
+
 }

+ 16 - 1
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/core/simpleImplementation/SimpleConnection.java

@@ -28,7 +28,11 @@ public class SimpleConnection implements Connection {
 	 * Protocol, which specifies the packet generation
 	 */
 	private Protocol p;
-
+	
+	/**
+	 * Name of the Connection
+	 */
+	private String name;
 	// for Termination
 	/**
 	 * SmartDevice(Port) which started the termination process
@@ -73,6 +77,7 @@ public class SimpleConnection implements Connection {
 		destination = dest;
 		this.link = link;
 		this.p = p;
+		this.name = "SimpleConnection";
 	}
 
 	@Override
@@ -178,4 +183,14 @@ public class SimpleConnection implements Connection {
 		return statusChanged;
 	}
 
+	@Override
+	public String getName() {
+		return name;
+	}
+
+	@Override
+	public void setName(String name) {
+		this.name = name;
+	}
+
 }