-
-
Notifications
You must be signed in to change notification settings - Fork 65
feat: move output.BomRefDiscriminator to contrib.bom.utils.BomRefDiscriminator
#995
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
Open
jkowalleck
wants to merge
15
commits into
main
Choose a base branch
from
refactor/BomRefDiscriminator-becomes-contrib
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
e2388e0
feat: move `output.BomRefDiscriminator` to `contrib.bom.utils.BomRefD…
jkowalleck fad302a
feat: move `output.BomRefDiscriminator` to `contrib.bom.utils.BomRefD…
jkowalleck 517cccc
feat: move `output.BomRefDiscriminator` to `contrib.bom.utils.BomRefD…
jkowalleck 56eb42f
feat: move `output.BomRefDiscriminator` to `contrib.bom.utils.BomRefD…
jkowalleck c68b523
feat: move `output.BomRefDiscriminator` to `contrib.bom.utils.BomRefD…
jkowalleck 234f0de
wip
jkowalleck 6477a03
docs
jkowalleck 2105fed
tests
jkowalleck 6affeb9
tests
jkowalleck 8b60b64
tests
jkowalleck 057bd47
docs
jkowalleck 9f7c966
docs
jkowalleck c37a0a6
docs
jkowalleck 44c50fa
tests
jkowalleck 5415f26
tests
jkowalleck 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
Some comments aren't visible on the classic Files Changed page.
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 |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # This file is part of CycloneDX Python Library | ||
| # | ||
| # 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. | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # Copyright (c) OWASP Foundation. All Rights Reserved. | ||
|
|
||
| """Bom related functionality""" |
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,92 @@ | ||
| # This file is part of CycloneDX Python Library | ||
| # | ||
| # 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. | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # Copyright (c) OWASP Foundation. All Rights Reserved. | ||
|
|
||
| """Bom related utilities""" | ||
|
|
||
| __all__ = ['BomRefDiscriminator'] | ||
|
|
||
| from collections.abc import Iterable | ||
| from itertools import chain | ||
| from random import random | ||
| from typing import TYPE_CHECKING, Any | ||
|
|
||
| if TYPE_CHECKING: # pragma: no cover | ||
| from ...model.bom import Bom | ||
| from ...model.bom_ref import BomRef | ||
|
|
||
|
|
||
| class BomRefDiscriminator: | ||
| """ | ||
| Ensure that a collection of BomRef objects has unique, non‑empty values. | ||
|
|
||
| The discriminator inspects the provided BomRef instances and assigns new, | ||
| automatically generated identifiers to any BomRef whose value is missing | ||
| or duplicates another. Original values are preserved so they can be | ||
| restored later via `reset()` or by using this class as a context manager. | ||
| """ | ||
|
|
||
| def __init__(self, bomrefs: Iterable['BomRef'], prefix: str = 'BomRef') -> None: | ||
| # do not use dict/set here, different BomRefs with same value have same hash and would shadow each other | ||
| self._bomrefs = tuple((bomref, bomref.value) for bomref in bomrefs) | ||
| self._prefix = prefix | ||
|
|
||
| def __enter__(self) -> None: | ||
| self.discriminate() | ||
|
|
||
| def __exit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> None: | ||
| self.reset() | ||
|
|
||
| def discriminate(self) -> None: | ||
| """ | ||
| Enforce uniqueness across all BomRef values. | ||
|
|
||
| Any BomRef whose value is `None` or duplicates a previously encountered | ||
| value is assigned a newly generated unique identifier. | ||
| """ | ||
| known_values = [] | ||
| for bomref, _ in self._bomrefs: | ||
| value = bomref.value | ||
| if value is None or value in known_values: | ||
| value = self._make_unique() | ||
| bomref.value = value | ||
| known_values.append(value) | ||
|
|
||
| def reset(self) -> None: | ||
| """ | ||
| Restore all BomRef values to their original state. | ||
| """ | ||
| for bomref, original_value in self._bomrefs: | ||
| bomref.value = original_value | ||
|
|
||
| def _make_unique(self) -> str: | ||
| return f'{self._prefix}{str(random())[1:]}{str(random())[1:]}' # nosec B311 | ||
|
|
||
| @classmethod | ||
| def from_bom(cls, bom: 'Bom', prefix: str = 'BomRef') -> 'BomRefDiscriminator': | ||
| """ | ||
| Create a discriminator for all BomRefs contained within a BOM. | ||
|
|
||
| This includes BomRefs from | ||
| - components | ||
| - services | ||
| - vulnerabilities | ||
| """ | ||
| return cls(chain( | ||
| map(lambda c: c.bom_ref, bom._get_all_components()), | ||
| map(lambda s: s.bom_ref, bom.services), | ||
| map(lambda v: v.bom_ref, bom.vulnerabilities) | ||
| ), prefix) | ||
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
Empty file.
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,16 @@ | ||
| # This file is part of CycloneDX Python Library | ||
| # | ||
| # 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. | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # Copyright (c) OWASP Foundation. All Rights Reserved. |
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,48 @@ | ||
| # This file is part of CycloneDX Python Library | ||
| # | ||
| # 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. | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # Copyright (c) OWASP Foundation. All Rights Reserved. | ||
|
|
||
|
|
||
| from unittest import TestCase | ||
|
|
||
| from cyclonedx.contrib.bom.utils import BomRefDiscriminator | ||
| from cyclonedx.model.bom_ref import BomRef | ||
|
|
||
|
|
||
| class TestBomRefDiscriminator(TestCase): | ||
|
|
||
| def test_discriminate_and_reset_manually(self) -> None: | ||
| bomref1 = BomRef('djdlkfjdslkf') | ||
| bomref2 = BomRef('djdlkfjdslkf') | ||
| self.assertEqual(bomref1.value, bomref2.value, 'blank') | ||
| discr = BomRefDiscriminator([bomref1, bomref2]) | ||
| self.assertEqual(bomref1.value, bomref2.value, 'init') | ||
| discr.discriminate() | ||
| self.assertNotEqual(bomref1.value, bomref2.value, 'should be discriminated') | ||
| discr.reset() | ||
| self.assertEqual('djdlkfjdslkf', bomref1.value) | ||
| self.assertEqual('djdlkfjdslkf', bomref2.value) | ||
|
|
||
| def test_discriminate_and_reset_with(self) -> None: | ||
| bomref1 = BomRef('djdlkfjdslkf') | ||
| bomref2 = BomRef('djdlkfjdslkf') | ||
| self.assertEqual(bomref1.value, bomref2.value, 'blank') | ||
| discr = BomRefDiscriminator([bomref1, bomref2]) | ||
| self.assertEqual(bomref1.value, bomref2.value, 'init') | ||
| with discr: | ||
| self.assertNotEqual(bomref1.value, bomref2.value, 'should be discriminated') | ||
| self.assertEqual('djdlkfjdslkf', bomref1.value) | ||
| self.assertEqual('djdlkfjdslkf', bomref2.value) |
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.