runtimepy.net.apps
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/net/apps/__init__.py

A module aggregating commonly used network applications (that use the
connection-arbiter technology).

 
Package Contents
       

 
Classes
       
vcorelib.logging.LoggerMixin(builtins.object)
runtimepy.net.arbiter.info.AppInfo

 
class AppInfo(vcorelib.logging.LoggerMixin)
    AppInfo(logger: Union[logging.Logger, logging.LoggerAdapter[Any]], stack: contextlib.AsyncExitStack, connections: MutableMapping[str, runtimepy.net.connection.Connection], conn_manager: runtimepy.net.manager.ConnectionManager, names: vcorelib.namespace.base.Namespace, stop: asyncio.locks.Event, config: Dict[str, Union[str, int, float, bool, NoneType, Dict[str, Union[str, int, float, bool, NoneType]], List[Union[str, int, float, bool, NoneType]]]], tui: runtimepy.tui.mixin.TuiMixin, tasks: dict[str, runtimepy.task.basic.periodic.PeriodicTask], task_manager: runtimepy.task.basic.manager.PeriodicTaskManager[typing.Any], results: list[list[runtimepy.net.arbiter.result.AppResult]], structs: dict[str, runtimepy.struct.RuntimeStructBase], peers: dict[str, '_RuntimepyPeer']) -> None
 
References provided to network applications.
 
 
Method resolution order:
AppInfo
vcorelib.logging.LoggerMixin
builtins.object

Methods defined here:
__eq__(self, other)
Return self==value.
__init__(self, logger: Union[logging.Logger, logging.LoggerAdapter[Any]], stack: contextlib.AsyncExitStack, connections: MutableMapping[str, runtimepy.net.connection.Connection], conn_manager: runtimepy.net.manager.ConnectionManager, names: vcorelib.namespace.base.Namespace, stop: asyncio.locks.Event, config: Dict[str, Union[str, int, float, bool, NoneType, Dict[str, Union[str, int, float, bool, NoneType]], List[Union[str, int, float, bool, NoneType]]]], tui: runtimepy.tui.mixin.TuiMixin, tasks: dict[str, runtimepy.task.basic.periodic.PeriodicTask], task_manager: runtimepy.task.basic.manager.PeriodicTaskManager[typing.Any], results: list[list[runtimepy.net.arbiter.result.AppResult]], structs: dict[str, runtimepy.struct.RuntimeStructBase], peers: dict[str, '_RuntimepyPeer']) -> None
Initialize this object with logging capabilities.
__repr__(self)
Return repr(self).
async all_finalized(self) -> None
Wait for all tasks and connections to be finalized.
config_param(self, key: str, default: ~Z, strict: bool = False) -> ~Z
Attempt to get a configuration parameter.
exceptions(self) -> Iterator[Exception]
Iterate over exceptions raised by the application.
original_config(self) -> dict[str, typing.Any]
Re-assemble a dictionary closer to the original configuration data
(than the .config attribute).
result(self, logger: Union[logging.Logger, logging.LoggerAdapter[Any]] = None) -> bool
Get the overall boolean result for the application.
search(self, *names: str, pattern: str = '.*', kind: type[~T] = <class 'runtimepy.net.connection.Connection'>) -> Iterator[~T]
Get all connections that are matching a naming convention or are
specific kind (or both).
search_tasks(self, kind: type[~V], pattern: str = '.*') -> Iterator[~V]
Search for tasks by type or pattern.
single(self, *names: str, pattern: str = '.*', kind: type[~T] = <class 'runtimepy.net.connection.Connection'>) -> ~T
Search for a single node.
with_new_logger(self, name: str) -> 'AppInfo'
Get a copy of this AppInfo instance, but with a new logger.

Readonly properties defined here:
raised_exception
Determine if the application raised any exception.

Data and other attributes defined here:
__annotations__ = {'config': typing.Dict[str, typing.Union[str, int, float, b...[typing.Union[str, int, float, bool, NoneType]]]], 'conn_manager': <class 'runtimepy.net.manager.ConnectionManager'>, 'connections': typing.MutableMapping[str, runtimepy.net.connection.Connection], 'logger': typing.Union[logging.Logger, logging.LoggerAdapter[typing.Any]], 'names': <class 'vcorelib.namespace.base.Namespace'>, 'peers': dict[str, '_RuntimepyPeer'], 'results': list[list[runtimepy.net.arbiter.result.AppResult]], 'stack': <class 'contextlib.AsyncExitStack'>, 'stop': <class 'asyncio.locks.Event'>, 'structs': dict[str, runtimepy.struct.RuntimeStructBase], ...}
__dataclass_fields__ = {'config': Field(name='config',type=typing.Dict[str, typing...appingproxy({}),kw_only=False,_field_type=_FIELD), 'conn_manager': Field(name='conn_manager',type=<class 'runtimepy...appingproxy({}),kw_only=False,_field_type=_FIELD), 'connections': Field(name='connections',type=typing.MutableMapp...appingproxy({}),kw_only=False,_field_type=_FIELD), 'logger': Field(name='logger',type=typing.Union[logging.Lo...appingproxy({}),kw_only=False,_field_type=_FIELD), 'names': Field(name='names',type=<class 'vcorelib.namespa...appingproxy({}),kw_only=False,_field_type=_FIELD), 'peers': Field(name='peers',type=dict[str, '_RuntimepyPee...appingproxy({}),kw_only=False,_field_type=_FIELD), 'results': Field(name='results',type=list[list[runtimepy.ne...appingproxy({}),kw_only=False,_field_type=_FIELD), 'stack': Field(name='stack',type=<class 'contextlib.Async...appingproxy({}),kw_only=False,_field_type=_FIELD), 'stop': Field(name='stop',type=<class 'asyncio.locks.Eve...appingproxy({}),kw_only=False,_field_type=_FIELD), 'structs': Field(name='structs',type=dict[str, runtimepy.st...appingproxy({}),kw_only=False,_field_type=_FIELD), ...}
__dataclass_params__ = _DataclassParams(init=True,repr=True,eq=True,ord...rue,kw_only=False,slots=False,weakref_slot=False)
__hash__ = None
__match_args__ = ('logger', 'stack', 'connections', 'conn_manager', 'names', 'stop', 'config', 'tui', 'tasks', 'task_manager', 'results', 'structs', 'peers')

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
       
async exception(app: runtimepy.net.arbiter.info.AppInfo) -> int
Waits for the stop signal to be set.
async fail(app: runtimepy.net.arbiter.info.AppInfo) -> int
Waits for the stop signal to be set.
async init_only(app: runtimepy.net.arbiter.info.AppInfo) -> int
A network application that doesn't do anything.
async noop = init_only(app: runtimepy.net.arbiter.info.AppInfo) -> int
A network application that doesn't do anything.
async wait_for_stop(app: runtimepy.net.arbiter.info.AppInfo) -> int
Waits for the stop signal to be set.

 
Data
        __all__ = ['AppInfo', 'init_only', 'wait_for_stop', 'noop', 'fail', 'exception']