Skip to content
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

feat!: 9.0.1 #777

Merged
merged 18 commits into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cyclonedx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

# !! version is managed by semantic_release
# do not use typing here, or else `semantic_release` might have issues finding the variable
__version__ = "8.9.0" # noqa:Q000
__version__ = "9.0.1-rc.1" # noqa:Q000
41 changes: 13 additions & 28 deletions cyclonedx/_internal/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __lt__(self, other: Any) -> bool:
return False
if o is None:
return True
return True if s < o else False
return bool(s < o)
return False

def __gt__(self, other: Any) -> bool:
Expand All @@ -54,44 +54,29 @@ def __gt__(self, other: Any) -> bool:
return True
if o is None:
return False
return True if s > o else False
return bool(s > o)
return False


class ComparableDict:
class ComparableDict(ComparableTuple):
"""
Allows comparison of dictionaries, allowing for missing/None values.
"""

def __init__(self, dict_: Dict[Any, Any]) -> None:
self._dict = dict_

def __lt__(self, other: Any) -> bool:
if not isinstance(other, ComparableDict):
return True
keys = sorted(self._dict.keys() | other._dict.keys())
return ComparableTuple(self._dict.get(k) for k in keys) \
< ComparableTuple(other._dict.get(k) for k in keys)

def __gt__(self, other: Any) -> bool:
if not isinstance(other, ComparableDict):
return False
keys = sorted(self._dict.keys() | other._dict.keys())
return ComparableTuple(self._dict.get(k) for k in keys) \
> ComparableTuple(other._dict.get(k) for k in keys)
def __new__(cls, d: Dict[Any, Any]) -> 'ComparableDict':
return super(ComparableDict, cls).__new__(cls, sorted(d.items()))


class ComparablePackageURL(ComparableTuple):
"""
Allows comparison of PackageURL, allowing for qualifiers.
"""

def __new__(cls, purl: 'PackageURL') -> 'ComparablePackageURL':
return super().__new__(
ComparablePackageURL, (
purl.type,
purl.namespace,
purl.version,
ComparableDict(purl.qualifiers) if isinstance(purl.qualifiers, dict) else purl.qualifiers,
purl.subpath
))
def __new__(cls, p: 'PackageURL') -> 'ComparablePackageURL':
return super(ComparablePackageURL, cls).__new__(cls, (
p.type,
p.namespace,
p.version,
ComparableDict(p.qualifiers) if isinstance(p.qualifiers, dict) else p.qualifiers,
p.subpath
))
6 changes: 3 additions & 3 deletions cyclonedx/factory/license.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

from ..exception.factory import InvalidLicenseExpressionException, InvalidSpdxLicenseException
from ..model.license import DisjunctiveLicense, LicenseExpression
from ..spdx import fixup_id as spdx_fixup, is_compound_expression as is_spdx_compound_expression
from ..spdx import fixup_id as spdx_fixup, is_expression as is_spdx_expression

if TYPE_CHECKING: # pragma: no cover
from ..model import AttachedText, XsUri
Expand Down Expand Up @@ -57,11 +57,11 @@ def make_with_expression(self, expression: str, *,
) -> LicenseExpression:
"""Make a :class:`cyclonedx.model.license.LicenseExpression` with a compound expression.

Utilizes :func:`cyclonedx.spdx.is_compound_expression`.
Utilizes :func:`cyclonedx.spdx.is_expression`.

:raises InvalidLicenseExpressionException: if param `value` is not known/supported license expression
"""
if is_spdx_compound_expression(expression):
if is_spdx_expression(expression):
return LicenseExpression(expression, acknowledgement=acknowledgement)
raise InvalidLicenseExpressionException(expression)

Expand Down
134 changes: 70 additions & 64 deletions cyclonedx/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from warnings import warn
from xml.etree.ElementTree import Element as XmlElement # nosec B405

import serializable
import py_serializable as serializable
from sortedcontainers import SortedSet

from .._internal.compare import ComparableTuple as _ComparableTuple
Expand Down Expand Up @@ -128,22 +128,23 @@ def classification(self) -> str:
def classification(self, classification: str) -> None:
self._classification = classification

def __comparable_tuple(self) -> _ComparableTuple:
return _ComparableTuple((
self.flow, self.classification
))

