2021-06-11 12:53:35 +02:00
|
|
|
import argparse
|
2021-06-17 12:14:31 +02:00
|
|
|
from typing import Dict, Tuple, Optional
|
2021-06-11 12:53:35 +02:00
|
|
|
|
2021-06-17 12:14:31 +02:00
|
|
|
from tmtccmd.com_if.com_interface_base import CommunicationInterface
|
2021-06-11 12:53:35 +02:00
|
|
|
from tmtccmd.config.definitions import ServiceOpCodeDictT
|
|
|
|
from tmtccmd.config.hook import TmTcHookBase
|
2021-06-17 12:14:31 +02:00
|
|
|
from tmtccmd.core.backend import TmTcHandler
|
|
|
|
from tmtccmd.pus_tc.definitions import TcQueueT
|
2021-06-11 12:53:35 +02:00
|
|
|
from tmtccmd.pus_tm.service_3_base import Service3Base
|
2021-06-17 12:14:31 +02:00
|
|
|
from tmtccmd.ecss.conf import PusVersion
|
|
|
|
from tmtccmd.utility.tmtc_printer import TmTcPrinter
|
2021-06-11 12:53:35 +02:00
|
|
|
|
2021-07-14 00:24:09 +02:00
|
|
|
from common_tmtc.config.definitions import PUS_APID
|
2021-06-18 16:28:53 +02:00
|
|
|
|
2021-06-11 12:53:35 +02:00
|
|
|
|
|
|
|
class FsfwHookBase(TmTcHookBase):
|
|
|
|
|
|
|
|
def get_version(self) -> str:
|
2021-07-14 00:24:09 +02:00
|
|
|
from common_tmtc.config.version import SW_NAME, SW_VERSION, SW_SUBVERSION, SW_SUBSUBVERSION
|
2021-06-11 12:53:35 +02:00
|
|
|
return f"{SW_NAME} {SW_VERSION}.{SW_SUBVERSION}.{SW_SUBSUBVERSION}"
|
|
|
|
|
|
|
|
def get_json_config_file_path(self) -> str:
|
|
|
|
return "config/tmtc_config.json"
|
|
|
|
|
|
|
|
def get_service_op_code_dictionary(self) -> ServiceOpCodeDictT:
|
|
|
|
from tmtccmd.config.globals import get_default_service_op_code_dict
|
|
|
|
return get_default_service_op_code_dict()
|
|
|
|
|
|
|
|
def add_globals_pre_args_parsing(self, gui: bool = False):
|
|
|
|
from tmtccmd.config.globals import set_default_globals_pre_args_parsing
|
2021-06-17 12:14:31 +02:00
|
|
|
set_default_globals_pre_args_parsing(
|
2021-06-18 16:28:53 +02:00
|
|
|
gui=gui, pus_tm_version=PusVersion.PUS_C, pus_tc_version=PusVersion.PUS_C, apid=PUS_APID
|
2021-06-17 12:14:31 +02:00
|
|
|
)
|
2021-06-11 12:53:35 +02:00
|
|
|
|
|
|
|
def add_globals_post_args_parsing(self, args: argparse.Namespace):
|
|
|
|
from tmtccmd.config.globals import set_default_globals_post_args_parsing
|
2021-07-14 00:24:09 +02:00
|
|
|
set_default_globals_post_args_parsing(
|
|
|
|
args=args, json_cfg_path=self.get_json_config_file_path()
|
|
|
|
)
|
2021-06-11 12:53:35 +02:00
|
|
|
|
2021-06-17 12:14:31 +02:00
|
|
|
def assign_communication_interface(
|
|
|
|
self, com_if_key: str, tmtc_printer: TmTcPrinter
|
|
|
|
) -> Optional[CommunicationInterface]:
|
2021-06-11 12:53:35 +02:00
|
|
|
from tmtccmd.config.com_if import create_communication_interface_default
|
|
|
|
return create_communication_interface_default(
|
2021-06-30 10:16:55 +02:00
|
|
|
com_if_key=com_if_key, tmtc_printer=tmtc_printer,
|
|
|
|
json_cfg_path=self.get_json_config_file_path()
|
2021-06-11 12:53:35 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
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):
|
2021-07-14 00:24:09 +02:00
|
|
|
from common_tmtc.pus_tc.tc_packing import pack_service_queue_user
|
2021-06-30 10:42:28 +02:00
|
|
|
pack_service_queue_user(service=service, op_code=op_code, tc_queue=service_queue)
|
2021-06-11 12:53:35 +02:00
|
|
|
|
|
|
|
def get_object_ids(self) -> Dict[bytes, list]:
|
2021-07-14 00:24:09 +02:00
|
|
|
from common_tmtc.config.object_ids import get_object_ids
|
2021-06-11 12:53:35 +02:00
|
|
|
return get_object_ids()
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def handle_service_8_telemetry(
|
|
|
|
object_id: int, action_id: int, custom_data: bytearray
|
|
|
|
) -> Tuple[list, list]:
|
2021-07-14 00:24:09 +02:00
|
|
|
from common_tmtc.pus_tm.service_8_handling import custom_service_8_handling
|
2021-06-11 12:53:35 +02:00
|
|
|
return custom_service_8_handling(
|
|
|
|
object_id=object_id, action_id=action_id, custom_data=custom_data
|
|
|
|
)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def handle_service_3_housekeeping(
|
|
|
|
object_id: bytes, set_id: int, hk_data: bytearray, service3_packet: Service3Base
|
|
|
|
) -> Tuple[list, list, bytearray, int]:
|
2021-07-14 00:24:09 +02:00
|
|
|
from common_tmtc.pus_tm import service_3_hk_handling
|
2021-06-11 12:53:35 +02:00
|
|
|
return service_3_hk_handling(
|
|
|
|
object_id=object_id, set_id=set_id, hk_data=hk_data, service3_packet=service3_packet
|
|
|
|
)
|