org.openrewrite.staticanalysis.ReplaceClassIsInstanceWithInstanceof Maven / Gradle / Ivy
/*
* Copyright 2024 the original author or authors.
*
* 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
*
* https://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.openrewrite.staticanalysis;
import org.jspecify.annotations.Nullable;
import org.openrewrite.ExecutionContext;
import org.openrewrite.Preconditions;
import org.openrewrite.Recipe;
import org.openrewrite.TreeVisitor;
import org.openrewrite.java.JavaTemplate;
import org.openrewrite.java.JavaVisitor;
import org.openrewrite.java.MethodMatcher;
import org.openrewrite.java.search.UsesMethod;
import org.openrewrite.java.tree.Expression;
import org.openrewrite.java.tree.J;
import org.openrewrite.java.tree.J.FieldAccess;
import org.openrewrite.java.tree.J.Identifier;
import org.openrewrite.java.tree.J.MethodInvocation;
import org.openrewrite.java.tree.JavaCoordinates;
import org.openrewrite.java.tree.JavaType;
import java.util.Collections;
import java.util.Set;
public class ReplaceClassIsInstanceWithInstanceof extends Recipe {
private static final MethodMatcher ISINSTANCE_MATCHER = new MethodMatcher("java.lang.Class isInstance(..)");
@Override
public String getDisplayName() {
return "Replace `A.class.isInstance(a)` with `a instanceof A`";
}
@Override
public String getDescription() {
return "There should be no `A.class.isInstance(a)`, it should be replaced by `a instanceof A`.";
}
@Override
public Set getTags() {
return Collections.singleton("RSPEC-S6202");
}
@Override
public TreeVisitor, ExecutionContext> getVisitor() {
// use JavaVisitor instead of JavaIsoVisitor because we changed the type of LST
return Preconditions.check(new UsesMethod<>(ISINSTANCE_MATCHER), new JavaVisitor() {
@Override
public J visitMethodInvocation(MethodInvocation method, ExecutionContext ctx) {
// make sure we find the right method and the left part is something like "SomeClass.class"
if (ISINSTANCE_MATCHER.matches(method) && isObjectClass(method.getSelect())) {
// for code like "A.class.isInstance(a)", select is "String.class", name is "isInstance", argument is "a"
Expression objectExpression = method.getArguments().get(0);
FieldAccess fieldAccessPart = (FieldAccess) method.getSelect();
// upcast to type J, so J.MethodInvocation can be replaced by J.InstanceOf
JavaCoordinates coordinates = method.getCoordinates().replace();
J.InstanceOf instanceOf = JavaTemplate.builder("#{any()} instanceof Object")
.build()
.apply(getCursor(), coordinates, objectExpression);
instanceOf = instanceOf.withClazz(fieldAccessPart.getTarget().withPrefix(instanceOf.getClazz().getPrefix()));
return maybeAutoFormat(method, instanceOf, ctx);
}
return super.visitMethodInvocation(method, ctx);
}
private boolean isObjectClass(@Nullable Expression expression) {
if (expression instanceof J.FieldAccess) {
J.FieldAccess fieldAccess = (J.FieldAccess) expression;
if (fieldAccess.getName().getSimpleName().equals("class") && fieldAccess.getTarget() instanceof Identifier) {
Identifier identifier = (Identifier) fieldAccess.getTarget();
return identifier.getType() instanceof JavaType.Class;
}
}
return false;
}
});
}
}