Files
Arvid NorbergandGitHub fe15e9ee6f [CHIA-4326] enable redundant expressions check in mypy (#21143)
* fix type annotation in configure.py and init.py

* enable mypy redundant-expr and remove redundant expressions
2026-07-29 09:37:24 -05:00

829 lines
30 KiB
Python

# Package: utils
from __future__ import annotations
import dataclasses
import functools
import io
import os
import pprint
import traceback
import types
from collections.abc import Callable, Collection
from enum import Enum, EnumMeta
from types import UnionType
from typing import (
TYPE_CHECKING,
Any,
BinaryIO,
ClassVar,
Literal,
TypeVar,
Union,
get_args,
get_origin,
get_type_hints,
)
from chia_rs.sized_bytes import bytes32
from chia_rs.sized_ints import uint16, uint32, uint64
from typing_extensions import Self
from chia.util.byte_types import hexstr_to_bytes
from chia.util.hash import std_hash
if TYPE_CHECKING:
from _typeshed import DataclassInstance
pp = pprint.PrettyPrinter(indent=1, width=120, compact=True)
class StreamableError(Exception):
pass
class UnsupportedType(StreamableError):
pass
class DefinitionError(StreamableError):
def __init__(self, message: str, cls: type[object]):
super().__init__(
f"{message} Correct usage is:\n\n"
f"@streamable\n@dataclass(frozen=True)\nclass {cls.__name__}(Streamable):\n ..."
)
class ParameterMissingError(StreamableError):
def __init__(self, cls: type, missing: list[str]):
super().__init__(
f"{len(missing)} field{'s' if len(missing) != 1 else ''} missing for {cls.__name__}: {', '.join(missing)}"
)
class InvalidTypeError(StreamableError):
def __init__(self, expected: type, actual: type):
super().__init__(
f"Invalid type: Expected {expected.__name__}, Actual: {actual.__name__}",
)
class InvalidSizeError(StreamableError):
def __init__(self, expected: int, actual: int):
super().__init__(
f"Invalid size: Expected {expected}, Actual: {actual}",
)
class ConversionError(StreamableError):
def __init__(self, value: object, to_type: type, exception: Exception):
super().__init__(
f"Failed to convert {value!r} from type {type(value).__name__} to {to_type.__name__}: "
+ "".join(traceback.format_exception_only(type(exception), value=exception)).strip()
)
_T_Streamable = TypeVar("_T_Streamable", bound="Streamable")
ParseFunctionType = Callable[[BinaryIO], object]
StreamFunctionType = Callable[[object, BinaryIO], None]
ConvertFunctionType = Callable[[object], object]
@dataclasses.dataclass(frozen=True)
class Field:
name: str
type: type[object]
has_default: bool
stream_function: StreamFunctionType
parse_function: ParseFunctionType
convert_function: ConvertFunctionType
post_init_function: ConvertFunctionType
list_inner_parse_function: ParseFunctionType | None = None
list_element_fixed_size: int | None = None
StreamableFields = tuple[Field, ...]
_FIXED_SIZE_PRIMITIVES: dict[type, int] = {
bool: 1,
}
def _element_fixed_size(inner_type: type[Any]) -> int | None:
"""Return the fixed byte size of a streamable element type, or None if variable-size."""
if inner_type in _FIXED_SIZE_PRIMITIVES:
return _FIXED_SIZE_PRIMITIVES[inner_type]
size = getattr(inner_type, "_size", None)
if isinstance(size, int):
return size
return None
def create_fields(cls: type[DataclassInstance]) -> StreamableFields:
hints = get_type_hints(cls)
fields = []
for field in dataclasses.fields(cls):
hint = hints[field.name]
list_inner_parse: ParseFunctionType | None = None
list_elem_size: int | None = None
if is_type_List(hint):
inner_type = get_args(hint)[0]
list_inner_parse = function_to_parse_one_item(inner_type)
list_elem_size = _element_fixed_size(inner_type)
fields.append(
Field(
name=field.name,
type=hint,
has_default=field.default is not dataclasses.MISSING
or field.default_factory is not dataclasses.MISSING,
stream_function=function_to_stream_one_item(hint),
parse_function=function_to_parse_one_item(hint),
convert_function=function_to_convert_one_item(hint),
post_init_function=function_to_post_init_process_one_item(hint),
list_inner_parse_function=list_inner_parse,
list_element_fixed_size=list_elem_size,
)
)
return tuple(fields)
def is_type_List(f_type: object) -> bool:
return get_origin(f_type) is list or f_type is list
def is_type_SpecificOptional(f_type: object) -> bool:
"""
Returns true for types such as Optional[T], but not Optional, or T.
"""
return get_origin(f_type) in {Union, UnionType} and get_args(f_type)[1]() is None
def is_type_Tuple(f_type: object) -> bool:
return get_origin(f_type) is tuple or f_type is tuple
def is_type_Dict(f_type: object) -> bool:
return get_origin(f_type) is dict or f_type is dict
def is_type_Enum(f_type: object) -> bool:
return type(f_type) is EnumMeta
def convert_optional(convert_func: ConvertFunctionType, item: Any) -> Any:
if item is None:
return None
return convert_func(item)
def convert_tuple(convert_funcs: list[ConvertFunctionType], items: Collection[Any]) -> tuple[Any, ...]:
if not isinstance(items, (list, tuple)):
raise InvalidTypeError(tuple, type(items))
if len(items) != len(convert_funcs):
raise InvalidSizeError(len(convert_funcs), len(items))
return tuple(convert_func(item) for convert_func, item in zip(convert_funcs, items))
def convert_list(convert_func: ConvertFunctionType, items: list[Any]) -> list[Any]:
if not isinstance(items, list):
raise InvalidTypeError(list, type(items))
return [convert_func(item) for item in items]
def convert_dict(
key_converter: ConvertFunctionType, value_converter: ConvertFunctionType, mapping: dict[Any, Any]
) -> dict[Any, Any]:
return {key_converter(key): value_converter(value) for key, value in mapping.items()}
def convert_hex_string(item: str) -> bytes:
if not isinstance(item, str):
raise InvalidTypeError(str, type(item))
try:
return hexstr_to_bytes(item)
except Exception as e:
raise ConversionError(item, bytes, e) from e
def convert_byte_type(f_type: type[Any], item: Any) -> Any:
if isinstance(item, f_type):
return item
if not isinstance(item, bytes):
item = convert_hex_string(item)
try:
return f_type(item)
except Exception as e:
raise ConversionError(item, f_type, e) from e
def convert_primitive(f_type: type[Any], item: Any) -> Any:
if isinstance(item, f_type):
return item
try:
return f_type(item)
except Exception as e:
raise ConversionError(item, f_type, e) from e
def streamable_from_dict(klass: type[_T_Streamable], item: Any) -> _T_Streamable:
"""
Converts a dictionary based on a dataclass, into an instance of that dataclass.
Recursively goes through lists, optionals, and dictionaries.
"""
if isinstance(item, klass):
return item
if not isinstance(item, dict):
raise InvalidTypeError(dict, type(item))
fields = klass.streamable_fields()
try:
return klass(**{field.name: field.convert_function(item[field.name]) for field in fields if field.name in item})
except TypeError as e:
missing_fields = [field.name for field in fields if field.name not in item and not field.has_default]
if len(missing_fields) > 0:
raise ParameterMissingError(klass, missing_fields) from e
raise
def function_to_convert_one_item(
f_type: type[Any], json_parser: Callable[[str | dict[str, Any], type[_T_Streamable]], Streamable] | None = None
) -> ConvertFunctionType:
if is_type_SpecificOptional(f_type):
convert_inner_func = function_to_convert_one_item(get_args(f_type)[0], json_parser)
return lambda item: convert_optional(convert_inner_func, item)
elif is_type_Tuple(f_type):
args = get_args(f_type)
convert_inner_tuple_funcs = []
for arg in args:
convert_inner_tuple_funcs.append(function_to_convert_one_item(arg, json_parser))
# Ignoring for now as the proper solution isn't obvious
return lambda items: convert_tuple(convert_inner_tuple_funcs, items) # type: ignore[arg-type]
elif is_type_List(f_type):
inner_type = get_args(f_type)[0]
convert_inner_func = function_to_convert_one_item(inner_type, json_parser)
# Ignoring for now as the proper solution isn't obvious
return lambda items: convert_list(convert_inner_func, items) # type: ignore[arg-type]
elif is_type_Dict(f_type):
inner_types = get_args(f_type)
key_converter = function_to_convert_one_item(inner_types[0], json_parser)
value_converter = function_to_convert_one_item(inner_types[1], json_parser)
return lambda mapping: convert_dict(key_converter, value_converter, mapping) # type: ignore[arg-type]
elif hasattr(f_type, "from_json_dict"):
if json_parser is None:
return f_type.from_json_dict # type: ignore[no-any-return]
else:
return functools.partial(json_parser, streamable_type=f_type) # type: ignore[call-arg]
elif issubclass(f_type, bytes):
# Type is bytes, data is a hex string or bytes
return lambda item: convert_byte_type(f_type, item)
else:
# Type is a primitive, cast with correct class
return lambda item: convert_primitive(f_type, item)
def post_init_process_item(f_type: type[Any], item: Any) -> object:
if not isinstance(item, f_type):
try:
item = f_type(item)
except (TypeError, AttributeError, ValueError):
if hasattr(f_type, "from_bytes_unchecked"):
from_bytes_method: Callable[[bytes], Any] = f_type.from_bytes_unchecked
else:
from_bytes_method = f_type.from_bytes
try:
item = from_bytes_method(item)
except Exception:
item = from_bytes_method(bytes(item))
if not isinstance(item, f_type):
raise InvalidTypeError(f_type, type(item))
return item
def function_to_post_init_process_one_item(f_type: type[object]) -> ConvertFunctionType:
if is_type_SpecificOptional(f_type):
process_inner_func = function_to_post_init_process_one_item(get_args(f_type)[0])
return lambda item: convert_optional(process_inner_func, item)
if is_type_Tuple(f_type):
args = get_args(f_type)
process_inner_tuple_funcs = []
for arg in args:
process_inner_tuple_funcs.append(function_to_post_init_process_one_item(arg))
return lambda items: convert_tuple(process_inner_tuple_funcs, items) # type: ignore[arg-type]
if is_type_List(f_type):
inner_type = get_args(f_type)[0]
process_inner_func = function_to_post_init_process_one_item(inner_type)
return lambda items: convert_list(process_inner_func, items) # type: ignore[arg-type]
if is_type_Dict(f_type):
inner_types = get_args(f_type)
key_converter = function_to_post_init_process_one_item(inner_types[0])
value_converter = function_to_post_init_process_one_item(inner_types[1])
return lambda mapping: convert_dict(key_converter, value_converter, mapping) # type: ignore[arg-type]
return lambda item: post_init_process_item(f_type, item)
def recurse_jsonify(
d: Any, next_recursion_step: Callable[[Any, Any], Any] | None = None, **next_recursion_env: Any
) -> Any:
"""
Makes bytes objects into strings with 0x, and makes large ints into strings.
"""
if next_recursion_step is None:
next_recursion_step = recurse_jsonify
if getattr(d, "json_serialization_override", None) is not None:
return d.json_serialization_override(d)
if dataclasses.is_dataclass(d):
new_dict = {}
for field in dataclasses.fields(d):
new_dict[field.name] = next_recursion_step(getattr(d, field.name), None, **next_recursion_env)
return new_dict
elif isinstance(d, (list, tuple)):
new_list = []
for item in d:
new_list.append(next_recursion_step(item, None, **next_recursion_env))
return new_list
elif isinstance(d, dict):
new_dict = {}
for name, val in d.items():
new_dict[next_recursion_step(name, None, **next_recursion_env)] = next_recursion_step(
val, None, **next_recursion_env
)
return new_dict
elif isinstance(d, Enum):
return next_recursion_step(d.value, None, **next_recursion_env)
elif issubclass(type(d), bytes):
return f"0x{bytes(d).hex()}"
elif isinstance(d, bool):
return d
elif isinstance(d, int):
return int(d)
elif d is None or type(d) is str:
return d
elif hasattr(d, "to_json_dict"):
ret: list[Any] | dict[str, Any] | str | int | None = d.to_json_dict()
return ret
raise UnsupportedType(f"failed to jsonify {d} (type: {type(d)})")
def parse_bool(f: BinaryIO) -> bool:
bool_byte = f.read(1)
assert len(bool_byte) == 1 # Checks for EOF
if bool_byte == bytes([0]):
return False
elif bool_byte == bytes([1]):
return True
else:
raise ValueError("Bool byte must be 0 or 1")
def parse_uint32(f: BinaryIO, byteorder: Literal["little", "big"] = "big") -> uint32:
size_bytes = f.read(4)
assert len(size_bytes) == 4 # Checks for EOF
return uint32(int.from_bytes(size_bytes, byteorder))
def write_uint32(f: BinaryIO, value: uint32, byteorder: Literal["little", "big"] = "big") -> None:
f.write(value.to_bytes(4, byteorder))
def parse_optional(f: BinaryIO, parse_inner_type_f: ParseFunctionType) -> object | None:
is_present_bytes = f.read(1)
assert len(is_present_bytes) == 1 # Checks for EOF
if is_present_bytes == bytes([0]):
return None
elif is_present_bytes == bytes([1]):
return parse_inner_type_f(f)
else:
raise ValueError("Optional must be 0 or 1")
def parse_rust(f: BinaryIO, f_type: type[Any]) -> Any:
assert isinstance(f, io.BytesIO)
buf = f.getbuffer()
ret, advance = f_type.parse_rust(buf[f.tell() :])
f.seek(advance, os.SEEK_CUR)
return ret
def parse_bytes(f: BinaryIO) -> bytes:
list_size = parse_uint32(f)
bytes_read = f.read(list_size)
assert len(bytes_read) == list_size
return bytes_read
def parse_list(f: BinaryIO, parse_inner_type_f: ParseFunctionType) -> list[object]:
full_list: list[object] = []
# wjb assert inner_type != get_args(List)[0]
list_size = parse_uint32(f)
for list_index in range(list_size):
full_list.append(parse_inner_type_f(f))
return full_list
def parse_list_limited(
f: BinaryIO,
parse_inner_type_f: ParseFunctionType,
max_items: int,
element_fixed_size: int | None = None,
) -> object:
"""Parse a list, stopping after max_items and seeking past the remainder."""
list_size = parse_uint32(f)
items_to_parse = min(list_size, max_items)
full_list: list[object] = []
for _ in range(items_to_parse):
full_list.append(parse_inner_type_f(f))
remaining = list_size - items_to_parse
if remaining > 0:
if element_fixed_size is not None:
f.seek(remaining * element_fixed_size, 1)
else:
for _ in range(remaining):
parse_inner_type_f(f)
return full_list
def parse_tuple(f: BinaryIO, list_parse_inner_type_f: list[ParseFunctionType]) -> tuple[object, ...]:
full_list: list[object] = []
for parse_f in list_parse_inner_type_f:
full_list.append(parse_f(f))
return tuple(full_list)
def parse_dict(
f: BinaryIO, key_parse_inner_type_f: ParseFunctionType, value_parse_inner_type_f: ParseFunctionType
) -> dict[object, object]:
# We know this is a list of tuples but our parse_list hint doesn't help us here
keys_and_values: list[tuple[object, object]] = parse_list( # type: ignore[assignment]
f, lambda inner_f: parse_tuple(inner_f, [key_parse_inner_type_f, value_parse_inner_type_f])
)
parsed_dict: dict[object, object] = dict(keys_and_values)
if len(parsed_dict) < len(keys_and_values):
raise ValueError("duplicate dict keys found when deserializing")
return parsed_dict
def parse_str(f: BinaryIO) -> str:
str_size = parse_uint32(f)
str_read_bytes = f.read(str_size)
assert len(str_read_bytes) == str_size # Checks for EOF
return bytes.decode(str_read_bytes, "utf-8")
def function_to_parse_one_item(f_type: type[Any]) -> ParseFunctionType:
"""
This function returns a function taking one argument `f: BinaryIO` that parses
and returns a value of the given type.
"""
inner_type: type[Any]
if f_type is bool:
return parse_bool
if is_type_SpecificOptional(f_type):
inner_type = get_args(f_type)[0]
parse_inner_type_f = function_to_parse_one_item(inner_type)
return lambda f: parse_optional(f, parse_inner_type_f)
if hasattr(f_type, "parse_rust"):
return lambda f: parse_rust(f, f_type)
if hasattr(f_type, "parse"):
# Ignoring for now as the proper solution isn't obvious
return f_type.parse # type: ignore[no-any-return]
if f_type is bytes:
return parse_bytes
if is_type_List(f_type):
inner_type = get_args(f_type)[0]
parse_inner_type_f = function_to_parse_one_item(inner_type)
return lambda f: parse_list(f, parse_inner_type_f)
if is_type_Tuple(f_type):
inner_types = get_args(f_type)
list_parse_inner_type_f = [function_to_parse_one_item(_) for _ in inner_types]
return lambda f: parse_tuple(f, list_parse_inner_type_f)
if is_type_Dict(f_type):
inner_types = get_args(f_type)
key_parse_inner_type_f = function_to_parse_one_item(inner_types[0])
value_parse_inner_type_f = function_to_parse_one_item(inner_types[1])
return lambda f: parse_dict(f, key_parse_inner_type_f, value_parse_inner_type_f)
if is_type_Enum(f_type):
if not hasattr(f_type, "_streamable_proxy"):
raise UnsupportedType(f"Using Enum ({f_type}) in streamable requires a 'streamable_enum' wrapper.")
return lambda f: f_type(function_to_parse_one_item(f_type._streamable_proxy)(f))
if f_type is str:
return parse_str
raise UnsupportedType(f"Type {f_type} does not have parse")
def stream_optional(stream_inner_type_func: StreamFunctionType, item: Any, f: BinaryIO) -> None:
if item is None:
f.write(bytes([0]))
else:
f.write(bytes([1]))
stream_inner_type_func(item, f)
def stream_bytes(item: Any, f: BinaryIO) -> None:
write_uint32(f, uint32(len(item)))
f.write(item)
def stream_list(stream_inner_type_func: StreamFunctionType, item: Any, f: BinaryIO) -> None:
write_uint32(f, uint32(len(item)))
for element in item:
stream_inner_type_func(element, f)
def stream_tuple(stream_inner_type_funcs: list[StreamFunctionType], item: Any, f: BinaryIO) -> None:
assert len(stream_inner_type_funcs) == len(item)
for i in range(len(item)):
stream_inner_type_funcs[i](item[i], f)
def stream_dict(
key_stream_inner_type_func: StreamFunctionType,
value_stream_inner_type_func: StreamFunctionType,
item: Any,
f: BinaryIO,
) -> None:
return stream_list(
lambda inner_item, inner_f: stream_tuple(
[key_stream_inner_type_func, value_stream_inner_type_func], inner_item, inner_f
),
list(item.items()),
f,
)
def stream_str(item: Any, f: BinaryIO) -> None:
str_bytes = item.encode("utf-8")
write_uint32(f, uint32(len(str_bytes)))
f.write(str_bytes)
def stream_bool(item: Any, f: BinaryIO) -> None:
f.write(int(item).to_bytes(1, "big"))
def stream_streamable(item: object, f: BinaryIO) -> None:
getattr(item, "stream")(f)
def stream_byte_convertible(item: object, f: BinaryIO) -> None:
f.write(getattr(item, "__bytes__")())
def function_to_stream_one_item(f_type: type[Any]) -> StreamFunctionType:
inner_type: type[Any]
if is_type_SpecificOptional(f_type):
inner_type = get_args(f_type)[0]
stream_inner_type_func = function_to_stream_one_item(inner_type)
return lambda item, f: stream_optional(stream_inner_type_func, item, f)
elif f_type is bytes:
return stream_bytes
elif hasattr(f_type, "stream"):
return stream_streamable
elif hasattr(f_type, "__bytes__"):
return stream_byte_convertible
elif is_type_List(f_type):
inner_type = get_args(f_type)[0]
stream_inner_type_func = function_to_stream_one_item(inner_type)
return lambda item, f: stream_list(stream_inner_type_func, item, f)
elif is_type_Tuple(f_type):
inner_types = get_args(f_type)
stream_inner_type_funcs = []
for i in range(len(inner_types)):
stream_inner_type_funcs.append(function_to_stream_one_item(inner_types[i]))
return lambda item, f: stream_tuple(stream_inner_type_funcs, item, f)
elif is_type_Dict(f_type):
inner_types = get_args(f_type)
key_stream_inner_type_func = function_to_stream_one_item(inner_types[0])
value_stream_inner_type_func = function_to_stream_one_item(inner_types[1])
return lambda item, f: stream_dict(key_stream_inner_type_func, value_stream_inner_type_func, item, f)
elif is_type_Enum(f_type):
if not hasattr(f_type, "_streamable_proxy"):
raise UnsupportedType(f"Using Enum ({f_type}) in streamable requires a 'streamable_enum' wrapper.")
return lambda item, f: function_to_stream_one_item(f_type._streamable_proxy)(
f_type._streamable_proxy(item.value), # type: ignore[attr-defined]
f,
)
elif f_type is str:
return stream_str
elif f_type is bool:
return stream_bool
else:
raise UnsupportedType(f"can't stream {f_type}")
def streamable(cls: type[_T_Streamable]) -> type[_T_Streamable]:
"""
This decorator forces correct streamable protocol syntax/usage and populates the caches for types hints and
(de)serialization methods for all members of the class. The correct usage is:
@streamable
@dataclass(frozen=True)
class Example(Streamable):
...
The order how the decorator are applied and the inheritance from Streamable are forced. The explicit inheritance is
required because mypy doesn't analyse the type returned by decorators, so we can't just inherit from inside the
decorator. The dataclass decorator is required to fetch type hints, let mypy validate constructor calls and restrict
direct modification of objects by `frozen=True`.
"""
if not dataclasses.is_dataclass(cls):
raise DefinitionError("@dataclass(frozen=True) required first.", cls)
try:
# Ignore mypy here because we especially want to access a not available member to test if
# the dataclass is frozen.
object.__new__(cls)._streamable_test_if_dataclass_frozen_ = None
except dataclasses.FrozenInstanceError:
pass
else:
raise DefinitionError("dataclass needs to be frozen.", cls)
if not issubclass(cls, Streamable):
raise DefinitionError("Streamable inheritance required.", cls)
cls._streamable_fields = create_fields(cls)
return cls
def _apply_list_limits(obj: Any, list_limits: dict[str, int]) -> None:
"""Truncate list fields on rust-typed objects and recurse into sub-objects."""
if len(list_limits) == 0:
return
if hasattr(obj, "truncate"):
for field_name, max_size in list_limits.items():
try:
obj.truncate(field_name, max_size)
except KeyError:
pass
for name, desc in vars(type(obj)).items():
if isinstance(desc, types.GetSetDescriptorType):
child = getattr(obj, name)
if hasattr(child, "truncate") or dataclasses.is_dataclass(child):
_apply_list_limits(child, list_limits)
elif dataclasses.is_dataclass(obj):
for field in dataclasses.fields(obj):
child = getattr(obj, field.name)
if hasattr(child, "truncate") or dataclasses.is_dataclass(child):
_apply_list_limits(child, list_limits)
class Streamable:
"""
This class defines a simple serialization format, and adds methods to parse from/to bytes and json. It also
validates and parses all fields at construction in `__post_init__` to make sure all fields have the correct type
and can be streamed/parsed properly.
The available primitives are:
* Sized ints serialized in big endian format, e.g. uint64
* Sized bytes serialized in big endian format, e.g. bytes32
* BLS public keys serialized in bls format (48 bytes)
* BLS signatures serialized in bls format (96 bytes)
* bool serialized into 1 byte (0x01 or 0x00)
* bytes serialized as a 4 byte size prefix and then the bytes.
* str serialized as a 4 byte size prefix and then the utf-8 representation in bytes.
An item is one of:
* primitive
* tuple[item1, .. itemx]
* list[item1, .. itemx]
* Optional[item]
* Custom item
A streamable must be a Tuple at the root level (although a dataclass is used here instead).
Iters are serialized in the following way:
1. A tuple of x items is serialized by appending the serialization of each item.
2. A List is serialized into a 4 byte size prefix (number of items) and the serialization of each item.
3. An Optional is serialized into a 1 byte prefix of 0x00 or 0x01, and if it's one, it's followed by the
serialization of the item.
4. A Custom item is serialized by calling the .parse method, passing in the stream of bytes into it. An example is
a CLVM program.
All of the constituents must have parse/from_bytes, and stream/__bytes__ and therefore
be of fixed size. For example, int cannot be a constituent since it is not a fixed size,
whereas uint32 can be.
Furthermore, a get_hash() member is added, which performs a serialization and a sha256.
This class is used for deterministic serialization and hashing, for consensus critical
objects such as the block header.
Make sure to use the streamable decorator when inheriting from the Streamable class to prepare the streaming caches.
"""
_streamable_fields: ClassVar[StreamableFields]
@classmethod
def streamable_fields(cls) -> StreamableFields:
return cls._streamable_fields
def __post_init__(self) -> None:
data = self.__dict__
try:
for field in self._streamable_fields:
object.__setattr__(self, field.name, field.post_init_function(data[field.name]))
except TypeError as e:
missing_fields = [field.name for field in self._streamable_fields if field.name not in data]
if len(missing_fields) > 0:
raise ParameterMissingError(type(self), missing_fields) from e
raise
@classmethod
def parse(cls, f: BinaryIO, list_limits: dict[str, int] | None = None) -> Self:
# Create the object without calling __init__() to avoid unnecessary post-init checks in strictdataclass
obj: Self = object.__new__(cls)
for field in cls.streamable_fields():
if list_limits is not None and field.name in list_limits and field.list_inner_parse_function is not None:
value = parse_list_limited(
f,
field.list_inner_parse_function,
list_limits[field.name],
field.list_element_fixed_size,
)
else:
value = field.parse_function(f)
object.__setattr__(obj, field.name, value)
if list_limits is not None and len(list_limits) > 0:
_apply_list_limits(obj, list_limits)
return obj
def stream(self, f: BinaryIO) -> None:
for field in self.streamable_fields():
field.stream_function(getattr(self, field.name), f)
def get_hash(self) -> bytes32:
return std_hash(bytes(self), skip_bytes_conversion=True)
@classmethod
def from_bytes(cls, blob: bytes, list_limits: dict[str, int] | None = None) -> Self:
f = io.BytesIO(blob)
parsed = cls.parse(f, list_limits=list_limits)
remainder = f.read()
if remainder != b"":
raise ValueError(f"{cls.__name__}: {len(remainder)} bytes not consumed")
return parsed
def stream_to_bytes(self) -> bytes:
f = io.BytesIO()
self.stream(f)
return bytes(f.getvalue())
def __bytes__(self: Any) -> bytes:
f = io.BytesIO()
self.stream(f)
return bytes(f.getvalue())
def __str__(self: Any) -> str:
return pp.pformat(recurse_jsonify(self))
def __repr__(self: Any) -> str:
return pp.pformat(recurse_jsonify(self))
def to_json_dict(self) -> dict[str, Any]:
ret: dict[str, Any] = recurse_jsonify(self)
return ret
@classmethod
def from_json_dict(cls, json_dict: dict[str, Any]) -> Self:
return streamable_from_dict(cls, json_dict)
@streamable
@dataclasses.dataclass(frozen=True)
class VersionedBlob(Streamable):
version: uint16
blob: bytes
@streamable
@dataclasses.dataclass(frozen=True)
class UInt32Range(Streamable):
start: uint32 = uint32(0)
stop: uint32 = uint32.MAXIMUM
@streamable
@dataclasses.dataclass(frozen=True)
class UInt64Range(Streamable):
start: uint64 = uint64(0)
stop: uint64 = uint64.MAXIMUM
_T_Enum = TypeVar("_T_Enum", bound=EnumMeta)
def streamable_enum(proxy: type[object]) -> Callable[[_T_Enum], _T_Enum]:
def streamable_enum_wrapper(cls: _T_Enum) -> _T_Enum:
setattr(cls, "_streamable_proxy", proxy)
setattr(cls, "_ignore_", ["_streamable_proxy"])
return cls
return streamable_enum_wrapper