386 lines
16 KiB
Java
386 lines
16 KiB
Java
/*
|
|
* Copyright 2010-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 org.jetbrains.jet.findUsages;
|
|
|
|
import com.google.common.base.Function;
|
|
import com.google.common.base.Joiner;
|
|
import com.google.common.base.Predicates;
|
|
import com.google.common.collect.Collections2;
|
|
import com.google.common.collect.Ordering;
|
|
import com.intellij.find.FindManager;
|
|
import com.intellij.find.findUsages.*;
|
|
import com.intellij.find.impl.FindManagerImpl;
|
|
import com.intellij.openapi.extensions.Extensions;
|
|
import com.intellij.openapi.project.Project;
|
|
import com.intellij.openapi.util.io.FileUtil;
|
|
import com.intellij.openapi.util.text.StringUtil;
|
|
import com.intellij.psi.*;
|
|
import com.intellij.psi.util.PsiTreeUtil;
|
|
import com.intellij.testFramework.LightProjectDescriptor;
|
|
import com.intellij.testFramework.fixtures.LightCodeInsightFixtureTestCase;
|
|
import com.intellij.usageView.UsageInfo;
|
|
import com.intellij.usages.UsageInfo2UsageAdapter;
|
|
import com.intellij.usages.impl.rules.UsageType;
|
|
import com.intellij.usages.impl.rules.UsageTypeProvider;
|
|
import com.intellij.usages.rules.UsageFilteringRule;
|
|
import com.intellij.util.ArrayUtil;
|
|
import com.intellij.util.CommonProcessors;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
import org.jetbrains.jet.InTextDirectivesUtils;
|
|
import org.jetbrains.jet.lang.psi.*;
|
|
import org.jetbrains.jet.plugin.JetLightProjectDescriptor;
|
|
import org.jetbrains.jet.plugin.PluginTestCaseBase;
|
|
import org.jetbrains.jet.plugin.findUsages.KotlinClassFindUsagesOptions;
|
|
import org.jetbrains.jet.plugin.findUsages.KotlinFunctionFindUsagesOptions;
|
|
import org.jetbrains.jet.plugin.findUsages.KotlinPropertyFindUsagesOptions;
|
|
|
|
import java.io.File;
|
|
import java.io.FilenameFilter;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
|
|
public abstract class AbstractJetFindUsagesTest extends LightCodeInsightFixtureTestCase {
|
|
protected static enum OptionsParser {
|
|
CLASS {
|
|
@NotNull
|
|
@Override
|
|
public FindUsagesOptions parse(@NotNull String text, @NotNull Project project) {
|
|
KotlinClassFindUsagesOptions options = new KotlinClassFindUsagesOptions(project);
|
|
options.isUsages = false;
|
|
options.setSearchConstructorUsages(false);
|
|
for (String s : InTextDirectivesUtils.findListWithPrefixes(text, "// OPTIONS: ")) {
|
|
if (parseCommonOptions(options, s)) continue;
|
|
|
|
if (s.equals("constructorUsages")) {
|
|
options.setSearchConstructorUsages(true);
|
|
}
|
|
else if (s.equals("derivedInterfaces")) {
|
|
options.isDerivedInterfaces = true;
|
|
}
|
|
else if (s.equals("derivedClasses")) {
|
|
options.isDerivedClasses = true;
|
|
}
|
|
else if (s.equals("functionUsages")) {
|
|
options.isMethodsUsages = true;
|
|
}
|
|
else if (s.equals("propertyUsages")) {
|
|
options.isFieldsUsages = true;
|
|
}
|
|
else fail("Invalid option: " + s);
|
|
}
|
|
|
|
return options;
|
|
}
|
|
},
|
|
FUNCTION {
|
|
@NotNull
|
|
@Override
|
|
public FindUsagesOptions parse(@NotNull String text, @NotNull Project project) {
|
|
KotlinFunctionFindUsagesOptions options = new KotlinFunctionFindUsagesOptions(project);
|
|
options.isUsages = false;
|
|
for (String s : InTextDirectivesUtils.findListWithPrefixes(text, "// OPTIONS: ")) {
|
|
if (parseCommonOptions(options, s)) continue;
|
|
|
|
if (s.equals("overrides")) {
|
|
options.isOverridingMethods = true;
|
|
options.isImplementingMethods = true;
|
|
}
|
|
else if (s.equals("overloadUsages")) {
|
|
options.isIncludeOverloadUsages = true;
|
|
options.isUsages = true;
|
|
}
|
|
else fail("Invalid option: " + s);
|
|
}
|
|
|
|
return options;
|
|
}
|
|
},
|
|
PROPERTY {
|
|
@NotNull
|
|
@Override
|
|
public FindUsagesOptions parse(@NotNull String text, @NotNull Project project) {
|
|
KotlinPropertyFindUsagesOptions options = new KotlinPropertyFindUsagesOptions(project);
|
|
options.isUsages = false;
|
|
for (String s : InTextDirectivesUtils.findListWithPrefixes(text, "// OPTIONS: ")) {
|
|
if (parseCommonOptions(options, s)) continue;
|
|
|
|
if (s.equals("overrides")) {
|
|
options.setSearchOverrides(true);
|
|
}
|
|
else if (s.equals("skipRead")) {
|
|
options.isReadAccess = false;
|
|
}
|
|
else if (s.equals("skipWrite")) {
|
|
options.isWriteAccess = false;
|
|
}
|
|
else fail("Invalid option: " + s);
|
|
}
|
|
|
|
return options;
|
|
}
|
|
},
|
|
JAVA_CLASS {
|
|
@NotNull
|
|
@Override
|
|
public FindUsagesOptions parse(@NotNull String text, @NotNull Project project) {
|
|
KotlinClassFindUsagesOptions options = new KotlinClassFindUsagesOptions(project);
|
|
options.isUsages = false;
|
|
options.setSearchConstructorUsages(false);
|
|
for (String s : InTextDirectivesUtils.findListWithPrefixes(text, "// OPTIONS: ")) {
|
|
if (parseCommonOptions(options, s)) continue;
|
|
|
|
if (s.equals("derivedInterfaces")) {
|
|
options.isDerivedInterfaces = true;
|
|
}
|
|
else if (s.equals("derivedClasses")) {
|
|
options.isDerivedClasses = true;
|
|
}
|
|
else if (s.equals("implementingClasses")) {
|
|
options.isImplementingClasses = true;
|
|
}
|
|
else if (s.equals("methodUsages")) {
|
|
options.isMethodsUsages = true;
|
|
}
|
|
else if (s.equals("fieldUsages")) {
|
|
options.isFieldsUsages = true;
|
|
}
|
|
else fail("Invalid option: " + s);
|
|
}
|
|
|
|
return options;
|
|
}
|
|
},
|
|
JAVA_METHOD {
|
|
@NotNull
|
|
@Override
|
|
public FindUsagesOptions parse(@NotNull String text, @NotNull Project project) {
|
|
JavaMethodFindUsagesOptions options = new JavaMethodFindUsagesOptions(project);
|
|
options.isUsages = false;
|
|
for (String s : InTextDirectivesUtils.findListWithPrefixes(text, "// OPTIONS: ")) {
|
|
if (parseCommonOptions(options, s)) continue;
|
|
|
|
if (s.equals("overrides")) {
|
|
options.isOverridingMethods = true;
|
|
options.isImplementingMethods = true;
|
|
}
|
|
else fail("Invalid option: " + s);
|
|
}
|
|
|
|
return options;
|
|
}
|
|
},
|
|
JAVA_FIELD {
|
|
@NotNull
|
|
@Override
|
|
public FindUsagesOptions parse(@NotNull String text, @NotNull Project project) {
|
|
return new JavaVariableFindUsagesOptions(project);
|
|
}
|
|
},
|
|
DEFAULT {
|
|
@NotNull
|
|
@Override
|
|
public FindUsagesOptions parse(@NotNull String text, @NotNull Project project) {
|
|
return new FindUsagesOptions(project);
|
|
}
|
|
};
|
|
|
|
protected static boolean parseCommonOptions(JavaFindUsagesOptions options, String s) {
|
|
if (s.equals("usages")) {
|
|
options.isUsages = true;
|
|
return true;
|
|
}
|
|
|
|
if (s.equals("skipImports")) {
|
|
options.isSkipImportStatements = true;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
@NotNull
|
|
public abstract FindUsagesOptions parse(@NotNull String text, @NotNull Project project);
|
|
|
|
@Nullable
|
|
public static OptionsParser getParserByPsiElementClass(@NotNull Class<? extends PsiElement> klass) {
|
|
if (klass == JetNamedFunction.class) {
|
|
return FUNCTION;
|
|
}
|
|
if (klass == JetProperty.class || klass == JetParameter.class) {
|
|
return PROPERTY;
|
|
}
|
|
if (klass == JetClass.class) {
|
|
return CLASS;
|
|
}
|
|
if (klass == PsiMethod.class) {
|
|
return JAVA_METHOD;
|
|
}
|
|
if (klass == PsiClass.class) {
|
|
return JAVA_CLASS;
|
|
}
|
|
if (klass == PsiField.class) {
|
|
return JAVA_FIELD;
|
|
}
|
|
if (klass == JetTypeParameter.class) {
|
|
return DEFAULT;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
|
|
@NotNull
|
|
@Override
|
|
protected LightProjectDescriptor getProjectDescriptor() {
|
|
return JetLightProjectDescriptor.INSTANCE;
|
|
}
|
|
|
|
@Override
|
|
public void setUp() throws Exception {
|
|
super.setUp();
|
|
myFixture.setTestDataPath(PluginTestCaseBase.getTestDataPathBase() + "/findUsages");
|
|
}
|
|
|
|
protected <T extends PsiElement> void doTest(@NotNull String path) throws Exception {
|
|
File mainFile = new File(path);
|
|
final String mainFileName = mainFile.getName();
|
|
String mainFileText = FileUtil.loadFile(mainFile);
|
|
final String prefix = mainFileName.substring(0, mainFileName.indexOf('.') + 1);
|
|
|
|
List<String> caretElementClassNames = InTextDirectivesUtils.findLinesWithPrefixesRemoved(mainFileText, "// PSI_ELEMENT: ");
|
|
assert caretElementClassNames.size() == 1;
|
|
//noinspection unchecked
|
|
Class<T> caretElementClass = (Class<T>)Class.forName(caretElementClassNames.get(0));
|
|
|
|
List<String> filteringRuleClassNames = InTextDirectivesUtils.findLinesWithPrefixesRemoved(mainFileText, "// FILTERING_RULES: ");
|
|
Collection<UsageFilteringRule> filters = new ArrayList<UsageFilteringRule>();
|
|
for (String filteringRuleClassName : filteringRuleClassNames) {
|
|
//noinspection unchecked
|
|
Class<UsageFilteringRule> klass = (Class<UsageFilteringRule>) Class.forName(filteringRuleClassName);
|
|
filters.add(klass.newInstance());
|
|
}
|
|
|
|
OptionsParser parser = OptionsParser.getParserByPsiElementClass(caretElementClass);
|
|
|
|
String rootPath = path.substring(0, path.lastIndexOf("/") + 1);
|
|
|
|
File rootDir = new File(rootPath);
|
|
File[] extraFiles = rootDir.listFiles(
|
|
new FilenameFilter() {
|
|
@Override
|
|
public boolean accept(@NotNull File dir, @NotNull String name) {
|
|
if (!name.startsWith(prefix) || name.equals(mainFileName)) return false;
|
|
|
|
String ext = name.substring(name.lastIndexOf('.') + 1);
|
|
return ext.equals("kt") || ext.equals("java");
|
|
}
|
|
}
|
|
);
|
|
assert extraFiles != null;
|
|
for (File file : extraFiles) {
|
|
myFixture.configureByFile(rootPath + file.getName());
|
|
}
|
|
myFixture.configureByFile(path);
|
|
|
|
T caretElement = PsiTreeUtil.getParentOfType(myFixture.getElementAtCaret(), caretElementClass, false);
|
|
assertNotNull(String.format("Element with type '%s' wasn't found at caret position", caretElementClass), caretElement);
|
|
|
|
FindUsagesOptions options = parser != null ? parser.parse(mainFileText, getProject()) : null;
|
|
Collection<UsageInfo> usageInfos = findUsages(caretElement, options);
|
|
|
|
Collection<UsageInfo2UsageAdapter> filteredUsages = getUsageAdapters(filters, usageInfos);
|
|
|
|
Function<UsageInfo2UsageAdapter, String> convertToString = new Function<UsageInfo2UsageAdapter, String>() {
|
|
@Override
|
|
public String apply(@Nullable UsageInfo2UsageAdapter usageAdapter) {
|
|
assert usageAdapter != null;
|
|
return getUsageType(usageAdapter.getElement())
|
|
+ " " + Joiner.on("").join(Arrays.asList(usageAdapter.getPresentation().getText()));
|
|
}
|
|
};
|
|
|
|
Collection<String> finalUsages = Ordering.natural().sortedCopy(Collections2.transform(filteredUsages, convertToString));
|
|
String expectedText = FileUtil.loadFile(new File(rootPath, prefix + "results.txt"), true);
|
|
assertOrderedEquals(finalUsages, Ordering.natural().sortedCopy(StringUtil.split(expectedText, "\n")));
|
|
}
|
|
|
|
private Collection<UsageInfo> findUsages(@NotNull PsiElement targetElement, @Nullable FindUsagesOptions options) {
|
|
Project project = getProject();
|
|
FindUsagesHandler handler =
|
|
((FindManagerImpl) FindManager.getInstance(project)).getFindUsagesManager().getFindUsagesHandler(targetElement, false);
|
|
assert handler != null : "Cannot find handler for: " + targetElement;
|
|
|
|
if (options == null) {
|
|
options = handler.getFindUsagesOptions(null);
|
|
}
|
|
|
|
CommonProcessors.CollectProcessor<UsageInfo> processor = new CommonProcessors.CollectProcessor<UsageInfo>();
|
|
PsiElement[] psiElements = ArrayUtil.mergeArrays(handler.getPrimaryElements(), handler.getSecondaryElements());
|
|
|
|
for (PsiElement psiElement : psiElements) {
|
|
handler.processElementUsages(psiElement, processor, options);
|
|
}
|
|
|
|
return processor.getResults();
|
|
}
|
|
|
|
private static Collection<UsageInfo2UsageAdapter> getUsageAdapters(
|
|
final Collection<? extends UsageFilteringRule> filters,
|
|
Collection<UsageInfo> usageInfos
|
|
) {
|
|
return Collections2.filter(
|
|
Collections2.transform(usageInfos, new Function<UsageInfo, UsageInfo2UsageAdapter>() {
|
|
@Override
|
|
public UsageInfo2UsageAdapter apply(@Nullable UsageInfo usageInfo) {
|
|
assert (usageInfo != null);
|
|
|
|
UsageInfo2UsageAdapter usageAdapter = new UsageInfo2UsageAdapter(usageInfo);
|
|
for (UsageFilteringRule filter : filters) {
|
|
if (!filter.isVisible(usageAdapter)) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
return usageAdapter;
|
|
}
|
|
}),
|
|
Predicates.notNull());
|
|
}
|
|
|
|
@Nullable
|
|
private static UsageType getUsageType(PsiElement element) {
|
|
if (element == null) return null;
|
|
|
|
if (PsiTreeUtil.getParentOfType(element, PsiComment.class, false) != null) {
|
|
return UsageType.COMMENT_USAGE;
|
|
}
|
|
|
|
UsageTypeProvider[] providers = Extensions.getExtensions(UsageTypeProvider.EP_NAME);
|
|
for (UsageTypeProvider provider : providers) {
|
|
UsageType usageType = provider.getUsageType(element);
|
|
if (usageType != null) {
|
|
return usageType;
|
|
}
|
|
}
|
|
|
|
return UsageType.UNCLASSIFIED;
|
|
}
|
|
}
|