runtimepy.primitives.serializable.prefixed
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/primitives/serializable/prefixed.py

A module implementing a variable-size bytes serializable, using an integer
primitive prefix to determine the size of the chunk portion.

 
Classes
       
runtimepy.primitives.serializable.base.Serializable(abc.ABC)
PrefixedChunk

 
class PrefixedChunk(runtimepy.primitives.serializable.base.Serializable)
    PrefixedChunk(prefix: Union[runtimepy.primitives.int.Uint8Primitive, runtimepy.primitives.int.Uint16Primitive, runtimepy.primitives.int.Uint32Primitive, runtimepy.primitives.int.Uint64Primitive], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>, chain: runtimepy.primitives.serializable.base.Serializable = None) -> None
 
A simple integer-prefixed chunk serializable.
 
 
Method resolution order:
PrefixedChunk
runtimepy.primitives.serializable.base.Serializable
abc.ABC
builtins.object

Methods defined here:
__bytes__(self) -> bytes
Get this serializable as a bytes instance.
__init__(self, prefix: Union[runtimepy.primitives.int.Uint8Primitive, runtimepy.primitives.int.Uint16Primitive, runtimepy.primitives.int.Uint32Primitive, runtimepy.primitives.int.Uint64Primitive], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>, chain: runtimepy.primitives.serializable.base.Serializable = None) -> None
Initialize this instance.
__str__(self) -> str
Get this chunk as a string.
update(self, data: bytes) -> int
Update this serializable from a bytes instance.

Class methods defined here:
create(prefix: Union[type[Union[runtimepy.primitives.int.Int8Primitive, runtimepy.primitives.int.Int16Primitive, runtimepy.primitives.int.Int32Primitive, runtimepy.primitives.int.Int64Primitive, runtimepy.primitives.int.Uint8Primitive, runtimepy.primitives.int.Uint16Primitive, runtimepy.primitives.int.Uint32Primitive, runtimepy.primitives.int.Uint64Primitive, runtimepy.primitives.float.HalfPrimitive, runtimepy.primitives.float.FloatPrimitive, runtimepy.primitives.float.DoublePrimitive, runtimepy.primitives.bool.BooleanPrimitive]], str] = 'uint16', chain: runtimepy.primitives.serializable.base.Serializable = None) -> ~T from abc.ABCMeta
Create a prefixed chunk.

Data and other attributes defined here:
__abstractmethods__ = frozenset()
__annotations__ = {}

Methods inherited from runtimepy.primitives.serializable.base.Serializable:
__copy__(self: ~T) -> ~T
Make a copy of this serializable.
add_to_end(self, chain: ~T, array_length: int = None) -> int
Add a new serializable to the end of this chain.
assign(self, chain: ~T) -> int
Assign a next serializable.
copy(self: ~T) -> ~T
Create a copy of a serializable instance.
copy_without_chain(self: ~T) -> ~T
A method for copying instances without chain references.
from_stream(self, stream: <class 'BinaryIO'>) -> int
Update this serializable from a stream.
length(self) -> int
Get the full length of this chain.
length_trace(self) -> str
Get a length-tracing string for this instance.
to_stream(self, stream: <class 'BinaryIO'>) -> int
Write this serializable to a stream.
update_str(self, data: str) -> int
Update this serializable from string data.

Readonly properties inherited from runtimepy.primitives.serializable.base.Serializable:
end
Get the end of this chain.

Data descriptors inherited from runtimepy.primitives.serializable.base.Serializable:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

 
Data
        Primitivelike = typing.Union[type[typing.Union[runtimepy.primiti...untimepy.primitives.bool.BooleanPrimitive]], str]
T = ~T
UnsignedInt = typing.Union[runtimepy.primitives.int.Uint8Primi...mitive, runtimepy.primitives.int.Uint64Primitive]