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

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

/*
 * 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 io.micrometer.core.instrument.Tag; import io.micrometer.core.instrument.Tags; import org.openrewrite.Tree; import org.openrewrite.Validated; import org.openrewrite.internal.lang.Nullable; import org.openrewrite.java.tree.Expression; import org.openrewrite.java.tree.J; import org.openrewrite.java.tree.JavaType; import org.openrewrite.java.tree.NameTree; import org.openrewrite.java.tree.TreeBuilder; import org.openrewrite.java.tree.TypeUtils; import java.util.regex.Matcher; import java.util.regex.Pattern; import static org.openrewrite.Tree.randomId; import static org.openrewrite.Validated.required; public class ChangeMethodName extends JavaRefactorVisitor { private MethodMatcher methodMatcher; private String name; public ChangeMethodName() { setCursoringOn(); } public void setMethod(String method) { this.methodMatcher = new MethodMatcher(method); } public void setName(String name) { this.name = name; } @Override public Validated validate() { return required("method", methodMatcher) .and(required("name", name)); } @Override public J visitMethod(J.MethodDecl method) { J.MethodDecl m = refactor(method, super::visitMethod); J.ClassDecl classDecl = getCursor().firstEnclosing(J.ClassDecl.class); assert classDecl != null; if (methodMatcher.matches(method, classDecl)) { m = m.withName(m.getName().withName(name)); } return m; } @Override public J visitMethodInvocation(J.MethodInvocation method) { if (methodMatcher.matches(method)) { andThen(new Scoped(method, name)); } return super.visitMethodInvocation(method); } @Override public J visitIdentifier(J.Ident ident) { J.Ident i = refactor(ident, super::visitIdentifier); return i; } /** * The only time field access should be relevant to changing method names is static imports. * This exists to turn * import static com.abc.B.static1; * into * import static com.abc.B.static2; */ @Override public J visitFieldAccess(J.FieldAccess fieldAccess) { J.FieldAccess f = refactor(fieldAccess, super::visitFieldAccess); if (f.isFullyQualifiedClassReference(methodMatcher)) { Expression target = f.getTarget(); if(target instanceof J.FieldAccess) { String className = target.printTrimmed(); String fullyQualified = className + "." + name; return TreeBuilder.buildName(fullyQualified, f.getFormatting(), f.getId()); } } return f; } public static class Scoped extends JavaRefactorVisitor { private final J.MethodInvocation scope; private final String name; public Scoped(J.MethodInvocation scope, String name) { this.scope = scope; this.name = name; } @Override public Iterable getTags() { return Tags.of("name", name); } @Override public J visitMethodInvocation(J.MethodInvocation method) { return scope.isScope(method) && !method.getSimpleName().equals(name) ? method.withName(method.getName().withName(name)) : super.visitMethodInvocation(method); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy