mirror of
https://github.com/bec-project/bec_widgets.git
synced 2026-03-28 19:38:27 +01:00
182 lines
6.2 KiB
Python
182 lines
6.2 KiB
Python
from __future__ import annotations
|
|
|
|
import collections
|
|
from collections.abc import Callable
|
|
from typing import TYPE_CHECKING, Union
|
|
|
|
import redis
|
|
from bec_lib.client import BECClient
|
|
from bec_lib.logger import bec_logger
|
|
from bec_lib.redis_connector import MessageObject, RedisConnector
|
|
from bec_lib.service_config import ServiceConfig
|
|
from qtpy.QtCore import QObject
|
|
from qtpy.QtCore import Signal as pyqtSignal
|
|
|
|
logger = bec_logger.logger
|
|
|
|
if TYPE_CHECKING:
|
|
from bec_lib.endpoints import EndpointInfo
|
|
|
|
|
|
class QtThreadSafeCallback(QObject):
|
|
cb_signal = pyqtSignal(dict, dict)
|
|
|
|
def __init__(self, cb):
|
|
super().__init__()
|
|
|
|
self.cb = cb
|
|
self.cb_signal.connect(self.cb)
|
|
|
|
def __hash__(self):
|
|
# make 2 differents QtThreadSafeCallback to look
|
|
# identical when used as dictionary keys, if the
|
|
# callback is the same
|
|
return id(self.cb)
|
|
|
|
def __call__(self, msg_content, metadata):
|
|
self.cb_signal.emit(msg_content, metadata)
|
|
|
|
|
|
class QtRedisConnector(RedisConnector):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
def _execute_callback(self, cb, msg, kwargs):
|
|
if not isinstance(cb, QtThreadSafeCallback):
|
|
return super()._execute_callback(cb, msg, kwargs)
|
|
# if msg.msg_type == "bundle_message":
|
|
# # big warning: how to handle bundle messages?
|
|
# # message with messages inside ; which slot to call?
|
|
# # bundle_msg = msg
|
|
# # for msg in bundle_msg:
|
|
# # ...
|
|
# # for now, only consider the 1st message
|
|
# msg = msg[0]
|
|
# raise RuntimeError(f"
|
|
if isinstance(msg, MessageObject):
|
|
if isinstance(msg.value, list):
|
|
msg = msg.value[0]
|
|
else:
|
|
msg = msg.value
|
|
|
|
# we can notice kwargs are lost when passed to Qt slot
|
|
metadata = msg.metadata
|
|
cb(msg.content, metadata)
|
|
else:
|
|
# from stream
|
|
msg = msg["data"]
|
|
cb(msg.content, msg.metadata)
|
|
|
|
|
|
class BECDispatcher:
|
|
"""Utility class to keep track of slots connected to a particular redis connector"""
|
|
|
|
_instance = None
|
|
_initialized = False
|
|
|
|
def __new__(cls, client=None, config: str = None, *args, **kwargs):
|
|
if cls._instance is None:
|
|
cls._instance = super(BECDispatcher, cls).__new__(cls)
|
|
cls._initialized = False
|
|
return cls._instance
|
|
|
|
def __init__(self, client=None, config: str | ServiceConfig = None):
|
|
if self._initialized:
|
|
return
|
|
|
|
self._slots = collections.defaultdict(set)
|
|
self.client = client
|
|
|
|
if self.client is None:
|
|
if config is not None:
|
|
if not isinstance(config, ServiceConfig):
|
|
# config is supposed to be a path
|
|
config = ServiceConfig(config)
|
|
self.client = BECClient(
|
|
config=config, connector_cls=QtRedisConnector, name="BECWidgets"
|
|
)
|
|
else:
|
|
if self.client.started:
|
|
# have to reinitialize client to use proper connector
|
|
logger.info("Shutting down BECClient to switch to QtRedisConnector")
|
|
self.client.shutdown()
|
|
self.client._BECClient__init_params["connector_cls"] = QtRedisConnector
|
|
|
|
try:
|
|
self.client.start()
|
|
except redis.exceptions.ConnectionError:
|
|
logger.warning("Could not connect to Redis, skipping start of BECClient.")
|
|
|
|
logger.success("Initialized BECDispatcher")
|
|
self._initialized = True
|
|
|
|
@classmethod
|
|
def reset_singleton(cls):
|
|
cls._instance = None
|
|
cls._initialized = False
|
|
|
|
def connect_slot(
|
|
self,
|
|
slot: Callable,
|
|
topics: Union[EndpointInfo, str, list[Union[EndpointInfo, str]]],
|
|
**kwargs,
|
|
) -> None:
|
|
"""Connect widget's qt slot, so that it is called on new pub/sub topic message.
|
|
|
|
Args:
|
|
slot (Callable): A slot method/function that accepts two inputs: content and metadata of
|
|
the corresponding pub/sub message
|
|
topics (EndpointInfo | str | list): A topic or list of topics that can typically be acquired via bec_lib.MessageEndpoints
|
|
"""
|
|
slot = QtThreadSafeCallback(slot)
|
|
self.client.connector.register(topics, cb=slot, **kwargs)
|
|
topics_str, _ = self.client.connector._convert_endpointinfo(topics)
|
|
self._slots[slot].update(set(topics_str))
|
|
|
|
def disconnect_slot(self, slot: Callable, topics: Union[str, list]):
|
|
"""
|
|
Disconnect a slot from a topic.
|
|
|
|
Args:
|
|
slot(Callable): The slot to disconnect
|
|
topics(Union[str, list]): The topic(s) to disconnect from
|
|
"""
|
|
# find the right slot to disconnect from ;
|
|
# slot callbacks are wrapped in QtThreadSafeCallback objects,
|
|
# but the slot we receive here is the original callable
|
|
for connected_slot in self._slots:
|
|
if connected_slot.cb == slot:
|
|
break
|
|
else:
|
|
return
|
|
self.client.connector.unregister(topics, cb=connected_slot)
|
|
topics_str, _ = self.client.connector._convert_endpointinfo(topics)
|
|
self._slots[connected_slot].difference_update(set(topics_str))
|
|
if not self._slots[connected_slot]:
|
|
del self._slots[connected_slot]
|
|
|
|
def disconnect_topics(self, topics: Union[str, list]):
|
|
"""
|
|
Disconnect all slots from a topic.
|
|
|
|
Args:
|
|
topics(Union[str, list]): The topic(s) to disconnect from
|
|
"""
|
|
self.client.connector.unregister(topics)
|
|
topics_str, _ = self.client.connector._convert_endpointinfo(topics)
|
|
for slot in list(self._slots.keys()):
|
|
slot_topics = self._slots[slot]
|
|
slot_topics.difference_update(set(topics_str))
|
|
if not slot_topics:
|
|
del self._slots[slot]
|
|
|
|
def disconnect_all(self, *args, **kwargs):
|
|
"""
|
|
Disconnect all slots from all topics.
|
|
|
|
Args:
|
|
*args: Arbitrary positional arguments
|
|
**kwargs: Arbitrary keyword arguments
|
|
"""
|
|
self.disconnect_topics(self.client.connector._topics_cb)
|