# Copyright (C) 2018-2024 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
"""
Implementation of Software Heritage's data model
See :ref:`data-model` for an overview of the data model.
The classes defined in this module are immutable
`attrs objects <https://attrs.org/>`__ and enums.
All classes define a ``from_dict`` class method and a ``to_dict``
method to convert between them and msgpack-serializable objects.
"""
from __future__ import annotations
from abc import ABC, abstractmethod
import collections
import datetime
from enum import Enum
import hashlib
from typing import (
Any,
Callable,
Dict,
Iterable,
List,
Optional,
Tuple,
Type,
TypeVar,
Union,
)
import warnings
import attr
from attr._make import _AndValidator
from attr.validators import and_
from attrs_strict import AttributeTypeError
import dateutil.parser
import iso8601
from typing_extensions import Final
from . import git_objects
from .collections import ImmutableDict
from .hashutil import DEFAULT_ALGORITHMS, MultiHash, hash_to_bytehex, hash_to_hex
from .swhids import CoreSWHID
from .swhids import ExtendedObjectType as SwhidExtendedObjectType
from .swhids import ExtendedSWHID
from .swhids import ObjectType as SwhidObjectType
[docs]
class MissingData(Exception):
"""Raised by `Content.with_data` when it has no way of fetching the
data (but not when fetching the data fails)."""
pass
KeyType = Union[Dict[str, str], Dict[str, bytes], bytes]
"""The type returned by BaseModel.unique_key()."""
SHA1_SIZE = 20
_OFFSET_CHARS = frozenset(b"+-0123456789")
# TODO: Limit this to 20 bytes
Sha1Git = bytes
Sha1 = bytes
[docs]
def hash_repr(h: bytes) -> str:
if h is None:
return "None"
else:
return f"hash_to_bytes('{hash_to_hex(h)}')"
[docs]
def parents_repr(parents: Tuple[Sha1Git, ...]):
return repr(tuple(hash_repr(p) for p in parents)).replace('"', "")
[docs]
def freeze_optional_dict(
d: Union[None, Dict, ImmutableDict]
) -> Optional[ImmutableDict]:
if isinstance(d, dict):
return ImmutableDict(d)
else:
return d
[docs]
def dictify(value):
"Helper function used by BaseModel.to_dict()"
if isinstance(value, BaseModel):
return value.to_dict()
elif isinstance(value, (CoreSWHID, ExtendedSWHID)):
return str(value)
elif isinstance(value, Enum):
return value.value
elif isinstance(value, (dict, ImmutableDict)):
return {k: dictify(v) for k, v in value.items()}
elif isinstance(value, tuple):
return tuple(dictify(v) for v in value)
else:
return value
[docs]
def generic_type_validator(instance, attribute, value):
"""validates the type of an attribute value whatever the attribute type"""
raise NotImplementedError("generic type check should have been optimized")
def _true_validator(instance, attribute, value, expected_type=None, origin_value=None):
pass
def _none_validator(instance, attribute, value, expected_type=None, origin_value=None):
if value is not None:
if origin_value is None:
origin_value = value
raise AttributeTypeError(origin_value, attribute)
def _origin_type_validator(
instance, attribute, value, expected_type=None, origin_value=None
):
# This is functionally equivalent to using just this:
# return isinstance(value, type)
# but using type equality before isinstance allows very quick checks
# when the exact class is used (which is the overwhelming majority of cases)
# while still allowing subclasses to be used.
if expected_type is None:
expected_type = attribute.type
if not (type(value) is expected_type or isinstance(value, expected_type)):
if origin_value is None:
origin_value = value
raise AttributeTypeError(origin_value, attribute)
def _tuple_infinite_validator(
instance,
attribute,
value,
expected_type=None,
origin_value=None,
):
type_ = type(value)
if origin_value is None:
origin_value = value
if type_ != tuple and not isinstance(value, tuple):
raise AttributeTypeError(origin_value, attribute)
if expected_type is None:
expected_type = attribute.type
args = expected_type.__args__
# assert len(args) == 2 and args[1] is Ellipsis
expected_value_type = args[0]
validator = optimized_validator(expected_value_type)
for i in value:
validator(
instance,
attribute,
i,
expected_type=expected_value_type,
origin_value=origin_value,
)
def _tuple_bytes_bytes_validator(
instance,
attribute,
value,
expected_type=None,
origin_value=None,
):
type_ = type(value)
if type_ != tuple and not isinstance(value, tuple):
if origin_value is None:
origin_value = value
raise AttributeTypeError(origin_value, attribute)
if len(value) != 2:
if origin_value is None:
origin_value = value
raise AttributeTypeError(origin_value, attribute)
if type(value[0]) is not bytes or type(value[1]) is not bytes:
if origin_value is None:
origin_value = value
raise AttributeTypeError(origin_value, attribute)
def _tuple_finite_validator(
instance,
attribute,
value,
expected_type=None,
origin_value=None,
):
# might be useful to optimise the sub-validator tuple, in practice, we only
# have [bytes, bytes]
type_ = type(value)
if origin_value is None:
origin_value = value
if type_ != tuple and not isinstance(value, tuple):
raise AttributeTypeError(origin_value, attribute)
if expected_type is None:
expected_type = attribute.type
args = expected_type.__args__
# assert len(args) != 2 or args[1] is Ellipsis
if len(args) != len(value):
raise AttributeTypeError(origin_value, attribute)
for item_type, item in zip(args, value):
validator = optimized_validator(item_type)
validator(
instance,
attribute,
item,
expected_type=item_type,
origin_value=origin_value,
)
def _immutable_dict_validator(
instance,
attribute,
value,
expected_type=None,
origin_value=None,
):
value_type = type(value)
if origin_value is None:
origin_value = value
if value_type != ImmutableDict and not isinstance(value, ImmutableDict):
raise AttributeTypeError(origin_value, attribute)
if expected_type is None:
expected_type = attribute.type
(expected_key_type, expected_value_type) = expected_type.__args__
key_validator = optimized_validator(expected_key_type)
value_validator = optimized_validator(expected_value_type)
for item_key, item_value in value.items():
key_validator(
instance,
attribute,
item_key,
expected_type=expected_key_type,
origin_value=origin_value,
)
value_validator(
instance,
attribute,
item_value,
expected_type=expected_value_type,
origin_value=origin_value,
)
[docs]
def optimized_validator(type_):
if type_ is object or type_ is Any:
return _true_validator
if type_ is None:
return _none_validator
origin = getattr(type_, "__origin__", None)
# Non-generic type, check it directly
if origin is None:
return _origin_type_validator
# Then, if it's a container, check its items.
if origin is tuple:
args = type_.__args__
if len(args) == 2 and args[1] is Ellipsis:
# Infinite tuple
return _tuple_infinite_validator
elif args == (bytes, bytes):
return _tuple_bytes_bytes_validator
else:
return _tuple_finite_validator
elif origin is Union:
args = type_.__args__
all_validators = tuple((optimized_validator(t), t) for t in args)
def union_validator(
instance,
attribute,
value,
expected_type=None,
origin_value=None,
):
if origin_value is None:
origin_value = value
for validator, type_ in all_validators:
try:
validator(
instance,
attribute,
value,
expected_type=type_,
origin_value=origin_value,
)
except AttributeTypeError:
pass
else:
break
else:
raise AttributeTypeError(origin_value, attribute)
return union_validator
elif origin is ImmutableDict:
return _immutable_dict_validator
# No need to check dict or list. because they are converted to ImmutableDict
# and tuple respectively.
raise NotImplementedError(f"Type-checking {type_}")
[docs]
def optimize_all_validators(cls, old_fields):
"""process validators to turn them into a faster version … eventually"""
new_fields = []
for f in old_fields:
validator = f.validator
if validator is generic_type_validator:
validator = optimized_validator(f.type)
elif isinstance(validator, _AndValidator):
new_and = []
for v in validator._validators:
if v is generic_type_validator:
v = optimized_validator(f.type)
new_and.append(v)
validator = and_(*new_and)
else:
validator = None
if validator is not None:
f = f.evolve(validator=validator)
new_fields.append(f)
if attr.__version__ < "21.3.0":
# https://github.com/python-attrs/attrs/issues/821
from attr._make import _make_attr_tuple_class
attr_names = [f.name for f in new_fields]
AttrsClass = _make_attr_tuple_class(cls.__name__, attr_names)
return AttrsClass(new_fields)
else:
return new_fields
ModelType = TypeVar("ModelType", bound="BaseModel")
HashableModelType = TypeVar("HashableModelType", bound="BaseHashableModel")
class _StringCompatibleEnum(Enum):
def __eq__(self, other):
# stay compatible with legacy string comparison (for now)
if isinstance(other, str):
warnings.warn(
"Use the enum value instead of string",
category=DeprecationWarning,
stacklevel=2,
)
return self.value == other
return super().__eq__(other)
def __str__(self):
# preserve interpolation property (for now)
return self.value
def __hash__(self):
# make sure we don't confuse dictionary key matching (for now)
return hash(str(self.value))
[docs]
class ModelObjectType(_StringCompatibleEnum):
"""Possible object types of Model object"""
CONTENT = "content"
DIRECTORY = "directory"
DIRECTORY_ENTRY = "directory_entry"
EXTID = "extid"
METADATA_AUTHORITY = "metadata_authority"
METADATA_FETCHER = "metadata_fetcher"
ORIGIN = "origin"
ORIGIN_VISIT = "origin_visit"
ORIGIN_VISIT_STATUS = "origin_visit_status"
PERSON = "person"
RAW_EXTRINSIC_METADATA = "raw_extrinsic_metadata"
RELEASE = "release"
REVISION = "revision"
SKIPPED_CONTENT = "skipped_content"
SNAPSHOT = "snapshot"
SNAPSHOT_BRANCH = "snapshot_branch"
TIMESTAMP = "timestamp"
TIMESTAMP_WITH_TIMEZONE = "timestamp_with_timezone"
[docs]
class BaseModel(ABC):
"""Base class for SWH model classes.
Provides serialization/deserialization to/from Python dictionaries,
that are suitable for JSON/msgpack-like formats."""
__slots__ = ()
@property
@abstractmethod
def object_type(self) -> ModelObjectType:
# Some juggling to please mypy
#
# Note: starting from Python 3.11 we can combine @property with
# @classmethod which is the real intend here.
raise NotImplementedError
[docs]
def to_dict(self):
"""Wrapper of `attr.asdict` that can be overridden by subclasses
that have special handling of some of the fields."""
return dictify(attr.asdict(self, recurse=False))
[docs]
@classmethod
def from_dict(cls, d):
"""Takes a dictionary representing a tree of SWH objects, and
recursively builds the corresponding objects."""
return cls(**d)
[docs]
def evolve(self: ModelType, **kwargs) -> ModelType:
"""Alias to call :func:`attr.evolve` on this object, returning a new object."""
return attr.evolve(self, **kwargs) # type: ignore[misc]
[docs]
def anonymize(self: ModelType) -> Optional[ModelType]:
"""Returns an anonymized version of the object, if needed.
If the object model does not need/support anonymization, returns None.
"""
return None
[docs]
def unique_key(self) -> KeyType:
"""Returns a unique key for this object, that can be used for
deduplication."""
raise NotImplementedError(f"unique_key for {self}")
[docs]
def check(self) -> None:
"""Performs internal consistency checks, and raises an error if one fails."""
# without the type-ignore comment below, attr >= 22.1.0 causes mypy to report:
# Argument 1 has incompatible type "BaseModel"; expected "AttrsInstance"
attr.validate(self) # type: ignore[arg-type]
def _compute_hash_from_manifest(manifest: bytes) -> Sha1Git:
return hashlib.new("sha1", manifest).digest()
[docs]
class BaseHashableModel(BaseModel, ABC):
"""Mixin to automatically compute object identifier hash when
the associated model is instantiated."""
__slots__ = ()
id: Sha1Git
[docs]
def compute_hash(self) -> bytes:
"""Derived model classes must implement this to compute
the object hash.
This method is called by the object initialization if the `id`
attribute is set to an empty value.
"""
return self._compute_hash_from_attributes()
@abstractmethod
def _compute_hash_from_attributes(self) -> Sha1Git:
raise NotImplementedError(f"_compute_hash_from_attributes for {self}")
def __attrs_post_init__(self):
if not self.id:
obj_id = self.compute_hash()
object.__setattr__(self, "id", obj_id)
[docs]
def evolve(self: HashableModelType, **kwargs) -> HashableModelType:
"""Alias to call :func:`attr.evolve` on this object, returning a new object
with its ``id`` recomputed based on the content."""
if "id" in kwargs:
raise TypeError(
f"{self.__class__.__name__}.evolve recomputes the id itself; "
f"use attr.evolve to change the id manually."
)
obj = attr.evolve(self, **kwargs) # type: ignore[misc]
new_hash = obj.compute_hash()
return attr.evolve(obj, id=new_hash) # type: ignore[misc]
[docs]
def unique_key(self) -> KeyType:
return self.id
[docs]
def check(self) -> None:
super().check()
if self.id != self.compute_hash():
raise ValueError("'id' does not match recomputed hash.")
HashableObject = BaseHashableModel # deprecated alias
[docs]
class HashableObjectWithManifest(BaseHashableModel):
"""Derived class of BaseHashableModel, for objects that may need to store
verbatim git objects as ``raw_manifest`` to preserve original hashes."""
__slots__ = ()
raw_manifest: Optional[bytes] = None
"""Stores the original content of git objects when they cannot be faithfully
represented using only the other attributes.
This should only be used as a last resort, and only set in the Git loader,
for objects too corrupt to fit the data model."""
[docs]
def to_dict(self):
d = super().to_dict()
if d["raw_manifest"] is None:
del d["raw_manifest"]
return d
[docs]
def compute_hash(self) -> bytes:
"""Derived model classes must implement this to compute
the object hash.
This method is called by the object initialization if the `id`
attribute is set to an empty value.
"""
if self.raw_manifest is None:
return super().compute_hash() # calls self._compute_hash_from_attributes()
else:
return _compute_hash_from_manifest(self.raw_manifest)
[docs]
def check(self) -> None:
super().check()
if (
self.raw_manifest is not None
and self.id == self._compute_hash_from_attributes()
):
raise ValueError(
f"{self} has a non-none raw_manifest attribute, but does not need it."
)
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class Person(BaseModel):
"""Represents the author/committer of a revision or release."""
object_type: Final = ModelObjectType.PERSON
fullname = attr.ib(type=bytes, validator=generic_type_validator)
name = attr.ib(type=Optional[bytes], validator=generic_type_validator, eq=False)
email = attr.ib(type=Optional[bytes], validator=generic_type_validator, eq=False)
[docs]
@classmethod
def from_fullname(cls, fullname: bytes):
"""Returns a Person object, by guessing the name and email from the
fullname, in the `name <email>` format.
The fullname is left unchanged."""
if fullname is None:
raise TypeError("fullname is None.")
name: Optional[bytes]
email: Optional[bytes]
try:
open_bracket = fullname.index(b"<")
except ValueError:
name = fullname
email = None
else:
raw_name = fullname[:open_bracket]
raw_email = fullname[open_bracket + 1 :]
if not raw_name:
name = None
else:
name = raw_name.strip()
try:
close_bracket = raw_email.rindex(b">")
except ValueError:
email = raw_email
else:
email = raw_email[:close_bracket]
return Person(
name=name or None,
email=email or None,
fullname=fullname,
)
[docs]
def anonymize(self) -> Person:
"""Returns an anonymized version of the Person object.
Anonymization is simply a Person which fullname is the hashed, with unset name
or email.
"""
return Person(
fullname=hashlib.sha256(self.fullname).digest(),
name=None,
email=None,
)
[docs]
@classmethod
def from_dict(cls, d):
"""
If the fullname is missing, construct a fullname
using the following heuristics: if the name value is None, we return the
email in angle brackets, else, we return the name, a space, and the email
in angle brackets.
"""
if "fullname" not in d:
parts = []
if d["name"] is not None:
parts.append(d["name"])
if d["email"] is not None:
parts.append(b"".join([b"<", d["email"], b">"]))
fullname = b" ".join(parts)
d = {**d, "fullname": fullname}
d = {"name": None, "email": None, **d}
return super().from_dict(d)
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class Timestamp(BaseModel):
"""Represents a naive timestamp from a VCS."""
object_type: Final = ModelObjectType.TIMESTAMP
seconds = attr.ib(type=int)
microseconds = attr.ib(type=int)
[docs]
@seconds.validator
def check_seconds(self, attribute, value):
"""Check that seconds fit in a 64-bits signed integer."""
if value.__class__ is not int:
raise AttributeTypeError(value, attribute)
if not (-(2**63) <= value < 2**63):
raise ValueError("Seconds must be a signed 64-bits integer.")
[docs]
@microseconds.validator
def check_microseconds(self, attribute, value):
"""Checks that microseconds are positive and < 1000000."""
if value.__class__ is not int:
raise AttributeTypeError(value, attribute)
if not (0 <= value < 10**6):
raise ValueError("Microseconds must be in [0, 1000000[.")
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class TimestampWithTimezone(BaseModel):
"""Represents a TZ-aware timestamp from a VCS."""
object_type: Final = ModelObjectType.TIMESTAMP_WITH_TIMEZONE
timestamp = attr.ib(type=Timestamp, validator=generic_type_validator)
offset_bytes = attr.ib(type=bytes, validator=generic_type_validator)
"""Raw git representation of the timezone, as an offset from UTC.
It should follow this format: ``+HHMM`` or ``-HHMM`` (including ``+0000`` and
``-0000``).
However, when created from git objects, it must be the exact bytes used in the
original objects, so it may differ from this format when they do.
"""
[docs]
@classmethod
def from_numeric_offset(
cls, timestamp: Timestamp, offset: int, negative_utc: bool
) -> TimestampWithTimezone:
"""Returns a :class:`TimestampWithTimezone` instance from the old dictionary
format (with ``offset`` and ``negative_utc`` instead of ``offset_bytes``).
"""
negative = offset < 0 or negative_utc
(hours, minutes) = divmod(abs(offset), 60)
offset_bytes = f"{'-' if negative else '+'}{hours:02}{minutes:02}".encode()
tstz = TimestampWithTimezone(timestamp=timestamp, offset_bytes=offset_bytes)
assert tstz.offset_minutes() == offset, (tstz.offset_minutes(), offset)
return tstz
[docs]
@classmethod
def from_dict(
cls, time_representation: Union[Dict, datetime.datetime, int]
) -> TimestampWithTimezone:
"""Builds a TimestampWithTimezone from any of the formats
accepted by :func:`swh.model.normalize_timestamp`."""
# TODO: this accept way more types than just dicts; find a better
# name
if isinstance(time_representation, dict):
ts = time_representation["timestamp"]
if isinstance(ts, dict):
seconds = ts.get("seconds", 0)
microseconds = ts.get("microseconds", 0)
elif isinstance(ts, int):
seconds = ts
microseconds = 0
else:
raise ValueError(
f"TimestampWithTimezone.from_dict received non-integer timestamp "
f"member {ts!r}"
)
timestamp = Timestamp(seconds=seconds, microseconds=microseconds)
if "offset_bytes" in time_representation:
return cls(
timestamp=timestamp,
offset_bytes=time_representation["offset_bytes"],
)
else:
# old format
offset = time_representation["offset"]
negative_utc = time_representation.get("negative_utc") or False
return cls.from_numeric_offset(timestamp, offset, negative_utc)
elif isinstance(time_representation, datetime.datetime):
# TODO: warn when using from_dict() on a datetime
utcoffset = time_representation.utcoffset()
time_representation = time_representation.astimezone(datetime.timezone.utc)
microseconds = time_representation.microsecond
if microseconds:
time_representation = time_representation.replace(microsecond=0)
seconds = int(time_representation.timestamp())
if utcoffset is None:
raise ValueError(
f"TimestampWithTimezone.from_dict received datetime without "
f"timezone: {time_representation}"
)
# utcoffset is an integer number of minutes
seconds_offset = utcoffset.total_seconds()
offset = int(seconds_offset) // 60
# TODO: warn if remainder is not zero
return cls.from_numeric_offset(
Timestamp(seconds=seconds, microseconds=microseconds), offset, False
)
elif isinstance(time_representation, int):
# TODO: warn when using from_dict() on an int
seconds = time_representation
timestamp = Timestamp(seconds=time_representation, microseconds=0)
return cls(timestamp=timestamp, offset_bytes=b"+0000")
else:
raise ValueError(
f"TimestampWithTimezone.from_dict received non-integer timestamp: "
f"{time_representation!r}"
)
[docs]
@classmethod
def from_datetime(cls, dt: datetime.datetime) -> TimestampWithTimezone:
return cls.from_dict(dt)
[docs]
def to_datetime(self) -> datetime.datetime:
"""Convert to a datetime (with a timezone set to the recorded fixed UTC offset)
Beware that this conversion can be lossy: ``-0000`` and 'weird' offsets
cannot be represented. Also note that it may fail due to type overflow.
"""
timestamp = datetime.datetime.fromtimestamp(
self.timestamp.seconds,
datetime.timezone(datetime.timedelta(minutes=self.offset_minutes())),
)
timestamp = timestamp.replace(microsecond=self.timestamp.microseconds)
return timestamp
[docs]
@classmethod
def from_iso8601(cls, s):
"""Builds a TimestampWithTimezone from an ISO8601-formatted string."""
dt = iso8601.parse_date(s)
tstz = cls.from_datetime(dt)
if dt.tzname() == "-00:00":
assert tstz.offset_bytes == b"+0000"
tstz = attr.evolve(tstz, offset_bytes=b"-0000")
return tstz
@staticmethod
def _parse_offset_bytes(offset_bytes: bytes) -> int:
"""Parses an ``offset_bytes`` value (in Git's ``[+-]HHMM`` format),
and returns the corresponding numeric values (in number of minutes).
Tries to account for some mistakes in the format, to support incorrect
Git implementations.
>>> TimestampWithTimezone._parse_offset_bytes(b"+0000")
0
>>> TimestampWithTimezone._parse_offset_bytes(b"-0000")
0
>>> TimestampWithTimezone._parse_offset_bytes(b"+0200")
120
>>> TimestampWithTimezone._parse_offset_bytes(b"-0200")
-120
>>> TimestampWithTimezone._parse_offset_bytes(b"+200")
120
>>> TimestampWithTimezone._parse_offset_bytes(b"-200")
-120
>>> TimestampWithTimezone._parse_offset_bytes(b"+02")
120
>>> TimestampWithTimezone._parse_offset_bytes(b"-02")
-120
>>> TimestampWithTimezone._parse_offset_bytes(b"+0010")
10
>>> TimestampWithTimezone._parse_offset_bytes(b"-0010")
-10
>>> TimestampWithTimezone._parse_offset_bytes(b"+200000000000000000")
0
>>> TimestampWithTimezone._parse_offset_bytes(b"+0160") # 60 minutes...
0
"""
offset_str = offset_bytes.decode()
assert offset_str[0] in "+-"
sign = int(offset_str[0] + "1")
if len(offset_str) <= 3:
hours = int(offset_str[1:])
minutes = 0
else:
hours = int(offset_str[1:-2])
minutes = int(offset_str[-2:])
offset = sign * (hours * 60 + minutes)
if (0 <= minutes <= 59) and (-(2**15) <= offset < 2**15):
return offset
else:
# can't parse it to a reasonable value; give up and pretend it's UTC.
return 0
[docs]
def offset_minutes(self):
"""Returns the offset, as a number of minutes since UTC.
>>> TimestampWithTimezone(
... Timestamp(seconds=1642765364, microseconds=0), offset_bytes=b"+0000"
... ).offset_minutes()
0
>>> TimestampWithTimezone(
... Timestamp(seconds=1642765364, microseconds=0), offset_bytes=b"+0200"
... ).offset_minutes()
120
>>> TimestampWithTimezone(
... Timestamp(seconds=1642765364, microseconds=0), offset_bytes=b"-0200"
... ).offset_minutes()
-120
>>> TimestampWithTimezone(
... Timestamp(seconds=1642765364, microseconds=0), offset_bytes=b"+0530"
... ).offset_minutes()
330
"""
return self._parse_offset_bytes(self.offset_bytes)
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class Origin(BaseHashableModel):
"""Represents a software source: a VCS and an URL."""
object_type: Final = ModelObjectType.ORIGIN
url = attr.ib(type=str, validator=generic_type_validator)
id = attr.ib(type=Sha1Git, validator=generic_type_validator, default=b"")
[docs]
def unique_key(self) -> KeyType:
return {"url": self.url}
def _compute_hash_from_attributes(self) -> bytes:
return _compute_hash_from_manifest(self.url.encode("utf-8"))
[docs]
def swhid(self) -> ExtendedSWHID:
"""Returns a SWHID representing this origin."""
return ExtendedSWHID(
object_type=SwhidExtendedObjectType.ORIGIN,
object_id=self.id,
)
[docs]
@url.validator
def check_url(self, attribute, value):
if len(value.encode()) >= 2048:
# Rationale for this value:
# 1. Needs to be stored in a postgresql btree, which is limited to
# somewhere around 2700 bytes
# 2. URLs longer than 2048 characters won't work very well in browsers,
# and repository URLs are often meant to at least display something
# when opened in a browser. https://stackoverflow.com/a/417184/539465
# 3. Even though this field is actually an IRI, it is usually in ASCII
# so this should be a good-enough approximation
raise ValueError("Origin URL is too long")
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class OriginVisit(BaseModel):
"""Represents an origin visit with a given type at a given point in time, by a
SWH loader."""
object_type: Final = ModelObjectType.ORIGIN_VISIT
origin = attr.ib(type=str, validator=generic_type_validator)
date = attr.ib(type=datetime.datetime)
type = attr.ib(type=str, validator=generic_type_validator)
"""Should not be set before calling 'origin_visit_add()'."""
visit = attr.ib(type=Optional[int], validator=generic_type_validator, default=None)
[docs]
@date.validator
def check_date(self, attribute, value):
"""Checks the date has a timezone."""
if value.__class__ is not datetime.datetime:
raise AttributeTypeError(value, attribute)
if value is not None and value.tzinfo is None:
raise ValueError("date must be a timezone-aware datetime.")
[docs]
def to_dict(self):
"""Serializes the date as a string and omits the visit id if it is
`None`."""
ov = super().to_dict()
if ov["visit"] is None:
del ov["visit"]
return ov
[docs]
def unique_key(self) -> KeyType:
return {"origin": self.origin, "date": str(self.date)}
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class OriginVisitStatus(BaseModel):
"""Represents a visit update of an origin at a given point in time."""
object_type: Final = ModelObjectType.ORIGIN_VISIT_STATUS
origin = attr.ib(type=str, validator=generic_type_validator)
visit = attr.ib(type=int, validator=generic_type_validator)
date = attr.ib(type=datetime.datetime)
status = attr.ib(
type=str,
validator=attr.validators.in_(
["created", "ongoing", "full", "partial", "not_found", "failed"]
),
)
snapshot = attr.ib(
type=Optional[Sha1Git], validator=generic_type_validator, repr=hash_repr
)
# Type is optional be to able to use it before adding it to the database model
type = attr.ib(type=Optional[str], validator=generic_type_validator, default=None)
metadata = attr.ib(
type=Optional[ImmutableDict[str, object]],
validator=generic_type_validator,
converter=freeze_optional_dict,
default=None,
)
[docs]
@date.validator
def check_date(self, attribute, value):
"""Checks the date has a timezone."""
if value.__class__ is not datetime.datetime:
raise AttributeTypeError(value, attribute)
if value is not None and value.tzinfo is None:
raise ValueError("date must be a timezone-aware datetime.")
[docs]
def unique_key(self) -> KeyType:
return {"origin": self.origin, "visit": str(self.visit), "date": str(self.date)}
[docs]
def origin_swhid(self) -> ExtendedSWHID:
return Origin(url=self.origin).swhid()
[docs]
def snapshot_swhid(self) -> Optional[CoreSWHID]:
if self.snapshot is None:
return None
return CoreSWHID(object_type=SwhidObjectType.SNAPSHOT, object_id=self.snapshot)
[docs]
class SnapshotTargetType(Enum):
"""The type of content pointed to by a snapshot branch. Usually a
revision or an alias."""
CONTENT = "content"
DIRECTORY = "directory"
REVISION = "revision"
RELEASE = "release"
SNAPSHOT = "snapshot"
ALIAS = "alias"
def __repr__(self):
return f"SnapshotTargetType.{self.name}"
# Remove this compatibility trick once all user have been migrated.
#
# We cannot use @deprecated as this would modify SnapshotTargetType directly
TargetType = SnapshotTargetType
[docs]
class ReleaseTargetType(Enum):
"""The type of content pointed to by a release. Usually a revision"""
CONTENT = "content"
DIRECTORY = "directory"
REVISION = "revision"
RELEASE = "release"
SNAPSHOT = "snapshot"
def __repr__(self):
return f"ReleaseTargetType.{self.name}"
# Remove this compatibility trick once all user have been migrated.
#
# We cannot use @deprecated as this would modify SnapshotTargetType directly
ObjectType = ReleaseTargetType
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class SnapshotBranch(BaseModel):
"""Represents one of the branches of a snapshot."""
object_type: Final = ModelObjectType.SNAPSHOT_BRANCH
target = attr.ib(type=bytes, repr=hash_repr)
target_type = attr.ib(type=SnapshotTargetType, validator=generic_type_validator)
[docs]
@target.validator
def check_target(self, attribute, value):
"""Checks the target type is not an alias, checks the target is a
valid sha1_git."""
if value.__class__ is not bytes:
raise AttributeTypeError(value, attribute)
if self.target_type != SnapshotTargetType.ALIAS and self.target is not None:
if len(value) != 20:
raise ValueError("Wrong length for bytes identifier: %d" % len(value))
[docs]
@classmethod
def from_dict(cls, d):
return cls(target=d["target"], target_type=SnapshotTargetType(d["target_type"]))
[docs]
def swhid(self) -> Optional[CoreSWHID]:
"""Returns a SWHID for the current branch or None if the branch has no
target or is an alias."""
if self.target is None or self.target_type == SnapshotTargetType.ALIAS:
return None
return CoreSWHID(
object_id=self.target, object_type=SwhidObjectType[self.target_type.name]
)
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class Snapshot(BaseHashableModel):
"""Represents the full state of an origin at a given point in time."""
object_type: Final = ModelObjectType.SNAPSHOT
branches = attr.ib(
type=ImmutableDict[bytes, Optional[SnapshotBranch]],
validator=generic_type_validator,
converter=freeze_optional_dict,
)
id = attr.ib(
type=Sha1Git, validator=generic_type_validator, default=b"", repr=hash_repr
)
def _compute_hash_from_attributes(self) -> bytes:
return _compute_hash_from_manifest(
git_objects.snapshot_git_object(self, ignore_unresolved=True)
)
[docs]
@classmethod
def from_dict(cls, d):
d = d.copy()
return cls(
branches=ImmutableDict(
(name, SnapshotBranch.from_dict(branch) if branch else None)
for (name, branch) in d.pop("branches").items()
),
**d,
)
[docs]
def swhid(self) -> CoreSWHID:
"""Returns a SWHID representing this object."""
return CoreSWHID(object_type=SwhidObjectType.SNAPSHOT, object_id=self.id)
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class Release(HashableObjectWithManifest, BaseModel):
object_type: Final = ModelObjectType.RELEASE
name = attr.ib(type=bytes, validator=generic_type_validator)
message = attr.ib(type=Optional[bytes], validator=generic_type_validator)
target = attr.ib(
type=Optional[Sha1Git], validator=generic_type_validator, repr=hash_repr
)
target_type = attr.ib(type=ReleaseTargetType, validator=generic_type_validator)
synthetic = attr.ib(type=bool, validator=generic_type_validator)
author = attr.ib(
type=Optional[Person], validator=generic_type_validator, default=None
)
date = attr.ib(
type=Optional[TimestampWithTimezone],
validator=generic_type_validator,
default=None,
)
metadata = attr.ib(
type=Optional[ImmutableDict[str, object]],
validator=generic_type_validator,
converter=freeze_optional_dict,
default=None,
)
id = attr.ib(
type=Sha1Git, validator=generic_type_validator, default=b"", repr=hash_repr
)
raw_manifest = attr.ib(type=Optional[bytes], default=None)
def _compute_hash_from_attributes(self) -> bytes:
return _compute_hash_from_manifest(git_objects.release_git_object(self))
[docs]
@author.validator
def check_author(self, attribute, value):
"""If the author is `None`, checks the date is `None` too."""
if self.author is None and self.date is not None:
raise ValueError("release date must be None if author is None.")
[docs]
def to_dict(self):
rel = super().to_dict()
if rel["metadata"] is None:
del rel["metadata"]
return rel
[docs]
@classmethod
def from_dict(cls, d):
d = d.copy()
if d.get("author"):
d["author"] = Person.from_dict(d["author"])
if d.get("date"):
d["date"] = TimestampWithTimezone.from_dict(d["date"])
return cls(target_type=ReleaseTargetType(d.pop("target_type")), **d)
[docs]
def swhid(self) -> CoreSWHID:
"""Returns a SWHID representing this object."""
return CoreSWHID(object_type=SwhidObjectType.RELEASE, object_id=self.id)
[docs]
def target_swhid(self) -> Optional[CoreSWHID]:
"""Returns the SWHID for the target of this release or None if unset."""
if self.target is None:
return None
return CoreSWHID(
object_id=self.target, object_type=SwhidObjectType[self.target_type.name]
)
[docs]
def anonymize(self) -> Release:
"""Returns an anonymized version of the Release object.
Anonymization consists in replacing the author with an anonymized Person object.
"""
author = self.author and self.author.anonymize()
return attr.evolve(self, author=author)
[docs]
class RevisionType(Enum):
GIT = "git"
TAR = "tar"
DSC = "dsc"
SUBVERSION = "svn"
MERCURIAL = "hg"
CVS = "cvs"
BAZAAR = "bzr"
def __repr__(self):
return f"RevisionType.{self.name}"
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class Revision(HashableObjectWithManifest, BaseModel):
object_type: Final = ModelObjectType.REVISION
message = attr.ib(type=Optional[bytes], validator=generic_type_validator)
author = attr.ib(type=Optional[Person], validator=generic_type_validator)
committer = attr.ib(type=Optional[Person], validator=generic_type_validator)
date = attr.ib(
type=Optional[TimestampWithTimezone], validator=generic_type_validator
)
committer_date = attr.ib(
type=Optional[TimestampWithTimezone], validator=generic_type_validator
)
type = attr.ib(type=RevisionType, validator=generic_type_validator)
directory = attr.ib(type=Sha1Git, validator=generic_type_validator, repr=hash_repr)
synthetic = attr.ib(type=bool, validator=generic_type_validator)
metadata = attr.ib(
type=Optional[ImmutableDict[str, object]],
validator=generic_type_validator,
converter=freeze_optional_dict,
default=None,
)
parents = attr.ib(
type=Tuple[Sha1Git, ...],
validator=generic_type_validator,
default=(),
repr=parents_repr,
)
id = attr.ib(
type=Sha1Git, validator=generic_type_validator, default=b"", repr=hash_repr
)
extra_headers = attr.ib(
type=Tuple[Tuple[bytes, bytes], ...],
validator=generic_type_validator,
converter=tuplify_extra_headers,
default=(),
)
raw_manifest = attr.ib(type=Optional[bytes], default=None)
def __attrs_post_init__(self):
super().__attrs_post_init__()
# ensure metadata is a deep copy of whatever was given, and if needed
# extract extra_headers from there
if self.metadata:
metadata = self.metadata
if not self.extra_headers and "extra_headers" in metadata:
(extra_headers, metadata) = metadata.copy_pop("extra_headers")
object.__setattr__(
self,
"extra_headers",
tuplify_extra_headers(extra_headers),
)
attr.validate(self)
object.__setattr__(self, "metadata", metadata)
def _compute_hash_from_attributes(self) -> bytes:
return _compute_hash_from_manifest(git_objects.revision_git_object(self))
[docs]
@author.validator
def check_author(self, attribute, value):
"""If the author is `None`, checks the date is `None` too."""
if self.author is None and self.date is not None:
raise ValueError("revision date must be None if author is None.")
[docs]
@committer.validator
def check_committer(self, attribute, value):
"""If the committer is `None`, checks the committer_date is `None` too."""
if self.committer is None and self.committer_date is not None:
raise ValueError(
"revision committer_date must be None if committer is None."
)
[docs]
@classmethod
def from_dict(cls, d):
d = d.copy()
date = d.pop("date")
if date:
date = TimestampWithTimezone.from_dict(date)
committer_date = d.pop("committer_date")
if committer_date:
committer_date = TimestampWithTimezone.from_dict(committer_date)
author = d.pop("author")
if author:
author = Person.from_dict(author)
committer = d.pop("committer")
if committer:
committer = Person.from_dict(committer)
return cls(
author=author,
committer=committer,
date=date,
committer_date=committer_date,
type=RevisionType(d.pop("type")),
parents=tuple(d.pop("parents")), # for BW compat
**d,
)
[docs]
def swhid(self) -> CoreSWHID:
"""Returns a SWHID representing this object."""
return CoreSWHID(object_type=SwhidObjectType.REVISION, object_id=self.id)
[docs]
def directory_swhid(self) -> CoreSWHID:
"""Returns the SWHID for the directory referenced by the revision."""
return CoreSWHID(
object_type=SwhidObjectType.DIRECTORY, object_id=self.directory
)
[docs]
def parent_swhids(self) -> List[CoreSWHID]:
"""Returns a list of SWHID for the parent revisions."""
return [
CoreSWHID(object_type=SwhidObjectType.REVISION, object_id=parent)
for parent in self.parents
]
[docs]
def anonymize(self) -> Revision:
"""Returns an anonymized version of the Revision object.
Anonymization consists in replacing the author and committer with an anonymized
Person object.
"""
return attr.evolve(
self,
author=None if self.author is None else self.author.anonymize(),
committer=None if self.committer is None else self.committer.anonymize(),
)
_DIR_ENTRY_TYPES = ["file", "dir", "rev"]
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class DirectoryEntry(BaseModel):
object_type: Final = ModelObjectType.DIRECTORY_ENTRY
name = attr.ib(type=bytes)
type = attr.ib(type=str, validator=attr.validators.in_(_DIR_ENTRY_TYPES))
target = attr.ib(type=Sha1Git, validator=generic_type_validator, repr=hash_repr)
perms = attr.ib(type=int, validator=generic_type_validator, converter=int, repr=oct)
"""Usually one of the values of `swh.model.from_disk.DentryPerms`."""
DIR_ENTRY_TYPE_TO_SWHID_OBJECT_TYPE = {
"file": SwhidObjectType.CONTENT,
"dir": SwhidObjectType.DIRECTORY,
"rev": SwhidObjectType.REVISION,
}
[docs]
@name.validator
def check_name(self, attribute, value):
if value.__class__ is not bytes:
raise AttributeTypeError(value, attribute)
if b"/" in value:
raise ValueError(f"{value!r} is not a valid directory entry name.")
[docs]
def swhid(self) -> CoreSWHID:
"""Returns a SWHID for this directory entry"""
return CoreSWHID(
object_type=DirectoryEntry.DIR_ENTRY_TYPE_TO_SWHID_OBJECT_TYPE[self.type],
object_id=self.target,
)
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class Directory(HashableObjectWithManifest, BaseModel):
object_type: Final = ModelObjectType.DIRECTORY
entries = attr.ib(type=Tuple[DirectoryEntry, ...], validator=generic_type_validator)
id = attr.ib(
type=Sha1Git, validator=generic_type_validator, default=b"", repr=hash_repr
)
raw_manifest = attr.ib(type=Optional[bytes], default=None)
def _compute_hash_from_attributes(self) -> bytes:
return _compute_hash_from_manifest(git_objects.directory_git_object(self))
[docs]
@entries.validator
def check_entries(self, attribute, value):
seen = set()
for entry in value:
if entry.name in seen:
# Cannot use self.swhid() here, self.id may be None
raise ValueError(
f"swh:1:dir:{hash_to_hex(self.id)} has duplicated entry name: "
f"{entry.name!r}"
)
seen.add(entry.name)
[docs]
@classmethod
def from_dict(cls, d):
d = d.copy()
return cls(
entries=tuple(
DirectoryEntry.from_dict(entry) for entry in d.pop("entries")
),
**d,
)
[docs]
def swhid(self) -> CoreSWHID:
"""Returns a SWHID representing this object."""
return CoreSWHID(object_type=SwhidObjectType.DIRECTORY, object_id=self.id)
[docs]
@classmethod
def from_possibly_duplicated_entries(
cls,
*,
entries: Tuple[DirectoryEntry, ...],
id: Sha1Git = b"",
raw_manifest: Optional[bytes] = None,
) -> Tuple[bool, "Directory"]:
"""Constructs a ``Directory`` object from a list of entries that may contain
duplicated names.
This is required to represent legacy objects, that were ingested in the
storage database before this check was added.
As it is impossible for a ``Directory`` instances to have more than one entry
with a given names, this function computes a ``raw_manifest`` and renames one of
the entries before constructing the ``Directory``.
Returns:
``(is_corrupt, directory)`` where ``is_corrupt`` is True iff some
entry names were indeed duplicated
"""
# First, try building a Directory object normally without any extra computation,
# which works the overwhelming majority of the time:
try:
return (False, Directory(entries=entries, id=id, raw_manifest=raw_manifest))
except ValueError:
pass
# If it fails:
# 1. compute a raw_manifest if there isn't already one:
if raw_manifest is None:
# invalid_directory behaves like a Directory object, but without the
# duplicated entry check; which allows computing its raw_manifest
invalid_directory = type("", (), {})()
invalid_directory.entries = entries
raw_manifest = git_objects.directory_git_object(invalid_directory)
# 2. look for duplicated entries:
entries_by_name: Dict[bytes, Dict[str, List[DirectoryEntry]]] = (
collections.defaultdict(lambda: collections.defaultdict(list))
)
for entry in entries:
entries_by_name[entry.name][entry.type].append(entry)
# 3. strip duplicates
deduplicated_entries = []
for entry_lists in entries_by_name.values():
# We could pick one entry at random to keep the original name; but we try to
# "minimize" the impact, by preserving entries of type "rev" first
# (because renaming them would likely break git submodules entirely
# when this directory is written to disk),
# then entries of type "dir" (because renaming them affects the path
# of every file in the dir, instead of just one "cnt").
dir_entry_types = ("rev", "dir", "file")
assert set(dir_entry_types) == set(_DIR_ENTRY_TYPES)
picked_winner = False # when True, all future entries must be renamed
for type_ in dir_entry_types:
for entry in entry_lists[type_]:
if not picked_winner:
# this is the "most important" entry according to this
# heuristic; it gets to keep its name.
deduplicated_entries.append(entry)
picked_winner = True
else:
# the heuristic already found an entry more important than
# this one; so this one must be renamed to something.
# we pick the beginning of its hash, it should be good enough
# to avoid any conflict.
new_name = (
entry.name + b"_" + hash_to_bytehex(entry.target)[0:10]
)
renamed_entry = attr.evolve(entry, name=new_name)
deduplicated_entries.append(renamed_entry)
# Finally, return the "fixed" the directory
dir_ = Directory(
entries=tuple(deduplicated_entries), id=id, raw_manifest=raw_manifest
)
return (True, dir_)
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class BaseContent(BaseModel, ABC):
status = attr.ib(
type=str, validator=attr.validators.in_(["visible", "hidden", "absent"])
)
@staticmethod
def _hash_data(data: bytes):
"""Hash some data, returning most of the fields of a content object"""
d = MultiHash.from_data(data).digest()
d["data"] = data
d["length"] = len(data)
return d
[docs]
@classmethod
def from_dict(cls, d, use_subclass=True):
if use_subclass:
# Chooses a subclass to instantiate instead.
if d["status"] == "absent":
return SkippedContent.from_dict(d)
else:
return Content.from_dict(d)
else:
return super().from_dict(d)
[docs]
def get_hash(self, hash_name):
if hash_name not in DEFAULT_ALGORITHMS:
raise ValueError("{} is not a valid hash name.".format(hash_name))
return getattr(self, hash_name)
[docs]
def hashes(self) -> Dict[str, bytes]:
"""Returns a dictionary {hash_name: hash_value}"""
return {algo: getattr(self, algo) for algo in DEFAULT_ALGORITHMS}
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class Content(BaseContent):
object_type: Final = ModelObjectType.CONTENT
sha1 = attr.ib(type=bytes, validator=generic_type_validator, repr=hash_repr)
sha1_git = attr.ib(type=Sha1Git, validator=generic_type_validator, repr=hash_repr)
sha256 = attr.ib(type=bytes, validator=generic_type_validator, repr=hash_repr)
blake2s256 = attr.ib(type=bytes, validator=generic_type_validator, repr=hash_repr)
length = attr.ib(type=int)
status = attr.ib(
type=str,
validator=attr.validators.in_(["visible", "hidden"]),
default="visible",
)
data = attr.ib(type=Optional[bytes], validator=generic_type_validator, default=None)
get_data = attr.ib(
type=Optional[Callable[[], bytes]],
default=None,
cmp=False,
)
ctime = attr.ib(
type=Optional[datetime.datetime],
default=None,
eq=False,
)
[docs]
@length.validator
def check_length(self, attribute, value):
"""Checks the length is positive."""
if value.__class__ is not int:
raise AttributeTypeError(value, attribute)
if value < 0:
raise ValueError("Length must be positive.")
[docs]
@ctime.validator
def check_ctime(self, attribute, value):
"""Checks the ctime has a timezone."""
if value is not None:
if value.__class__ is not datetime.datetime:
raise AttributeTypeError(value, attribute)
if value.tzinfo is None:
raise ValueError("ctime must be a timezone-aware datetime.")
[docs]
def to_dict(self):
content = super(Content, self.with_data(raise_if_missing=False)).to_dict()
for k in ("get_data", "data", "ctime"):
if content[k] is None:
del content[k]
return content
[docs]
@classmethod
def from_data(cls, data, status="visible", ctime=None) -> Content:
"""Generate a Content from a given `data` byte string.
This populates the Content with the hashes and length for the data
passed as argument, as well as the data itself.
"""
d = cls._hash_data(data)
d["status"] = status
d["ctime"] = ctime
return cls(**d)
[docs]
@classmethod
def from_dict(cls, d):
if isinstance(d.get("ctime"), str):
d = d.copy()
d["ctime"] = dateutil.parser.parse(d["ctime"])
return super().from_dict(d, use_subclass=False)
[docs]
def with_data(self, raise_if_missing: bool = True) -> Content:
"""Loads the ``data`` attribute if ``get_data`` is not :const:`None`.
This call is almost a no-op, but subclasses may overload this method
to lazy-load data (eg. from disk or objstorage).
Args:
raise_if_missing: if :const:`True` (default), raise :class:`MissingData`
exception if no data is attached to content object
"""
if self.data is not None:
return self
new_data = None
if self.get_data is not None:
new_data = self.get_data()
if new_data is None and raise_if_missing:
raise MissingData("Content data and get_data are both None.")
return attr.evolve(self, data=new_data, get_data=None)
[docs]
def unique_key(self) -> KeyType:
return self.sha1 # TODO: use a dict of hashes
[docs]
def swhid(self) -> CoreSWHID:
"""Returns a SWHID representing this object."""
return CoreSWHID(object_type=SwhidObjectType.CONTENT, object_id=self.sha1_git)
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class SkippedContent(BaseContent):
object_type: Final = ModelObjectType.SKIPPED_CONTENT
sha1 = attr.ib(
type=Optional[bytes], validator=generic_type_validator, repr=hash_repr
)
sha1_git = attr.ib(
type=Optional[Sha1Git], validator=generic_type_validator, repr=hash_repr
)
sha256 = attr.ib(
type=Optional[bytes], validator=generic_type_validator, repr=hash_repr
)
blake2s256 = attr.ib(
type=Optional[bytes], validator=generic_type_validator, repr=hash_repr
)
length = attr.ib(type=Optional[int])
status = attr.ib(type=str, validator=attr.validators.in_(["absent"]))
reason = attr.ib(type=Optional[str], default=None)
origin = attr.ib(type=Optional[str], validator=generic_type_validator, default=None)
ctime = attr.ib(
type=Optional[datetime.datetime],
validator=generic_type_validator,
default=None,
eq=False,
)
[docs]
@reason.validator
def check_reason(self, attribute, value):
"""Checks the reason is full if status != absent."""
assert self.reason == value
if value is None:
raise ValueError("Must provide a reason if content is absent.")
elif value.__class__ is not str:
raise AttributeTypeError(value, attribute)
[docs]
@length.validator
def check_length(self, attribute, value):
"""Checks the length is positive or -1."""
if value.__class__ is not int:
raise AttributeTypeError(value, attribute)
elif value < -1:
raise ValueError("Length must be positive or -1.")
[docs]
@ctime.validator
def check_ctime(self, attribute, value):
"""Checks the ctime has a timezone."""
if value is not None:
if value.__class__ is not datetime.datetime:
raise AttributeTypeError(value, attribute)
elif value.tzinfo is None:
raise ValueError("ctime must be a timezone-aware datetime.")
[docs]
def to_dict(self):
content = super().to_dict()
if content["origin"] is None:
del content["origin"]
if content["ctime"] is None:
del content["ctime"]
return content
[docs]
@classmethod
def from_data(
cls, data: bytes, reason: str, ctime: Optional[datetime.datetime] = None
) -> SkippedContent:
"""Generate a SkippedContent from a given `data` byte string.
This populates the SkippedContent with the hashes and length for the
data passed as argument.
You can use `attr.evolve` on such a generated content to nullify some
of its attributes, e.g. for tests.
"""
d = cls._hash_data(data)
del d["data"]
d["status"] = "absent"
d["reason"] = reason
d["ctime"] = ctime
return cls(**d)
[docs]
@classmethod
def from_dict(cls, d):
d2 = d.copy()
if d2.pop("data", None) is not None:
raise ValueError('SkippedContent has no "data" attribute %r' % d)
return super().from_dict(d2, use_subclass=False)
[docs]
def unique_key(self) -> KeyType:
return self.hashes()
[docs]
def swhid(self) -> Optional[CoreSWHID]:
"""Returns a SWHID representing this object or None if unset."""
if self.sha1_git is None:
return None
return CoreSWHID(object_type=SwhidObjectType.CONTENT, object_id=self.sha1_git)
[docs]
def normalize_discovery_date(value: Any) -> datetime.datetime:
if not isinstance(value, datetime.datetime):
raise TypeError("discovery_date must be a timezone-aware datetime.")
if value.tzinfo is None:
raise ValueError("discovery_date must be a timezone-aware datetime.")
# Normalize timezone to utc, and truncate microseconds to 0
return value.astimezone(datetime.timezone.utc).replace(microsecond=0)
[docs]
@attr.s(frozen=True, slots=True, field_transformer=optimize_all_validators)
class ExtID(BaseHashableModel):
object_type: Final = ModelObjectType.EXTID
extid_type = attr.ib(type=str, validator=generic_type_validator)
extid = attr.ib(type=bytes, validator=generic_type_validator)
target = attr.ib(type=CoreSWHID, validator=generic_type_validator)
extid_version = attr.ib(type=int, validator=generic_type_validator, default=0)
payload_type = attr.ib(
type=Optional[str], validator=generic_type_validator, default=None
)
payload = attr.ib(
type=Optional[Sha1Git],
validator=generic_type_validator,
default=None,
repr=hash_repr,
)
id = attr.ib(
type=Sha1Git, validator=generic_type_validator, default=b"", repr=hash_repr
)
[docs]
@payload_type.validator
def check_payload_type(self, attribute, value):
if value is not None and self.payload is None:
raise ValueError("'payload' must be set if 'payload_type' is.")
[docs]
@payload.validator
def check_payload(self, attribute, value):
if value is not None and self.payload_type is None:
raise ValueError("'payload_type' must be set if 'payload' is.")
[docs]
@classmethod
def from_dict(cls, d):
return cls(
extid=d["extid"],
extid_type=d["extid_type"],
target=CoreSWHID.from_string(d["target"]),
extid_version=d.get("extid_version", 0),
payload_type=d.get("payload_type"),
payload=d.get("payload"),
)
def _compute_hash_from_attributes(self) -> bytes:
return _compute_hash_from_manifest(git_objects.extid_git_object(self))
# Note: we need the type ignore stanza here because mypy cannot figure that all
# subclasses of BaseModel do have an object_type attribute, even if BaseModel
# itself does not (because these are Final)
SWH_MODEL_OBJECT_TYPES: Dict[str, Type[BaseModel]] = {
cls.object_type: cls # type: ignore
for cls in (
Person,
Timestamp,
TimestampWithTimezone,
Origin,
OriginVisit,
OriginVisitStatus,
Snapshot,
SnapshotBranch,
Release,
Revision,
Directory,
DirectoryEntry,
Content,
SkippedContent,
MetadataAuthority,
MetadataFetcher,
RawExtrinsicMetadata,
ExtID,
)
}