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

A module aggregating all TCP-related interfaces.

 
Package Contents
       
connection
create
http (package)
protocol
telnet (package)

 
Classes
       
runtimepy.net.connection.Connection(runtimepy.mixins.logging.LoggerMixinLevelControl, runtimepy.mixins.environment.ChannelEnvironmentMixin, abc.ABC)
runtimepy.net.tcp.connection.TcpConnection(runtimepy.net.connection.Connection, runtimepy.net.mixin.TransportMixin)
runtimepy.net.tcp.connection.EchoTcpConnection(runtimepy.net.tcp.connection.TcpConnection, runtimepy.net.connection.EchoConnection)
runtimepy.net.tcp.connection.NullTcpConnection(runtimepy.net.tcp.connection.TcpConnection, runtimepy.net.connection.NullConnection)
runtimepy.net.mixin.TransportMixin(builtins.object)
runtimepy.net.tcp.connection.TcpConnection(runtimepy.net.connection.Connection, runtimepy.net.mixin.TransportMixin)
runtimepy.net.tcp.connection.EchoTcpConnection(runtimepy.net.tcp.connection.TcpConnection, runtimepy.net.connection.EchoConnection)
runtimepy.net.tcp.connection.NullTcpConnection(runtimepy.net.tcp.connection.TcpConnection, runtimepy.net.connection.NullConnection)

 
class EchoTcpConnection(TcpConnection, runtimepy.net.connection.EchoConnection)
    EchoTcpConnection(transport: asyncio.transports.Transport, protocol: runtimepy.net.tcp.protocol.QueueProtocol) -> None
 
An echo connection for TCP.
 
 
Method resolution order:
EchoTcpConnection
TcpConnection
runtimepy.net.connection.EchoConnection
runtimepy.net.connection.Connection
runtimepy.mixins.logging.LoggerMixinLevelControl
vcorelib.logging.LoggerMixin
runtimepy.mixins.environment.ChannelEnvironmentMixin
abc.ABC
runtimepy.net.mixin.TransportMixin
builtins.object

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

Methods inherited from TcpConnection:
__init__(self, transport: asyncio.transports.Transport, protocol: runtimepy.net.tcp.protocol.QueueProtocol) -> None
Initialize this TCP connection.
async close(self) -> None
Close this connection.
async restart(self) -> bool
Reset necessary underlying state for this connection to 'process'
again.
send_binary(self, data: Union[bytes, bytearray, memoryview]) -> None
Enqueue a binary message tos end.
send_text(self, data: str) -> None
Enqueue a text message to send.

Class methods inherited from TcpConnection:
async app(stop_sig: asyncio.locks.Event, callback: Callable[[~T], NoneType] = None, serving_callback: Callable[[Any], NoneType] = None, manager: runtimepy.net.manager.ConnectionManager = None, **kwargs) -> None from abc.ABCMeta
Run an application that serves new connections.
async create_connection(backoff: runtimepy.net.backoff.ExponentialBackoff = None, **kwargs) -> ~T from abc.ABCMeta
Create a TCP connection.
create_pair() -> AsyncIterator[tuple[~T, ~T]] from abc.ABCMeta
Create a connection pair.
serve(callback: Callable[[~T], NoneType] = None, **kwargs) -> AsyncIterator[Any] from abc.ABCMeta
Serve incoming connections.

Data and other attributes inherited from TcpConnection:
log_alias = 'TCP'
log_prefix = ''
uses_binary_tx_queue = False
uses_text_tx_queue = False

Methods inherited from runtimepy.net.connection.EchoConnection:
async process_binary(self, data: bytes) -> bool
Process a binary frame.
async process_text(self, data: str) -> bool
Process a text frame.

Methods inherited from runtimepy.net.connection.Connection:
async async_init(self) -> bool
A runtime initialization routine (executes during 'process').
disable(self, reason: str) -> None
Disable this connection.
disable_extra(self) -> None
Additional tasks to perform when disabling.
async disable_in(self, time: float) -> None
A method for disabling a connection after some delay.
init(self) -> None
Initialize this instance.
log_metrics(self, label: str = 'conn') -> None
Log connection metrics.
async process(self, stop_sig: asyncio.locks.Event = None, disable_time: float = None, backoff: runtimepy.net.backoff.ExponentialBackoff = None) -> None
Process tasks for this connection while the connection is active.

Readonly properties inherited from runtimepy.net.connection.Connection:
auto_restart
Determine if this connection should be automatically restarted.
disabled
Determine if this connection is disabled.

Data and other attributes inherited from runtimepy.net.connection.Connection:
byte_order = <ByteOrder.NETWORK: 4>
connected = True
default_auto_restart = False

Methods inherited from runtimepy.mixins.logging.LoggerMixinLevelControl:
setup_level_channel(self, env: runtimepy.channel.environment.ChannelEnvironment, name: str = 'log_level', initial: str = 'info', description: str = 'Text-log level filter for this environment.') -> None
Add a commandable log-level channel to the environment.

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

