org.openrewrite.java.AddLiteralMethodArgument Maven / Gradle / Ivy
Show all versions of rewrite-java Show documentation
/*
* 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.java;
import lombok.EqualsAndHashCode;
import lombok.Value;
import org.apache.commons.lang3.StringUtils;
import org.jspecify.annotations.Nullable;
import org.openrewrite.*;
import org.openrewrite.internal.ListUtils;
import org.openrewrite.java.search.UsesMethod;
import org.openrewrite.java.tree.*;
import org.openrewrite.marker.Markers;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import static org.openrewrite.Tree.randomId;
import static org.openrewrite.java.tree.JavaType.Primitive;
/**
* This recipe finds method invocations matching a method pattern and uses a zero-based argument index to determine
* which argument is added with a literal value.
*/
@Value
@EqualsAndHashCode(callSuper = false)
public class AddLiteralMethodArgument 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 = "com.yourorg.A foo(int, int)")
String methodPattern;
/**
* A zero-based index that indicates which argument will be added as null to the method invocation.
*/
@Option(displayName = "Argument index",
description = "A zero-based index that indicates which argument will be added as null to the method invocation.",
example = "0")
int argumentIndex;
@Option(displayName = "Literal",
description = "The literal value that we add the argument for.",
example = "abc")
Object literal;
@Option(displayName = "Parameter type",
description = "The type of the parameter that we add the argument for. Defaults to `String`.",
required = false,
example = "String",
valid = {"String", "int", "short", "long", "float", "double", "boolean", "char"})
@Nullable
String primitiveType;
@Override
public String getInstanceNameSuffix() {
return String.format("%d in methods `%s`", argumentIndex, methodPattern);
}
@Override
public String getDisplayName() {
return "Add a literal method argument";
}
@Override
public String getDescription() {
return "Add a literal `String` or `int` argument to method invocations.";
}
@Override
public TreeVisitor, ExecutionContext> getVisitor() {
return Preconditions.check(new UsesMethod<>(methodPattern), new AddLiteralMethodArgumentVisitor(new MethodMatcher(methodPattern)));
}
private class AddLiteralMethodArgumentVisitor extends JavaIsoVisitor {
private final MethodMatcher methodMatcher;
public AddLiteralMethodArgumentVisitor(MethodMatcher methodMatcher) {
this.methodMatcher = methodMatcher;
}
@Override
public J.MethodInvocation visitMethodInvocation(J.MethodInvocation method, ExecutionContext ctx) {
J.MethodInvocation m = super.visitMethodInvocation(method, ctx);
return (J.MethodInvocation) visitMethodCall(m);
}
@Override
public J.NewClass visitNewClass(J.NewClass newClass, ExecutionContext ctx) {
J.NewClass n = super.visitNewClass(newClass, ctx);
return (J.NewClass) visitMethodCall(n);
}
private MethodCall visitMethodCall(MethodCall methodCall) {
MethodCall m = methodCall;
List originalArgs = m.getArguments();
if (methodMatcher.matches(m) && (long) originalArgs.size() >= argumentIndex) {
List args = new ArrayList<>(originalArgs);
if (args.size() == 1 && args.get(0) instanceof J.Empty) {
args.remove(0);
}
JavaType.Primitive primitive;
String valueSource;
if (StringUtils.isBlank(primitiveType) || "string".equalsIgnoreCase(primitiveType)) {
primitive = Primitive.String;
valueSource = String.format("\"%s\"", getLiteral());
} else if(primitiveType.equalsIgnoreCase("char")){
primitive = Primitive.Char;
valueSource = String.format("'%s'", getLiteral());
}else {
primitive = Primitive.fromKeyword(primitiveType.toLowerCase());
valueSource = String.valueOf(getLiteral());
}
Expression literal = new J.Literal(randomId(), args.isEmpty() ? Space.EMPTY : Space.SINGLE_SPACE, Markers.EMPTY, getLiteral(), valueSource, null, primitive);
m = m.withArguments(ListUtils.insert(args, literal, argumentIndex));
JavaType.Method methodType = m.getMethodType();
if (methodType != null) {
m = m.withMethodType(methodType
.withParameterNames(ListUtils.insert(methodType.getParameterNames(), "arg" + argumentIndex, argumentIndex))
.withParameterTypes(ListUtils.insert(methodType.getParameterTypes(), primitive, argumentIndex)));
if (m instanceof J.MethodInvocation && ((J.MethodInvocation) m).getName().getType() != null) {
m = ((J.MethodInvocation) m).withName(((J.MethodInvocation) m).getName().withType(m.getMethodType()));
}
}
}
return m;
}
}
}