def __eq__(self, other: object) -> bool:
if isinstance(other, DataClassification):
return hash(other) == hash(self)
return self.__comparable_tuple() == other.__comparable_tuple()
return False

def __lt__(self, other: object) -> bool:
if isinstance(other, DataClassification):
return _ComparableTuple((
self.flow, self.classification
)) < _ComparableTuple((
other.flow, other.classification
))
return self.__comparable_tuple() < other.__comparable_tuple()
return NotImplemented

def __hash__(self) -> int:
return hash((self.flow, self.classification))
return hash(self.__comparable_tuple())

def __repr__(self) -> str:
return f'<DataClassification flow={self.flow}>'
Expand Down Expand Up @@ -231,22 +232,23 @@ def content(self) -> str:
def content(self, content: str) -> None:
self._content = content

def __comparable_tuple(self) -> _ComparableTuple:
return _ComparableTuple((
self.content_type, self.encoding, self.content,
))

def __eq__(self, other: object) -> bool:
if isinstance(other, AttachedText):
return hash(other) == hash(self)
return self.__comparable_tuple() == other.__comparable_tuple()
return False

def __lt__(self, other: Any) -> bool:
if isinstance(other, AttachedText):
return _ComparableTuple((
self.content_type, self.content, self.encoding
)) < _ComparableTuple((
other.content_type, other.content, other.encoding
))
return self.__comparable_tuple() < other.__comparable_tuple()
return NotImplemented

def __hash__(self) -> int:
return hash((self.content, self.content_type, self.encoding))
return hash(self.__comparable_tuple())

def __repr__(self) -> str:
return f'<AttachedText content-type={self.content_type}, encoding={self.encoding}>'
Expand Down Expand Up @@ -510,22 +512,23 @@ def content(self) -> str:
def content(self, content: str) -> None:
self._content = content

def __comparable_tuple(self) -> _ComparableTuple:
return _ComparableTuple((
self.alg, self.content
))

def __eq__(self, other: object) -> bool:
if isinstance(other, HashType):
return hash(other) == hash(self)
return self.__comparable_tuple() == other.__comparable_tuple()
return False

def __lt__(self, other: Any) -> bool:
if isinstance(other, HashType):
return _ComparableTuple((
self.alg, self.content
)) < _ComparableTuple((
other.alg, other.content
))
return self.__comparable_tuple() < other.__comparable_tuple()
return NotImplemented

def __hash__(self) -> int:
return hash((self.alg, self.content))
return hash(self.__comparable_tuple())

def __repr__(self) -> str:
return f'<HashType {self.alg.name}:{self.content}>'
Expand Down Expand Up @@ -728,7 +731,7 @@ def __init__(self, uri: str) -> None:

def __eq__(self, other: Any) -> bool:
if isinstance(other, XsUri):
return hash(other) == hash(self)
return self._uri == other._uri
return False

def __lt__(self, other: Any) -> bool:
Expand Down Expand Up @@ -887,25 +890,24 @@ def hashes(self) -> 'SortedSet[HashType]':
def hashes(self, hashes: Iterable[HashType]) -> None:
self._hashes = SortedSet(hashes)

def __comparable_tuple(self) -> _ComparableTuple:
return _ComparableTuple((
self._type, self._url, self._comment,
_ComparableTuple(self._hashes)
))

def __eq__(self, other: object) -> bool:
if isinstance(other, ExternalReference):
return hash(other) == hash(self)
return self.__comparable_tuple() == other.__comparable_tuple()
return False

def __lt__(self, other: Any) -> bool:
if isinstance(other, ExternalReference):
return _ComparableTuple((
self._type, self._url, self._comment
)) < _ComparableTuple((
other._type, other._url, other._comment
))
return self.__comparable_tuple() < other.__comparable_tuple()
return NotImplemented

def __hash__(self) -> int:
return hash((
self._type, self._url, self._comment,
tuple(sorted(self._hashes, key=hash))
))
return hash(self.__comparable_tuple())

def __repr__(self) -> str:
return f'<ExternalReference {self.type.name}, {self.url}>'
Expand Down Expand Up @@ -964,22 +966,23 @@ def value(self) -> Optional[str]:
def value(self, value: Optional[str]) -> None:
self._value = value

def __comparable_tuple(self) -> _ComparableTuple:
return _ComparableTuple((
self.name, self.value
))

