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

org.openrewrite.java.format.MethodParamPad Maven / Gradle / Ivy

There is a newer version: 8.40.2
Show newest version
/*
 * 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.java.format; import org.jspecify.annotations.Nullable; import org.openrewrite.*; import org.openrewrite.java.JavaIsoVisitor; import org.openrewrite.java.style.Checkstyle; import org.openrewrite.java.style.IntelliJ; import org.openrewrite.java.style.MethodParamPadStyle; import org.openrewrite.java.style.SpacesStyle; import org.openrewrite.java.tree.J; import org.openrewrite.java.tree.JavaSourceFile; import java.util.Optional; import static java.util.Objects.requireNonNull; public class MethodParamPad extends Recipe { @Override public String getDisplayName() { return "Method parameter padding"; } @Override public String getDescription() { return "Fixes whitespace padding between the identifier of a method definition or method invocation and the left parenthesis of the parameter list. " + "For example, when configured to remove spacing, `someMethodInvocation (x);` becomes `someMethodInvocation(x)`."; } @Override public TreeVisitor getVisitor() { return new MethodParamPadVisitor(); } private static class MethodParamPadVisitor extends JavaIsoVisitor { SpacesStyle spacesStyle; MethodParamPadStyle methodParamPadStyle; @Override public boolean isAcceptable(SourceFile sourceFile, ExecutionContext ctx) { // This visitor causes problems for Groovy sources as the `SpacesVisitor` is not aware of Groovy return sourceFile instanceof J.CompilationUnit; } @Override public J visit(@Nullable Tree tree, ExecutionContext ctx) { if (tree instanceof JavaSourceFile) { SourceFile cu = (SourceFile) requireNonNull(tree); spacesStyle = Optional.ofNullable(cu.getStyle(SpacesStyle.class)).orElse(IntelliJ.spaces()); methodParamPadStyle = Optional.ofNullable(cu.getStyle(MethodParamPadStyle.class)).orElse(Checkstyle.methodParamPadStyle()); spacesStyle = spacesStyle.withBeforeParentheses( spacesStyle.getBeforeParentheses() .withMethodDeclaration(methodParamPadStyle.getSpace()) .withMethodCall(methodParamPadStyle.getSpace()) ); return super.visit(cu, ctx); } return super.visit(tree, ctx); } @Override public J.MethodDeclaration visitMethodDeclaration(J.MethodDeclaration method, ExecutionContext ctx) { J.MethodDeclaration md = super.visitMethodDeclaration(method, ctx); if (!methodParamPadStyle.getAllowLineBreaks() && md.getPadding().getParameters().getBefore().getWhitespace().contains("\n")) { md = md.getPadding().withParameters( md.getPadding().getParameters().withBefore( md.getPadding().getParameters().getBefore().withWhitespace("") ) ); } if (!md.getParameters().isEmpty()) { md = (J.MethodDeclaration) new SpacesVisitor<>(spacesStyle, null, null, md.getParameters().get(0)) .visitNonNull(md, ctx, getCursor().getParentTreeCursor().fork()); } return md; } @Override public J.MethodInvocation visitMethodInvocation(J.MethodInvocation method, ExecutionContext ctx) { J.MethodInvocation mi = super.visitMethodInvocation(method, ctx); if (!methodParamPadStyle.getAllowLineBreaks() && mi.getPadding().getArguments().getBefore().getWhitespace().contains("\n")) { mi = mi.getPadding().withArguments( mi.getPadding().getArguments().withBefore( mi.getPadding().getArguments().getBefore().withWhitespace("") ) ); } mi = (J.MethodInvocation) new SpacesVisitor<>(spacesStyle, null, null, mi) .visitNonNull(mi, ctx, getCursor().getParentTreeCursor().fork()); return mi; } @Override public J.NewClass visitNewClass(J.NewClass newClass, ExecutionContext ctx) { J.NewClass nc = super.visitNewClass(newClass, ctx); if (!methodParamPadStyle.getAllowLineBreaks()) { nc.getPadding().getArguments(); if (nc.getPadding().getArguments().getBefore().getWhitespace().contains("\n")) { nc = nc.getPadding().withArguments( nc.getPadding().getArguments().withBefore( nc.getPadding().getArguments().getBefore().withWhitespace("") ) ); } } nc = (J.NewClass) new SpacesVisitor<>(spacesStyle, null, null, nc) .visitNonNull(nc, ctx, getCursor().getParentTreeCursor().fork()); return nc; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy