use of org.ballerinalang.plugins.idea.psi.ActionInvocationNode in project ballerina by ballerina-lang.
the class BallerinaParameterInfoHandler method findElement.
@Nullable
public static Object findElement(@NotNull PsiElement element, @Nullable PsiElement prevElement) {
// This will allow us to identify the correct ExpressionListNode element.
if (")".equals(element.getText())) {
PsiElement parent = element.getParent();
// invocations will not show proper parameters.
if (parent != null && !(parent instanceof ActionInvocationNode)) {
FunctionReferenceNode functionReferenceNode = PsiTreeUtil.getChildOfType(parent, FunctionReferenceNode.class);
if (functionReferenceNode != null) {
return functionReferenceNode;
}
ConnectorReferenceNode connectorReferenceNode = PsiTreeUtil.getChildOfType(parent, ConnectorReferenceNode.class);
if (connectorReferenceNode != null) {
return connectorReferenceNode;
}
if (parent instanceof StatementNode) {
PsiElement firstChild = parent.getFirstChild();
PsiElement prevVisibleLeaf = PsiTreeUtil.prevVisibleLeaf(firstChild);
if (prevVisibleLeaf == null || !"(".equals(prevVisibleLeaf.getText())) {
if (firstChild instanceof PsiErrorElement) {
return PsiTreeUtil.findChildOfType(firstChild, IdentifierPSINode.class);
}
return prevVisibleLeaf;
} else if ("(".equals(prevVisibleLeaf.getText())) {
return PsiTreeUtil.prevVisibleLeaf(prevVisibleLeaf);
} else {
return prevVisibleLeaf.getParent().getFirstChild();
}
}
}
// contain "(".
if (prevElement != null) {
element = prevElement;
}
}
PsiElement node = PsiTreeUtil.getParentOfType(element, ExpressionListNode.class);
// ExpressionListNode can be null if there are no arguments provided.
if (node != null) {
return node;
}
// So we check return the FunctionInvocationNode in that case.
node = PsiTreeUtil.getParentOfType(element, FunctionInvocationNode.class);
if (node != null) {
return node;
}
// If FunctionInvocationNode is null, we check return the ActionInvocationNode in that case.
node = PsiTreeUtil.getParentOfType(element, ActionInvocationNode.class);
if (node != null) {
return node;
}
// If ActionInvocationNode is null, we check return the ConnectorInitNode in that case.
node = PsiTreeUtil.getParentOfType(element, InvocationNode.class);
if (node != null) {
return node;
}
// any expression node parent.
if (element != null && "(".equals(element.getText())) {
node = PsiTreeUtil.getParentOfType(element, ExpressionNode.class);
}
if (node != null) {
return node;
}
if (prevElement != null && prevElement.getText().matches("[{,]") || prevElement instanceof LeafPsiElement) {
return resolve(prevElement);
}
return null;
}
use of org.ballerinalang.plugins.idea.psi.ActionInvocationNode in project ballerina by ballerina-lang.
the class BallerinaUnresolvedReferenceInspection method checkFile.
@Override
@Nullable
public ProblemDescriptor[] checkFile(@NotNull PsiFile file, @NotNull InspectionManager manager, boolean isOnTheFly) {
// does not work in tests since CodeInsightTestCase copies file into temporary location
if (ApplicationManager.getApplication().isUnitTestMode()) {
return new ProblemDescriptor[0];
}
if (!(file instanceof BallerinaFile)) {
return new ProblemDescriptor[0];
}
List<ProblemDescriptor> problemDescriptors = new LinkedList<>();
Collection<PackageNameNode> packageNameNodes = PsiTreeUtil.findChildrenOfType(file, PackageNameNode.class);
for (PackageNameNode packageNameNode : packageNameNodes) {
ProgressManager.checkCanceled();
if (packageNameNode == null) {
continue;
}
AliasNode aliasNode = PsiTreeUtil.getParentOfType(packageNameNode, AliasNode.class);
if (aliasNode != null) {
continue;
}
PackageDeclarationNode packageDeclarationNode = PsiTreeUtil.getParentOfType(packageNameNode, PackageDeclarationNode.class);
if (packageDeclarationNode != null) {
continue;
}
XmlAttribNode xmlAttribNode = PsiTreeUtil.getParentOfType(packageNameNode, XmlAttribNode.class);
if (xmlAttribNode != null) {
continue;
}
LocalQuickFix[] availableFixes;
ImportDeclarationNode importDeclarationNode = PsiTreeUtil.getParentOfType(packageNameNode, ImportDeclarationNode.class);
if (importDeclarationNode != null) {
availableFixes = new LocalQuickFix[0];
} else {
BallerinaImportPackageQuickFix quickFix = new BallerinaImportPackageQuickFix(packageNameNode);
availableFixes = new LocalQuickFix[] { quickFix };
}
PsiElement nameIdentifier = packageNameNode.getNameIdentifier();
if (nameIdentifier == null) {
continue;
}
PsiReference reference = nameIdentifier.getReference();
if (reference == null || reference.resolve() == null) {
if (reference instanceof PackageNameReference) {
ResolveResult[] resolveResults = ((PackageNameReference) reference).multiResolve(false);
if (resolveResults.length > 0) {
continue;
}
}
problemDescriptors.add(createProblemDescriptor(manager, packageNameNode, isOnTheFly, availableFixes));
}
}
// Todo - Add new quick fixes.
LocalQuickFix[] availableFixes = new LocalQuickFix[0];
Collection<NameReferenceNode> nameReferenceNodes = PsiTreeUtil.findChildrenOfType(file, NameReferenceNode.class);
problemDescriptors.addAll(getUnresolvedNameReferenceDescriptors(manager, isOnTheFly, availableFixes, nameReferenceNodes));
Collection<AnnotationAttributeNode> annotationAttributeNodes = PsiTreeUtil.findChildrenOfType(file, AnnotationAttributeNode.class);
problemDescriptors.addAll(getUnresolvedReferenceDescriptors(manager, isOnTheFly, availableFixes, annotationAttributeNodes));
Collection<ConnectorReferenceNode> connectorReferenceNodes = PsiTreeUtil.findChildrenOfType(file, ConnectorReferenceNode.class);
problemDescriptors.addAll(getUnresolvedReferenceDescriptors(manager, isOnTheFly, availableFixes, connectorReferenceNodes));
Collection<ActionInvocationNode> actionInvocationNodes = PsiTreeUtil.findChildrenOfType(file, ActionInvocationNode.class);
problemDescriptors.addAll(getUnresolvedReferenceDescriptors(manager, isOnTheFly, availableFixes, actionInvocationNodes));
Collection<FunctionReferenceNode> functionReferenceNodes = PsiTreeUtil.findChildrenOfType(file, FunctionReferenceNode.class);
problemDescriptors.addAll(getUnresolvedReferenceDescriptors(manager, isOnTheFly, availableFixes, functionReferenceNodes));
return problemDescriptors.toArray(new ProblemDescriptor[problemDescriptors.size()]);
}
use of org.ballerinalang.plugins.idea.psi.ActionInvocationNode in project ballerina by ballerina-lang.
the class BallerinaParameterInfoHandler method showParameterInfo.
@Override
public void showParameterInfo(@NotNull Object element, @NotNull CreateParameterInfoContext context) {
// This method will be called with the return object of the findElementForParameterInfo(). If it is null,
// this method will not be called.
// Since we know the type, we check and cast the object.
PsiElement currentElement = null;
PsiElement parentElement = null;
List<PsiElement> list = getParameters(element);
if (element instanceof ExpressionListNode) {
ExpressionListNode expressionListNode = (ExpressionListNode) element;
// We need to get the ExpressionListNode parent of current ExpressionListNode.
// Current ExpressionListNode - "WSO2"
// Parent ExpressionListNode - setName("WSO2")
// By doing this, we get the function name because setName("WSO2") is also a ExpressionNode.
PsiElement parent = PsiTreeUtil.getParentOfType(expressionListNode, FunctionInvocationNode.class);
// node is a FunctionInvocationNode.
if (parent == null) {
// So if the parent is null, we consider the FunctionInvocationNode as the parent node.
parent = PsiTreeUtil.getParentOfType(expressionListNode, ExpressionNode.class);
}
if (parent == null) {
parent = PsiTreeUtil.getParentOfType(expressionListNode, InvocationNode.class);
}
if (parent == null) {
// So if the parent is null, we consider the ActionInvocationNode as the parent node.
parent = PsiTreeUtil.getParentOfType(expressionListNode, ActionInvocationNode.class);
}
if (parent == null) {
// So if the parent is null, we consider the ActionInvocationNode as the parent node.
parent = PsiTreeUtil.getParentOfType(expressionListNode, ConnectorInitNode.class);
}
if (parent == null) {
// So if the parent is null, we consider the ExpressionListNode as the parent node.
parent = PsiTreeUtil.getParentOfType(expressionListNode, ExpressionListNode.class);
}
if (parent == null) {
parent = expressionListNode;
}
currentElement = expressionListNode;
parentElement = parent;
} else if (element instanceof FunctionInvocationNode) {
FunctionInvocationNode functionInvocationNode = (FunctionInvocationNode) element;
currentElement = functionInvocationNode;
parentElement = functionInvocationNode;
} else if (element instanceof ActionInvocationNode) {
ActionInvocationNode actionInvocationNode = (ActionInvocationNode) element;
currentElement = actionInvocationNode;
parentElement = actionInvocationNode;
} else if (element instanceof ConnectorInitNode) {
ConnectorInitNode connectorInitNode = (ConnectorInitNode) element;
currentElement = connectorInitNode;
parentElement = connectorInitNode;
} else if (element instanceof ExpressionNode) {
ExpressionNode expressionNode = (ExpressionNode) element;
currentElement = expressionNode;
parentElement = expressionNode;
} else if (element instanceof NameReferenceNode) {
NameReferenceNode nameReferenceNode = (NameReferenceNode) element;
currentElement = nameReferenceNode;
parentElement = nameReferenceNode;
} else if (element instanceof FunctionReferenceNode) {
FunctionReferenceNode functionReferenceNode = (FunctionReferenceNode) element;
currentElement = functionReferenceNode;
parentElement = functionReferenceNode;
} else if (element instanceof ConnectorReferenceNode) {
ConnectorReferenceNode connectorReferenceNode = (ConnectorReferenceNode) element;
currentElement = connectorReferenceNode;
parentElement = connectorReferenceNode;
} else if (element instanceof IdentifierPSINode) {
IdentifierPSINode identifier = (IdentifierPSINode) element;
currentElement = identifier;
parentElement = identifier;
} else if (element instanceof InvocationNode) {
InvocationNode invocationNode = (InvocationNode) element;
currentElement = invocationNode;
parentElement = invocationNode;
}
PsiElement namedIdentifierDefNode = getNameIdentifierDefinitionNode(parentElement);
PsiElement nameIdentifier = getNameIdentifier(currentElement, namedIdentifierDefNode);
if (currentElement == null || nameIdentifier == null || !(nameIdentifier instanceof IdentifierPSINode)) {
return;
}
if (list == null) {
list = new LinkedList<>();
}
// If there are no items to show, set a custom object. Otherwise set the list as an array.
if (list.isEmpty() && canResolve(nameIdentifier)) {
// Todo - change how to identify no parameter situation
context.setItemsToShow(new Object[] { "Empty" });
} else {
context.setItemsToShow(list.toArray(new PsiElement[list.size()]));
}
context.showHint(currentElement, currentElement.getTextRange().getStartOffset(), this);
}
use of org.ballerinalang.plugins.idea.psi.ActionInvocationNode in project ballerina by ballerina-lang.
the class BallerinaParameterInfoHandler method getParameters.
/**
* Returns the parameter list for the given element.
*
* @param element
* @return
*/
@NotNull
public static List<PsiElement> getParameters(@NotNull Object element) {
List<PsiElement> list = new LinkedList<>();
if (element instanceof ExpressionListNode) {
ExpressionListNode expressionListNode = (ExpressionListNode) element;
// We need to get the ExpressionListNode parent of current ExpressionListNode.
// Current ExpressionListNode - "WSO2"
// Parent ExpressionListNode - setName("WSO2")
PsiElement parent = PsiTreeUtil.getParentOfType(expressionListNode, FunctionInvocationNode.class);
if (parent == null) {
// So if the parent is null, we consider the ActionInvocationNode as the parent node.
parent = PsiTreeUtil.getParentOfType(expressionListNode, ActionInvocationNode.class);
}
if (parent == null) {
parent = PsiTreeUtil.getParentOfType(expressionListNode, InvocationNode.class);
}
if (parent == null) {
// So if the parent is null, we consider the ActionInvocationNode as the parent node.
parent = PsiTreeUtil.getParentOfType(expressionListNode, ConnectorInitNode.class);
}
if (parent == null) {
// So if the parent is null, we consider the FunctionInvocationNode as the parent node.
parent = PsiTreeUtil.getParentOfType(expressionListNode, ExpressionNode.class);
}
if (parent == null) {
// So if the parent is null, we consider the ExpressionListNode as the parent node.
parent = PsiTreeUtil.getParentOfType(expressionListNode, ExpressionListNode.class);
}
if (parent == null) {
parent = expressionListNode;
}
list = getItemsToShow(expressionListNode, parent);
} else if (element instanceof FunctionInvocationNode) {
FunctionInvocationNode functionInvocationNode = (FunctionInvocationNode) element;
list = getItemsToShow(functionInvocationNode, functionInvocationNode);
} else if (element instanceof ActionInvocationNode) {
ActionInvocationNode actionInvocationNode = (ActionInvocationNode) element;
list = getItemsToShow(actionInvocationNode, actionInvocationNode);
} else if (element instanceof ConnectorInitNode) {
ConnectorInitNode connectorInitNode = (ConnectorInitNode) element;
list = getItemsToShow(connectorInitNode, connectorInitNode);
} else if (element instanceof ExpressionNode) {
ExpressionNode expressionNode = (ExpressionNode) element;
list = getItemsToShow(expressionNode, expressionNode);
} else if (element instanceof NameReferenceNode) {
NameReferenceNode nameReferenceNode = (NameReferenceNode) element;
list = getItemsToShow(nameReferenceNode, nameReferenceNode);
} else if (element instanceof FunctionReferenceNode) {
FunctionReferenceNode functionReferenceNode = (FunctionReferenceNode) element;
list = getItemsToShow(functionReferenceNode, functionReferenceNode);
} else if (element instanceof ConnectorReferenceNode) {
ConnectorReferenceNode connectorReferenceNode = (ConnectorReferenceNode) element;
list = getItemsToShow(connectorReferenceNode, connectorReferenceNode);
} else if (element instanceof IdentifierPSINode) {
IdentifierPSINode identifier = (IdentifierPSINode) element;
list = getItemsToShow(identifier, identifier);
} else if (element instanceof InvocationNode) {
InvocationNode invocationNode = (InvocationNode) element;
list = getItemsToShow(invocationNode, invocationNode);
}
return list;
}
Aggregations