commit 55264c293e499d4d8a68bf3b8d282496cee8d040 Author: azadehobenland Date: Thu Dec 29 13:22:49 2022 +0400 first diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..07115cd --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..f868d1b --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..797acea --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..e96534f --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..40f47b1 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/RobotAbgabe.iml b/RobotAbgabe.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/RobotAbgabe.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/C3PO.java b/src/C3PO.java new file mode 100644 index 0000000..08d4f75 --- /dev/null +++ b/src/C3PO.java @@ -0,0 +1,72 @@ +import tpe.exceptions.roboter.Robot; +import tpe.exceptions.roboter.exceptions.RobotException; + +import java.util.Arrays; +import java.util.stream.Collectors; + +public class C3PO implements Robot { + private int id; + private String name; + private boolean isPowerOn; + + + + @Override + public int getId() { + return id; + } + + @Override + public String getName() { + return name; + } + + @Override + public void triggerPowerSwitch() { + if(isPowerOn==false){ + isPowerOn=true; + }else{ + isPowerOn=false; + } + } + + @Override + public boolean isPowerOn() { + return isPowerOn; + } + + @Override + public RobotException getLastException() { + return null; + } + + @Override + public String speak(int[] zahlen) throws RobotException { + + var sortiert = think(zahlen); + + return arrayFormatieren(sortiert); + } + + private String arrayFormatieren(int[] zahlen){ + var ergebnis = Arrays.stream(zahlen) + .boxed() + .map(String::valueOf) + .collect(Collectors.joining(";")); + return ergebnis; + } + @Override + public int[] think(int[] zahlen) throws RobotException { + int n = zahlen.length; + for (int i = 1; i < n; ++i) { + int key = zahlen[i]; + int j = i - 1; + while (j >= 0 && zahlen[j] > key) { + zahlen[j + 1] = zahlen[j]; + j = j - 1; + } + zahlen[j + 1] = key; + } + return zahlen; + } +} diff --git a/src/tpe/exceptions/roboter/Robot.java b/src/tpe/exceptions/roboter/Robot.java new file mode 100644 index 0000000..61069b4 --- /dev/null +++ b/src/tpe/exceptions/roboter/Robot.java @@ -0,0 +1,13 @@ + + /* (c) 2012 Thomas Smits */ +package tpe.exceptions.roboter; + + /** + * Interface für Roboter. + * + * @author Thomas Smits + */ + public interface Robot extends RobotControl, RobotInstructions { + // keine eigenen Methoden + } + diff --git a/src/tpe/exceptions/roboter/RobotControl.java b/src/tpe/exceptions/roboter/RobotControl.java new file mode 100644 index 0000000..5e9ab20 --- /dev/null +++ b/src/tpe/exceptions/roboter/RobotControl.java @@ -0,0 +1,75 @@ +package tpe.exceptions.roboter; + + +import tpe.exceptions.roboter.exceptions.RobotException; + +/** + * Das Interface repräsentiert einen einfachen Roboter mit seinen Funktionen. + *

+ * Jeder produzierte Roboter hat einen Namen, der vom Besteller frei gewählt + * werden kann. Der Name bleibt über die gesamte Lebensdauer des Roboters + * unveränderlich. Man kann einen Roboter jederzeit über die + * getName()-Methode nach seinem Namen fragen. + *

+ * Zusätzlich zum frei gewählten Namen, hat jeder Roboter noch eine + * Seriennummer. Diese wird bei der Produktion festgelegt und hat einen vom + * Roboter-Typ abhängigen Bereich möglicher Werte. Innerhalb des Bereiches wird + * die Seriennummer zufällig vergeben. Die Seriennummer kann auch bei + * ausgeschalteten Roboter über getId()gelesen werden. + *

+ * Ein Roboter hat einen Hauptschalter, der mithilfe der + * triggerPowerSwitch()-Methode bedient werden kann. Direkt nach + * der Produktion ist der Roboter ausgeschaltet. Drückt man einmal auf den + * Schalter, wird er eingeschaltet. Ein weiterer Druck schaltet ihn wieder aus, usw. + *

+ * Die aktuelle Position des Hauptschalters kann man mit der Methode + * isPowerOn() abfragen. Hierbei bedeutet true, dass + * der Roboter eingeschaltet ist und false, dass er nicht + * eingeschaltet ist. + *

+ * Falls ein Fehler auftritt, kann der Nutzer des Roboters den letzten + * aufgetretenen Fehler über eine Blackbox (Fehlerspeicher) auslesen. Dies + * geschieht mithilfe der getLastException()-Methode. Der + * Fehlerspeicher kann auch bei ausgeschaltetem Roboter benutzt werden. Gab es + * noch keinen Fehler, ist der Fehlerspeicher leer (null). + *

+ * Alle Methoden dieses Interfaces können auch auf einem Roboter aufgerufen + * werden, der ausgeschaltet ist (d.h. wenn isPowerOn() == false). + */ +public interface RobotControl { + + /** + * Gibt die ID (Seriennummer) des Roboters zurück. + * + * @return Eine eindeutige Identifikation in Form einer Zahl. + */ + public int getId(); + + /** + * Gibt den Namen des Roboter-Exemplars zurück. + * + * @return Der Name des Roboters. + */ + public String getName(); + + /** + * Betätigen den An-/Ausschaltknopf. + */ + public void triggerPowerSwitch(); + + /** + * Prüft ob der Roboter eingeschaltet ist. + * + * @return true bedeutet, dass der Roboter eingeschaltet ist, + * false, dass er nicht eingeschaltet ist. + */ + public boolean isPowerOn(); + + /** + * Ruft die zuletzt aufgetretene Ausnahme aus der Blackbox ab. + * + * @return zuletzt aufgetretene Ausnahme oder null falls noch + * keine aufgetreten ist. + */ + public RobotException getLastException(); +} diff --git a/src/tpe/exceptions/roboter/RobotInstructions.java b/src/tpe/exceptions/roboter/RobotInstructions.java new file mode 100644 index 0000000..4085249 --- /dev/null +++ b/src/tpe/exceptions/roboter/RobotInstructions.java @@ -0,0 +1,50 @@ + +package tpe.exceptions.roboter; + +import tpe.exceptions.roboter.exceptions.RobotException; +import tpe.exceptions.roboter.exceptions.RobotIllegalStateException; +import tpe.exceptions.roboter.exceptions.RobotMagicValueException; + +/** + * Das Interface repräsentiert den Befehlssatz eines einfachen Roboters. + * + * Jeder Roboter kann zwei grundlegende Operationen durchführen: das Umwandeln + * einer Menge von Zahlen in einen String (speak(...)) und das + * sortieren eines Arrays von Zahlen (think(...)). Wie genau das + * Sortieren oder die Umwandlung erfolgt, hängt vom jeweiligen Typ des Roboters ab. + * + * Zu beachten ist, dass die Methoden dieses Interfaces nur auf Robotern benutzt + * werden können, die eingeschaltet sind. Versucht man sie auf einem + * ausgeschalteten Roboter zu benutzen, werfen sie eine {@link RobotIllegalStateException}. + * + * Weiterhin haben alle Roboter einen kleinen technischen Defekt, der dazu führt + * dass die Methoden dieses Interfaces abstürzen, wenn in den Eingabedaten ein + * spezieller Wert vorkommt. Immer wenn (speak(...)) oder ( + * think(...)) mit einem Array aufgerufen werden, das irgendwo die + * Zahl {@literal 42} enthält, verweigern sie ihren Dienst und werfen eine + * {@link RobotMagicValueException}. + */ +public interface RobotInstructions { + + /** + * Gibt ein Array von Zahlen als String zurück. Die Zahlen werden + * nicht sortiert. + * + * @param zahlen Zahlen, die ausgegeben werden sollen. + * @return Zahlen als String + * @throws RobotException wenn der Roboter in einem ungültigen Zustand ist, + * oder das Array nicht seinen Vorstellungen entspricht. + */ + public String speak(int[] zahlen) throws RobotException; + + /** + * Sortiert ein Array von Zahlen. Die Reihenfolge hängt von dem Typ des + * Roboters ab. + * + * @param zahlen Zahlen, die sortiert werden sollen. + * @return Sortierte Zahlen + * @throws RobotException wenn der Roboter in einem ungültigen Zustand ist, + * oder das Array nicht seinen Vorstellungen entspricht. + */ + public int[] think(int[] zahlen) throws RobotException; +} \ No newline at end of file diff --git a/src/tpe/exceptions/roboter/exceptions/RobotException.java b/src/tpe/exceptions/roboter/exceptions/RobotException.java new file mode 100644 index 0000000..435b2ed --- /dev/null +++ b/src/tpe/exceptions/roboter/exceptions/RobotException.java @@ -0,0 +1,4 @@ +package tpe.exceptions.roboter.exceptions; + +public class RobotException extends Exception{ +} diff --git a/src/tpe/exceptions/roboter/exceptions/RobotIllegalStateException.java b/src/tpe/exceptions/roboter/exceptions/RobotIllegalStateException.java new file mode 100644 index 0000000..788ecf5 --- /dev/null +++ b/src/tpe/exceptions/roboter/exceptions/RobotIllegalStateException.java @@ -0,0 +1,4 @@ +package tpe.exceptions.roboter.exceptions; + +public class RobotIllegalStateException { +} diff --git a/src/tpe/exceptions/roboter/exceptions/RobotMagicValueException.java b/src/tpe/exceptions/roboter/exceptions/RobotMagicValueException.java new file mode 100644 index 0000000..922fdd0 --- /dev/null +++ b/src/tpe/exceptions/roboter/exceptions/RobotMagicValueException.java @@ -0,0 +1,4 @@ +package tpe.exceptions.roboter.exceptions; + +public class RobotMagicValueException { +}