/* * Copyright 2012-2014 Sergey Ignatov * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.intellij.erlang.psi.impl; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiFile; import com.intellij.psi.util.PsiTreeUtil; import com.intellij.util.ArrayUtil; import com.intellij.util.containers.ContainerUtil; import org.intellij.erlang.psi.*; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; public class ErlangTypeReferenceImpl extends ErlangQAtomBasedReferenceImpl { @Nullable private final ErlangModuleRef myModuleRef; public ErlangTypeReferenceImpl(@NotNull ErlangQAtom element, @Nullable ErlangModuleRef moduleRef) { super(element, ErlangPsiImplUtil.getTextRangeForReference(element), ErlangPsiImplUtil.getNameIdentifier(element).getText()); myModuleRef = moduleRef; } @Override public PsiElement resolveInner() { PsiFile containingFile = getPsiFile(); if (containingFile instanceof ErlangFile) { ErlangTypeDefinition type = ((ErlangFile) containingFile).getType(myReferenceName); if (type != null) return type; return ContainerUtil.getFirstItem(ErlangPsiImplUtil.getErlangTypeFromIncludes((ErlangFile) containingFile, false, myReferenceName)); } return null; } @NotNull private PsiFile getPsiFile() { PsiElement resolve = myModuleRef != null ? myModuleRef.getReference().resolve() : null; PsiFile moduleRefContainingFile = resolve != null ? resolve.getContainingFile() : null; return moduleRefContainingFile != null ? moduleRefContainingFile : myElement.getContainingFile(); } @NotNull @Override public Object[] getVariants() { ErlangExportTypeAttribute exportTypeAttribute = PsiTreeUtil.getParentOfType(myElement, ErlangExportTypeAttribute.class); return ArrayUtil.toObjectArray(ErlangPsiImplUtil.getTypeLookupElements(getPsiFile(), myModuleRef == null && exportTypeAttribute == null, exportTypeAttribute != null)); } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof ErlangTypeReferenceImpl)) return false; if (!super.equals(o)) return false; return !(myModuleRef != null && !myModuleRef.equals(((ErlangTypeReferenceImpl) o).myModuleRef)); } @Override public int hashCode() { int result = super.hashCode(); return myModuleRef != null ? 31 * result + myModuleRef.hashCode() : result; } }