-
Notifications
You must be signed in to change notification settings - Fork 314
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(RepositoryConfiguration): Add support for snippet choice
Signed-off-by: Nicolas Nobelis <[email protected]>
- Loading branch information
Showing
6 changed files
with
413 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
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,39 @@ | ||
/* | ||
* Copyright (C) 2023 The ORT Project Authors (see <https://github.com/oss-review-toolkit/ort/blob/main/NOTICE>) | ||
* | ||
* 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 | ||
* | ||
* https://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. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* License-Filename: LICENSE | ||
*/ | ||
|
||
package org.ossreviewtoolkit.model.config | ||
|
||
import org.ossreviewtoolkit.model.RepositoryProvenance | ||
|
||
data class PackageSnippetChoice( | ||
/** | ||
* The provenance this snippet choice applies to. | ||
*/ | ||
val provenance: Provenance, | ||
|
||
/** | ||
* The snippet choices for this package. | ||
*/ | ||
val snippetChoices: List<SnippetChoice> | ||
) | ||
|
||
/** | ||
* The URL of the [RepositoryProvenance] the snippet choice applies to. | ||
*/ | ||
data class Provenance(val url: String) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright (C) 2023 The ORT Project Authors (see <https://github.com/oss-review-toolkit/ort/blob/main/NOTICE>) | ||
* | ||
* 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 | ||
* | ||
* https://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. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* License-Filename: LICENSE | ||
*/ | ||
|
||
package org.ossreviewtoolkit.model.config | ||
|
||
import org.ossreviewtoolkit.model.TextLocation | ||
|
||
/** | ||
* A snippet choice for a given source file. | ||
*/ | ||
data class SnippetChoice( | ||
/** | ||
* The source file criteria for which the snippet choice is made. | ||
*/ | ||
val given: Given, | ||
|
||
/** | ||
* The snippet criteria to make the snippet choice. | ||
*/ | ||
val choice: Choice | ||
) | ||
|
||
data class Given( | ||
/** | ||
* The source file for which the snippet choice is made. | ||
*/ | ||
val sourceLocation: TextLocation | ||
) | ||
|
||
data class Choice( | ||
/** | ||
* The purl of the snippet chosen by this snippet choice. It [reason] is [SnippetChoiceReason.NO_RELEVANT_FINDING], | ||
* it is null. | ||
*/ | ||
val purl: String? = null, | ||
|
||
/** | ||
* The reason why this snippet choice was made. | ||
*/ | ||
val reason: SnippetChoiceReason, | ||
|
||
/** | ||
* An optional comment describing the snippet choice. | ||
*/ | ||
val comment: String? = null | ||
) |
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,37 @@ | ||
/* | ||
* Copyright (C) 2024 The ORT Project Authors (see <https://github.com/oss-review-toolkit/ort/blob/main/NOTICE>) | ||
* | ||
* 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 | ||
* | ||
* https://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. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* License-Filename: LICENSE | ||
*/ | ||
|
||
package org.ossreviewtoolkit.model.config | ||
|
||
enum class SnippetChoiceReason { | ||
/** | ||
* No relevant finding has been found for the corresponding source file. All snippets will be ignored. | ||
*/ | ||
NO_RELEVANT_FINDING, | ||
|
||
/** | ||
* One snippet finding is relevant for the corresponding source file. All other snippets will be ignored. | ||
*/ | ||
ORIGINAL_FINDING, | ||
|
||
/** | ||
* Other reason. | ||
*/ | ||
OTHER | ||
} |
Oops, something went wrong.