Methods inherited from runtimepy.mixins.environment.ChannelEnvironmentMixin:
register_channel_metrics(self, name: str, channel: runtimepy.metrics.channel.ChannelMetrics, verb: str) -> None
Register individual channel metrics.
register_connection_metrics(self, metrics: runtimepy.metrics.connection.ConnectionMetrics, namespace: str = 'metrics') -> None
Register connection metrics.
register_task_metrics(self, metrics: runtimepy.metrics.task.PeriodicTaskMetrics, namespace: str = 'metrics') -> None
Register periodic task metrics.

Methods inherited from runtimepy.net.mixin.TransportMixin:
logger_name(self, prefix: 'str' = '') -> 'str'
Get a logger name for this connection.
set_transport(self, transport: '_asyncio.BaseTransport') -> 'None'
Set the transport for this instance.

Readonly properties inherited from runtimepy.net.mixin.TransportMixin:
socket
Get this instance's underlying socket.

 
class NullTcpConnection(TcpConnection, runtimepy.net.connection.NullConnection)
    NullTcpConnection(transport: asyncio.transports.Transport, protocol: runtimepy.net.tcp.protocol.QueueProtocol) -&gt; None
 
A null TCP connection.
 
 
Method resolution order:
NullTcpConnection
TcpConnection
runtimepy.net.connection.NullConnection
runtimepy.net.connection.Connection
runtimepy.mixins.logging.LoggerMixinLevelControl
vcorelib.logging.LoggerMixin
runtimepy.mixins.environment.ChannelEnvironmentMixin
abc.ABC
runtimepy.net.mixin.TransportMixin
builtins.object

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

Methods inherited from TcpConnection:
__init__(self, transport: asyncio.transports.Transport, protocol: runtimepy.net.tcp.protocol.QueueProtocol) -> None
Initialize this TCP connection.
async close(self) -> None
Close this connection.
async restart(self) -> bool
Reset necessary underlying state for this connection to 'process'
again.
send_binary(self, data: Union[bytes, bytearray, memoryview]) -> None
Enqueue a binary message tos end.
send_text(self, data: str) -> None
Enqueue a text message to send.

Class methods inherited from TcpConnection:
async app(stop_sig: asyncio.locks.Event, callback: Callable[[~T], NoneType] = None, serving_callback: Callable[[Any], NoneType] = None, manager: runtimepy.net.manager.ConnectionManager = None, **kwargs) -> None from abc.ABCMeta
Run an application that serves new connections.
async create_connection(backoff: runtimepy.net.backoff.ExponentialBackoff = None, **kwargs) -> ~T from abc.ABCMeta
Create a TCP connection.
create_pair() -> AsyncIterator[tuple[~T, ~T]] from abc.ABCMeta
Create a connection pair.
serve(callback: Callable[[~T], NoneType] = None, **kwargs) -> AsyncIterator[Any] from abc.ABCMeta
Serve incoming connections.

Data and other attributes inherited from TcpConnection:
log_alias = 'TCP'
log_prefix = ''
uses_binary_tx_queue = False
uses_text_tx_queue = False

Methods inherited from runtimepy.net.connection.NullConnection:
async process_binary(self, data: bytes) -> bool
Process a binary frame.
async process_text(self, data: str) -> bool
Process a text frame.

Methods inherited from runtimepy.net.connection.Connection:
async async_init(self) -> bool
A runtime initialization routine (executes during 'process').
disable(self, reason: str) -> None
Disable this connection.
disable_extra(self) -> None
Additional tasks to perform when disabling.
async disable_in(self, time: float) -> None
A method for disabling a connection after some delay.
init(self) -> None
Initialize this instance.
log_metrics(self, label: str = 'conn') -> None
Log connection metrics.
async process(self, stop_sig: asyncio.locks.Event = None, disable_time: float = None, backoff: runtimepy.net.backoff.ExponentialBackoff = None) -> None
Process tasks for this connection while the connection is active.

Readonly properties inherited from runtimepy.net.connection.Connection:
auto_restart
Determine if this connection should be automatically restarted.
disabled
Determine if this connection is disabled.

Data and other attributes inherited from runtimepy.net.connection.Connection:
byte_order = <ByteOrder.NETWORK: 4>
connected = True
default_auto_restart = False

Methods inherited from runtimepy.mixins.logging.LoggerMixinLevelControl:
setup_level_channel(self, env: runtimepy.channel.environment.ChannelEnvironment, name: str = 'log_level', initial: str = 'info', description: str = 'Text-log level filter for this environment.') -> None
Add a commandable log-level channel to the environment.

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

Methods inherited from runtimepy.mixins.environment.ChannelEnvironmentMixin:
register_channel_metrics(self, name: str, channel: runtimepy.metrics.channel.ChannelMetrics, verb: str) -> None
Register individual channel metrics.
register_connection_metrics(self, metrics: runtimepy.metrics.connection.ConnectionMetrics, namespace: str = 'metrics') -> None
Register connection metrics.
register_task_metrics(self, metrics: runtimepy.metrics.task.PeriodicTaskMetrics, namespace: str = 'metrics') -> None
Register periodic task metrics.

