desruisseaux commented on code in PR #508:
URL: https://github.com/apache/maven-jar-plugin/pull/508#discussion_r3921727642


##########
src/main/java/org/apache/maven/plugins/jar/Archive.java:
##########
@@ -0,0 +1,655 @@
+/*
+ * 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.jar;
+
+import java.io.BufferedWriter;
+import java.io.IOException;
+import java.io.InputStream;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.attribute.BasicFileAttributes;
+import java.util.ArrayList;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
+import java.util.NavigableMap;
+import java.util.NoSuchElementException;
+import java.util.Objects;
+import java.util.TreeMap;
+import java.util.jar.Attributes;
+import java.util.jar.Manifest;
+
+import org.apache.maven.api.Type;
+import org.apache.maven.api.annotations.Nonnull;
+import org.apache.maven.api.annotations.Nullable;
+import org.apache.maven.api.plugin.Log;
+import org.apache.maven.api.plugin.MojoException;
+
+/**
+ * Files or root directories to archive for a single module.
+ * A single instance of {@code Archive} can contain many directories for 
different target Java releases.
+ * Many instances of {@code Archive} can exist when archiving a multi-modules 
project.
+ */
+final class Archive {
+    /**
+     * Path to the <abbr>POM</abbr> file generated for this archive, or {@code 
null} if none.
+     * This is non-null only if module source hierarchy is used, in which case 
the dependencies
+     * declared in this file are the intersection of the project dependencies 
and the content of
+     * the {@code module-info.class} file.
+     */
+    @Nullable
+    Path pomFile;
+
+    /**
+     * The <var>JAR</var> file to create. Can be an existing file,
+     * in which case the file creation can be skipped if the file is still 
up-to-date.
+     */
+    @Nonnull
+    final Path jarFile;
+
+    /**
+     * A helper class for checking whether an existing <abbr>JAR</abbr> file 
is still up-to-date.
+     * This is null if there is no existing JAR file, or if we determined that 
the file is outdated.
+     */
+    private TimestampCheck existingJAR;
+
+    /**
+     * Name of the module being archived when the project is using module 
hierarchy.
+     * This is {@code null} if the project is using package hierarchy, either 
because it is a classical
+     * class-path project or because it is a single module compiled without 
using the module hierarchy.
+     * When using module source hierarchy, {@code javac} guarantees that the 
module name in the output
+     * directory is the name of the parent directory of {@code 
module-info.class}.
+     */
+    @Nullable
+    final String moduleName;
+
+    /**
+     * Path to {@code META-INF/MANIFEST.MF}, or {@code null} if none.
+     * If non-null, this value will be given to the {@code --manifest} option.
+     * The use of this option is preferable to adding {@code MANIFEST.MF} as 
an ordinary file.
+     *
+     * @see #setManifest(Path, boolean)
+     * @see #mergeManifest(Path, Manifest)
+     */
+    @Nullable
+    private Path manifest;
+
+    /**
+     * The Maven generated {@code pom.xml} and {@code pom.properties} files, 
or {@code null} if none.
+     * This first item must be the base directory where the files are located.
+     */
+    @Nullable
+    List<Path> mavenFiles;
+
+    /**
+     * Fully-qualified name of the main class, or {@code null} if none.
+     * This is the value to provide to the {@code --main-class} option.
+     */
+    private String mainClass;
+
+    /**
+     * Files or root directories to store in the <abbr>JAR</abbr> file for 
each target Java release
+     * other than the base release. Keys are the target Java release with 
{@code null} for the base
+     * release.
+     */
+    @Nonnull
+    private final NavigableMap<Runtime.Version, FileSet> filesetForRelease;
+
+    /**
+     * Files or root directories to archive for a single target Java release 
of a single module.
+     * The {@link Archive} enclosing must contain at least one instance of 
{@code FileSet} for
+     * the base release, and an arbitrary amount of other instances for other 
target releases.
+     */
+    final class FileSet {
+        /**
+         * The root directory of all files or directories to archive.
+         * This is the value to pass to the {@code -C} tool option.
+         */
+        @Nonnull
+        final Path directory;
+
+        /**
+         * The files or directories to include in the <var>JAR</var> file.
+         * Can be absolute paths or paths relative to {@link #directory}.
+         * It usually contains only the files or directories directly in
+         * the root {@linkplain #directory}, not in sub-directories.
+         */
+        @Nonnull
+        final List<Path> files;
+
+        /**
+         * Creates an initially empty set of files or directories for a 
specific target Java release.
+         *
+         * @param directory the base directory of the files or directories to 
archive
+         */
+        private FileSet(Path directory) {
+            this.directory = directory;
+            this.files = new ArrayList<>();
+        }
+
+        /**
+         * Discards all files in this file set, normally because those files 
are not in any module.
+         * This method returns a common parent directory for all the files 
that were discarded.
+         * The caller should use that common directory for logging a warning 
message.
+         *
+         * @param base base directory found by previous invocations of this 
method, or {@code null} if none
+         * @return common directory of discarded files
+         */
+        private Path discardAllFiles(Path base) {
+            for (Path file : files) {
+                if (base == null) {
+                    base = file.getParent();
+                } else {
+                    while (!file.startsWith(base)) {
+                        base = base.getParent();
+                        if (base == null) {
+                            break;
+                        }
+                    }
+                }
+            }
+            files.clear();
+            return base;
+        }
+
+        /**
+         * Adds the given path to the list of files or directories to archive.
+         * If the given path is a directory, then all children will be 
included.
+         * Children to exclude, if any, should be managed by {@link 
ExcludedFiles}.
+         *
+         * @param item a file or directory to archive
+         * @param attributes the file's basic attributes
+         * @param isDirectory whether the file is a directory
+         */
+        void add(Path item, BasicFileAttributes attributes, boolean 
isDirectory) {
+            TimestampCheck tc = existingJAR;

Review Comment:
   Done (removed the variable completely).



-- 
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