57 lines
2.0 KiB
Python
57 lines
2.0 KiB
Python
"""Preconfigured converters for cbor2."""
|
|
|
|
from collections.abc import Set
|
|
from datetime import date, datetime, timezone
|
|
from typing import Any, TypeVar, Union
|
|
|
|
from cbor2 import dumps, loads
|
|
|
|
from ..converters import BaseConverter, Converter
|
|
from ..fns import identity
|
|
from ..literals import is_literal_containing_enums
|
|
from ..strategies import configure_union_passthrough
|
|
from . import is_primitive_enum, literals_with_enums_unstructure_factory, wrap
|
|
|
|
T = TypeVar("T")
|
|
|
|
|
|
class Cbor2Converter(Converter):
|
|
def dumps(self, obj: Any, unstructure_as: Any = None, **kwargs: Any) -> bytes:
|
|
return dumps(self.unstructure(obj, unstructure_as=unstructure_as), **kwargs)
|
|
|
|
def loads(self, data: bytes, cl: type[T], **kwargs: Any) -> T:
|
|
return self.structure(loads(data, **kwargs), cl)
|
|
|
|
|
|
def configure_converter(converter: BaseConverter):
|
|
"""
|
|
Configure the converter for use with the cbor2 library.
|
|
|
|
* datetimes are serialized as timestamp floats
|
|
* sets are serialized as lists
|
|
* string and int enums are passed through when unstructuring
|
|
"""
|
|
converter.register_unstructure_hook(datetime, lambda v: v.timestamp())
|
|
converter.register_structure_hook(
|
|
datetime, lambda v, _: datetime.fromtimestamp(v, timezone.utc)
|
|
)
|
|
converter.register_unstructure_hook(date, lambda v: v.isoformat())
|
|
converter.register_structure_hook(date, lambda v, _: date.fromisoformat(v))
|
|
converter.register_unstructure_hook_func(is_primitive_enum, identity)
|
|
converter.register_unstructure_hook_factory(
|
|
is_literal_containing_enums, literals_with_enums_unstructure_factory
|
|
)
|
|
configure_union_passthrough(Union[str, bool, int, float, None, bytes], converter)
|
|
|
|
|
|
@wrap(Cbor2Converter)
|
|
def make_converter(*args: Any, **kwargs: Any) -> Cbor2Converter:
|
|
kwargs["unstruct_collection_overrides"] = {
|
|
Set: list,
|
|
**kwargs.get("unstruct_collection_overrides", {}),
|
|
}
|
|
res = Cbor2Converter(*args, **kwargs)
|
|
configure_converter(res)
|
|
|
|
return res
|