Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**Copyright or (C) or Copr. GET / ENST, Telecom-Paris, Ludovic Apvrille
*
* ludovic.apvrille AT enst.fr
*
* This software is a computer program whose purpose is to allow the
* edition of TURTLE analysis, design and deployment diagrams, to
* allow the generation of RT-LOTOS or Java code from this diagram,
* and at last to allow the analysis of formal validation traces
* obtained from external tools, e.g. RTL from LAAS-CNRS and CADP
* from INRIA Rhone-Alpes.
*
* This software is governed by the CeCILL license under French law and
* abiding by the rules of distribution of free software. You can use,
* modify and/ or redistribute the software under the terms of the CeCILL
* license as circulated by CEA, CNRS and INRIA at the following URL
* "http://www.cecill.info".
*
* As a counterpart to the access to the source code and rights to copy,
* modify and redistribute granted by the license, users are provided only
* with a limited warranty and the software's author, the holder of the
* economic rights, and the successive licensors have only limited
* liability.
*
* In this respect, the user's attention is drawn to the risks associated
* with loading, using, modifying and/or developing or reproducing the
* software by the user in light of its specific status of free software,
* that may mean that it is complicated to manipulate, and that also
* therefore means that it is reserved for developers and experienced
* professionals having in-depth computer knowledge. Users are therefore
* encouraged to load and test the software's suitability as regards their
* requirements in conditions enabling the security of their systems and/or
* data to be ensured and, more generally, to use and operate it in the
* same conditions as regards security.
*
* The fact that you are presently reading this means that you have had
* knowledge of the CeCILL license and that you accept its terms.
*
* /**
* Class AVATAR2CPOSIX
* Creation: 29/03/2011
* @version 1.1 29/03/2011
* @author Ludovic APVRILLE
* @see
*/
package avatartranslator.toexecutable;
import java.awt.*;
import java.util.*;
import myutil.*;
import avatartranslator.*;
public class AVATAR2CPOSIX {
private final static String UNKNOWN = "UNKNOWN";
private AvatarSpecification avspec;
private Vector warnings;
private MainFile mainFile;
private Vector<TaskFile> taskFiles;
public AVATAR2CPOSIX(AvatarSpecification _avspec) {
avspec = _avspec;
}
public void saveInFiles(String path) throws FileException {
TraceManager.addDev("Generating files");
TraceManager.addDev("Generating main files in " + path + mainFile.getName() + ".h");
FileUtils.saveFile(path + mainFile.getName() + ".h", mainFile.getHeaderCode());
FileUtils.saveFile(path + mainFile.getName() + ".c", mainFile.getMainCode());
}
for(TaskFile taskFile: taskFiles) {
FileUtils.saveFile(path + taskFile.getName() + ".h", taskFile.getFullHeaderCode());
FileUtils.saveFile(path + taskFile.getName() + ".c", taskFile.getMainCode());
}
}
public Vector getWarnings() {
return warnings;
}
public void generateCPOSIX(boolean _debug) {
mainFile = new MainFile("main");
taskFiles = new Vector<TaskFile>();
makeMainMutex();
makeSynchronousChannels();
makeTasks();
}
public void makeMainMutex() {
// Create a main mutex
mainFile.appendToHCode("/* Main mutex */" + CR);
mainFile.appendToBeforeMainCode("/* Main mutex */" + CR);
mainFile.appendToHCode("extern pthread_mutex_t mainMutex;" + CR + CR);
mainFile.appendToBeforeMainCode("pthread_mutex_t mainMutex;" + CR + CR);
}
public void makeSynchronousChannels() {
// Create a synchronous channel per relation/signal
mainFile.appendToHCode("/* Synchronous channels */" + CR);
mainFile.appendToBeforeMainCode("/* Synchronous channels */" + CR);
mainFile.appendToMainCode("/* Synchronous channels */" + CR);
for(AvatarRelation ar: avspec.getRelations()) {
if (!ar.isAsynchronous()) {
for(int i=0; i<ar.nbOfSignals(); i++) {
mainFile.appendToHCode("extern syncchannel " + getChannelName(ar, i) + ";" + CR);
mainFile.appendToBeforeMainCode("syncchannel " + getChannelName(ar, i) + ";" + CR);
mainFile.appendToMainCode(getChannelName(ar, i) + ".inname =\"" + ar.getInSignal(i).getName() + "\";" + CR);
mainFile.appendToMainCode(getChannelName(ar, i) + ".outname =\"" + ar.getOutSignal(i).getName() + "\";" + CR);
}
}
}
//mainFile.appendToHCode("pthread_mutex_t mainMutex;" + CR);
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
public void makeTasks() {
for(AvatarBlock block: avspec.getListOfBlocks()) {
makeTask(block);
}
}
public void makeTask(AvatarBlock block) {
TaskFile taskFile = new TaskFile(block.getName());
//taskFile.addToHeaderCode("#include \"main.h\"" + CR);
//taskFile.addToMainCode("#include \"" + block.getName() + ".h\"");
defineAllStates(block, taskFile);
defineAllMethods(block, taskFile);
makeMainFunction(block, taskFile);
taskFiles.add(taskFile);
}
public void defineAllStates(AvatarBlock _block, TaskFile _taskFile) {
int id = 0;
for (AvatarStateMachineElement asme: _block.getStateMachine().getListOfElements()) {
if (asme instanceof AvatarState) {
_taskFile.addToMainCode("#define STATE__" + asme.getName() + " " + id + CR);
id ++;
}
}
}
public void defineAllMethods(AvatarBlock _block, TaskFile _taskFile) {
String ret = "";
LinkedList<AvatarAttribute> list;
for (AvatarMethod am: _block.getMethods()) {
list = am.getListOfReturnAttributes();
if (list.size() == 0) {
ret += "void";
} else {
ret += getCTypeOf(list.get(0));
}
ret += " " + am.getName() + "(";
list = am.getListOfAttributes();
int cpt = 0;
for(AvatarAttribute aa: list) {
ret += getCTypeOf(aa) + " " + aa.getName()
}
ret += ") {" + CR + "printf(\"Entering method " + am.getName() + "\");" + CR + "}" + CR + CR;
}
_taskFile.addToMainCode(ret + CR);
}
public void makeMainFunction(AvatarBlock _block, TaskFile _taskFile) {
String s = "void mainFunc_" + _block.getName() + "(void *arg)"
String sh = "extern " + s + ";" + CR;
s+= {" + CR;
s += makeAttributesDeclaration(_block, _taskFile);
s += "}\n" + CR;
_taskFile.addToMainCode(s + CR);
_taskFile.addToHeaderCode(sh + CR);
}
public String makeAttributesDeclaration(AvatarBlock _block, TaskFile _taskFile) {
String ret = "";
for(AvatarAttribute aa: _block.getAttributes()) {
ret += getCTypeOf(aa) + " " + aa.getName() + " = " + aa.getInitialValue() + ";" + CR;
}
return ret;
}
public String getCTypeOf(AvatarAttribute _aa) {
String ret = "int";
if (_aa.getType() == AvatarType.BOOLEAN) {
ret = "bool";
}
return ret;
}
public String getChannelName(AvatarRelation _ar, int _index) {
return _ar.block1.getName() + "_" + _ar.getSignal1(_index).getName() + "__" + _ar.block2.getName() + "_" + _ar.getSignal2(_index).getName();
}