Search in sources :

Example 1 with QualifiableAlias

use of org.elixir_lang.psi.QualifiableAlias in project intellij-elixir by KronicDeth.

the class Protocol method execute.

/*
     * Private Instance Methods
     */
private boolean execute(@NotNull Call call, @NotNull @SuppressWarnings("unused") ResolveState state) {
    boolean keepProcessing = true;
    if (org.elixir_lang.structure_view.element.modular.Implementation.is(call)) {
        QualifiableAlias protocolNameElement = org.elixir_lang.structure_view.element.modular.Implementation.protocolNameElement(call);
        PsiElement element;
        boolean validResult;
        if (protocolNameElement != null) {
            element = protocolNameElement;
            validResult = this.validResult;
        } else {
            element = call;
            validResult = false;
        }
        resolveResultList = Collections.<ResolveResult>singletonList(new PsiElementResolveResult(element, validResult));
        keepProcessing = false;
    }
    return keepProcessing;
}
Also used : QualifiableAlias(org.elixir_lang.psi.QualifiableAlias) PsiElementResolveResult(com.intellij.psi.PsiElementResolveResult) PsiElement(com.intellij.psi.PsiElement)

Example 2 with QualifiableAlias

use of org.elixir_lang.psi.QualifiableAlias in project intellij-elixir by KronicDeth.

the class Module method execute.

/**
     * @param element candidate element.
     * @param state   current state of resolver.
     * @return false to stop processing.
     */
@Override
public boolean execute(@NotNull final PsiElement element, @NotNull final ResolveState state) {
    boolean keepProcessing = true;
    if (element instanceof QualifiableAlias) {
        QualifiableAlias qualifiableAlias = (QualifiableAlias) element;
        String qualifiableAliasFullyQualifiedName = qualifiableAlias.fullyQualifiedName();
        if (qualifiableAlias.isModuleName() && qualifiableAliasFullyQualifiedName != null && qualifiableAliasFullyQualifiedName.equals(usage.fullyQualifiedName())) {
            declaration = qualifiableAlias;
            keepProcessing = false;
        }
    }
    return keepProcessing;
}
Also used : QualifiableAlias(org.elixir_lang.psi.QualifiableAlias)

Example 3 with QualifiableAlias

use of org.elixir_lang.psi.QualifiableAlias in project intellij-elixir by KronicDeth.

the class Used method provideNodesFromChild.

