use of com.nedap.archie.aom.ArchetypeModelObject in project archetype-languageserver by nedap.
the class AQLStorage method completion.
public Either<List<CompletionItem>, CompletionList> completion(CompletionParams position) {
String uri = position.getTextDocument().getUri();
AQLDocument aqlDocument = this.aqlDocumentsByUri.get(uri);
if (aqlDocument == null) {
return Either.forRight(new CompletionList());
}
List<CompletionItem> items = new ArrayList<>();
CompletionList result = new CompletionList(items);
MetaModels metaModels = BuiltinReferenceModels.getMetaModels();
for (ArchetypePathReference reference : aqlDocument.getArchetypePathReferences()) {
// copy the range, adding one because typing at the end of course
Range range = new Range();
range.setStart(new Position(reference.getRange().getStart().getLine(), reference.getRange().getStart().getCharacter()));
range.setEnd(new Position(reference.getRange().getEnd().getLine(), reference.getRange().getEnd().getCharacter() + 1));
if (reference.getArchetypeId() != null && Ranges.containsPosition(range, position.getPosition())) {
// TODO: get operational template here. I think that should be cached?
ValidationResult validationResult = archetypeRepository.getValidationResult(reference.getArchetypeId());
if (validationResult != null && validationResult.getFlattened() != null) {
// ok we have code completion!
// now to find the correct archetype path
Archetype flat = validationResult.getFlattened();
metaModels.selectModel(flat);
PartialAOMPathQuery partialAOMPathQuery = new PartialAOMPathQuery(reference.getPath());
// TODO: get path UP TO where we are typing!
PartialAOMPathQuery.PartialMatch partial = partialAOMPathQuery.findLSPPartial(flat.getDefinition());
// TODO: add BMM path traversal here as well, so you can do /value/magnitude
for (ArchetypeModelObject object : partial.getMatches()) {
if (object instanceof CObject) {
for (CAttribute attribute : ((CObject) object).getAttributes()) {
for (CObject child : attribute.getChildren()) {
if (child.getNodeId() != null && !"id9999".equalsIgnoreCase(child.getNodeId())) {
String text = child.getTerm() == null ? attribute.getRmAttributeName() + "[" + child.getNodeId() + "] (" + child.getRmTypeName() + ")" : child.getTerm().getText() + " (" + attribute.getRmAttributeName() + " " + child.getRmTypeName() + "[" + child.getNodeId() + "])";
CompletionItem completionItem = new CompletionItem(text);
completionItem.setInsertText(attribute.getRmAttributeName() + "[" + child.getNodeId() + "]");
completionItem.setFilterText(attribute.getRmAttributeName() + "[" + child.getNodeId() + "]" + text);
// the 0 is to sort this before others
completionItem.setSortText(attribute.getRmAttributeName() + "0" + text);
completionItem.setKind(CompletionItemKind.Reference);
items.add(completionItem);
}
}
}
BmmClass classDefinition = metaModels.getSelectedBmmModel().getClassDefinition(BmmDefinitions.typeNameToClassKey(((CObject) object).getRmTypeName()));
if (classDefinition != null) {
for (BmmProperty property : classDefinition.getFlatProperties().values()) {
CompletionItem completionItem = new CompletionItem(property.getName() + "(" + property.getType().toDisplayString() + ")");
completionItem.setInsertText(property.getName());
// sort this last please
completionItem.setSortText(property.getName() + "zzzz");
completionItem.setKind(CompletionItemKind.Reference);
items.add(completionItem);
}
}
} else if (object instanceof CAttribute) {
for (CObject child : ((CAttribute) object).getChildren()) {
if (child.getNodeId() != null && !child.getNodeId().equalsIgnoreCase("id9999")) {
CompletionItem completionItem = new CompletionItem();
completionItem.setLabel(child.getTerm() == null ? child.getRmTypeName() : child.getTerm().getText());
completionItem.setInsertText("[" + child.getNodeId() + "]");
completionItem.setKind(CompletionItemKind.Reference);
// completionItem.setInsertText();
items.add(completionItem);
}
}
}
}
}
}
}
return Either.forRight(result);
}
use of com.nedap.archie.aom.ArchetypeModelObject in project archetype-languageserver by nedap.
the class PartialAOMPathQuery method findLSPPartial.
// TODO: check if/how this is different from AOMPathQuery.findPartial, and potentially remove
public PartialMatch findLSPPartial(CComplexObject root) {
List<ArchetypeModelObject> result = new ArrayList<>();
boolean findThroughDifferentialPaths = true, matchSpecializedNodes = true;
result.add(root);
List<PathSegment> pathSegments = getPathSegments();
for (int i = 0; i < pathSegments.size(); i++) {
List<ArchetypeModelObject> previousResult = result;
PathSegment segment = pathSegments.get(i);
CAttribute differentialAttribute = null;
if (findThroughDifferentialPaths) {
differentialAttribute = findMatchingDifferentialPath(pathSegments.subList(i, pathSegments.size()), result);
}
if (differentialAttribute != null) {
// skip a few pathsegments for this differential path match
i = i + new APathQuery(differentialAttribute.getDifferentialPath()).getPathSegments().size() - 1;
PathSegment lastPathSegment = pathSegments.get(i);
ArchetypeModelObject oneMatchingObject = findOneMatchingObject(differentialAttribute, lastPathSegment, matchSpecializedNodes);
if (oneMatchingObject != null) {
result = Lists.newArrayList(oneMatchingObject);
} else {
result = findOneSegment(segment, result, matchSpecializedNodes);
}
} else {
result = findOneSegment(segment, result, matchSpecializedNodes);
}
List<ArchetypeModelObject> returnValue = previousResult.stream().filter((object) -> object != null).collect(Collectors.toList());
if (result.isEmpty()) {
// we have to return our partial match here
return new PartialMatch(pathSegments, pathSegments.subList(i, pathSegments.size()), returnValue);
}
}
List<ArchetypeModelObject> returnValue = result.stream().filter((object) -> object != null).collect(Collectors.toList());
return new PartialMatch(pathSegments, new ArrayList<>(), returnValue);
}
use of com.nedap.archie.aom.ArchetypeModelObject in project archetype-languageserver by nedap.
the class AQLStorage method extractHoverInfo.
private void extractHoverInfo(AQLDocument document) {
HoverInfo hoverInfo = new HoverInfo("aql");
MetaModels metaModels = BuiltinReferenceModels.getMetaModels();
for (ArchetypePathReference reference : document.getArchetypePathReferences()) {
if (reference.getArchetypeId() == null) {
continue;
}
try {
// TODO: get operational template here. I think that should be cached?
ValidationResult validationResult = archetypeRepository.getValidationResult(reference.getArchetypeId());
if (validationResult != null) {
Archetype flattened = validationResult.getFlattened();
metaModels.selectModel(flattened);
if (flattened != null) {
PartialAOMPathQuery aomPathQuery = new PartialAOMPathQuery(reference.getPath());
PartialAOMPathQuery.PartialMatch partial = aomPathQuery.findLSPPartial(flattened.getDefinition());
if (partial.getMatches().size() > 0) {
ArchetypeModelObject archetypeModelObject = partial.getMatches().get(0);
String content = null;
String description = null;
String typeName = "";
if (archetypeModelObject instanceof CAttribute) {
CAttribute attribute = (CAttribute) archetypeModelObject;
content = findNearestText((CAttribute) archetypeModelObject);
description = findNearestDescription((CAttribute) archetypeModelObject);
CObject parent = attribute.getParent();
if (partial.getRemainingQuery().isEmpty()) {
// TODO: proper path lookup here
BmmClass classDefinition = metaModels.getSelectedBmmModel().getClassDefinition(BmmDefinitions.typeNameToClassKey(parent.getRmTypeName()));
if (classDefinition != null) {
BmmProperty bmmProperty = classDefinition.getFlatProperties().get(attribute.getRmAttributeName());
if (bmmProperty != null) {
bmmProperty.getType().toDisplayString();
}
}
}
} else if (archetypeModelObject instanceof CObject) {
content = findNearestText((CObject) archetypeModelObject);
description = findNearestDescription((CObject) archetypeModelObject);
if (partial.getRemainingQuery().isEmpty()) {
// TODO: proper path lookup here.
typeName = ((CObject) archetypeModelObject).getRmTypeName();
}
}
String text = content + partial.getRemainingQuery().stream().map(PathSegment::toString).collect(Collectors.joining("/"));
text += "\n\n" + typeName;
text += "\n\n" + description;
text += "\n\nIn Archetype " + flattened.getDefinition().getTerm().getText() + " (" + reference.getArchetypeId() + ")";
hoverInfo.getHoverRanges().addRange(reference.getRange(), new Hover(new MarkupContent(HoverInfo.MARKDOWN, text)));
} else {
hoverInfo.getHoverRanges().addRange(reference.getRange(), new Hover(new MarkupContent(HoverInfo.MARKDOWN, "path " + reference.getPath() + " not found")));
}
} else {
hoverInfo.getHoverRanges().addRange(reference.getRange(), new Hover(new MarkupContent(HoverInfo.MARKDOWN, "flattened archetype not found")));
}
} else {
hoverInfo.getHoverRanges().addRange(reference.getRange(), new Hover(new MarkupContent(HoverInfo.MARKDOWN, "archetype not found")));
}
} catch (Exception e) {
// ok... report as diagnostics or log
e.printStackTrace();
}
}
document.setHoverInfo(hoverInfo);
}
use of com.nedap.archie.aom.ArchetypeModelObject in project archetype-languageserver by nedap.
the class AQLStorage method getCodeLens.
public List<? extends CodeLens> getCodeLens(CodeLensParams params) {
AQLDocument document = this.aqlDocumentsByUri.get(params.getTextDocument().getUri());
if (document == null) {
return new ArrayList<>();
}
List<CodeLens> result = new ArrayList<>();
for (ArchetypePathReference reference : document.getArchetypePathReferences()) {
if (reference.getArchetypeId() == null) {
continue;
}
try {
// TODO: get operational template here. I think that should be cached?
ValidationResult validationResult = archetypeRepository.getValidationResult(reference.getArchetypeId());
if (validationResult != null) {
Archetype flattened = validationResult.getFlattened();
if (flattened != null) {
PartialAOMPathQuery aomPathQuery = new PartialAOMPathQuery(reference.getPath());
PartialAOMPathQuery.PartialMatch partial = aomPathQuery.findLSPPartial(flattened.getDefinition());
if (partial.getMatches().size() > 0) {
ArchetypeModelObject archetypeModelObject = partial.getMatches().get(0);
String content = null;
String description = null;
if (archetypeModelObject instanceof CAttribute) {
content = findNearestText((CAttribute) archetypeModelObject);
description = findNearestDescription((CAttribute) archetypeModelObject);
} else if (archetypeModelObject instanceof CObject) {
content = findNearestText((CObject) archetypeModelObject);
description = findNearestDescription((CObject) archetypeModelObject);
}
String text = content + partial.getRemainingQuery().stream().map(PathSegment::toString).collect(Collectors.joining("/"));
String extraText = description;
extraText += "\n\nIn Archetype " + flattened.getDefinition().getTerm().getText() + " (" + reference.getArchetypeId() + ")";
// result.add(new CodeLens(reference.getRange(), new Command(text, ADL2TextDocumentService.SHOW_INFO_COMMAND, Lists.newArrayList(extraText)), null));
result.add(new CodeLens(reference.getRange(), new Command(text, ADL2TextDocumentService.SHOW_INFO_COMMAND, Lists.newArrayList(extraText)), null));
} else {
// hoverInfo.getHoverRanges().addRange(reference.getRange(), new Hover(new MarkupContent(HoverInfo.MARKDOWN, "path " + reference.getPath() + " not found")));
}
} else {
// hoverInfo.getHoverRanges().addRange(reference.getRange(), new Hover(new MarkupContent(HoverInfo.MARKDOWN, "flattened archetype not found")));
}
} else {
// hoverInfo.getHoverRanges().addRange(reference.getRange(), new Hover(new MarkupContent(HoverInfo.MARKDOWN, "archetype not found")));
}
} catch (Exception e) {
// ok... report as diagnostics or log
e.printStackTrace();
}
}
return result;
}
Aggregations