Newer
Older
}
}
public void drawBlockProperties(AvatarSpecification as, AvatarBlock ab, AvatarBDBlock bl, boolean useOriginalValues) {
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
// 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());
}
1033
1034
1035
1036
1037
1038
1039
1040
1041
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
// 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(attr.isConstant() ? TAttribute.CONSTANT : TAttribute.VARIABLE, 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(attr.isConstant() ? TAttribute.CONSTANT : TAttribute.VARIABLE, 0, attr.getName(),
attr.getInitialValue(), type));
bl.addAttribute(new TAttribute(attr.isConstant() ? TAttribute.CONSTANT : TAttribute.VARIABLE, 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(attr.isConstant() ? TAttribute.CONSTANT : TAttribute.VARIABLE, 0, attr.getName(),
attr.getInitialValue(), type));
bl.addAttribute(new TAttribute(attr.isConstant() ? TAttribute.CONSTANT : TAttribute.VARIABLE, attr.getName(), "",
type));
}
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(attr.isConstant() ? TAttribute.CONSTANT : TAttribute.VARIABLE, 0, attr.getName(),
attr.getInitialValue(), type));
bl.addAttribute(new TAttribute(attr.isConstant() ? TAttribute.CONSTANT : TAttribute.VARIABLE, 0, attr.getName(),
attr.getType().getDefaultInitialValue(), type));
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
}
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];
}
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
1197
1198
1199
1200
1201
1202
1203
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();
}
}
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
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();
}
}
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
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());
}
}
}
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
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();
}
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
}
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);