All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openrewrite.java.AddField Maven / Gradle / Ivy

There is a newer version: 8.33.4
Show newest version
/*
 * 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; import io.micrometer.core.instrument.Tag; import io.micrometer.core.instrument.Tags; import org.openrewrite.internal.lang.Nullable; import org.openrewrite.java.tree.J; import org.openrewrite.java.tree.JavaType; import java.util.ArrayList; import java.util.List; import static java.util.Collections.emptyList; import static java.util.Collections.singletonList; import static org.openrewrite.Formatting.EMPTY; import static org.openrewrite.Formatting.format; import static org.openrewrite.Tree.randomId; public final class AddField { private AddField() { } public static class Scoped extends JavaRefactorVisitor { private final J.ClassDecl scope; private final List modifiers; private final String clazz; private final String name; @Nullable private final String init; public Scoped(J.ClassDecl scope, List modifiers, String clazz, String name, @Nullable String init) { this.scope = scope; this.modifiers = modifiers; this.clazz = clazz; this.name = name; this.init = init; } @Override public Iterable getTags() { return Tags.of("field.class", clazz, "field.name", name); } @Override public J visitClassDecl(J.ClassDecl classDecl) { J.ClassDecl c = refactor(classDecl, super::visitClassDecl); if (scope.isScope(classDecl) && classDecl.getBody().getStatements().stream() .filter(s -> s instanceof J.VariableDecls) .map(J.VariableDecls.class::cast) .noneMatch(mv -> mv.getVars().stream().anyMatch(var -> var.getSimpleName().equals(name)))) { J.Block body = c.getBody(); JavaType.FullyQualified classType = JavaType.Class.build(clazz); maybeAddImport(classType); J.VariableDecls newField = new J.VariableDecls(randomId(), emptyList(), modifiers, J.Ident.build(randomId(), classType.getClassName(), classType, modifiers.isEmpty() ? EMPTY : format(" ")), null, emptyList(), singletonList(new J.VariableDecls.NamedVar(randomId(), J.Ident.build(randomId(), name, null, format("", init == null ? "" : " ")), emptyList(), init == null ? null : new J.UnparsedSource(randomId(), init, format(" ")), classType, format(" ") )), formatter.format(body) ); List statements = new ArrayList<>(body.getStatements().size() + 1); statements.add(newField); statements.addAll(body.getStatements()); c = c.withBody(body.withStatements(statements)); } return c; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy