|
@@ -12,8 +12,11 @@ import java.util.LinkedList;
|
|
|
import javax.tools.JavaCompiler;
|
|
|
import javax.tools.ToolProvider;
|
|
|
|
|
|
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Link;
|
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Model;
|
|
|
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Connection;
|
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Protocol;
|
|
|
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.SmartDevice;
|
|
|
|
|
|
/**
|
|
|
* Controller which manages Imported Classes of the
|
|
@@ -38,14 +41,66 @@ public class ImportController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Returns the available Protocols of the model
|
|
|
+ * Adds new Link to the model
|
|
|
*
|
|
|
- * @return available protocols
|
|
|
+ * @param Link
|
|
|
+ * Link to be added
|
|
|
+ * @return true if it was added
|
|
|
*/
|
|
|
- public LinkedList<Class<? extends Protocol>> getProtocols() {
|
|
|
- return model.getProtocols();
|
|
|
+ public boolean addLink(Class<? extends Link> Link) {
|
|
|
+ if (isValidLink(Link))
|
|
|
+ model.addLinkClass(Link);
|
|
|
+ else
|
|
|
+ return false;
|
|
|
+ return true;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Removes Link from the model
|
|
|
+ *
|
|
|
+ * @param Link
|
|
|
+ * Link to be removed
|
|
|
+ */
|
|
|
+ public void removeLink(Class<? extends Link> Link) {
|
|
|
+ model.removeLinkClass(Link);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Returns the available Links of the model
|
|
|
+ *
|
|
|
+ * @return available links
|
|
|
+ */
|
|
|
+ public LinkedList<Class<? extends Link>> getLinks() {
|
|
|
+ return model.getLinkClasses();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Returns true if it is a Valid Link, false if not
|
|
|
+ *
|
|
|
+ * @param link
|
|
|
+ * Link to be checked
|
|
|
+ * @return true if it is a valid Link
|
|
|
+ */
|
|
|
+ public boolean isValidLink(Class<? extends Link> link) {
|
|
|
+ try {
|
|
|
+ /**
|
|
|
+ * Link to be tested
|
|
|
+ */
|
|
|
+ Link l = link.newInstance();
|
|
|
+ // Empty constructor required, to create new instance
|
|
|
+ if (l == null)
|
|
|
+ throw new Exception("Link required an empty constructor");
|
|
|
+ // Name shall not be null or empty string
|
|
|
+ if (l.getName() == null || l.getName() == "")
|
|
|
+ throw new Exception(
|
|
|
+ "Link name shall not be null or empty string.");
|
|
|
+ } catch (Exception e) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Adds new Protocol to the model
|
|
|
*
|
|
@@ -55,13 +110,13 @@ public class ImportController {
|
|
|
*/
|
|
|
public boolean addProtocol(Class<? extends Protocol> protocol) {
|
|
|
if (isValidProtocol(protocol))
|
|
|
- model.addProtocol(protocol);
|
|
|
+ model.addProtocolClass(protocol);
|
|
|
else
|
|
|
return false;
|
|
|
return true;
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Removes protocol from the model
|
|
|
*
|
|
@@ -69,9 +124,18 @@ public class ImportController {
|
|
|
* protocol to be removed
|
|
|
*/
|
|
|
public void removeProtocol(Class<? extends Protocol> protocol) {
|
|
|
- model.removeProtocol(protocol);
|
|
|
+ model.removeProtocolClass(protocol);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Returns the available Protocols of the model
|
|
|
+ *
|
|
|
+ * @return available protocols
|
|
|
+ */
|
|
|
+ public LinkedList<Class<? extends Protocol>> getProtocols() {
|
|
|
+ return model.getProtocolClasses();
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Returns true if it is a Valid Protocol, false if not
|
|
|
*
|
|
@@ -103,6 +167,129 @@ public class ImportController {
|
|
|
}
|
|
|
return true;
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Adds new Connection to the model
|
|
|
+ *
|
|
|
+ * @param connection
|
|
|
+ * Connection to be added
|
|
|
+ * @return true if it was added
|
|
|
+ */
|
|
|
+ public boolean addConnection(Class<? extends Connection> connection) {
|
|
|
+ if (isValidConnection(connection))
|
|
|
+ model.addConnectionClass(connection);
|
|
|
+ else
|
|
|
+ return false;
|
|
|
+ return true;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Removes Connection from the model
|
|
|
+ *
|
|
|
+ * @param connection
|
|
|
+ * Connection to be removed
|
|
|
+ */
|
|
|
+ public void removeConnection(Class<? extends Connection> connection) {
|
|
|
+ model.removeConnectionClass(connection);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Returns the available Connections of the model
|
|
|
+ *
|
|
|
+ * @return available Connections
|
|
|
+ */
|
|
|
+ public LinkedList<Class<? extends Connection>> getConnections() {
|
|
|
+ return model.getConnectionClasses();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Returns true if it is a Valid Connection, false if not
|
|
|
+ *
|
|
|
+ * @param connection
|
|
|
+ * Connection to be checked
|
|
|
+ * @return true if it is a valid Connection
|
|
|
+ */
|
|
|
+ public boolean isValidConnection(Class<? extends Connection> connection) {
|
|
|
+ try {
|
|
|
+ /**
|
|
|
+ * Connection to be tested
|
|
|
+ */
|
|
|
+ Connection p = connection.newInstance();
|
|
|
+ // Empty constructor required, to create new instance
|
|
|
+ if (p == null)
|
|
|
+ throw new Exception("Connection required an empty constructor");
|
|
|
+ // Name shall not be null or empty string
|
|
|
+ if (p.getName() == null || p.getName() == "")
|
|
|
+ throw new Exception(
|
|
|
+ "Connection name shall not be null or empty string.");
|
|
|
+ } catch (Exception e) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Adds new SmartDevice to the model
|
|
|
+ *
|
|
|
+ * @param smartDevice
|
|
|
+ * SmartDevice to be added
|
|
|
+ * @return true if it was added
|
|
|
+ */
|
|
|
+ public boolean addSmartDevice(Class<? extends SmartDevice> smartDevice) {
|
|
|
+ if (isValidSmartDevice(smartDevice))
|
|
|
+ model.addSmartDeviceClass(smartDevice);
|
|
|
+ else
|
|
|
+ return false;
|
|
|
+ return true;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Removes SmartDevice from the model
|
|
|
+ *
|
|
|
+ * @param smartDevice
|
|
|
+ * SmartDevice to be removed
|
|
|
+ */
|
|
|
+ public void removeSmartDevice(Class<? extends SmartDevice> smartDevice) {
|
|
|
+ model.removeSmartDeviceClass(smartDevice);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Returns the available SmartDevices of the model
|
|
|
+ *
|
|
|
+ * @return available SmartDevices
|
|
|
+ */
|
|
|
+ public LinkedList<Class<? extends SmartDevice>> getSmartDevices() {
|
|
|
+ return model.getSmartDeviceClasses();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Returns true if it is a Valid SmartDevice, false if not
|
|
|
+ *
|
|
|
+ * @param smartDevice
|
|
|
+ * SmartDevice to be checked
|
|
|
+ * @return true if it is a valid SmartDevice
|
|
|
+ */
|
|
|
+ public boolean isValidSmartDevice(Class<? extends SmartDevice> smartDevice) {
|
|
|
+ try {
|
|
|
+ /**
|
|
|
+ * SmartDevice to be tested
|
|
|
+ */
|
|
|
+ SmartDevice p = smartDevice.newInstance();
|
|
|
+ // Empty constructor required, to create new instance
|
|
|
+ if (p == null)
|
|
|
+ throw new Exception("SmartDevice required an empty constructor");
|
|
|
+ // Name shall not be null or empty string
|
|
|
+ if (p.getName() == null || p.getName() == "")
|
|
|
+ throw new Exception(
|
|
|
+ "SmartDevice name shall not be null or empty string.");
|
|
|
+ } catch (Exception e) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* Imports the given .java File, compiles it and returns the
|