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

A module for implementing a base class for primitive types.

 
Modules
       
ctypes

 
Classes
       
typing.Generic(builtins.object)
PrimitiveType

 
class PrimitiveType(typing.Generic)
    PrimitiveType(struct_format: str, signed: bool = True) -> None
 
A simple wrapper around ctype primitives.
 
 
Method resolution order:
PrimitiveType
typing.Generic
builtins.object

Methods defined here:
__eq__(self, other) -> bool
Determine if two types are equal.
__hash__(self) -> int
Get a hash for this type.
__init__(self, struct_format: str, signed: bool = True) -> None
Initialize this primitive type.
__str__(self) -> str
Get this type as a string.
decode(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Decode primitive based on this type.
encode(self, value: Union[bool, int, float], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> bytes
Encode a primitive value.
read(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Read a primitive from a stream based on this type.
write(self, value: Union[bool, int, float], stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> int
Write a primitive to a stream based on this type.

Class methods defined here:
instance() -> ~T from builtins.type
Get an instance of this primitive type.

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

Data and other attributes defined here:
__annotations__ = {'c_type': type[~T], 'name': <class 'str'>}
__orig_bases__ = (typing.Generic[~T],)
__parameters__ = (~T,)

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
Data
        PythonPrimitive = typing.Union[bool, int, float]
T = ~T