Source code for aries_cloudagent.transport.outbound.base

"""Base outbound transport."""

import asyncio
from abc import ABC, abstractmethod
from typing import Union

from ...utils.stats import Collector

from ..error import TransportError
from ..wire_format import BaseWireFormat


[docs]class BaseOutboundTransport(ABC): """Base outbound transport class.""" def __init__(self, wire_format: BaseWireFormat = None) -> None: """Initialize a `BaseOutboundTransport` instance.""" self._collector = None self._wire_format = wire_format @property def collector(self) -> Collector: """Accessor for the stats collector instance.""" return self._collector @collector.setter def collector(self, coll: Collector): """Assign a new stats collector instance.""" self._collector = coll async def __aenter__(self): """Async context manager enter.""" await self.start() async def __aexit__(self, err_type, err_value, err_t): """Async context manager exit.""" if err_type and err_type != asyncio.CancelledError: self.logger.exception("Exception in outbound transport") await self.stop()
[docs] @abstractmethod async def start(self): """Start the transport."""
[docs] @abstractmethod async def stop(self): """Shut down the transport."""
@property def wire_format(self) -> BaseWireFormat: """Accessor for a custom wire format for the transport.""" return self._wire_format @wire_format.setter def wire_format(self, format: BaseWireFormat): """Setter for a custom wire format for the transport.""" self._wire_format = format
[docs] @abstractmethod async def handle_message(self, payload: Union[str, bytes], endpoint: str): """ Handle message from queue. Args: payload: message payload in string or byte format endpoint: URI endpoint for delivery """
[docs]class OutboundTransportError(TransportError): """Generic outbound transport error."""
[docs]class OutboundTransportRegistrationError(OutboundTransportError): """Outbound transport registration error."""
[docs]class OutboundDeliveryError(OutboundTransportError): """Base exception when a message cannot be delivered via an outbound transport."""