public static Collection<TreeElement> provideNodesFromChild(@NotNull TreeElement child) {
    Collection<TreeElement> nodes = null;
    if (child instanceof Use) {
        Use use = (Use) child;
        PsiElement[] finalArguments = ElixirPsiImplUtil.finalArguments(use.call());
        assert finalArguments != null;
        if (finalArguments.length > 0) {
            PsiElement firstFinalArgument = finalArguments[0];
            if (firstFinalArgument instanceof ElixirAccessExpression) {
                PsiElement accessExpressionChild = stripAccessExpression(firstFinalArgument);
                if (accessExpressionChild instanceof QualifiableAlias) {
                    PsiReference reference = accessExpressionChild.getReference();
                    if (reference != null) {
                        PsiElement ancestor = reference.resolve();
                        while (ancestor != null && !(ancestor instanceof PsiFile)) {
                            if (ancestor instanceof Call) {
                                Call call = (Call) ancestor;
                                if (Module.is(call)) {
                                    Module module = new Module(call);
                                    Call[] childCalls = ElixirPsiImplUtil.macroChildCalls(call);
                                    if (childCalls != null) {
                                        Map<Pair<String, Integer>, CallDefinition> macroByNameArity = new HashMap<Pair<String, Integer>, CallDefinition>(childCalls.length);
                                        for (Call childCall : childCalls) {
                                            /* portion of {@link org.elixir_lang.structure_view.element.enclosingModular.Module#childCallTreeElements}
                                                       dealing with macros, restricted to __using__/1 */
                                            if (CallDefinitionClause.isMacro(childCall)) {
                                                Pair<String, IntRange> nameArityRange = CallDefinitionClause.nameArityRange(childCall);
                                                if (nameArityRange != null) {
                                                    String name = nameArityRange.first;
                                                    IntRange arityRange = nameArityRange.second;
                                                    if (name.equals(USING) && arityRange.containsInteger(1)) {
                                                        addClausesToCallDefinition(childCall, name, arityRange, macroByNameArity, module, Timed.Time.COMPILE, new Inserter<CallDefinition>() {

                                                            @Override
                                                            public void insert(CallDefinition element) {
                                                            }
                                                        });
                                                    }
                                                }
                                            }
                                        }
                                        if (macroByNameArity.size() > 0) {
                                            PsiElement[] usingArguments;
                                            CallDefinition macro;
                                            CallDefinitionClause matchingClause = null;
                                            if (finalArguments.length > 1) {
                                                usingArguments = Arrays.copyOfRange(finalArguments, 1, finalArguments.length);
                                                Pair<String, Integer> nameArity = pair(USING, usingArguments.length);
                                                macro = macroByNameArity.get(nameArity);
                                                if (macro != null) {
                                                    matchingClause = macro.matchingClause(usingArguments);
                                                }
                                            } else {
                                                /* `use <ALIAS>` will calls `__using__/1` even though there is
                                                           no additional argument, but it obviously can't select a clause. */
                                                Pair<String, Integer> nameArity = pair(USING, 1);
                                                macro = macroByNameArity.get(nameArity);
                                                List<CallDefinitionClause> macroClauseList = macro.clauseList();
                                                if (macroClauseList.size() == 1) {
                                                    matchingClause = macroClauseList.get(0);
                                                } else {
                                                // TODO match default argument clause/head to non-default argument clause that would be executed.
                                                }
                                            }
                                            if (matchingClause != null) {
                                                TreeElement[] callDefinitionClauseChildren = matchingClause.getChildren();
                                                int length = callDefinitionClauseChildren.length;
                                                if (length > 0) {
                                                    TreeElement lastCallDefinitionClauseChild = callDefinitionClauseChildren[length - 1];
                                                    if (lastCallDefinitionClauseChild instanceof Quote) {
                                                        Quote quote = (Quote) lastCallDefinitionClauseChild;
                                                        Quote injectedQuote = quote.used(use);
                                                        TreeElement[] injectedQuoteChildren = injectedQuote.getChildren();
                                                        nodes = new ArrayList<TreeElement>(injectedQuoteChildren.length);
                                                        for (TreeElement injectedQuoteChild : injectedQuoteChildren) {
                                                            if (!(injectedQuoteChild instanceof Overridable)) {
                                                                nodes.add(injectedQuoteChild);
                                                            }
                                                        }
                                                        break;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                } else {
                                    break;
                                }
                            }
                            ancestor = ancestor.getParent();
                        }
                    }
                }
            }
        }
    }
    if (nodes == null) {
        nodes = Collections.emptyList();
    }
    return nodes;
}
Also used : Module.addClausesToCallDefinition(org.elixir_lang.structure_view.element.modular.Module.addClausesToCallDefinition) PsiFile(com.intellij.psi.PsiFile) PsiElement(com.intellij.psi.PsiElement) Pair(com.intellij.openapi.util.Pair) Call(org.elixir_lang.psi.call.Call) QualifiableAlias(org.elixir_lang.psi.QualifiableAlias) ElixirAccessExpression(org.elixir_lang.psi.ElixirAccessExpression) IntRange(org.apache.commons.lang.math.IntRange) PsiReference(com.intellij.psi.PsiReference) TreeElement(com.intellij.ide.util.treeView.smartTree.TreeElement) Module(org.elixir_lang.structure_view.element.modular.Module)

Aggregations

QualifiableAlias (org.elixir_lang.psi.QualifiableAlias)3 PsiElement (com.intellij.psi.PsiElement)2 TreeElement (com.intellij.ide.util.treeView.smartTree.TreeElement)1 Pair (com.intellij.openapi.util.Pair)1 PsiElementResolveResult (com.intellij.psi.PsiElementResolveResult)1 PsiFile (com.intellij.psi.PsiFile)1 PsiReference (com.intellij.psi.PsiReference)1 IntRange (org.apache.commons.lang.math.IntRange)1 ElixirAccessExpression (org.elixir_lang.psi.ElixirAccessExpression)1 Call (org.elixir_lang.psi.call.Call)1 Module (org.elixir_lang.structure_view.element.modular.Module)1 Module.addClausesToCallDefinition (org.elixir_lang.structure_view.element.modular.Module.addClausesToCallDefinition)1