gnodet-bot commented on code in PR #356:
URL: 
https://github.com/apache/maven-clean-plugin/pull/356#discussion_r4112111903


##########
src/it/purge-check-orphan/verify.groovy:
##########
@@ -0,0 +1,36 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you 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
+//
+//   http://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.
+
+// Verify purge-check behaviour:
+//   - sub-orphan/target/ must have been removed (only non-hidden child was 
target/)
+//   - sub-existing/target/ must remain (pom.xml + src/ are siblings of 
target/)
+
+def log = new File(basedir, 'build.log').text
+assert log.contains('BUILD SUCCESS') : 'expected BUILD SUCCESS'
+
+// Orphaned build directory must be gone
+def orphanTarget = new File(basedir, 'sub-orphan/target')
+assert !orphanTarget.exists() : "sub-orphan/target/ should have been removed 
by purge-check, but still exists"
+
+// Active sub-project's build directory must be untouched
+// (purge-check runs on initialize; clean:clean runs later and removes it — so 
we only
+//  check the log to confirm purge-check did NOT report it as orphaned)
+assert !log.contains('sub-existing') || log.contains('Removing orphaned') == 
false \
+    || !log.find('Removing orphaned.*sub-existing') \
+    : "sub-existing/target/ must not be treated as orphaned"
+

Review Comment:
   💡 **Readability:** This triple-OR assertion is logically correct but hard to 
reason about. It works because `.find()` returns `null` (falsy) when there's no 
match and `.` doesn't match newlines — but a future maintainer will have to 
re-derive that logic.
   
   Simpler alternative:
   
   ```suggestion
   assert !log.readLines().any { it.contains('Removing orphaned') && 
it.contains('sub-existing') } \
       : "sub-existing/target/ must not be treated as orphaned"
   ```



