org.openrewrite.java.search.UsesMethod Maven / Gradle / Ivy
Show all versions of rewrite-java Show documentation
/*
* 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.search;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Value;
import lombok.With;
import org.jspecify.annotations.Nullable;
import org.openrewrite.Tree;
import org.openrewrite.java.JavaIsoVisitor;
import org.openrewrite.java.MethodMatcher;
import org.openrewrite.java.tree.J;
import org.openrewrite.java.tree.JavaSourceFile;
import org.openrewrite.java.tree.JavaType;
import org.openrewrite.marker.Marker;
import org.openrewrite.marker.SearchResult;
import java.util.UUID;
import static org.openrewrite.Tree.randomId;
public class UsesMethod
extends JavaIsoVisitor
{
private final String methodPattern;
@Getter
private final MethodMatcher methodMatcher;
public UsesMethod(String methodPattern) {
this(new MethodMatcher(methodPattern), methodPattern);
}
public UsesMethod(String methodPattern, boolean matchOverrides) {
this(new MethodMatcher(methodPattern, matchOverrides), methodPattern);
}
public UsesMethod(String methodPattern, @Nullable Boolean matchOverrides) {
this(new MethodMatcher(methodPattern, Boolean.TRUE.equals(matchOverrides)), methodPattern);
}
public UsesMethod(MethodMatcher methodMatcher) {
this(methodMatcher, methodMatcher.toString());
}
private UsesMethod(MethodMatcher methodMatcher, String methodPattern) {
this.methodMatcher = methodMatcher;
this.methodPattern = methodPattern;
}
@Override
public J visit(@Nullable Tree tree, P p) {
if (tree instanceof JavaSourceFile) {
JavaSourceFile cu = (JavaSourceFile) tree;
for (JavaType.Method type : cu.getTypesInUse().getUsedMethods()) {
if (methodMatcher.matches(type)) {
return found(cu);
}
}
return (J) tree;
}
return super.visit(tree, p);
}
private J2 found(J2 j) {
// also adding a `SearchResult` marker to get a visible diff
return SearchResult.found(j.withMarkers(j.getMarkers()
.compute(new MethodMatch(randomId(), methodPattern), (s1, s2) -> s1 == null ? s2 : s1)));
}
@Override
public J.MethodInvocation visitMethodInvocation(J.MethodInvocation method, P p) {
if (methodMatcher.matches(method)) {
return found(method);
}
return super.visitMethodInvocation(method, p);
}
@Override
public J.MemberReference visitMemberReference(J.MemberReference memberRef, P p) {
if (methodMatcher.matches(memberRef)) {
return found(memberRef);
}
return super.visitMemberReference(memberRef, p);
}
@Override
public J.NewClass visitNewClass(J.NewClass newClass, P p) {
if (methodMatcher.matches(newClass)) {
return found(newClass);
}
return super.visitNewClass(newClass, p);
}
@Value
@With
@EqualsAndHashCode(onlyExplicitlyIncluded = true)
public static class MethodMatch implements Marker {
UUID id;
@EqualsAndHashCode.Include
String methodMatcher;
}
}