com.diffplug.spotless.maven.AbstractSpotlessMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotless-maven-plugin Show documentation
Show all versions of spotless-maven-plugin Show documentation
Spotless - keep your code spotless with Gradle
/*
* Copyright 2016-2022 DiffPlug
*
* 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
*
* 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 com.diffplug.spotless.maven;
import static java.util.stream.Collectors.toList;
import java.io.File;
import java.io.IOException;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import java.util.function.Predicate;
import java.util.function.Supplier;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.resource.ResourceManager;
import org.codehaus.plexus.resource.loader.FileResourceLoader;
import org.codehaus.plexus.util.FileUtils;
import org.codehaus.plexus.util.MatchPatterns;
import org.eclipse.aether.RepositorySystem;
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.repository.RemoteRepository;
import com.diffplug.spotless.Formatter;
import com.diffplug.spotless.LineEnding;
import com.diffplug.spotless.Provisioner;
import com.diffplug.spotless.generic.LicenseHeaderStep;
import com.diffplug.spotless.maven.antlr4.Antlr4;
import com.diffplug.spotless.maven.cpp.Cpp;
import com.diffplug.spotless.maven.generic.Format;
import com.diffplug.spotless.maven.generic.LicenseHeader;
import com.diffplug.spotless.maven.groovy.Groovy;
import com.diffplug.spotless.maven.incremental.UpToDateChecker;
import com.diffplug.spotless.maven.incremental.UpToDateChecking;
import com.diffplug.spotless.maven.java.Java;
import com.diffplug.spotless.maven.kotlin.Kotlin;
import com.diffplug.spotless.maven.markdown.Markdown;
import com.diffplug.spotless.maven.pom.Pom;
import com.diffplug.spotless.maven.python.Python;
import com.diffplug.spotless.maven.scala.Scala;
import com.diffplug.spotless.maven.sql.Sql;
import com.diffplug.spotless.maven.typescript.Typescript;
public abstract class AbstractSpotlessMojo extends AbstractMojo {
private static final String DEFAULT_INDEX_FILE_NAME = "spotless-index";
private static final String DEFAULT_ENCODING = "UTF-8";
private static final String DEFAULT_LINE_ENDINGS = "GIT_ATTRIBUTES";
/** Value to allow unsetting the ratchet inherited from parent pom configuration. */
static final String RATCHETFROM_NONE = "NONE";
static final String GOAL_CHECK = "check";
static final String GOAL_APPLY = "apply";
@Component
private RepositorySystem repositorySystem;
@Component
private ResourceManager resourceManager;
@Parameter(defaultValue = "${mojoExecution.goal}", required = true, readonly = true)
private String goal;
@Parameter(property = "spotless.apply.skip", defaultValue = "false")
private boolean applySkip;
@Parameter(property = "spotless.check.skip", defaultValue = "false")
private boolean checkSkip;
@Parameter(defaultValue = "${project}", required = true, readonly = true)
private MavenProject project;
@Parameter(defaultValue = "${repositorySystemSession}", required = true, readonly = true)
private RepositorySystemSession repositorySystemSession;
@Parameter(defaultValue = "${project.remotePluginRepositories}", required = true, readonly = true)
private List repositories;
@Parameter(defaultValue = "${project.basedir}", required = true, readonly = true)
private File baseDir;
@Parameter(defaultValue = "${project.build.directory}", required = true, readonly = true)
private File buildDir;
@Parameter(defaultValue = DEFAULT_ENCODING)
private String encoding;
@Parameter(defaultValue = DEFAULT_LINE_ENDINGS)
private LineEnding lineEndings;
@Parameter
private String ratchetFrom;
@Parameter
private LicenseHeader licenseHeader;
@Parameter
private List formats = Collections.emptyList();
@Parameter
private Groovy groovy;
@Parameter
private Java java;
@Parameter
private Scala scala;
@Parameter
private Kotlin kotlin;
@Parameter
private Cpp cpp;
@Parameter
private Typescript typescript;
@Parameter
private Antlr4 antlr4;
@Parameter
private Pom pom;
@Parameter
private Sql sql;
@Parameter
private Python python;
@Parameter
private Markdown markdown;
@Parameter(property = "spotlessFiles")
private String filePatterns;
@Parameter(property = LicenseHeaderStep.spotlessSetLicenseHeaderYearsFromGitHistory)
private String setLicenseHeaderYearsFromGitHistory;
@Parameter
private UpToDateChecking upToDateChecking;
protected abstract void process(Iterable files, Formatter formatter, UpToDateChecker upToDateChecker) throws MojoExecutionException;
@Override
public final void execute() throws MojoExecutionException {
if (shouldSkip()) {
getLog().info(String.format("Spotless %s skipped", goal));
return;
}
List formatterFactories = getFormatterFactories();
FormatterConfig config = getFormatterConfig();
Map>> formatterFactoryToFiles = new HashMap<>();
for (FormatterFactory formatterFactory : formatterFactories) {
Supplier> filesToFormat = () -> collectFiles(formatterFactory, config);
formatterFactoryToFiles.put(formatterFactory, filesToFormat);
}
try (FormattersHolder formattersHolder = FormattersHolder.create(formatterFactoryToFiles, config);
UpToDateChecker upToDateChecker = createUpToDateChecker(formattersHolder.getFormatters())) {
for (Entry>> entry : formattersHolder.getFormattersWithFiles().entrySet()) {
Formatter formatter = entry.getKey();
Iterable files = entry.getValue().get();
process(files, formatter, upToDateChecker);
}
} catch (PluginException e) {
throw e.asMojoExecutionException();
}
}
private boolean shouldSkip() {
switch (goal) {
case GOAL_CHECK:
return checkSkip;
case GOAL_APPLY:
return applySkip;
default:
break;
}
return false;
}
private List collectFiles(FormatterFactory formatterFactory, FormatterConfig config) {
Optional ratchetFrom = formatterFactory.ratchetFrom(config);
try {
final List files;
if (ratchetFrom.isPresent()) {
files = collectFilesFromGit(formatterFactory, ratchetFrom.get());
} else {
files = collectFilesFromFormatterFactory(formatterFactory);
}
if (filePatterns == null || filePatterns.isEmpty()) {
return files;
}
final String[] includePatterns = this.filePatterns.split(",");
final List compiledIncludePatterns = Arrays.stream(includePatterns)
.map(Pattern::compile)
.collect(Collectors.toList());
final Predicate shouldInclude = file -> compiledIncludePatterns
.stream()
.anyMatch(filePattern -> filePattern.matcher(file.getAbsolutePath())
.matches());
return files
.stream()
.filter(shouldInclude)
.collect(toList());
} catch (IOException e) {
throw new PluginException("Unable to scan file tree rooted at " + baseDir, e);
}
}
private List collectFilesFromGit(FormatterFactory formatterFactory, String ratchetFrom) {
MatchPatterns includePatterns = MatchPatterns.from(
withNormalizedFileSeparators(getIncludes(formatterFactory)));
MatchPatterns excludePatterns = MatchPatterns.from(
withNormalizedFileSeparators(getExcludes(formatterFactory)));
Iterable dirtyFiles;
try {
dirtyFiles = GitRatchetMaven
.instance().getDirtyFiles(baseDir, ratchetFrom);
} catch (IOException e) {
throw new PluginException("Unable to scan file tree rooted at " + baseDir, e);
}
List result = new ArrayList<>();
for (String file : withNormalizedFileSeparators(dirtyFiles)) {
if (includePatterns.matches(file, true)) {
if (!excludePatterns.matches(file, true)) {
result.add(new File(baseDir.getPath(), file));
}
}
}
return result;
}
private List collectFilesFromFormatterFactory(FormatterFactory formatterFactory) throws IOException {
String includesString = String.join(",", getIncludes(formatterFactory));
String excludesString = String.join(",", getExcludes(formatterFactory));
return FileUtils.getFiles(baseDir, includesString, excludesString);
}
private Iterable withNormalizedFileSeparators(Iterable patterns) {
return StreamSupport.stream(patterns.spliterator(), true)
.map(pattern -> pattern.replace('/', File.separatorChar))
.map(pattern -> pattern.replace('\\', File.separatorChar))
.collect(Collectors.toSet());
}
private static String withTrailingSeparator(String path) {
return path.endsWith(File.separator) ? path : path + File.separator;
}
private Set getIncludes(FormatterFactory formatterFactory) {
Set configuredIncludes = formatterFactory.includes();
Set includes = configuredIncludes.isEmpty() ? formatterFactory.defaultIncludes() : configuredIncludes;
if (includes.isEmpty()) {
throw new PluginException("You must specify some files to include, such as 'src/**/*.blah '");
}
return includes;
}
private Set getExcludes(FormatterFactory formatterFactory) {
Set configuredExcludes = formatterFactory.excludes();
Set excludes = new HashSet<>(FileUtils.getDefaultExcludesAsList());
excludes.add(withTrailingSeparator(buildDir.toString()));
excludes.addAll(configuredExcludes);
return excludes;
}
private FormatterConfig getFormatterConfig() {
ArtifactResolver resolver = new ArtifactResolver(repositorySystem, repositorySystemSession, repositories, getLog());
Provisioner provisioner = MavenProvisioner.create(resolver);
List formatterStepFactories = getFormatterStepFactories();
FileLocator fileLocator = getFileLocator();
final Optional optionalRatchetFrom = Optional.ofNullable(this.ratchetFrom)
.filter(ratchet -> !RATCHETFROM_NONE.equals(ratchet));
return new FormatterConfig(baseDir, encoding, lineEndings, optionalRatchetFrom, provisioner, fileLocator, formatterStepFactories, Optional.ofNullable(setLicenseHeaderYearsFromGitHistory));
}
private FileLocator getFileLocator() {
resourceManager.addSearchPath(FileResourceLoader.ID, baseDir.getAbsolutePath());
resourceManager.addSearchPath("url", "");
resourceManager.setOutputDirectory(buildDir);
return new FileLocator(resourceManager, baseDir, buildDir);
}
private List getFormatterFactories() {
return Stream.concat(formats.stream(), Stream.of(groovy, java, scala, kotlin, cpp, typescript, antlr4, pom, sql, python, markdown))
.filter(Objects::nonNull)
.collect(toList());
}
private List getFormatterStepFactories() {
return Stream.of(licenseHeader)
.filter(Objects::nonNull)
.collect(toList());
}
private UpToDateChecker createUpToDateChecker(Iterable formatters) {
Path indexFile = upToDateChecking == null ? null : upToDateChecking.getIndexFile();
if (indexFile == null) {
Path targetDir = project.getBasedir().toPath().resolve(project.getBuild().getDirectory());
indexFile = targetDir.resolve(DEFAULT_INDEX_FILE_NAME);
}
if (upToDateChecking != null && upToDateChecking.isEnabled()) {
getLog().info("Up-to-date checking enabled");
return UpToDateChecker.forProject(project, indexFile, formatters, getLog());
}
return UpToDateChecker.noop(project, indexFile, getLog());
}
}