1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.mal_lang.langspec;
18
19 import static java.util.Objects.requireNonNull;
20
21 import jakarta.json.Json;
22 import jakarta.json.JsonObject;
23 import java.util.LinkedHashMap;
24 import java.util.List;
25 import java.util.Map;
26 import org.mal_lang.langspec.builders.AssetBuilder;
27
28
29
30
31
32
33 public final class Asset {
34 private final String name;
35 private final Meta meta;
36 private final Category category;
37 private final boolean isAbstract;
38 private Asset superAsset;
39 private final Map<String, Field> fields = new LinkedHashMap<>();
40 private final Map<String, Variable> variables = new LinkedHashMap<>();
41 private final Map<String, AttackStep> attackSteps = new LinkedHashMap<>();
42 private final byte[] svgIcon;
43 private final byte[] pngIcon;
44
45 private Asset(
46 String name,
47 Meta meta,
48 Category category,
49 boolean isAbstract,
50 byte[] svgIcon,
51 byte[] pngIcon) {
52 this.name = requireNonNull(name);
53 this.meta = requireNonNull(meta);
54 this.category = requireNonNull(category);
55 this.isAbstract = isAbstract;
56 this.svgIcon = svgIcon == null ? null : svgIcon.clone();
57 this.pngIcon = pngIcon == null ? null : pngIcon.clone();
58 category.addAsset(this);
59 }
60
61
62
63
64
65
66
67 public String getName() {
68 return this.name;
69 }
70
71
72
73
74
75
76
77 public Meta getMeta() {
78 return this.meta;
79 }
80
81
82
83
84
85
86
87 public Category getCategory() {
88 return this.category;
89 }
90
91
92
93
94
95
96
97 public boolean isAbstract() {
98 return this.isAbstract;
99 }
100
101
102
103
104
105
106
107 public boolean hasSuperAsset() {
108 return this.superAsset != null;
109 }
110
111
112
113
114
115
116
117
118
119 public Asset getSuperAsset() {
120 if (!this.hasSuperAsset()) {
121 throw new UnsupportedOperationException("Super asset not found");
122 }
123 return this.superAsset;
124 }
125
126 void setSuperAsset(Asset superAsset) {
127 this.superAsset = requireNonNull(superAsset);
128 }
129
130
131
132
133
134
135
136
137
138 public boolean hasLocalField(String name) {
139 return this.fields.containsKey(requireNonNull(name));
140 }
141
142
143
144
145
146
147
148
149
150
151
152 public Field getLocalField(String name) {
153 if (!this.hasLocalField(name)) {
154 throw new IllegalArgumentException(String.format("Local field \"%s\" not found", name));
155 }
156 return this.fields.get(name);
157 }
158
159
160
161
162
163
164
165 public List<Field> getLocalFields() {
166 return List.copyOf(this.fields.values());
167 }
168
169
170
171
172
173
174
175
176
177 public boolean hasField(String name) {
178 return this.hasLocalField(name) || this.hasSuperAsset() && this.getSuperAsset().hasField(name);
179 }
180
181
182
183
184
185
186
187
188
189
190
191 public Field getField(String name) {
192 if (!this.hasField(name)) {
193 throw new IllegalArgumentException(String.format("Field \"%s\" not found", name));
194 }
195 return this.hasLocalField(name)
196 ? this.getLocalField(name)
197 : this.getSuperAsset().getField(name);
198 }
199
200
201
202
203
204
205
206 public List<Field> getFields() {
207 return List.copyOf(this.getFieldsMap().values());
208 }
209
210 void addField(Field field) {
211 requireNonNull(field);
212 this.fields.put(field.getName(), field);
213 }
214
215 private Map<String, Field> getFieldsMap() {
216 var fieldsMap =
217 this.hasSuperAsset()
218 ? this.getSuperAsset().getFieldsMap()
219 : new LinkedHashMap<String, Field>();
220 fieldsMap.putAll(this.fields);
221 return fieldsMap;
222 }
223
224
225
226
227
228
229
230
231
232 public boolean hasLocalVariable(String name) {
233 return this.variables.containsKey(requireNonNull(name));
234 }
235
236
237
238
239
240
241
242
243
244
245
246 public Variable getLocalVariable(String name) {
247 if (!this.hasLocalVariable(name)) {
248 throw new IllegalArgumentException(String.format("Local variable \"%s\" not found", name));
249 }
250 return this.variables.get(name);
251 }
252
253
254
255
256
257
258
259 public List<Variable> getLocalVariables() {
260 return List.copyOf(this.variables.values());
261 }
262
263
264
265
266
267
268
269
270
271 public boolean hasVariable(String name) {
272 return this.hasLocalVariable(name)
273 || this.hasSuperAsset() && this.getSuperAsset().hasVariable(name);
274 }
275
276
277
278
279
280
281
282
283
284
285
286 public Variable getVariable(String name) {
287 if (!this.hasVariable(name)) {
288 throw new IllegalArgumentException(String.format("Variable \"%s\" not found", name));
289 }
290 return this.hasLocalVariable(name)
291 ? this.getLocalVariable(name)
292 : this.getSuperAsset().getVariable(name);
293 }
294
295
296
297
298
299
300
301 public List<Variable> getVariables() {
302 return List.copyOf(this.getVariablesMap().values());
303 }
304
305 private void addVariable(Variable variable) {
306 requireNonNull(variable);
307 this.variables.put(variable.getName(), variable);
308 }
309
310 private Map<String, Variable> getVariablesMap() {
311 var variablesMap =
312 this.hasSuperAsset()
313 ? this.getSuperAsset().getVariablesMap()
314 : new LinkedHashMap<String, Variable>();
315 variablesMap.putAll(this.variables);
316 return variablesMap;
317 }
318
319
320
321
322
323
324
325
326
327 public boolean hasLocalAttackStep(String name) {
328 return this.attackSteps.containsKey(requireNonNull(name));
329 }
330
331
332
333
334
335
336
337
338
339
340
341 public AttackStep getLocalAttackStep(String name) {
342 if (!this.hasLocalAttackStep(name)) {
343 throw new IllegalArgumentException(String.format("Local attack step \"%s\" not found", name));
344 }
345 return this.attackSteps.get(name);
346 }
347
348
349
350
351
352
353
354 public List<AttackStep> getLocalAttackSteps() {
355 return List.copyOf(this.attackSteps.values());
356 }
357
358
359
360
361
362
363
364
365
366 public boolean hasAttackStep(String name) {
367 return this.hasLocalAttackStep(name)
368 || this.hasSuperAsset() && this.getSuperAsset().hasAttackStep(name);
369 }
370
371
372
373
374
375
376
377
378
379
380
381 public AttackStep getAttackStep(String name) {
382 if (!this.hasAttackStep(name)) {
383 throw new IllegalArgumentException(String.format("Attack step \"%s\" not found", name));
384 }
385 return this.hasLocalAttackStep(name)
386 ? this.getLocalAttackStep(name)
387 : this.getSuperAsset().getAttackStep(name);
388 }
389
390
391
392
393
394
395
396 public List<AttackStep> getAttackSteps() {
397 return List.copyOf(this.getAttackStepsMap().values());
398 }
399
400 private void addAttackStep(AttackStep attackStep) {
401 requireNonNull(attackStep);
402 this.attackSteps.put(attackStep.getName(), attackStep);
403 }
404
405 private Map<String, AttackStep> getAttackStepsMap() {
406 var attackStepsMap =
407 this.hasSuperAsset()
408 ? this.getSuperAsset().getAttackStepsMap()
409 : new LinkedHashMap<String, AttackStep>();
410 attackStepsMap.putAll(this.attackSteps);
411 return attackStepsMap;
412 }
413
414
415
416
417
418
419
420 public boolean hasLocalSvgIcon() {
421 return this.svgIcon != null;
422 }
423
424
425
426
427
428
429
430
431
432 public byte[] getLocalSvgIcon() {
433 if (!this.hasLocalSvgIcon()) {
434 throw new UnsupportedOperationException("Local SVG icon not found");
435 }
436 return this.svgIcon.clone();
437 }
438
439
440
441
442
443
444
445 public boolean hasSvgIcon() {
446 return this.hasLocalSvgIcon() || this.hasSuperAsset() && this.getSuperAsset().hasSvgIcon();
447 }
448
449
450
451
452
453
454
455
456
457 public byte[] getSvgIcon() {
458 if (!this.hasSvgIcon()) {
459 throw new UnsupportedOperationException("SVG icon not found");
460 }
461 return this.hasLocalSvgIcon() ? this.getLocalSvgIcon() : this.getSuperAsset().getSvgIcon();
462 }
463
464
465
466
467
468
469
470 public boolean hasLocalPngIcon() {
471 return this.pngIcon != null;
472 }
473
474
475
476
477
478
479
480
481
482 public byte[] getLocalPngIcon() {
483 if (!this.hasLocalPngIcon()) {
484 throw new UnsupportedOperationException("Local PNG icon not found");
485 }
486 return this.pngIcon.clone();
487 }
488
489
490
491
492
493
494
495 public boolean hasPngIcon() {
496 return this.hasLocalPngIcon() || this.hasSuperAsset() && this.getSuperAsset().hasPngIcon();
497 }
498
499
500
501
502
503
504
505
506
507 public byte[] getPngIcon() {
508 if (!this.hasPngIcon()) {
509 throw new UnsupportedOperationException("PNG icon not found");
510 }
511 return this.hasLocalPngIcon() ? this.getLocalPngIcon() : this.getSuperAsset().getPngIcon();
512 }
513
514
515
516
517
518
519
520
521
522 public boolean isSubTypeOf(Asset other) {
523 requireNonNull(other);
524 if (this == other) {
525 return true;
526 }
527 if (!this.hasSuperAsset()) {
528 return false;
529 }
530 return this.getSuperAsset().isSubTypeOf(other);
531 }
532
533
534
535
536
537
538
539
540
541
542
543
544 public static Asset leastUpperBound(Asset asset1, Asset asset2) {
545 requireNonNull(asset1);
546 requireNonNull(asset2);
547 if (asset1.isSubTypeOf(asset2)) {
548 return asset2;
549 }
550 if (asset2.isSubTypeOf(asset1)) {
551 return asset1;
552 }
553 if (!asset1.hasSuperAsset() || !asset2.hasSuperAsset()) {
554 return null;
555 }
556 return Asset.leastUpperBound(asset1.getSuperAsset(), asset2.getSuperAsset());
557 }
558
559 JsonObject toJson() {
560 var jsonVariables = Json.createArrayBuilder();
561 for (var variable : this.variables.values()) {
562 jsonVariables.add(variable.toJson());
563 }
564
565 var jsonAttackSteps = Json.createArrayBuilder();
566 for (var attackStep : this.attackSteps.values()) {
567 jsonAttackSteps.add(attackStep.toJson());
568 }
569
570 var jsonAsset =
571 Json.createObjectBuilder()
572 .add("name", this.name)
573 .add("meta", this.meta.toJson())
574 .add("category", this.category.getName())
575 .add("isAbstract", this.isAbstract);
576 if (this.superAsset == null) {
577 jsonAsset.addNull("superAsset");
578 } else {
579 jsonAsset.add("superAsset", this.superAsset.getName());
580 }
581 return jsonAsset.add("variables", jsonVariables).add("attackSteps", jsonAttackSteps).build();
582 }
583
584 static Asset fromBuilder(AssetBuilder builder, Map<String, Category> categories) {
585 requireNonNull(builder);
586 requireNonNull(categories);
587 if (!categories.containsKey(builder.getCategory())) {
588 throw new IllegalArgumentException(
589 String.format("Category \"%s\" not found", builder.getCategory()));
590 }
591 var asset =
592 new Asset(
593 builder.getName(),
594 Meta.fromBuilder(builder.getMeta()),
595 categories.get(builder.getCategory()),
596 builder.isAbstract(),
597 builder.getSvgIcon(),
598 builder.getPngIcon());
599 for (var variableBuilder : builder.getVariables()) {
600 asset.addVariable(Variable.fromBuilder(variableBuilder, asset));
601 }
602 for (var attackStepBuilder : builder.getAttackSteps()) {
603 asset.addAttackStep(AttackStep.fromBuilder(attackStepBuilder, asset));
604 }
605 return asset;
606 }
607 }