use of com.redhat.qute.parser.expression.Parts in project quarkus-ls by redhat-developer.
the class Expression method getNamespacePart.
/**
* Returns the namespace part of the expression and null otherwise.
*
* @return the namespace part of the expression and null otherwise.
*/
public NamespacePart getNamespacePart() {
List<Node> nodes = getExpressionContent();
if (nodes.isEmpty()) {
return null;
}
Parts parts = (Parts) nodes.get(0);
return parts.getNamespacePart();
}
use of com.redhat.qute.parser.expression.Parts in project quarkus-ls by redhat-developer.
the class QuteSearchUtils method tryToCollectObjectParts.
/**
* Try to collect all object parts from the given expression
* <code>nodeExpr</code> which matches the given part name
* <code>partName</code>.
*
* @param partName the part name.
* @param matcher the matcher strategy.
* @param nodeExpr the Qute node expression
* @param collector the node collector.
*
* @return true if the given nodeExpr reference the part name as object part and
* false otherwise.
*/
private static boolean tryToCollectObjectParts(String partName, PartNameMatcher matcher, Node nodeExpr, BiConsumer<Node, Range> collector) {
switch(nodeExpr.getKind()) {
case Expression:
{
Expression expression = (Expression) nodeExpr;
boolean result = false;
List<Node> nodes = expression.getExpressionContent();
for (Node node : nodes) {
// ex : partName=item
// node expression can be
// 1) a simple expression:
// --> {item_count} --> [ObjectPart=item_count]
// --> {item.name} --> [ObjectPart=item, PropertyPart=name)
// --> {item.getName()} --> [ObjectPart=item, MethodPart=getName())
// In those cases, one object part will be collected =>{|item|_count},
// {|item|.name}, {|item|.getName()}
// 2) an expression with method part which can host another expressions when
// method have parameters
// --> {item.getName(item.name)} --> [ObjectPart=item,
// MethodPart=getName(item.name))
// In this case, two object parts will be collected =>
// {|item|.getName(|item|.name)}
result |= tryToCollectObjectParts(partName, matcher, node, collector);
}
return result;
}
case ExpressionParts:
{
Parts parts = (Parts) nodeExpr;
boolean result = false;
for (Node partNode : parts.getChildren()) {
result |= tryToCollectObjectParts(partName, matcher, partNode, collector);
}
return result;
}
case ExpressionPart:
{
Part part = (Part) nodeExpr;
if (part.getPartKind() == PartKind.Object) {
ObjectPart objectPart = (ObjectPart) part;
if (isMatch(objectPart, partName, matcher)) {
Range range = QutePositionUtility.createRange(objectPart);
collector.accept(objectPart, range);
return true;
}
} else if (part.getPartKind() == PartKind.Method) {
MethodPart methodPart = (MethodPart) part;
List<Parameter> parameters = methodPart.getParameters();
boolean result = false;
for (Parameter parameter : parameters) {
Expression paramExpr = parameter.getJavaTypeExpression();
if (paramExpr != null) {
result |= tryToCollectObjectParts(partName, matcher, paramExpr, collector);
}
}
return result;
}
}
break;
default:
break;
}
return false;
}
use of com.redhat.qute.parser.expression.Parts in project quarkus-ls by redhat-developer.
the class Expression method getObjectPart.
/**
* Returns the object part of the expression and null otherwise.
*
* @return the object part of the expression and null otherwise.
*/
public ObjectPart getObjectPart() {
List<Node> nodes = getExpressionContent();
if (nodes.isEmpty()) {
return null;
}
Parts parts = (Parts) nodes.get(0);
return parts.getObjectPart();
}
use of com.redhat.qute.parser.expression.Parts in project quarkus-ls by redhat-developer.
the class QuteDefinition method findDefinitionFromPropertyPart.
private CompletableFuture<List<? extends LocationLink>> findDefinitionFromPropertyPart(Part part, Template template) {
String projectUri = template.getProjectUri();
if (projectUri != null) {
Parts parts = part.getParent();
Part previousPart = parts.getPreviousPart(part);
return //
javaCache.resolveJavaType(previousPart, projectUri).thenCompose(previousResolvedType -> {
if (previousResolvedType != null) {
if (previousResolvedType.isIterable()) {
// Expression uses iterable type
// {@java.util.List<org.acme.Item items>
// {items.si|ze()}
// Property, method to find as definition must be done for iterable type (ex :
// java.util.List>
String iterableType = previousResolvedType.getIterableType();
CompletableFuture<ResolvedJavaTypeInfo> iterableResolvedTypeFuture = javaCache.resolveJavaType(iterableType, projectUri);
return iterableResolvedTypeFuture.thenCompose((iterableResolvedType) -> {
return findDefinitionFromPropertyPart(part, projectUri, iterableResolvedType);
});
}
return findDefinitionFromPropertyPart(part, projectUri, previousResolvedType);
}
return NO_DEFINITION;
});
}
return NO_DEFINITION;
}
use of com.redhat.qute.parser.expression.Parts in project quarkus-ls by redhat-developer.
the class JavaDataModelCache method resolveJavaType.
public CompletableFuture<ResolvedJavaTypeInfo> resolveJavaType(Part part, String projectUri, boolean nullIfDontMatchWithIterable) {
Parts parts = part.getParent();
int partIndex = parts.getPartIndex(part);
return resolveJavaType(parts, partIndex, projectUri, nullIfDontMatchWithIterable);
}
Aggregations