Newer
Older
if (asme.getNexts() != null) {
for (AvatarStateMachineElement el : asme.getNexts()) {
/*TraceManager.addDev("Block " + bl.getName() + " / " + bl.getValue() +
" Handling next of " + asme.getExtendedName() + ": " + el.getExtendedName());*/
if (el instanceof AvatarTransition) {
tranSourceMap.put((AvatarTransition) el, tgcomp);
} else {
if (asme instanceof AvatarTransition) {
AvatarTransition t = (AvatarTransition) asme;
tranDestMap.put(t, el);
}
}
if (!SMDMap.containsKey(el)) {
/*TraceManager.addDev("not in map: Block " + bl.getName() + " / " + bl.getValue() +
" Handling next of " + asme.getExtendedName() + ": " + el.getExtendedName());*/
addStates(el, ab, x + diff * i, y + ydiff, smp, bl, SMDMap, newTGCToOldOne, newTGCToAvatarElement,
locMap, tranDestMap,
tranSourceMap, refMap,
useOriginalValuesFirst, useOriginalPositionSMD);
//return;
}
// Considering internal elements
AvatarStartState avatarStartState = ab.getStateMachine().getStartStateOf(asme);
if (avatarStartState != null) {
TraceManager.addDev("\t-> Found composite state in block " + ab.getName());
if (!SMDMap.containsKey(avatarStartState)) {
addStates(avatarStartState, ab, x + diff * i, y + ydiff, smp, bl, SMDMap, newTGCToOldOne, newTGCToAvatarElement,
locMap, tranDestMap
, tranSourceMap, refMap,
useOriginalValuesFirst, useOriginalPositionSMD);
}
}
}
public void drawBlockProperties(AvatarSpecification as, AvatarBlock ab, AvatarBDBlock bl, boolean useOriginalValues) {
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
// Different characteristics
if (ab.getReferenceObject() instanceof TGComponent) {
TraceManager.addDev("*** Handling characteristics of block " + ab.getName() + " stereo:" + ab.getStereotype());
TGComponent refComp = (TGComponent) ab.getReferenceObject();
Color c = null;
String colorS = ab.getCharacteristic("color");
if (colorS != null) {
TraceManager.addDev("Found color for block: " + colorS);
c = new Color(Integer.parseInt(colorS));
} else {
c = refComp.getCurrentColor();
if (c == null) {
c = bl.getMainColor();
}
}
if (ab.getGlobalCode() != null) {
bl.setGlobalCode(ab.getGlobalCode());
}
String stereo = ab.getStereotype();
bl.addStereotype(stereo, c.getRGB());
}
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
// Signals
for (avatartranslator.AvatarSignal sig : ab.getSignals()) {
String name = sig.getName().split("__")[sig.getName().split("__").length - 1];
// sig.setName(name);
String[] types;
String[] typeIds;
List<AvatarAttribute> listOfAttributes;
if (useOriginalValues && (sig.getListOfOriginalAttributes().size() > 0 || sig.getListOfOriginalReturnAttributes().size() > 0)) {
listOfAttributes = sig.getListOfOriginalAttributes();
} else {
listOfAttributes = sig.getListOfAttributes();
}
int i = 0;
types = new String[listOfAttributes.size()];
typeIds = new String[listOfAttributes.size()];
for (AvatarAttribute attr : listOfAttributes) {
if (attr.isDataType()) {
types[i] = attr.getDataType().getName();
} else {
types[i] = attr.getType().getStringType();
}
typeIds[i] = attr.getName();
i++;
}
//TraceManager.addDev("Adding signal " + sig + " with name=" + name);
bl.addSignal(new ui.AvatarSignal(sig.getInOut(), name, types, typeIds));
}
bl.setValueWithChange(ab.getName().split("__")[ab.getName().split("__").length - 1]);
TraceManager.addDev("Setting name of block: " + bl.getBlockName());
if (useOriginalValues) {
//TraceManager.addDev("** Attributes: Using original attributes");
for (AvatarAttribute attr : ab.getOriginalAttributes()) {
//TraceManager.addDev("Handling original attributes");
//TraceManager.addDev("\tHandling attribute: " + attr);
bl.addAttribute(new TAttribute(0, attr.getName(), attr.getProvidedInitialValue(), attr.getDataType().getName()));
} else {
int type = TAttribute.OTHER;
if (attr.getType() == AvatarType.BOOLEAN) {
type = TAttribute.BOOLEAN;
}
if (attr.getType() == AvatarType.INTEGER) {
type = TAttribute.NATURAL;
}
if (attr.getType() == AvatarType.TIMER) {
type = TAttribute.TIMER;
}
if (attr.hasInitialValue()) {
bl.addAttribute(new TAttribute(0, attr.getName(), attr.getInitialValue(), type));
} else {
bl.addAttribute(new TAttribute(0, attr.getName(), "", type));
}
}
if (attr.getName().contains("key_") || attr.getName().contains("privKey_")) {
hasCrypto = true;
bl.addCryptoElements();
}
}
} else {
//TraceManager.addDev("** Handling regular attributes");
for (AvatarAttribute attr : ab.getAttributes()) {
//TraceManager.addDev("\tHandling attribute: " + attr);
int type = TAttribute.OTHER;
if (attr.getType() == AvatarType.BOOLEAN) {
type = TAttribute.BOOLEAN;
}
if (attr.getType() == AvatarType.INTEGER) {
type = TAttribute.NATURAL;
}
if (attr.getType() == AvatarType.TIMER) {
type = TAttribute.TIMER;
}
if (attr.hasInitialValue()) {
bl.addAttribute(new TAttribute(0, attr.getName(), attr.getInitialValue(), type));
} else {
bl.addAttribute(new TAttribute(0, attr.getName(), "", type));
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
}
if (attr.getName().contains("key_") || attr.getName().contains("privKey_")) {
hasCrypto = true;
bl.addCryptoElements();
}
}
}
for (AvatarAttribute attr : ab.getConstants()) {
int type = 5;
if (attr.getType() == AvatarType.BOOLEAN) {
type = 4;
}
if (attr.getType() == AvatarType.INTEGER) {
type = 0;
}
if (attr.hasInitialValue()) {
bl.addAttribute(new TAttribute(0, attr.getName(), attr.getInitialValue(), type));
} else {
bl.addAttribute(new TAttribute(0, attr.getName(), attr.getType().getDefaultInitialValue(), type));
}
if (attr.getName().contains("key_") || attr.getName().contains("privKey_")) {
hasCrypto = true;
bl.addCryptoElements();
}
}
for (avatartranslator.AvatarMethod method : ab.getMethods()) {
String methodId = "";
if (useOriginalValues) {
methodId = method.toOriginalString().replaceAll(" = 0", "");
} else {
methodId = method.toString().replaceAll(" = 0", "");
}
String result = methodId.replaceAll(" = false", "");
TraceManager.addDev("Adding method:" + result);
//TraceManager.addDev("Extra types are:" + as.getExtraTypes().toString());
bl.addMethodIfApplicable(result, as.getExtraTypes());
}
}
public String getLastKeyword(String s) {
return s.split("__")[s.split("__").length - 1];
}
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
public void makeSecurityPragmas(AvatarSpecification avspec, AvatarDesignPanel adp) {
AvatarBDPanel abd = adp.abdp;
int dec = 250;
int xPos = 100, yPos = 500;
TGComponent tgcO;
HashMap<Object, AvatarBDPragma> setOfNewSecurityPragmaComponent = new HashMap<>();
for (AvatarPragma p : avspec.getPragmas()) {
// arr[i] = p.getName();
TraceManager.addDev("Handling security pragma: " + p.getName());
Object o = p.getReferenceObject();
AvatarBDPragma comp = null;
if (o != null) {
//TraceManager.addDev(" - - - - Pragma " + pragmaS + " has reference object " + o.toString());
// already created?
comp = setOfNewSecurityPragmaComponent.get(o);
if ((o instanceof TGComponent) && (comp == null))
tgcO = (TGComponent)o;
else tgcO = null;
} else {
tgcO = null;
}
if (comp == null) {
// We must create it
if (tgcO != null) {
xPos = tgcO.getX();
yPos = tgcO.getY();
}
comp = new AvatarBDPragma(xPos, yPos, abd.getMinX(), abd.getMaxX(), abd.getMinY(), abd.getMaxY(), false, null, abd);
xPos = xPos + dec;
yPos = yPos + dec;
addComponent(p, abd, comp, xPos, yPos, false, true);
if (tgcO != null) {
comp.resize(tgcO.getWidth(), tgcO.getHeight());
}
setOfNewSecurityPragmaComponent.put(o, comp);
}
String value = comp.getValue();
value = value + "\n" + p.getAdvancedValue();
comp.setValue(value);
comp.makeValue();
}
}
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
public void makePerformancePragmas(AvatarSpecification avspec, AvatarDesignPanel adp) {
AvatarBDPanel abd = adp.abdp;
int dec = 250;
int xPos = 100, yPos = 500;
TGComponent tgcO;
HashMap<Object, AvatarBDPerformancePragma> setOfNewPerformancePragmaComponent = new HashMap<>();
for (AvatarPragmaLatency p : avspec.getLatencyPragmas()) {
// arr[i] = p.getName();
TraceManager.addDev("Handling performance pragma: " + p.getName());
Object o = p.getReferenceObject();
AvatarBDPerformancePragma comp = null;
if (o != null) {
//TraceManager.addDev(" - - - - Pragma " + pragmaS + " has reference object " + o.toString());
// already created?
comp = setOfNewPerformancePragmaComponent.get(o);
if ((o instanceof TGComponent) && (comp == null))
tgcO = (TGComponent)o;
else tgcO = null;
} else {
tgcO = null;
}
if (comp == null) {
// We must create it
if (tgcO != null) {
xPos = tgcO.getX();
yPos = tgcO.getY();
}
comp = new AvatarBDPerformancePragma(xPos, yPos, abd.getMinX(), abd.getMaxX(), abd.getMinY(), abd.getMaxY(), false, null, abd);
xPos = xPos + dec;
yPos = yPos + dec;
addComponent(p, abd, comp, xPos, yPos, false, true);
if (tgcO != null) {
comp.resize(tgcO.getWidth(), tgcO.getHeight());
}
setOfNewPerformancePragmaComponent.put(o, comp);
}
String value = comp.getValue();
value = value + "\n" + p.getAdvancedValue();
comp.setValue(value);
comp.makeValue();
}
}
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
public void makeNotes(AvatarSpecification avspec, AvatarDesignPanel adp) {
AvatarBDPanel abd = adp.abdp;
int dec = 250;
int xPos = 100, yPos = 500;
TGComponent tgcO = null;
TGCNote tgcNote;
for(AvatarNote note: avspec.getNotes()) {
Object o = note.getReferenceObject();
if ((o != null) && (o instanceof TGComponent)) {
tgcO = (TGComponent)o;
xPos = tgcO.getX();
yPos = tgcO.getY();
}
tgcNote = new TGCNote(xPos, yPos, abd.getMinX(), abd.getMaxX(), abd.getMinY(), abd.getMaxY(), false, null, abd);
xPos = xPos + dec;
yPos = yPos + dec;
addComponent(note, abd, tgcNote, xPos, yPos, false, true);
tgcNote.setValue(note.getValue());
tgcNote.makeValue();
if (tgcO != null) {
tgcNote.resize(tgcO.getWidth(), tgcO.getHeight());
}
}
}
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
public void makeSafetyPragmas(AvatarSpecification avspec, AvatarDesignPanel adp) {
AvatarBDPanel abd = adp.abdp;
int dec = 250;
int xPos = 100, yPos = 500;
TGComponent tgcO;
HashMap<Object, AvatarBDSafetyPragma> setOfNewSafetyPragmaComponent = new HashMap<>();
for(String pragmaS: avspec.getSafetyPragmas()) {
Object o = avspec.getReferenceObjectOfSafetyPragma(pragmaS);
AvatarBDSafetyPragma comp = null;
if (o != null) {
//TraceManager.addDev(" - - - - Pragma " + pragmaS + " has reference object " + o.toString());
// already created?
comp = setOfNewSafetyPragmaComponent.get(o);
if ((o instanceof TGComponent) && (comp == null))
tgcO = (TGComponent)o;
else tgcO = null;
} else {
tgcO = null;
}
if (comp == null) {
// We must create it
if (tgcO != null) {
xPos = tgcO.getX();
yPos = tgcO.getY();
}
comp = new AvatarBDSafetyPragma(xPos, yPos, abd.getMinX(), abd.getMaxX(), abd.getMinY(), abd.getMaxY(), false, null, abd);
xPos = xPos + dec;
yPos = yPos + dec;
abd.addComponent(comp, xPos, yPos, false, true);
if (tgcO != null) {
comp.resize(tgcO.getWidth(), tgcO.getHeight());
}
setOfNewSafetyPragmaComponent.put(o, comp);
}
String value = comp.getValue();
value = value + "\n" + pragmaS;
comp.setValue(value);
comp.makeValue();
}
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
}
public boolean addComponent(AvatarElement ae, TDiagramPanel tdp, TGComponent tgc, int x, int y, boolean swallow, boolean addToList) {
for(Tag tag: ae.getAllTags()) {
TraceManager.addDev("\tTAG: tag " + tag.getTag() + " for component " + tgc);
tgc.addTag(tag);
}
/*Object o = ae.getReferenceObject();
if ((o != null) && (o instanceof CanBeTagged)) {
for(Tag tag: ((CanBeTagged)o).getAllTags()) {
tgc.addTag(tag);
}
}*/
return tdp.addComponent(tgc, x, y, swallow, addToList);