MessageBroker.py 1.57 KB
Newer Older
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
import logging
from typing import Iterator, Set
from .backend._Backend import _Backend
from .Constants import CONSUME_TIMEOUT
from .Message import Message
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed

LOGGER = logging.getLogger(__name__)

class MessageBroker:
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    def __init__(self, backend : _Backend):
        if not isinstance(backend, _Backend):
            str_class_path = '{}.{}'.format(_Backend.__module__, _Backend.__name__)
            raise AttributeError('backend must inherit from {}'.format(str_class_path))
        self._backend = backend
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    @property
    def backend(self) -> _Backend: return self._backend
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed

    def publish(self, message : Message) -> None:
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        self._backend.publish(message.topic, message.content)
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    def consume(self, topic_names : Set[str], consume_timeout : float = CONSUME_TIMEOUT) -> Iterator[Message]:
        for pair in self._backend.consume(topic_names, consume_timeout=consume_timeout):
            yield Message(*pair)
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    def terminate(self):
        self._backend.terminate()