def __eq__(self, other: object) -> bool:
if isinstance(other, Property):
return hash(other) == hash(self)
return self.__comparable_tuple() == other.__comparable_tuple()
return False

def __lt__(self, other: Any) -> bool:
if isinstance(other, Property):
return _ComparableTuple((
self.name, self.value
)) < _ComparableTuple((
other.name, other.value
))
return self.__comparable_tuple() < other.__comparable_tuple()
return NotImplemented

def __hash__(self) -> int:
return hash((self.name, self.value))
return hash(self.__comparable_tuple())

def __repr__(self) -> str:
return f'<Property name={self.name}>'
Expand Down Expand Up @@ -1055,22 +1058,23 @@ def encoding(self) -> Optional[Encoding]:
def encoding(self, encoding: Optional[Encoding]) -> None:
self._encoding = encoding

def __comparable_tuple(self) -> _ComparableTuple:
return _ComparableTuple((
self.content, self.content_type, self.encoding
))

def __eq__(self, other: object) -> bool:
if isinstance(other, NoteText):
return hash(other) == hash(self)
return self.__comparable_tuple() == other.__comparable_tuple()
return False

def __lt__(self, other: Any) -> bool:
if isinstance(other, NoteText):
return _ComparableTuple((
self.content, self.content_type, self.encoding
)) < _ComparableTuple((
other.content, other.content_type, other.encoding
))
return self.__comparable_tuple() < other.__comparable_tuple()
return NotImplemented

def __hash__(self) -> int:
return hash((self.content, self.content_type, self.encoding))
return hash(self.__comparable_tuple())

def __repr__(self) -> str:
return f'<NoteText content_type={self.content_type}, encoding={self.encoding}>'
Expand Down Expand Up @@ -1139,22 +1143,23 @@ def locale(self, locale: Optional[str]) -> None:
" ISO-3166 (or higher) country code. according to ISO-639 format. Examples include: 'en', 'en-US'."
)

def __comparable_tuple(self) -> _ComparableTuple:
return _ComparableTuple((
self.locale, self.text
))

def __eq__(self, other: object) -> bool:
if isinstance(other, Note):
return hash(other) == hash(self)
return self.__comparable_tuple() == other.__comparable_tuple()
return False

def __lt__(self, other: Any) -> bool:
if isinstance(other, Note):
return _ComparableTuple((
self.locale, self.text
)) < _ComparableTuple((
other.locale, other.text
))
return self.__comparable_tuple() < other.__comparable_tuple()
return NotImplemented

def __hash__(self) -> int:
return hash((self.text, self.locale))
return hash(self.__comparable_tuple())

def __repr__(self) -> str:
return f'<Note id={id(self)}, locale={self.locale}>'
Expand Down Expand Up @@ -1224,22 +1229,23 @@ def email(self) -> Optional[str]:
def email(self, email: Optional[str]) -> None:
self._email = email

def __comparable_tuple(self) -> _ComparableTuple:
return _ComparableTuple((
self.timestamp, self.name, self.email
))

def __eq__(self, other: object) -> bool:
if isinstance(other, IdentifiableAction):
return hash(other) == hash(self)
return self.__comparable_tuple() == other.__comparable_tuple()
return False

def __lt__(self, other: Any) -> bool:
if isinstance(other, IdentifiableAction):
return _ComparableTuple((
self.timestamp, self.name, self.email
)) < _ComparableTuple((
other.timestamp, other.name, other.email
))
return self.__comparable_tuple() < other.__comparable_tuple()
return NotImplemented

def __hash__(self) -> int:
return hash((self.timestamp, self.name, self.email))
return hash(self.__comparable_tuple())

def __repr__(self) -> str:
return f'<IdentifiableAction name={self.name}, email={self.email}>'
Expand Down Expand Up @@ -1277,16 +1283,16 @@ def text(self, text: str) -> None:

def __eq__(self, other: object) -> bool:
if isinstance(other, Copyright):
return hash(other) == hash(self)
return self._text == other._text
return False

def __lt__(self, other: Any) -> bool:
if isinstance(other, Copyright):
return self.text < other.text
return self._text < other._text
return NotImplemented

def __hash__(self) -> int:
return hash(self.text)
return hash(self._text)

def __repr__(self) -> str:
return f'<Copyright text={self.text}>'
Loading