-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run forbidden api checks with runtimeJavaVersion (#32947)
Run forbidden APIs checks with runtime hava version
- Loading branch information
Showing
30 changed files
with
241 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
154 changes: 154 additions & 0 deletions
154
buildSrc/src/main/java/org/elasticsearch/gradle/precommit/ForbiddenApisCliTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch 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.elasticsearch.gradle.precommit; | ||
|
||
import de.thetaphi.forbiddenapis.cli.CliMain; | ||
import org.gradle.api.Action; | ||
import org.gradle.api.DefaultTask; | ||
import org.gradle.api.JavaVersion; | ||
import org.gradle.api.file.FileCollection; | ||
import org.gradle.api.tasks.Input; | ||
import org.gradle.api.tasks.InputFiles; | ||
import org.gradle.api.tasks.OutputFile; | ||
import org.gradle.api.tasks.SkipWhenEmpty; | ||
import org.gradle.api.tasks.TaskAction; | ||
import org.gradle.process.JavaExecSpec; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.nio.file.Files; | ||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.LinkedHashSet; | ||
import java.util.List; | ||
import java.util.Set; | ||
|
||
public class ForbiddenApisCliTask extends DefaultTask { | ||
|
||
private FileCollection signaturesFiles; | ||
private List<String> signatures = new ArrayList<>(); | ||
private Set<String> bundledSignatures = new LinkedHashSet<>(); | ||
private Set<String> suppressAnnotations = new LinkedHashSet<>(); | ||
private JavaVersion targetCompatibility; | ||
private FileCollection classesDirs; | ||
private Action<JavaExecSpec> execAction; | ||
|
||
public JavaVersion getTargetCompatibility() { | ||
return targetCompatibility; | ||
} | ||
|
||
public void setTargetCompatibility(JavaVersion targetCompatibility) { | ||
this.targetCompatibility = targetCompatibility; | ||
} | ||
|
||
public Action<JavaExecSpec> getExecAction() { | ||
return execAction; | ||
} | ||
|
||
public void setExecAction(Action<JavaExecSpec> execAction) { | ||
this.execAction = execAction; | ||
} | ||
|
||
@OutputFile | ||
public File getMarkerFile() { | ||
return new File( | ||
new File(getProject().getBuildDir(), "precommit"), | ||
getName() | ||
); | ||
} | ||
|
||
@InputFiles | ||
@SkipWhenEmpty | ||
public FileCollection getClassesDirs() { | ||
return classesDirs.filter(File::exists); | ||
} | ||
|
||
public void setClassesDirs(FileCollection classesDirs) { | ||
this.classesDirs = classesDirs; | ||
} | ||
|
||
@InputFiles | ||
public FileCollection getSignaturesFiles() { | ||
return signaturesFiles; | ||
} | ||
|
||
public void setSignaturesFiles(FileCollection signaturesFiles) { | ||
this.signaturesFiles = signaturesFiles; | ||
} | ||
|
||
@Input | ||
public List<String> getSignatures() { | ||
return signatures; | ||
} | ||
|
||
public void setSignatures(List<String> signatures) { | ||
this.signatures = signatures; | ||
} | ||
|
||
@Input | ||
public Set<String> getBundledSignatures() { | ||
return bundledSignatures; | ||
} | ||
|
||
public void setBundledSignatures(Set<String> bundledSignatures) { | ||
this.bundledSignatures = bundledSignatures; | ||
} | ||
|
||
@Input | ||
public Set<String> getSuppressAnnotations() { | ||
return suppressAnnotations; | ||
} | ||
|
||
public void setSuppressAnnotations(Set<String> suppressAnnotations) { | ||
this.suppressAnnotations = suppressAnnotations; | ||
} | ||
|
||
@TaskAction | ||
public void runForbiddenApisAndWriteMarker() throws IOException { | ||
getProject().javaexec((JavaExecSpec spec) -> { | ||
execAction.execute(spec); | ||
spec.setMain(CliMain.class.getName()); | ||
// build the command line | ||
getSignaturesFiles().forEach(file -> spec.args("-f", file.getAbsolutePath())); | ||
getSuppressAnnotations().forEach(annotation -> spec.args("--suppressannotation", annotation)); | ||
getBundledSignatures().forEach(bundled -> { | ||
// there's no option for target compatibility so we have to interpret it | ||
final String prefix; | ||
if (bundled.equals("jdk-system-out") || | ||
bundled.equals("jdk-reflection") || | ||
bundled.equals("jdk-non-portable")) { | ||
prefix = ""; | ||
} else { | ||
prefix = "-" + ( | ||
getTargetCompatibility().compareTo(JavaVersion.VERSION_1_9) >= 0 ? | ||
getTargetCompatibility().getMajorVersion() : | ||
"1." + getTargetCompatibility().getMajorVersion()) | ||
; | ||
} | ||
spec.args("-b", bundled + prefix); | ||
} | ||
); | ||
getClassesDirs().forEach(dir -> | ||
spec.args("-d", dir) | ||
); | ||
}); | ||
Files.write(getMarkerFile().toPath(), Collections.emptyList()); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.