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

org.openrewrite.FindCollidingSourceFiles Maven / Gradle / Ivy

There is a newer version: 8.40.2
Show newest version
/*
 * 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; import lombok.EqualsAndHashCode; import lombok.Value; import org.jspecify.annotations.Nullable; import org.openrewrite.marker.SearchResult; import org.openrewrite.table.CollidingSourceFiles; import java.nio.file.Path; import java.util.Collection; import java.util.LinkedHashSet; import java.util.Set; @Value @EqualsAndHashCode(callSuper = false) public class FindCollidingSourceFiles extends ScanningRecipe { transient CollidingSourceFiles collidingSourceFiles = new CollidingSourceFiles(this); @Override public String getDisplayName() { return "Find colliding source files"; } @Override public String getDescription() { return "Finds source files which share a path with another source file. " + "There should always be exactly one source file per path within a repository. " + "This is a diagnostic for finding problems in OpenRewrite parsers/build plugins."; } @Override public Accumulator getInitialValue(ExecutionContext ctx) { return new Accumulator(); } @Override public TreeVisitor getScanner(Accumulator acc) { return new TreeVisitor() { @Override public Tree visit(@Nullable Tree tree, ExecutionContext ctx) { assert tree instanceof SourceFile; Path p = ((SourceFile) tree).getSourcePath(); if (!acc.getSourcePaths().add(p)) { acc.getDuplicates().add(p); } return tree; } }; } @Override public Collection generate(Accumulator acc, ExecutionContext ctx) { acc.getSourcePaths().clear(); // we don't need this anymore, might as well free the memory sooner return super.generate(acc, ctx); } @Override public TreeVisitor getVisitor(Accumulator acc) { return new TreeVisitor() { @Override public @Nullable Tree visit(@Nullable Tree tree, ExecutionContext ctx) { if (tree instanceof SourceFile) { Path p = ((SourceFile) tree).getSourcePath(); if (acc.getDuplicates().contains(p)) { collidingSourceFiles.insertRow(ctx, new CollidingSourceFiles.Row( p.toString(), tree.getClass().toString() )); return SearchResult.found(tree, "Duplicate source file " + p); } } return tree; } }; } @Value static class Accumulator { Set sourcePaths = new LinkedHashSet<>(); Set duplicates = new LinkedHashSet<>(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy