org.openrewrite.staticanalysis.NewStringBuilderBufferWithCharArgument Maven / Gradle / Ivy
/*
* 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.staticanalysis;
import org.openrewrite.*;
import org.openrewrite.internal.ListUtils;
import org.openrewrite.java.JavaIsoVisitor;
import org.openrewrite.java.JavaTemplate;
import org.openrewrite.java.search.UsesType;
import org.openrewrite.java.tree.J;
import org.openrewrite.java.tree.JavaType;
import org.openrewrite.java.tree.TypeUtils;
import java.time.Duration;
import java.util.Collections;
import java.util.Set;
public class NewStringBuilderBufferWithCharArgument extends Recipe {
@Override
public String getDisplayName() {
return "Change `StringBuilder` and `StringBuffer` character constructor argument to `String`";
}
@Override
public String getDescription() {
return "Instantiating a `StringBuilder` or a `StringBuffer` with a `Character` results in the `int` representation of the character being used for the initial size.";
}
@Override
public Duration getEstimatedEffortPerOccurrence() {
return Duration.ofMinutes(5);
}
@Override
public Set getTags() {
return Collections.singleton("RSPEC-S1317");
}
@Override
public TreeVisitor, ExecutionContext> getVisitor() {
TreeVisitor, ExecutionContext> condition = Preconditions.or(new UsesType<>("java.lang.StringBuilder", true), new UsesType<>("java.lang.StringBuffer", true));
return Preconditions.check(condition, new JavaIsoVisitor() {
private final JavaTemplate toString = JavaTemplate.builder("String.valueOf(#{any()})").build();
@Override
public J.NewClass visitNewClass(J.NewClass newClass, ExecutionContext ctx) {
J.NewClass nc = super.visitNewClass(newClass, ctx);
if ((TypeUtils.isOfClassType(nc.getType(), "java.lang.StringBuilder") ||
TypeUtils.isOfClassType(nc.getType(), "java.lang.StringBuffer"))) {
nc.getArguments();
if (nc.getArguments().get(0).getType() == JavaType.Primitive.Char) {
nc = nc.withArguments(ListUtils.mapFirst(nc.getArguments(), arg -> {
if (arg instanceof J.Literal) {
J.Literal l = (J.Literal) arg;
l = l.withType(JavaType.buildType("String"));
if (l.getValueSource() != null) {
l = l.withValueSource(l.getValueSource().replace("'", "\""));
}
return l;
} else {
Cursor argCursor = new Cursor(getCursor(), arg);
return toString.apply(argCursor, arg.getCoordinates().replace(), arg);
}
}));
}
}
return nc;
}
});
}
}