FileFilter.java

  1. /*******************************************************************************
  2.  * Copyright (c) 2009, 2025 Mountainminds GmbH & Co. KG and Contributors
  3.  * This program and the accompanying materials are made available under
  4.  * the terms of the Eclipse Public License 2.0 which is available at
  5.  * http://www.eclipse.org/legal/epl-2.0
  6.  *
  7.  * SPDX-License-Identifier: EPL-2.0
  8.  *
  9.  * Contributors:
  10.  *    Evgeny Mandrikov - initial API and implementation
  11.  *    Kyle Lieber - implementation of CheckMojo
  12.  *
  13.  *******************************************************************************/
  14. package org.jacoco.maven;

  15. import java.io.File;
  16. import java.io.IOException;
  17. import java.util.List;

  18. import org.codehaus.plexus.util.FileUtils;
  19. import org.codehaus.plexus.util.StringUtils;

  20. /**
  21.  * A file filter using includes/excludes patterns.
  22.  */
  23. public class FileFilter {

  24.     private static final String DEFAULT_INCLUDES = "**";
  25.     private static final String DEFAULT_EXCLUDES = "";

  26.     private final List<String> includes;
  27.     private final List<String> excludes;

  28.     /**
  29.      * Construct a new FileFilter
  30.      *
  31.      * @param includes
  32.      *            list of includes patterns
  33.      * @param excludes
  34.      *            list of excludes patterns
  35.      */
  36.     public FileFilter(final List<String> includes,
  37.             final List<String> excludes) {
  38.         this.includes = includes;
  39.         this.excludes = excludes;
  40.     }

  41.     /**
  42.      * Returns a list of file names.
  43.      *
  44.      * @param directory
  45.      *            the directory to scan
  46.      * @return a list of files
  47.      * @throws IOException
  48.      *             if file system access fails
  49.      */
  50.     public List<String> getFileNames(final File directory) throws IOException {
  51.         return FileUtils.getFileNames(directory, getIncludes(), getExcludes(),
  52.                 false);
  53.     }

  54.     /**
  55.      * Returns a list of files.
  56.      *
  57.      * @param directory
  58.      *            the directory to scan
  59.      * @return a list of files
  60.      * @throws IOException
  61.      *             if file system access fails
  62.      */
  63.     public List<File> getFiles(final File directory) throws IOException {
  64.         return FileUtils.getFiles(directory, getIncludes(), getExcludes());
  65.     }

  66.     /**
  67.      * Get the includes pattern
  68.      *
  69.      * @return the pattern
  70.      */
  71.     public String getIncludes() {
  72.         return this.buildPattern(this.includes, DEFAULT_INCLUDES);
  73.     }

  74.     /**
  75.      * Get the excludes pattern
  76.      *
  77.      * @return the pattern
  78.      */
  79.     public String getExcludes() {
  80.         return this.buildPattern(this.excludes, DEFAULT_EXCLUDES);
  81.     }

  82.     private String buildPattern(final List<String> patterns,
  83.             final String defaultPattern) {
  84.         String pattern = defaultPattern;
  85.         if (patterns != null && !patterns.isEmpty()) {
  86.             pattern = StringUtils.join(patterns.iterator(), ",");
  87.         }
  88.         return pattern;
  89.     }
  90. }