2022-07-03 19:29:53 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
"""TMTC commander for FSFW Example"""
|
2022-07-03 21:00:28 +02:00
|
|
|
import sys
|
|
|
|
import time
|
2022-09-08 18:26:36 +02:00
|
|
|
from pathlib import Path
|
2022-09-09 10:51:06 +02:00
|
|
|
from typing import Sequence, Optional
|
2022-07-03 21:00:28 +02:00
|
|
|
|
2022-09-09 10:43:18 +02:00
|
|
|
from spacepackets.cfdp import ConditionCode, TransmissionModes, PduType, DirectiveType
|
|
|
|
from spacepackets.cfdp.pdu import AbstractFileDirectiveBase, PduHolder
|
2022-07-03 21:00:28 +02:00
|
|
|
from spacepackets.ecss import PusVerificator
|
|
|
|
|
2022-07-03 19:29:53 +02:00
|
|
|
import tmtccmd
|
2022-09-08 18:26:36 +02:00
|
|
|
from common_tmtc.common import (
|
|
|
|
setup_params,
|
|
|
|
setup_tmtc_handlers,
|
|
|
|
setup_backend,
|
|
|
|
EXAMPLE_APID,
|
|
|
|
)
|
2022-07-03 19:29:53 +02:00
|
|
|
from config.hook import FsfwHookBase
|
2022-09-08 18:26:36 +02:00
|
|
|
from spacepackets.util import UnsignedByteField
|
2022-07-03 21:00:28 +02:00
|
|
|
from tmtccmd import get_console_logger
|
2022-09-08 18:26:36 +02:00
|
|
|
from tmtccmd.cfdp import (
|
|
|
|
LocalEntityCfg,
|
|
|
|
CfdpUserBase,
|
|
|
|
TransactionId,
|
|
|
|
RemoteEntityCfg,
|
|
|
|
RemoteEntityCfgTable,
|
|
|
|
HostFilestore,
|
|
|
|
)
|
|
|
|
from tmtccmd.cfdp.request import PutRequestCfg, PutRequest
|
|
|
|
from tmtccmd.cfdp.user import (
|
|
|
|
FileSegmentRecvdParams,
|
|
|
|
MetadataRecvParams,
|
|
|
|
TransactionFinishedParams,
|
|
|
|
)
|
2022-07-03 21:00:28 +02:00
|
|
|
from tmtccmd.core import BackendRequest
|
|
|
|
from tmtccmd.logging.pus import (
|
|
|
|
RegularTmtcLogWrapper,
|
|
|
|
RawTmtcTimedLogWrapper,
|
|
|
|
TimedLogWhen,
|
|
|
|
)
|
|
|
|
from tmtccmd.pus import VerificationWrapper
|
2022-09-08 18:26:36 +02:00
|
|
|
from tmtccmd.util import ProvidesSeqCount
|
2022-07-27 14:41:07 +02:00
|
|
|
from tmtccmd.util.tmtc_printer import FsfwTmTcPrinter
|
2022-09-08 18:26:36 +02:00
|
|
|
from tmtccmd.cfdp.handler import DestHandler, SourceHandler
|
2022-07-03 21:00:28 +02:00
|
|
|
|
|
|
|
LOGGER = get_console_logger()
|
2022-07-03 19:29:53 +02:00
|
|
|
|
|
|
|
|
2022-09-08 18:26:36 +02:00
|
|
|
class CfdpHandler(CfdpUserBase):
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
cfg: LocalEntityCfg,
|
|
|
|
seq_cnt_provider: ProvidesSeqCount,
|
|
|
|
remote_cfg: Sequence[RemoteEntityCfg],
|
|
|
|
):
|
|
|
|
vfs = HostFilestore()
|
|
|
|
super().__init__(vfs)
|
|
|
|
self.dest_id = UnsignedByteField(EXAMPLE_APID, 2)
|
|
|
|
self.remote_cfg_table = RemoteEntityCfgTable()
|
|
|
|
self.remote_cfg_table.add_remote_entities(remote_cfg)
|
|
|
|
self.dest_handler = DestHandler(cfg, self, self.remote_cfg_table)
|
|
|
|
self.source_handler = SourceHandler(cfg, seq_cnt_provider, self)
|
|
|
|
|
|
|
|
def put_request_file(
|
|
|
|
self,
|
|
|
|
source_path: Path,
|
|
|
|
dest_path: Path,
|
|
|
|
trans_mode: TransmissionModes,
|
|
|
|
closure_requested: bool,
|
|
|
|
):
|
|
|
|
put_request_cfg = PutRequestCfg(
|
|
|
|
destination_id=self.dest_id,
|
|
|
|
source_file=source_path,
|
|
|
|
dest_file=dest_path.as_posix(),
|
|
|
|
trans_mode=trans_mode,
|
|
|
|
closure_requested=closure_requested,
|
|
|
|
)
|
|
|
|
put_request = PutRequest(put_request_cfg)
|
|
|
|
self.source_handler.put_request(
|
|
|
|
put_request, self.remote_cfg_table.get_remote_entity(self.dest_id)
|
|
|
|
)
|
|
|
|
|
2022-09-09 10:51:06 +02:00
|
|
|
def pull_next_dest_packet(self) -> Optional[PduHolder]:
|
|
|
|
res = self.dest_handler.state_machine()
|
|
|
|
if res.states.packet_ready:
|
|
|
|
return self.dest_handler.pdu_holder
|
|
|
|
return None
|
|
|
|
|
|
|
|
def confirm_dest_packet_sent(self):
|
|
|
|
self.dest_handler.confirm_packet_sent_advance_fsm()
|
|
|
|
|
2022-09-09 10:43:18 +02:00
|
|
|
def pass_packet(self, packet: AbstractFileDirectiveBase):
|
|
|
|
"""This function routes the packets based on PDU type and directive type if applicable.
|
|
|
|
|
|
|
|
The routing is based on section 4.5 of the CFDP standard whcih specifies the PDU forwarding
|
|
|
|
procedure.
|
|
|
|
"""
|
|
|
|
if packet.pdu_type == PduType.FILE_DATA:
|
|
|
|
self.dest_handler.pass_packet(packet)
|
|
|
|
else:
|
|
|
|
if packet.directive_type in [
|
|
|
|
DirectiveType.METADATA_PDU,
|
|
|
|
DirectiveType.EOF_PDU,
|
|
|
|
DirectiveType.PROMPT_PDU,
|
|
|
|
]:
|
|
|
|
# Section b) of 4.5.3: These PDUs should always be targeted towards the file
|
|
|
|
# receiver a.k.a. the destination handler
|
|
|
|
self.dest_handler.pass_packet(packet)
|
|
|
|
elif packet.directive_type in [
|
|
|
|
DirectiveType.FINISHED_PDU,
|
|
|
|
DirectiveType.NAK_PDU,
|
|
|
|
DirectiveType.KEEP_ALIVE_PDU,
|
|
|
|
]:
|
|
|
|
# Section c) of 4.5.3: These PDUs should always be targeted towards the file sender
|
|
|
|
# a.k.a. the source handler
|
|
|
|
self.source_handler.pass_packet(packet)
|
|
|
|
elif packet.directive_type == DirectiveType.ACK_PDU:
|
|
|
|
# Section a): Recipient depends on the type of PDU that is being acknowledged.
|
|
|
|
# We can simply extract the PDU type from the raw stream. If it is an EOF PDU,
|
|
|
|
# this packet is passed to the source handler. For a finished PDU, it is
|
|
|
|
# passed to the destination handler
|
|
|
|
pdu_holder = PduHolder(packet)
|
|
|
|
ack_pdu = pdu_holder.to_ack_pdu()
|
|
|
|
if ack_pdu.directive_code_of_acked_pdu == DirectiveType.EOF_PDU:
|
|
|
|
self.source_handler.pass_packet(packet)
|
|
|
|
elif ack_pdu.directive_code_of_acked_pdu == DirectiveType.FINISHED_PDU:
|
|
|
|
self.dest_handler.pass_packet(packet)
|
|
|
|
|
2022-09-08 18:26:36 +02:00
|
|
|
def transaction_indication(self, transaction_id: TransactionId):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def eof_sent_indication(self, transaction_id: TransactionId):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def transaction_finished_indication(self, params: TransactionFinishedParams):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def metadata_recv_indication(self, params: MetadataRecvParams):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def file_segment_recv_indication(self, params: FileSegmentRecvdParams):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def report_indication(self, transaction_id: TransactionId, status_report: any):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def suspended_indication(
|
|
|
|
self, transaction_id: TransactionId, cond_code: ConditionCode
|
|
|
|
):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def resumed_indication(self, transaction_id: TransactionId, progress: int):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def fault_indication(
|
|
|
|
self, transaction_id: TransactionId, cond_code: ConditionCode, progress: int
|
|
|
|
):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def abandoned_indication(
|
|
|
|
self, transaction_id: TransactionId, cond_code: ConditionCode, progress: int
|
|
|
|
):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def eof_recv_indication(self, transaction_id: TransactionId):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2022-07-03 19:29:53 +02:00
|
|
|
def main():
|
2022-07-03 21:00:28 +02:00
|
|
|
setup_wrapper = setup_params(FsfwHookBase())
|
|
|
|
tmtc_logger = RegularTmtcLogWrapper()
|
|
|
|
printer = FsfwTmTcPrinter(tmtc_logger.logger)
|
|
|
|
raw_logger = RawTmtcTimedLogWrapper(when=TimedLogWhen.PER_HOUR, interval=2)
|
|
|
|
pus_verificator = PusVerificator()
|
|
|
|
verif_wrapper = VerificationWrapper(
|
|
|
|
console_logger=get_console_logger(),
|
|
|
|
file_logger=printer.file_logger,
|
|
|
|
pus_verificator=pus_verificator,
|
|
|
|
)
|
|
|
|
ccsds_handler, tc_handler = setup_tmtc_handlers(
|
|
|
|
verif_wrapper=verif_wrapper, raw_logger=raw_logger, printer=printer
|
|
|
|
)
|
|
|
|
tmtccmd.setup(setup_wrapper)
|
|
|
|
backend = setup_backend(
|
|
|
|
setup_wrapper=setup_wrapper, ccsds_handler=ccsds_handler, tc_handler=tc_handler
|
|
|
|
)
|
|
|
|
try:
|
|
|
|
while True:
|
|
|
|
state = backend.periodic_op(None)
|
|
|
|
if state.request == BackendRequest.TERMINATION_NO_ERROR:
|
|
|
|
sys.exit(0)
|
|
|
|
elif state.request == BackendRequest.DELAY_IDLE:
|
|
|
|
LOGGER.info("TMTC Client in IDLE mode")
|
|
|
|
time.sleep(3.0)
|
|
|
|
elif state.request == BackendRequest.DELAY_LISTENER:
|
|
|
|
time.sleep(0.8)
|
|
|
|
elif state.request == BackendRequest.DELAY_CUSTOM:
|
2022-08-17 17:16:50 +02:00
|
|
|
if state.next_delay.total_seconds() < 0.5:
|
|
|
|
time.sleep(state.next_delay.total_seconds())
|
|
|
|
else:
|
|
|
|
time.sleep(0.5)
|
2022-07-03 21:00:28 +02:00
|
|
|
elif state.request == BackendRequest.CALL_NEXT:
|
|
|
|
pass
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
sys.exit(0)
|
2022-07-03 19:29:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|