##########
src/main/java/org/apache/maven/plugins/clean/CleanOrphansMojo.java:
##########
@@ -0,0 +1,230 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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
+ *
+ *   http://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.apache.maven.plugins.clean;
+
+import java.io.IOException;
+import java.nio.file.DirectoryStream;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.util.ArrayList;
+import java.util.List;
+
+import org.apache.maven.api.Project;
+import org.apache.maven.api.Session;
+import org.apache.maven.api.di.Inject;
+import org.apache.maven.api.plugin.Log;
+import org.apache.maven.api.plugin.MojoException;
+import org.apache.maven.api.plugin.annotations.Mojo;
+import org.apache.maven.api.plugin.annotations.Parameter;
+import org.apache.maven.api.services.PathMatcherFactory;
+
+/**
+ * Removes orphaned build output directories left behind by sub-projects that 
have been
+ * deleted or renamed since the last build.
+ *
+ * <p>When a sub-project is removed from the reactor (e.g. after a {@code git 
pull} or a branch
+ * switch), its {@code target/} directory may remain on disk even though its 
{@code pom.xml} is
+ * gone. Because the sub-project is no longer part of the reactor, {@code mvn 
clean} cannot know
+ * about it and will skip it. This goal detects such orphaned directories and 
removes them.</p>
+ *
+ * <p>Detection heuristic: a direct child directory of the current project's 
{@code basedir} is
+ * considered orphaned when its <em>only non-hidden child</em> is the build 
output directory
+ * (typically {@code target/}). A freshly checked-out or live sub-project 
always has at least a
+ * {@code pom.xml} alongside its build directory, so a directory whose sole 
visible content is a
+ * {@code target/} folder can safely be assumed to be a leftover.</p>
+ *
+ * @since 3.5.1
+ */
+@Mojo(name = "purge-check", defaultPhase = "initialize")
+public class CleanOrphansMojo implements org.apache.maven.api.plugin.Mojo {
+
+    /**
+     * The logger where to send information about what the plugin is doing.
+     */
+    @Inject
+    private Log logger;
+
+    /**
+     * The current project instance, used to resolve {@code basedir}.
+     */
+    @Inject
+    private Project project;
+
+    /**
+     * The build output directory of the current project. Used only to 
determine the directory
+     * name (e.g. {@code target}) so that the same name is recognised in 
sibling directories.
+     */
+    @Parameter(defaultValue = "${project.build.directory}", readonly = true, 
required = true)
+    private Path directory;
+
+    /**
+     * The current session.
+     */
+    @Inject
+    private Session session;
+
+    /**
+     * The service to use for creating include and exclude filters (shared 
with {@link CleanMojo}).
+     */
+    @Inject
+    private PathMatcherFactory matcherFactory;
+
+    /**
+     * Whether to force the deletion of read-only files inside orphaned build 
directories.
+     *
+     * @since 3.5.1
+     */
+    @Parameter(property = "maven.clean.force", defaultValue = "false")
+    private boolean force;
+
+    /**
+     * Indicates whether the build will continue even if there are errors 
while deleting orphaned
+     * build directories.
+     *
+     * @since 3.5.1
+     */
+    @Parameter(property = "maven.clean.failOnError", defaultValue = "true")
+    private boolean failOnError;
+
+    /**
+     * Indicates whether the plugin should undertake additional attempts 
(after a short delay) to
+     * delete a file if the first attempt failed.
+     *
+     * @since 3.5.1
+     */
+    @Parameter(property = "maven.clean.retryOnError", defaultValue = "true")
+    private boolean retryOnError;
+
+    /**
+     * Disables the plugin execution.
+     *
+     * @since 3.5.1
+     */
+    @Parameter(property = "maven.clean.purgeCheck.skip", defaultValue = 
"false")
+    private boolean skip;
+
+    /**
+     * Sets whether the plugin runs in verbose mode.
+     *
+     * @since 3.5.1
+     */
+    @Parameter(property = "maven.clean.verbose")
+    private Boolean verbose;
+
+    /**
+     * Scans direct children of the project {@code basedir} for orphaned build 
output directories
+     * and deletes them.
+     *
+     * @throws MojoException if an orphaned directory cannot be deleted and 
{@link #failOnError} is
+     *                       {@code true}
+     */
+    @Override
+    public void execute() {
+        if (skip) {
+            logger.info("Orphan build directory check is skipped.");
+            return;
+        }
+
+        Path basedir = project.getBasedir();
+        String buildDirName = directory.getFileName().toString();
+
+        List<Path> orphans = findOrphanBuildDirectories(basedir, buildDirName);
+        if (orphans.isEmpty()) {
+            return;
+        }
+
+        Cleaner cleaner = new Cleaner(matcherFactory, logger, isVerbose(), 
false, force, failOnError, retryOnError);
+        try {
+            for (Path orphan : orphans) {
+                logger.info("Removing orphaned build directory: " + orphan);
+                cleaner.delete(orphan);
+            }
+        } catch (IOException e) {
+            throw new MojoException("Failed to remove orphaned build 
directories: " + e.getMessage(), e);
+        }
+    }
+
+    /**
+     * Returns the list of orphaned build directories found as direct children 
of {@code basedir}.
+     *
+     * <p>A direct child directory is considered orphaned when its only 
non-hidden child entry is a
+     * directory whose name matches {@code buildDirName}.</p>
+     *
+     * @param  basedir      the directory to scan
+     * @param  buildDirName the name of the build output directory (e.g. 
{@code target})
+     * @return              a possibly-empty list of build directories to 
delete

Review Comment:
   💭 **Design observation:** After `cleaner.delete(buildDir)`, the parent 
directory (e.g. `sub-orphan/`) is left empty on disk — the mojo identifies it 
as orphaned but only removes its build output. This is fine for the stated goal 
(preventing RAT from finding stale build artifacts), but if a full cleanup is 
desired, the parent directory could also be removed after the build dir 
deletion, since the mojo already confirmed its only visible content was 
`target/`. Not a bug, just a question of scope.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to