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

A module defining a base interface fore serializable objects.

 
Classes
       
abc.ABC(builtins.object)
Serializable

 
class Serializable(abc.ABC)
    Serializable(byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>, chain: ~T = None) -> None
 
An interface for serializable objects.
 
 
Method resolution order:
Serializable
abc.ABC
builtins.object

Methods defined here:
__bytes__(self) -> bytes
Get this serializable as a bytes instance.
__copy__(self: ~T) -> ~T
Make a copy of this serializable.
__init__(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>, chain: ~T = None) -> None
Initialize this instance.
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(self, data: bytes) -> int
Update this serializable from a bytes instance.
update_str(self, data: str) -> int
Update this serializable from string data.

Readonly properties defined here:
end
Get the end of this chain.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Data and other attributes defined here:
__abstractmethods__ = frozenset({'__bytes__', '_copy_impl', 'update'})
__annotations__ = {'size': <class 'int'>}

 
Data
        DEFAULT_ENCODING = 'utf-8'
T = ~T