from typing import Dict, Optional from tmtccmd.com_if.com_interface_base import CommunicationInterface from tmtccmd.config.definitions import ServiceOpCodeDictT from tmtccmd.config.hook import TmTcHookBase from tmtccmd.core.backend import TmTcHandler from tmtccmd.tc.definitions import TcQueueT from tmtccmd.utility.retval import RetvalDictT from common_tmtc.config.definitions import TM_SP_IDS from common_tmtc.pus_tc.cmd_definitions import get_fsfw_service_op_code_dict class FsfwHookBase(TmTcHookBase): def __init__(self, json_cfg_path: str): super().__init__(json_cfg_path=json_cfg_path) def get_service_op_code_dictionary(self) -> ServiceOpCodeDictT: return get_fsfw_service_op_code_dict() def assign_communication_interface( self, com_if_key: str ) -> Optional[CommunicationInterface]: from tmtccmd.config.com_if import create_communication_interface_default return create_communication_interface_default( com_if_key=com_if_key, json_cfg_path=self.json_cfg_path, space_packet_ids=TM_SP_IDS, ) def perform_mode_operation(self, tmtc_backend: TmTcHandler, mode: int): print("No custom mode operation implemented") def pack_service_queue(self, service: int, op_code: str, service_queue: TcQueueT): from common_tmtc.pus_tc.tc_packing import pack_service_queue_user pack_service_queue_user( service=service, op_code=op_code, tc_queue=service_queue ) def get_object_ids(self) -> Dict[bytes, list]: from common_tmtc.config.object_ids import get_object_ids return get_object_ids() def get_retval_dict(self) -> RetvalDictT: return self.get_retval_dict()