-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1824 from panicking/feature/add-yocto-cve-parser
Adding Yocto Scanner support.
- Loading branch information
Showing
4 changed files
with
476 additions
and
1 deletion.
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
53 changes: 53 additions & 0 deletions
53
plugin/src/main/java/io/jenkins/plugins/analysis/warnings/YoctoScanner.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,53 @@ | ||
package io.jenkins.plugins.analysis.warnings; | ||
|
||
import org.kohsuke.stapler.DataBoundConstructor; | ||
import org.jenkinsci.Symbol; | ||
import hudson.Extension; | ||
|
||
import io.jenkins.plugins.analysis.core.model.AnalysisModelParser; | ||
import io.jenkins.plugins.analysis.core.model.StaticAnalysisLabelProvider; | ||
import io.jenkins.plugins.analysis.core.model.SymbolIconLabelProvider; | ||
|
||
/** | ||
* Provides a parser and customized messages for Yocto Scanner CLI (scannercli) reports. | ||
* | ||
* @author Michael Trimarchi | ||
*/ | ||
public class YoctoScanner extends AnalysisModelParser { | ||
private static final long serialVersionUID = 1L; | ||
private static final String ID = "yoctocli"; | ||
|
||
/** | ||
* Creates a new instance of {@link YoctoScanner}. | ||
*/ | ||
@DataBoundConstructor | ||
public YoctoScanner() { | ||
super(); | ||
// empty constructor required for stapler | ||
} | ||
|
||
/** Descriptor for this static analysis tool. */ | ||
@Symbol("yoctoScanner") | ||
@Extension | ||
public static class Descriptor extends AnalysisModelParserDescriptor { | ||
/** Creates the descriptor instance. */ | ||
public Descriptor() { | ||
super(ID); | ||
} | ||
|
||
@Override | ||
public boolean canScanConsoleLog() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public boolean isPostProcessingEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public StaticAnalysisLabelProvider getLabelProvider() { | ||
return new SymbolIconLabelProvider(getId(), getDisplayName(), getDescriptionProvider(), "symbol-solid/shield-halved plugin-font-awesome-api"); | ||
} | ||
} | ||
} |
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.