All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openrewrite.java.ChangeMethodTargetToVariable Maven / Gradle / Ivy

There is a newer version: 8.40.2
Show newest version
/*
 * Copyright 2020 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.java; import lombok.EqualsAndHashCode; import lombok.Value; import org.jspecify.annotations.Nullable; import org.openrewrite.*; import org.openrewrite.java.search.UsesMethod; import org.openrewrite.java.tree.Flag; import org.openrewrite.java.tree.J; import org.openrewrite.java.tree.JavaType; import org.openrewrite.java.tree.Space; import org.openrewrite.marker.Markers; import java.util.LinkedHashSet; import java.util.Set; import static java.util.Collections.emptyList; import static org.openrewrite.Tree.randomId; @Value @EqualsAndHashCode(callSuper = false) public class ChangeMethodTargetToVariable extends Recipe { /** * A method pattern that is used to find matching method invocations. * See {@link MethodMatcher} for details on the expression's syntax. */ @Option(displayName = "Method pattern", description = "A method pattern that is used to find matching method invocations.", example = "org.mycorp.A method(..)") String methodPattern; @Option(displayName = "Variable name", description = "Name of variable to use as target for the modified method invocation.", example = "foo") String variableName; @Option(displayName = "Variable type", description = "Type attribution to use for the return type of the modified method invocation.", example = "java.lang.String") String variableType; @Option(displayName = "Match on overrides", description = "When enabled, find methods that are overrides of the method pattern.", required = false) @Nullable Boolean matchOverrides; @Override public String getDisplayName() { return "Change method target to variable"; } @Override public String getDescription() { return "Change method invocations to method calls on a variable."; } @Override public TreeVisitor getVisitor() { return Preconditions.check( new UsesMethod<>(methodPattern, matchOverrides), new ChangeMethodTargetToVariableVisitor( new MethodMatcher(methodPattern, matchOverrides), JavaType.ShallowClass.build(variableType) ) ); } private class ChangeMethodTargetToVariableVisitor extends JavaIsoVisitor { private final MethodMatcher methodMatcher; private final JavaType.Class variableType; private ChangeMethodTargetToVariableVisitor(MethodMatcher methodMatcher, JavaType.Class variableType) { this.methodMatcher = methodMatcher; this.variableType = variableType; } @Override public J.MethodInvocation visitMethodInvocation(J.MethodInvocation method, ExecutionContext ctx) { J.MethodInvocation m = super.visitMethodInvocation(method, ctx); if (methodMatcher.matches(m)) { JavaType.Method methodType = null; if (m.getMethodType() != null) { maybeRemoveImport(m.getMethodType().getDeclaringType()); Set flags = new LinkedHashSet<>(m.getMethodType().getFlags()); flags.remove(Flag.Static); methodType = m.getMethodType().withDeclaringType(this.variableType).withFlags(flags); } m = m.withSelect(new J.Identifier(randomId(), m.getSelect() == null ? Space.EMPTY : m.getSelect().getPrefix(), Markers.EMPTY, emptyList(), variableName, this.variableType, null) ).withMethodType(methodType) .withName(m.getName().withType(methodType)); } return m; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy