Source code for ska_pst_lmc.dsp.dsp_process_api

# -*- coding: utf-8 -*-
#
# This file is part of the SKA PST LMC project
#
# Distributed under the terms of the BSD 3-clause new license.
# See LICENSE for more info.
"""
Module for providing the API to be communicate with the DSP process.

The :py:class:`PstDsprocessApiSimulator` is used in testing or
simulation mode, while the :py:class:`PstDspProcessApiGrpc` is used
to connect to a remote application that exposes a gRPC API.
"""

from __future__ import annotations

import logging
import time
from typing import Any, Callable, Dict, Generator, Optional

from ska_pst_lmc_proto.ska_pst_lmc_pb2 import BeamConfiguration, DspDiskBeamConfiguration
from ska_pst_lmc_proto.ska_pst_lmc_pb2 import DspDiskMonitorData as DspDiskMonitorDataProtobuf
from ska_pst_lmc_proto.ska_pst_lmc_pb2 import DspDiskScanConfiguration, MonitorData, ScanConfiguration
from ska_tango_base.commands import TaskStatus

from ska_pst_lmc.component.process_api import PstProcessApiGrpc, PstProcessApiSimulator
from ska_pst_lmc.dsp.dsp_model import DspDiskMonitorData, DspDiskSubbandMonitorData
from ska_pst_lmc.dsp.dsp_simulator import PstDspSimulator
from ska_pst_lmc.dsp.dsp_util import generate_dsp_scan_request
from ska_pst_lmc.util.background_task import BackgroundTaskProcessor

__all__ = [
    "PstDspProcessApi",
    "PstDspProcessApiSimulator",
]

from ska_pst_lmc.component import PstProcessApi


