blob: 0d822feff94c02026cead3a76677558455469b41 [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* 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 com.intellij.codeInsight.hint.api.impls;
import com.intellij.codeInsight.lookup.LookupElement;
import com.intellij.lang.parameterInfo.*;
import com.intellij.openapi.project.DumbAware;
import com.intellij.psi.*;
import com.intellij.psi.util.PsiUtil;
import com.intellij.util.text.CharArrayUtil;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* @author Maxim.Mossienko
*/
public class AnnotationParameterInfoHandler implements ParameterInfoHandler<PsiAnnotationParameterList,PsiAnnotationMethod>, DumbAware {
@Nullable
@Override
public Object[] getParametersForLookup(LookupElement item, ParameterInfoContext context) {
return null;
}
@Override
public Object[] getParametersForDocumentation(final PsiAnnotationMethod p, final ParameterInfoContext context) {
return new Object[] {p};
}
@Override
public boolean couldShowInLookup() {
return false;
}
@Override
public PsiAnnotationParameterList findElementForParameterInfo(@NotNull final CreateParameterInfoContext context) {
final PsiAnnotation annotation = ParameterInfoUtils.findParentOfType(context.getFile(), context.getOffset(), PsiAnnotation.class);
if (annotation != null) {
final PsiJavaCodeReferenceElement nameReference = annotation.getNameReferenceElement();
if (nameReference != null) {
final PsiElement resolved = nameReference.resolve();
if (resolved instanceof PsiClass) {
final PsiClass aClass = (PsiClass)resolved;
if (aClass.isAnnotationType()) {
final PsiMethod[] methods = aClass.getMethods();
if (methods.length != 0) {
context.setItemsToShow(methods);
final PsiAnnotationMethod annotationMethod = findAnnotationMethod(context.getFile(), context.getOffset());
if (annotationMethod != null) context.setHighlightedElement(annotationMethod);
return annotation.getParameterList();
}
}
}
}
}
return null;
}
@Override
public void showParameterInfo(@NotNull final PsiAnnotationParameterList element, @NotNull final CreateParameterInfoContext context) {
context.showHint(element, element.getTextRange().getStartOffset() + 1, this);
}
@Override
public PsiAnnotationParameterList findElementForUpdatingParameterInfo(@NotNull final UpdateParameterInfoContext context) {
final PsiAnnotation annotation = ParameterInfoUtils.findParentOfType(context.getFile(), context.getOffset(), PsiAnnotation.class);
return annotation != null ? annotation.getParameterList() : null;
}
@Override
public void updateParameterInfo(@NotNull final PsiAnnotationParameterList parameterOwner, @NotNull final UpdateParameterInfoContext context) {
CharSequence chars = context.getEditor().getDocument().getCharsSequence();
int offset1 = CharArrayUtil.shiftForward(chars, context.getEditor().getCaretModel().getOffset(), " \t");
final char c = chars.charAt(offset1);
if (c == ',' || c == ')') {
offset1 = CharArrayUtil.shiftBackward(chars, offset1 - 1, " \t");
}
context.setHighlightedParameter(findAnnotationMethod(context.getFile(), offset1));
}
@Override
public String getParameterCloseChars() {
return ParameterInfoUtils.DEFAULT_PARAMETER_CLOSE_CHARS;
}
@Override
public boolean tracksParameterIndex() {
return true;
}
@Override
public void updateUI(final PsiAnnotationMethod p, @NotNull final ParameterInfoUIContext context) {
updateUIText(p, context);
}
public static String updateUIText(PsiAnnotationMethod p, ParameterInfoUIContext context) {
@NonNls StringBuilder buffer = new StringBuilder();
buffer.append(p.getReturnType().getPresentableText());
buffer.append(" ");
int highlightStartOffset = buffer.length();
buffer.append(p.getName());
int highlightEndOffset = buffer.length();
buffer.append("()");
if (p.getDefaultValue() != null) {
buffer.append(" default ");
buffer.append(p.getDefaultValue().getText());
}
return context.setupUIComponentPresentation(buffer.toString(), highlightStartOffset, highlightEndOffset, false, p.isDeprecated(),
false, context.getDefaultParameterColor());
}
private static PsiAnnotationMethod findAnnotationMethod(PsiFile file, int offset) {
PsiNameValuePair pair = ParameterInfoUtils.findParentOfType(file, offset, PsiNameValuePair.class);
if (pair == null) return null;
final PsiReference reference = pair.getReference();
final PsiElement resolved = reference != null ? reference.resolve():null;
return PsiUtil.isAnnotationMethod(resolved) ? (PsiAnnotationMethod)resolved : null;
}
}