runtimepy.codec.system
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/codec/system/__init__.py

A basic type-system implementation.

 
Package Contents
       

 
Classes
       
vcorelib.logging.LoggerMixin(builtins.object)
TypeSystem

 
class TypeSystem(vcorelib.logging.LoggerMixin)
    TypeSystem(*namespace: str) -> None
 
A class for managing a custom type system.
 
 
Method resolution order:
TypeSystem
vcorelib.logging.LoggerMixin
builtins.object

Methods defined here:
__init__(self, *namespace: str) -> None
Initialize this instance.
add(self, custom_type: str, field_name: str, field_type: str, array_length: int = None, exact: bool = True) -> None
Add a field to a custom type.
enum(self, name: str, items: dict[str, int], *namespace: str, primitive: str = 'uint8') -> None
Register an enumeration.
get_enum(self, name: str, *namespace: str, exact: bool = True) -> runtimepy.enum.RuntimeEnum
Lookup an enum type at runtime.
get_protocol(self, name: str, *namespace: str, exact: bool = True) -> runtimepy.codec.protocol.Protocol
Get a custom protocol by name.
register(self, name: str, *namespace: str) -> runtimepy.codec.protocol.Protocol
Register a custom type.
runtime_int_enum(self, enum: type[runtimepy.enum.registry.RuntimeIntEnum]) -> None
Register an enumeration class.
size(self, name: str, *namespace: str, trace: bool = False, exact: bool = True) -> int
Get the size of a named type.

Data and other attributes defined here:
__annotations__ = {}

Methods inherited from vcorelib.logging.LoggerMixin:
log_time(self, message: str, *args, level: int = 20, reminder: bool = False, **kwargs) -> Iterator[NoneType]
A simple wrapper.

Data descriptors inherited from vcorelib.logging.LoggerMixin:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

 
Functions
       
resolve_name(matches: Iterable[str]) -> str
Resolve a possible name conflict.

 
Data
        AnyPrimitiveType = typing.Union[runtimepy.primitives.types.int.Int8...ype, runtimepy.primitives.types.bool.BooleanType]
CPP_DELIM = '::'
DEFAULT_ENUM_PRIMITIVE = 'uint8'
Iterable = typing.Iterable
Optional = typing.Optional
PKG_NAME = 'runtimepy'
PrimitiveTypes = {'bool': <runtimepy.primitives.types.bool.BooleanType object>, 'double': <runtimepy.primitives.types.float.DoubleType object>, 'float': <runtimepy.primitives.types.float.FloatType object>, 'half': <runtimepy.primitives.types.float.HalfType object>, 'int16': <runtimepy.primitives.types.int.Int16Type object>, 'int32': <runtimepy.primitives.types.int.Int32Type object>, 'int64': <runtimepy.primitives.types.int.Int64Type object>, 'int8': <runtimepy.primitives.types.int.Int8Type object>, 'uint16': <runtimepy.primitives.types.int.Uint16Type object>, 'uint32': <runtimepy.primitives.types.int.Uint32Type object>, ...}