-
Notifications
You must be signed in to change notification settings - Fork 5
Issue #102: add support for sarif reports #121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -48,4 +48,7 @@ replay_pid* | |
| .ci-temp | ||
|
|
||
| # OpenRewrite-generated impl files | ||
| *.iml | ||
| *.iml | ||
|
|
||
| .cache | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
26 changes: 26 additions & 0 deletions
26
src/main/java/org/checkstyle/autofix/parser/ReportParser.java
This file contains hidden or 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,26 @@ | ||
| /////////////////////////////////////////////////////////////////////////////////////////////// | ||
| // checkstyle-openrewrite-recipes: Automatically fix Checkstyle violations with OpenRewrite. | ||
| // Copyright (C) 2025 The Checkstyle OpenRewrite Recipes Authors | ||
| // | ||
| // 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 org.checkstyle.autofix.parser; | ||
|
|
||
| import java.nio.file.Path; | ||
| import java.util.List; | ||
|
|
||
| public interface ReportParser { | ||
|
|
||
| List<CheckstyleViolation> parse(Path reportPath); | ||
| } |
94 changes: 94 additions & 0 deletions
94
src/main/java/org/checkstyle/autofix/parser/SarifReportParser.java
This file contains hidden or 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,94 @@ | ||
| /////////////////////////////////////////////////////////////////////////////////////////////// | ||
| // checkstyle-openrewrite-recipes: Automatically fix Checkstyle violations with OpenRewrite. | ||
| // Copyright (C) 2025 The Checkstyle OpenRewrite Recipes Authors | ||
| // | ||
| // 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 org.checkstyle.autofix.parser; | ||
|
|
||
| import java.io.IOException; | ||
| import java.net.URI; | ||
| import java.nio.file.Path; | ||
| import java.nio.file.Paths; | ||
| import java.util.ArrayList; | ||
| import java.util.List; | ||
| import java.util.Optional; | ||
|
|
||
| import org.checkstyle.autofix.CheckstyleCheck; | ||
|
|
||
| import de.jcup.sarif_2_1_0.SarifSchema210ImportExportSupport; | ||
| import de.jcup.sarif_2_1_0.model.PhysicalLocation; | ||
| import de.jcup.sarif_2_1_0.model.Region; | ||
| import de.jcup.sarif_2_1_0.model.Result; | ||
| import de.jcup.sarif_2_1_0.model.Run; | ||
| import de.jcup.sarif_2_1_0.model.SarifSchema210; | ||
|
|
||
| public class SarifReportParser implements ReportParser { | ||
|
|
||
| private static final String FILE_PREFIX = "file:"; | ||
|
|
||
| private final SarifSchema210ImportExportSupport parser; | ||
|
|
||
| public SarifReportParser() { | ||
| this.parser = new SarifSchema210ImportExportSupport(); | ||
| } | ||
|
|
||
| @Override | ||
| public List<CheckstyleViolation> parse(Path reportPath) { | ||
| final SarifSchema210 report; | ||
| try { | ||
| report = parser.fromFile(reportPath); | ||
| } | ||
| catch (IOException exception) { | ||
| throw new IllegalArgumentException("Failed to parse report: " + reportPath, exception); | ||
| } | ||
| final List<CheckstyleViolation> result = new ArrayList<>(); | ||
| for (final Run run: report.getRuns()) { | ||
| if (run.getResults() != null) { | ||
| run.getResults().forEach(resultEntry -> { | ||
| CheckstyleCheck.fromSource(resultEntry.getRuleId()).ifPresent(check -> { | ||
| final CheckstyleViolation violation = createViolation(check, resultEntry); | ||
| result.add(violation); | ||
| }); | ||
| }); | ||
| } | ||
| } | ||
| return result; | ||
| } | ||
|
|
||
| private CheckstyleViolation createViolation(CheckstyleCheck check, Result result) { | ||
| final String severity = result.getLevel().name(); | ||
| final String message = result.getMessage().getText(); | ||
| final PhysicalLocation location = result.getLocations().get(0).getPhysicalLocation(); | ||
| final Path filePath = getFilePath(location); | ||
| final Region region = location.getRegion(); | ||
| final int line = region.getStartLine(); | ||
| final Optional<Integer> columnMaybe = Optional.ofNullable(region.getStartColumn()); | ||
| return columnMaybe.map(column -> { | ||
| return new CheckstyleViolation(line, column, severity, check, message, filePath); | ||
| }).orElse(new CheckstyleViolation(line, severity, check, message, filePath)); | ||
| } | ||
|
|
||
| private Path getFilePath(PhysicalLocation location) { | ||
| final Path result; | ||
| final String uri = location.getArtifactLocation().getUri(); | ||
| if (uri.startsWith(FILE_PREFIX)) { | ||
| result = Paths.get(URI.create(uri)); | ||
| } | ||
| else { | ||
| result = Path.of(uri); | ||
| } | ||
| return result; | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.