[docs]class PstDspProcessApi(PstProcessApi): """ Abstract class for the API of the DSP process. This extends from :py:class:`PstProcessApi` but provides the specific method of getting the monitoring data. """
[docs]class PstDspProcessApiSimulator(PstProcessApiSimulator, PstDspProcessApi): """A simulator implemenation version of the API of `PstDspProcessApi`.""" def __init__( self: PstDspProcessApiSimulator, logger: logging.Logger, component_state_callback: Callable, simulator: Optional[PstDspSimulator] = None, ) -> None: """ Initialise the API. :param logger: the logger to use for the API. :param component_state_callback: this allows the API to call back to the component manager / TANGO device to deal with state model changes. :param simulator: the simulator instance to use in the API. """ self._simulator = simulator or PstDspSimulator() self._background_task_processor = BackgroundTaskProcessor(default_logger=logger) self.data: Optional[DspDiskMonitorData] = None super().__init__(logger=logger, component_state_callback=component_state_callback)
[docs] def configure_beam(self: PstDspProcessApiSimulator, configuration: dict, task_callback: Callable) -> None: """ Configure the beam. :param configuration: dictionary of parameters to be configured and their requested values :param task_callback: callable to connect back to the component manager. """ self._logger.info(f"Configuring beam for DSP. {configuration}") task_callback(status=TaskStatus.IN_PROGRESS) time.sleep(0.01) task_callback(progress=42) time.sleep(0.01) self._component_state_callback(resourced=True) task_callback(status=TaskStatus.COMPLETED, result="Completed")
[docs] def deconfigure_beam(self: PstDspProcessApiSimulator, task_callback: Callable) -> None: """ Deconfigure the beam. :param task_callback: callable to connect back to the component manager. """ task_callback(status=TaskStatus.IN_PROGRESS) time.sleep(0.01) task_callback(progress=48) time.sleep(0.01) self._component_state_callback(resourced=False) task_callback(status=TaskStatus.COMPLETED, result="Completed")
[docs] def configure_scan(self: PstDspProcessApiSimulator, configuration: dict, task_callback: Callable) -> None: """ Configure a scan. :param configuration: the configuration of for the scan. :param task_callback: callable to connect back to the component manager. """ task_callback(status=TaskStatus.IN_PROGRESS) time.sleep(0.01) task_callback(progress=35) time.sleep(0.01) task_callback(progress=81) self._simulator.configure_scan(configuration=configuration) time.sleep(0.01) self._component_state_callback(configured=True) task_callback(status=TaskStatus.COMPLETED, result="Completed")
[docs] def deconfigure_scan(self: PstDspProcessApiSimulator, task_callback: Callable) -> None: """ Deconfigure a scan. :param task_callback: callable to connect back to the component manager. """ task_callback(status=TaskStatus.IN_PROGRESS) time.sleep(0.01) task_callback(progress=22) time.sleep(0.01) task_callback(progress=56) time.sleep(0.01) task_callback(progress=76) time.sleep(0.01) self._simulator.deconfigure_scan() self._component_state_callback(configured=False) task_callback(status=TaskStatus.COMPLETED, result="Completed")
[docs] def start_scan(self: PstDspProcessApiSimulator, args: dict, task_callback: Callable) -> None: """ Start a scan. :param args: arguments for the scan. :param task_callback: callable to connect back to the component manager. """ task_callback(status=TaskStatus.IN_PROGRESS) time.sleep(0.01) task_callback(progress=59) time.sleep(0.01) self._simulator.start_scan(args) self._component_state_callback(scanning=True) self._scanning = True task_callback(status=TaskStatus.COMPLETED, result="Completed")
[docs] def stop_scan(self: PstDspProcessApiSimulator, task_callback: Callable) -> None: """ Stop a scan. :param task_callback: callable to connect back to the component manager. """ self.stop_monitoring() task_callback(status=TaskStatus.IN_PROGRESS) time.sleep(0.01) task_callback(progress=31) time.sleep(0.01) task_callback(progress=77) self._simulator.stop_scan() self._component_state_callback(scanning=False) self._scanning = False task_callback(status=TaskStatus.COMPLETED, result="Completed")
[docs] def abort(self: PstDspProcessApiSimulator, task_callback: Callable) -> None: """ Abort a scan. :param task_callback: callable to connect back to the component manager. """ self.stop_monitoring() task_callback(status=TaskStatus.IN_PROGRESS) self._simulator.abort() time.sleep(0.01) task_callback(progress=64) self._component_state_callback(scanning=False) self._scanning = False task_callback(status=TaskStatus.COMPLETED, result="Completed")
[docs] def reset(self: PstDspProcessApiSimulator, task_callback: Callable) -> None: """ Reset service when in ABORTED / FAULT state. :param task_callback: callable to connect back to the component manager. """ self.stop_monitoring() task_callback(status=TaskStatus.IN_PROGRESS) time.sleep(0.01) task_callback(progress=37) time.sleep(0.01) task_callback(progress=63) self._component_state_callback(configured=False, resourced=False) task_callback(status=TaskStatus.COMPLETED, result="Completed")
def _simulated_monitor_data_generator( self: PstDspProcessApiSimulator, polling_rate: int ) -> Generator[Dict[int, Any], None, None]: while self._should_be_monitoring(): self._logger.debug("Background generator is creating data") yield self._simulator.get_subband_data() self._logger.debug(f"Sleeping {polling_rate}ms") time.sleep(polling_rate / 1000.0)
[docs] def get_env(self: PstDspProcessApiSimulator) -> Dict[str, Any]: """Get simulated environment values for DSP.DISK.""" import shutil (disk_capacity, _, available_disk_space) = shutil.disk_usage("/") return { "disk_capacity": disk_capacity, "available_disk_space": available_disk_space, }
class PstDspProcessApiGrpc(PstProcessApiGrpc, PstDspProcessApi): """This is an gRPC implementation of the `PstDspProcessApi` API. This uses an instance of a `PstGrpcLmcClient` to send requests through to the DSP.DISK application. Instances of this class should be per subband, rather than one for all of DSP.DISK as a whole. """ def _get_configure_beam_request(self: PstDspProcessApiGrpc, configuration: dict) -> BeamConfiguration: return BeamConfiguration(dsp_disk=DspDiskBeamConfiguration(**configuration)) def _handle_monitor_response( self: PstDspProcessApiGrpc, data: MonitorData, monitor_data_callback: Callable[..., None] ) -> None: dsp_disk_data: DspDiskMonitorDataProtobuf = data.dsp_disk monitor_data_callback( subband_id=1, subband_data=DspDiskSubbandMonitorData( disk_capacity=dsp_disk_data.disk_capacity, available_disk_space=dsp_disk_data.disk_available_bytes, data_recorded=dsp_disk_data.bytes_written, data_record_rate=dsp_disk_data.write_rate, ), ) def _get_configure_scan_request(self: PstProcessApiGrpc, configure_parameters: dict) -> ScanConfiguration: return ScanConfiguration( dsp_disk=DspDiskScanConfiguration( **generate_dsp_scan_request(request_params=configure_parameters) ) )