org.openrewrite.gradle.search.FindPlugins Maven / Gradle / Ivy
Show all versions of rewrite-gradle Show documentation
/*
* Copyright 2021 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.gradle.search;
import lombok.EqualsAndHashCode;
import lombok.Value;
import org.jspecify.annotations.Nullable;
import org.openrewrite.*;
import org.openrewrite.gradle.IsBuildGradle;
import org.openrewrite.gradle.IsSettingsGradle;
import org.openrewrite.gradle.marker.GradleProject;
import org.openrewrite.gradle.tree.GradlePlugin;
import org.openrewrite.java.JavaVisitor;
import org.openrewrite.java.MethodMatcher;
import org.openrewrite.java.tree.J;
import org.openrewrite.marker.SearchResult;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.function.Function;
import java.util.stream.Stream;
import static java.util.Objects.requireNonNull;
import static java.util.stream.Collectors.toList;
@Value
@EqualsAndHashCode(callSuper = false)
public class FindPlugins extends Recipe {
@Option(displayName = "Plugin id",
description = "The `ID` part of `plugin { ID }`.",
example = "`com.jfrog.bintray`")
String pluginId;
@Override
public String getDisplayName() {
return "Find Gradle plugin";
}
@Override
public String getDescription() {
return "Find a Gradle plugin by id.";
}
@Override
public TreeVisitor, ExecutionContext> getVisitor() {
MethodMatcher pluginMatcher = new MethodMatcher("PluginSpec id(..)", false);
return new TreeVisitor() {
@Override
public @Nullable Tree visit(@Nullable Tree tree, ExecutionContext ctx) {
if (!(tree instanceof SourceFile)) {
return tree;
}
SourceFile s = (SourceFile) tree;
AtomicBoolean found = new AtomicBoolean(false);
TreeVisitor, ExecutionContext> jv = Preconditions.check(
Preconditions.or(new IsBuildGradle<>(), new IsSettingsGradle<>()),
new JavaVisitor() {
@Override
public J visitMethodInvocation(J.MethodInvocation method, ExecutionContext ctx) {
if (pluginMatcher.matches(method)) {
if (method.getArguments().get(0) instanceof J.Literal &&
pluginId.equals(((J.Literal) method.getArguments().get(0)).getValue())) {
found.set(true);
return SearchResult.found(method);
}
}
return super.visitMethodInvocation(method, ctx);
}
});
if (jv.isAcceptable(s, ctx)) {
s = (SourceFile) jv.visitNonNull(s, ctx);
}
// Even if we couldn't find a declaration the metadata might show the plugin is in use
GradleProject gp = s.getMarkers().findFirst(GradleProject.class).orElse(null);
if (!found.get() && gp != null && gp.getPlugins().stream()
.anyMatch(it -> pluginId.equals(it.getId()))) {
s = SearchResult.found(s);
}
return s;
}
};
}
/**
* @param j The subtree to search.
* @param pluginIdPattern A method pattern. See {@link MethodMatcher} for details about this syntax.
* @return A set of {@link J.MethodInvocation} and {@link J.MemberReference} representing plugin
* definitions in the plugins block.
*/
public static List find(J j, String pluginIdPattern) {
List plugins = TreeVisitor.collect(
new FindPlugins(pluginIdPattern).getVisitor(),
j,
new ArrayList<>(),
J.MethodInvocation.class,
Function.identity()
);
MethodMatcher idMatcher = new MethodMatcher("PluginSpec id(..)", false);
MethodMatcher versionMatcher = new MethodMatcher("Plugin version(..)", false);
List pluginsWithVersion = plugins.stream().flatMap(plugin -> {
if (versionMatcher.matches(plugin) && idMatcher.matches(plugin.getSelect())) {
return Stream.of(new GradlePlugin(
plugin,
requireNonNull(((J.Literal) requireNonNull(((J.MethodInvocation) plugin.getSelect()))
.getArguments().get(0)).getValue()).toString(),
requireNonNull(((J.Literal) plugin.getArguments().get(0)).getValue()).toString()
));
}
return Stream.empty();
}).collect(toList());
List pluginsWithoutVersion = plugins.stream().flatMap(plugin -> {
if (idMatcher.matches(plugin) && pluginsWithVersion.stream()
.noneMatch(it -> it.getPluginId().equals(plugin.getSimpleName()))) {
return Stream.of(new GradlePlugin(
plugin,
requireNonNull(((J.Literal) requireNonNull(plugin)
.getArguments().get(0)).getValue()).toString(),
null
));
}
return Stream.empty();
}).collect(toList());
List result = new ArrayList<>(pluginsWithVersion.size() + pluginsWithoutVersion.size());
result.addAll(pluginsWithVersion);
result.addAll(pluginsWithoutVersion);
return result;
}
}