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

org.openrewrite.staticanalysis.UnnecessaryCloseInTryWithResources 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.ExecutionContext; import org.openrewrite.Preconditions; import org.openrewrite.Recipe; import org.openrewrite.TreeVisitor; import org.openrewrite.internal.ListUtils; import org.openrewrite.java.JavaIsoVisitor; import org.openrewrite.java.MethodMatcher; import org.openrewrite.java.tree.J; import org.openrewrite.staticanalysis.groovy.GroovyFileChecker; import org.openrewrite.staticanalysis.java.JavaFileChecker; import org.openrewrite.staticanalysis.kotlin.KotlinFileChecker; import java.time.Duration; import java.util.Collections; import java.util.Set; public class UnnecessaryCloseInTryWithResources extends Recipe { @Override public String getDisplayName() { return "Unnecessary close in try-with-resources"; } @Override public String getDescription() { return "Remove unnecessary `AutoCloseable#close()` statements in try-with-resources."; } @Override public Duration getEstimatedEffortPerOccurrence() { return Duration.ofMinutes(2); } @Override public Set getTags() { return Collections.singleton("RSPEC-S4087"); } @Override public TreeVisitor getVisitor() { return Preconditions.check( Preconditions.or( new JavaFileChecker<>(), new KotlinFileChecker<>(), new GroovyFileChecker<>() ), new UnnecessaryAutoCloseableVisitor() ); } private static class UnnecessaryAutoCloseableVisitor extends JavaIsoVisitor { private static final MethodMatcher AUTO_CLOSEABLE_METHOD_MATCHER = new MethodMatcher("java.lang.AutoCloseable close()", true); @Override public J.Try visitTry(J.Try aTry, ExecutionContext ctx) { J.Try tr = super.visitTry(aTry, ctx); if (tr.getResources() != null) { String[] resourceNames = new String[tr.getResources().size()]; for (int i = 0; i < tr.getResources().size(); i++) { J.Try.Resource tryResource = tr.getResources().get(i); if (tryResource.getVariableDeclarations() instanceof J.VariableDeclarations) { J.VariableDeclarations varDecls = (J.VariableDeclarations) tryResource.getVariableDeclarations(); resourceNames[i] = varDecls.getVariables().get(0).getSimpleName(); } else if (tryResource.getVariableDeclarations() instanceof J.Identifier) { J.Identifier identifier = (J.Identifier) tryResource.getVariableDeclarations(); resourceNames[i] = identifier.getSimpleName(); } } tr = tr.withBody(tr.getBody().withStatements(ListUtils.map(tr.getBody().getStatements(), statement -> { if (statement instanceof J.MethodInvocation) { J.MethodInvocation mi = (J.MethodInvocation) statement; if (AUTO_CLOSEABLE_METHOD_MATCHER.matches(mi) && mi.getSelect() instanceof J.Identifier) { String selectName = ((J.Identifier) mi.getSelect()).getSimpleName(); for (String resourceName : resourceNames) { if (resourceName.equals(selectName)) { return null; } } } } return statement; }))); } return tr; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy