remove old API usage inspection
This commit is contained in:
@@ -1,5 +0,0 @@
|
|||||||
<html>
|
|
||||||
<body>
|
|
||||||
This inspection located pre-1.0 usages of the Kotlin standard library APIs from Java code and replaces them with up-to-date APIs.
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1354,13 +1354,6 @@
|
|||||||
enabledByDefault="true"
|
enabledByDefault="true"
|
||||||
level="WARNING"/>
|
level="WARNING"/>
|
||||||
|
|
||||||
<localInspection implementationClass="org.jetbrains.kotlin.idea.inspections.OldStdlibApiInspection"
|
|
||||||
displayName="Java usages of old Kotlin standard library APIs"
|
|
||||||
groupName="Kotlin"
|
|
||||||
enabledByDefault="true"
|
|
||||||
cleanupTool="true"
|
|
||||||
level="WARNING"/>
|
|
||||||
|
|
||||||
<localInspection implementationClass="org.jetbrains.kotlin.idea.inspections.RedundantVisibilityModifierInspection"
|
<localInspection implementationClass="org.jetbrains.kotlin.idea.inspections.RedundantVisibilityModifierInspection"
|
||||||
displayName="Redundant visibility modifier"
|
displayName="Redundant visibility modifier"
|
||||||
groupName="Kotlin"
|
groupName="Kotlin"
|
||||||
|
|||||||
@@ -1,95 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2010-2015 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.kotlin.idea.inspections
|
|
||||||
|
|
||||||
import com.intellij.codeInspection.*
|
|
||||||
import com.intellij.openapi.module.ModuleUtil
|
|
||||||
import com.intellij.openapi.project.Project
|
|
||||||
import com.intellij.psi.*
|
|
||||||
import com.intellij.psi.codeStyle.JavaCodeStyleManager
|
|
||||||
import com.intellij.psi.search.GlobalSearchScope
|
|
||||||
import org.jetbrains.kotlin.idea.KotlinLanguage
|
|
||||||
import org.jetbrains.kotlin.idea.search.allScope
|
|
||||||
import org.jetbrains.kotlin.psi.psiUtil.getParentOfType
|
|
||||||
|
|
||||||
class OldStdlibApiInspection : AbstractKotlinInspection(), CleanupLocalInspectionTool {
|
|
||||||
override fun buildVisitor(holder: ProblemsHolder, isOnTheFly: Boolean, session: LocalInspectionToolSession): PsiElementVisitor {
|
|
||||||
return object : PsiElementVisitor() {
|
|
||||||
override fun visitElement(element: PsiElement) {
|
|
||||||
if (element.language == KotlinLanguage.INSTANCE) return
|
|
||||||
val importStatement = element.getParentOfType<PsiImportStatement>(false)
|
|
||||||
if (importStatement != null) return
|
|
||||||
|
|
||||||
for (reference in element.references) {
|
|
||||||
checkReference(reference)?.let {
|
|
||||||
holder.registerProblem(element, "Usage of the Kotlin standard library through a deprecated qualified name",
|
|
||||||
ProblemHighlightType.LIKE_DEPRECATED, it)
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun checkReference(reference: PsiReference): LocalQuickFix? {
|
|
||||||
val resolveResult = reference.resolve()
|
|
||||||
if (resolveResult is PsiClass) {
|
|
||||||
val fqName = resolveResult.qualifiedName
|
|
||||||
val newFqName = StdlibMigrationMap.classMap[fqName]
|
|
||||||
if (newFqName != null) {
|
|
||||||
return OldStdlibApiFix { project, scope ->
|
|
||||||
JavaPsiFacade.getInstance(project).findClass(newFqName, scope)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (resolveResult is PsiMethod) {
|
|
||||||
val containingClass = resolveResult.containingClass ?: return null
|
|
||||||
val fqName = MethodFQName(containingClass.qualifiedName ?: return null, resolveResult.name)
|
|
||||||
val newFqName = StdlibMigrationMap.methodMap[fqName]
|
|
||||||
if (newFqName != null) {
|
|
||||||
return OldStdlibApiFix { project, scope ->
|
|
||||||
JavaPsiFacade.getInstance(project).findClass(newFqName.className, scope)
|
|
||||||
?.findMethodsByName(newFqName.methodName, false)
|
|
||||||
?.singleOrNull()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class OldStdlibApiFix(val newElementCallback: (Project, GlobalSearchScope) -> PsiElement?) : LocalQuickFix {
|
|
||||||
override fun getName(): String = "Replace with new qualified name"
|
|
||||||
override fun getFamilyName(): String = name
|
|
||||||
|
|
||||||
override fun applyFix(project: Project, descriptor: ProblemDescriptor) {
|
|
||||||
val element = descriptor.psiElement
|
|
||||||
val reference = element.reference ?: return
|
|
||||||
val module = ModuleUtil.findModuleForPsiElement(element)
|
|
||||||
val scope = module?.moduleWithLibrariesScope ?: project.allScope()
|
|
||||||
|
|
||||||
val newElement = newElementCallback(project, scope) ?: return
|
|
||||||
val newReference = reference.bindToElement(newElement)
|
|
||||||
|
|
||||||
val javaFile = newReference.containingFile as? PsiJavaFile
|
|
||||||
if (javaFile != null) {
|
|
||||||
JavaCodeStyleManager.getInstance(project).removeRedundantImports(javaFile)
|
|
||||||
}
|
|
||||||
|
|
||||||
JavaCodeStyleManager.getInstance(project).shortenClassReferences(newReference)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2010-2015 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.kotlin.idea.inspections
|
|
||||||
|
|
||||||
data class MethodFQName(val className: String, val methodName: String)
|
|
||||||
|
|
||||||
object StdlibMigrationMap {
|
|
||||||
val methodMap = hashMapOf(
|
|
||||||
MethodFQName("kotlin.jvm.ClassMapping", "getKotlin") to MethodFQName("kotlin.jvm.JvmClassMappingKt", "getKotlinClass"),
|
|
||||||
MethodFQName("kotlin.jvm.ClassMapping", "getJava") to MethodFQName("kotlin.jvm.JvmClassMappingKt", "getJavaClass")
|
|
||||||
)
|
|
||||||
|
|
||||||
val classMap = hashMapOf(
|
|
||||||
"kotlin.ArraysKt" to "kotlin.collections.ArraysKt",
|
|
||||||
"kotlin.CharsKt" to "kotlin.text.CharsKt",
|
|
||||||
"kotlin.CollectionsKt" to "kotlin.collections.CollectionsKt",
|
|
||||||
"kotlin.MapsKt" to "kotlin.collections.MapsKt",
|
|
||||||
"kotlin.RangesKt" to "kotlin.ranges.RangesKt",
|
|
||||||
"kotlin.SequencesKt" to "kotlin.sequences.SequencesKt",
|
|
||||||
"kotlin.SetsKt" to "kotlin.collections.SetsKt",
|
|
||||||
"kotlin.StringsKt" to "kotlin.text.StringsKt",
|
|
||||||
"kotlin.support.AbstractIterator" to "kotlin.collections.AbstractIterator"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
org.jetbrains.kotlin.idea.inspections.OldStdlibApiInspection
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
// "Replace with new qualified name" "true"
|
|
||||||
// WITH_RUNTIME
|
|
||||||
|
|
||||||
import kotlin.collections.ArraysKt;
|
|
||||||
|
|
||||||
class C {
|
|
||||||
public void foo(byte[] bytes) {
|
|
||||||
ArraysKt.component1(bytes);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
// "Replace with new qualified name" "true"
|
|
||||||
// WITH_RUNTIME
|
|
||||||
|
|
||||||
import kotlin.ArraysKt;
|
|
||||||
|
|
||||||
class C {
|
|
||||||
public void foo(byte[] bytes) {
|
|
||||||
<caret>ArraysKt.component1(bytes);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
// "Replace with new qualified name" "true"
|
|
||||||
// WITH_RUNTIME
|
|
||||||
|
|
||||||
import static kotlin.collections.ArraysKt<caret>.component1;
|
|
||||||
|
|
||||||
class C {
|
|
||||||
public void foo(byte[] bytes) {
|
|
||||||
component1(bytes);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
// "Replace with new qualified name" "true"
|
|
||||||
// WITH_RUNTIME
|
|
||||||
|
|
||||||
import static kotlin.ArraysKt<caret>.component1;
|
|
||||||
|
|
||||||
class C {
|
|
||||||
public void foo(byte[] bytes) {
|
|
||||||
component1(bytes);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
// "Replace with new qualified name" "true"
|
|
||||||
// WITH_RUNTIME
|
|
||||||
|
|
||||||
import kotlin.jvm.JvmClassMappingKt;
|
|
||||||
|
|
||||||
class C {
|
|
||||||
public void foo(Class cls) {
|
|
||||||
<caret>JvmClassMappingKt.getKotlinClass(cls);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
// "Replace with new qualified name" "true"
|
|
||||||
// WITH_RUNTIME
|
|
||||||
|
|
||||||
import kotlin.jvm.ClassMapping;
|
|
||||||
|
|
||||||
class C {
|
|
||||||
public void foo(Class cls) {
|
|
||||||
<caret>ClassMapping.getKotlin(cls);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1303,33 +1303,6 @@ public class QuickFixMultiFileTestGenerated extends AbstractQuickFixMultiFileTes
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("idea/testData/quickfix/migration/stdlib")
|
|
||||||
@TestDataPath("$PROJECT_ROOT")
|
|
||||||
@RunWith(JUnit3RunnerWithInners.class)
|
|
||||||
public static class Stdlib extends AbstractQuickFixMultiFileTest {
|
|
||||||
public void testAllFilesPresentInStdlib() throws Exception {
|
|
||||||
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/quickfix/migration/stdlib"), Pattern.compile("^(\\w+)\\.((before\\.Main\\.\\w+)|(test))$"), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("basic.before.Main.java")
|
|
||||||
public void testBasic() throws Exception {
|
|
||||||
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/quickfix/migration/stdlib/basic.before.Main.java");
|
|
||||||
doTestWithExtraFile(fileName);
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("importStatic.before.Main.java")
|
|
||||||
public void testImportStatic() throws Exception {
|
|
||||||
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/quickfix/migration/stdlib/importStatic.before.Main.java");
|
|
||||||
doTestWithExtraFile(fileName);
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("method.before.Main.java")
|
|
||||||
public void testMethod() throws Exception {
|
|
||||||
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/quickfix/migration/stdlib/method.before.Main.java");
|
|
||||||
doTestWithExtraFile(fileName);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("idea/testData/quickfix/modifiers")
|
@TestMetadata("idea/testData/quickfix/modifiers")
|
||||||
|
|||||||
Reference in New Issue
Block a user