eive-obsw/mission/tmtc/PusTmFunnel.cpp

135 lines
4.6 KiB
C++
Raw Normal View History

2022-10-21 11:51:44 +02:00
#include "PusTmFunnel.h"
2022-12-13 14:26:20 +01:00
#include "eive/definitions.h"
2022-12-13 14:19:43 +01:00
#include "eive/objects.h"
2022-12-19 13:25:45 +01:00
#include "fsfw/ipc/CommandMessage.h"
2022-10-21 11:51:44 +02:00
#include "fsfw/ipc/QueueFactory.h"
#include "fsfw/objectmanager.h"
2023-02-22 14:27:50 +01:00
#include "fsfw/pus/Service5EventReporting.h"
2022-12-19 13:25:45 +01:00
#include "fsfw/tmstorage/TmStoreMessage.h"
2022-10-21 11:51:44 +02:00
#include "fsfw/tmtcpacket/pus/tm/PusTmZcWriter.h"
2023-02-22 14:27:50 +01:00
#include "tmtc/pusIds.h"
2022-10-21 11:51:44 +02:00
PusTmFunnel::PusTmFunnel(TmFunnelBase::FunnelCfg cfg, TimeReaderIF &timeReader,
SdCardMountedIF &sdcMan)
: TmFunnelBase(cfg), timeReader(timeReader), sdcMan(sdcMan) {}
2022-10-21 11:51:44 +02:00
PusTmFunnel::~PusTmFunnel() = default;
ReturnValue_t PusTmFunnel::performOperation(uint8_t) {
2022-12-19 13:25:45 +01:00
CommandMessage cmdMessage;
2023-02-22 13:27:16 +01:00
ReturnValue_t result;
/*
2023-02-22 13:27:16 +01:00
try {
result = okStore.handleCommandQueue(ipcStore, *this);
if (result != returnvalue::OK) {
sif::error << "PusTmFunnel::performOperation: Issue handling OK store command" << std::endl;
}
result = notOkStore.handleCommandQueue(ipcStore, *this);
if (result != returnvalue::OK) {
sif::error << "PusTmFunnel::performOperation: Issue handling NOT OK store command"
<< std::endl;
}
result = hkStore.handleCommandQueue(ipcStore, *this);
if (result != returnvalue::OK) {
sif::error << "PusTmFunnel::performOperation: Issue handling HK store command" << std::endl;
}
result = miscStore.handleCommandQueue(ipcStore, *this);
if (result != returnvalue::OK) {
sif::error << "PusTmFunnel::performOperation: Issue handling MISC store command" << std::endl;
}
} catch (const std::bad_optional_access &e) {
sif::error << e.what() << "when handling TM store command" << std::endl;
2022-12-19 13:25:45 +01:00
}
*/
2022-10-21 11:51:44 +02:00
TmTcMessage currentMessage;
2023-02-19 17:06:08 +01:00
unsigned int count = 0;
2023-02-21 20:43:16 +01:00
result = tmQueue->receiveMessage(&currentMessage);
while (result == returnvalue::OK) {
result = handleTmPacket(currentMessage);
if (result != returnvalue::OK) {
2022-10-21 11:51:44 +02:00
sif::warning << "TmFunnel packet handling failed" << std::endl;
break;
}
2023-02-19 17:06:08 +01:00
count++;
2023-02-21 20:43:16 +01:00
if (count == 500) {
2023-02-19 17:06:08 +01:00
sif::error << "PusTmFunnel: Possible message storm detected" << std::endl;
break;
}
2023-02-21 20:43:16 +01:00
result = tmQueue->receiveMessage(&currentMessage);
2022-10-21 11:51:44 +02:00
}
2023-02-21 20:43:16 +01:00
if (result == MessageQueueIF::EMPTY) {
2022-10-21 11:51:44 +02:00
return returnvalue::OK;
}
2023-02-21 20:43:16 +01:00
return result;
2022-10-21 11:51:44 +02:00
}
ReturnValue_t PusTmFunnel::handleTmPacket(TmTcMessage &message) {
2022-10-21 11:51:44 +02:00
uint8_t *packetData = nullptr;
size_t size = 0;
store_address_t origStoreId = message.getStorageId();
ReturnValue_t result = tmStore.modifyData(origStoreId, &packetData, &size);
2022-10-21 11:51:44 +02:00
if (result != returnvalue::OK) {
return result;
}
PusTmZeroCopyWriter packet(timeReader, packetData, size);
result = packet.parseDataWithoutCrcCheck();
if (result != returnvalue::OK) {
#if FSFW_CPP_OSTREAM_ENABLED == 1
sif::warning << "PusTmFunnel::handlePacket: Error parsing received PUS packet" << std::endl;
#endif
return result;
}
packet.setSequenceCount(sourceSequenceCount++);
sourceSequenceCount = sourceSequenceCount % ccsds::LIMIT_SEQUENCE_COUNT;
packet.updateErrorControl();
2023-03-09 11:46:13 +01:00
// Send to persistent TM store if the packet matches some filter.
MessageQueueId_t destination;
if (persistentTmMap.packetMatches(packet, destination)) {
store_address_t storageId;
TmTcMessage msg(storageId);
result = tmStore.addData(&storageId, packetData, size);
if (result != returnvalue::OK) {
sif::error << "PusLiveDemux::handlePacket: Store too full to create data copy" << std::endl;
} else {
tmQueue->sendMessage(destination, &msg);
}
}
2023-03-09 11:46:13 +01:00
return demultiplexLivePackets(origStoreId, packetData, size);
// TODO: Will be moved to own thread.
// bool sdcUsable = sdcMan.isSdCardUsable(std::nullopt);
// initStoresIfPossible(sdcUsable);
// if (sdcUsable) {
// miscStore.passPacket(packet);
// okStore.passPacket(packet);
// notOkStore.passPacket(packet);
// hkStore.passPacket(packet);
// }
2022-10-21 11:51:44 +02:00
}
const char *PusTmFunnel::getName() const { return "PUS TM Funnel"; }
2022-12-13 14:30:16 +01:00
void PusTmFunnel::initStoresIfPossible(bool sdCardUsable) {
2023-03-09 11:46:13 +01:00
// TODO: Those will be moved to own thread.
2023-02-22 18:06:34 +01:00
if (not storesInitialized and sdCardUsable and sdcMan.getCurrentMountPrefix() != nullptr) {
// miscStore.initializeTmStore();
// okStore.initializeTmStore();
// hkStore.initializeTmStore();
// notOkStore.initializeTmStore();
2022-12-13 14:38:30 +01:00
storesInitialized = true;
}
}
ReturnValue_t PusTmFunnel::initialize() {
// initStoresIfPossible(sdcMan.isSdCardUsable(std::nullopt));
2022-12-13 14:30:16 +01:00
return returnvalue::OK;
}
void PusTmFunnel::addPersistentTmStoreRouting(PusPacketFilter filter, MessageQueueId_t dest) {
2023-03-09 11:46:13 +01:00
persistentTmMap.addRouting(filter, dest);
}