A Gradle Plugin that extends the Gradle Error Prone Plugin and Error Prone itself to support automatically suppressing errors.
Error Prone is a great tool that lets you write custom checks within the Java compiler. However, when rolling out a new check to a large number of repos, the check will often fail the build, meaning that the plugin or jar the errorprones are distributed in has its upgrade blocked indefinitely until the code is fixed or manually suppressed. The result is errorprones are rarely added unless they have an autofix that work 100% of the time, or if so are set at the warning level. Or they get stuck, never upgrade, and newly written code does not benefit from the new errorprone checks.
If working in a single monorepo, it's somewhat easier to deal with this problem. You can just have the first version of your check suggest a fix that appends a suppression to an @SuppressWarnings
annotation - there's even a helper method in errorprone to do this. Then you run the check on the monorepo, commit the suppressions, and remove/replace this suggested fix. The fix then runs on all new code.
In a polyrepo environment, it's much harder. You can't coordinate the suppression first then move on from there without a huge (probably impossible) amount of difficultly. Different repos will upgrade at different speeds, so you need to be able to suppress all errorprones in one go at any time. This is a feature this plugin provides.
Additionally, unlike the builtin errorprone helper method to suppress errors, this approach identifies that the suppression has been automated rather than manual in the actual suppression name, rather than using comments, which are brittle and hard to programmatically change. Example:
// Here ArrayToString was added manually, but CollectionStreamForEach was
// added automatically when the check was rolled out.
@SuppressWarnings({"ArrayToString", "for-rollout:CollectionStreamForEach"})
Other approaches like android-lint's baseline (and very large Palantir internal monorepo) have files in each source set or project that describe which Java files have which checks enabled. This plugin takes a different approach, instead suppressing checks inline in a more granular fashion on the language element closest to the error (including variable definitions), like so:
public final class Example {
@SuppressWarnings("for-rollout:ArrayToString")
public final String field = new int[3].toString();
@SuppressWarnings("for-rollout:ArrayToString")
public void method() {
System.out.println(new int[3].toString());
}
public void variables() {
@SuppressWarnings("for-rollout:ArrayToString")
String variable = new int[3].toString();
System.out.println(variable);
}
@SuppressWarnings("for-rollout:ArrayToString")
public static class SomeClass {
static {
System.out.println(new int[3].toString());
}
}
}
This plugin is (currently) mainly designed to be used by other Gradle plugins. They should include the gradle-suppressible-error-prone
jar as a dependency, apply the plugin, then configure both this plugin and the Gradle Error Prone plugin as appropriate:
public final class MyPlugin implements Plugin<Project> {
public void apply(Project project) {
project.getPluginManager().apply(SuppressibleErrorPronePlugin.class);
SuppressibleErrorProneExtension suppressibleErrorProneExtension =
project.getExtensions().getByType(SuppressibleErrorProneExtension.class);
// Configure the base errorprone gradle plugin options in each sourceset
suppressibleErrorProneExtension.configureEachErrorProneOptions(errorProneOptions -> {
errorProneOptions.disable("CatchBlockLogException");
errorProneOptions.check("JavaxInjectOnAbstractMethod", CheckSeverity.WARNING);
});
// You need to opt into which checks will apply suggested patches:
suppressibleErrorProneExtension.getPatchChecks().addAll(
"CollectionStreamForEach",
"ObjectsHashCodeUnnecessaryVarargs");
// You can also conditionally opt into patch checks if a module is in the transitive
// runtimeClasspath of the source set:
suppressibleErrorProneExtension.getConditionalPathChecks().add(
new ConditionalPatchCheck(
new IfModuleIsUsed("com.palantir.safe-logging", "preconditions"),
"PreferSafeLoggingPreconditions",
"PreferSafeLoggableExceptions")
);
}
}
This plugin adds a marker task you can handily use that will run all the compile tasks with that have errorprone applied and enabled:
./gradlew compileAllErrorProne
To actually suppress all the current failures, you need to run compilation twice:
./gradlew compileAllErrorProne -PerrorProneSuppressStage1
./gradlew compileAllErrorProne -PerrorProneSuppressStage2
If rolling out automatically to lots of repos, we'd recommend running the fixes first before suppressing:
./gradlew compileAllErrorProne -PerrorProneApply
You can also run fixes for individual checks:
./gradlew compileAllErrorProne -PerrorProneApply=Check
./gradlew compileAllErrorProne -PerrorProneApply=Check,OtherCheck
Errorprone can be disabled by using the -PerrorProneDisable
property.
You can also use this directly in Gradle without making a plugin (not recommended if you are in a polyrepo environment - save yourself the future pain, don't copy and paste anything, make a plugin for it!):
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.palantir.suppressible-error-prone:gradle-suppressible-error-prone:<version>'
}
}
apply plugin: 'com.palantir.suppressible-error-prone'
dependencies {
// You will actually need a source of errorprone checks, this includes the default Google ones
errorprone 'com.google.errorprone:error_prone_core:<version>'
}
suppressibleErrorProne {
patchChecks.add('SomeCheck')
}
We achieve automatic suppression using a two stage process:
- Intercepting all the errors that errorprone produces, adding an
@RepeatableSuppressWarnings
annotation to the closest parent language element to erroring element that accepts@SuppressWarnings
. - The second stage comes and coalesces all the
@RepeatableSuppressWarnings
together with any existing@SuppressWarnings
to produce a final@SuppressWarnings
(this process happens via a regular old errorprone check).
For example:
class Example {
@SuppressWarnings("ArrayToString")
void example() {
// Fails CollectionStreamForEach
List.of(1).stream().forEach(...)
// ...
}
}
Would have the @RepeatableSuppressWarnings
annotation added after stage 1:
class Example {
@RepeatableSuppressWarnings("CollectionStreamForEach")
@SuppressWarnings("ArrayToString")
void example() {
List.of(1).stream().forEach(...)
// ...
}
}
Then stage 2 will coalesce the suppress warnings annotations into a single regular @SuppressWarnings
. Note we prefix the automatically suppressed error with for-rollout:
so it's easy to tell which suppressions happened because humans did it vs automation.
class Example {
@SuppressWarnings({"ArrayToString", "for-rollout:CollectionStreamForEach"})
void example() {
List.of(1).stream().forEach(...)
// ...
}
}
We actually modify the core errorprone library to achieve this using a Gradle Artifact Transform. This allows us to minimally rewrite the bytecode in the jar that has VisitorState#reportMatch
method and add a call to our own static method to modify the description
as a first step and add our own fix for @RepeatableSuppressWarnings
.
Again, we use the same Artifact Transform to also add a static method to the end of this constructor for BugCheckerInfo
that reflectively changes the allNames
field to include the check's canonical name with the for-rollout:
prefix.
Using an artifact transform is kinda janky. If Google were to change these APIs or internal details, the code would break and we would have to fix (although I'm pretty sure we could - we could do whatever we want).
The ideal would be to upstream this into errorprone itself. Upstreaming may be possible, but this approach at least demonstrates this works without having to go through that process. See readme for the discussion about rolling our errorprones in monorepo vs polyrepo environments and how Google may not have our problem.
- Adding a way to remove unnecessary suppressions of error prone checks. This will be very useful when rolling an out an errorprone check that is incorrect and ends up spamming repos with suppressions. Just fixing the bug and upgrading should fix the bug.
- Automatically discovering errorprones to run from the manifest of jars. Will enable library authors to distribute fixes to upcoming breaking changes automatically.