org.openrewrite.java.ChangeAnnotationAttributeName Maven / Gradle / Ivy
Show all versions of rewrite-java Show documentation
/*
* Copyright 2023 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.openrewrite.*;
import org.openrewrite.internal.ListUtils;
import org.openrewrite.java.search.UsesType;
import org.openrewrite.java.tree.J;
import org.openrewrite.java.tree.JLeftPadded;
import org.openrewrite.marker.Markers;
import static java.util.Collections.emptyList;
import static org.openrewrite.Tree.randomId;
import static org.openrewrite.java.tree.Space.EMPTY;
import static org.openrewrite.java.tree.Space.SINGLE_SPACE;
@Value
@EqualsAndHashCode(callSuper = false)
public class ChangeAnnotationAttributeName extends Recipe {
@Option(displayName = "Annotation Type",
description = "The fully qualified name of the annotation.",
example = "org.junit.Test")
String annotationType;
@Option(displayName = "Old attribute name",
description = "The name of attribute to change.",
example = "timeout")
String oldAttributeName;
@Option(displayName = "New attribute name",
description = "The new attribute name to use.",
example = "waitFor")
String newAttributeName;
@Override
public String getDisplayName() {
return "Change annotation attribute name";
}
@Override
public String getInstanceNameSuffix() {
String shortType = annotationType.substring(annotationType.lastIndexOf('.') + 1);
return String.format("`@%s(%s)` to `@%s(%s)`",
shortType, oldAttributeName,
shortType, newAttributeName);
}
@Override
public String getDescription() {
return "Some annotations accept arguments. This recipe renames an existing attribute.";
}
@Override
public TreeVisitor, ExecutionContext> getVisitor() {
return Preconditions.check(new UsesType<>(annotationType, false), new JavaIsoVisitor() {
private final AnnotationMatcher annotationMatcher = new AnnotationMatcher('@' + annotationType);
@Override
public J.Annotation visitAnnotation(J.Annotation annotation, ExecutionContext ctx) {
J.Annotation a = super.visitAnnotation(annotation, ctx);
if (!annotationMatcher.matches(a)) {
return a;
}
return a.withArguments(ListUtils.map(a.getArguments(), arg -> {
if (arg instanceof J.Assignment) {
if (!oldAttributeName.equals(newAttributeName)) {
J.Assignment assignment = (J.Assignment) arg;
J.Identifier variable = (J.Identifier) assignment.getVariable();
if (oldAttributeName.equals(variable.getSimpleName())) {
return assignment.withVariable(variable.withSimpleName(newAttributeName));
}
}
} else if (oldAttributeName.equals("value")) {
J.Identifier name = new J.Identifier(randomId(), arg.getPrefix(), Markers.EMPTY, emptyList(), newAttributeName, arg.getType(), null);
return new J.Assignment(randomId(), EMPTY, arg.getMarkers(), name, new JLeftPadded<>(SINGLE_SPACE, arg.withPrefix(SINGLE_SPACE), Markers.EMPTY), arg.getType());
}
return arg;
}));
}
});
}
}