com.diffplug.gradle.spotless.SpotlessTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotless-plugin-gradle Show documentation
Show all versions of spotless-plugin-gradle Show documentation
Spotless - keep your code spotless with Gradle
The newest version!
/*
* Copyright 2020-2024 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.gradle.spotless;
import java.io.File;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import java.util.Objects;
import org.eclipse.jgit.lib.ObjectId;
import org.gradle.api.DefaultTask;
import org.gradle.api.file.DirectoryProperty;
import org.gradle.api.file.FileCollection;
import org.gradle.api.provider.Property;
import org.gradle.api.provider.Provider;
import org.gradle.api.tasks.Input;
import org.gradle.api.tasks.InputFiles;
import org.gradle.api.tasks.Internal;
import org.gradle.api.tasks.OutputDirectory;
import org.gradle.api.tasks.PathSensitive;
import org.gradle.api.tasks.PathSensitivity;
import org.gradle.work.Incremental;
import com.diffplug.spotless.FormatExceptionPolicy;
import com.diffplug.spotless.FormatExceptionPolicyStrict;
import com.diffplug.spotless.Formatter;
import com.diffplug.spotless.FormatterStep;
import com.diffplug.spotless.LineEnding;
import com.diffplug.spotless.extra.GitRatchet;
public abstract class SpotlessTask extends DefaultTask {
@Internal
abstract Property getTaskService();
// set by SpotlessExtension, but possibly overridden by FormatExtension
protected String encoding = "UTF-8";
@Input
public String getEncoding() {
return encoding;
}
public void setEncoding(String encoding) {
this.encoding = Objects.requireNonNull(encoding);
}
protected Provider lineEndingsPolicy = null;
@Input
public Provider getLineEndingsPolicy() {
return lineEndingsPolicy;
}
public void setLineEndingsPolicy(Provider lineEndingsPolicy) {
this.lineEndingsPolicy = lineEndingsPolicy;
}
/** The sha of the tree at repository root, used for determining if an individual *file* is clean according to git. */
private transient ObjectId rootTreeSha;
/**
* The sha of the tree at the root of *this project*, used to determine if the git baseline has changed within this folder.
* Using a more fine-grained tree (rather than the project root) allows Gradle to mark more subprojects as up-to-date
* compared to using the project root.
*/
private transient ObjectId subtreeSha = ObjectId.zeroId();
/** Stored so that the configuration cache can recreate the GitRatchetGradle state. */
protected String ratchetFrom;
public void setupRatchet(String ratchetFrom) {
this.ratchetFrom = ratchetFrom;
if (!ratchetFrom.isEmpty()) {
GitRatchet ratchet = getTaskService().get().getRatchet();
File projectDir = getProjectDir().get().getAsFile();
rootTreeSha = ratchet.rootTreeShaOf(projectDir, ratchetFrom);
subtreeSha = ratchet.subtreeShaOf(projectDir, rootTreeSha);
} else {
subtreeSha = ObjectId.zeroId();
}
}
@Internal
abstract DirectoryProperty getProjectDir();
@Internal
GitRatchetGradle getRatchet() {
return ObjectId.zeroId().equals(getRatchetSha()) ? null : getTaskService().get().getRatchet();
}
@Internal
ObjectId getRootTreeSha() {
return rootTreeSha;
}
@Input
public ObjectId getRatchetSha() {
if (subtreeSha == null) {
setupRatchet(ratchetFrom);
}
return subtreeSha;
}
protected FormatExceptionPolicy exceptionPolicy = new FormatExceptionPolicyStrict();
public void setExceptionPolicy(FormatExceptionPolicy exceptionPolicy) {
this.exceptionPolicy = Objects.requireNonNull(exceptionPolicy);
}
@Input
public FormatExceptionPolicy getExceptionPolicy() {
return exceptionPolicy;
}
protected FileCollection target;
@PathSensitive(PathSensitivity.RELATIVE)
@Incremental
@InputFiles
public FileCollection getTarget() {
return target;
}
public void setTarget(Iterable target) {
if (target instanceof FileCollection) {
this.target = (FileCollection) target;
} else {
this.target = getProject().files(target);
}
}
protected File outputDirectory = new File(getProject().getLayout().getBuildDirectory().getAsFile().get(), "spotless/" + getName());
@OutputDirectory
public File getOutputDirectory() {
return outputDirectory;
}
protected final List steps = new ArrayList<>();
@Input
public List getSteps() {
return Collections.unmodifiableList(steps);
}
public void setSteps(List steps) {
PluginGradlePreconditions.requireElementsNonNull(steps);
this.steps.clear();
this.steps.addAll(steps);
}
/** Returns the name of this format. */
String formatName() {
String name = getName();
if (name.startsWith(SpotlessExtension.EXTENSION)) {
return name.substring(SpotlessExtension.EXTENSION.length()).toLowerCase(Locale.ROOT);
} else {
return name;
}
}
Formatter buildFormatter() {
return Formatter.builder()
.name(formatName())
.lineEndingsPolicy(getLineEndingsPolicy().get())
.encoding(Charset.forName(encoding))
.rootDir(getProjectDir().get().getAsFile().toPath())
.steps(steps)
.exceptionPolicy(exceptionPolicy)
.build();
}
}