Methods inherited from runtimepy.net.mixin.TransportMixin:
logger_name(self, prefix: 'str' = '') -> 'str'
Get a logger name for this connection.
set_transport(self, transport: '_asyncio.BaseTransport') -> 'None'
Set the transport for this instance.

Readonly properties inherited from runtimepy.net.mixin.TransportMixin:
socket
Get this instance's underlying socket.

 
class TcpConnection(runtimepy.net.connection.Connection, runtimepy.net.mixin.TransportMixin)
    TcpConnection(transport: asyncio.transports.Transport, protocol: runtimepy.net.tcp.protocol.QueueProtocol) -&gt; None
 
A TCP connection interface.
 
 
Method resolution order:
TcpConnection
runtimepy.net.connection.Connection
runtimepy.mixins.logging.LoggerMixinLevelControl
vcorelib.logging.LoggerMixin
runtimepy.mixins.environment.ChannelEnvironmentMixin
abc.ABC
runtimepy.net.mixin.TransportMixin
builtins.object

Methods defined here:
__init__(self, transport: asyncio.transports.Transport, protocol: runtimepy.net.tcp.protocol.QueueProtocol) -> None
Initialize this TCP connection.
async close(self) -> None
Close this connection.
async restart(self) -> bool
Reset necessary underlying state for this connection to 'process'
again.
send_binary(self, data: Union[bytes, bytearray, memoryview]) -> None
Enqueue a binary message tos end.
send_text(self, data: str) -> None
Enqueue a text message to send.

Class methods defined here:
async app(stop_sig: asyncio.locks.Event, callback: Callable[[~T], NoneType] = None, serving_callback: Callable[[Any], NoneType] = None, manager: runtimepy.net.manager.ConnectionManager = None, **kwargs) -> None from abc.ABCMeta
Run an application that serves new connections.
async create_connection(backoff: runtimepy.net.backoff.ExponentialBackoff = None, **kwargs) -> ~T from abc.ABCMeta
Create a TCP connection.
create_pair() -> AsyncIterator[tuple[~T, ~T]] from abc.ABCMeta
Create a connection pair.
serve(callback: Callable[[~T], NoneType] = None, **kwargs) -> AsyncIterator[Any] from abc.ABCMeta
Serve incoming connections.

Data and other attributes defined here:
__abstractmethods__ = frozenset()
__annotations__ = {}
log_alias = 'TCP'
log_prefix = ''
uses_binary_tx_queue = False
uses_text_tx_queue = False

Methods inherited from runtimepy.net.connection.Connection:
async async_init(self) -> bool
A runtime initialization routine (executes during 'process').
disable(self, reason: str) -> None
Disable this connection.
disable_extra(self) -> None
Additional tasks to perform when disabling.
async disable_in(self, time: float) -> None
A method for disabling a connection after some delay.
init(self) -> None
Initialize this instance.
log_metrics(self, label: str = 'conn') -> None
Log connection metrics.
async process(self, stop_sig: asyncio.locks.Event = None, disable_time: float = None, backoff: runtimepy.net.backoff.ExponentialBackoff = None) -> None
Process tasks for this connection while the connection is active.
async process_binary(self, data: bytes) -> bool
Process a binary frame.
async process_text(self, data: str) -> bool
Process a text frame.

Readonly properties inherited from runtimepy.net.connection.Connection:
auto_restart
Determine if this connection should be automatically restarted.
disabled
Determine if this connection is disabled.

Data and other attributes inherited from runtimepy.net.connection.Connection:
byte_order = <ByteOrder.NETWORK: 4>
connected = True
default_auto_restart = False

Methods inherited from runtimepy.mixins.logging.LoggerMixinLevelControl:
setup_level_channel(self, env: runtimepy.channel.environment.ChannelEnvironment, name: str = 'log_level', initial: str = 'info', description: str = 'Text-log level filter for this environment.') -> None
Add a commandable log-level channel to the environment.

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

Methods inherited from runtimepy.mixins.environment.ChannelEnvironmentMixin:
register_channel_metrics(self, name: str, channel: runtimepy.metrics.channel.ChannelMetrics, verb: str) -> None
Register individual channel metrics.
register_connection_metrics(self, metrics: runtimepy.metrics.connection.ConnectionMetrics, namespace: str = 'metrics') -> None
Register connection metrics.
register_task_metrics(self, metrics: runtimepy.metrics.task.PeriodicTaskMetrics, namespace: str = 'metrics') -> None
Register periodic task metrics.

Methods inherited from runtimepy.net.mixin.TransportMixin:
logger_name(self, prefix: 'str' = '') -> 'str'
Get a logger name for this connection.
set_transport(self, transport: '_asyncio.BaseTransport') -> 'None'
Set the transport for this instance.

Readonly properties inherited from runtimepy.net.mixin.TransportMixin:
socket
Get this instance's underlying socket.

 
Data
        __all__ = ['TcpConnection', 'EchoTcpConnection', 'NullTcpConnection']