Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
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());
}
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
// 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));
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
}
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];
}
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
1197
1198
1199
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;
abd.addComponent(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();
}
}
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
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
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;
abd.addComponent(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();
}
}
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 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;
abd.addComponent(tgcNote, xPos, yPos, false, true);
tgcNote.setValue(note.getValue());
tgcNote.makeValue();
if (tgcO != null) {
tgcNote.resize(tgcO.getWidth(), tgcO.getHeight());
}
}
}
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
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
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();
}
}