-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSdkSymbolResolver.java
More file actions
622 lines (523 loc) · 21 KB
/
SdkSymbolResolver.java
File metadata and controls
622 lines (523 loc) · 21 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
/*
* Copyright 2022 European Union
*
* Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European
* Commission – subsequent versions of the EUPL (the "Licence"); You may not use this work except in
* compliance with the Licence. You may obtain a copy of the Licence at:
* https://joinup.ec.europa.eu/software/page/eupl
*
* Unless required by applicable law or agreed to in writing, software distributed under the Licence
* is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the Licence for the specific language governing permissions and limitations under
* the Licence.
*/
package eu.europa.ted.eforms.sdk;
import java.nio.file.Path;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.function.Function;
import java.util.stream.Collectors;
import eu.europa.ted.efx.exceptions.SymbolResolutionException;
import eu.europa.ted.eforms.sdk.component.SdkComponent;
import eu.europa.ted.eforms.sdk.component.SdkComponentType;
import eu.europa.ted.eforms.sdk.entity.SdkCodelist;
import eu.europa.ted.eforms.sdk.entity.SdkField;
import eu.europa.ted.eforms.sdk.entity.SdkNode;
import eu.europa.ted.eforms.sdk.entity.SdkNoticeSubtype;
import eu.europa.ted.eforms.sdk.repository.SdkCodelistRepository;
import eu.europa.ted.eforms.sdk.repository.SdkFieldRepository;
import eu.europa.ted.eforms.sdk.repository.SdkNodeRepository;
import eu.europa.ted.eforms.sdk.repository.SdkNoticeTypeRepository;
import eu.europa.ted.eforms.sdk.resource.SdkResourceLoader;
import eu.europa.ted.eforms.xpath.XPathProcessor;
import eu.europa.ted.efx.interfaces.SymbolResolver;
import eu.europa.ted.efx.model.expressions.PathExpression;
import eu.europa.ted.efx.model.expressions.scalar.NodePath;
import eu.europa.ted.efx.model.expressions.scalar.ScalarPath;
import eu.europa.ted.efx.model.expressions.sequence.NodeSequencePath;
import eu.europa.ted.efx.model.expressions.sequence.SequencePath;
import eu.europa.ted.efx.model.types.FieldTypes;
import eu.europa.ted.eforms.sdk.entity.v2.SdkFieldV2;
import eu.europa.ted.eforms.sdk.entity.v2.SdkNodeV2;
import eu.europa.ted.efx.xpath.XPathContextualizer;
@SdkComponent(versions = { "1", "2" }, componentType = SdkComponentType.SYMBOL_RESOLVER)
public class SdkSymbolResolver implements SymbolResolver {
protected SdkFieldRepository fieldById;
protected Map<String, SdkField> fieldByAlias;
protected SdkNodeRepository nodeById;
protected Map<String, SdkNode> nodeByAlias;
protected Map<String, SdkCodelist> codelistById;
protected Map<String, SdkNoticeSubtype> noticeTypesById;
private SdkNode cachedRootNode;
@Override
public final List<String> expandCodelist(final String codelistId) {
final SdkCodelist codelist = codelistById.get(codelistId);
if (codelist == null) {
throw SymbolResolutionException.unknownCodelist(codelistId);
}
return codelist.getCodes();
}
/**
* Protected constructor for subclasses that load data differently (e.g., test mocks).
* Subclasses must populate the field/node/codelist maps themselves.
*/
protected SdkSymbolResolver() {
}
/**
* Creates a symbol resolver by loading SDK metadata from the given path.
*
* @param sdkVersion The version of the SDK.
* @param sdkRootPath The path to the root of the SDK.
* @throws InstantiationException If the SDK version is not supported.
*/
public SdkSymbolResolver(final String sdkVersion, final Path sdkRootPath)
throws InstantiationException {
this.loadMapData(sdkVersion, sdkRootPath);
}
protected void loadMapData(final String sdkVersion, final Path sdkRootPath)
throws InstantiationException {
Path jsonPath = SdkResourceLoader.getResourceAsPath(sdkVersion,
SdkConstants.SdkResource.FIELDS_JSON, sdkRootPath);
Path codelistsPath = SdkResourceLoader.getResourceAsPath(sdkVersion,
SdkConstants.SdkResource.CODELISTS, sdkRootPath);
Path noticeTypesPath = SdkResourceLoader.getResourceAsPath(sdkVersion,
SdkConstants.SdkResource.NOTICE_TYPES_JSON, sdkRootPath);
// Load nodes first (fields depend on nodes for parent wiring)
this.nodeById = new SdkNodeRepository(sdkVersion, jsonPath);
this.nodeByAlias = indexNodesByAlias();
// Load fields with parent node wiring
this.fieldById = new SdkFieldRepository(sdkVersion, jsonPath, this.nodeById);
this.fieldByAlias = indexFieldsByAlias();
this.codelistById = new SdkCodelistRepository(sdkVersion, codelistsPath);
this.noticeTypesById = new SdkNoticeTypeRepository(sdkVersion, noticeTypesPath);
}
@Override
public String getParentNodeOfField(final String fieldId) {
final SdkField sdkField = this.resolveField(fieldId);
if (sdkField != null) {
return sdkField.getParentNodeId();
}
throw SymbolResolutionException.unknownSymbol(fieldId);
}
/**
* @param fieldId The id of a field.
* @return The xPath of the given field as a {@link SequencePath} if the field
* is repeatable from root context, {@link ScalarPath} otherwise.
*/
@Override
public PathExpression getAbsolutePathOfField(final String fieldId) {
final SdkField sdkField = this.resolveField(fieldId);
if (sdkField == null) {
throw SymbolResolutionException.unknownSymbol(fieldId);
}
return this.getAbsolutePathOfField(sdkField);
}
private PathExpression getAbsolutePathOfField(final SdkField sdkField) {
FieldTypes fieldType = FieldTypes.fromString(sdkField.getType());
if (this.isFieldRepeatableFromContext(sdkField, this.getRootNode())) {
return SequencePath.instantiate(sdkField.getXpathAbsolute(), fieldType);
} else {
return ScalarPath.instantiate(sdkField.getXpathAbsolute(), fieldType);
}
}
/**
* @param nodeId The id of a node.
* @return The xPath of the given node as a {@link NodeSequencePath} if
* the node is repeatable from root context, {@link NodePath} otherwise.
*/
@Override
public PathExpression getAbsolutePathOfNode(final String nodeId) {
final SdkNode sdkNode = this.resolveNode(nodeId);
if (sdkNode == null) {
throw SymbolResolutionException.unknownSymbol(nodeId);
}
return this.getAbsolutePathOfNode(sdkNode);
}
private PathExpression getAbsolutePathOfNode(final SdkNode sdkNode) {
if (this.isNodeRepeatableFromContext(sdkNode, null)) {
return new NodeSequencePath(sdkNode.getXpathAbsolute());
} else {
return new NodePath(sdkNode.getXpathAbsolute());
}
}
/**
* Gets the xPath of the given field relative to the given context.
*
* @param fieldId The id of the field for which we want to find the relative
* xPath.
* @param contextPath xPath indicating the context.
* @return The xPath of the given field relative to the given context.
* @deprecated Use {@link #getRelativePathOfField(String, String)} instead.
*/
@Deprecated(forRemoval = true)
@Override
public PathExpression getRelativePathOfField(String fieldId, PathExpression contextPath) {
return XPathContextualizer.contextualize(contextPath, this.getAbsolutePathOfField(fieldId));
}
@Override
public PathExpression getRelativePathOfField(String fieldId, String contextId) {
SdkField sdkField = this.resolveField(fieldId);
if (sdkField == null) {
throw SymbolResolutionException.unknownSymbol(fieldId);
}
// null contextId means root context - return absolute path with correct type
if (contextId == null) {
return this.getAbsolutePathOfField(sdkField);
}
var context = this.resolveSymbol(contextId);
if (context.isEmpty()) {
throw SymbolResolutionException.unknownSymbol(contextId);
}
if (context.isField()) {
return this.getRelativePathOfField(sdkField, context.field);
}
return this.getRelativePathOfField(sdkField, context.node);
}
private PathExpression getRelativePathOfField(SdkField sdkField, SdkNode context) {
String relativeScript = XPathProcessor.contextualize(context.getXpathAbsolute(), sdkField.getXpathAbsolute());
if (isFieldRepeatableFromContext(sdkField, context)) {
return SequencePath.instantiate(relativeScript, FieldTypes.fromString(sdkField.getType()));
} else {
return ScalarPath.instantiate(relativeScript, FieldTypes.fromString(sdkField.getType()));
}
}
private PathExpression getRelativePathOfField(SdkField sdkField, SdkField context) {
String relativeScript = XPathProcessor.contextualize(context.getXpathAbsolute(), sdkField.getXpathAbsolute());
if (this.isFieldRepeatableFromContext(sdkField, context)) {
return SequencePath.instantiate(relativeScript, FieldTypes.fromString(sdkField.getType()));
} else {
return ScalarPath.instantiate(relativeScript, FieldTypes.fromString(sdkField.getType()));
}
}
/**
* Gets the xPath of the given node relative to the given context.
*
* @param nodeId The id of the node for which we want to find the relative
* xPath.
* @param contextPath XPath indicating the context.
* @return The XPath of the given node relative to the given context.
* @deprecated Use {@link #getRelativePathOfNode(String, String)} instead.
*/
@Deprecated(forRemoval = true)
@Override
public PathExpression getRelativePathOfNode(String nodeId, PathExpression contextPath) {
return XPathContextualizer.contextualize(contextPath, this.getAbsolutePathOfNode(nodeId));
}
@Override
public PathExpression getRelativePathOfNode(String nodeId, String contextId) {
SdkNode sdkNode = this.resolveNode(nodeId);
if (sdkNode == null) {
throw SymbolResolutionException.unknownSymbol(nodeId);
}
// null contextId means root context - return absolute path with correct type
if (contextId == null) {
return this.getAbsolutePathOfNode(sdkNode);
}
var context = this.resolveSymbol(contextId);
if (context.isEmpty()) {
throw SymbolResolutionException.unknownSymbol(contextId);
}
if (context.isField()) {
return this.getRelativePathOfNode(sdkNode, context.field);
}
return this.getRelativePathOfNode(sdkNode, context.node);
}
private PathExpression getRelativePathOfNode(SdkNode sdkNode, SdkNode context) {
String relativeScript = XPathProcessor.contextualize(context.getXpathAbsolute(), sdkNode.getXpathAbsolute());
if (this.isNodeRepeatableFromContext(sdkNode, context)) {
return new NodeSequencePath(relativeScript);
} else {
return new NodePath(relativeScript);
}
}
private PathExpression getRelativePathOfNode(SdkNode sdkNode, SdkField context) {
String relativeScript = XPathProcessor.contextualize(context.getXpathAbsolute(), sdkNode.getXpathAbsolute());
if (this.isNodeRepeatableFromContext(sdkNode, context.getParentNode())) {
return new NodeSequencePath(relativeScript);
} else {
return new NodePath(relativeScript);
}
}
@Deprecated(forRemoval = true)
@Override
public PathExpression getRelativePath(PathExpression absolutePath, PathExpression contextPath) {
return XPathContextualizer.contextualize(contextPath, absolutePath);
}
@Override
public String getTypeOfField(String fieldId) {
final SdkField sdkField = this.resolveField(fieldId);
if (sdkField == null) {
throw SymbolResolutionException.unknownSymbol(fieldId);
}
return sdkField.getType();
}
@Override
public String getRootCodelistOfField(final String fieldId) {
final SdkField sdkField = this.resolveField(fieldId);
if (sdkField == null) {
throw SymbolResolutionException.unknownSymbol(fieldId);
}
final String codelistId = sdkField.getCodelistId();
if (codelistId == null) {
throw SymbolResolutionException.noCodelistForField(fieldId);
}
final SdkCodelist sdkCodelist = codelistById.get(codelistId);
if (sdkCodelist == null) {
throw SymbolResolutionException.unknownCodelist(codelistId);
}
return sdkCodelist.getRootCodelistId();
}
@Override
public boolean isAttributeField(final String fieldId) {
final SdkField sdkField = this.resolveField(fieldId);
if (sdkField == null) {
throw SymbolResolutionException.unknownSymbol(fieldId);
}
return sdkField.getXpathInfo().isAttribute();
}
@Override
public String getAttributeNameFromAttributeField(final String fieldId) {
final SdkField sdkField = this.resolveField(fieldId);
if (sdkField == null) {
throw SymbolResolutionException.unknownSymbol(fieldId);
}
return sdkField.getXpathInfo().getAttributeName();
}
@Override
public PathExpression getAbsolutePathOfFieldWithoutTheAttribute(final String fieldId) {
final SdkField sdkField = this.resolveField(fieldId);
if (sdkField == null) {
throw SymbolResolutionException.unknownSymbol(fieldId);
}
String pathToElement = sdkField.getXpathInfo().getPathToLastElement();
SdkNode parentNode = sdkField.getParentNode();
if (parentNode != null && this.isNodeRepeatableFromContext(parentNode, null)) {
return new NodeSequencePath(pathToElement);
} else {
return new NodePath(pathToElement);
}
}
@Override
public String getFieldIdFromAlias(String alias) {
if (this.fieldByAlias.containsKey(alias)) {
return this.fieldByAlias.get(alias).getId();
}
return null;
}
@Override
public String getNodeIdFromAlias(String alias) {
if (this.nodeByAlias.containsKey(alias)) {
return this.nodeByAlias.get(alias).getId();
}
return null;
}
@Override
public List<String> getAllNoticeSubtypeIds() {
return noticeTypesById.keySet().stream().map(String::toUpperCase).sorted().collect(Collectors.toList());
}
protected HashMap<String, SdkField> indexFieldsByAlias() {
return this.fieldById.values().stream()
.filter(SdkFieldV2.class::isInstance)
.map(SdkFieldV2.class::cast)
.filter(field -> field.getAlias() != null)
.collect(Collectors.toMap(
SdkFieldV2::getAlias,
Function.identity(),
(existing, replacement) -> existing,
HashMap::new
));
}
protected HashMap<String, SdkNode> indexNodesByAlias() {
return this.nodeById.values().stream()
.filter(SdkNodeV2.class::isInstance)
.map(SdkNodeV2.class::cast)
.filter(node -> node.getAlias() != null)
.collect(Collectors.toMap(
SdkNodeV2::getAlias,
Function.identity(),
(existing, replacement) -> existing,
HashMap::new
));
}
@Override
public boolean isFieldRepeatableFromContext(final String fieldId, final String contextNodeId) {
final SdkField sdkField = this.resolveField(fieldId);
if (sdkField == null) {
throw SymbolResolutionException.unknownSymbol(fieldId);
}
var contextNode = contextNodeId != null ? this.resolveNode(contextNodeId) : this.getRootNode();
if (contextNode == null) {
throw SymbolResolutionException.unknownSymbol(contextNodeId);
}
return this.isFieldRepeatableFromContext(sdkField, contextNode);
}
private boolean isFieldRepeatableFromContext(final SdkField sdkField, final SdkField context) {
// If the field itself is repeatable, it returns multiple values UNLESS it IS the context
// (e.g., inside a predicate on this field: BT-Repeatable[BT-Repeatable != ''])
if (sdkField.isRepeatable()) {
return !sdkField.equals(context);
}
// Use cached ancestry from node
List<String> contextAncestry = context != null
? context.getParentNode().getAncestry()
: Collections.emptyList();
// Walk up from the field's parent node toward root, looking for a repeatable
// node
String currentNodeId = sdkField.getParentNodeId();
while (currentNodeId != null) {
// Context boundary reached - the context node (even if repeatable) doesn't
// count because we're positioned inside one instance of it. No repeatable node exists
// between the field and context, so the field doesn't repeat from this context.
if (contextAncestry.contains(currentNodeId)) {
return false;
}
SdkNode node = nodeById.get(currentNodeId);
if (node == null) {
break;
}
// If this node is repeatable, the field returns multiple values from context
if (node.isRepeatable()) {
return true;
}
currentNodeId = node.getParentId();
}
return false;
}
private boolean isFieldRepeatableFromContext(final SdkField sdkField, final SdkNode context) {
// If the field itself is repeatable, it returns multiple values
if (sdkField.isRepeatable()) {
return true;
}
// Use cached ancestry from node
List<String> contextAncestry = context != null
? context.getAncestry()
: Collections.emptyList();
// Walk up from the field's parent node toward root, looking for a repeatable
// node
String currentNodeId = sdkField.getParentNodeId();
while (currentNodeId != null) {
// Context boundary reached - the context node (even if repeatable) doesn't
// count
// because we're positioned inside one instance of it. No repeatable node exists
// between the field and context, so the field doesn't repeat from this context.
if (contextAncestry.contains(currentNodeId)) {
return false;
}
SdkNode node = nodeById.get(currentNodeId);
if (node == null) {
break;
}
// If this node is repeatable, the field returns multiple values from context
if (node.isRepeatable()) {
return true;
}
currentNodeId = node.getParentId();
}
return false;
}
@Override
public boolean isNodeRepeatableFromContext(final String nodeId, final String contextNodeId) {
final SdkNode sdkNode = this.resolveNode(nodeId);
if (sdkNode == null) {
throw SymbolResolutionException.unknownSymbol(nodeId);
}
final SdkNode contextNode = contextNodeId != null
? this.resolveNode(contextNodeId)
: null;
if (contextNodeId != null && contextNode == null) {
throw SymbolResolutionException.unknownSymbol(contextNodeId);
}
return this.isNodeRepeatableFromContext(sdkNode, contextNode);
}
private boolean isNodeRepeatableFromContext(final SdkNode sdkNode, final SdkNode contextNode) {
// Use cached ancestry from node
List<String> contextAncestry = contextNode != null
? contextNode.getAncestry()
: Collections.emptyList();
// Walk up from the node toward root, looking for a repeatable node
String currentNodeId = sdkNode.getId();
while (currentNodeId != null) {
// Context boundary reached - the context node (even if repeatable) doesn't count
// because we're positioned inside one instance of it. No repeatable node exists
// between the target node and context, so it doesn't repeat from this context.
if (contextAncestry.contains(currentNodeId)) {
return false;
}
SdkNode node = this.nodeById.get(currentNodeId);
if (node == null) {
break;
}
// If this node is repeatable, return true
if (node.isRepeatable()) {
return true;
}
currentNodeId = node.getParentId();
}
return false;
}
@Override
public String getRootNodeId() {
return this.getRootNode().getId();
}
@Override
public PathExpression getRootPath() {
return new NodePath(this.getRootNode().getXpathAbsolute());
}
private SdkNode getRootNode() {
if (this.cachedRootNode == null) {
this.cachedRootNode = this.nodeById.values().stream()
.filter(node -> node.getParentId() == null)
.findFirst()
.orElseThrow(SymbolResolutionException::rootNodeNotFound);
}
return this.cachedRootNode;
}
// #region Identifier Resolution ------------------------------------------------
static class SdkEntity {
final SdkNode node;
final SdkField field;
static SdkEntity EMPTY = new SdkEntity(null, null);
static SdkEntity ofNode(SdkNode node) {
return new SdkEntity(node, null);
}
static SdkEntity ofField(SdkField field) {
return new SdkEntity(null, field);
}
private SdkEntity(SdkNode node, SdkField field) {
this.node = node;
this.field = field;
}
boolean isNode() {
return this.node != null;
}
boolean isField() {
return this.field != null;
}
boolean isEmpty() {
return this.node == null && this.field == null;
}
}
private SdkEntity resolveSymbol(String symbol) {
if (symbol == null) {
return SdkEntity.EMPTY;
}
SdkNode node = this.resolveNode(symbol);
if (node != null) {
return SdkEntity.ofNode(node);
}
SdkField field = this.resolveField(symbol);
return SdkEntity.ofField(field);
}
private SdkField resolveField(String fieldId) {
return Optional.ofNullable(this.fieldById.get(fieldId))
.orElseGet(() -> this.fieldByAlias.get(fieldId));
}
private SdkNode resolveNode(String nodeId) {
return Optional.ofNullable(this.nodeById.get(nodeId))
.orElseGet(() -> this.nodeByAlias.get(nodeId));
}
// #endregion Identifier Resolution ------------------------------------------------
}