Skip to content
Snippets Groups Projects
Commit c6ac338e authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Update on tonetwork: resolving bugs on choices

parent 93628118
No related branches found
No related tags found
No related merge requests found
...@@ -77,6 +77,8 @@ public class TMLSyntaxChecking { ...@@ -77,6 +77,8 @@ public class TMLSyntaxChecking {
private final String WRONG_PARAMS = "The number of params is not compatible"; private final String WRONG_PARAMS = "The number of params is not compatible";
private final String DUPLICATE_NAMES = "Two elements have the same name"; private final String DUPLICATE_NAMES = "Two elements have the same name";
private final String INVALID_NB_OF_GUARD = "The number of guards is not equal to the number of next elements";
private final String TOO_MANY_MEMORIES = "Channel is mapped on more than one memory"; private final String TOO_MANY_MEMORIES = "Channel is mapped on more than one memory";
private final String INVALID_CHANNEL_PATH = "Channel path is invalid"; private final String INVALID_CHANNEL_PATH = "Channel path is invalid";
private final String INVALID_BUS_PATH = "Bus path is invalid for channel"; // Should be a warning only private final String INVALID_BUS_PATH = "Bus path is invalid for channel"; // Should be a warning only
...@@ -124,6 +126,8 @@ public class TMLSyntaxChecking { ...@@ -124,6 +126,8 @@ public class TMLSyntaxChecking {
checkNextActions(); checkNextActions();
checkChoices();
checkPortName(); checkPortName();
//added by minh hiep //added by minh hiep
...@@ -207,6 +211,21 @@ public class TMLSyntaxChecking { ...@@ -207,6 +211,21 @@ public class TMLSyntaxChecking {
} }
} }
public void checkChoices() {
for (TMLTask t : tmlm.getTasks()) {
TMLActivity tactivity = t.getActivityDiagram();
int n = tactivity.nElements();
for (int i = 0; i < n; i++) {
TMLActivityElement elt = tactivity.get(i);
if (elt instanceof TMLChoice) {
if (elt.getNbNext() != ((TMLChoice) elt).getNbGuard()) {
addError(t, elt, elt.getName() + ": " + INVALID_NB_OF_GUARD, TMLError.ERROR_BEHAVIOR);
}
}
}
}
}
public void checkDuplicateNames() { public void checkDuplicateNames() {
List<TMLElement> elts; List<TMLElement> elts;
......
...@@ -186,6 +186,7 @@ public class TaskNetworkInterfaceOUT extends TMLTask { ...@@ -186,6 +186,7 @@ public class TaskNetworkInterfaceOUT extends TMLTask {
if (packetsAvailable.size() == 0) { if (packetsAvailable.size() == 0) {
TMLStopState stopOfLeftBranchOfChoice = new TMLStopState("stopNoDestinationTask", referenceObject); TMLStopState stopOfLeftBranchOfChoice = new TMLStopState("stopNoDestinationTask", referenceObject);
addElement(packetChoice, stopOfLeftBranchOfChoice); addElement(packetChoice, stopOfLeftBranchOfChoice);
packetChoice.addGuard("");
return; return;
} }
......
...@@ -137,7 +137,7 @@ public class TaskOUTForDispatch extends TMLTask { ...@@ -137,7 +137,7 @@ public class TaskOUTForDispatch extends TMLTask {
mainChoice = new TMLChoice("ChoiceOf" + i, referenceObject); mainChoice = new TMLChoice("ChoiceOf" + i, referenceObject);
activity.addLinkElement(notified, mainChoice); activity.addLinkElement(notified, mainChoice);
activity.addLinkElement(notified, new TMLStopState("StopAfterMainChoice", referenceObject)); activity.addLinkElement(mainChoice, new TMLStopState("StopAfterMainChoice", referenceObject));
mainChoice.addGuard("nEvt == 0"); mainChoice.addGuard("nEvt == 0");
TMLForLoop loopInside = new TMLForLoop("LoopInside" + i, referenceObject); TMLForLoop loopInside = new TMLForLoop("LoopInside" + i, referenceObject);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment